tidyquery
tidyquery copied to clipboard
Improve support for outer join queries
Use the new keep
argument to full_join()
in https://github.com/tidyverse/dplyr/issues/4589 to preserve the join key columns from both the left and right tables, allowing qualified references to these columns in other clauses. I'm hoping this keep
argument is added to left_join()
and right_join()
as well.
I implemented the keep
argument in left_join()
and right_join()
in https://github.com/tidyverse/dplyr/pull/4762