-
Notifications
You must be signed in to change notification settings - Fork 173
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
Generic joins #146
Generic joins #146
Conversation
@hadley @edgararuiz: Do we want to support joins with custom join predicates? Another way to achieve this is a cross join with a filter, but
|
? |
|
Yeah, I like that as a temporary stop gap. |
A proper I wonder if we should rename the aliases to |
I don't think we need any extra work on this interface, as it's mostly meant as a stop gap until we come up with a general interface. But could you please add a couple of very simple tests of the SQL generation? (Just to make sure everything is plumbed together correctly) |
ffb07bb
to
c4c78b3
Compare
Rebased on current |
I think it might be better to turn the test into a regression test on the generated SQL? (i.e. using |
3b9e590
to
3ae337d
Compare
Done, also adapted to the new naming. |
Thanks! |
Proposing a syntax to pass arbitrary join predicates, e.g. for working with spatial data on the database. Needs a test.