From ab5ca803ddd2d2f64f42aa7006d6470ab7f980fc Mon Sep 17 00:00:00 2001 From: simonpcouch Date: Thu, 31 Oct 2024 09:13:56 -0500 Subject: [PATCH] `unsupported_arg_error` -> `dbplyr_error_unsupported_arg` --- R/utils-check.R | 2 +- tests/testthat/_snaps/rows.md | 2 +- tests/testthat/_snaps/translate-sql-conditional.md | 6 +++--- tests/testthat/_snaps/verb-pivot-wider.md | 2 +- tests/testthat/test-backend-snowflake.R | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/R/utils-check.R b/R/utils-check.R index 8897fb058..e3558b211 100644 --- a/R/utils-check.R +++ b/R/utils-check.R @@ -144,7 +144,7 @@ check_unsupported_arg <- function(x, msg <- c(msg, i = allow_msg) } - cli_abort(msg, call = call, class = "unsupported_arg_error") + cli_abort(msg, call = call, class = "dbplyr_error_unsupported_arg") } stop_unsupported_function <- function(f, ..., with = NULL, call = caller_env()) { diff --git a/tests/testthat/_snaps/rows.md b/tests/testthat/_snaps/rows.md index 056421ecf..d5f04fa8a 100644 --- a/tests/testthat/_snaps/rows.md +++ b/tests/testthat/_snaps/rows.md @@ -55,7 +55,7 @@ (expect_error(rows_insert(lf, lf, by = "x", conflict = "error", in_place = FALSE)) ) Output - + Error in `rows_insert()`: ! `conflict = "error"` isn't supported on database backends. i It must be "ignore" instead. diff --git a/tests/testthat/_snaps/translate-sql-conditional.md b/tests/testthat/_snaps/translate-sql-conditional.md index 4eba7f748..f72cf8aee 100644 --- a/tests/testthat/_snaps/translate-sql-conditional.md +++ b/tests/testthat/_snaps/translate-sql-conditional.md @@ -48,13 +48,13 @@ (expect_error(test_translate_sql(case_when(x == 1L ~ "yes", .ptype = character()))) ) Output - + Error in `case_when()`: ! Argument `.ptype` isn't supported on database backends. Code (expect_error(test_translate_sql(case_when(x == 1L ~ "yes", .size = 1)))) Output - + Error in `case_when()`: ! Argument `.size` isn't supported on database backends. @@ -122,7 +122,7 @@ Code (expect_error(test_translate_sql(case_match(x, 1 ~ 1, .ptype = integer())))) Output - + Error in `case_match()`: ! Argument `.ptype` isn't supported on database backends. diff --git a/tests/testthat/_snaps/verb-pivot-wider.md b/tests/testthat/_snaps/verb-pivot-wider.md index d11cc5627..48844e74a 100644 --- a/tests/testthat/_snaps/verb-pivot-wider.md +++ b/tests/testthat/_snaps/verb-pivot-wider.md @@ -169,7 +169,7 @@ Code (expect_error(tidyr::pivot_wider(df, id_expand = TRUE))) Output - + Error in `tidyr::pivot_wider()`: ! `id_expand = TRUE` isn't supported on database backends. i It must be FALSE instead. diff --git a/tests/testthat/test-backend-snowflake.R b/tests/testthat/test-backend-snowflake.R index 469a021ef..64539ea25 100644 --- a/tests/testthat/test-backend-snowflake.R +++ b/tests/testthat/test-backend-snowflake.R @@ -89,7 +89,7 @@ test_that("custom lubridate functions translated correctly", { expect_equal(test_translate_sql(quarter(x, with_year = TRUE)), sql("(EXTRACT('year', `x`) || '.' || EXTRACT('quarter', `x`))")) expect_error( test_translate_sql(quarter(x, fiscal_start = 2)), - class = "unsupported_arg_error" + class = "dbplyr_error_unsupported_arg" ) expect_equal(test_translate_sql(isoyear(x)), sql("EXTRACT('year', `x`)"))