From 2b2c3d276219ca091a25d03d51f1e36522dc08c4 Mon Sep 17 00:00:00 2001 From: Hadley Wickham Date: Tue, 28 Nov 2023 16:29:47 -0600 Subject: [PATCH] Escaping now happens earlier --- tests/testthat/test-verb-set-ops.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/testthat/test-verb-set-ops.R b/tests/testthat/test-verb-set-ops.R index 8fbd20e50..17909a199 100644 --- a/tests/testthat/test-verb-set-ops.R +++ b/tests/testthat/test-verb-set-ops.R @@ -17,10 +17,10 @@ test_that("missing columns filled with NULL", { test_that("first edition works", { con <- structure(list(), class = c("Test", "DBIConnection")) - lf <- lazy_frame(x = 1, con = con) local_methods( sql_escape_ident.Test = function(con, x) sql_quote(x, "`") ) + lf <- lazy_frame(x = 1, con = con) local_options(rlib_warning_verbosity = "quiet")