select sum(l_extendedprice * l_discount) as revenue from lineitem where l_shipdate >= '1994-01-01' and l_shipdate < '1995-01-01' -- modified not to include cast({'year': 1} as interval) and l_discount between 0.08 - 0.01 and 0.08 + 0.01 and l_quantity < 24;