We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7859e56 commit a36eb0aCopy full SHA for a36eb0a
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/plans/logical/basicOperators.scala
@@ -89,6 +89,13 @@ case class Join(
89
}
90
91
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
99
case class InsertIntoTable(
100
table: LogicalPlan,
101
partition: Map[String, Option[String]],
0 commit comments