Skip to content

Commit

Permalink
Remove or convert final linkS4class instances
Browse files Browse the repository at this point in the history
  • Loading branch information
krlmlr committed Jul 9, 2024
1 parent 1a8bc72 commit 57baa0d
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 10 deletions.
1 change: 1 addition & 0 deletions R/dbGetInfo__duckdb_connection.R
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#' @rdname duckdb_connection-class
#' @inheritParams DBI::dbGetInfo
#' @param dbObj An object inheriting from class [duckdb_connection-class].
#' @usage NULL
dbGetInfo__duckdb_connection <- function(dbObj, ...) {
version <- dbGetQuery(dbObj, "select library_version from pragma_version()")[[1]][[1]]
Expand Down
1 change: 1 addition & 0 deletions R/dbGetInfo__duckdb_driver.R
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#' @rdname duckdb_driver-class
#' @inheritParams DBI::dbGetInfo
#' @param dbObj An object inheriting from class [duckdb_driver-class].
#' @usage NULL
dbGetInfo__duckdb_driver <- function(dbObj, ...) {
info <- dbGetInfo__duckdb_connection(default_connection())
Expand Down
1 change: 1 addition & 0 deletions R/dbGetInfo__duckdb_result.R
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#' @rdname duckdb_result-class
#' @inheritParams DBI::dbGetInfo
#' @param dbObj An object inheriting from class [duckdb_result-class].
#' @usage NULL
dbGetInfo__duckdb_result <- function(dbObj, ...) {
# Optional
Expand Down
1 change: 1 addition & 0 deletions R/dbWriteTable__duckdb_connection_character_data.frame.R
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#' @rdname duckdb_connection-class
#' @inheritParams DBI::dbWriteTable
#' @param conn A [duckdb_connection-class] object as returned by [DBI::dbConnect()]
#' @param row.names Whether the row.names of the data.frame should be preserved
#' @param overwrite If a table with the given name already exists, should it be overwritten?
#' @param append If a table with the given name already exists, just try to append the passed data to it
Expand Down
6 changes: 2 additions & 4 deletions man/duckdb_connection-class.Rd

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

4 changes: 1 addition & 3 deletions man/duckdb_driver-class.Rd

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

4 changes: 1 addition & 3 deletions man/duckdb_result-class.Rd

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

0 comments on commit 57baa0d

Please sign in to comment.