Details
-
Sub-task
-
Status: Resolved
-
Major
-
Resolution: Duplicate
-
vectorization-branch
-
None
Description
query:
select ddate, count(*) from factsqlengineam_vec_orc where ddate = "2012-05-19 00:00:00" OR ddate = "2012-05-20 00:00:00" group by ddate;
Actual result:
OK
2012-05-19 00:00:00 528741
Expected result:
There would be two rows, one for each day in the OR clause in the query.
This query actually returns a row, so there is data there for 2012-05-20.
select ddate, count(*) from factsqlengineam_vec_orc where ddate = "2012-05-20 00:00:00" group by ddate;
Attachments
Issue Links
- is related to
-
HIVE-4678 second clause of AND, OR filter not applied for vectorized execution
- Resolved