Skip to content

Commit

Permalink
fix: Support new I() syntax from dbplyr
Browse files Browse the repository at this point in the history
  • Loading branch information
krlmlr committed Jul 4, 2024
1 parent 4c0141c commit 85dc15a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#' @rdname duckdb_connection-class
#' @inheritParams DBI::dbExistsTable
#' @usage NULL
dbExistsTable__duckdb_connection_character <- function(conn, name, ...) {
dbExistsTable__duckdb_connection_ANY <- function(conn, name, ...) {
if (!dbIsValid(conn)) {
stop("Invalid connection")
}
Expand Down Expand Up @@ -29,4 +29,4 @@ dbExistsTable__duckdb_connection_character <- function(conn, name, ...) {

#' @rdname duckdb_connection-class
#' @export
setMethod("dbExistsTable", c("duckdb_connection", "character"), dbExistsTable__duckdb_connection_character)
setMethod("dbExistsTable", c("duckdb_connection", "ANY"), dbExistsTable__duckdb_connection_ANY)
6 changes: 3 additions & 3 deletions man/duckdb_connection-class.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 85dc15a

Please sign in to comment.