Searched refs:TK_COLUMN (Results 1 - 11 of 11) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Dauth.c126 ** The pExpr should be a TK_COLUMN expression. The table referred to
130 ** If the auth function returns SQLITE_IGNORE, change the TK_COLUMN
155 assert( pExpr->op==TK_COLUMN || pExpr->op==TK_TRIGGER );
H A Dresolve.c64 if( pOrig->op!=TK_COLUMN && zType[0]!='G' ){
114 ** pExpr->op Set to TK_COLUMN.
386 pExpr->op = (isTrigger ? TK_TRIGGER : TK_COLUMN);
410 Expr *p = sqlite3ExprAlloc(db, TK_COLUMN, 0, 0);
431 ** Resolve symbolic names into TK_COLUMN operators for the current
471 pExpr->op = TK_COLUMN;
1111 ** Expr.op Changed to TK_COLUMN
H A Dexpr.c45 if( (op==TK_AGG_COLUMN || op==TK_COLUMN || op==TK_REGISTER)
49 ** a TK_COLUMN but was previously evaluated and cached in a register */
101 op==TK_AGG_COLUMN || op==TK_COLUMN || op==TK_REGISTER || op==TK_TRIGGER
104 ** a TK_COLUMN but was previously evaluated and cached in a register */
1132 case TK_COLUMN:
1136 testcase( pExpr->op==TK_COLUMN );
1309 case TK_COLUMN: {
1368 if( pEList->a[0].pExpr->op!=TK_COLUMN ) return 0; /* Result is a column */
2293 /* Otherwise, fall thru into the TK_COLUMN case */
2295 case TK_COLUMN
[all...]
H A Dwhere.c433 ** sets their opcodes to TK_COLUMN and their Expr.iTable fields to
443 if( p->op==TK_COLUMN ){
665 if( pLeft->op!=TK_COLUMN || sqlite3ExprAffinity(pLeft)!=SQLITE_AFF_TEXT ){
750 if( pList->a[1].pExpr->op != TK_COLUMN ){
1147 if( pLeft->op==TK_COLUMN ){
1152 if( pRight && pRight->op==TK_COLUMN ){
1346 && pExpr->pLeft->op==TK_COLUMN
1462 if( pExpr->op!=TK_COLUMN || pExpr->iTable!=base ){
1988 if( pExpr->op!=TK_COLUMN || pExpr->iTable!=pSrc->iCursor ) break;
H A Dselect.c992 case TK_COLUMN: {
1001 testcase( pExpr->op==TK_COLUMN );
1173 }else if( (p->op==TK_COLUMN || p->op==TK_AGG_COLUMN) && pTabList ){
1251 if( pColExpr->op==TK_COLUMN && ALWAYS(pColExpr->pTab!=0) ){
2498 if( pExpr->op==TK_COLUMN && pExpr->iTable==iTable ){
3978 /* Convert TK_COLUMN nodes into TK_AGG_COLUMN and make entries in
4299 pMinMax->a[0].pExpr->op = TK_COLUMN;
H A Dfkey.c530 pRight = sqlite3Expr(db, TK_COLUMN, 0);
H A Dvtab.c874 if( pExpr->op!=TK_COLUMN ) return pDef;
H A Dparse.y1110 p = sqlite3Expr(pParse->db, TK_COLUMN, 0);
1121 p = sqlite3PExpr(pParse, TK_COLUMN, 0, 0, 0);
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c7276 #define TK_COLUMN 152 macro
9946 ** For such expressions, Expr.op is set to TK_COLUMN and Expr.iTable is
10009 int iTable; /* TK_COLUMN: cursor number of table holding column
10012 ynVar iColumn; /* TK_COLUMN: column index. -1 for rowid.
10019 Table *pTab; /* Table for TK_COLUMN expressions. */
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c8352 #define TK_COLUMN 154 macro
11313 ** For such expressions, Expr.op is set to TK_COLUMN and Expr.iTable is
11378 int iTable; /* TK_COLUMN: cursor number of table holding column
11382 ynVar iColumn; /* TK_COLUMN: column index. -1 for rowid.
11387 ** TK_COLUMN: the value of p5 for OP_Column
11390 Table *pTab; /* Table for TK_COLUMN expressions. */
[all...]
/external/sqlite/dist/
H A Dsqlite3.c8352 #define TK_COLUMN 154 macro
11313 ** For such expressions, Expr.op is set to TK_COLUMN and Expr.iTable is
11378 int iTable; /* TK_COLUMN: cursor number of table holding column
11382 ynVar iColumn; /* TK_COLUMN: column index. -1 for rowid.
11387 ** TK_COLUMN: the value of p5 for OP_Column
11390 Table *pTab; /* Table for TK_COLUMN expressions. */
[all...]

Completed in 681 milliseconds