Details
-
New Feature
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
Description
3 of the 22 TPC-H queries use the BETWEEN operator which is syntactic sugar for:
{value} >= {low} AND {value}<=
{high}e.g.
`and l_discount between 0.06 - 0.01 and 0.06 + 0.01`
is equal to
`and l_discount > 0.06 - 0.01 and l_discount < 0.06 + 0.01`
Attachments
Issue Links
- links to