-
Notifications
You must be signed in to change notification settings - Fork 33
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
Error to use pool and left_join without suffixes #111
Comments
Reproducible example based on example code:
|
@hadley Caused by tidyverse/dbplyr@6e64685 Possible fix/workaround is to define sql_join_suffix.default <- function(con, ...) {
c(".x", ".y")
} |
Thanks for the report, should be all set on master now! |
Hi, today this happened with me If I try this , everything works but if I try this
I receive this error
Therefore add suffix = c("a","b") make the code works, even if you don't have any duplicate variables other than those used for the join It starts this morning for me versions
I copied the exemplo of ppagnore up here, but I use Postgres backend, but I think this don´t mattters in this case |
Hi, I was updating my package and a query which worked well with previous version is throwing exception if "suffix" param is not pass to left_join() function , altought "suffix" has a default value.
Error:
Code example:
Thanks in advance!
The text was updated successfully, but these errors were encountered: