Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
1.16.0
Description
Below 2 queries generate different results:
Query1: Result: 19826
select count(*)
from
customer c,
orders o
where
c.c_mktsegment = 'HOUSEHOLD'
and c.c_custkey = o.o_custkey
Query2: Result: 2990828
select count(*)
from
customer c,
orders o
where
c.c_custkey = o.o_custkey and
c.c_mktsegment = 'HOUSEHOLD'
Attachments
Issue Links
- is duplicated by
-
DRILL-6849 Runtime filter queries with nested broadcast returns wrong results
- Resolved
- is required by
-
DRILL-6871 Enabling runtime filter eliminates more incoming rows than it should.
- Resolved
- links to