Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c19856 #define IsPrimaryKeyIndex(X) ((X)->idxType==SQLITE_IDXTYPE_PRIMARYKEY) macro
124689 if( !HasRowid(pTab) && IsPrimaryKeyIndex(pIdx) ){
124931 if( !HasRowid(pTab) && IsPrimaryKeyIndex(pX) ){
125431 if( !HasRowid(pIdx->pTable) && IsPrimaryKeyIndex(pIdx) ){
127604 for(p=pTab->pIndex; p && !IsPrimaryKeyIndex(p); p=p->pNext){}
128989 if( IsPrimaryKeyIndex(pIdx) ) continue;
132030 IsPrimaryKeyIndex(pIdx) ? SQLITE_CONSTRAINT_PRIMARYKEY
133384 if( IsPrimaryKeyIndex(pIdx) && !HasRowid(pTab) ){
137642 if( IsPrimaryKeyIndex(pIdx) ){
141446 int regCmp = (IsPrimaryKeyIndex(pIdx) ? regIdx : regR);
[all …]