Home
last modified time | relevance | path

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

/titanic_44/usr/src/lib/libsqlite/src/
H A Dcopy.c77 if( pTab->iPKey>=0 ){ in sqliteCopy()
78 sqliteVdbeAddOp(v, OP_FileColumn, pTab->iPKey, 0); in sqliteCopy()
84 if( i==pTab->iPKey ){ in sqliteCopy()
92 sqliteGenerateConstraintChecks(pParse, pTab, 0, 0, pTab->iPKey>=0, in sqliteCopy()
H A Dauth.c139 }else if( pTab->iPKey>=0 ){ in sqliteAuthRead()
140 assert( pTab->iPKey<pTab->nCol ); in sqliteAuthRead()
141 zCol = pTab->aCol[pTab->iPKey].zName; in sqliteAuthRead()
H A Dupdate.c128 if( j==pTab->iPKey ){ in sqliteUpdate()
288 if( i==pTab->iPKey ){ in sqliteUpdate()
366 if( i==pTab->iPKey ){ in sqliteUpdate()
H A Dinsert.c292 if( j==pTab->iPKey ){ in sqliteInsert()
316 keyColumn = pTab->iPKey; in sqliteInsert()
447 if( i==pTab->iPKey ){ in sqliteInsert()
654 if( i==pTab->iPKey ){ in sqliteGenerateConstraintChecks()
772 if( idx==pTab->iPKey ){ in sqliteGenerateConstraintChecks()
H A Ddelete.c386 if( idx==pTab->iPKey ){ in sqliteGenerateRowIndexDelete()
H A Dbuild.c523 pTable->iPKey = -1; in sqliteStartTable()
711 pTab->iPKey = iCol; in sqliteAddPrimaryKey()
1724 if( pTab->iPKey==iCol ){ in sqliteCreateIndex()
H A Dpragma.c666 if( idx==pTab->iPKey ){ in sqlitePragma()
H A DsqliteInt.h503 int iPKey; /* If not less then 0, use aCol[iPKey] as the primary key */ member
H A Dselect.c679 if( iCol<0 ) iCol = pTab->iPKey; in generateColumnTypes()
734 if( iCol<0 ) iCol = pTab->iPKey; in generateColumnNames()
835 pTab->iPKey = -1; in sqliteResultSetOfSelect()
H A Dexpr.c480 pExpr->iColumn = j==pTab->iPKey ? -1 : j; in lookupName()
512 pExpr->iColumn = j==pTab->iPKey ? -1 : j; in lookupName()