-
Notifications
You must be signed in to change notification settings - Fork 12
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
Add support for cross joins #11
Comments
|
In the version of dplyr currently on CRAN, it is possible to do a cross join with dplyr 1.1.0 (due to be submitted in CRAN in late January) will add a
queryparser already supports cross joins so this does not require any work there. |
Does it mean |
@antonio-yu I went ahead and added support for cross joins in 537eb35. Please test it out and let me know if it works for you using the version of tidyquery on GitHub: Cross joins should work in tidyquery now as long as you are using dplyr 1.0.0 or higher. I added code that detects what version of dplyr you are using. If are using an old version of dplyr that does not have the |
After the fix to tidyverse/dplyr#4206 is on CRAN, use it to enable cross joins by specifying
by = character()
.The text was updated successfully, but these errors were encountered: