puchengy commented on issue #4997: URL: https://github.com/apache/iceberg/issues/4997#issuecomment-1150283584
@kbendick Hey, here is the information: spark version: 3.2.0, with some custom changes. iceberg version: [0.13.1](https://github.com/pinterest/iceberg/commits/pinterest-release-0.13.1), with some patches from the iceberg master branch full query plan (with some columns masked out): ``` spark-sql> explain select * FROM db.tbl WHERE dt BETWEEN date_sub('2022-06-06', 1) and '2022-06-06'; plan == Physical Plan == *(1) Project [col1#66, col2#67L, ..., dt#89, hr#90] +- *(1) Filter (((cast(dt#89 as date) >= 2022-06-05) AND isnotnull(dt#89)) AND (dt#89 <= 2022-06-06)) +- BatchScan[col1#66, col2#67L, ..., dt#89, hr#90] spark_catalog.db.tbl [filters=dt IS NOT NULL, dt <= '2022-06-06'] RuntimeFilters: [] Time taken: 35.89 seconds, Fetched 1 row(s) ``` -- 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]
