Skip to content

Commit a28dece

Browse files
committed
Update logical/basicOperators on master branch
[SPARK-2234][SQL]Spark SQL basicOperators add Except operator #1151
1 parent 3bf7def commit a28dece

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/plans/logical/basicOperators.scala

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,12 @@ case class Except(left: LogicalPlan, right: LogicalPlan) extends BinaryNode {
9090
def references = Set.empty
9191
}
9292

93+
case class Except(left: LogicalPlan, right: LogicalPlan) extends BinaryNode {
94+
def output = left.output
95+
96+
def references = Set.empty
97+
}
98+
9399
case class InsertIntoTable(
94100
table: LogicalPlan,
95101
partition: Map[String, Option[String]],

0 commit comments

Comments
 (0)