We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6bff98 commit 5142ac3Copy full SHA for 5142ac3
1 file changed
cpp/src/arrow/column-benchmark.cc
@@ -37,7 +37,7 @@ std::shared_ptr<Array> MakePrimitive(int32_t length, int32_t null_count = 0) {
37
static void BM_BuildInt32ColumnByChunk(
38
benchmark::State& state) { // NOLINT non-const reference
39
ArrayVector arrays;
40
- for (int chunk_n = 0; chunk_n < state.range_x(); ++chunk_n) {
+ for (int chunk_n = 0; chunk_n < state.range(0); ++chunk_n) {
41
arrays.push_back(MakePrimitive<Int32Array>(100, 10));
42
}
43
const auto INT32 = std::make_shared<Int32Type>();
0 commit comments