| 469 | } |
| 470 | |
| 471 | static std::shared_ptr<Table> ToTable(const std::shared_ptr<Array>& array, |
| 472 | double chunk_proportion = 1.0) { |
| 473 | return *Table::FromChunkedStructArray(ToChunked(array, chunk_proportion)); |
| 474 | } |
| 475 | |
| 476 | template <typename T> |
| 477 | static void BenchmarkFieldPathGet(benchmark::State& state, // NOLINT non-const reference |
no test coverage detected