Aitozi opened a new issue, #2217:
URL: https://github.com/apache/incubator-paimon/issues/2217

   ### Search before asking
   
   - [X] I searched in the 
[issues](https://github.com/apache/incubator-paimon/issues) and found nothing 
similar.
   
   
   ### Paimon version
   
   0.5.0
   
   ### Compute Engine
   
   Flink
   
   ### Minimal reproduce step
   
   ```java
    sql(
                   "CREATE TABLE IF NOT EXISTS T_P ("
                           + "j INT, k INT, a INT, b INT, c STRING, PRIMARY KEY 
(j,k) NOT ENFORCED)"
                           + " WITH ('merge-engine'='partial-update', 
'changelog-producer' = 'lookup', "
                           + "'fields.a.sequence-group'='j', 
'fields.b.sequence-group'='c');");
           batchSql("INSERT INTO T_P VALUES (1, 1, 1, 1, '1')");
           assertThat(sql("SELECT k, c FROM 
T_P")).containsExactlyInAnyOrder(Row.of(1, '1'));
   ```
   
   ### What doesn't meet your expectations?
   
   <img width="1081" alt="image" 
src="https://github.com/apache/incubator-paimon/assets/9486140/bbcafeaf-704f-45d3-ad7c-e33faaaf05b5";>
   
   
   ### 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]

Reply via email to