We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Would be nice if:
library(dbplyr) library(dplyr, warn.conflicts = FALSE) lf1 <- lazy_frame(!!!setNames(as.list(1:26), letters)) lf2 <- lazy_frame(a = 1, a1 = 1, a2 = 1) lf1 |> left_join(lf2) #> Joining, by = "a" #> <SQL> #> SELECT #> `LHS`.`a` AS `a`, #> `b`, #> `c`, #> `d`, #> `e`, #> `f`, #> `g`, #> `h`, #> `i`, #> `j`, #> `k`, #> `l`, #> `m`, #> `n`, #> `o`, #> `p`, #> `q`, #> `r`, #> `s`, #> `t`, #> `u`, #> `v`, #> `w`, #> `x`, #> `y`, #> `z`, #> `a1`, #> `a2` #> FROM `df` AS `LHS` #> LEFT JOIN `df` AS `RHS` #> ON (`LHS`.`a` = `RHS`.`a`)
Created on 2022-05-25 by the reprex package (v2.0.1)
Instead produced:
SELECT `LHS`.*, `a1`, `a2` FROM `df` AS `LHS` LEFT JOIN `df` AS `RHS` ON (`LHS`.`a` = `RHS`.`a`)
No idea how feasible this is.
The text was updated successfully, but these errors were encountered:
This should be relatively easy. I just wonder how relevant this is after inlining select() into joins (#875 and #876).
select()
Sorry, something went wrong.
Isn't it just as relevant? Maybe I'm missing how you think it would interact.
LHS.*
left_join()
Successfully merging a pull request may close this issue.
Would be nice if:
Created on 2022-05-25 by the reprex package (v2.0.1)
Instead produced:
No idea how feasible this is.
The text was updated successfully, but these errors were encountered: