Aitozi opened a new issue, #5874: URL: https://github.com/apache/paimon/issues/5874
### Search before asking - [x] I searched in the [issues](https://github.com/apache/paimon/issues) and found nothing similar. ### Paimon version 1.2 ### Compute Engine all ### Minimal reproduce step ``` @Test public void testEnableDV() { sql( "CREATE TABLE T (a INT, b INT, PRIMARY KEY (a) NOT ENFORCED) WITH (" + "'changelog-producer' = 'lookup', " + "'bucket' = '1')"); sql("INSERT INTO T VALUES (1, 2), (2, 2), (3, 3)"); sql("INSERT INTO T VALUES (1, 3)"); sql("INSERT INTO T VALUES (1, 4)"); sql("INSERT INTO T VALUES (1, 5)"); sql("INSERT INTO T VALUES (1, 6)"); sql("INSERT INTO T VALUES (1, 7)"); sql("ALTER TABLE T SET ('deletion-vectors.enabled' = 'true')"); List<Row> rows = sql("SELECT * FROM T"); System.out.println(rows); } ``` The result is ``` [+I[1, 6], +I[2, 2], +I[3, 3], +I[1, 7]] ``` ### What doesn't meet your expectations? . ### Anything else? _No response_ ### Are you willing to submit a PR? - [ ] 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]
