Skip to content

Commit

Permalink
PARQUET-1825: [C++] Fix compilation error in column_io_benchmark.cc
Browse files Browse the repository at this point in the history
Closes #6701 from xhochy/PARQUET-1825

Authored-by: Uwe L. Korn <uwe.korn@quantco.com>
Signed-off-by: Sutou Kouhei <kou@clear-code.com>
  • Loading branch information
xhochy authored and kou committed Mar 24, 2020
1 parent 8a33313 commit 2acabce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/parquet/column_io_benchmark.cc
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ static void BM_RleDecoding(::benchmark::State& state) {
while (state.KeepRunning()) {
LevelDecoder level_decoder;
level_decoder.SetData(Encoding::RLE, max_level, static_cast<int>(levels.size()),
buffer_rle->data());
buffer_rle->data(), rle_size);
level_decoder.Decode(static_cast<int>(state.range(0)), levels.data());
}

Expand Down

0 comments on commit 2acabce

Please sign in to comment.