Details
-
Type:
Bug
-
Status: Resolved
-
Priority:
Critical
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 0.8.0
-
Component/s: Planner/Optimizer
-
Labels:None
Description
Please take a look at an example. This query causes NPE and a wrong partitioned table rewrite result.
select
*
from (
select
col1,
col2,
null_col,
key
from
table1
where (key = 45.0 or key = 38.0) and null_col is null
) test;