Skip to content

Commit

Permalink
Fix orc_reader_benchmark.cpp compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
davidwendt committed Jun 25, 2021
1 parent 58438c0 commit e825086
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/benchmarks/io/orc/orc_reader_benchmark.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ void BM_orc_read_varying_options(benchmark::State& state)
// Need to assume that an additional "overflow" stripe is present
stripes_to_read.push_back(num_stripes);
}
read_options.set_stripes(stripes_to_read);
read_options.set_stripes({stripes_to_read});
} break;
case row_selection::NROWS:
read_options.set_skip_rows(chunk * chunk_row_cnt);
Expand Down

0 comments on commit e825086

Please sign in to comment.