anigos commented on PR #7886:
URL: https://github.com/apache/iceberg/pull/7886#issuecomment-1971448392

   Will this work in case of `MERGE INTO`
   
   ```
   MERGE INTO TAB1 trg USING TAB2 src ON (
     trg.serial_id = src.serial_id 
   )
   AND (
     (
       iceberg.system.bucket(10, id) = 2 
     )
   )
   WHEN MATCHED THEN
   UPDATE
   SET
     trg.data = src.data,
     trg.category = src.category
     WHEN NOT MATCHED THEN
   INSERT
     (serial_id, data, category)
   VALUES
     (
       src.serial_id, 
       src.data,
       src.category
     );
   ```


-- 
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...@iceberg.apache.org

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


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org

Reply via email to