Skip to content

Commit

Permalink
Merge pull request #453 from r-dbi/f-create-table-arrow-temporary
Browse files Browse the repository at this point in the history
feat: Add `temporary` argument to `dbCreateTableArrow()`
  • Loading branch information
aviator-app[bot] committed Dec 26, 2023
2 parents 446fb8e + d394de7 commit 789301f
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion R/22-dbCreateTableArrow.R
Expand Up @@ -33,5 +33,5 @@
#' dbReadTable(con, "df")
#' dbDisconnect(con)
setGeneric("dbCreateTableArrow",
def = function(conn, name, value, ...) standardGeneric("dbCreateTableArrow")
def = function(conn, name, value, ..., temporary = FALSE) standardGeneric("dbCreateTableArrow")
)
2 changes: 1 addition & 1 deletion R/sqlCreateTable.R
Expand Up @@ -23,7 +23,7 @@
#'
#' A data frame: field types are generated using
#' [dbDataType()].
#' @param temporary If `TRUE`, will generate a temporary table statement.
#' @param temporary If `TRUE`, will generate a temporary table.
#' @inheritParams rownames
#' @param ... Other arguments used by individual methods.
#'
Expand Down
2 changes: 1 addition & 1 deletion man/dbCreateTable.Rd

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

4 changes: 3 additions & 1 deletion man/dbCreateTableArrow.Rd

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

2 changes: 1 addition & 1 deletion man/sqlCreateTable.Rd

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

0 comments on commit 789301f

Please sign in to comment.