SparkQA commented on issue #26167: [SPARK-28893][SQL] Support MERGE INTO in the parser and add the corresponding logical plan URL: https://github.com/apache/spark/pull/26167#issuecomment-548668653 **[Test build #113057 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/113057/testReport)** for PR 26167 at commit [`65fc525`](https://github.com/apache/spark/commit/65fc525ab5e2556781fb6887e341cea046505ea6). * This patch passes all tests. * This patch merges cleanly. * This patch adds the following public classes _(experimental)_: * `case class MergeIntoStatement(` * `sealed abstract class MergeClause(condition: Option[Expression])` * `case class DeleteClause(deleteCondition: Option[Expression]) extends MergeClause(deleteCondition)` * `case class UpdateClause(updateCondition: Option[Expression],` * `case class InsertClause(insertCondition: Option[Expression],` * `case class MergeIntoTable(` * `sealed abstract class MergeAction(` * `case class DeleteAction(deleteCondition: Option[Expression]) extends MergeAction(deleteCondition)` * `case class UpdateAction(` * `case class InsertAction(`
---------------------------------------------------------------- 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]
