Skip to content

Commit

Permalink
Fix build error
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxGekk committed Jan 13, 2020
1 parent a3a99b1 commit 4a25815
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -317,12 +317,12 @@ object CSVBenchmark extends SqlBasedBenchmark {
}

benchmark.addCase(s"w/o filters", numIters) { _ =>
toNoop(readback)
readback.noop()
}

def withFilter(configEnabled: Boolean): Unit = {
withSQLConf(SQLConf.CSV_FILTER_PUSHDOWN_ENABLED.key -> configEnabled.toString()) {
toNoop(readback.filter($"key" === 0))
readback.filter($"key" === 0).noop()
}
}

Expand Down

0 comments on commit 4a25815

Please sign in to comment.