Skip to content

Commit 1d5bab2

Browse files
committed
clean and re-build
1 parent c383f39 commit 1d5bab2

File tree

108 files changed

+747
-429
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

108 files changed

+747
-429
lines changed

DESCRIPTION

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,23 @@ Package: rquery
22
Type: Package
33
Title: Relational Query Generator for Data Manipulation at Scale
44
Version: 0.5.0
5-
Date: 2018-06-16
5+
Date: 2018-06-18
66
Authors@R: c(
77
person("John", "Mount", email = "[email protected]", role = c("aut", "cre")),
88
person(family = "Win-Vector LLC", role = c("cph"))
99
)
1010
Maintainer: John Mount <[email protected]>
1111
URL: https://github.com/WinVector/rquery/, https://winvector.github.io/rquery/
12-
Description: A 'SQL' piped query generator based on Edgar F. Codd's relational
12+
Description: A piped query generator based on Edgar F. Codd's relational
1313
algebra, and on production experience using 'SQL' and 'dplyr' at big data
1414
scale. The design represents an attempt to make 'SQL' more teachable by
1515
denoting composition by a sequential pipeline notation instead of nested
1616
queries or functions. The implementation delivers reliable high
17-
performance data processing on large data systems such as `Spark`
18-
and databases. Package features include: data processing trees
17+
performance data processing on large data systems such as 'Spark',
18+
databases, and 'data.table'. Package features include: data processing trees
1919
or pipelines as observable objects (able to report both columns
2020
produced and columns used), optimized 'SQL' generation as an explicit
21-
user visible modeling step, explicit query reasoning and checking,
22-
and convenience methods for applying query
23-
trees to in-memory 'data.frame's.
21+
user visible modeling step, explicit query reasoning and checking.
2422
License: GPL-3
2523
Encoding: UTF-8
2624
Depends:

NEWS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# rquery 0.5.0 2018/06/16
2+
# rquery 0.5.0 2018/06/18
33

44
* Make DBI suggested.
55
* Rename dbi_ prefixes to rq_ (for now have aliases from old to new).

R/join_controller.R

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -846,7 +846,6 @@ strMapToString <- function(m) {
846846
#' Please see \code{vignette('DependencySorting', package = 'rquery')} and \code{vignette('joinController', package= 'rquery')} for more details.
847847
#' @seealso \code{\link{describe_tables}}, \code{\link{build_join_plan}}, \code{\link{inspect_join_plan}}, \code{\link{graph_join_plan}}
848848
#'
849-
#' TODO: parameterize the implementation provider (right now hard-coded for \code{dplr}, but at least also direct \code{SQL} is a good extension).
850849
#'
851850
#' @param columnJoinPlan columns to join, from \code{\link{build_join_plan}} (and likely altered by user). Note: no column names must intersect with names of the form \code{table_CLEANEDTABNAME_present}.
852851
#' @param ... force later arguments to bind by name.

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -272,14 +272,14 @@ cat(to_sql(dq, my_db, source_limit = 1000))
272272
"d"."assessmentTotal"
273273
FROM
274274
"d" LIMIT 1000
275-
) tsql_31919852763810022163_0000000000
276-
) tsql_31919852763810022163_0000000001
277-
) tsql_31919852763810022163_0000000002
278-
) tsql_31919852763810022163_0000000003
275+
) tsql_10147663132732343566_0000000000
276+
) tsql_10147663132732343566_0000000001
277+
) tsql_10147663132732343566_0000000002
278+
) tsql_10147663132732343566_0000000003
279279
WHERE "row_number" <= 1
280-
) tsql_31919852763810022163_0000000004
281-
) tsql_31919852763810022163_0000000005
282-
) tsql_31919852763810022163_0000000006 ORDER BY "subjectID"
280+
) tsql_10147663132732343566_0000000004
281+
) tsql_10147663132732343566_0000000005
282+
) tsql_10147663132732343566_0000000006 ORDER BY "subjectID"
283283

284284
The query is large, but due to its regular structure it should be very amenable to query optimization.
285285

docs/articles/AssigmentPartitioner.html

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/articles/PipeableSQL.html

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/articles/QueryGeneration.html

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/articles/index.html

Lines changed: 4 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)