Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c19835 #define IsPrimaryKeyIndex(X) ((X)->idxType==SQLITE_IDXTYPE_PRIMARYKEY) macro
124481 if( !HasRowid(pTab) && IsPrimaryKeyIndex(pIdx) ){
124723 if( !HasRowid(pTab) && IsPrimaryKeyIndex(pX) ){
125223 if( !HasRowid(pIdx->pTable) && IsPrimaryKeyIndex(pIdx) ){
127396 for(p=pTab->pIndex; p && !IsPrimaryKeyIndex(p); p=p->pNext){}
128781 if( IsPrimaryKeyIndex(pIdx) ) continue;
131822 IsPrimaryKeyIndex(pIdx) ? SQLITE_CONSTRAINT_PRIMARYKEY
133176 if( IsPrimaryKeyIndex(pIdx) && !HasRowid(pTab) ){
137421 if( IsPrimaryKeyIndex(pIdx) ){
141225 int regCmp = (IsPrimaryKeyIndex(pIdx) ? regIdx : regR);
[all …]