| 49 | } |
| 50 | |
| 51 | std::shared_ptr<ColumnDescriptor> Int64Schema(Repetition::type repetition) { |
| 52 | auto node = PrimitiveNode::Make("int64", repetition, Type::INT64); |
| 53 | return std::make_shared<ColumnDescriptor>(node, repetition != Repetition::REQUIRED, |
| 54 | repetition == Repetition::REPEATED); |
| 55 | } |
| 56 | |
| 57 | void SetBytesProcessed(::benchmark::State& state, Repetition::type repetition) { |
| 58 | int64_t num_values = state.iterations() * state.range(0); |
no test coverage detected