Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ src/google/
configure.log
autobrew
auth.json
.vscode
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: bigrquerystorage
Type: Package
Title: An Interface to Google's 'BigQuery Storage' API
Version: 1.2.2
Version: 1.2.3
Authors@R: c(
person("Bruno", "Tremblay", role = c("aut", "cre"), email = "openr@neoxone.com"),
person(family = "Google LLC", role = c("cph", "fnd")))
Expand Down
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# bigrquerystorage 1.2.3

* Fix RANGE conversion.

# bigrquerystorage 1.2.2

* Fix logging for new version of gRPC.
Expand Down
2 changes: 1 addition & 1 deletion R/bqs_download.R
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ col_mapply <- function(x, y, tests) {
if (inherits(x, "data.frame") && !inherits(x, "tbl_df")) {
x <- tibble::tibble(x)
}
if (rlang::is_named(x)) {
if (rlang::is_named(x) && length(x) == length(y[["fields"]])) {
x[] <- mapply(col_mapply, x, y[["fields"]], MoreArgs = list(tests = tests), SIMPLIFY = FALSE)
return(x)
} else if (y[["type"]] %in% "RECORD" && y[["mode"]] %in% "REPEATED") {
Expand Down
23 changes: 19 additions & 4 deletions cran-comments.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,23 @@
Duration: 1m 13.8s

❯ checking installed package size ... NOTE
installed size is 14.8Mb
sub-directories of 1Mb or more:
libs 14.7Mb
installed size is 17.2Mb
sub-directories of 1Mb or more:
libs 16.8Mb

❯ Files which contain pragma(s) suppressing diagnostics:
'src/google/api/annotations.pb.h' 'src/google/api/client.pb.h'
'src/google/api/field_behavior.pb.h' 'src/google/api/http.pb.h'
'src/google/api/launch_stage.pb.h' 'src/google/api/resource.pb.h'
'src/google/cloud/bigquery/storage/v1/arrow.pb.h'
'src/google/cloud/bigquery/storage/v1/avro.pb.h'
'src/google/cloud/bigquery/storage/v1/protobuf.pb.h'
'src/google/cloud/bigquery/storage/v1/storage.pb.h'
'src/google/cloud/bigquery/storage/v1/stream.pb.h'
'src/google/cloud/bigquery/storage/v1/table.pb.h'
'src/google/rpc/status.pb.h'

0 errors ✔ | 0 warnings ✔ | 1 note ✖
0 errors ✔ | 0 warnings ✔ | 2note ✖

Tests : [ FAIL 0 | WARN 0 | SKIP 0 | PASS 32 ]
Package checks : https://github.com/meztez/bigrquerystorage/actions/runs/12659190537/job/35277760840
Loading