Skip to content

Commit 09a853d

Browse files
committed
v0.9.0
1 parent facda32 commit 09a853d

12 files changed

+28
-48
lines changed

.Rbuildignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,4 @@
1313
^cdh4-repository_1\.0_all\.deb$
1414
^cran-comments\.md$
1515
^pre$
16+
^CRAN-RELEASE$

CRAN-RELEASE

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
This package was submitted to CRAN on 2020-06-01.
2+
Once it is accepted, delete this file and tag the release (commit facda32646).

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ Authors@R: c(
1212
person("James", "Lamb", email = "jaylamb20@gmail.com", role = "ctb")
1313
)
1414
Description: Apache Drill is a low-latency distributed query engine designed to enable
15-
data exploration and analytics on both relational and non-relational datastores,
15+
data exploration and analysis on both relational and non-relational data stores,
1616
scaling to petabytes of data. Methods are provided that enable working with Apache
17-
Drill instances via the REST API, JDBC interface (optional), DBI methods
17+
Drill instances via the REST API, DBI methods
1818
and using 'dplyr'/'dbplyr' idioms. Helper functions are included to facilitate
1919
using official Drill Docker images/containers.
2020
Depends:

R/custom.r

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
#' as well.
7575
#'
7676
#' @md
77-
#' @family Drill REST `dplyr` API
77+
#' @family Drill REST API (dplyr)
7878
#' @name drill_custom_functions
7979
NULL
8080

R/dplyr.r

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#' @param host Drill host (will pick up the value from `DRILL_HOST` env var)
1010
#' @param port Drill port (will pick up the value from `DRILL_PORT` env var)
1111
#' @param ssl use ssl?
12-
#' @family Drill REST `dplyr` API
12+
#' @family Drill REST API (dplyr)
1313
#' @param username,password if not `NULL` the credentials for the Drill service.
1414
#' @note This is a DBI wrapper around the Drill REST API.
1515
#' @export
@@ -81,7 +81,7 @@ src_drill <- function(host = Sys.getenv("DRILL_HOST", "localhost"),
8181
#' @rdname src_tbls
8282
#' @param x x
8383
#' @param ... ignored
84-
#' @family Drill REST `dplyr` API
84+
#' @family Drill REST API (dplyr)
8585
#' @export
8686
src_tbls.src_drill <- function(x, ...) {
8787
tmp <- dbGetQuery(x$con, "SHOW DATABASES")
@@ -119,7 +119,7 @@ copy_to.src_drill <- function(dest, df, name, overwrite, ...) {
119119
#' @rdname src_drill
120120
#' @param src A Drill "src" created with \code{src_drill()}
121121
#' @param from A Drill view or table specification
122-
#' @family Drill REST `dplyr` API
122+
#' @family Drill REST API (dplyr)
123123
#' @param ... Extra parameters
124124
#' @export
125125
tbl.src_drill <- function(src, from, ...) {

R/rest-api.r

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,9 @@ drill_connection <- function(host=Sys.getenv("DRILL_HOST", "localhost"),
4141
#' @param drill_con drill server connection object setup by \code{drill_connection()}
4242
#' @export
4343
#' @family Drill direct REST API Interface
44-
#' @examples
45-
#' try({
44+
#' @examples \dontrun{
4645
#' drill_connection() %>% drill_active()
47-
#' }, silent=TRUE)
46+
#' }
4847
drill_active <- function(drill_con) {
4948
drill_server <- make_server(drill_con)
5049
!is.null(s_head(drill_server, httr::timeout(2))$result)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -374,6 +374,6 @@ select columns[2] as city, columns[4] as lon, columns[3] as lat
374374

375375
## Code of Conduct
376376

377-
Please note that this project is released with a [Contributor Code of
378-
Conduct](CONDUCT.md). By participating in this project you agree to
377+
Please note that this project is released with a Contributor Code of
378+
Conduct By participating in this project you agree to
379379
abide by its terms.

cran-comments.md

Lines changed: 6 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,12 @@
11
## Test environments
2-
* local macOS install, R 3.4.1
3-
* local ubuntu 14.04 install, R 3.4.1
4-
* ubuntu 12.04 (on travis-ci), R 3.4.1 and oldrel
5-
* win-builder
2+
* local R installation, R 4.0.1
3+
* ubuntu 16.04 (on travis-ci), R 4.0.1
4+
* win-builder (devel and release)
65

76
## R CMD check results
87

9-
0 errors | 0 warnings | 0 notes
8+
0 errors | 0 warnings | 0 note
109

11-
* This is a new release.
10+
* This is an update release.
1211

13-
## Reverse dependencies
14-
15-
This is a new release, so there are no reverse dependencies.
16-
17-
---
18-
19-
* WinBuilder seems to be working now (it found httr and covr in the last build).
20-
21-
* Removed png causing WinBuilder pandoc problems.
22-
23-
* R-hub is reporting httr and covr are not available so
24-
I have not been able to get it to work successfully on that platform.
25-
26-
* The examples and tests are wrapped in \dontrun{} or testthat:::skip_on_cran()
27-
since they absolutely require a running Apache Drill server. Full tests
28-
are run on Travis (weekly) with results avaialble for review:
29-
https://travis-ci.org/hrbrmstr/sergeant
30-
31-
The Travis tests install Apache Drill and test out the REST API calls
32-
as well as the dplyr/dbplyr interface with live queries.
33-
34-
* Code coverage is run and is currently at 40%
12+
* addresses CRAN email note and then some :-)

man/drill_active.Rd

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

man/drill_custom_functions.Rd

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

man/src_drill.Rd

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

man/src_tbls.Rd

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

0 commit comments

Comments
 (0)