Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A Ddelete.c225 Index *pPk = sqlite3PrimaryKeyIndex(pTab); in sqlite3LimitWhere()
497 pPk = sqlite3PrimaryKeyIndex(pTab); in sqlite3DeleteFrom()
902 pPk = HasRowid(pTab) ? 0 : sqlite3PrimaryKeyIndex(pTab); in sqlite3GenerateRowIndexDelete()
H A Dupdate.c421 pPk = HasRowid(pTab) ? 0 : sqlite3PrimaryKeyIndex(pTab); in sqlite3Update()
1229 pPk = sqlite3PrimaryKeyIndex(pTab); in updateVirtualTable()
1284 pPk = sqlite3PrimaryKeyIndex(pTab); in updateVirtualTable()
H A Dwherecode.c2036 Index *pPk = sqlite3PrimaryKeyIndex(pIdx->pTable); in sqlite3WhereCodeOneLoopStart()
2190 Index *pPk = sqlite3PrimaryKeyIndex(pTab); in sqlite3WhereCodeOneLoopStart()
2303 Index *pPk = sqlite3PrimaryKeyIndex(pTab); in sqlite3WhereCodeOneLoopStart()
2601 Index *pPk = sqlite3PrimaryKeyIndex(pTab); in sqlite3WhereCodeOneLoopStart()
2748 Index *pPk = sqlite3PrimaryKeyIndex(pTab); in sqlite3WhereRightJoinLoop()
H A Dupsert.c281 Index *pPk = sqlite3PrimaryKeyIndex(pTab); in sqlite3UpsertDoUpdate()
H A Dpragma.c1174 Index *pPk = sqlite3PrimaryKeyIndex(pTab); in sqlite3Pragma()
1333 pIdx = sqlite3PrimaryKeyIndex(pTab); in sqlite3Pragma()
1765 pPk = sqlite3PrimaryKeyIndex(pTab); in sqlite3Pragma()
1862 p3 = sqlite3TableColumnToIndex(sqlite3PrimaryKeyIndex(pTab), j); in sqlite3Pragma()
H A Danalyze.c1222 Index *pPk = sqlite3PrimaryKeyIndex(pIdx->pTable); in analyzeOneTable()
1555 pIndex = sqlite3PrimaryKeyIndex(pTable);
1691 if( pTab && !HasRowid(pTab) ) pIdx = sqlite3PrimaryKeyIndex(pTab);
H A Dvtab.c855 assert( HasRowid(pNew) || sqlite3PrimaryKeyIndex(pNew)!=0 ); in sqlite3_declare_vtab()
858 && sqlite3PrimaryKeyIndex(pNew)->nKeyCol!=1 in sqlite3_declare_vtab()
H A Dbuild.c1080 Index *sqlite3PrimaryKeyIndex(Table *pTab){ in sqlite3PrimaryKeyIndex() function
2392 pPk = sqlite3PrimaryKeyIndex(pTab); in convertToWithoutRowidTable()
2395 pPk = sqlite3PrimaryKeyIndex(pTab); in convertToWithoutRowidTable()
2694 || p->iPKey>=0 || sqlite3PrimaryKeyIndex(p)!=0 ); in sqlite3EndTable()
2696 || (p->iPKey<0 && sqlite3PrimaryKeyIndex(p)==0) ); in sqlite3EndTable()
3987 if( !HasRowid(pTab) ) pPk = sqlite3PrimaryKeyIndex(pTab); in sqlite3CreateIndex()
H A Dinsert.c44 Index *pPk = sqlite3PrimaryKeyIndex(pTab); in sqlite3OpenTable()
1722 pPk = sqlite3PrimaryKeyIndex(pTab); in sqlite3GenerateConstraintChecks()
H A Dalter.c2214 pPk = sqlite3PrimaryKeyIndex(pTab); in sqlite3AlterDropColumn()
H A Dselect.c1052 pPk = sqlite3PrimaryKeyIndex(pTab); in selectExprDefer()
1732 assert( sqlite3PrimaryKeyIndex(pTab)->nKeyCol==nKey ); in generateSortTail()
7746 if( !HasRowid(pTab) ) pBest = sqlite3PrimaryKeyIndex(pTab); in sqlite3Select()
H A Dwhere.c6139 Index *pPk = sqlite3PrimaryKeyIndex(pTab); in sqlite3WhereBegin()
6516 Index *pPk = sqlite3PrimaryKeyIndex(pTab); in sqlite3WhereEnd()
H A DsqliteInt.h4622 Index *sqlite3PrimaryKeyIndex(Table*);
H A Dvdbeaux.c5283 preupdate.pPk = sqlite3PrimaryKeyIndex(pTab); in sqlite3VdbePreUpdateHook()
H A Dexpr.c3817 x = sqlite3TableColumnToIndex(sqlite3PrimaryKeyIndex(pTab), iCol); in sqlite3ExprCodeGetColumnOfTable()