Skip to content

Commit fdf6c10

Browse files
rhub check 0.5.0
1 parent 8d76389 commit fdf6c10

13 files changed

+58
-50
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: bigQueryR
22
Title: Interface with Google BigQuery with Shiny Compatibility
3-
Version: 0.4.0.9000
3+
Version: 0.5.0
44
Authors@R: c(person("Mark", "Edmondson",email = "[email protected]",
55
role = c("aut", "cre")),
66
person("Hadley", "Wickham", , "[email protected]", role = "ctb")

R/tables.R

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
#'
1616
#' @export
1717
#' @import assertthat
18+
#' @family Table meta functions
1819
bqr_copy_table <- function(source_tableid,
1920
destination_tableid,
2021
source_projectid = bqr_get_global_project(),
@@ -79,7 +80,7 @@ bqr_copy_table <- function(source_tableid,
7980
#' bqr_list_tables("publicdata", "samples")
8081
#' }
8182
#'
82-
#' @family bigQuery meta functions
83+
#' @family Table meta functions
8384
#' @import assertthat
8485
#' @importFrom googleAuthR gar_api_generator gar_api_page
8586
#' @export
@@ -150,7 +151,7 @@ parse_bqr_list_tables <- function(x) {
150151
#' }
151152
#'
152153
#'
153-
#' @family bigQuery meta functions
154+
#' @family Table meta functions
154155
#' @export
155156
bqr_table_meta <- function(projectId = bqr_get_global_project(),
156157
datasetId = bqr_get_global_dataset(),
@@ -188,7 +189,7 @@ bqr_table_meta <- function(projectId = bqr_get_global_project(),
188189
#'
189190
#' This won't work with nested datasets, for that use \link{bqr_query} as that flattens results.
190191
#'
191-
#' @family bigQuery meta functions
192+
#' @family Table meta functions
192193
#' @export
193194
bqr_table_data <- function(projectId = bqr_get_global_project(),
194195
datasetId = bqr_get_global_dataset(),
@@ -232,7 +233,7 @@ bqr_table_data <- function(projectId = bqr_get_global_project(),
232233
#'
233234
#' If you want more advanced features for the table, create it then call \link{bqr_patch_table} with advanced configuration configured from \link{Table}
234235
#'
235-
#' @family bigQuery meta functions
236+
#' @family Table meta functions
236237
#' @export
237238
bqr_create_table <- function(projectId = bqr_get_global_project(),
238239
datasetId = bqr_get_global_dataset(),
@@ -307,7 +308,7 @@ bqr_create_table <- function(projectId = bqr_get_global_project(),
307308
#' @import assertthat
308309
#' @importFrom googleAuthR gar_api_generator
309310
#' @seealso \href{https://cloud.google.com/bigquery/docs/reference/rest/v2/tables#resource}{Definition of tables}
310-
#' @family bigQuery meta functions
311+
#' @family Table meta functions
311312
bqr_patch_table <- function(Table){
312313
assert_that(
313314
is.table(Table)
@@ -342,7 +343,7 @@ bqr_patch_table <- function(Table){
342343
#'
343344
#' Deletes a BigQuery table
344345
#'
345-
#' @family bigQuery meta functions
346+
#' @family Table meta functions
346347
#' @export
347348
bqr_delete_table <- function(projectId = bqr_get_global_project(),
348349
datasetId = bqr_get_global_dataset(),
@@ -401,7 +402,7 @@ bqr_delete_table <- function(projectId = bqr_get_global_project(),
401402
#'
402403
#' A table object to be used within \link{bqr_patch_table}
403404
#'
404-
#' @family Table functions, bigQuery meta functions
405+
#' @family Table meta functions
405406
#' @export
406407
#' @import assertthat
407408
Table <- function(tableId,

cran-comments.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## Test environments
2-
* local OS X install, R 3.5.0
3-
* ubuntu 12.04 (on travis-ci), R 3.5.0
4-
* Windows (on win-builder) R 3.5.0
2+
* local OS X install, R 3.6.1
3+
* ubuntu 12.04 (on travis-ci), R 3.6.1
4+
* Windows (on win-builder) R 3.6.1
55

66
## R CMD check results
77

man/Table.Rd

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

man/bqr_copy_table.Rd

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

man/bqr_create_table.Rd

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

man/bqr_delete_table.Rd

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

man/bqr_list_datasets.Rd

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

man/bqr_list_projects.Rd

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

man/bqr_list_tables.Rd

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

0 commit comments

Comments
 (0)