okayhooni commented on issue #9955: URL: https://github.com/apache/iceberg/issues/9955#issuecomment-1996746055
@dyzcs Thank you..! I'll try that @pvary I already tested ingestion with `INCREMENTAL_FROM_LATEST_SNAPSHOT` option. But it is not working as I expected! example) - current snapshot: [row1, row2, row3, row4] - next snapshot: [row1, row2, row3, row4, row5] ``` INSERT INTO sink_table SELECT * FROM source_table ``` Then, I want to sink my Iceberg table with only `row5`, but as you know, there are all 5 rows in the next snapshot! -> so all the 5 rows are sinked to target table - expected: [row5] - real result: [row1, row2, row3, row4, row5] -- 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: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org