Skip to content

Commit

Permalink
chore: Avoid dbplyr::ident_q() (#1788)
Browse files Browse the repository at this point in the history
Closes #1788.
  • Loading branch information
krlmlr committed Aug 20, 2023
1 parent 9f470e1 commit 6839b6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/testthat/test-rows-dm.R
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ test_that("dm_rows_append() works with autoincrement PKs and FKS for selected DB
order_of_deletion <- c("t4", "t2", "t3", "t1")
walk(
order_of_deletion,
~ try(dbExecute(con_db, paste0("DROP TABLE ", dbplyr::ident_q(.x))))
~ try(dbExecute(con_db, paste0("DROP TABLE ", .x)))
)
})

Expand Down

0 comments on commit 6839b6e

Please sign in to comment.