Skip to content

Commit

Permalink
chore: Update constructive
Browse files Browse the repository at this point in the history
  • Loading branch information
krlmlr authored and aviator-bot committed Apr 15, 2024
1 parent 4f96242 commit 29062f6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion R/spec-meta-bind-arrow-stream.R
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ spec_meta_arrow_stream_bind <- list(
is_null_check <- ctx$tweaks$is_null_check
for (placeholder_fun in placeholder_funs) {
bind_values <- structure(
data.frame(" ", "\n", "\r", "\b", "'", "\"", "[", "]", "\\", NA_character_, check.names = FALSE),
data.frame(" ", "\n", "\r", "\b", "'", '"', "[", "]", "\\", NA_character_, check.names = FALSE),
names = rep("", 10L)
)
placeholder <- placeholder_fun(10L)
Expand Down
2 changes: 1 addition & 1 deletion R/spec-meta-bind-arrow.R
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ spec_meta_arrow_bind <- list(
placeholder_funs <- get_placeholder_funs(ctx)
is_null_check <- ctx$tweaks$is_null_check
for (placeholder_fun in placeholder_funs) {
bind_values <- c(" ", "\n", "\r", "\b", "'", "\"", "[", "]", "\\", NA)
bind_values <- c(" ", "\n", "\r", "\b", "'", '"', "[", "]", "\\", NA)
placeholder <- placeholder_fun(10L)
names(bind_values) <- names(placeholder)
placeholder_values <- map_chr(bind_values, function(x) DBI::dbQuoteLiteral(con, x[1]))
Expand Down
2 changes: 1 addition & 1 deletion R/spec-meta-bind-stream.R
Original file line number Diff line number Diff line change
Expand Up @@ -596,7 +596,7 @@ spec_meta_stream_bind <- list(
is_null_check <- ctx$tweaks$is_null_check
for (placeholder_fun in placeholder_funs) {
bind_values <- structure(
data.frame(" ", "\n", "\r", "\b", "'", "\"", "[", "]", "\\", NA_character_, check.names = FALSE),
data.frame(" ", "\n", "\r", "\b", "'", '"', "[", "]", "\\", NA_character_, check.names = FALSE),
names = rep("", 10L)
)
placeholder <- placeholder_fun(10L)
Expand Down
2 changes: 1 addition & 1 deletion R/spec-meta-bind.R
Original file line number Diff line number Diff line change
Expand Up @@ -619,7 +619,7 @@ spec_meta_bind <- list(
placeholder_funs <- get_placeholder_funs(ctx)
is_null_check <- ctx$tweaks$is_null_check
for (placeholder_fun in placeholder_funs) {
bind_values <- c(" ", "\n", "\r", "\b", "'", "\"", "[", "]", "\\", NA)
bind_values <- c(" ", "\n", "\r", "\b", "'", '"', "[", "]", "\\", NA)
placeholder <- placeholder_fun(10L)
names(bind_values) <- names(placeholder)
placeholder_values <- map_chr(bind_values, function(x) DBI::dbQuoteLiteral(con, x[1]))
Expand Down

0 comments on commit 29062f6

Please sign in to comment.