| 285 | } |
| 286 | |
| 287 | void BaseHashTable::initCompareFuncs() { |
| 288 | compareEntryFuncs.reserve(keyTypes.size()); |
| 289 | for (auto i = 0u; i < keyTypes.size(); ++i) { |
| 290 | compareEntryFuncs.push_back(getCompareEntryFunc(keyTypes[i])); |
| 291 | ftCompareEntryFuncs.push_back(getFactorizedTableCompareEntryFunc(keyTypes[i])); |
| 292 | } |
| 293 | } |
| 294 | |
| 295 | void BaseHashTable::initTmpHashVector() { |
| 296 | hashState = std::make_shared<DataChunkState>(); |
nothing calls this directly
no test coverage detected