Skip to content

Commit d7caeb7

Browse files
committed
Remove return types in InMemoryTableScanExec.scala
1 parent 14df72f commit d7caeb7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sql/core/src/main/scala/org/apache/spark/sql/execution/columnar/InMemoryTableScanExec.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -288,8 +288,8 @@ private[sql] case class InMemoryTableScanExec(
288288
sqlContext.getConf("spark.sql.inMemoryTableScanStatistics.enable", "false").toBoolean
289289

290290
// Accumulators used for testing purposes
291-
lazy val readPartitions: LongAccumulator = sparkContext.longAccumulator
292-
lazy val readBatches: LongAccumulator = sparkContext.longAccumulator
291+
lazy val readPartitions = sparkContext.longAccumulator
292+
lazy val readBatches = sparkContext.longAccumulator
293293

294294
private val inMemoryPartitionPruningEnabled = sqlContext.conf.inMemoryPartitionPruning
295295

0 commit comments

Comments
 (0)