From 157ecb83c18bedcea74ea967ccaf73dfc782da61 Mon Sep 17 00:00:00 2001 From: Hadley Wickham Date: Fri, 22 Dec 2023 09:12:09 -0600 Subject: [PATCH 1/2] Don't check `...` in `tbl_sql()` Fixes #1384 --- R/tbl-sql.R | 1 - 1 file changed, 1 deletion(-) diff --git a/R/tbl-sql.R b/R/tbl-sql.R index 2e4f6a140..9f1d6dcbc 100644 --- a/R/tbl-sql.R +++ b/R/tbl-sql.R @@ -14,7 +14,6 @@ #' 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() check_character(vars, allow_null = TRUE) from <- as_from(from) From 5bf2ffd6c0a7552887efc4f7d32eae7e43ba84e7 Mon Sep 17 00:00:00 2001 From: Hadley Wickham Date: Tue, 9 Jan 2024 11:37:04 -0600 Subject: [PATCH 2/2] Update R/tbl-sql.R MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Kirill Müller --- R/tbl-sql.R | 1 + 1 file changed, 1 insertion(+) diff --git a/R/tbl-sql.R b/R/tbl-sql.R index 9f1d6dcbc..31e205335 100644 --- a/R/tbl-sql.R +++ b/R/tbl-sql.R @@ -14,6 +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) { + # Can't use check_dots_used(), #1429 check_character(vars, allow_null = TRUE) from <- as_from(from)