Home | History | Annotate | Download | only in dist

Lines Matching refs:fkeyHash

8824   Hash fkeyHash;       /* All foreign keys by referenced table name */
12560 + pSchema->fkeyHash.count
12565 nByte += sqlite3MallocSize(pSchema->fkeyHash.ht);
77070 pNextTo = (FKey *)sqlite3HashInsert(&p->pSchema->fkeyHash,
78977 sqlite3HashClear(&pSchema->fkeyHash);
78999 sqlite3HashInit(&p->fkeyHash);
81819 return (FKey *)sqlite3HashFind(&pTab->pSchema->fkeyHash, pTab->zName, nName);
82388 ** table pTab. Remove the deleted foreign keys from the Schema.fkeyHash
82397 /* Remove the FK from the fkeyHash hash table. */
82404 sqlite3HashInsert(&pTab->pSchema->fkeyHash, z, sqlite3Strlen30(z), p);