1cce7d176Sdrh /* 2b19a2bc6Sdrh ** 2001 September 15 3cce7d176Sdrh ** 4b19a2bc6Sdrh ** The author disclaims copyright to this source code. In place of 5b19a2bc6Sdrh ** a legal notice, here is a blessing: 6cce7d176Sdrh ** 7b19a2bc6Sdrh ** May you do good and not evil. 8b19a2bc6Sdrh ** May you find forgiveness for yourself and forgive others. 9b19a2bc6Sdrh ** May you share freely, never taking more than you give. 10cce7d176Sdrh ** 11cce7d176Sdrh ************************************************************************* 121ccde15dSdrh ** This file contains routines used for analyzing expressions and 13b19a2bc6Sdrh ** for generating VDBE code that evaluates expressions in SQLite. 14cce7d176Sdrh ** 15*aee18ef8Sdanielk1977 ** $Id: expr.c,v 1.195 2005/03/09 12:26:51 danielk1977 Exp $ 16cce7d176Sdrh */ 17cce7d176Sdrh #include "sqliteInt.h" 1804738cb9Sdrh #include <ctype.h> 19a2e00042Sdrh 20e014a838Sdanielk1977 /* 21e014a838Sdanielk1977 ** Return the 'affinity' of the expression pExpr if any. 22e014a838Sdanielk1977 ** 23e014a838Sdanielk1977 ** If pExpr is a column, a reference to a column via an 'AS' alias, 24e014a838Sdanielk1977 ** or a sub-select with a column as the return value, then the 25e014a838Sdanielk1977 ** affinity of that column is returned. Otherwise, 0x00 is returned, 26e014a838Sdanielk1977 ** indicating no affinity for the expression. 27e014a838Sdanielk1977 ** 28e014a838Sdanielk1977 ** i.e. the WHERE clause expresssions in the following statements all 29e014a838Sdanielk1977 ** have an affinity: 30e014a838Sdanielk1977 ** 31e014a838Sdanielk1977 ** CREATE TABLE t1(a); 32e014a838Sdanielk1977 ** SELECT * FROM t1 WHERE a; 33e014a838Sdanielk1977 ** SELECT a AS b FROM t1 WHERE b; 34e014a838Sdanielk1977 ** SELECT * FROM t1 WHERE (select a from t1); 35e014a838Sdanielk1977 */ 36bf3b721fSdanielk1977 char sqlite3ExprAffinity(Expr *pExpr){ 37a37cdde0Sdanielk1977 if( pExpr->op==TK_AS ){ 38bf3b721fSdanielk1977 return sqlite3ExprAffinity(pExpr->pLeft); 39a37cdde0Sdanielk1977 } 40a37cdde0Sdanielk1977 if( pExpr->op==TK_SELECT ){ 41bf3b721fSdanielk1977 return sqlite3ExprAffinity(pExpr->pSelect->pEList->a[0].pExpr); 42a37cdde0Sdanielk1977 } 43a37cdde0Sdanielk1977 return pExpr->affinity; 44a37cdde0Sdanielk1977 } 45a37cdde0Sdanielk1977 4653db1458Sdrh /* 470202b29eSdanielk1977 ** Return the default collation sequence for the expression pExpr. If 480202b29eSdanielk1977 ** there is no default collation type, return 0. 490202b29eSdanielk1977 */ 507cedc8d4Sdanielk1977 CollSeq *sqlite3ExprCollSeq(Parse *pParse, Expr *pExpr){ 517cedc8d4Sdanielk1977 CollSeq *pColl = 0; 520202b29eSdanielk1977 if( pExpr ){ 537cedc8d4Sdanielk1977 pColl = pExpr->pColl; 547cedc8d4Sdanielk1977 if( pExpr->op==TK_AS && !pColl ){ 557cedc8d4Sdanielk1977 return sqlite3ExprCollSeq(pParse, pExpr->pLeft); 560202b29eSdanielk1977 } 570202b29eSdanielk1977 } 587cedc8d4Sdanielk1977 if( sqlite3CheckCollSeq(pParse, pColl) ){ 597cedc8d4Sdanielk1977 pColl = 0; 607cedc8d4Sdanielk1977 } 617cedc8d4Sdanielk1977 return pColl; 620202b29eSdanielk1977 } 630202b29eSdanielk1977 640202b29eSdanielk1977 /* 65626a879aSdrh ** pExpr is an operand of a comparison operator. aff2 is the 66626a879aSdrh ** type affinity of the other operand. This routine returns the 6753db1458Sdrh ** type affinity that should be used for the comparison operator. 6853db1458Sdrh */ 69e014a838Sdanielk1977 char sqlite3CompareAffinity(Expr *pExpr, char aff2){ 70bf3b721fSdanielk1977 char aff1 = sqlite3ExprAffinity(pExpr); 71e014a838Sdanielk1977 if( aff1 && aff2 ){ 72e014a838Sdanielk1977 /* Both sides of the comparison are columns. If one has numeric or 73e014a838Sdanielk1977 ** integer affinity, use that. Otherwise use no affinity. 74e014a838Sdanielk1977 */ 75e014a838Sdanielk1977 if( aff1==SQLITE_AFF_INTEGER || aff2==SQLITE_AFF_INTEGER ){ 76e014a838Sdanielk1977 return SQLITE_AFF_INTEGER; 77e014a838Sdanielk1977 }else if( aff1==SQLITE_AFF_NUMERIC || aff2==SQLITE_AFF_NUMERIC ){ 78e014a838Sdanielk1977 return SQLITE_AFF_NUMERIC; 79e014a838Sdanielk1977 }else{ 80e014a838Sdanielk1977 return SQLITE_AFF_NONE; 81e014a838Sdanielk1977 } 82e014a838Sdanielk1977 }else if( !aff1 && !aff2 ){ 835f6a87b3Sdrh /* Neither side of the comparison is a column. Compare the 845f6a87b3Sdrh ** results directly. 85e014a838Sdanielk1977 */ 865f6a87b3Sdrh /* return SQLITE_AFF_NUMERIC; // Ticket #805 */ 875f6a87b3Sdrh return SQLITE_AFF_NONE; 88e014a838Sdanielk1977 }else{ 89e014a838Sdanielk1977 /* One side is a column, the other is not. Use the columns affinity. */ 90e014a838Sdanielk1977 return (aff1 + aff2); 91e014a838Sdanielk1977 } 92e014a838Sdanielk1977 } 93e014a838Sdanielk1977 9453db1458Sdrh /* 9553db1458Sdrh ** pExpr is a comparison operator. Return the type affinity that should 9653db1458Sdrh ** be applied to both operands prior to doing the comparison. 9753db1458Sdrh */ 98e014a838Sdanielk1977 static char comparisonAffinity(Expr *pExpr){ 99e014a838Sdanielk1977 char aff; 100e014a838Sdanielk1977 assert( pExpr->op==TK_EQ || pExpr->op==TK_IN || pExpr->op==TK_LT || 101e014a838Sdanielk1977 pExpr->op==TK_GT || pExpr->op==TK_GE || pExpr->op==TK_LE || 102e014a838Sdanielk1977 pExpr->op==TK_NE ); 103e014a838Sdanielk1977 assert( pExpr->pLeft ); 104bf3b721fSdanielk1977 aff = sqlite3ExprAffinity(pExpr->pLeft); 105e014a838Sdanielk1977 if( pExpr->pRight ){ 106e014a838Sdanielk1977 aff = sqlite3CompareAffinity(pExpr->pRight, aff); 107e014a838Sdanielk1977 } 108e014a838Sdanielk1977 else if( pExpr->pSelect ){ 109e014a838Sdanielk1977 aff = sqlite3CompareAffinity(pExpr->pSelect->pEList->a[0].pExpr, aff); 110e014a838Sdanielk1977 } 111e014a838Sdanielk1977 else if( !aff ){ 112e014a838Sdanielk1977 aff = SQLITE_AFF_NUMERIC; 113e014a838Sdanielk1977 } 114e014a838Sdanielk1977 return aff; 115e014a838Sdanielk1977 } 116e014a838Sdanielk1977 117e014a838Sdanielk1977 /* 118e014a838Sdanielk1977 ** pExpr is a comparison expression, eg. '=', '<', IN(...) etc. 119e014a838Sdanielk1977 ** idx_affinity is the affinity of an indexed column. Return true 120e014a838Sdanielk1977 ** if the index with affinity idx_affinity may be used to implement 121e014a838Sdanielk1977 ** the comparison in pExpr. 122e014a838Sdanielk1977 */ 123e014a838Sdanielk1977 int sqlite3IndexAffinityOk(Expr *pExpr, char idx_affinity){ 124e014a838Sdanielk1977 char aff = comparisonAffinity(pExpr); 125e014a838Sdanielk1977 return 126e014a838Sdanielk1977 (aff==SQLITE_AFF_NONE) || 127e014a838Sdanielk1977 (aff==SQLITE_AFF_NUMERIC && idx_affinity==SQLITE_AFF_INTEGER) || 128e014a838Sdanielk1977 (aff==SQLITE_AFF_INTEGER && idx_affinity==SQLITE_AFF_NUMERIC) || 129e014a838Sdanielk1977 (aff==idx_affinity); 130e014a838Sdanielk1977 } 131e014a838Sdanielk1977 132a37cdde0Sdanielk1977 /* 133a37cdde0Sdanielk1977 ** Return the P1 value that should be used for a binary comparison 134a37cdde0Sdanielk1977 ** opcode (OP_Eq, OP_Ge etc.) used to compare pExpr1 and pExpr2. 135a37cdde0Sdanielk1977 ** If jumpIfNull is true, then set the low byte of the returned 136a37cdde0Sdanielk1977 ** P1 value to tell the opcode to jump if either expression 137a37cdde0Sdanielk1977 ** evaluates to NULL. 138a37cdde0Sdanielk1977 */ 139e014a838Sdanielk1977 static int binaryCompareP1(Expr *pExpr1, Expr *pExpr2, int jumpIfNull){ 140bf3b721fSdanielk1977 char aff = sqlite3ExprAffinity(pExpr2); 141e014a838Sdanielk1977 return (((int)sqlite3CompareAffinity(pExpr1, aff))<<8)+(jumpIfNull?1:0); 142a37cdde0Sdanielk1977 } 143a37cdde0Sdanielk1977 144a2e00042Sdrh /* 1450202b29eSdanielk1977 ** Return a pointer to the collation sequence that should be used by 1460202b29eSdanielk1977 ** a binary comparison operator comparing pLeft and pRight. 1470202b29eSdanielk1977 ** 1480202b29eSdanielk1977 ** If the left hand expression has a collating sequence type, then it is 1490202b29eSdanielk1977 ** used. Otherwise the collation sequence for the right hand expression 1500202b29eSdanielk1977 ** is used, or the default (BINARY) if neither expression has a collating 1510202b29eSdanielk1977 ** type. 1520202b29eSdanielk1977 */ 1537cedc8d4Sdanielk1977 static CollSeq* binaryCompareCollSeq(Parse *pParse, Expr *pLeft, Expr *pRight){ 1547cedc8d4Sdanielk1977 CollSeq *pColl = sqlite3ExprCollSeq(pParse, pLeft); 1550202b29eSdanielk1977 if( !pColl ){ 1567cedc8d4Sdanielk1977 pColl = sqlite3ExprCollSeq(pParse, pRight); 1570202b29eSdanielk1977 } 1580202b29eSdanielk1977 return pColl; 1590202b29eSdanielk1977 } 1600202b29eSdanielk1977 1610202b29eSdanielk1977 /* 162be5c89acSdrh ** Generate code for a comparison operator. 163be5c89acSdrh */ 164be5c89acSdrh static int codeCompare( 165be5c89acSdrh Parse *pParse, /* The parsing (and code generating) context */ 166be5c89acSdrh Expr *pLeft, /* The left operand */ 167be5c89acSdrh Expr *pRight, /* The right operand */ 168be5c89acSdrh int opcode, /* The comparison opcode */ 169be5c89acSdrh int dest, /* Jump here if true. */ 170be5c89acSdrh int jumpIfNull /* If true, jump if either operand is NULL */ 171be5c89acSdrh ){ 172be5c89acSdrh int p1 = binaryCompareP1(pLeft, pRight, jumpIfNull); 173be5c89acSdrh CollSeq *p3 = binaryCompareCollSeq(pParse, pLeft, pRight); 174be5c89acSdrh return sqlite3VdbeOp3(pParse->pVdbe, opcode, p1, dest, (void*)p3, P3_COLLSEQ); 175be5c89acSdrh } 176be5c89acSdrh 177be5c89acSdrh /* 178a76b5dfcSdrh ** Construct a new expression node and return a pointer to it. Memory 179a76b5dfcSdrh ** for this node is obtained from sqliteMalloc(). The calling function 180a76b5dfcSdrh ** is responsible for making sure the node eventually gets freed. 181a76b5dfcSdrh */ 182e4e72072Sdrh Expr *sqlite3Expr(int op, Expr *pLeft, Expr *pRight, const Token *pToken){ 183a76b5dfcSdrh Expr *pNew; 184a76b5dfcSdrh pNew = sqliteMalloc( sizeof(Expr) ); 185a76b5dfcSdrh if( pNew==0 ){ 1864efc4754Sdrh /* When malloc fails, we leak memory from pLeft and pRight */ 187a76b5dfcSdrh return 0; 188a76b5dfcSdrh } 189a76b5dfcSdrh pNew->op = op; 190a76b5dfcSdrh pNew->pLeft = pLeft; 191a76b5dfcSdrh pNew->pRight = pRight; 192a58fdfb1Sdanielk1977 pNew->iAgg = -1; 193a76b5dfcSdrh if( pToken ){ 1944b59ab5eSdrh assert( pToken->dyn==0 ); 195145716b3Sdrh pNew->span = pNew->token = *pToken; 196145716b3Sdrh }else if( pLeft && pRight ){ 1974adee20fSdanielk1977 sqlite3ExprSpan(pNew, &pLeft->span, &pRight->span); 198a76b5dfcSdrh } 199a76b5dfcSdrh return pNew; 200a76b5dfcSdrh } 201a76b5dfcSdrh 202a76b5dfcSdrh /* 2034e0cff60Sdrh ** When doing a nested parse, you can include terms in an expression 2044e0cff60Sdrh ** that look like this: #0 #1 #2 ... These terms refer to elements 2054e0cff60Sdrh ** on the stack. "#0" (or just "#") means the top of the stack. 2062958a4e6Sdrh ** "#1" means the next down on the stack. And so forth. #-1 means 2072958a4e6Sdrh ** memory location 0. #-2 means memory location 1. And so forth. 2084e0cff60Sdrh ** 2094e0cff60Sdrh ** This routine is called by the parser to deal with on of those terms. 2104e0cff60Sdrh ** It immediately generates code to store the value in a memory location. 2114e0cff60Sdrh ** The returns an expression that will code to extract the value from 2124e0cff60Sdrh ** that memory location as needed. 2134e0cff60Sdrh */ 2144e0cff60Sdrh Expr *sqlite3RegisterExpr(Parse *pParse, Token *pToken){ 2154e0cff60Sdrh Vdbe *v = pParse->pVdbe; 2164e0cff60Sdrh Expr *p; 2174e0cff60Sdrh int depth; 2184e0cff60Sdrh if( v==0 ) return 0; 2194e0cff60Sdrh if( pParse->nested==0 ){ 2204e0cff60Sdrh sqlite3ErrorMsg(pParse, "near \"%T\": syntax error", pToken); 2214e0cff60Sdrh return 0; 2224e0cff60Sdrh } 2234e0cff60Sdrh p = sqlite3Expr(TK_REGISTER, 0, 0, pToken); 22473c42a13Sdrh if( p==0 ){ 22573c42a13Sdrh return 0; /* Malloc failed */ 22673c42a13Sdrh } 2274e0cff60Sdrh depth = atoi(&pToken->z[1]); 2282958a4e6Sdrh if( depth>=0 ){ 2294e0cff60Sdrh p->iTable = pParse->nMem++; 2304e0cff60Sdrh sqlite3VdbeAddOp(v, OP_Dup, depth, 0); 2314e0cff60Sdrh sqlite3VdbeAddOp(v, OP_MemStore, p->iTable, 1); 2322958a4e6Sdrh }else{ 2332958a4e6Sdrh p->iTable = -1-depth; 2342958a4e6Sdrh } 2354e0cff60Sdrh return p; 2364e0cff60Sdrh } 2374e0cff60Sdrh 2384e0cff60Sdrh /* 23991bb0eedSdrh ** Join two expressions using an AND operator. If either expression is 24091bb0eedSdrh ** NULL, then just return the other expression. 24191bb0eedSdrh */ 24291bb0eedSdrh Expr *sqlite3ExprAnd(Expr *pLeft, Expr *pRight){ 24391bb0eedSdrh if( pLeft==0 ){ 24491bb0eedSdrh return pRight; 24591bb0eedSdrh }else if( pRight==0 ){ 24691bb0eedSdrh return pLeft; 24791bb0eedSdrh }else{ 24891bb0eedSdrh return sqlite3Expr(TK_AND, pLeft, pRight, 0); 24991bb0eedSdrh } 25091bb0eedSdrh } 25191bb0eedSdrh 25291bb0eedSdrh /* 2536977fea8Sdrh ** Set the Expr.span field of the given expression to span all 254a76b5dfcSdrh ** text between the two given tokens. 255a76b5dfcSdrh */ 2564adee20fSdanielk1977 void sqlite3ExprSpan(Expr *pExpr, Token *pLeft, Token *pRight){ 2574efc4754Sdrh assert( pRight!=0 ); 2584efc4754Sdrh assert( pLeft!=0 ); 25971c697efSdrh if( !sqlite3_malloc_failed && pRight->z && pLeft->z ){ 260ad6d9460Sdrh assert( pLeft->dyn==0 || pLeft->z[pLeft->n]==0 ); 261145716b3Sdrh if( pLeft->dyn==0 && pRight->dyn==0 ){ 2626977fea8Sdrh pExpr->span.z = pLeft->z; 2636977fea8Sdrh pExpr->span.n = pRight->n + Addr(pRight->z) - Addr(pLeft->z); 2644b59ab5eSdrh }else{ 2656977fea8Sdrh pExpr->span.z = 0; 2664b59ab5eSdrh } 267a76b5dfcSdrh } 268a76b5dfcSdrh } 269a76b5dfcSdrh 270a76b5dfcSdrh /* 271a76b5dfcSdrh ** Construct a new expression node for a function with multiple 272a76b5dfcSdrh ** arguments. 273a76b5dfcSdrh */ 2744adee20fSdanielk1977 Expr *sqlite3ExprFunction(ExprList *pList, Token *pToken){ 275a76b5dfcSdrh Expr *pNew; 276a76b5dfcSdrh pNew = sqliteMalloc( sizeof(Expr) ); 277a76b5dfcSdrh if( pNew==0 ){ 2784adee20fSdanielk1977 /* sqlite3ExprListDelete(pList); // Leak pList when malloc fails */ 279a76b5dfcSdrh return 0; 280a76b5dfcSdrh } 281a76b5dfcSdrh pNew->op = TK_FUNCTION; 282a76b5dfcSdrh pNew->pList = pList; 283a76b5dfcSdrh if( pToken ){ 2844b59ab5eSdrh assert( pToken->dyn==0 ); 285a76b5dfcSdrh pNew->token = *pToken; 286a76b5dfcSdrh }else{ 287a76b5dfcSdrh pNew->token.z = 0; 288a76b5dfcSdrh } 2896977fea8Sdrh pNew->span = pNew->token; 290a76b5dfcSdrh return pNew; 291a76b5dfcSdrh } 292a76b5dfcSdrh 293a76b5dfcSdrh /* 294fa6bc000Sdrh ** Assign a variable number to an expression that encodes a wildcard 295fa6bc000Sdrh ** in the original SQL statement. 296fa6bc000Sdrh ** 297fa6bc000Sdrh ** Wildcards consisting of a single "?" are assigned the next sequential 298fa6bc000Sdrh ** variable number. 299fa6bc000Sdrh ** 300fa6bc000Sdrh ** Wildcards of the form "?nnn" are assigned the number "nnn". We make 301fa6bc000Sdrh ** sure "nnn" is not too be to avoid a denial of service attack when 302fa6bc000Sdrh ** the SQL statement comes from an external source. 303fa6bc000Sdrh ** 304fa6bc000Sdrh ** Wildcards of the form ":aaa" or "$aaa" are assigned the same number 305fa6bc000Sdrh ** as the previous instance of the same wildcard. Or if this is the first 306fa6bc000Sdrh ** instance of the wildcard, the next sequenial variable number is 307fa6bc000Sdrh ** assigned. 308fa6bc000Sdrh */ 309fa6bc000Sdrh void sqlite3ExprAssignVarNumber(Parse *pParse, Expr *pExpr){ 310fa6bc000Sdrh Token *pToken; 311fa6bc000Sdrh if( pExpr==0 ) return; 312fa6bc000Sdrh pToken = &pExpr->token; 313fa6bc000Sdrh assert( pToken->n>=1 ); 314fa6bc000Sdrh assert( pToken->z!=0 ); 315fa6bc000Sdrh assert( pToken->z[0]!=0 ); 316fa6bc000Sdrh if( pToken->n==1 ){ 317fa6bc000Sdrh /* Wildcard of the form "?". Assign the next variable number */ 318fa6bc000Sdrh pExpr->iTable = ++pParse->nVar; 319fa6bc000Sdrh }else if( pToken->z[0]=='?' ){ 320fa6bc000Sdrh /* Wildcard of the form "?nnn". Convert "nnn" to an integer and 321fa6bc000Sdrh ** use it as the variable number */ 322fa6bc000Sdrh int i; 323fa6bc000Sdrh pExpr->iTable = i = atoi(&pToken->z[1]); 324fa6bc000Sdrh if( i<1 || i>SQLITE_MAX_VARIABLE_NUMBER ){ 325fa6bc000Sdrh sqlite3ErrorMsg(pParse, "variable number must be between ?1 and ?%d", 326fa6bc000Sdrh SQLITE_MAX_VARIABLE_NUMBER); 327fa6bc000Sdrh } 328fa6bc000Sdrh if( i>pParse->nVar ){ 329fa6bc000Sdrh pParse->nVar = i; 330fa6bc000Sdrh } 331fa6bc000Sdrh }else{ 332fa6bc000Sdrh /* Wildcards of the form ":aaa" or "$aaa". Reuse the same variable 333fa6bc000Sdrh ** number as the prior appearance of the same name, or if the name 334fa6bc000Sdrh ** has never appeared before, reuse the same variable number 335fa6bc000Sdrh */ 336fa6bc000Sdrh int i, n; 337fa6bc000Sdrh n = pToken->n; 338fa6bc000Sdrh for(i=0; i<pParse->nVarExpr; i++){ 339fa6bc000Sdrh Expr *pE; 340fa6bc000Sdrh if( (pE = pParse->apVarExpr[i])!=0 341fa6bc000Sdrh && pE->token.n==n 342fa6bc000Sdrh && memcmp(pE->token.z, pToken->z, n)==0 ){ 343fa6bc000Sdrh pExpr->iTable = pE->iTable; 344fa6bc000Sdrh break; 345fa6bc000Sdrh } 346fa6bc000Sdrh } 347fa6bc000Sdrh if( i>=pParse->nVarExpr ){ 348fa6bc000Sdrh pExpr->iTable = ++pParse->nVar; 349fa6bc000Sdrh if( pParse->nVarExpr>=pParse->nVarExprAlloc-1 ){ 350fa6bc000Sdrh pParse->nVarExprAlloc += pParse->nVarExprAlloc + 10; 351fa6bc000Sdrh pParse->apVarExpr = sqliteRealloc(pParse->apVarExpr, 352fa6bc000Sdrh pParse->nVarExprAlloc*sizeof(pParse->apVarExpr[0]) ); 353fa6bc000Sdrh } 354fa6bc000Sdrh if( !sqlite3_malloc_failed ){ 355fa6bc000Sdrh assert( pParse->apVarExpr!=0 ); 356fa6bc000Sdrh pParse->apVarExpr[pParse->nVarExpr++] = pExpr; 357fa6bc000Sdrh } 358fa6bc000Sdrh } 359fa6bc000Sdrh } 360fa6bc000Sdrh } 361fa6bc000Sdrh 362fa6bc000Sdrh /* 363a2e00042Sdrh ** Recursively delete an expression tree. 364a2e00042Sdrh */ 3654adee20fSdanielk1977 void sqlite3ExprDelete(Expr *p){ 366a2e00042Sdrh if( p==0 ) return; 3674efc4754Sdrh if( p->span.dyn ) sqliteFree((char*)p->span.z); 3684efc4754Sdrh if( p->token.dyn ) sqliteFree((char*)p->token.z); 3694adee20fSdanielk1977 sqlite3ExprDelete(p->pLeft); 3704adee20fSdanielk1977 sqlite3ExprDelete(p->pRight); 3714adee20fSdanielk1977 sqlite3ExprListDelete(p->pList); 3724adee20fSdanielk1977 sqlite3SelectDelete(p->pSelect); 373a2e00042Sdrh sqliteFree(p); 374a2e00042Sdrh } 375a2e00042Sdrh 376a76b5dfcSdrh 377a76b5dfcSdrh /* 378ff78bd2fSdrh ** The following group of routines make deep copies of expressions, 379ff78bd2fSdrh ** expression lists, ID lists, and select statements. The copies can 380ff78bd2fSdrh ** be deleted (by being passed to their respective ...Delete() routines) 381ff78bd2fSdrh ** without effecting the originals. 382ff78bd2fSdrh ** 3834adee20fSdanielk1977 ** The expression list, ID, and source lists return by sqlite3ExprListDup(), 3844adee20fSdanielk1977 ** sqlite3IdListDup(), and sqlite3SrcListDup() can not be further expanded 385ad3cab52Sdrh ** by subsequent calls to sqlite*ListAppend() routines. 386ff78bd2fSdrh ** 387ad3cab52Sdrh ** Any tables that the SrcList might point to are not duplicated. 388ff78bd2fSdrh */ 3894adee20fSdanielk1977 Expr *sqlite3ExprDup(Expr *p){ 390ff78bd2fSdrh Expr *pNew; 391ff78bd2fSdrh if( p==0 ) return 0; 392fcb78a49Sdrh pNew = sqliteMallocRaw( sizeof(*p) ); 393ff78bd2fSdrh if( pNew==0 ) return 0; 3943b167c75Sdrh memcpy(pNew, p, sizeof(*pNew)); 3956977fea8Sdrh if( p->token.z!=0 ){ 396b9ecf6faSdrh pNew->token.z = sqliteStrNDup(p->token.z, p->token.n); 3974b59ab5eSdrh pNew->token.dyn = 1; 3984b59ab5eSdrh }else{ 3994efc4754Sdrh assert( pNew->token.z==0 ); 4004b59ab5eSdrh } 4016977fea8Sdrh pNew->span.z = 0; 4024adee20fSdanielk1977 pNew->pLeft = sqlite3ExprDup(p->pLeft); 4034adee20fSdanielk1977 pNew->pRight = sqlite3ExprDup(p->pRight); 4044adee20fSdanielk1977 pNew->pList = sqlite3ExprListDup(p->pList); 4054adee20fSdanielk1977 pNew->pSelect = sqlite3SelectDup(p->pSelect); 406*aee18ef8Sdanielk1977 pNew->pTab = p->pTab; 407ff78bd2fSdrh return pNew; 408ff78bd2fSdrh } 4094adee20fSdanielk1977 void sqlite3TokenCopy(Token *pTo, Token *pFrom){ 4104b59ab5eSdrh if( pTo->dyn ) sqliteFree((char*)pTo->z); 4114b59ab5eSdrh if( pFrom->z ){ 4124b59ab5eSdrh pTo->n = pFrom->n; 4134b59ab5eSdrh pTo->z = sqliteStrNDup(pFrom->z, pFrom->n); 4144b59ab5eSdrh pTo->dyn = 1; 4154b59ab5eSdrh }else{ 4164b59ab5eSdrh pTo->z = 0; 4174b59ab5eSdrh } 4184b59ab5eSdrh } 4194adee20fSdanielk1977 ExprList *sqlite3ExprListDup(ExprList *p){ 420ff78bd2fSdrh ExprList *pNew; 421145716b3Sdrh struct ExprList_item *pItem, *pOldItem; 422ff78bd2fSdrh int i; 423ff78bd2fSdrh if( p==0 ) return 0; 424ff78bd2fSdrh pNew = sqliteMalloc( sizeof(*pNew) ); 425ff78bd2fSdrh if( pNew==0 ) return 0; 4264305d103Sdrh pNew->nExpr = pNew->nAlloc = p->nExpr; 4273e7bc9caSdrh pNew->a = pItem = sqliteMalloc( p->nExpr*sizeof(p->a[0]) ); 428e0048400Sdanielk1977 if( pItem==0 ){ 429e0048400Sdanielk1977 sqliteFree(pNew); 430e0048400Sdanielk1977 return 0; 431e0048400Sdanielk1977 } 432145716b3Sdrh pOldItem = p->a; 433145716b3Sdrh for(i=0; i<p->nExpr; i++, pItem++, pOldItem++){ 4344b59ab5eSdrh Expr *pNewExpr, *pOldExpr; 435145716b3Sdrh pItem->pExpr = pNewExpr = sqlite3ExprDup(pOldExpr = pOldItem->pExpr); 4366977fea8Sdrh if( pOldExpr->span.z!=0 && pNewExpr ){ 4376977fea8Sdrh /* Always make a copy of the span for top-level expressions in the 4384b59ab5eSdrh ** expression list. The logic in SELECT processing that determines 4394b59ab5eSdrh ** the names of columns in the result set needs this information */ 4404adee20fSdanielk1977 sqlite3TokenCopy(&pNewExpr->span, &pOldExpr->span); 4414b59ab5eSdrh } 4421f3e905cSdrh assert( pNewExpr==0 || pNewExpr->span.z!=0 44324b03fd0Sdanielk1977 || pOldExpr->span.z==0 || sqlite3_malloc_failed ); 444145716b3Sdrh pItem->zName = sqliteStrDup(pOldItem->zName); 445145716b3Sdrh pItem->sortOrder = pOldItem->sortOrder; 446145716b3Sdrh pItem->isAgg = pOldItem->isAgg; 4473e7bc9caSdrh pItem->done = 0; 448ff78bd2fSdrh } 449ff78bd2fSdrh return pNew; 450ff78bd2fSdrh } 45193758c8dSdanielk1977 45293758c8dSdanielk1977 /* 45393758c8dSdanielk1977 ** If cursors, triggers, views and subqueries are all omitted from 45493758c8dSdanielk1977 ** the build, then none of the following routines, except for 45593758c8dSdanielk1977 ** sqlite3SelectDup(), can be called. sqlite3SelectDup() is sometimes 45693758c8dSdanielk1977 ** called with a NULL argument. 45793758c8dSdanielk1977 */ 4586a67fe8eSdanielk1977 #if !defined(SQLITE_OMIT_VIEW) || !defined(SQLITE_OMIT_TRIGGER) \ 4596a67fe8eSdanielk1977 || !defined(SQLITE_OMIT_SUBQUERY) 4604adee20fSdanielk1977 SrcList *sqlite3SrcListDup(SrcList *p){ 461ad3cab52Sdrh SrcList *pNew; 462ad3cab52Sdrh int i; 463113088ecSdrh int nByte; 464ad3cab52Sdrh if( p==0 ) return 0; 465113088ecSdrh nByte = sizeof(*p) + (p->nSrc>0 ? sizeof(p->a[0]) * (p->nSrc-1) : 0); 4664efc4754Sdrh pNew = sqliteMallocRaw( nByte ); 467ad3cab52Sdrh if( pNew==0 ) return 0; 4684305d103Sdrh pNew->nSrc = pNew->nAlloc = p->nSrc; 469ad3cab52Sdrh for(i=0; i<p->nSrc; i++){ 4704efc4754Sdrh struct SrcList_item *pNewItem = &pNew->a[i]; 4714efc4754Sdrh struct SrcList_item *pOldItem = &p->a[i]; 4724efc4754Sdrh pNewItem->zDatabase = sqliteStrDup(pOldItem->zDatabase); 4734efc4754Sdrh pNewItem->zName = sqliteStrDup(pOldItem->zName); 4744efc4754Sdrh pNewItem->zAlias = sqliteStrDup(pOldItem->zAlias); 4754efc4754Sdrh pNewItem->jointype = pOldItem->jointype; 4764efc4754Sdrh pNewItem->iCursor = pOldItem->iCursor; 477a1cb183dSdanielk1977 pNewItem->pTab = pOldItem->pTab; 478a1cb183dSdanielk1977 if( pNewItem->pTab ){ 479a1cb183dSdanielk1977 pNewItem->pTab->isTransient = 0; 480a1cb183dSdanielk1977 } 4814adee20fSdanielk1977 pNewItem->pSelect = sqlite3SelectDup(pOldItem->pSelect); 4824adee20fSdanielk1977 pNewItem->pOn = sqlite3ExprDup(pOldItem->pOn); 4834adee20fSdanielk1977 pNewItem->pUsing = sqlite3IdListDup(pOldItem->pUsing); 4846c18b6e0Sdanielk1977 pNewItem->colUsed = pOldItem->colUsed; 485ad3cab52Sdrh } 486ad3cab52Sdrh return pNew; 487ad3cab52Sdrh } 4884adee20fSdanielk1977 IdList *sqlite3IdListDup(IdList *p){ 489ff78bd2fSdrh IdList *pNew; 490ff78bd2fSdrh int i; 491ff78bd2fSdrh if( p==0 ) return 0; 4924efc4754Sdrh pNew = sqliteMallocRaw( sizeof(*pNew) ); 493ff78bd2fSdrh if( pNew==0 ) return 0; 4944305d103Sdrh pNew->nId = pNew->nAlloc = p->nId; 4954efc4754Sdrh pNew->a = sqliteMallocRaw( p->nId*sizeof(p->a[0]) ); 496e4697f5eSdrh if( pNew->a==0 ) return 0; 497ff78bd2fSdrh for(i=0; i<p->nId; i++){ 4984efc4754Sdrh struct IdList_item *pNewItem = &pNew->a[i]; 4994efc4754Sdrh struct IdList_item *pOldItem = &p->a[i]; 5004efc4754Sdrh pNewItem->zName = sqliteStrDup(pOldItem->zName); 5014efc4754Sdrh pNewItem->idx = pOldItem->idx; 502ff78bd2fSdrh } 503ff78bd2fSdrh return pNew; 504ff78bd2fSdrh } 5054adee20fSdanielk1977 Select *sqlite3SelectDup(Select *p){ 506ff78bd2fSdrh Select *pNew; 507ff78bd2fSdrh if( p==0 ) return 0; 5084efc4754Sdrh pNew = sqliteMallocRaw( sizeof(*p) ); 509ff78bd2fSdrh if( pNew==0 ) return 0; 510ff78bd2fSdrh pNew->isDistinct = p->isDistinct; 5114adee20fSdanielk1977 pNew->pEList = sqlite3ExprListDup(p->pEList); 5124adee20fSdanielk1977 pNew->pSrc = sqlite3SrcListDup(p->pSrc); 5134adee20fSdanielk1977 pNew->pWhere = sqlite3ExprDup(p->pWhere); 5144adee20fSdanielk1977 pNew->pGroupBy = sqlite3ExprListDup(p->pGroupBy); 5154adee20fSdanielk1977 pNew->pHaving = sqlite3ExprDup(p->pHaving); 5164adee20fSdanielk1977 pNew->pOrderBy = sqlite3ExprListDup(p->pOrderBy); 517ff78bd2fSdrh pNew->op = p->op; 5184adee20fSdanielk1977 pNew->pPrior = sqlite3SelectDup(p->pPrior); 519a2dc3b1aSdanielk1977 pNew->pLimit = sqlite3ExprDup(p->pLimit); 520a2dc3b1aSdanielk1977 pNew->pOffset = sqlite3ExprDup(p->pOffset); 5217b58daeaSdrh pNew->iLimit = -1; 5227b58daeaSdrh pNew->iOffset = -1; 523dc1bdc4fSdanielk1977 pNew->ppOpenTemp = 0; 524b6c29897Sdrh pNew->pFetch = 0; 525a1cb183dSdanielk1977 pNew->isResolved = p->isResolved; 526a1cb183dSdanielk1977 pNew->isAgg = p->isAgg; 527ff78bd2fSdrh return pNew; 528ff78bd2fSdrh } 52993758c8dSdanielk1977 #else 53093758c8dSdanielk1977 Select *sqlite3SelectDup(Select *p){ 53193758c8dSdanielk1977 assert( p==0 ); 53293758c8dSdanielk1977 return 0; 53393758c8dSdanielk1977 } 53493758c8dSdanielk1977 #endif 535ff78bd2fSdrh 536ff78bd2fSdrh 537ff78bd2fSdrh /* 538a76b5dfcSdrh ** Add a new element to the end of an expression list. If pList is 539a76b5dfcSdrh ** initially NULL, then create a new expression list. 540a76b5dfcSdrh */ 5414adee20fSdanielk1977 ExprList *sqlite3ExprListAppend(ExprList *pList, Expr *pExpr, Token *pName){ 542a76b5dfcSdrh if( pList==0 ){ 543a76b5dfcSdrh pList = sqliteMalloc( sizeof(ExprList) ); 544a76b5dfcSdrh if( pList==0 ){ 5454adee20fSdanielk1977 /* sqlite3ExprDelete(pExpr); // Leak memory if malloc fails */ 546a76b5dfcSdrh return 0; 547a76b5dfcSdrh } 5484efc4754Sdrh assert( pList->nAlloc==0 ); 549a76b5dfcSdrh } 5504305d103Sdrh if( pList->nAlloc<=pList->nExpr ){ 5514305d103Sdrh pList->nAlloc = pList->nAlloc*2 + 4; 5524efc4754Sdrh pList->a = sqliteRealloc(pList->a, pList->nAlloc*sizeof(pList->a[0])); 5534efc4754Sdrh if( pList->a==0 ){ 5544adee20fSdanielk1977 /* sqlite3ExprDelete(pExpr); // Leak memory if malloc fails */ 5554efc4754Sdrh pList->nExpr = pList->nAlloc = 0; 556a76b5dfcSdrh return pList; 557a76b5dfcSdrh } 558a76b5dfcSdrh } 5594efc4754Sdrh assert( pList->a!=0 ); 5604efc4754Sdrh if( pExpr || pName ){ 5614efc4754Sdrh struct ExprList_item *pItem = &pList->a[pList->nExpr++]; 5624efc4754Sdrh memset(pItem, 0, sizeof(*pItem)); 5634efc4754Sdrh pItem->pExpr = pExpr; 564a99db3b6Sdrh pItem->zName = sqlite3NameFromToken(pName); 565a76b5dfcSdrh } 566a76b5dfcSdrh return pList; 567a76b5dfcSdrh } 568a76b5dfcSdrh 569a76b5dfcSdrh /* 570a76b5dfcSdrh ** Delete an entire expression list. 571a76b5dfcSdrh */ 5724adee20fSdanielk1977 void sqlite3ExprListDelete(ExprList *pList){ 573a76b5dfcSdrh int i; 574be5c89acSdrh struct ExprList_item *pItem; 575a76b5dfcSdrh if( pList==0 ) return; 5761bdd9b57Sdrh assert( pList->a!=0 || (pList->nExpr==0 && pList->nAlloc==0) ); 5771bdd9b57Sdrh assert( pList->nExpr<=pList->nAlloc ); 578be5c89acSdrh for(pItem=pList->a, i=0; i<pList->nExpr; i++, pItem++){ 579be5c89acSdrh sqlite3ExprDelete(pItem->pExpr); 580be5c89acSdrh sqliteFree(pItem->zName); 581a76b5dfcSdrh } 582a76b5dfcSdrh sqliteFree(pList->a); 583a76b5dfcSdrh sqliteFree(pList); 584a76b5dfcSdrh } 585a76b5dfcSdrh 586a76b5dfcSdrh /* 587626a879aSdrh ** Walk an expression tree. Call xFunc for each node visited. 58873b211abSdrh ** 589626a879aSdrh ** The return value from xFunc determines whether the tree walk continues. 590626a879aSdrh ** 0 means continue walking the tree. 1 means do not walk children 591626a879aSdrh ** of the current node but continue with siblings. 2 means abandon 592626a879aSdrh ** the tree walk completely. 593626a879aSdrh ** 594626a879aSdrh ** The return value from this routine is 1 to abandon the tree walk 595626a879aSdrh ** and 0 to continue. 596626a879aSdrh */ 597a58fdfb1Sdanielk1977 static int walkExprList(ExprList *, int (*)(void *, Expr*), void *); 598626a879aSdrh static int walkExprTree(Expr *pExpr, int (*xFunc)(void*,Expr*), void *pArg){ 599626a879aSdrh int rc; 600626a879aSdrh if( pExpr==0 ) return 0; 601626a879aSdrh rc = (*xFunc)(pArg, pExpr); 602626a879aSdrh if( rc==0 ){ 603626a879aSdrh if( walkExprTree(pExpr->pLeft, xFunc, pArg) ) return 1; 604626a879aSdrh if( walkExprTree(pExpr->pRight, xFunc, pArg) ) return 1; 605a58fdfb1Sdanielk1977 if( walkExprList(pExpr->pList, xFunc, pArg) ) return 1; 606626a879aSdrh } 607626a879aSdrh return rc>1; 608626a879aSdrh } 609626a879aSdrh 610626a879aSdrh /* 611a58fdfb1Sdanielk1977 ** Call walkExprTree() for every expression in list p. 612a58fdfb1Sdanielk1977 */ 613a58fdfb1Sdanielk1977 static int walkExprList(ExprList *p, int (*xFunc)(void *, Expr*), void *pArg){ 614a58fdfb1Sdanielk1977 int i; 615a58fdfb1Sdanielk1977 struct ExprList_item *pItem; 616a58fdfb1Sdanielk1977 if( !p ) return 0; 617a58fdfb1Sdanielk1977 for(i=p->nExpr, pItem=p->a; i>0; i--, pItem++){ 618a58fdfb1Sdanielk1977 if( walkExprTree(pItem->pExpr, xFunc, pArg) ) return 1; 619a58fdfb1Sdanielk1977 } 620a58fdfb1Sdanielk1977 return 0; 621a58fdfb1Sdanielk1977 } 622a58fdfb1Sdanielk1977 623a58fdfb1Sdanielk1977 /* 624a58fdfb1Sdanielk1977 ** Call walkExprTree() for every expression in Select p, not including 625a58fdfb1Sdanielk1977 ** expressions that are part of sub-selects in any FROM clause or the LIMIT 626a58fdfb1Sdanielk1977 ** or OFFSET expressions.. 627a58fdfb1Sdanielk1977 */ 628a58fdfb1Sdanielk1977 static int walkSelectExpr(Select *p, int (*xFunc)(void *, Expr*), void *pArg){ 629a58fdfb1Sdanielk1977 walkExprList(p->pEList, xFunc, pArg); 630a58fdfb1Sdanielk1977 walkExprTree(p->pWhere, xFunc, pArg); 631a58fdfb1Sdanielk1977 walkExprList(p->pGroupBy, xFunc, pArg); 632a58fdfb1Sdanielk1977 walkExprTree(p->pHaving, xFunc, pArg); 633a58fdfb1Sdanielk1977 walkExprList(p->pOrderBy, xFunc, pArg); 634a58fdfb1Sdanielk1977 return 0; 635a58fdfb1Sdanielk1977 } 636a58fdfb1Sdanielk1977 637a58fdfb1Sdanielk1977 638a58fdfb1Sdanielk1977 /* 639626a879aSdrh ** This routine is designed as an xFunc for walkExprTree(). 640626a879aSdrh ** 641626a879aSdrh ** pArg is really a pointer to an integer. If we can tell by looking 64273b211abSdrh ** at pExpr that the expression that contains pExpr is not a constant 64373b211abSdrh ** expression, then set *pArg to 0 and return 2 to abandon the tree walk. 64473b211abSdrh ** If pExpr does does not disqualify the expression from being a constant 64573b211abSdrh ** then do nothing. 64673b211abSdrh ** 64773b211abSdrh ** After walking the whole tree, if no nodes are found that disqualify 64873b211abSdrh ** the expression as constant, then we assume the whole expression 64973b211abSdrh ** is constant. See sqlite3ExprIsConstant() for additional information. 650626a879aSdrh */ 651626a879aSdrh static int exprNodeIsConstant(void *pArg, Expr *pExpr){ 652626a879aSdrh switch( pExpr->op ){ 653626a879aSdrh case TK_ID: 654626a879aSdrh case TK_COLUMN: 655626a879aSdrh case TK_DOT: 656626a879aSdrh case TK_AGG_FUNCTION: 657626a879aSdrh case TK_FUNCTION: 658fe2093d7Sdrh #ifndef SQLITE_OMIT_SUBQUERY 659fe2093d7Sdrh case TK_SELECT: 660fe2093d7Sdrh case TK_EXISTS: 661fe2093d7Sdrh #endif 662626a879aSdrh *((int*)pArg) = 0; 663626a879aSdrh return 2; 664626a879aSdrh default: 665626a879aSdrh return 0; 666626a879aSdrh } 667626a879aSdrh } 668626a879aSdrh 669626a879aSdrh /* 670fef5208cSdrh ** Walk an expression tree. Return 1 if the expression is constant 671fef5208cSdrh ** and 0 if it involves variables. 6722398937bSdrh ** 6732398937bSdrh ** For the purposes of this function, a double-quoted string (ex: "abc") 6742398937bSdrh ** is considered a variable but a single-quoted string (ex: 'abc') is 6752398937bSdrh ** a constant. 676fef5208cSdrh */ 6774adee20fSdanielk1977 int sqlite3ExprIsConstant(Expr *p){ 678626a879aSdrh int isConst = 1; 679626a879aSdrh walkExprTree(p, exprNodeIsConstant, &isConst); 680626a879aSdrh return isConst; 681fef5208cSdrh } 682fef5208cSdrh 683fef5208cSdrh /* 68473b211abSdrh ** If the expression p codes a constant integer that is small enough 685202b2df7Sdrh ** to fit in a 32-bit integer, return 1 and put the value of the integer 686202b2df7Sdrh ** in *pValue. If the expression is not an integer or if it is too big 687202b2df7Sdrh ** to fit in a signed 32-bit integer, return 0 and leave *pValue unchanged. 688e4de1febSdrh */ 6894adee20fSdanielk1977 int sqlite3ExprIsInteger(Expr *p, int *pValue){ 690e4de1febSdrh switch( p->op ){ 691e4de1febSdrh case TK_INTEGER: { 692fec19aadSdrh if( sqlite3GetInt32(p->token.z, pValue) ){ 693e4de1febSdrh return 1; 694e4de1febSdrh } 695202b2df7Sdrh break; 696202b2df7Sdrh } 6974b59ab5eSdrh case TK_UPLUS: { 6984adee20fSdanielk1977 return sqlite3ExprIsInteger(p->pLeft, pValue); 6994b59ab5eSdrh } 700e4de1febSdrh case TK_UMINUS: { 701e4de1febSdrh int v; 7024adee20fSdanielk1977 if( sqlite3ExprIsInteger(p->pLeft, &v) ){ 703e4de1febSdrh *pValue = -v; 704e4de1febSdrh return 1; 705e4de1febSdrh } 706e4de1febSdrh break; 707e4de1febSdrh } 708e4de1febSdrh default: break; 709e4de1febSdrh } 710e4de1febSdrh return 0; 711e4de1febSdrh } 712e4de1febSdrh 713e4de1febSdrh /* 714c4a3c779Sdrh ** Return TRUE if the given string is a row-id column name. 715c4a3c779Sdrh */ 7164adee20fSdanielk1977 int sqlite3IsRowid(const char *z){ 7174adee20fSdanielk1977 if( sqlite3StrICmp(z, "_ROWID_")==0 ) return 1; 7184adee20fSdanielk1977 if( sqlite3StrICmp(z, "ROWID")==0 ) return 1; 7194adee20fSdanielk1977 if( sqlite3StrICmp(z, "OID")==0 ) return 1; 720c4a3c779Sdrh return 0; 721c4a3c779Sdrh } 722c4a3c779Sdrh 723c4a3c779Sdrh /* 7248141f61eSdrh ** Given the name of a column of the form X.Y.Z or Y.Z or just Z, look up 7258141f61eSdrh ** that name in the set of source tables in pSrcList and make the pExpr 7268141f61eSdrh ** expression node refer back to that source column. The following changes 7278141f61eSdrh ** are made to pExpr: 7288141f61eSdrh ** 7298141f61eSdrh ** pExpr->iDb Set the index in db->aDb[] of the database holding 7308141f61eSdrh ** the table. 7318141f61eSdrh ** pExpr->iTable Set to the cursor number for the table obtained 7328141f61eSdrh ** from pSrcList. 7338141f61eSdrh ** pExpr->iColumn Set to the column number within the table. 7348141f61eSdrh ** pExpr->op Set to TK_COLUMN. 7358141f61eSdrh ** pExpr->pLeft Any expression this points to is deleted 7368141f61eSdrh ** pExpr->pRight Any expression this points to is deleted. 7378141f61eSdrh ** 7388141f61eSdrh ** The pDbToken is the name of the database (the "X"). This value may be 7398141f61eSdrh ** NULL meaning that name is of the form Y.Z or Z. Any available database 7408141f61eSdrh ** can be used. The pTableToken is the name of the table (the "Y"). This 7418141f61eSdrh ** value can be NULL if pDbToken is also NULL. If pTableToken is NULL it 7428141f61eSdrh ** means that the form of the name is Z and that columns from any table 7438141f61eSdrh ** can be used. 7448141f61eSdrh ** 7458141f61eSdrh ** If the name cannot be resolved unambiguously, leave an error message 7468141f61eSdrh ** in pParse and return non-zero. Return zero on success. 7478141f61eSdrh */ 7488141f61eSdrh static int lookupName( 7498141f61eSdrh Parse *pParse, /* The parsing context */ 7508141f61eSdrh Token *pDbToken, /* Name of the database containing table, or NULL */ 7518141f61eSdrh Token *pTableToken, /* Name of table containing column, or NULL */ 7528141f61eSdrh Token *pColumnToken, /* Name of the column. */ 753626a879aSdrh NameContext *pNC, /* The name context used to resolve the name */ 7548141f61eSdrh Expr *pExpr /* Make this EXPR node point to the selected column */ 7558141f61eSdrh ){ 7568141f61eSdrh char *zDb = 0; /* Name of the database. The "X" in X.Y.Z */ 7578141f61eSdrh char *zTab = 0; /* Name of the table. The "Y" in X.Y.Z or Y.Z */ 7588141f61eSdrh char *zCol = 0; /* Name of the column. The "Z" */ 7598141f61eSdrh int i, j; /* Loop counters */ 7608141f61eSdrh int cnt = 0; /* Number of matching column names */ 7618141f61eSdrh int cntTab = 0; /* Number of matching table names */ 7629bb575fdSdrh sqlite3 *db = pParse->db; /* The database */ 76351669863Sdrh struct SrcList_item *pItem; /* Use for looping over pSrcList items */ 76451669863Sdrh struct SrcList_item *pMatch = 0; /* The matching pSrcList item */ 76573b211abSdrh NameContext *pTopNC = pNC; /* First namecontext in the list */ 7668141f61eSdrh 7678141f61eSdrh assert( pColumnToken && pColumnToken->z ); /* The Z in X.Y.Z cannot be NULL */ 768a99db3b6Sdrh zDb = sqlite3NameFromToken(pDbToken); 769a99db3b6Sdrh zTab = sqlite3NameFromToken(pTableToken); 770a99db3b6Sdrh zCol = sqlite3NameFromToken(pColumnToken); 77124b03fd0Sdanielk1977 if( sqlite3_malloc_failed ){ 7728141f61eSdrh return 1; /* Leak memory (zDb and zTab) if malloc fails */ 7738141f61eSdrh } 7748141f61eSdrh 7758141f61eSdrh pExpr->iTable = -1; 776626a879aSdrh while( pNC && cnt==0 ){ 777626a879aSdrh SrcList *pSrcList = pNC->pSrcList; 778626a879aSdrh ExprList *pEList = pNC->pEList; 779626a879aSdrh 780626a879aSdrh pNC->nRef++; 781626a879aSdrh /* assert( zTab==0 || pEList==0 ); */ 782b3bce662Sdanielk1977 if( pSrcList ){ 78351669863Sdrh for(i=0, pItem=pSrcList->a; i<pSrcList->nSrc; i++, pItem++){ 7848141f61eSdrh Table *pTab = pItem->pTab; 7858141f61eSdrh Column *pCol; 7868141f61eSdrh 7878141f61eSdrh if( pTab==0 ) continue; 7888141f61eSdrh assert( pTab->nCol>0 ); 7898141f61eSdrh if( zTab ){ 7908141f61eSdrh if( pItem->zAlias ){ 7918141f61eSdrh char *zTabName = pItem->zAlias; 7924adee20fSdanielk1977 if( sqlite3StrICmp(zTabName, zTab)!=0 ) continue; 7938141f61eSdrh }else{ 7948141f61eSdrh char *zTabName = pTab->zName; 7954adee20fSdanielk1977 if( zTabName==0 || sqlite3StrICmp(zTabName, zTab)!=0 ) continue; 7964adee20fSdanielk1977 if( zDb!=0 && sqlite3StrICmp(db->aDb[pTab->iDb].zName, zDb)!=0 ){ 7978141f61eSdrh continue; 7988141f61eSdrh } 7998141f61eSdrh } 8008141f61eSdrh } 8018141f61eSdrh if( 0==(cntTab++) ){ 8028141f61eSdrh pExpr->iTable = pItem->iCursor; 8038141f61eSdrh pExpr->iDb = pTab->iDb; 80451669863Sdrh pMatch = pItem; 8058141f61eSdrh } 8068141f61eSdrh for(j=0, pCol=pTab->aCol; j<pTab->nCol; j++, pCol++){ 8074adee20fSdanielk1977 if( sqlite3StrICmp(pCol->zName, zCol)==0 ){ 8088141f61eSdrh cnt++; 8098141f61eSdrh pExpr->iTable = pItem->iCursor; 81051669863Sdrh pMatch = pItem; 8118141f61eSdrh pExpr->iDb = pTab->iDb; 8128141f61eSdrh /* Substitute the rowid (column -1) for the INTEGER PRIMARY KEY */ 8138141f61eSdrh pExpr->iColumn = j==pTab->iPKey ? -1 : j; 814a37cdde0Sdanielk1977 pExpr->affinity = pTab->aCol[j].affinity; 8150202b29eSdanielk1977 pExpr->pColl = pTab->aCol[j].pColl; 8168141f61eSdrh break; 8178141f61eSdrh } 8188141f61eSdrh } 8198141f61eSdrh } 820b3bce662Sdanielk1977 } 8218141f61eSdrh 822b7f9164eSdrh #ifndef SQLITE_OMIT_TRIGGER 8238141f61eSdrh /* If we have not already resolved the name, then maybe 8248141f61eSdrh ** it is a new.* or old.* trigger argument reference 8258141f61eSdrh */ 8268141f61eSdrh if( zDb==0 && zTab!=0 && cnt==0 && pParse->trigStack!=0 ){ 8278141f61eSdrh TriggerStack *pTriggerStack = pParse->trigStack; 8288141f61eSdrh Table *pTab = 0; 8294adee20fSdanielk1977 if( pTriggerStack->newIdx != -1 && sqlite3StrICmp("new", zTab) == 0 ){ 8308141f61eSdrh pExpr->iTable = pTriggerStack->newIdx; 8318141f61eSdrh assert( pTriggerStack->pTab ); 8328141f61eSdrh pTab = pTriggerStack->pTab; 8334adee20fSdanielk1977 }else if( pTriggerStack->oldIdx != -1 && sqlite3StrICmp("old", zTab)==0 ){ 8348141f61eSdrh pExpr->iTable = pTriggerStack->oldIdx; 8358141f61eSdrh assert( pTriggerStack->pTab ); 8368141f61eSdrh pTab = pTriggerStack->pTab; 8378141f61eSdrh } 8388141f61eSdrh 8398141f61eSdrh if( pTab ){ 8408141f61eSdrh int j; 8418141f61eSdrh Column *pCol = pTab->aCol; 8428141f61eSdrh 8438141f61eSdrh pExpr->iDb = pTab->iDb; 8448141f61eSdrh cntTab++; 8458141f61eSdrh for(j=0; j < pTab->nCol; j++, pCol++) { 8464adee20fSdanielk1977 if( sqlite3StrICmp(pCol->zName, zCol)==0 ){ 8478141f61eSdrh cnt++; 8488141f61eSdrh pExpr->iColumn = j==pTab->iPKey ? -1 : j; 849a37cdde0Sdanielk1977 pExpr->affinity = pTab->aCol[j].affinity; 8500202b29eSdanielk1977 pExpr->pColl = pTab->aCol[j].pColl; 851*aee18ef8Sdanielk1977 pExpr->pTab = pTab; 8528141f61eSdrh break; 8538141f61eSdrh } 8548141f61eSdrh } 8558141f61eSdrh } 8568141f61eSdrh } 857b7f9164eSdrh #endif /* !defined(SQLITE_OMIT_TRIGGER) */ 8588141f61eSdrh 8598141f61eSdrh /* 8608141f61eSdrh ** Perhaps the name is a reference to the ROWID 8618141f61eSdrh */ 8624adee20fSdanielk1977 if( cnt==0 && cntTab==1 && sqlite3IsRowid(zCol) ){ 8638141f61eSdrh cnt = 1; 8648141f61eSdrh pExpr->iColumn = -1; 865a37cdde0Sdanielk1977 pExpr->affinity = SQLITE_AFF_INTEGER; 8668141f61eSdrh } 8678141f61eSdrh 8688141f61eSdrh /* 8698141f61eSdrh ** If the input is of the form Z (not Y.Z or X.Y.Z) then the name Z 8708141f61eSdrh ** might refer to an result-set alias. This happens, for example, when 8718141f61eSdrh ** we are resolving names in the WHERE clause of the following command: 8728141f61eSdrh ** 8738141f61eSdrh ** SELECT a+b AS x FROM table WHERE x<10; 8748141f61eSdrh ** 8758141f61eSdrh ** In cases like this, replace pExpr with a copy of the expression that 8768141f61eSdrh ** forms the result set entry ("a+b" in the example) and return immediately. 8778141f61eSdrh ** Note that the expression in the result set should have already been 8788141f61eSdrh ** resolved by the time the WHERE clause is resolved. 8798141f61eSdrh */ 88079d5f63fSdrh if( cnt==0 && pEList!=0 && zTab==0 ){ 8818141f61eSdrh for(j=0; j<pEList->nExpr; j++){ 8828141f61eSdrh char *zAs = pEList->a[j].zName; 8834adee20fSdanielk1977 if( zAs!=0 && sqlite3StrICmp(zAs, zCol)==0 ){ 8848141f61eSdrh assert( pExpr->pLeft==0 && pExpr->pRight==0 ); 8858141f61eSdrh pExpr->op = TK_AS; 8868141f61eSdrh pExpr->iColumn = j; 8874adee20fSdanielk1977 pExpr->pLeft = sqlite3ExprDup(pEList->a[j].pExpr); 8888141f61eSdrh sqliteFree(zCol); 8898141f61eSdrh assert( zTab==0 && zDb==0 ); 8908141f61eSdrh return 0; 8918141f61eSdrh } 8928141f61eSdrh } 8938141f61eSdrh } 8948141f61eSdrh 895626a879aSdrh /* Advance to the next name context. The loop will exit when either 896626a879aSdrh ** we have a match (cnt>0) or when we run out of name contexts. 897626a879aSdrh */ 898626a879aSdrh if( cnt==0 ){ 899626a879aSdrh pNC = pNC->pNext; 900626a879aSdrh } 901626a879aSdrh } 902626a879aSdrh 9038141f61eSdrh /* 9048141f61eSdrh ** If X and Y are NULL (in other words if only the column name Z is 9058141f61eSdrh ** supplied) and the value of Z is enclosed in double-quotes, then 9068141f61eSdrh ** Z is a string literal if it doesn't match any column names. In that 9078141f61eSdrh ** case, we need to return right away and not make any changes to 9088141f61eSdrh ** pExpr. 9098141f61eSdrh */ 9108141f61eSdrh if( cnt==0 && zTab==0 && pColumnToken->z[0]=='"' ){ 9118141f61eSdrh sqliteFree(zCol); 9128141f61eSdrh return 0; 9138141f61eSdrh } 9148141f61eSdrh 9158141f61eSdrh /* 9168141f61eSdrh ** cnt==0 means there was not match. cnt>1 means there were two or 9178141f61eSdrh ** more matches. Either way, we have an error. 9188141f61eSdrh */ 9198141f61eSdrh if( cnt!=1 ){ 9208141f61eSdrh char *z = 0; 9218141f61eSdrh char *zErr; 9228141f61eSdrh zErr = cnt==0 ? "no such column: %s" : "ambiguous column name: %s"; 9238141f61eSdrh if( zDb ){ 9244adee20fSdanielk1977 sqlite3SetString(&z, zDb, ".", zTab, ".", zCol, 0); 9258141f61eSdrh }else if( zTab ){ 9264adee20fSdanielk1977 sqlite3SetString(&z, zTab, ".", zCol, 0); 9278141f61eSdrh }else{ 9288141f61eSdrh z = sqliteStrDup(zCol); 9298141f61eSdrh } 9304adee20fSdanielk1977 sqlite3ErrorMsg(pParse, zErr, z); 9318141f61eSdrh sqliteFree(z); 93273b211abSdrh pTopNC->nErr++; 9338141f61eSdrh } 9348141f61eSdrh 93551669863Sdrh /* If a column from a table in pSrcList is referenced, then record 93651669863Sdrh ** this fact in the pSrcList.a[].colUsed bitmask. Column 0 causes 93751669863Sdrh ** bit 0 to be set. Column 1 sets bit 1. And so forth. If the 93851669863Sdrh ** column number is greater than the number of bits in the bitmask 93951669863Sdrh ** then set the high-order bit of the bitmask. 94051669863Sdrh */ 94151669863Sdrh if( pExpr->iColumn>=0 && pMatch!=0 ){ 94251669863Sdrh int n = pExpr->iColumn; 94351669863Sdrh if( n>=sizeof(Bitmask)*8 ){ 94451669863Sdrh n = sizeof(Bitmask)*8-1; 94551669863Sdrh } 94651669863Sdrh assert( pMatch->iCursor==pExpr->iTable ); 94751669863Sdrh pMatch->colUsed |= 1<<n; 94851669863Sdrh } 94951669863Sdrh 9508141f61eSdrh /* Clean up and return 9518141f61eSdrh */ 9528141f61eSdrh sqliteFree(zDb); 9538141f61eSdrh sqliteFree(zTab); 9548141f61eSdrh sqliteFree(zCol); 9554adee20fSdanielk1977 sqlite3ExprDelete(pExpr->pLeft); 9568141f61eSdrh pExpr->pLeft = 0; 9574adee20fSdanielk1977 sqlite3ExprDelete(pExpr->pRight); 9588141f61eSdrh pExpr->pRight = 0; 9598141f61eSdrh pExpr->op = TK_COLUMN; 960626a879aSdrh if( cnt==1 ){ 961b3bce662Sdanielk1977 assert( pNC!=0 ); 962626a879aSdrh sqlite3AuthRead(pParse, pExpr, pNC->pSrcList); 963*aee18ef8Sdanielk1977 if( pMatch && !pMatch->pSelect ){ 964*aee18ef8Sdanielk1977 pExpr->pTab = pMatch->pTab; 965*aee18ef8Sdanielk1977 } 966626a879aSdrh } 9678141f61eSdrh return cnt!=1; 9688141f61eSdrh } 9698141f61eSdrh 9708141f61eSdrh /* 971626a879aSdrh ** pExpr is a node that defines a function of some kind. It might 972626a879aSdrh ** be a syntactic function like "count(x)" or it might be a function 973626a879aSdrh ** that implements an operator, like "a LIKE b". 974626a879aSdrh ** 975626a879aSdrh ** This routine makes *pzName point to the name of the function and 976626a879aSdrh ** *pnName hold the number of characters in the function name. 977626a879aSdrh */ 978626a879aSdrh static void getFunctionName(Expr *pExpr, const char **pzName, int *pnName){ 979626a879aSdrh switch( pExpr->op ){ 980626a879aSdrh case TK_FUNCTION: { 981626a879aSdrh *pzName = pExpr->token.z; 982626a879aSdrh *pnName = pExpr->token.n; 983626a879aSdrh break; 984626a879aSdrh } 985626a879aSdrh case TK_LIKE: { 986626a879aSdrh *pzName = "like"; 987626a879aSdrh *pnName = 4; 988626a879aSdrh break; 989626a879aSdrh } 990626a879aSdrh case TK_GLOB: { 991626a879aSdrh *pzName = "glob"; 992626a879aSdrh *pnName = 4; 993626a879aSdrh break; 994626a879aSdrh } 995626a879aSdrh case TK_CTIME: { 996626a879aSdrh *pzName = "current_time"; 997626a879aSdrh *pnName = 12; 998626a879aSdrh break; 999626a879aSdrh } 1000626a879aSdrh case TK_CDATE: { 1001626a879aSdrh *pzName = "current_date"; 1002626a879aSdrh *pnName = 12; 1003626a879aSdrh break; 1004626a879aSdrh } 1005626a879aSdrh case TK_CTIMESTAMP: { 1006626a879aSdrh *pzName = "current_timestamp"; 1007626a879aSdrh *pnName = 17; 1008626a879aSdrh break; 1009626a879aSdrh } 1010626a879aSdrh } 1011626a879aSdrh } 1012626a879aSdrh 1013626a879aSdrh /* 1014626a879aSdrh ** This routine is designed as an xFunc for walkExprTree(). 1015626a879aSdrh ** 101673b211abSdrh ** Resolve symbolic names into TK_COLUMN operators for the current 1017626a879aSdrh ** node in the expression tree. Return 0 to continue the search down 101873b211abSdrh ** the tree or 2 to abort the tree walk. 101973b211abSdrh ** 102073b211abSdrh ** This routine also does error checking and name resolution for 102173b211abSdrh ** function names. The operator for aggregate functions is changed 102273b211abSdrh ** to TK_AGG_FUNCTION. 1023626a879aSdrh */ 1024626a879aSdrh static int nameResolverStep(void *pArg, Expr *pExpr){ 1025626a879aSdrh NameContext *pNC = (NameContext*)pArg; 1026626a879aSdrh SrcList *pSrcList; 1027626a879aSdrh Parse *pParse; 1028626a879aSdrh 1029b3bce662Sdanielk1977 if( pExpr==0 ) return 1; 1030626a879aSdrh assert( pNC!=0 ); 1031626a879aSdrh pSrcList = pNC->pSrcList; 1032626a879aSdrh pParse = pNC->pParse; 1033b3bce662Sdanielk1977 1034626a879aSdrh if( ExprHasAnyProperty(pExpr, EP_Resolved) ) return 1; 1035626a879aSdrh ExprSetProperty(pExpr, EP_Resolved); 1036626a879aSdrh #ifndef NDEBUG 1037626a879aSdrh if( pSrcList ){ 1038940fac9dSdanielk1977 int i; 1039626a879aSdrh for(i=0; i<pSrcList->nSrc; i++){ 1040626a879aSdrh assert( pSrcList->a[i].iCursor>=0 && pSrcList->a[i].iCursor<pParse->nTab); 1041626a879aSdrh } 1042626a879aSdrh } 1043626a879aSdrh #endif 1044626a879aSdrh switch( pExpr->op ){ 1045626a879aSdrh /* Double-quoted strings (ex: "abc") are used as identifiers if 1046626a879aSdrh ** possible. Otherwise they remain as strings. Single-quoted 1047626a879aSdrh ** strings (ex: 'abc') are always string literals. 1048626a879aSdrh */ 1049626a879aSdrh case TK_STRING: { 1050626a879aSdrh if( pExpr->token.z[0]=='\'' ) break; 1051626a879aSdrh /* Fall thru into the TK_ID case if this is a double-quoted string */ 1052626a879aSdrh } 1053626a879aSdrh /* A lone identifier is the name of a column. 1054626a879aSdrh */ 1055626a879aSdrh case TK_ID: { 1056626a879aSdrh lookupName(pParse, 0, 0, &pExpr->token, pNC, pExpr); 1057626a879aSdrh return 1; 1058626a879aSdrh } 1059626a879aSdrh 1060626a879aSdrh /* A table name and column name: ID.ID 1061626a879aSdrh ** Or a database, table and column: ID.ID.ID 1062626a879aSdrh */ 1063626a879aSdrh case TK_DOT: { 1064626a879aSdrh Token *pColumn; 1065626a879aSdrh Token *pTable; 1066626a879aSdrh Token *pDb; 1067626a879aSdrh Expr *pRight; 1068626a879aSdrh 1069b3bce662Sdanielk1977 /* if( pSrcList==0 ) break; */ 1070626a879aSdrh pRight = pExpr->pRight; 1071626a879aSdrh if( pRight->op==TK_ID ){ 1072626a879aSdrh pDb = 0; 1073626a879aSdrh pTable = &pExpr->pLeft->token; 1074626a879aSdrh pColumn = &pRight->token; 1075626a879aSdrh }else{ 1076626a879aSdrh assert( pRight->op==TK_DOT ); 1077626a879aSdrh pDb = &pExpr->pLeft->token; 1078626a879aSdrh pTable = &pRight->pLeft->token; 1079626a879aSdrh pColumn = &pRight->pRight->token; 1080626a879aSdrh } 1081626a879aSdrh lookupName(pParse, pDb, pTable, pColumn, pNC, pExpr); 1082626a879aSdrh return 1; 1083626a879aSdrh } 1084626a879aSdrh 1085626a879aSdrh /* Resolve function names 1086626a879aSdrh */ 1087626a879aSdrh case TK_CTIME: 1088626a879aSdrh case TK_CTIMESTAMP: 1089626a879aSdrh case TK_CDATE: 1090626a879aSdrh case TK_GLOB: 1091626a879aSdrh case TK_LIKE: 1092626a879aSdrh case TK_FUNCTION: { 1093626a879aSdrh ExprList *pList = pExpr->pList; /* The argument list */ 1094626a879aSdrh int n = pList ? pList->nExpr : 0; /* Number of arguments */ 1095626a879aSdrh int no_such_func = 0; /* True if no such function exists */ 1096626a879aSdrh int wrong_num_args = 0; /* True if wrong number of arguments */ 1097626a879aSdrh int is_agg = 0; /* True if is an aggregate function */ 1098626a879aSdrh int i; 1099626a879aSdrh int nId; /* Number of characters in function name */ 1100626a879aSdrh const char *zId; /* The function name. */ 110173b211abSdrh FuncDef *pDef; /* Information about the function */ 110273b211abSdrh int enc = pParse->db->enc; /* The database encoding */ 1103626a879aSdrh 1104626a879aSdrh getFunctionName(pExpr, &zId, &nId); 1105626a879aSdrh pDef = sqlite3FindFunction(pParse->db, zId, nId, n, enc, 0); 1106626a879aSdrh if( pDef==0 ){ 1107626a879aSdrh pDef = sqlite3FindFunction(pParse->db, zId, nId, -1, enc, 0); 1108626a879aSdrh if( pDef==0 ){ 1109626a879aSdrh no_such_func = 1; 1110626a879aSdrh }else{ 1111626a879aSdrh wrong_num_args = 1; 1112626a879aSdrh } 1113626a879aSdrh }else{ 1114626a879aSdrh is_agg = pDef->xFunc==0; 1115626a879aSdrh } 1116626a879aSdrh if( is_agg && !pNC->allowAgg ){ 1117626a879aSdrh sqlite3ErrorMsg(pParse, "misuse of aggregate function %.*s()", nId,zId); 1118626a879aSdrh pNC->nErr++; 1119626a879aSdrh is_agg = 0; 1120626a879aSdrh }else if( no_such_func ){ 1121626a879aSdrh sqlite3ErrorMsg(pParse, "no such function: %.*s", nId, zId); 1122626a879aSdrh pNC->nErr++; 1123626a879aSdrh }else if( wrong_num_args ){ 1124626a879aSdrh sqlite3ErrorMsg(pParse,"wrong number of arguments to function %.*s()", 1125626a879aSdrh nId, zId); 1126626a879aSdrh pNC->nErr++; 1127626a879aSdrh } 1128626a879aSdrh if( is_agg ){ 1129626a879aSdrh pExpr->op = TK_AGG_FUNCTION; 1130626a879aSdrh pNC->hasAgg = 1; 1131626a879aSdrh } 113273b211abSdrh if( is_agg ) pNC->allowAgg = 0; 1133626a879aSdrh for(i=0; pNC->nErr==0 && i<n; i++){ 113473b211abSdrh walkExprTree(pList->a[i].pExpr, nameResolverStep, pNC); 1135626a879aSdrh } 113673b211abSdrh if( is_agg ) pNC->allowAgg = 1; 1137626a879aSdrh /* FIX ME: Compute pExpr->affinity based on the expected return 1138626a879aSdrh ** type of the function 1139626a879aSdrh */ 1140626a879aSdrh return is_agg; 1141626a879aSdrh } 1142b3bce662Sdanielk1977 #ifndef SQLITE_OMIT_SUBQUERY 1143b3bce662Sdanielk1977 case TK_SELECT: 1144b3bce662Sdanielk1977 case TK_EXISTS: 1145b3bce662Sdanielk1977 #endif 1146b3bce662Sdanielk1977 case TK_IN: { 1147b3bce662Sdanielk1977 if( pExpr->pSelect ){ 1148b3bce662Sdanielk1977 int nRef = pNC->nRef; 1149b3bce662Sdanielk1977 sqlite3SelectResolve(pParse, pExpr->pSelect, pNC); 1150b3bce662Sdanielk1977 assert( pNC->nRef>=nRef ); 1151b3bce662Sdanielk1977 if( nRef!=pNC->nRef ){ 1152b3bce662Sdanielk1977 ExprSetProperty(pExpr, EP_VarSelect); 1153b3bce662Sdanielk1977 } 1154b3bce662Sdanielk1977 } 1155b3bce662Sdanielk1977 } 1156626a879aSdrh } 1157626a879aSdrh return 0; 1158626a879aSdrh } 1159626a879aSdrh 1160626a879aSdrh /* 1161cce7d176Sdrh ** This routine walks an expression tree and resolves references to 1162967e8b73Sdrh ** table columns. Nodes of the form ID.ID or ID resolve into an 1163aacc543eSdrh ** index to the table in the table list and a column offset. The 1164aacc543eSdrh ** Expr.opcode for such nodes is changed to TK_COLUMN. The Expr.iTable 1165aacc543eSdrh ** value is changed to the index of the referenced table in pTabList 1166832508b7Sdrh ** plus the "base" value. The base value will ultimately become the 1167aacc543eSdrh ** VDBE cursor number for a cursor that is pointing into the referenced 1168aacc543eSdrh ** table. The Expr.iColumn value is changed to the index of the column 1169aacc543eSdrh ** of the referenced table. The Expr.iColumn value for the special 1170aacc543eSdrh ** ROWID column is -1. Any INTEGER PRIMARY KEY column is tried as an 1171aacc543eSdrh ** alias for ROWID. 117219a775c2Sdrh ** 1173626a879aSdrh ** Also resolve function names and check the functions for proper 1174626a879aSdrh ** usage. Make sure all function names are recognized and all functions 1175626a879aSdrh ** have the correct number of arguments. Leave an error message 1176626a879aSdrh ** in pParse->zErrMsg if anything is amiss. Return the number of errors. 1177626a879aSdrh ** 117873b211abSdrh ** If the expression contains aggregate functions then set the EP_Agg 117973b211abSdrh ** property on the expression. 1180626a879aSdrh */ 1181626a879aSdrh int sqlite3ExprResolveNames( 1182b3bce662Sdanielk1977 NameContext *pNC, /* Namespace to resolve expressions in. */ 1183b3bce662Sdanielk1977 Expr *pExpr /* The expression to be analyzed. */ 1184626a879aSdrh ){ 118573b211abSdrh if( pExpr==0 ) return 0; 1186b3bce662Sdanielk1977 walkExprTree(pExpr, nameResolverStep, pNC); 1187b3bce662Sdanielk1977 if( pNC->nErr>0 ){ 118873b211abSdrh ExprSetProperty(pExpr, EP_Error); 118973b211abSdrh } 119073b211abSdrh return ExprHasProperty(pExpr, EP_Error); 1191626a879aSdrh } 1192626a879aSdrh 11931398ad36Sdrh /* 11941398ad36Sdrh ** A pointer instance of this structure is used to pass information 11951398ad36Sdrh ** through walkExprTree into codeSubqueryStep(). 11961398ad36Sdrh */ 11971398ad36Sdrh typedef struct QueryCoder QueryCoder; 11981398ad36Sdrh struct QueryCoder { 11991398ad36Sdrh Parse *pParse; /* The parsing context */ 12001398ad36Sdrh NameContext *pNC; /* Namespace of first enclosing query */ 12011398ad36Sdrh }; 12021398ad36Sdrh 1203626a879aSdrh 1204626a879aSdrh /* 1205626a879aSdrh ** Generate code for subqueries and IN operators. 1206626a879aSdrh ** 120773b211abSdrh ** IN operators comes in two forms: 1208fef5208cSdrh ** 1209fef5208cSdrh ** expr IN (exprlist) 1210fef5208cSdrh ** and 1211fef5208cSdrh ** expr IN (SELECT ...) 1212fef5208cSdrh ** 1213fef5208cSdrh ** The first form is handled by creating a set holding the list 1214fef5208cSdrh ** of allowed values. The second form causes the SELECT to generate 1215fef5208cSdrh ** a temporary table. 1216cce7d176Sdrh */ 121751522cd3Sdrh #ifndef SQLITE_OMIT_SUBQUERY 1218b3bce662Sdanielk1977 void sqlite3CodeSubselect(Parse *pParse, Expr *pExpr){ 1219b3bce662Sdanielk1977 int label = 0; /* Address after sub-select code */ 1220b3bce662Sdanielk1977 Vdbe *v = sqlite3GetVdbe(pParse); 1221b3bce662Sdanielk1977 if( v==0 ) return; 1222b3bce662Sdanielk1977 1223b3bce662Sdanielk1977 /* If this is not a variable (correlated) select, then execute 1224b3bce662Sdanielk1977 ** it only once. Unless this is part of a trigger program. In 1225b3bce662Sdanielk1977 ** that case re-execute every time (this could be optimized). 1226b3bce662Sdanielk1977 */ 1227b3bce662Sdanielk1977 if( !ExprHasAnyProperty(pExpr, EP_VarSelect) && !pParse->trigStack ){ 1228b3bce662Sdanielk1977 int mem = pParse->nMem++; 1229b3bce662Sdanielk1977 sqlite3VdbeAddOp(v, OP_MemLoad, mem, 0); 1230b3bce662Sdanielk1977 label = sqlite3VdbeMakeLabel(v); 1231b3bce662Sdanielk1977 sqlite3VdbeAddOp(v, OP_If, 0, label); 1232b3bce662Sdanielk1977 sqlite3VdbeAddOp(v, OP_Integer, 1, 0); 1233b3bce662Sdanielk1977 sqlite3VdbeAddOp(v, OP_MemStore, mem, 1); 1234b3bce662Sdanielk1977 } 1235b3bce662Sdanielk1977 1236b3bce662Sdanielk1977 if( pExpr->pSelect ){ 1237b3bce662Sdanielk1977 sqlite3VdbeAddOp(v, OP_AggContextPush, 0, 0); 1238b3bce662Sdanielk1977 } 12396a3ea0e6Sdrh 1240cce7d176Sdrh switch( pExpr->op ){ 1241fef5208cSdrh case TK_IN: { 1242e014a838Sdanielk1977 char affinity; 1243d3d39e93Sdrh KeyInfo keyInfo; 12440202b29eSdanielk1977 int addr; /* Address of OP_OpenTemp instruction */ 1245d3d39e93Sdrh 1246bf3b721fSdanielk1977 affinity = sqlite3ExprAffinity(pExpr->pLeft); 1247e014a838Sdanielk1977 1248e014a838Sdanielk1977 /* Whether this is an 'x IN(SELECT...)' or an 'x IN(<exprlist>)' 1249e014a838Sdanielk1977 ** expression it is handled the same way. A temporary table is 1250e014a838Sdanielk1977 ** filled with single-field index keys representing the results 1251e014a838Sdanielk1977 ** from the SELECT or the <exprlist>. 1252fef5208cSdrh ** 1253e014a838Sdanielk1977 ** If the 'x' expression is a column value, or the SELECT... 1254e014a838Sdanielk1977 ** statement returns a column value, then the affinity of that 1255e014a838Sdanielk1977 ** column is used to build the index keys. If both 'x' and the 1256e014a838Sdanielk1977 ** SELECT... statement are columns, then numeric affinity is used 1257e014a838Sdanielk1977 ** if either column has NUMERIC or INTEGER affinity. If neither 1258e014a838Sdanielk1977 ** 'x' nor the SELECT... statement are columns, then numeric affinity 1259e014a838Sdanielk1977 ** is used. 1260fef5208cSdrh */ 1261832508b7Sdrh pExpr->iTable = pParse->nTab++; 12620202b29eSdanielk1977 addr = sqlite3VdbeAddOp(v, OP_OpenTemp, pExpr->iTable, 0); 1263d3d39e93Sdrh memset(&keyInfo, 0, sizeof(keyInfo)); 1264d3d39e93Sdrh keyInfo.nField = 1; 1265f3218feaSdrh sqlite3VdbeAddOp(v, OP_SetNumColumns, pExpr->iTable, 1); 1266e014a838Sdanielk1977 1267e014a838Sdanielk1977 if( pExpr->pSelect ){ 1268e014a838Sdanielk1977 /* Case 1: expr IN (SELECT ...) 1269e014a838Sdanielk1977 ** 1270e014a838Sdanielk1977 ** Generate code to write the results of the select into the temporary 1271e014a838Sdanielk1977 ** table allocated and opened above. 1272e014a838Sdanielk1977 */ 1273e014a838Sdanielk1977 int iParm = pExpr->iTable + (((int)affinity)<<16); 1274be5c89acSdrh ExprList *pEList; 1275e014a838Sdanielk1977 assert( (pExpr->iTable&0x0000FFFF)==pExpr->iTable ); 1276b3bce662Sdanielk1977 sqlite3Select(pParse, pExpr->pSelect, SRT_Set, iParm, 0, 0, 0, 0); 1277be5c89acSdrh pEList = pExpr->pSelect->pEList; 1278be5c89acSdrh if( pEList && pEList->nExpr>0 ){ 12797cedc8d4Sdanielk1977 keyInfo.aColl[0] = binaryCompareCollSeq(pParse, pExpr->pLeft, 1280be5c89acSdrh pEList->a[0].pExpr); 12810202b29eSdanielk1977 } 1282fef5208cSdrh }else if( pExpr->pList ){ 1283fef5208cSdrh /* Case 2: expr IN (exprlist) 1284fef5208cSdrh ** 1285e014a838Sdanielk1977 ** For each expression, build an index key from the evaluation and 1286e014a838Sdanielk1977 ** store it in the temporary table. If <expr> is a column, then use 1287e014a838Sdanielk1977 ** that columns affinity when building index keys. If <expr> is not 1288e014a838Sdanielk1977 ** a column, use numeric affinity. 1289fef5208cSdrh */ 1290e014a838Sdanielk1977 int i; 1291e014a838Sdanielk1977 if( !affinity ){ 1292e014a838Sdanielk1977 affinity = SQLITE_AFF_NUMERIC; 1293e014a838Sdanielk1977 } 12940202b29eSdanielk1977 keyInfo.aColl[0] = pExpr->pLeft->pColl; 1295e014a838Sdanielk1977 1296e014a838Sdanielk1977 /* Loop through each expression in <exprlist>. */ 1297fef5208cSdrh for(i=0; i<pExpr->pList->nExpr; i++){ 1298fef5208cSdrh Expr *pE2 = pExpr->pList->a[i].pExpr; 1299e014a838Sdanielk1977 1300e014a838Sdanielk1977 /* Check that the expression is constant and valid. */ 13014adee20fSdanielk1977 if( !sqlite3ExprIsConstant(pE2) ){ 13024adee20fSdanielk1977 sqlite3ErrorMsg(pParse, 1303da93d238Sdrh "right-hand side of IN operator must be constant"); 1304b3bce662Sdanielk1977 return; 13054794b980Sdrh } 1306e014a838Sdanielk1977 1307e014a838Sdanielk1977 /* Evaluate the expression and insert it into the temp table */ 13084adee20fSdanielk1977 sqlite3ExprCode(pParse, pE2); 130994a11211Sdrh sqlite3VdbeOp3(v, OP_MakeRecord, 1, 0, &affinity, 1); 13100f69c1e3Sdanielk1977 sqlite3VdbeAddOp(v, OP_String8, 0, 0); 1311e014a838Sdanielk1977 sqlite3VdbeAddOp(v, OP_PutStrKey, pExpr->iTable, 0); 1312fef5208cSdrh } 1313fef5208cSdrh } 13140202b29eSdanielk1977 sqlite3VdbeChangeP3(v, addr, (void *)&keyInfo, P3_KEYINFO); 1315b3bce662Sdanielk1977 break; 1316fef5208cSdrh } 1317fef5208cSdrh 131851522cd3Sdrh case TK_EXISTS: 131919a775c2Sdrh case TK_SELECT: { 1320fef5208cSdrh /* This has to be a scalar SELECT. Generate code to put the 1321fef5208cSdrh ** value of this select in a memory cell and record the number 1322967e8b73Sdrh ** of the memory cell in iColumn. 1323fef5208cSdrh */ 132451522cd3Sdrh int sop; 132551522cd3Sdrh Select *pSel; 13261398ad36Sdrh 1327967e8b73Sdrh pExpr->iColumn = pParse->nMem++; 132851522cd3Sdrh pSel = pExpr->pSelect; 132951522cd3Sdrh if( pExpr->op==TK_SELECT ){ 133051522cd3Sdrh sop = SRT_Mem; 133151522cd3Sdrh }else{ 133251522cd3Sdrh static const Token one = { "1", 0, 1 }; 133351522cd3Sdrh sop = SRT_Exists; 133451522cd3Sdrh sqlite3ExprListDelete(pSel->pEList); 133551522cd3Sdrh pSel->pEList = sqlite3ExprListAppend(0, 133651522cd3Sdrh sqlite3Expr(TK_INTEGER, 0, 0, &one), 0); 133751522cd3Sdrh } 1338b3bce662Sdanielk1977 sqlite3Select(pParse, pSel, sop, pExpr->iColumn, 0, 0, 0, 0); 1339b3bce662Sdanielk1977 break; 134019a775c2Sdrh } 1341cce7d176Sdrh } 1342b3bce662Sdanielk1977 1343b3bce662Sdanielk1977 if( pExpr->pSelect ){ 1344b3bce662Sdanielk1977 sqlite3VdbeAddOp(v, OP_AggContextPop, 0, 0); 1345b3bce662Sdanielk1977 } 1346b3bce662Sdanielk1977 if( label<0 ){ 1347b3bce662Sdanielk1977 sqlite3VdbeResolveLabel(v, label); 1348b3bce662Sdanielk1977 } 1349b3bce662Sdanielk1977 return; 1350cce7d176Sdrh } 135151522cd3Sdrh #endif /* SQLITE_OMIT_SUBQUERY */ 1352cce7d176Sdrh 1353cce7d176Sdrh /* 1354fec19aadSdrh ** Generate an instruction that will put the integer describe by 1355fec19aadSdrh ** text z[0..n-1] on the stack. 1356fec19aadSdrh */ 1357fec19aadSdrh static void codeInteger(Vdbe *v, const char *z, int n){ 1358fec19aadSdrh int i; 13596fec0762Sdrh if( sqlite3GetInt32(z, &i) ){ 13606fec0762Sdrh sqlite3VdbeAddOp(v, OP_Integer, i, 0); 13616fec0762Sdrh }else if( sqlite3FitsIn64Bits(z) ){ 13626fec0762Sdrh sqlite3VdbeOp3(v, OP_Integer, 0, 0, z, n); 1363fec19aadSdrh }else{ 1364fec19aadSdrh sqlite3VdbeOp3(v, OP_Real, 0, 0, z, n); 1365fec19aadSdrh } 1366fec19aadSdrh } 1367fec19aadSdrh 1368fec19aadSdrh /* 1369cce7d176Sdrh ** Generate code into the current Vdbe to evaluate the given 13701ccde15dSdrh ** expression and leave the result on the top of stack. 1371f2bc013cSdrh ** 1372f2bc013cSdrh ** This code depends on the fact that certain token values (ex: TK_EQ) 1373f2bc013cSdrh ** are the same as opcode values (ex: OP_Eq) that implement the corresponding 1374f2bc013cSdrh ** operation. Special comments in vdbe.c and the mkopcodeh.awk script in 1375f2bc013cSdrh ** the make process cause these values to align. Assert()s in the code 1376f2bc013cSdrh ** below verify that the numbers are aligned correctly. 1377cce7d176Sdrh */ 13784adee20fSdanielk1977 void sqlite3ExprCode(Parse *pParse, Expr *pExpr){ 1379cce7d176Sdrh Vdbe *v = pParse->pVdbe; 1380cce7d176Sdrh int op; 13817977a17fSdanielk1977 if( v==0 ) return; 13827977a17fSdanielk1977 if( pExpr==0 ){ 13837977a17fSdanielk1977 sqlite3VdbeAddOp(v, OP_String8, 0, 0); /* Empty expression evals to NULL */ 13847977a17fSdanielk1977 return; 13857977a17fSdanielk1977 } 1386f2bc013cSdrh op = pExpr->op; 1387f2bc013cSdrh switch( op ){ 1388967e8b73Sdrh case TK_COLUMN: { 1389a58fdfb1Sdanielk1977 if( !pParse->fillAgg && pExpr->iAgg>=0 ){ 1390a58fdfb1Sdanielk1977 sqlite3VdbeAddOp(v, OP_AggGet, pExpr->iAggCtx, pExpr->iAgg); 1391c4a3c779Sdrh }else if( pExpr->iColumn>=0 ){ 13924adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_Column, pExpr->iTable, pExpr->iColumn); 1393*aee18ef8Sdanielk1977 sqlite3ColumnDefault(v, pExpr->pTab, pExpr->iColumn); 1394c4a3c779Sdrh }else{ 13954adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_Recno, pExpr->iTable, 0); 13962282792aSdrh } 1397cce7d176Sdrh break; 1398cce7d176Sdrh } 1399cce7d176Sdrh case TK_INTEGER: { 1400fec19aadSdrh codeInteger(v, pExpr->token.z, pExpr->token.n); 1401fec19aadSdrh break; 140251e9a445Sdrh } 1403fec19aadSdrh case TK_FLOAT: 1404fec19aadSdrh case TK_STRING: { 1405f2bc013cSdrh assert( TK_FLOAT==OP_Real ); 1406f2bc013cSdrh assert( TK_STRING==OP_String8 ); 1407fec19aadSdrh sqlite3VdbeOp3(v, op, 0, 0, pExpr->token.z, pExpr->token.n); 14084adee20fSdanielk1977 sqlite3VdbeDequoteP3(v, -1); 1409cce7d176Sdrh break; 1410cce7d176Sdrh } 14115338a5f7Sdanielk1977 #ifndef SQLITE_OMIT_BLOB_LITERAL 1412c572ef7fSdanielk1977 case TK_BLOB: { 1413f2bc013cSdrh assert( TK_BLOB==OP_HexBlob ); 1414c572ef7fSdanielk1977 sqlite3VdbeOp3(v, op, 0, 0, pExpr->token.z+1, pExpr->token.n-1); 1415c572ef7fSdanielk1977 sqlite3VdbeDequoteP3(v, -1); 1416c572ef7fSdanielk1977 break; 1417c572ef7fSdanielk1977 } 14185338a5f7Sdanielk1977 #endif 1419cce7d176Sdrh case TK_NULL: { 14200f69c1e3Sdanielk1977 sqlite3VdbeAddOp(v, OP_String8, 0, 0); 1421cce7d176Sdrh break; 1422cce7d176Sdrh } 142350457896Sdrh case TK_VARIABLE: { 14244adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_Variable, pExpr->iTable, 0); 1425895d7472Sdrh if( pExpr->token.n>1 ){ 1426895d7472Sdrh sqlite3VdbeChangeP3(v, -1, pExpr->token.z, pExpr->token.n); 1427895d7472Sdrh } 142850457896Sdrh break; 142950457896Sdrh } 14304e0cff60Sdrh case TK_REGISTER: { 14314e0cff60Sdrh sqlite3VdbeAddOp(v, OP_MemLoad, pExpr->iTable, 0); 14324e0cff60Sdrh break; 14334e0cff60Sdrh } 1434c9b84a1fSdrh case TK_LT: 1435c9b84a1fSdrh case TK_LE: 1436c9b84a1fSdrh case TK_GT: 1437c9b84a1fSdrh case TK_GE: 1438c9b84a1fSdrh case TK_NE: 1439c9b84a1fSdrh case TK_EQ: { 1440f2bc013cSdrh assert( TK_LT==OP_Lt ); 1441f2bc013cSdrh assert( TK_LE==OP_Le ); 1442f2bc013cSdrh assert( TK_GT==OP_Gt ); 1443f2bc013cSdrh assert( TK_GE==OP_Ge ); 1444f2bc013cSdrh assert( TK_EQ==OP_Eq ); 1445f2bc013cSdrh assert( TK_NE==OP_Ne ); 1446a37cdde0Sdanielk1977 sqlite3ExprCode(pParse, pExpr->pLeft); 1447a37cdde0Sdanielk1977 sqlite3ExprCode(pParse, pExpr->pRight); 1448be5c89acSdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, 0, 0); 1449a37cdde0Sdanielk1977 break; 1450c9b84a1fSdrh } 1451cce7d176Sdrh case TK_AND: 1452cce7d176Sdrh case TK_OR: 1453cce7d176Sdrh case TK_PLUS: 1454cce7d176Sdrh case TK_STAR: 1455cce7d176Sdrh case TK_MINUS: 1456bf4133cbSdrh case TK_REM: 1457bf4133cbSdrh case TK_BITAND: 1458bf4133cbSdrh case TK_BITOR: 145917c40294Sdrh case TK_SLASH: 1460bf4133cbSdrh case TK_LSHIFT: 1461855eb1cfSdrh case TK_RSHIFT: 14620040077dSdrh case TK_CONCAT: { 1463f2bc013cSdrh assert( TK_AND==OP_And ); 1464f2bc013cSdrh assert( TK_OR==OP_Or ); 1465f2bc013cSdrh assert( TK_PLUS==OP_Add ); 1466f2bc013cSdrh assert( TK_MINUS==OP_Subtract ); 1467f2bc013cSdrh assert( TK_REM==OP_Remainder ); 1468f2bc013cSdrh assert( TK_BITAND==OP_BitAnd ); 1469f2bc013cSdrh assert( TK_BITOR==OP_BitOr ); 1470f2bc013cSdrh assert( TK_SLASH==OP_Divide ); 1471f2bc013cSdrh assert( TK_LSHIFT==OP_ShiftLeft ); 1472f2bc013cSdrh assert( TK_RSHIFT==OP_ShiftRight ); 1473f2bc013cSdrh assert( TK_CONCAT==OP_Concat ); 14744adee20fSdanielk1977 sqlite3ExprCode(pParse, pExpr->pLeft); 14754adee20fSdanielk1977 sqlite3ExprCode(pParse, pExpr->pRight); 1476855eb1cfSdrh sqlite3VdbeAddOp(v, op, 0, 0); 14770040077dSdrh break; 14780040077dSdrh } 1479cce7d176Sdrh case TK_UMINUS: { 1480fec19aadSdrh Expr *pLeft = pExpr->pLeft; 1481fec19aadSdrh assert( pLeft ); 1482fec19aadSdrh if( pLeft->op==TK_FLOAT || pLeft->op==TK_INTEGER ){ 1483fec19aadSdrh Token *p = &pLeft->token; 14846e142f54Sdrh char *z = sqliteMalloc( p->n + 2 ); 14856e142f54Sdrh sprintf(z, "-%.*s", p->n, p->z); 1486fec19aadSdrh if( pLeft->op==TK_FLOAT ){ 1487fec19aadSdrh sqlite3VdbeOp3(v, OP_Real, 0, 0, z, p->n+1); 1488e6840900Sdrh }else{ 1489fec19aadSdrh codeInteger(v, z, p->n+1); 1490e6840900Sdrh } 14916e142f54Sdrh sqliteFree(z); 14926e142f54Sdrh break; 14936e142f54Sdrh } 14941ccde15dSdrh /* Fall through into TK_NOT */ 14956e142f54Sdrh } 1496bf4133cbSdrh case TK_BITNOT: 14976e142f54Sdrh case TK_NOT: { 1498f2bc013cSdrh assert( TK_BITNOT==OP_BitNot ); 1499f2bc013cSdrh assert( TK_NOT==OP_Not ); 15004adee20fSdanielk1977 sqlite3ExprCode(pParse, pExpr->pLeft); 15014adee20fSdanielk1977 sqlite3VdbeAddOp(v, op, 0, 0); 1502cce7d176Sdrh break; 1503cce7d176Sdrh } 1504cce7d176Sdrh case TK_ISNULL: 1505cce7d176Sdrh case TK_NOTNULL: { 1506cce7d176Sdrh int dest; 1507f2bc013cSdrh assert( TK_ISNULL==OP_IsNull ); 1508f2bc013cSdrh assert( TK_NOTNULL==OP_NotNull ); 15094adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_Integer, 1, 0); 15104adee20fSdanielk1977 sqlite3ExprCode(pParse, pExpr->pLeft); 15114adee20fSdanielk1977 dest = sqlite3VdbeCurrentAddr(v) + 2; 15124adee20fSdanielk1977 sqlite3VdbeAddOp(v, op, 1, dest); 15134adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_AddImm, -1, 0); 1514a37cdde0Sdanielk1977 break; 1515f2bc013cSdrh } 15162282792aSdrh case TK_AGG_FUNCTION: { 15174adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_AggGet, 0, pExpr->iAgg); 15182282792aSdrh break; 15192282792aSdrh } 15207977a17fSdanielk1977 case TK_CDATE: 15217977a17fSdanielk1977 case TK_CTIME: 15227977a17fSdanielk1977 case TK_CTIMESTAMP: 15234b59ab5eSdrh case TK_GLOB: 15244b59ab5eSdrh case TK_LIKE: 1525cce7d176Sdrh case TK_FUNCTION: { 1526cce7d176Sdrh ExprList *pList = pExpr->pList; 152789425d5eSdrh int nExpr = pList ? pList->nExpr : 0; 15280bce8354Sdrh FuncDef *pDef; 15294b59ab5eSdrh int nId; 15304b59ab5eSdrh const char *zId; 1531682f68b0Sdanielk1977 int p2 = 0; 1532682f68b0Sdanielk1977 int i; 1533d8123366Sdanielk1977 u8 enc = pParse->db->enc; 1534dc1bdc4fSdanielk1977 CollSeq *pColl = 0; 15354b59ab5eSdrh getFunctionName(pExpr, &zId, &nId); 1536d8123366Sdanielk1977 pDef = sqlite3FindFunction(pParse->db, zId, nId, nExpr, enc, 0); 15370bce8354Sdrh assert( pDef!=0 ); 1538f9b596ebSdrh nExpr = sqlite3ExprCodeExprList(pParse, pList); 1539682f68b0Sdanielk1977 for(i=0; i<nExpr && i<32; i++){ 1540d02eb1fdSdanielk1977 if( sqlite3ExprIsConstant(pList->a[i].pExpr) ){ 1541d02eb1fdSdanielk1977 p2 |= (1<<i); 1542d02eb1fdSdanielk1977 } 1543dc1bdc4fSdanielk1977 if( pDef->needCollSeq && !pColl ){ 1544dc1bdc4fSdanielk1977 pColl = sqlite3ExprCollSeq(pParse, pList->a[i].pExpr); 1545dc1bdc4fSdanielk1977 } 1546dc1bdc4fSdanielk1977 } 1547dc1bdc4fSdanielk1977 if( pDef->needCollSeq ){ 1548dc1bdc4fSdanielk1977 if( !pColl ) pColl = pParse->db->pDfltColl; 1549d8123366Sdanielk1977 sqlite3VdbeOp3(v, OP_CollSeq, 0, 0, (char *)pColl, P3_COLLSEQ); 1550682f68b0Sdanielk1977 } 1551682f68b0Sdanielk1977 sqlite3VdbeOp3(v, OP_Function, nExpr, p2, (char*)pDef, P3_FUNCDEF); 15526ec2733bSdrh break; 15536ec2733bSdrh } 1554fe2093d7Sdrh #ifndef SQLITE_OMIT_SUBQUERY 1555fe2093d7Sdrh case TK_EXISTS: 155619a775c2Sdrh case TK_SELECT: { 1557b3bce662Sdanielk1977 sqlite3CodeSubselect(pParse, pExpr); 15584adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_MemLoad, pExpr->iColumn, 0); 1559ad6d9460Sdrh VdbeComment((v, "# load subquery result")); 156019a775c2Sdrh break; 156119a775c2Sdrh } 1562fef5208cSdrh case TK_IN: { 1563fef5208cSdrh int addr; 156494a11211Sdrh char affinity; 1565b3bce662Sdanielk1977 sqlite3CodeSubselect(pParse, pExpr); 1566e014a838Sdanielk1977 1567e014a838Sdanielk1977 /* Figure out the affinity to use to create a key from the results 1568e014a838Sdanielk1977 ** of the expression. affinityStr stores a static string suitable for 1569ededfd5eSdanielk1977 ** P3 of OP_MakeRecord. 1570e014a838Sdanielk1977 */ 157194a11211Sdrh affinity = comparisonAffinity(pExpr); 1572e014a838Sdanielk1977 15734adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_Integer, 1, 0); 1574e014a838Sdanielk1977 1575e014a838Sdanielk1977 /* Code the <expr> from "<expr> IN (...)". The temporary table 1576e014a838Sdanielk1977 ** pExpr->iTable contains the values that make up the (...) set. 1577e014a838Sdanielk1977 */ 15784adee20fSdanielk1977 sqlite3ExprCode(pParse, pExpr->pLeft); 15794adee20fSdanielk1977 addr = sqlite3VdbeCurrentAddr(v); 1580e014a838Sdanielk1977 sqlite3VdbeAddOp(v, OP_NotNull, -1, addr+4); /* addr + 0 */ 15814adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_Pop, 2, 0); 15820f69c1e3Sdanielk1977 sqlite3VdbeAddOp(v, OP_String8, 0, 0); 1583e014a838Sdanielk1977 sqlite3VdbeAddOp(v, OP_Goto, 0, addr+7); 158494a11211Sdrh sqlite3VdbeOp3(v, OP_MakeRecord, 1, 0, &affinity, 1); /* addr + 4 */ 1585e014a838Sdanielk1977 sqlite3VdbeAddOp(v, OP_Found, pExpr->iTable, addr+7); 1586e014a838Sdanielk1977 sqlite3VdbeAddOp(v, OP_AddImm, -1, 0); /* addr + 6 */ 1587e014a838Sdanielk1977 1588fef5208cSdrh break; 1589fef5208cSdrh } 159093758c8dSdanielk1977 #endif 1591fef5208cSdrh case TK_BETWEEN: { 1592be5c89acSdrh Expr *pLeft = pExpr->pLeft; 1593be5c89acSdrh struct ExprList_item *pLItem = pExpr->pList->a; 1594be5c89acSdrh Expr *pRight = pLItem->pExpr; 1595be5c89acSdrh sqlite3ExprCode(pParse, pLeft); 15964adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_Dup, 0, 0); 1597be5c89acSdrh sqlite3ExprCode(pParse, pRight); 1598be5c89acSdrh codeCompare(pParse, pLeft, pRight, OP_Ge, 0, 0); 15994adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_Pull, 1, 0); 1600be5c89acSdrh pLItem++; 1601be5c89acSdrh pRight = pLItem->pExpr; 1602be5c89acSdrh sqlite3ExprCode(pParse, pRight); 1603be5c89acSdrh codeCompare(pParse, pLeft, pRight, OP_Le, 0, 0); 16044adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_And, 0, 0); 1605fef5208cSdrh break; 1606fef5208cSdrh } 160751e9a445Sdrh case TK_UPLUS: 1608a2e00042Sdrh case TK_AS: { 16094adee20fSdanielk1977 sqlite3ExprCode(pParse, pExpr->pLeft); 1610a2e00042Sdrh break; 1611a2e00042Sdrh } 161217a7f8ddSdrh case TK_CASE: { 161317a7f8ddSdrh int expr_end_label; 1614f5905aa7Sdrh int jumpInst; 1615f5905aa7Sdrh int addr; 1616f5905aa7Sdrh int nExpr; 161717a7f8ddSdrh int i; 1618be5c89acSdrh ExprList *pEList; 1619be5c89acSdrh struct ExprList_item *aListelem; 162017a7f8ddSdrh 162117a7f8ddSdrh assert(pExpr->pList); 162217a7f8ddSdrh assert((pExpr->pList->nExpr % 2) == 0); 162317a7f8ddSdrh assert(pExpr->pList->nExpr > 0); 1624be5c89acSdrh pEList = pExpr->pList; 1625be5c89acSdrh aListelem = pEList->a; 1626be5c89acSdrh nExpr = pEList->nExpr; 16274adee20fSdanielk1977 expr_end_label = sqlite3VdbeMakeLabel(v); 162817a7f8ddSdrh if( pExpr->pLeft ){ 16294adee20fSdanielk1977 sqlite3ExprCode(pParse, pExpr->pLeft); 1630cce7d176Sdrh } 1631f5905aa7Sdrh for(i=0; i<nExpr; i=i+2){ 1632be5c89acSdrh sqlite3ExprCode(pParse, aListelem[i].pExpr); 163317a7f8ddSdrh if( pExpr->pLeft ){ 16344adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_Dup, 1, 1); 1635be5c89acSdrh jumpInst = codeCompare(pParse, pExpr->pLeft, aListelem[i].pExpr, 1636be5c89acSdrh OP_Ne, 0, 1); 16374adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_Pop, 1, 0); 1638f5905aa7Sdrh }else{ 16394adee20fSdanielk1977 jumpInst = sqlite3VdbeAddOp(v, OP_IfNot, 1, 0); 164017a7f8ddSdrh } 1641be5c89acSdrh sqlite3ExprCode(pParse, aListelem[i+1].pExpr); 16424adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_Goto, 0, expr_end_label); 16434adee20fSdanielk1977 addr = sqlite3VdbeCurrentAddr(v); 16444adee20fSdanielk1977 sqlite3VdbeChangeP2(v, jumpInst, addr); 164517a7f8ddSdrh } 1646f570f011Sdrh if( pExpr->pLeft ){ 16474adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_Pop, 1, 0); 1648f570f011Sdrh } 164917a7f8ddSdrh if( pExpr->pRight ){ 16504adee20fSdanielk1977 sqlite3ExprCode(pParse, pExpr->pRight); 165117a7f8ddSdrh }else{ 16520f69c1e3Sdanielk1977 sqlite3VdbeAddOp(v, OP_String8, 0, 0); 165317a7f8ddSdrh } 16544adee20fSdanielk1977 sqlite3VdbeResolveLabel(v, expr_end_label); 16556f34903eSdanielk1977 break; 16566f34903eSdanielk1977 } 16575338a5f7Sdanielk1977 #ifndef SQLITE_OMIT_TRIGGER 16586f34903eSdanielk1977 case TK_RAISE: { 16596f34903eSdanielk1977 if( !pParse->trigStack ){ 16604adee20fSdanielk1977 sqlite3ErrorMsg(pParse, 1661da93d238Sdrh "RAISE() may only be used within a trigger-program"); 16626f34903eSdanielk1977 return; 16636f34903eSdanielk1977 } 1664ad6d9460Sdrh if( pExpr->iColumn!=OE_Ignore ){ 1665ad6d9460Sdrh assert( pExpr->iColumn==OE_Rollback || 16666f34903eSdanielk1977 pExpr->iColumn == OE_Abort || 1667ad6d9460Sdrh pExpr->iColumn == OE_Fail ); 16684adee20fSdanielk1977 sqlite3VdbeOp3(v, OP_Halt, SQLITE_CONSTRAINT, pExpr->iColumn, 1669701a0aebSdrh pExpr->token.z, pExpr->token.n); 16704adee20fSdanielk1977 sqlite3VdbeDequoteP3(v, -1); 16716f34903eSdanielk1977 } else { 16726f34903eSdanielk1977 assert( pExpr->iColumn == OE_Ignore ); 1673344737f6Sdrh sqlite3VdbeAddOp(v, OP_ContextPop, 0, 0); 1674ad6d9460Sdrh sqlite3VdbeAddOp(v, OP_Goto, 0, pParse->trigStack->ignoreJump); 1675ad6d9460Sdrh VdbeComment((v, "# raise(IGNORE)")); 16766f34903eSdanielk1977 } 167717a7f8ddSdrh } 16785338a5f7Sdanielk1977 #endif 167917a7f8ddSdrh break; 168017a7f8ddSdrh } 1681cce7d176Sdrh } 1682cce7d176Sdrh 168393758c8dSdanielk1977 #ifndef SQLITE_OMIT_TRIGGER 1684cce7d176Sdrh /* 168525303780Sdrh ** Generate code that evalutes the given expression and leaves the result 168625303780Sdrh ** on the stack. See also sqlite3ExprCode(). 168725303780Sdrh ** 168825303780Sdrh ** This routine might also cache the result and modify the pExpr tree 168925303780Sdrh ** so that it will make use of the cached result on subsequent evaluations 169025303780Sdrh ** rather than evaluate the whole expression again. Trivial expressions are 169125303780Sdrh ** not cached. If the expression is cached, its result is stored in a 169225303780Sdrh ** memory location. 169325303780Sdrh */ 169425303780Sdrh void sqlite3ExprCodeAndCache(Parse *pParse, Expr *pExpr){ 169525303780Sdrh Vdbe *v = pParse->pVdbe; 169625303780Sdrh int iMem; 169725303780Sdrh int addr1, addr2; 169825303780Sdrh if( v==0 ) return; 169925303780Sdrh addr1 = sqlite3VdbeCurrentAddr(v); 170025303780Sdrh sqlite3ExprCode(pParse, pExpr); 170125303780Sdrh addr2 = sqlite3VdbeCurrentAddr(v); 170225303780Sdrh if( addr2>addr1+1 || sqlite3VdbeGetOp(v, addr1)->opcode==OP_Function ){ 170325303780Sdrh iMem = pExpr->iTable = pParse->nMem++; 170425303780Sdrh sqlite3VdbeAddOp(v, OP_MemStore, iMem, 0); 170525303780Sdrh pExpr->op = TK_REGISTER; 170625303780Sdrh } 170725303780Sdrh } 170893758c8dSdanielk1977 #endif 170925303780Sdrh 171025303780Sdrh /* 1711268380caSdrh ** Generate code that pushes the value of every element of the given 1712f9b596ebSdrh ** expression list onto the stack. 1713268380caSdrh ** 1714268380caSdrh ** Return the number of elements pushed onto the stack. 1715268380caSdrh */ 17164adee20fSdanielk1977 int sqlite3ExprCodeExprList( 1717268380caSdrh Parse *pParse, /* Parsing context */ 1718f9b596ebSdrh ExprList *pList /* The expression list to be coded */ 1719268380caSdrh ){ 1720268380caSdrh struct ExprList_item *pItem; 1721268380caSdrh int i, n; 1722268380caSdrh Vdbe *v; 1723268380caSdrh if( pList==0 ) return 0; 17244adee20fSdanielk1977 v = sqlite3GetVdbe(pParse); 1725268380caSdrh n = pList->nExpr; 1726268380caSdrh for(pItem=pList->a, i=0; i<n; i++, pItem++){ 17274adee20fSdanielk1977 sqlite3ExprCode(pParse, pItem->pExpr); 1728268380caSdrh } 1729f9b596ebSdrh return n; 1730268380caSdrh } 1731268380caSdrh 1732268380caSdrh /* 1733cce7d176Sdrh ** Generate code for a boolean expression such that a jump is made 1734cce7d176Sdrh ** to the label "dest" if the expression is true but execution 1735cce7d176Sdrh ** continues straight thru if the expression is false. 1736f5905aa7Sdrh ** 1737f5905aa7Sdrh ** If the expression evaluates to NULL (neither true nor false), then 1738f5905aa7Sdrh ** take the jump if the jumpIfNull flag is true. 1739f2bc013cSdrh ** 1740f2bc013cSdrh ** This code depends on the fact that certain token values (ex: TK_EQ) 1741f2bc013cSdrh ** are the same as opcode values (ex: OP_Eq) that implement the corresponding 1742f2bc013cSdrh ** operation. Special comments in vdbe.c and the mkopcodeh.awk script in 1743f2bc013cSdrh ** the make process cause these values to align. Assert()s in the code 1744f2bc013cSdrh ** below verify that the numbers are aligned correctly. 1745cce7d176Sdrh */ 17464adee20fSdanielk1977 void sqlite3ExprIfTrue(Parse *pParse, Expr *pExpr, int dest, int jumpIfNull){ 1747cce7d176Sdrh Vdbe *v = pParse->pVdbe; 1748cce7d176Sdrh int op = 0; 1749daffd0e5Sdrh if( v==0 || pExpr==0 ) return; 1750f2bc013cSdrh op = pExpr->op; 1751f2bc013cSdrh switch( op ){ 1752cce7d176Sdrh case TK_AND: { 17534adee20fSdanielk1977 int d2 = sqlite3VdbeMakeLabel(v); 17544adee20fSdanielk1977 sqlite3ExprIfFalse(pParse, pExpr->pLeft, d2, !jumpIfNull); 17554adee20fSdanielk1977 sqlite3ExprIfTrue(pParse, pExpr->pRight, dest, jumpIfNull); 17564adee20fSdanielk1977 sqlite3VdbeResolveLabel(v, d2); 1757cce7d176Sdrh break; 1758cce7d176Sdrh } 1759cce7d176Sdrh case TK_OR: { 17604adee20fSdanielk1977 sqlite3ExprIfTrue(pParse, pExpr->pLeft, dest, jumpIfNull); 17614adee20fSdanielk1977 sqlite3ExprIfTrue(pParse, pExpr->pRight, dest, jumpIfNull); 1762cce7d176Sdrh break; 1763cce7d176Sdrh } 1764cce7d176Sdrh case TK_NOT: { 17654adee20fSdanielk1977 sqlite3ExprIfFalse(pParse, pExpr->pLeft, dest, jumpIfNull); 1766cce7d176Sdrh break; 1767cce7d176Sdrh } 1768cce7d176Sdrh case TK_LT: 1769cce7d176Sdrh case TK_LE: 1770cce7d176Sdrh case TK_GT: 1771cce7d176Sdrh case TK_GE: 1772cce7d176Sdrh case TK_NE: 17730ac65892Sdrh case TK_EQ: { 1774f2bc013cSdrh assert( TK_LT==OP_Lt ); 1775f2bc013cSdrh assert( TK_LE==OP_Le ); 1776f2bc013cSdrh assert( TK_GT==OP_Gt ); 1777f2bc013cSdrh assert( TK_GE==OP_Ge ); 1778f2bc013cSdrh assert( TK_EQ==OP_Eq ); 1779f2bc013cSdrh assert( TK_NE==OP_Ne ); 17804adee20fSdanielk1977 sqlite3ExprCode(pParse, pExpr->pLeft); 17814adee20fSdanielk1977 sqlite3ExprCode(pParse, pExpr->pRight); 1782be5c89acSdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, dest, jumpIfNull); 1783cce7d176Sdrh break; 1784cce7d176Sdrh } 1785cce7d176Sdrh case TK_ISNULL: 1786cce7d176Sdrh case TK_NOTNULL: { 1787f2bc013cSdrh assert( TK_ISNULL==OP_IsNull ); 1788f2bc013cSdrh assert( TK_NOTNULL==OP_NotNull ); 17894adee20fSdanielk1977 sqlite3ExprCode(pParse, pExpr->pLeft); 17904adee20fSdanielk1977 sqlite3VdbeAddOp(v, op, 1, dest); 1791cce7d176Sdrh break; 1792cce7d176Sdrh } 1793fef5208cSdrh case TK_BETWEEN: { 17940202b29eSdanielk1977 /* The expression "x BETWEEN y AND z" is implemented as: 17950202b29eSdanielk1977 ** 17960202b29eSdanielk1977 ** 1 IF (x < y) GOTO 3 17970202b29eSdanielk1977 ** 2 IF (x <= z) GOTO <dest> 17980202b29eSdanielk1977 ** 3 ... 17990202b29eSdanielk1977 */ 1800f5905aa7Sdrh int addr; 1801be5c89acSdrh Expr *pLeft = pExpr->pLeft; 1802be5c89acSdrh Expr *pRight = pExpr->pList->a[0].pExpr; 1803be5c89acSdrh sqlite3ExprCode(pParse, pLeft); 18044adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_Dup, 0, 0); 1805be5c89acSdrh sqlite3ExprCode(pParse, pRight); 1806be5c89acSdrh addr = codeCompare(pParse, pLeft, pRight, OP_Lt, 0, !jumpIfNull); 18070202b29eSdanielk1977 1808be5c89acSdrh pRight = pExpr->pList->a[1].pExpr; 1809be5c89acSdrh sqlite3ExprCode(pParse, pRight); 1810be5c89acSdrh codeCompare(pParse, pLeft, pRight, OP_Le, dest, jumpIfNull); 18110202b29eSdanielk1977 18124adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_Integer, 0, 0); 18134adee20fSdanielk1977 sqlite3VdbeChangeP2(v, addr, sqlite3VdbeCurrentAddr(v)); 18144adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_Pop, 1, 0); 1815fef5208cSdrh break; 1816fef5208cSdrh } 1817cce7d176Sdrh default: { 18184adee20fSdanielk1977 sqlite3ExprCode(pParse, pExpr); 18194adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_If, jumpIfNull, dest); 1820cce7d176Sdrh break; 1821cce7d176Sdrh } 1822cce7d176Sdrh } 1823cce7d176Sdrh } 1824cce7d176Sdrh 1825cce7d176Sdrh /* 182666b89c8fSdrh ** Generate code for a boolean expression such that a jump is made 1827cce7d176Sdrh ** to the label "dest" if the expression is false but execution 1828cce7d176Sdrh ** continues straight thru if the expression is true. 1829f5905aa7Sdrh ** 1830f5905aa7Sdrh ** If the expression evaluates to NULL (neither true nor false) then 1831f5905aa7Sdrh ** jump if jumpIfNull is true or fall through if jumpIfNull is false. 1832cce7d176Sdrh */ 18334adee20fSdanielk1977 void sqlite3ExprIfFalse(Parse *pParse, Expr *pExpr, int dest, int jumpIfNull){ 1834cce7d176Sdrh Vdbe *v = pParse->pVdbe; 1835cce7d176Sdrh int op = 0; 1836daffd0e5Sdrh if( v==0 || pExpr==0 ) return; 1837f2bc013cSdrh 1838f2bc013cSdrh /* The value of pExpr->op and op are related as follows: 1839f2bc013cSdrh ** 1840f2bc013cSdrh ** pExpr->op op 1841f2bc013cSdrh ** --------- ---------- 1842f2bc013cSdrh ** TK_ISNULL OP_NotNull 1843f2bc013cSdrh ** TK_NOTNULL OP_IsNull 1844f2bc013cSdrh ** TK_NE OP_Eq 1845f2bc013cSdrh ** TK_EQ OP_Ne 1846f2bc013cSdrh ** TK_GT OP_Le 1847f2bc013cSdrh ** TK_LE OP_Gt 1848f2bc013cSdrh ** TK_GE OP_Lt 1849f2bc013cSdrh ** TK_LT OP_Ge 1850f2bc013cSdrh ** 1851f2bc013cSdrh ** For other values of pExpr->op, op is undefined and unused. 1852f2bc013cSdrh ** The value of TK_ and OP_ constants are arranged such that we 1853f2bc013cSdrh ** can compute the mapping above using the following expression. 1854f2bc013cSdrh ** Assert()s verify that the computation is correct. 1855f2bc013cSdrh */ 1856f2bc013cSdrh op = ((pExpr->op+(TK_ISNULL&1))^1)-(TK_ISNULL&1); 1857f2bc013cSdrh 1858f2bc013cSdrh /* Verify correct alignment of TK_ and OP_ constants 1859f2bc013cSdrh */ 1860f2bc013cSdrh assert( pExpr->op!=TK_ISNULL || op==OP_NotNull ); 1861f2bc013cSdrh assert( pExpr->op!=TK_NOTNULL || op==OP_IsNull ); 1862f2bc013cSdrh assert( pExpr->op!=TK_NE || op==OP_Eq ); 1863f2bc013cSdrh assert( pExpr->op!=TK_EQ || op==OP_Ne ); 1864f2bc013cSdrh assert( pExpr->op!=TK_LT || op==OP_Ge ); 1865f2bc013cSdrh assert( pExpr->op!=TK_LE || op==OP_Gt ); 1866f2bc013cSdrh assert( pExpr->op!=TK_GT || op==OP_Le ); 1867f2bc013cSdrh assert( pExpr->op!=TK_GE || op==OP_Lt ); 1868f2bc013cSdrh 1869cce7d176Sdrh switch( pExpr->op ){ 1870cce7d176Sdrh case TK_AND: { 18714adee20fSdanielk1977 sqlite3ExprIfFalse(pParse, pExpr->pLeft, dest, jumpIfNull); 18724adee20fSdanielk1977 sqlite3ExprIfFalse(pParse, pExpr->pRight, dest, jumpIfNull); 1873cce7d176Sdrh break; 1874cce7d176Sdrh } 1875cce7d176Sdrh case TK_OR: { 18764adee20fSdanielk1977 int d2 = sqlite3VdbeMakeLabel(v); 18774adee20fSdanielk1977 sqlite3ExprIfTrue(pParse, pExpr->pLeft, d2, !jumpIfNull); 18784adee20fSdanielk1977 sqlite3ExprIfFalse(pParse, pExpr->pRight, dest, jumpIfNull); 18794adee20fSdanielk1977 sqlite3VdbeResolveLabel(v, d2); 1880cce7d176Sdrh break; 1881cce7d176Sdrh } 1882cce7d176Sdrh case TK_NOT: { 18834adee20fSdanielk1977 sqlite3ExprIfTrue(pParse, pExpr->pLeft, dest, jumpIfNull); 1884cce7d176Sdrh break; 1885cce7d176Sdrh } 1886cce7d176Sdrh case TK_LT: 1887cce7d176Sdrh case TK_LE: 1888cce7d176Sdrh case TK_GT: 1889cce7d176Sdrh case TK_GE: 1890cce7d176Sdrh case TK_NE: 1891cce7d176Sdrh case TK_EQ: { 18924adee20fSdanielk1977 sqlite3ExprCode(pParse, pExpr->pLeft); 18934adee20fSdanielk1977 sqlite3ExprCode(pParse, pExpr->pRight); 1894be5c89acSdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, dest, jumpIfNull); 1895cce7d176Sdrh break; 1896cce7d176Sdrh } 1897cce7d176Sdrh case TK_ISNULL: 1898cce7d176Sdrh case TK_NOTNULL: { 18994adee20fSdanielk1977 sqlite3ExprCode(pParse, pExpr->pLeft); 19004adee20fSdanielk1977 sqlite3VdbeAddOp(v, op, 1, dest); 1901cce7d176Sdrh break; 1902cce7d176Sdrh } 1903fef5208cSdrh case TK_BETWEEN: { 19040202b29eSdanielk1977 /* The expression is "x BETWEEN y AND z". It is implemented as: 19050202b29eSdanielk1977 ** 19060202b29eSdanielk1977 ** 1 IF (x >= y) GOTO 3 19070202b29eSdanielk1977 ** 2 GOTO <dest> 19080202b29eSdanielk1977 ** 3 IF (x > z) GOTO <dest> 19090202b29eSdanielk1977 */ 1910fef5208cSdrh int addr; 1911be5c89acSdrh Expr *pLeft = pExpr->pLeft; 1912be5c89acSdrh Expr *pRight = pExpr->pList->a[0].pExpr; 1913be5c89acSdrh sqlite3ExprCode(pParse, pLeft); 19144adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_Dup, 0, 0); 1915be5c89acSdrh sqlite3ExprCode(pParse, pRight); 19164adee20fSdanielk1977 addr = sqlite3VdbeCurrentAddr(v); 1917be5c89acSdrh codeCompare(pParse, pLeft, pRight, OP_Ge, addr+3, !jumpIfNull); 1918be5c89acSdrh 19194adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_Pop, 1, 0); 19204adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_Goto, 0, dest); 1921be5c89acSdrh pRight = pExpr->pList->a[1].pExpr; 1922be5c89acSdrh sqlite3ExprCode(pParse, pRight); 1923be5c89acSdrh codeCompare(pParse, pLeft, pRight, OP_Gt, dest, jumpIfNull); 1924fef5208cSdrh break; 1925fef5208cSdrh } 1926cce7d176Sdrh default: { 19274adee20fSdanielk1977 sqlite3ExprCode(pParse, pExpr); 19284adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_IfNot, jumpIfNull, dest); 1929cce7d176Sdrh break; 1930cce7d176Sdrh } 1931cce7d176Sdrh } 1932cce7d176Sdrh } 19332282792aSdrh 19342282792aSdrh /* 19352282792aSdrh ** Do a deep comparison of two expression trees. Return TRUE (non-zero) 19362282792aSdrh ** if they are identical and return FALSE if they differ in any way. 19372282792aSdrh */ 19384adee20fSdanielk1977 int sqlite3ExprCompare(Expr *pA, Expr *pB){ 19392282792aSdrh int i; 19402282792aSdrh if( pA==0 ){ 19412282792aSdrh return pB==0; 19422282792aSdrh }else if( pB==0 ){ 19432282792aSdrh return 0; 19442282792aSdrh } 19452282792aSdrh if( pA->op!=pB->op ) return 0; 19464adee20fSdanielk1977 if( !sqlite3ExprCompare(pA->pLeft, pB->pLeft) ) return 0; 19474adee20fSdanielk1977 if( !sqlite3ExprCompare(pA->pRight, pB->pRight) ) return 0; 19482282792aSdrh if( pA->pList ){ 19492282792aSdrh if( pB->pList==0 ) return 0; 19502282792aSdrh if( pA->pList->nExpr!=pB->pList->nExpr ) return 0; 19512282792aSdrh for(i=0; i<pA->pList->nExpr; i++){ 19524adee20fSdanielk1977 if( !sqlite3ExprCompare(pA->pList->a[i].pExpr, pB->pList->a[i].pExpr) ){ 19532282792aSdrh return 0; 19542282792aSdrh } 19552282792aSdrh } 19562282792aSdrh }else if( pB->pList ){ 19572282792aSdrh return 0; 19582282792aSdrh } 19592282792aSdrh if( pA->pSelect || pB->pSelect ) return 0; 19602f2c01e5Sdrh if( pA->iTable!=pB->iTable || pA->iColumn!=pB->iColumn ) return 0; 19612282792aSdrh if( pA->token.z ){ 19622282792aSdrh if( pB->token.z==0 ) return 0; 19636977fea8Sdrh if( pB->token.n!=pA->token.n ) return 0; 19644adee20fSdanielk1977 if( sqlite3StrNICmp(pA->token.z, pB->token.z, pB->token.n)!=0 ) return 0; 19652282792aSdrh } 19662282792aSdrh return 1; 19672282792aSdrh } 19682282792aSdrh 19692282792aSdrh /* 19702282792aSdrh ** Add a new element to the pParse->aAgg[] array and return its index. 197173b211abSdrh ** The new element is initialized to zero. The calling function is 197273b211abSdrh ** expected to fill it in. 19732282792aSdrh */ 19742282792aSdrh static int appendAggInfo(Parse *pParse){ 19752282792aSdrh if( (pParse->nAgg & 0x7)==0 ){ 19762282792aSdrh int amt = pParse->nAgg + 8; 19776d4abfbeSdrh AggExpr *aAgg = sqliteRealloc(pParse->aAgg, amt*sizeof(pParse->aAgg[0])); 19786d4abfbeSdrh if( aAgg==0 ){ 19792282792aSdrh return -1; 19802282792aSdrh } 19816d4abfbeSdrh pParse->aAgg = aAgg; 19822282792aSdrh } 19832282792aSdrh memset(&pParse->aAgg[pParse->nAgg], 0, sizeof(pParse->aAgg[0])); 19842282792aSdrh return pParse->nAgg++; 19852282792aSdrh } 19862282792aSdrh 19872282792aSdrh /* 1988626a879aSdrh ** This is an xFunc for walkExprTree() used to implement 1989626a879aSdrh ** sqlite3ExprAnalyzeAggregates(). See sqlite3ExprAnalyzeAggregates 1990626a879aSdrh ** for additional information. 19912282792aSdrh ** 1992626a879aSdrh ** This routine analyzes the aggregate function at pExpr. 19932282792aSdrh */ 1994626a879aSdrh static int analyzeAggregate(void *pArg, Expr *pExpr){ 19952282792aSdrh int i; 19962282792aSdrh AggExpr *aAgg; 1997a58fdfb1Sdanielk1977 NameContext *pNC = (NameContext *)pArg; 1998a58fdfb1Sdanielk1977 Parse *pParse = pNC->pParse; 1999a58fdfb1Sdanielk1977 SrcList *pSrcList = pNC->pSrcList; 20002282792aSdrh 20012282792aSdrh switch( pExpr->op ){ 2002967e8b73Sdrh case TK_COLUMN: { 2003a58fdfb1Sdanielk1977 for(i=0; pSrcList && i<pSrcList->nSrc; i++){ 2004a58fdfb1Sdanielk1977 if( pExpr->iTable==pSrcList->a[i].iCursor ){ 20052282792aSdrh aAgg = pParse->aAgg; 20062282792aSdrh for(i=0; i<pParse->nAgg; i++){ 20072282792aSdrh if( aAgg[i].isAgg ) continue; 20082282792aSdrh if( aAgg[i].pExpr->iTable==pExpr->iTable 2009967e8b73Sdrh && aAgg[i].pExpr->iColumn==pExpr->iColumn ){ 20102282792aSdrh break; 20112282792aSdrh } 20122282792aSdrh } 20132282792aSdrh if( i>=pParse->nAgg ){ 20142282792aSdrh i = appendAggInfo(pParse); 20152282792aSdrh if( i<0 ) return 1; 20162282792aSdrh pParse->aAgg[i].isAgg = 0; 20172282792aSdrh pParse->aAgg[i].pExpr = pExpr; 20182282792aSdrh } 2019aaf88729Sdrh pExpr->iAgg = i; 2020a58fdfb1Sdanielk1977 pExpr->iAggCtx = pNC->nDepth; 2021a58fdfb1Sdanielk1977 return 1; 2022a58fdfb1Sdanielk1977 } 2023a58fdfb1Sdanielk1977 } 2024626a879aSdrh return 1; 20252282792aSdrh } 20262282792aSdrh case TK_AGG_FUNCTION: { 2027a58fdfb1Sdanielk1977 if( pNC->nDepth==0 ){ 20282282792aSdrh aAgg = pParse->aAgg; 20292282792aSdrh for(i=0; i<pParse->nAgg; i++){ 20302282792aSdrh if( !aAgg[i].isAgg ) continue; 20314adee20fSdanielk1977 if( sqlite3ExprCompare(aAgg[i].pExpr, pExpr) ){ 20322282792aSdrh break; 20332282792aSdrh } 20342282792aSdrh } 20352282792aSdrh if( i>=pParse->nAgg ){ 2036d8123366Sdanielk1977 u8 enc = pParse->db->enc; 20372282792aSdrh i = appendAggInfo(pParse); 20382282792aSdrh if( i<0 ) return 1; 20392282792aSdrh pParse->aAgg[i].isAgg = 1; 20402282792aSdrh pParse->aAgg[i].pExpr = pExpr; 20414adee20fSdanielk1977 pParse->aAgg[i].pFunc = sqlite3FindFunction(pParse->db, 20426977fea8Sdrh pExpr->token.z, pExpr->token.n, 2043d8123366Sdanielk1977 pExpr->pList ? pExpr->pList->nExpr : 0, enc, 0); 20442282792aSdrh } 20452282792aSdrh pExpr->iAgg = i; 2046626a879aSdrh return 1; 20472282792aSdrh } 20482282792aSdrh } 2049a58fdfb1Sdanielk1977 } 2050a58fdfb1Sdanielk1977 if( pExpr->pSelect ){ 2051a58fdfb1Sdanielk1977 pNC->nDepth++; 2052a58fdfb1Sdanielk1977 walkSelectExpr(pExpr->pSelect, analyzeAggregate, pNC); 2053a58fdfb1Sdanielk1977 pNC->nDepth--; 2054a58fdfb1Sdanielk1977 } 2055626a879aSdrh return 0; 20562282792aSdrh } 2057626a879aSdrh 2058626a879aSdrh /* 2059626a879aSdrh ** Analyze the given expression looking for aggregate functions and 2060626a879aSdrh ** for variables that need to be added to the pParse->aAgg[] array. 2061626a879aSdrh ** Make additional entries to the pParse->aAgg[] array as necessary. 2062626a879aSdrh ** 2063626a879aSdrh ** This routine should only be called after the expression has been 2064626a879aSdrh ** analyzed by sqlite3ExprResolveNames(). 2065626a879aSdrh ** 2066626a879aSdrh ** If errors are seen, leave an error message in zErrMsg and return 2067626a879aSdrh ** the number of errors. 2068626a879aSdrh */ 2069a58fdfb1Sdanielk1977 int sqlite3ExprAnalyzeAggregates(NameContext *pNC, Expr *pExpr){ 2070a58fdfb1Sdanielk1977 int nErr = pNC->pParse->nErr; 2071a58fdfb1Sdanielk1977 walkExprTree(pExpr, analyzeAggregate, pNC); 2072a58fdfb1Sdanielk1977 return pNC->pParse->nErr - nErr; 20732282792aSdrh } 20748e0a2f90Sdrh 20758e0a2f90Sdrh /* 2076d02eb1fdSdanielk1977 ** Locate a user function given a name, a number of arguments and a flag 2077d02eb1fdSdanielk1977 ** indicating whether the function prefers UTF-16 over UTF-8. Return a 2078d02eb1fdSdanielk1977 ** pointer to the FuncDef structure that defines that function, or return 2079d02eb1fdSdanielk1977 ** NULL if the function does not exist. 20808e0a2f90Sdrh ** 20810bce8354Sdrh ** If the createFlag argument is true, then a new (blank) FuncDef 20828e0a2f90Sdrh ** structure is created and liked into the "db" structure if a 20838e0a2f90Sdrh ** no matching function previously existed. When createFlag is true 20848e0a2f90Sdrh ** and the nArg parameter is -1, then only a function that accepts 20858e0a2f90Sdrh ** any number of arguments will be returned. 20868e0a2f90Sdrh ** 20878e0a2f90Sdrh ** If createFlag is false and nArg is -1, then the first valid 20888e0a2f90Sdrh ** function found is returned. A function is valid if either xFunc 20898e0a2f90Sdrh ** or xStep is non-zero. 2090d02eb1fdSdanielk1977 ** 2091d02eb1fdSdanielk1977 ** If createFlag is false, then a function with the required name and 2092d02eb1fdSdanielk1977 ** number of arguments may be returned even if the eTextRep flag does not 2093d02eb1fdSdanielk1977 ** match that requested. 20948e0a2f90Sdrh */ 20954adee20fSdanielk1977 FuncDef *sqlite3FindFunction( 20969bb575fdSdrh sqlite3 *db, /* An open database */ 20978e0a2f90Sdrh const char *zName, /* Name of the function. Not null-terminated */ 20988e0a2f90Sdrh int nName, /* Number of characters in the name */ 20998e0a2f90Sdrh int nArg, /* Number of arguments. -1 means any number */ 2100d8123366Sdanielk1977 u8 enc, /* Preferred text encoding */ 21018e0a2f90Sdrh int createFlag /* Create new entry if true and does not otherwise exist */ 21028e0a2f90Sdrh ){ 2103d02eb1fdSdanielk1977 FuncDef *p; /* Iterator variable */ 2104d02eb1fdSdanielk1977 FuncDef *pFirst; /* First function with this name */ 2105d02eb1fdSdanielk1977 FuncDef *pBest = 0; /* Best match found so far */ 2106d8123366Sdanielk1977 int bestmatch = 0; 2107d02eb1fdSdanielk1977 2108d8123366Sdanielk1977 2109d8123366Sdanielk1977 assert( enc==SQLITE_UTF8 || enc==SQLITE_UTF16LE || enc==SQLITE_UTF16BE ); 2110d02eb1fdSdanielk1977 if( nArg<-1 ) nArg = -1; 2111d02eb1fdSdanielk1977 2112d02eb1fdSdanielk1977 pFirst = (FuncDef*)sqlite3HashFind(&db->aFunc, zName, nName); 2113d02eb1fdSdanielk1977 for(p=pFirst; p; p=p->pNext){ 2114d8123366Sdanielk1977 /* During the search for the best function definition, bestmatch is set 2115d8123366Sdanielk1977 ** as follows to indicate the quality of the match with the definition 2116d8123366Sdanielk1977 ** pointed to by pBest: 2117d8123366Sdanielk1977 ** 2118d8123366Sdanielk1977 ** 0: pBest is NULL. No match has been found. 2119d8123366Sdanielk1977 ** 1: A variable arguments function that prefers UTF-8 when a UTF-16 2120d8123366Sdanielk1977 ** encoding is requested, or vice versa. 2121d8123366Sdanielk1977 ** 2: A variable arguments function that uses UTF-16BE when UTF-16LE is 2122d8123366Sdanielk1977 ** requested, or vice versa. 2123d8123366Sdanielk1977 ** 3: A variable arguments function using the same text encoding. 2124d8123366Sdanielk1977 ** 4: A function with the exact number of arguments requested that 2125d8123366Sdanielk1977 ** prefers UTF-8 when a UTF-16 encoding is requested, or vice versa. 2126d8123366Sdanielk1977 ** 5: A function with the exact number of arguments requested that 2127d8123366Sdanielk1977 ** prefers UTF-16LE when UTF-16BE is requested, or vice versa. 2128d8123366Sdanielk1977 ** 6: An exact match. 2129d8123366Sdanielk1977 ** 2130d8123366Sdanielk1977 ** A larger value of 'matchqual' indicates a more desirable match. 2131d8123366Sdanielk1977 */ 2132e12c17baSdanielk1977 if( p->nArg==-1 || p->nArg==nArg || nArg==-1 ){ 2133d8123366Sdanielk1977 int match = 1; /* Quality of this match */ 2134d8123366Sdanielk1977 if( p->nArg==nArg || nArg==-1 ){ 2135d8123366Sdanielk1977 match = 4; 21368e0a2f90Sdrh } 2137d8123366Sdanielk1977 if( enc==p->iPrefEnc ){ 2138d8123366Sdanielk1977 match += 2; 21398e0a2f90Sdrh } 2140d8123366Sdanielk1977 else if( (enc==SQLITE_UTF16LE && p->iPrefEnc==SQLITE_UTF16BE) || 2141d8123366Sdanielk1977 (enc==SQLITE_UTF16BE && p->iPrefEnc==SQLITE_UTF16LE) ){ 2142d8123366Sdanielk1977 match += 1; 2143d02eb1fdSdanielk1977 } 2144d8123366Sdanielk1977 2145d8123366Sdanielk1977 if( match>bestmatch ){ 2146d02eb1fdSdanielk1977 pBest = p; 2147d8123366Sdanielk1977 bestmatch = match; 2148d02eb1fdSdanielk1977 } 2149d02eb1fdSdanielk1977 } 2150d02eb1fdSdanielk1977 } 2151d02eb1fdSdanielk1977 2152d8123366Sdanielk1977 /* If the createFlag parameter is true, and the seach did not reveal an 2153d8123366Sdanielk1977 ** exact match for the name, number of arguments and encoding, then add a 2154d8123366Sdanielk1977 ** new entry to the hash table and return it. 2155d8123366Sdanielk1977 */ 2156d8123366Sdanielk1977 if( createFlag && bestmatch<6 && 2157d02eb1fdSdanielk1977 (pBest = sqliteMalloc(sizeof(*pBest)+nName+1)) ){ 2158d02eb1fdSdanielk1977 pBest->nArg = nArg; 2159d02eb1fdSdanielk1977 pBest->pNext = pFirst; 2160d02eb1fdSdanielk1977 pBest->zName = (char*)&pBest[1]; 2161d8123366Sdanielk1977 pBest->iPrefEnc = enc; 2162d02eb1fdSdanielk1977 memcpy(pBest->zName, zName, nName); 2163d02eb1fdSdanielk1977 pBest->zName[nName] = 0; 21642c336549Sdanielk1977 if( pBest==sqlite3HashInsert(&db->aFunc,pBest->zName,nName,(void*)pBest) ){ 21652c336549Sdanielk1977 sqliteFree(pBest); 21662c336549Sdanielk1977 return 0; 21672c336549Sdanielk1977 } 2168d02eb1fdSdanielk1977 } 2169d02eb1fdSdanielk1977 2170d02eb1fdSdanielk1977 if( pBest && (pBest->xStep || pBest->xFunc || createFlag) ){ 2171d02eb1fdSdanielk1977 return pBest; 2172d02eb1fdSdanielk1977 } 21738e0a2f90Sdrh return 0; 21748e0a2f90Sdrh } 2175