| 166 | } |
| 167 | |
| 168 | Result<std::unique_ptr<RowSegmenter>> MakeRowSegmenter( |
| 169 | const std::vector<TypeHolder>& key_types) { |
| 170 | return RowSegmenter::Make(key_types, /*nullable_leys=*/false, default_exec_context()); |
| 171 | } |
| 172 | |
| 173 | Result<std::unique_ptr<RowSegmenter>> MakeGenericSegmenter( |
| 174 | const std::vector<TypeHolder>& key_types) { |
nothing calls this directly
no test coverage detected