Search before asking
Description
dataset: TPCH
sql: o_orderpriority, count(*) as order_count from orders where o_orderdate >= date '1993-07-01' and o_orderdate < date '1993-07-01' + interval '3' month group by o_orderpriority order by o_orderpriority;
predicates are not push down for this query if o_orderdate is datev2 type
Solution
No response
Are you willing to submit PR?
Code of Conduct