From e7bef90df3a06698ddf9a738a51158b569143bcc Mon Sep 17 00:00:00 2001 From: Hadley Wickham Date: Mon, 18 Dec 2023 13:49:45 -0600 Subject: [PATCH] Coerce rather than checking --- R/db.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/db.R b/R/db.R index cb8b2dc87..7b356cc01 100644 --- a/R/db.R +++ b/R/db.R @@ -91,7 +91,7 @@ db_col_types <- function(con, table, call) { return(NULL) } - check_table_name(table) + table <- as_table_name(table, con) UseMethod("db_col_types") }