xianyinxin opened a new pull request #26167: [SPARK-28893][SQL] Support MERGE 
INTO in the parser and add the corresponding logical plan
URL: https://github.com/apache/spark/pull/26167
 
 
   
   
   ### What changes were proposed in this pull request?
   This PR supports MERGE INTO in the parser and add the corresponding logical 
plan. The SQL syntax likes,
   ```
   MERGE INTO [db_name.]target_table [AS target_alias]
   USING [db_name.]source_table | subquery [AS source_alias]
   ON <merge_condition>
   [ WHEN MATCHED [ AND <condition> ] THEN <matched_action> ]
   [ WHEN MATCHED [ AND <condition> ] THEN <matched_action> ]
   [ WHEN NOT MATCHED [ AND <condition> ]  THEN <not_matched_action> ]
   ```
   where
   ```
   <matched_action>  =
     DELETE  |
     UPDATE SET *  |
     UPDATE SET column1 = value1 [, column2 = value2 ...]
   
   <not_matched_action>  =
     INSERT *  |
     INSERT (column1 [, column2 ...]) VALUES (value1 [, value2 ...])
   ```
   
   ### Why are the changes needed?
   This is a start work for introduce `MERGE INTO` support for the builtin 
datasource, and the design work for the `MERGE INTO` support in DSV2.
   
   ### Does this PR introduce any user-facing change?
   No.
   
   
   ### How was this patch tested?
   New test cases.

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

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

Reply via email to