Skip to content

Commit

Permalink
Support empty string for backward compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
krlmlr committed Oct 11, 2023
1 parent 10c4111 commit ea9b022
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/relational.R
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ expr_reference <- function(names, table = NULL) {
if (inherits(table, "duckdb_relation")) {
names <- c(rel_alias(table), names)
}
if (is.character(table)) {
if (is.character(table) && !identical(table, "")) {
names <- c(table, names)
}
rapi_expr_reference(names)
Expand Down

0 comments on commit ea9b022

Please sign in to comment.