| 186 | } |
| 187 | |
| 188 | static bool compareRelEntry(const common::ValueVector* vector, uint32_t vectorPos, |
| 189 | const uint8_t* entry) { |
| 190 | DASSERT(3 == common::StructType::getFieldIdx(vector->dataType, common::InternalKeyword::ID)); |
| 191 | auto idVector = common::StructVector::getFieldVector(vector, 3).get(); |
| 192 | return compareEntry<common::internalID_t>(idVector, vectorPos, |
| 193 | getFTStructRelID(entry, vector->dataType)); |
| 194 | } |
| 195 | |
| 196 | template<> |
| 197 | [[maybe_unused]] bool compareEntry<struct_entry_t>(const common::ValueVector* vector, |
nothing calls this directly
no test coverage detected