-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
There are some predicate include implicit is not null.
select * from t1 where c1 > 0;
->
select * from t1 where c1 > 0 and c1 is not null;Why do this?
Expr in select expr and where expr is different.
Same expr in select don't include implicit is not null.
After this,
We can do this
- eliminate self compare [Optimizer] Eliminate self compare self #2252
- convert outer join to inner join convert
outer jointoinner jointo improve performance #1585 - eliminate Unsatisfiable Boolean Expressions Eliminate Unsatisfiable Boolean Expressions #1716
- .... other about predicate
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request