Skip to content

Commit

Permalink
fix rcheck warning
Browse files Browse the repository at this point in the history
  • Loading branch information
ablack3 committed Jan 29, 2024
1 parent dc00900 commit d32ae1e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion R/cdm.R
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ cdm_from_con <- function(con,

#' @export
#' @importFrom dplyr tbl
tbl.db_cdm <- function(src, schema, name) {
tbl.db_cdm <- function(src, schema, name, ...) {
con <- attr(src, "dbcon")
fullName <- inSchema(schema = schema, table = name, dbms = dbms(con))
x <- dplyr::tbl(src = con, fullName) |>
Expand Down
4 changes: 2 additions & 2 deletions tests/testthat/setup.R
Original file line number Diff line number Diff line change
Expand Up @@ -165,9 +165,9 @@ ciTestDbs <- c("duckdb", "postgres", "redshift", "sqlserver", "snowflake")
if (Sys.getenv("CI_TEST_DB") == "") {

dbToTest <- c(
# "duckdb"
"duckdb"
# ,
"postgres"
# "postgres"
# ,
# "redshift"
# ,
Expand Down

0 comments on commit d32ae1e

Please sign in to comment.