Is your feature request related to a problem or challenge?
After #11247 is merged we can look at ordering the boolean expressions according to a measure of evaluation cost.
Describe the solution you'd like
We can reorder expressions:
E.g. a expression like the following:
URL LIKE '%google%' AND code = 404.
Likely would be better reordered to code = 404 AND URL LIKE '%google%' in order to benefit most from short circuiting as code = 404 is less expensive.
One could also combine it with the estimate of selectivity to further optimize the order (low selectivity, batches more likely to be all false, high selectivity, batches more likely to be all true)
Describe alternatives you've considered
No response
Additional context
No response
Is your feature request related to a problem or challenge?
After #11247 is merged we can look at ordering the boolean expressions according to a measure of evaluation cost.
Describe the solution you'd like
We can reorder expressions:
E.g. a expression like the following:
URL LIKE '%google%' AND code = 404.Likely would be better reordered to
code = 404 AND URL LIKE '%google%'in order to benefit most from short circuiting ascode = 404is less expensive.One could also combine it with the estimate of
selectivityto further optimize the order (low selectivity, batches more likely to be all false, high selectivity, batches more likely to be all true)Describe alternatives you've considered
No response
Additional context
No response