hililiwei opened a new pull request, #6075:
URL: https://github.com/apache/iceberg/pull/6075
## What is the purpose of the change
Support for Changlog scanning in the new Flink Source(FLIP-27)
It can be turned on in the following ways:
```
SELECT * FROM tableName /*+ OPTIONS('scan-mode'='CHANGELOG_SCAN')*/
ScanContext scanContext =
ScanContext.builder()
.scanMode("CHANGELOG_SCAN")
......
.build();
```
## Brief change log
* Add a Reader for ChangeLog
* Refactor the Split
* Remove DataIterator
## Verifying this change
* Several test cases have been added
--
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]