Zhangg7723 opened a new issue, #5415:
URL: https://github.com/apache/iceberg/issues/5415

   ### Feature Request / Improvement
   
   Spark added support for MERGE INTO statement that provides a flexible 
approach to update data,  but it's complex in UPSERT case, we can simplify 
MERGE INTO with default update operation and insert operation like:
   ```
   MERGE INTO prod.db.target t   -- a target table
   USING (SELECT ...) s          -- the source updates
   ```
   Same semantics as UPSERT, when match the default primary key, update target 
field with source row.
   
   ### Query engine
   
   Spark


-- 
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]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to