-
Notifications
You must be signed in to change notification settings - Fork 57
Open
Description
Intro
Right now, according to 1314950
Queries TPC-H q1, 3, 4, 6, 12, 14, 16 are optimal, but actually some of them are not.
Queries
- q1, q6, q12, q14 -- are ok
- q3 -- ideally should have Velox operator that allows to combine last hashjoin (lineitem x (orders x customer)) with aggregation after
q4 -- we should useright semi filter joininstead ofright semi project join+filterq16 -- we should useleft anti joininstead ofleft semi project join+filter not
Conclusion
q3 doesn't looks like a bug, just improvement that can be done. First in Velox, then in Axiom.
q4, q16 looks like same issue, we should try to avoid semi project when it's possible.
Questions
Why doesn't Velox have right anti join?
mbasmanova
Metadata
Metadata
Assignees
Labels
No labels