| 218 | } |
| 219 | |
| 220 | Dictionary::TableData* Dictionary::HashTable::getEntryByHash(const char* s, FB_SIZE_T len) |
| 221 | { |
| 222 | unsigned h = Firebird::InternalHash::hash(len, reinterpret_cast<const UCHAR*>(s), hashSize[level]); |
| 223 | return &table[h]; |
| 224 | } |
| 225 | |
| 226 | bool Dictionary::checkConsistency(Dictionary::HashTable* oldValue) |
| 227 | { |
no test coverage detected