| 529 | } |
| 530 | |
| 531 | static void FieldPathGetFromWideTable( |
| 532 | benchmark::State& state) { // NOLINT non-const reference |
| 533 | constexpr int kNumColumns = 10000; |
| 534 | const double chunk_proportion = state.range(0) / 100.0; |
| 535 | auto table = ToTable(GenerateTestArray(kNumColumns), chunk_proportion); |
| 536 | BenchmarkFieldPathGet(state, *table, kNumColumns, table->column(0)->num_chunks()); |
| 537 | } |
| 538 | |
| 539 | BENCHMARK(TypeEqualsSimple); |
| 540 | BENCHMARK(TypeEqualsComplex); |
nothing calls this directly
no test coverage detected