You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
A clear and concise description of what the bug is.
When the child node of union contains EmptyRelation, the plan generated by optimization rule propagate_empty_relation is wrong.
To Reproduce
Steps to reproduce the behavior:
query
createtablem2(intt int) asselect1as intt;
explain
SELECT*FROM
m2
WHERE
false IS UNKNOWN
UNION ALLSELECT*FROM
m2
WHERE
NOT false IS UNKNOWN
UNION ALLSELECT*FROM
m2
WHERE
false IS UNKNOWN IS NULL;
Describe the bug
A clear and concise description of what the bug is.
When the child node of union contains
EmptyRelation
, the plan generated by optimization rulepropagate_empty_relation
is wrong.To Reproduce
Steps to reproduce the behavior:
Expected behavior
A clear and concise description of what you expected to happen.
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: