-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathDESCRIPTION
41 lines (41 loc) · 1.04 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
Package: queryparser
Type: Package
Title: Translate 'SQL' Queries into 'R' Expressions
Version: 0.3.2.9000
Authors@R: c(
person("Ian", "Cook", email = "[email protected]", role = c("aut", "cre")),
person(family = "Cloudera", role = c("cph"))
)
Maintainer: Ian Cook <[email protected]>
Description: Translate 'SQL' 'SELECT' statements into lists of 'R' expressions.
URL: https://github.com/ianmcook/queryparser
BugReports: https://github.com/ianmcook/queryparser/issues
NeedsCompilation: no
License: Apache License 2.0
Encoding: UTF-8
RoxygenNote: 7.0.2
Collate:
'compat.R'
'agg_scalar.R'
'check_expressions.R'
'column_references.R'
'common.R'
'extract_alias.R'
'parse_clauses.R'
'parse_expression.R'
'parse_join.R'
'translations.R'
'process_translations.R'
'parse_query.R'
'parse_table_reference.R'
'replace.R'
'secure.R'
'split_query.R'
'squish_sql.R'
'translate.R'
'unpipe.R'
'unqualify.R'
'wrap_bangs.R'
Suggests:
testthat (>= 2.1.0),
covr (>= 3.2.0)