-
Notifications
You must be signed in to change notification settings - Fork 588
[VL] Diff of in_or_and #7362
Copy link
Copy link
Closed
Labels
Description
Backend
VL (Velox)
Bug description
select count(1) from lineitem
where (l_shipmode in ('TRUCK', 'MAIL') or l_shipmode in ('AIR', 'FOB'))
and l_shipmode in ('RAIL','SHIP')
vanilla spark is 0, gluten have the same results with sql
select count(1) from lineitem
where l_shipmode in ('TRUCK', 'MAIL') or l_shipmode in ('AIR', 'FOB')
or l_shipmode in ('RAIL','SHIP')
Spark version
None
Spark configurations
No response
System information
No response
Relevant logs
No response
Reactions are currently unavailable