** 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. */
| 10485 | ** hash table, return NULL. |
| 10486 | */ |
| 10487 | static const char *idxHashSearch(IdxHash *pHash, const char *zKey, int nKey){ |
| 10488 | IdxHashEntry *pEntry = idxHashFind(pHash, zKey, nKey); |
| 10489 | if( pEntry ) return pEntry->zVal; |
| 10490 | return 0; |
| 10491 | } |
| 10492 | |
| 10493 | /* |
| 10494 | ** Allocate and return a new IdxConstraint object. Set the IdxConstraint.zColl |
no test coverage detected