fantasy2100 opened a new issue, #5179: URL: https://github.com/apache/paimon/issues/5179
### Search before asking - [x] I searched in the [issues](https://github.com/apache/paimon/issues) and found nothing similar. ### Paimon version 1.0.0 ### Compute Engine Flink ### Minimal reproduce step CREATE TABLE t1 ( k INT, a INT, b INT, g_1 INT, PRIMARY KEY (k) NOT ENFORCED ) WITH ( 'merge-engine' = 'partial-update', 'fields.a.aggregate-function' = 'sum', 'fields.b.aggregate-function' = 'last_non_null_value', 'fields.g_1.sequence-group' = 'a,b' ); INSERT INTO t1 VALUES (1, 1, 1, 1); INSERT INTO t1 VALUES (1, 2, 2, 2); INSERT INTO t1 VALUES (1, 3, 3, 1); ### What doesn't meet your expectations? when g_1 of third record is smaller, third record should be ignored。 I expect the result to be: 1,3,2,2 ### 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]
