Skip to content

Commit

Permalink
Don't check ... in tbl_sql() (#1429)
Browse files Browse the repository at this point in the history
Fixes #1384
  • Loading branch information
hadley authored Jan 9, 2024
1 parent 068a88f commit 260d18d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/tbl-sql.R
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#' multiple `tbl` objects.
#' @param check_from Check if `from` is likely misspecified SQL or a table in a schema.
tbl_sql <- function(subclass, src, from, ..., vars = NULL, check_from = TRUE) {
check_dots_used()
# Can't use check_dots_used(), #1429
check_character(vars, allow_null = TRUE)

from <- as_from(from)
Expand Down

0 comments on commit 260d18d

Please sign in to comment.