comphead commented on code in PR #25278:
URL: https://github.com/apache/datafusion/pull/25278#discussion_r4021127166


##########
datafusion/sqllogictest/test_files/merge_into.slt:
##########
@@ -241,6 +241,18 @@ statement error DataFusion error: This feature is not 
implemented: MERGE INSERT
 merge into target using source on target.id = source.id
 when not matched then insert row;
 
+statement error DataFusion error: This feature is not implemented: MERGE 
UPDATE SET \* is not supported
+merge into target using source on target.id = source.id
+when matched then update set *;
+
+statement error DataFusion error: This feature is not implemented: MERGE 
INSERT \* is not supported
+merge into target using source on target.id = source.id
+when not matched then insert *;
+
+statement error DataFusion error: This feature is not implemented: MERGE DO 
NOTHING is not supported
+merge into target using source on target.id = source.id

Review Comment:
   its useless statement, wondering why it is considering to be a valid sql



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