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 c356ebe commit fd8cdbdCopy full SHA for fd8cdbd
sql/core/src/main/scala/org/apache/spark/sql/execution/columnar/InMemoryTableScanExec.scala
@@ -51,9 +51,7 @@ case class InMemoryTableScanExec(
51
case BooleanType | ByteType | ShortType | IntegerType | LongType |
52
FloatType | DoubleType => false
53
case _ => true
54
- }).isEmpty &&
55
- !WholeStageCodegenExec.isTooManyFields(conf, relation.schema) &&
56
- children.find(p => WholeStageCodegenExec.isTooManyFields(conf, p.schema)).isEmpty
+ }).isEmpty && !WholeStageCodegenExec.isTooManyFields(conf, relation.schema)
57
}
58
59
private val columnIndices =
0 commit comments