Skip to content

Commit

Permalink
Correct escaping in sql_star()
Browse files Browse the repository at this point in the history
  • Loading branch information
hadley committed Nov 8, 2023
1 parent 054ee2b commit 892b23e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/query-join.R
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ sql_table_prefix <- function(con, var, table = NULL) {
sql_star <- function(con, table = NULL) {
var <- sql("*")
if (!is.null(table)) {
stopifnot(is_table_name(table))
table <- as_table_name(table, con)
sql(paste0(table, ".", var))
} else {
var
Expand Down

0 comments on commit 892b23e

Please sign in to comment.