Skip to content

Commit

Permalink
fix immediate parameter error in dbplyr::dbExecute (#231)
Browse files Browse the repository at this point in the history
  • Loading branch information
kongdd authored Oct 10, 2023
1 parent 2341bbd commit 307f22e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion R/result.R
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ setMethod("fetch", c("MySQLResult", "missing"), function(res, n, ...) {
#' @export
#' @useDynLib RMySQL RS_MySQL_exec
setMethod("dbSendQuery", c("MySQLConnection", "character"),
function(conn, statement) {
function(conn, statement, ...) {
checkValid(conn)

rsId <- .Call(RS_MySQL_exec, conn@Id, as.character(statement))
Expand Down
2 changes: 1 addition & 1 deletion man/query.Rd

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

0 comments on commit 307f22e

Please sign in to comment.