Skip to content

Commit

Permalink
fix: change the argument order of dbWriteTable
Browse files Browse the repository at this point in the history
  • Loading branch information
eitsupi committed Dec 3, 2023
1 parent fe77151 commit 8af0209
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/dbWriteTable__duckdb_connection_character_data.frame.R
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
dbWriteTable__duckdb_connection_character_data.frame <- function(conn,
name,
value,
...,
row.names = FALSE,
overwrite = FALSE,
append = FALSE,
field.types = NULL,
temporary = FALSE,
...) {
temporary = FALSE) {
check_flag(overwrite)
check_flag(append)
check_flag(temporary)
Expand Down

0 comments on commit 8af0209

Please sign in to comment.