| 249 | } |
| 250 | |
| 251 | void insertGroups( |
| 252 | const RowVector& input, |
| 253 | HashLookup& lookup, |
| 254 | HashTable<false>& table) { |
| 255 | const SelectivityVector rows(input.size()); |
| 256 | insertGroups(input, rows, lookup, table); |
| 257 | } |
| 258 | |
| 259 | void insertGroups( |
| 260 | const RowVector& input, |
nothing calls this directly
no test coverage detected