Open walterddr opened 1 year ago
currently, we are not 100% supported for TPC-H syntax. we would like to track our progress towards TPC-H here
orderdate < date '2000-01-01' + interval '3' month
(a=b AND c > 0) OR (a=b AND d < 0)
a=b AND (c > 0 OR d < 0)
WHERE EXIST (SELECT ...)
WHERE a > (SELECT COUNT(*) FROM ...)
CC @ankitsultana @kishoreg @xiangfu0
list of features missing might not be exhausted. we can add more items as we finish step 1 to gather unsupported queries/patterns
currently, we are not 100% supported for TPC-H syntax. we would like to track our progress towards TPC-H here
orderdate < date '2000-01-01' + interval '3' month
)(a=b AND c > 0) OR (a=b AND d < 0)
doesn't get converted toa=b AND (c > 0 OR d < 0)
)WHERE EXIST (SELECT ...)
,WHERE a > (SELECT COUNT(*) FROM ...)
)CC @ankitsultana @kishoreg @xiangfu0