| 52 | using schema::PrimitiveNode; |
| 53 | |
| 54 | std::shared_ptr<ColumnDescriptor> Int64Schema(Repetition::type repetition) { |
| 55 | auto node = PrimitiveNode::Make("int64", repetition, Type::INT64); |
| 56 | return std::make_shared<ColumnDescriptor>(node, repetition != Repetition::REQUIRED, |
| 57 | repetition == Repetition::REPEATED); |
| 58 | } |
| 59 | |
| 60 | static void BM_PlainEncodingBoolean(benchmark::State& state) { |
| 61 | std::vector<bool> values(state.range(0), true); |
no test coverage detected