** If the hash table contains an entry with a key equal to the string ** passed as the final two arguments to this function, return a pointer ** to the payload string. Otherwise, if zKey/nKey is not present in the ** hash table, return NULL. */
| 8642 | ** hash table, return NULL. |
| 8643 | */ |
| 8644 | static const char *idxHashSearch(IdxHash *pHash, const char *zKey, int nKey){ |
| 8645 | IdxHashEntry *pEntry = idxHashFind(pHash, zKey, nKey); |
| 8646 | if( pEntry ) return pEntry->zVal; |
| 8647 | return 0; |
| 8648 | } |
| 8649 | |
| 8650 | /* |
| 8651 | ** Allocate and return a new IdxConstraint object. Set the IdxConstraint.zColl |
no test coverage detected