fix: Allow chaining joins in SQL syntax #14220
Closed
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fixes #14217
With this fix, any of the previously joined table names can be used to refer to any of the previously joined tables. For example, in the query
in the join condition marked
<join condition>
you can use eitherdf1.
ordf2.
to refer to any column on the left side of the join. For instance, you can usedf1.x
even if columnx
only exists indf2
. You can also usedf2.y
even if columny
only exists indf1
.That is more generous than should be the case of course, in the sense that this new implementation accepts some invalid queries where it should give an error. However, in the current implementation, you can already use
df1.
to refer to any column (of dataframedf1
ordf2
) but cannot usedf2
at all (see issue #14217).