Searched refs:iColumn (Results 1 - 6 of 6) sorted by relevance

/osnet-11/usr/src/lib/libsqlite/src/
H A Dauth.c136 if( pExpr->iColumn>=0 ){
137 assert( pExpr->iColumn<pTab->nCol );
138 zCol = pTab->aCol[pExpr->iColumn].zName;
H A Dwhere.c260 if( j<nExpr && pOrderBy->a[j].pExpr->iColumn==pIdx->aiColumn[i] ){ j++; }
264 if( pOrderBy->a[i+j].pExpr->iColumn!=pIdx->aiColumn[i+nEqCol] ) break;
507 if( aExpr[j].idxLeft==iCur && aExpr[j].p->pLeft->iColumn<0
518 if( aExpr[j].idxRight==iCur && aExpr[j].p->pRight->iColumn<0
571 int iColumn = aExpr[j].p->pLeft->iColumn; local
574 if( pIdx->aiColumn[k]==iColumn ){
606 int iColumn = aExpr[j].p->pRight->iColumn; local
609 if( pIdx->aiColumn[k]==iColumn ){
[all...]
H A Dexpr.c396 ** pExpr->iColumn Set to the column number within the table.
480 pExpr->iColumn = j==pTab->iPKey ? -1 : j;
512 pExpr->iColumn = j==pTab->iPKey ? -1 : j;
525 pExpr->iColumn = -1;
547 pExpr->iColumn = j;
609 ** table. The Expr.iColumn value is changed to the index of the column
610 ** of the referenced table. The Expr.iColumn value for the special
750 ** of the memory cell in iColumn.
752 pExpr->iColumn = pParse->nMem++;
753 if( sqliteSelect(pParse, pExpr->pSelect, SRT_Mem, pExpr->iColumn,
[all...]
H A Dselect.c673 int iCol = p->iColumn;
728 int iCol = p->iColumn;
1071 ** the top-level node is changed to TK_COLUMN and the iColumn value of
1145 pE->iColumn = iCol;
1175 ** a TK_COLUMN as its root node. The Expr.iColumn refers to a
1213 assert( pE->iColumn>=0 );
1214 if( pEList->nExpr>pE->iColumn ){
1215 pE->dataType = sqliteExprType(pEList->a[pE->iColumn].pExpr);
1515 ** a column in table number iTable with a copy of the iColumn-th
1530 if( pExpr->iColumn<
[all...]
H A Dparse.y862 A->iColumn = OE_Ignore;
867 A->iColumn = OE_Rollback;
872 A->iColumn = OE_Abort;
877 A->iColumn = OE_Fail;
H A DsqliteInt.h669 ** Expr.iColumn is the column number for the specific column. If the
694 int iTable, iColumn; /* When op==TK_COLUMN, then this expr node means the member in struct:Expr
695 ** iColumn-th field of the iTable-th table. */

Completed in 31 milliseconds