leaves12138 commented on PR #6014:
URL: https://github.com/apache/paimon/pull/6014#issuecomment-3149258281

   Can we add a test that:
   Update one record on table, then we search it's lineage.
   
   For, example,
   Before: name: zhang.san  id: 1  score: 100  (Snapshot 0)
   After: name:zhang.san id:1 score: 120  (Snapshot 1)
   
   then, we search for it
   select *, _SEQUENCE_NUMBER FROM  paimon_incremental_query('tableName', 0, 2) 
WHERE name = 'zhang.san'; 
   
   We get:
   name: zhang.san  id: 1  score: 100 _SEQUENCE_NUMBER:0
   name:zhang.san id:1 score: 120 _SEQUENCE_NUMBER:1


-- 
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: issues-unsubscr...@paimon.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to