Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Push down join condition conjucnts to inner side based on inherited p…
…redicate Add equality conjuncts to inner side based on join condition and outer side symbol equalities from inherited predicate and outer side predicate This is needed to handle queries like: SELECT * FROM nation LEFT OUTER JOIN region ON nation.regionkey = region.regionkey and nation.name = region.name WHERE nation.name = 'blah' Without that region.name = 'blah' was not pushed to inner side
- Loading branch information