JQ-Cao opened a new issue, #6698: URL: https://github.com/apache/paimon/issues/6698
### Search before asking - [x] I searched in the [issues](https://github.com/apache/paimon/issues) and found nothing similar. ### Paimon version master commit id:e14a8111 ### Compute Engine all ### Minimal reproduce step paimon table ``` CREATE TABLE T ( a INT, b INT, PRIMARY KEY (a) NOT ENFORCED ) WITH ( 'changelog-producer' = 'lookup', 'bucket' = '1', 'deletion-vectors.enabled' = 'true' ) INSERT INTO T VALUES (1, 2), (2, 2), (3, 3); SELECT * FROM T /*+ OPTIONS( 'scan.mode' = 'incremental', 'incremental-between' = '0,1'*/; ``` The result is EMPTY ### What doesn't meet your expectations? [+I[1, 2], +I[2, 2], +I[3, 3]] ### Anything else? _No response_ ### Are you willing to submit a PR? - [x] I'm willing to submit a PR! -- 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]
