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 a3cf3ca commit 0a3d84aCopy full SHA for 0a3d84a
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/plans/logical/LocalRelation.scala
@@ -43,10 +43,11 @@ object LocalRelation {
43
}
44
45
46
-case class LocalRelation(output: Seq[Attribute],
47
- data: Seq[InternalRow] = Nil,
48
- // Indicates whether this relation has data from a streaming source.
49
- override val isStreaming: Boolean = false)
+case class LocalRelation(
+ output: Seq[Attribute],
+ data: Seq[InternalRow] = Nil,
+ // Indicates whether this relation has data from a streaming source.
50
+ override val isStreaming: Boolean = false)
51
extends LeafNode with analysis.MultiInstanceRelation {
52
53
// A local relation must have resolved output.
0 commit comments