-
Notifications
You must be signed in to change notification settings - Fork 46
Closed
Description
The DBI document says:
The following arguments are not part of the dbWriteTable() generic (to improve compatibility across backends) but are part of the DBI specification:
- row.names (default: FALSE)
- overwrite (default: FALSE)
- append (default: FALSE)
- field.types (default: NULL)
- temporary (default: FALSE)
They must be provided as named arguments. See the "Specification" and "Value" sections for details on their usage.
But now dbWriteTable__duckdb_connection_character_data.frame can specify these options without names.
I think we need to change the position of the dot dot dot ....
duckdb-r/R/dbWriteTable__duckdb_connection_character_data.frame.R
Lines 9 to 17 in 8386b9c
| dbWriteTable__duckdb_connection_character_data.frame <- function(conn, | |
| name, | |
| value, | |
| row.names = FALSE, | |
| overwrite = FALSE, | |
| append = FALSE, | |
| field.types = NULL, | |
| temporary = FALSE, | |
| ...) { |
Metadata
Metadata
Assignees
Labels
No labels