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 d4ac5e5 commit ac73e60Copy full SHA for ac73e60
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/plans/logical/basicOperators.scala
@@ -189,3 +189,10 @@ case class Distinct(child: LogicalPlan) extends UnaryNode {
189
case object NoRelation extends LeafNode {
190
override def output = Nil
191
}
192
+
193
+case class Intersect(left: LogicalPlan, right: LogicalPlan) extends BinaryNode {
194
+ // TODO: These aren't really the same attributes as nullability etc might change.
195
+ def output = left.output
196
197
+ def references = Set.empty
198
+}
0 commit comments