Skip to content

Move conditions from JOIN ON to WHERE #18720

@alexey-milovidov

Description

@alexey-milovidov

Use case
Conditions that are not related to JOIN:
t1 JOIN t2 ON t1.k = t2.k AND t1.hello = 'world'
should be transformed to:
t1 JOIN t2 ON t1.k = t2.k WHERE t1.hello = 'world'
otherwise it does not work.

Metadata

Metadata

Assignees

Labels

comp-joinsJOINs end-to-end (planning hooks + runtime join operators/algorithms). Single bucket to avoid pla...feature

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions