| 271 | } |
| 272 | |
| 273 | void insertGroups( |
| 274 | const RowVector& input, |
| 275 | HashLookup& lookup, |
| 276 | HashTable<false>& table) { |
| 277 | const SelectivityVector rows(input.size()); |
| 278 | insertGroups(input, rows, lookup, table); |
| 279 | } |
| 280 | |
| 281 | void insertGroups( |
| 282 | const RowVector& input, |
nothing calls this directly
no test coverage detected