| 170 | } |
| 171 | |
| 172 | void insertEntry(offset_t entry, sel_t posInKeyVector) { |
| 173 | auto* offsets = reinterpret_cast<offset_t*>(resultVector->getData()); |
| 174 | offsets[posInKeyVector] = entry; |
| 175 | if (ignoreErrors) { |
| 176 | // if the lookup was successful we may add the current entry to the output selection |
| 177 | resultVector->state->getSelVectorUnsafe()[insertOffset] = posInKeyVector; |
| 178 | } |
| 179 | ++insertOffset; |
| 180 | } |
| 181 | |
| 182 | bool ignoreErrors; |
| 183 | ValueVector* resultVector; |
no test coverage detected