elferherrera commented on issue #3607: URL: https://github.com/apache/iceberg/issues/3607#issuecomment-981540815
@RussellSpitzer is it possible for you to elaborate a bit more what you mean with pushdown? Also, based on your suggestion, the merge query should look like this? ``` MERGE INTO iceberg_hive_cat.iceberg_poc_db.iceberg_tab target USING (SELECT * FROM source) ON target.col1 = source.col1 AND target.col2 = target.col2 AND target.col3 = source.col3 AND part_date_col between '2021-01-01' and '2021-01-16' ``` Btw, how does this work with hidden partitions? -- 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]
