Pandas886 opened a new issue, #5709: URL: https://github.com/apache/paimon/issues/5709
### Search before asking - [x] I searched in the [issues](https://github.com/apache/paimon/issues) and found nothing similar. ### Paimon version paimon 1.0.1 ### Compute Engine spark 3.5.0 ### Minimal reproduce step ``` spark.sql( """ |create table my_table ( | k int, | v string |) tblproperties ( | 'primary-key' = 'k','changelog-producer' = 'lookup','bucket'='4' |); |""".stripMargin) // // 快照1 spark.sql(" insert into my_table values (1, 'a'), (2, 'b')") // 快照2 spark.sql("delete from my_table where k = 1") // 快照3 spark.sql("insert into my_table values (11, 'a'), (2, 'bb')") ``` ### What doesn't meet your expectations? when query like below ``` spark.sql("SELECT * FROM `my_table$audit_log`").show() ``` error result appear: ``` +-------+---+---+ |rowkind| k| v| +-------+---+---+ | +I| 1| a| | +I| 2| b| +-------+---+---+ In my view, k=1 should ` -I` , k=2 should ` -U` and `+U` ### 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]
