Skip to content

Commit a36eb0a

Browse files
committed
Update basicOperators.scala
1 parent 7859e56 commit a36eb0a

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,13 @@ case class Join(
8989
}
9090
}
9191

92+
case class Except(left: LogicalPlan, right: LogicalPlan) extends BinaryNode {
93+
// TODO: These aren't really the same attributes as nullability etc might change.
94+
def output = left.output
95+
96+
def references = Set.empty
97+
}
98+
9299
case class InsertIntoTable(
93100
table: LogicalPlan,
94101
partition: Map[String, Option[String]],

0 commit comments

Comments
 (0)