| 697 | } |
| 698 | |
| 699 | static void BM_RowArray_Decode(benchmark::State& st, |
| 700 | const std::shared_ptr<DataType>& type) { |
| 701 | SchemaBuilder schema_builder; |
| 702 | DCHECK_OK(schema_builder.AddField(field("", type))); |
| 703 | auto schema = *schema_builder.Finish(); |
| 704 | RowArrayDecodeBenchmark(st, schema, 0); |
| 705 | } |
| 706 | |
| 707 | BENCHMARK_CAPTURE(BM_RowArray_Decode, "boolean", boolean()); |
| 708 | BENCHMARK_CAPTURE(BM_RowArray_Decode, "int8", int8()); |
nothing calls this directly
no test coverage detected