Closed
Description
Note: migrated from original JIRA: https://issues.apache.org/jira/browse/ARROW-10819
The TPC-H queries include use of the EXISTS which is used to test for the existence of any record in a subquery. For example:
and *exists* (
select
*
from
lineitem
where
l_orderkey = o_orderkey
and l_commitdate < l_receiptdate
)