| 162 | } |
| 163 | |
| 164 | Result<std::unique_ptr<Grouper>> MakeGrouper(const std::vector<TypeHolder>& key_types) { |
| 165 | return Grouper::Make(key_types, default_exec_context()); |
| 166 | } |
| 167 | |
| 168 | Result<std::unique_ptr<RowSegmenter>> MakeRowSegmenter( |
| 169 | const std::vector<TypeHolder>& key_types) { |
nothing calls this directly
no test coverage detected