Skip to content

Commit

Permalink
Fixed missing append = TRUE argument
Browse files Browse the repository at this point in the history
  • Loading branch information
hoesler committed Mar 4, 2016
1 parent 7c27241 commit 5ba2aeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/src_h2.r
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ src_translate_env.src_h2 <- function(x) {

#' @export
db_insert_into.H2Connection <- function(con, table, values, ...) {
dbWriteTable(con, table, values)
dbWriteTable(con, table, values, append = TRUE)
invisible()
}

Expand Down

0 comments on commit 5ba2aeb

Please sign in to comment.