kbendick commented on issue #4997:
URL: https://github.com/apache/iceberg/issues/4997#issuecomment-1150623315
I suspect that your table partitioning might be different in some way. If
you can please share your create table ddl (or the relevant portions). I was
actually able to make `date_add` pushdown _without_ disabling broadcast joins:
```
spark-sql> explain extended select * from date_partition_pushdown_test where
dt between date_add('2022-06-06', -1) AND '2022-06-06';
...
== Physical Plan ==
*(1) Project [id#20L, dt#21]
+- *(1) Filter ((isnotnull(dt#21) AND (dt#21 >= 2022-06-07)) AND (dt#21 <=
2022-06-06))
+- BatchScan[id#20L, dt#21] demo.date_partition_pushdown_test [filters=dt
IS NOT NULL, dt >= 19150, dt <= 19149] RuntimeFilters: []
```
As you can see, the filter on dt (on the Iceberg partitioning) is pushed
down entirely).
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]