blob: 265a573461fd9e079494f275c72eb99a993ad27d [file] [log] [blame]
====
---- QUERY: primitive_conjunct_ordering_3
-- Description: Based on TPCDS-Q28
SELECT avg(l_extendedprice), count(l_extendedprice), count(distinct l_extendedprice)
FROM lineitem
WHERE
(l_discount BETWEEN 0.2 AND 0.3
OR l_discount BETWEEN 0.4 AND 0.5
OR l_tax BETWEEN 0.1 AND 0.2
OR l_tax BETWEEN 0 AND 0.09)
AND l_extendedprice BETWEEN 100 AND 500
---- RESULTS
---- TYPES
====