Skip to content

Commit

Permalink
Merge pull request #246 from richfitz/avoid_partial_arg
Browse files Browse the repository at this point in the history
- Avoid partial arg match in `dbWriteTable()` (#246, @richfitz).
  • Loading branch information
krlmlr authored Aug 22, 2018
2 parents 40a7de4 + b3c7158 commit 277190a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/table-insert.R
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,6 @@ setMethod("dbAppendTable", signature("DBIConnection"),
...
)
values <- sqlRownamesToColumn(value, row.names)
dbExecute(conn, query, param = unname(as.list(value)))
dbExecute(conn, query, params = unname(as.list(value)))
}
)

0 comments on commit 277190a

Please sign in to comment.