Skip to content

Commit 0a3d84a

Browse files
committed
revert changes
1 parent a3cf3ca commit 0a3d84a

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

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

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,11 @@ object LocalRelation {
4343
}
4444
}
4545

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)
46+
case class LocalRelation(
47+
output: Seq[Attribute],
48+
data: Seq[InternalRow] = Nil,
49+
// Indicates whether this relation has data from a streaming source.
50+
override val isStreaming: Boolean = false)
5051
extends LeafNode with analysis.MultiInstanceRelation {
5152

5253
// A local relation must have resolved output.

0 commit comments

Comments
 (0)