You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
selectsum(l_extendedprice* (1- l_discount)) as revenue
fromtestdata.tpch_tiny.lineitem,
testdata.tpch_tiny.part
where
(
p_partkey = l_partkey
and p_brand ='Brand#32'and p_container in ('SM CASE', 'SM BOX', 'SM PACK', 'SM PKG')
and l_quantity >=7and l_quantity <=7+10and p_size between 1and5and l_shipmode in ('AIR', 'AIR REG')
and l_shipinstruct ='DELIVER IN PERSON'
)
appears to fail when the WHERE clause returns zero rows- but that's seen elsewhere so may be not that.
The text was updated successfully, but these errors were encountered:
appears to fail when the WHERE clause returns zero rows- but that's seen elsewhere so may be not that.
The text was updated successfully, but these errors were encountered: