Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Avoid S4 warning due to method dispatch ambiguity for dbQuoteString() and dbQuoteIdentifier() #24

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions R/dbQuoteIdentifier_AdbiConnection_character.R
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,11 @@ setMethod(
c("AdbiConnection", "character"),
dbQuoteIdentifier_AdbiConnection_character
)

#' @rdname AdbiConnection-class
#' @export
setMethod(
"dbQuoteIdentifier",
c("AdbiConnection", "SQL"),
dbQuoteIdentifier_AdbiConnection_character
)
8 changes: 8 additions & 0 deletions R/dbQuoteString_AdbiConnection_character.R
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,11 @@ setMethod(
c("AdbiConnection", "character"),
dbQuoteString_AdbiConnection_character
)

#' @rdname AdbiConnection-class
#' @export
setMethod(
"dbQuoteString",
c("AdbiConnection", "SQL"),
dbQuoteString_AdbiConnection_character
)
6 changes: 6 additions & 0 deletions man/AdbiConnection-class.Rd

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

Loading