Home
last modified time | relevance | path

Searched refs:IsPrimaryKeyIndex (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/sqlite3/
H A Dsqlite3.c19195 #define IsPrimaryKeyIndex(X) ((X)->idxType==SQLITE_IDXTYPE_PRIMARYKEY) macro
121168 if( !HasRowid(pTab) && IsPrimaryKeyIndex(pIdx) ){
121410 if( !HasRowid(pTab) && IsPrimaryKeyIndex(pX) ){
121910 if( !HasRowid(pIdx->pTable) && IsPrimaryKeyIndex(pIdx) ){
124063 for(p=pTab->pIndex; p && !IsPrimaryKeyIndex(p); p=p->pNext){}
125445 if( IsPrimaryKeyIndex(pIdx) ) continue;
128475 IsPrimaryKeyIndex(pIdx) ? SQLITE_CONSTRAINT_PRIMARYKEY
129833 if( IsPrimaryKeyIndex(pIdx) && !HasRowid(pTab) ){
133566 if( IsPrimaryKeyIndex(pIdx) ){
137363 int regCmp = (IsPrimaryKeyIndex(pIdx) ? regIdx : regR);
[all …]