Details
-
Sub-task
-
Status: Closed
-
Major
-
Resolution: Fixed
-
3.1.2
-
None
Description
...as stated in title. Script is attached. The issue can be seen with these queries:
create materialized view av1 stored as orc as select state, year, sum(population) from census_pop where year IN (2010, 2018) group by state, year;
– this is ok
explain extended select state, year, sum(population) from census_pop where year IN (2010, 2018) group by state, year;
– this is not ok
explain extended select state, year, sum(population) from census_pop where year = 2010 group by state, year;
– this is not ok
explain extended select state, year, sum(population) from census_pop where year in (2010) group by state, year;
Attachments
Attachments
Issue Links
- is part of
-
HIVE-22256 Rewriting fails when `IN` clause has items in different order in MV and query
- Closed