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*4e0cff60Sdrh ** $Id: expr.c,v 1.168 2004/11/05 05:10:29 drh 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 /* 6553db1458Sdrh ** pExpr is the left operand of a comparison operator. aff2 is the 6653db1458Sdrh ** type affinity of the right 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 */ 1824adee20fSdanielk1977 Expr *sqlite3Expr(int op, Expr *pLeft, Expr *pRight, 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; 192a76b5dfcSdrh if( pToken ){ 1934b59ab5eSdrh assert( pToken->dyn==0 ); 194145716b3Sdrh pNew->span = pNew->token = *pToken; 195145716b3Sdrh }else if( pLeft && pRight ){ 1964adee20fSdanielk1977 sqlite3ExprSpan(pNew, &pLeft->span, &pRight->span); 197a76b5dfcSdrh } 198a76b5dfcSdrh return pNew; 199a76b5dfcSdrh } 200a76b5dfcSdrh 201a76b5dfcSdrh /* 202*4e0cff60Sdrh ** When doing a nested parse, you can include terms in an expression 203*4e0cff60Sdrh ** that look like this: #0 #1 #2 ... These terms refer to elements 204*4e0cff60Sdrh ** on the stack. "#0" (or just "#") means the top of the stack. 205*4e0cff60Sdrh ** "#1" means the next down on the stack. And so forth. 206*4e0cff60Sdrh ** 207*4e0cff60Sdrh ** This routine is called by the parser to deal with on of those terms. 208*4e0cff60Sdrh ** It immediately generates code to store the value in a memory location. 209*4e0cff60Sdrh ** The returns an expression that will code to extract the value from 210*4e0cff60Sdrh ** that memory location as needed. 211*4e0cff60Sdrh */ 212*4e0cff60Sdrh Expr *sqlite3RegisterExpr(Parse *pParse, Token *pToken){ 213*4e0cff60Sdrh Vdbe *v = pParse->pVdbe; 214*4e0cff60Sdrh Expr *p; 215*4e0cff60Sdrh int depth; 216*4e0cff60Sdrh if( v==0 ) return 0; 217*4e0cff60Sdrh if( pParse->nested==0 ){ 218*4e0cff60Sdrh sqlite3ErrorMsg(pParse, "near \"%T\": syntax error", pToken); 219*4e0cff60Sdrh return 0; 220*4e0cff60Sdrh } 221*4e0cff60Sdrh p = sqlite3Expr(TK_REGISTER, 0, 0, pToken); 222*4e0cff60Sdrh depth = atoi(&pToken->z[1]); 223*4e0cff60Sdrh p->iTable = pParse->nMem++; 224*4e0cff60Sdrh sqlite3VdbeAddOp(v, OP_Dup, depth, 0); 225*4e0cff60Sdrh sqlite3VdbeAddOp(v, OP_MemStore, p->iTable, 1); 226*4e0cff60Sdrh return p; 227*4e0cff60Sdrh } 228*4e0cff60Sdrh 229*4e0cff60Sdrh /* 23091bb0eedSdrh ** Join two expressions using an AND operator. If either expression is 23191bb0eedSdrh ** NULL, then just return the other expression. 23291bb0eedSdrh */ 23391bb0eedSdrh Expr *sqlite3ExprAnd(Expr *pLeft, Expr *pRight){ 23491bb0eedSdrh if( pLeft==0 ){ 23591bb0eedSdrh return pRight; 23691bb0eedSdrh }else if( pRight==0 ){ 23791bb0eedSdrh return pLeft; 23891bb0eedSdrh }else{ 23991bb0eedSdrh return sqlite3Expr(TK_AND, pLeft, pRight, 0); 24091bb0eedSdrh } 24191bb0eedSdrh } 24291bb0eedSdrh 24391bb0eedSdrh /* 2446977fea8Sdrh ** Set the Expr.span field of the given expression to span all 245a76b5dfcSdrh ** text between the two given tokens. 246a76b5dfcSdrh */ 2474adee20fSdanielk1977 void sqlite3ExprSpan(Expr *pExpr, Token *pLeft, Token *pRight){ 2484efc4754Sdrh assert( pRight!=0 ); 2494efc4754Sdrh assert( pLeft!=0 ); 25071c697efSdrh if( !sqlite3_malloc_failed && pRight->z && pLeft->z ){ 251ad6d9460Sdrh assert( pLeft->dyn==0 || pLeft->z[pLeft->n]==0 ); 252145716b3Sdrh if( pLeft->dyn==0 && pRight->dyn==0 ){ 2536977fea8Sdrh pExpr->span.z = pLeft->z; 2546977fea8Sdrh pExpr->span.n = pRight->n + Addr(pRight->z) - Addr(pLeft->z); 2554b59ab5eSdrh }else{ 2566977fea8Sdrh pExpr->span.z = 0; 2574b59ab5eSdrh } 258a76b5dfcSdrh } 259a76b5dfcSdrh } 260a76b5dfcSdrh 261a76b5dfcSdrh /* 262a76b5dfcSdrh ** Construct a new expression node for a function with multiple 263a76b5dfcSdrh ** arguments. 264a76b5dfcSdrh */ 2654adee20fSdanielk1977 Expr *sqlite3ExprFunction(ExprList *pList, Token *pToken){ 266a76b5dfcSdrh Expr *pNew; 267a76b5dfcSdrh pNew = sqliteMalloc( sizeof(Expr) ); 268a76b5dfcSdrh if( pNew==0 ){ 2694adee20fSdanielk1977 /* sqlite3ExprListDelete(pList); // Leak pList when malloc fails */ 270a76b5dfcSdrh return 0; 271a76b5dfcSdrh } 272a76b5dfcSdrh pNew->op = TK_FUNCTION; 273a76b5dfcSdrh pNew->pList = pList; 274a76b5dfcSdrh if( pToken ){ 2754b59ab5eSdrh assert( pToken->dyn==0 ); 276a76b5dfcSdrh pNew->token = *pToken; 277a76b5dfcSdrh }else{ 278a76b5dfcSdrh pNew->token.z = 0; 279a76b5dfcSdrh } 2806977fea8Sdrh pNew->span = pNew->token; 281a76b5dfcSdrh return pNew; 282a76b5dfcSdrh } 283a76b5dfcSdrh 284a76b5dfcSdrh /* 285fa6bc000Sdrh ** Assign a variable number to an expression that encodes a wildcard 286fa6bc000Sdrh ** in the original SQL statement. 287fa6bc000Sdrh ** 288fa6bc000Sdrh ** Wildcards consisting of a single "?" are assigned the next sequential 289fa6bc000Sdrh ** variable number. 290fa6bc000Sdrh ** 291fa6bc000Sdrh ** Wildcards of the form "?nnn" are assigned the number "nnn". We make 292fa6bc000Sdrh ** sure "nnn" is not too be to avoid a denial of service attack when 293fa6bc000Sdrh ** the SQL statement comes from an external source. 294fa6bc000Sdrh ** 295fa6bc000Sdrh ** Wildcards of the form ":aaa" or "$aaa" are assigned the same number 296fa6bc000Sdrh ** as the previous instance of the same wildcard. Or if this is the first 297fa6bc000Sdrh ** instance of the wildcard, the next sequenial variable number is 298fa6bc000Sdrh ** assigned. 299fa6bc000Sdrh */ 300fa6bc000Sdrh void sqlite3ExprAssignVarNumber(Parse *pParse, Expr *pExpr){ 301fa6bc000Sdrh Token *pToken; 302fa6bc000Sdrh if( pExpr==0 ) return; 303fa6bc000Sdrh pToken = &pExpr->token; 304fa6bc000Sdrh assert( pToken->n>=1 ); 305fa6bc000Sdrh assert( pToken->z!=0 ); 306fa6bc000Sdrh assert( pToken->z[0]!=0 ); 307fa6bc000Sdrh if( pToken->n==1 ){ 308fa6bc000Sdrh /* Wildcard of the form "?". Assign the next variable number */ 309fa6bc000Sdrh pExpr->iTable = ++pParse->nVar; 310fa6bc000Sdrh }else if( pToken->z[0]=='?' ){ 311fa6bc000Sdrh /* Wildcard of the form "?nnn". Convert "nnn" to an integer and 312fa6bc000Sdrh ** use it as the variable number */ 313fa6bc000Sdrh int i; 314fa6bc000Sdrh pExpr->iTable = i = atoi(&pToken->z[1]); 315fa6bc000Sdrh if( i<1 || i>SQLITE_MAX_VARIABLE_NUMBER ){ 316fa6bc000Sdrh sqlite3ErrorMsg(pParse, "variable number must be between ?1 and ?%d", 317fa6bc000Sdrh SQLITE_MAX_VARIABLE_NUMBER); 318fa6bc000Sdrh } 319fa6bc000Sdrh if( i>pParse->nVar ){ 320fa6bc000Sdrh pParse->nVar = i; 321fa6bc000Sdrh } 322fa6bc000Sdrh }else{ 323fa6bc000Sdrh /* Wildcards of the form ":aaa" or "$aaa". Reuse the same variable 324fa6bc000Sdrh ** number as the prior appearance of the same name, or if the name 325fa6bc000Sdrh ** has never appeared before, reuse the same variable number 326fa6bc000Sdrh */ 327fa6bc000Sdrh int i, n; 328fa6bc000Sdrh n = pToken->n; 329fa6bc000Sdrh for(i=0; i<pParse->nVarExpr; i++){ 330fa6bc000Sdrh Expr *pE; 331fa6bc000Sdrh if( (pE = pParse->apVarExpr[i])!=0 332fa6bc000Sdrh && pE->token.n==n 333fa6bc000Sdrh && memcmp(pE->token.z, pToken->z, n)==0 ){ 334fa6bc000Sdrh pExpr->iTable = pE->iTable; 335fa6bc000Sdrh break; 336fa6bc000Sdrh } 337fa6bc000Sdrh } 338fa6bc000Sdrh if( i>=pParse->nVarExpr ){ 339fa6bc000Sdrh pExpr->iTable = ++pParse->nVar; 340fa6bc000Sdrh if( pParse->nVarExpr>=pParse->nVarExprAlloc-1 ){ 341fa6bc000Sdrh pParse->nVarExprAlloc += pParse->nVarExprAlloc + 10; 342fa6bc000Sdrh pParse->apVarExpr = sqliteRealloc(pParse->apVarExpr, 343fa6bc000Sdrh pParse->nVarExprAlloc*sizeof(pParse->apVarExpr[0]) ); 344fa6bc000Sdrh } 345fa6bc000Sdrh if( !sqlite3_malloc_failed ){ 346fa6bc000Sdrh assert( pParse->apVarExpr!=0 ); 347fa6bc000Sdrh pParse->apVarExpr[pParse->nVarExpr++] = pExpr; 348fa6bc000Sdrh } 349fa6bc000Sdrh } 350fa6bc000Sdrh } 351fa6bc000Sdrh } 352fa6bc000Sdrh 353fa6bc000Sdrh /* 354a2e00042Sdrh ** Recursively delete an expression tree. 355a2e00042Sdrh */ 3564adee20fSdanielk1977 void sqlite3ExprDelete(Expr *p){ 357a2e00042Sdrh if( p==0 ) return; 3584efc4754Sdrh if( p->span.dyn ) sqliteFree((char*)p->span.z); 3594efc4754Sdrh if( p->token.dyn ) sqliteFree((char*)p->token.z); 3604adee20fSdanielk1977 sqlite3ExprDelete(p->pLeft); 3614adee20fSdanielk1977 sqlite3ExprDelete(p->pRight); 3624adee20fSdanielk1977 sqlite3ExprListDelete(p->pList); 3634adee20fSdanielk1977 sqlite3SelectDelete(p->pSelect); 364a2e00042Sdrh sqliteFree(p); 365a2e00042Sdrh } 366a2e00042Sdrh 367a76b5dfcSdrh 368a76b5dfcSdrh /* 369ff78bd2fSdrh ** The following group of routines make deep copies of expressions, 370ff78bd2fSdrh ** expression lists, ID lists, and select statements. The copies can 371ff78bd2fSdrh ** be deleted (by being passed to their respective ...Delete() routines) 372ff78bd2fSdrh ** without effecting the originals. 373ff78bd2fSdrh ** 3744adee20fSdanielk1977 ** The expression list, ID, and source lists return by sqlite3ExprListDup(), 3754adee20fSdanielk1977 ** sqlite3IdListDup(), and sqlite3SrcListDup() can not be further expanded 376ad3cab52Sdrh ** by subsequent calls to sqlite*ListAppend() routines. 377ff78bd2fSdrh ** 378ad3cab52Sdrh ** Any tables that the SrcList might point to are not duplicated. 379ff78bd2fSdrh */ 3804adee20fSdanielk1977 Expr *sqlite3ExprDup(Expr *p){ 381ff78bd2fSdrh Expr *pNew; 382ff78bd2fSdrh if( p==0 ) return 0; 383fcb78a49Sdrh pNew = sqliteMallocRaw( sizeof(*p) ); 384ff78bd2fSdrh if( pNew==0 ) return 0; 3853b167c75Sdrh memcpy(pNew, p, sizeof(*pNew)); 3866977fea8Sdrh if( p->token.z!=0 ){ 3874b59ab5eSdrh pNew->token.z = sqliteStrDup(p->token.z); 3884b59ab5eSdrh pNew->token.dyn = 1; 3894b59ab5eSdrh }else{ 3904efc4754Sdrh assert( pNew->token.z==0 ); 3914b59ab5eSdrh } 3926977fea8Sdrh pNew->span.z = 0; 3934adee20fSdanielk1977 pNew->pLeft = sqlite3ExprDup(p->pLeft); 3944adee20fSdanielk1977 pNew->pRight = sqlite3ExprDup(p->pRight); 3954adee20fSdanielk1977 pNew->pList = sqlite3ExprListDup(p->pList); 3964adee20fSdanielk1977 pNew->pSelect = sqlite3SelectDup(p->pSelect); 397ff78bd2fSdrh return pNew; 398ff78bd2fSdrh } 3994adee20fSdanielk1977 void sqlite3TokenCopy(Token *pTo, Token *pFrom){ 4004b59ab5eSdrh if( pTo->dyn ) sqliteFree((char*)pTo->z); 4014b59ab5eSdrh if( pFrom->z ){ 4024b59ab5eSdrh pTo->n = pFrom->n; 4034b59ab5eSdrh pTo->z = sqliteStrNDup(pFrom->z, pFrom->n); 4044b59ab5eSdrh pTo->dyn = 1; 4054b59ab5eSdrh }else{ 4064b59ab5eSdrh pTo->z = 0; 4074b59ab5eSdrh } 4084b59ab5eSdrh } 4094adee20fSdanielk1977 ExprList *sqlite3ExprListDup(ExprList *p){ 410ff78bd2fSdrh ExprList *pNew; 411145716b3Sdrh struct ExprList_item *pItem, *pOldItem; 412ff78bd2fSdrh int i; 413ff78bd2fSdrh if( p==0 ) return 0; 414ff78bd2fSdrh pNew = sqliteMalloc( sizeof(*pNew) ); 415ff78bd2fSdrh if( pNew==0 ) return 0; 4164305d103Sdrh pNew->nExpr = pNew->nAlloc = p->nExpr; 4173e7bc9caSdrh pNew->a = pItem = sqliteMalloc( p->nExpr*sizeof(p->a[0]) ); 418e0048400Sdanielk1977 if( pItem==0 ){ 419e0048400Sdanielk1977 sqliteFree(pNew); 420e0048400Sdanielk1977 return 0; 421e0048400Sdanielk1977 } 422145716b3Sdrh pOldItem = p->a; 423145716b3Sdrh for(i=0; i<p->nExpr; i++, pItem++, pOldItem++){ 4244b59ab5eSdrh Expr *pNewExpr, *pOldExpr; 425145716b3Sdrh pItem->pExpr = pNewExpr = sqlite3ExprDup(pOldExpr = pOldItem->pExpr); 4266977fea8Sdrh if( pOldExpr->span.z!=0 && pNewExpr ){ 4276977fea8Sdrh /* Always make a copy of the span for top-level expressions in the 4284b59ab5eSdrh ** expression list. The logic in SELECT processing that determines 4294b59ab5eSdrh ** the names of columns in the result set needs this information */ 4304adee20fSdanielk1977 sqlite3TokenCopy(&pNewExpr->span, &pOldExpr->span); 4314b59ab5eSdrh } 4321f3e905cSdrh assert( pNewExpr==0 || pNewExpr->span.z!=0 43324b03fd0Sdanielk1977 || pOldExpr->span.z==0 || sqlite3_malloc_failed ); 434145716b3Sdrh pItem->zName = sqliteStrDup(pOldItem->zName); 435145716b3Sdrh pItem->sortOrder = pOldItem->sortOrder; 436145716b3Sdrh pItem->isAgg = pOldItem->isAgg; 4373e7bc9caSdrh pItem->done = 0; 438ff78bd2fSdrh } 439ff78bd2fSdrh return pNew; 440ff78bd2fSdrh } 4414adee20fSdanielk1977 SrcList *sqlite3SrcListDup(SrcList *p){ 442ad3cab52Sdrh SrcList *pNew; 443ad3cab52Sdrh int i; 444113088ecSdrh int nByte; 445ad3cab52Sdrh if( p==0 ) return 0; 446113088ecSdrh nByte = sizeof(*p) + (p->nSrc>0 ? sizeof(p->a[0]) * (p->nSrc-1) : 0); 4474efc4754Sdrh pNew = sqliteMallocRaw( nByte ); 448ad3cab52Sdrh if( pNew==0 ) return 0; 4494305d103Sdrh pNew->nSrc = pNew->nAlloc = p->nSrc; 450ad3cab52Sdrh for(i=0; i<p->nSrc; i++){ 4514efc4754Sdrh struct SrcList_item *pNewItem = &pNew->a[i]; 4524efc4754Sdrh struct SrcList_item *pOldItem = &p->a[i]; 4534efc4754Sdrh pNewItem->zDatabase = sqliteStrDup(pOldItem->zDatabase); 4544efc4754Sdrh pNewItem->zName = sqliteStrDup(pOldItem->zName); 4554efc4754Sdrh pNewItem->zAlias = sqliteStrDup(pOldItem->zAlias); 4564efc4754Sdrh pNewItem->jointype = pOldItem->jointype; 4574efc4754Sdrh pNewItem->iCursor = pOldItem->iCursor; 4584efc4754Sdrh pNewItem->pTab = 0; 4594adee20fSdanielk1977 pNewItem->pSelect = sqlite3SelectDup(pOldItem->pSelect); 4604adee20fSdanielk1977 pNewItem->pOn = sqlite3ExprDup(pOldItem->pOn); 4614adee20fSdanielk1977 pNewItem->pUsing = sqlite3IdListDup(pOldItem->pUsing); 462ad3cab52Sdrh } 463ad3cab52Sdrh return pNew; 464ad3cab52Sdrh } 4654adee20fSdanielk1977 IdList *sqlite3IdListDup(IdList *p){ 466ff78bd2fSdrh IdList *pNew; 467ff78bd2fSdrh int i; 468ff78bd2fSdrh if( p==0 ) return 0; 4694efc4754Sdrh pNew = sqliteMallocRaw( sizeof(*pNew) ); 470ff78bd2fSdrh if( pNew==0 ) return 0; 4714305d103Sdrh pNew->nId = pNew->nAlloc = p->nId; 4724efc4754Sdrh pNew->a = sqliteMallocRaw( p->nId*sizeof(p->a[0]) ); 473e4697f5eSdrh if( pNew->a==0 ) return 0; 474ff78bd2fSdrh for(i=0; i<p->nId; i++){ 4754efc4754Sdrh struct IdList_item *pNewItem = &pNew->a[i]; 4764efc4754Sdrh struct IdList_item *pOldItem = &p->a[i]; 4774efc4754Sdrh pNewItem->zName = sqliteStrDup(pOldItem->zName); 4784efc4754Sdrh pNewItem->idx = pOldItem->idx; 479ff78bd2fSdrh } 480ff78bd2fSdrh return pNew; 481ff78bd2fSdrh } 4824adee20fSdanielk1977 Select *sqlite3SelectDup(Select *p){ 483ff78bd2fSdrh Select *pNew; 484ff78bd2fSdrh if( p==0 ) return 0; 4854efc4754Sdrh pNew = sqliteMallocRaw( sizeof(*p) ); 486ff78bd2fSdrh if( pNew==0 ) return 0; 487ff78bd2fSdrh pNew->isDistinct = p->isDistinct; 4884adee20fSdanielk1977 pNew->pEList = sqlite3ExprListDup(p->pEList); 4894adee20fSdanielk1977 pNew->pSrc = sqlite3SrcListDup(p->pSrc); 4904adee20fSdanielk1977 pNew->pWhere = sqlite3ExprDup(p->pWhere); 4914adee20fSdanielk1977 pNew->pGroupBy = sqlite3ExprListDup(p->pGroupBy); 4924adee20fSdanielk1977 pNew->pHaving = sqlite3ExprDup(p->pHaving); 4934adee20fSdanielk1977 pNew->pOrderBy = sqlite3ExprListDup(p->pOrderBy); 494ff78bd2fSdrh pNew->op = p->op; 4954adee20fSdanielk1977 pNew->pPrior = sqlite3SelectDup(p->pPrior); 496ff78bd2fSdrh pNew->nLimit = p->nLimit; 497ff78bd2fSdrh pNew->nOffset = p->nOffset; 498ff78bd2fSdrh pNew->zSelect = 0; 4997b58daeaSdrh pNew->iLimit = -1; 5007b58daeaSdrh pNew->iOffset = -1; 501dc1bdc4fSdanielk1977 pNew->ppOpenTemp = 0; 502ff78bd2fSdrh return pNew; 503ff78bd2fSdrh } 504ff78bd2fSdrh 505ff78bd2fSdrh 506ff78bd2fSdrh /* 507a76b5dfcSdrh ** Add a new element to the end of an expression list. If pList is 508a76b5dfcSdrh ** initially NULL, then create a new expression list. 509a76b5dfcSdrh */ 5104adee20fSdanielk1977 ExprList *sqlite3ExprListAppend(ExprList *pList, Expr *pExpr, Token *pName){ 511a76b5dfcSdrh if( pList==0 ){ 512a76b5dfcSdrh pList = sqliteMalloc( sizeof(ExprList) ); 513a76b5dfcSdrh if( pList==0 ){ 5144adee20fSdanielk1977 /* sqlite3ExprDelete(pExpr); // Leak memory if malloc fails */ 515a76b5dfcSdrh return 0; 516a76b5dfcSdrh } 5174efc4754Sdrh assert( pList->nAlloc==0 ); 518a76b5dfcSdrh } 5194305d103Sdrh if( pList->nAlloc<=pList->nExpr ){ 5204305d103Sdrh pList->nAlloc = pList->nAlloc*2 + 4; 5214efc4754Sdrh pList->a = sqliteRealloc(pList->a, pList->nAlloc*sizeof(pList->a[0])); 5224efc4754Sdrh if( pList->a==0 ){ 5234adee20fSdanielk1977 /* sqlite3ExprDelete(pExpr); // Leak memory if malloc fails */ 5244efc4754Sdrh pList->nExpr = pList->nAlloc = 0; 525a76b5dfcSdrh return pList; 526a76b5dfcSdrh } 527a76b5dfcSdrh } 5284efc4754Sdrh assert( pList->a!=0 ); 5294efc4754Sdrh if( pExpr || pName ){ 5304efc4754Sdrh struct ExprList_item *pItem = &pList->a[pList->nExpr++]; 5314efc4754Sdrh memset(pItem, 0, sizeof(*pItem)); 5324efc4754Sdrh pItem->pExpr = pExpr; 533a99db3b6Sdrh pItem->zName = sqlite3NameFromToken(pName); 534a76b5dfcSdrh } 535a76b5dfcSdrh return pList; 536a76b5dfcSdrh } 537a76b5dfcSdrh 538a76b5dfcSdrh /* 539a76b5dfcSdrh ** Delete an entire expression list. 540a76b5dfcSdrh */ 5414adee20fSdanielk1977 void sqlite3ExprListDelete(ExprList *pList){ 542a76b5dfcSdrh int i; 543be5c89acSdrh struct ExprList_item *pItem; 544a76b5dfcSdrh if( pList==0 ) return; 5451bdd9b57Sdrh assert( pList->a!=0 || (pList->nExpr==0 && pList->nAlloc==0) ); 5461bdd9b57Sdrh assert( pList->nExpr<=pList->nAlloc ); 547be5c89acSdrh for(pItem=pList->a, i=0; i<pList->nExpr; i++, pItem++){ 548be5c89acSdrh sqlite3ExprDelete(pItem->pExpr); 549be5c89acSdrh sqliteFree(pItem->zName); 550a76b5dfcSdrh } 551a76b5dfcSdrh sqliteFree(pList->a); 552a76b5dfcSdrh sqliteFree(pList); 553a76b5dfcSdrh } 554a76b5dfcSdrh 555a76b5dfcSdrh /* 556fef5208cSdrh ** Walk an expression tree. Return 1 if the expression is constant 557fef5208cSdrh ** and 0 if it involves variables. 5582398937bSdrh ** 5592398937bSdrh ** For the purposes of this function, a double-quoted string (ex: "abc") 5602398937bSdrh ** is considered a variable but a single-quoted string (ex: 'abc') is 5612398937bSdrh ** a constant. 562fef5208cSdrh */ 5634adee20fSdanielk1977 int sqlite3ExprIsConstant(Expr *p){ 564fef5208cSdrh switch( p->op ){ 565fef5208cSdrh case TK_ID: 566967e8b73Sdrh case TK_COLUMN: 567fef5208cSdrh case TK_DOT: 5687bdc0c1dSdrh case TK_FUNCTION: 569fef5208cSdrh return 0; 5707bdc0c1dSdrh case TK_NULL: 5712398937bSdrh case TK_STRING: 572c572ef7fSdanielk1977 case TK_BLOB: 5739208643dSdrh case TK_INTEGER: 5749208643dSdrh case TK_FLOAT: 57550457896Sdrh case TK_VARIABLE: 5769208643dSdrh return 1; 577fef5208cSdrh default: { 5784adee20fSdanielk1977 if( p->pLeft && !sqlite3ExprIsConstant(p->pLeft) ) return 0; 5794adee20fSdanielk1977 if( p->pRight && !sqlite3ExprIsConstant(p->pRight) ) return 0; 580fef5208cSdrh if( p->pList ){ 581fef5208cSdrh int i; 582fef5208cSdrh for(i=0; i<p->pList->nExpr; i++){ 5834adee20fSdanielk1977 if( !sqlite3ExprIsConstant(p->pList->a[i].pExpr) ) return 0; 584fef5208cSdrh } 585fef5208cSdrh } 5869208643dSdrh return p->pLeft!=0 || p->pRight!=0 || (p->pList && p->pList->nExpr>0); 587fef5208cSdrh } 588fef5208cSdrh } 5899208643dSdrh return 0; 590fef5208cSdrh } 591fef5208cSdrh 592fef5208cSdrh /* 593202b2df7Sdrh ** If the given expression codes a constant integer that is small enough 594202b2df7Sdrh ** to fit in a 32-bit integer, return 1 and put the value of the integer 595202b2df7Sdrh ** in *pValue. If the expression is not an integer or if it is too big 596202b2df7Sdrh ** to fit in a signed 32-bit integer, return 0 and leave *pValue unchanged. 597e4de1febSdrh */ 5984adee20fSdanielk1977 int sqlite3ExprIsInteger(Expr *p, int *pValue){ 599e4de1febSdrh switch( p->op ){ 600e4de1febSdrh case TK_INTEGER: { 601fec19aadSdrh if( sqlite3GetInt32(p->token.z, pValue) ){ 602e4de1febSdrh return 1; 603e4de1febSdrh } 604202b2df7Sdrh break; 605202b2df7Sdrh } 606e4de1febSdrh case TK_STRING: { 6074c755c0fSdrh const u8 *z = (u8*)p->token.z; 608e4de1febSdrh int n = p->token.n; 609bd790ee3Sdrh if( n>0 && z[0]=='-' ){ z++; n--; } 610e4de1febSdrh while( n>0 && *z && isdigit(*z) ){ z++; n--; } 611fec19aadSdrh if( n==0 && sqlite3GetInt32(p->token.z, pValue) ){ 612e4de1febSdrh return 1; 613e4de1febSdrh } 614e4de1febSdrh break; 615e4de1febSdrh } 6164b59ab5eSdrh case TK_UPLUS: { 6174adee20fSdanielk1977 return sqlite3ExprIsInteger(p->pLeft, pValue); 6184b59ab5eSdrh } 619e4de1febSdrh case TK_UMINUS: { 620e4de1febSdrh int v; 6214adee20fSdanielk1977 if( sqlite3ExprIsInteger(p->pLeft, &v) ){ 622e4de1febSdrh *pValue = -v; 623e4de1febSdrh return 1; 624e4de1febSdrh } 625e4de1febSdrh break; 626e4de1febSdrh } 627e4de1febSdrh default: break; 628e4de1febSdrh } 629e4de1febSdrh return 0; 630e4de1febSdrh } 631e4de1febSdrh 632e4de1febSdrh /* 633c4a3c779Sdrh ** Return TRUE if the given string is a row-id column name. 634c4a3c779Sdrh */ 6354adee20fSdanielk1977 int sqlite3IsRowid(const char *z){ 6364adee20fSdanielk1977 if( sqlite3StrICmp(z, "_ROWID_")==0 ) return 1; 6374adee20fSdanielk1977 if( sqlite3StrICmp(z, "ROWID")==0 ) return 1; 6384adee20fSdanielk1977 if( sqlite3StrICmp(z, "OID")==0 ) return 1; 639c4a3c779Sdrh return 0; 640c4a3c779Sdrh } 641c4a3c779Sdrh 642c4a3c779Sdrh /* 6438141f61eSdrh ** Given the name of a column of the form X.Y.Z or Y.Z or just Z, look up 6448141f61eSdrh ** that name in the set of source tables in pSrcList and make the pExpr 6458141f61eSdrh ** expression node refer back to that source column. The following changes 6468141f61eSdrh ** are made to pExpr: 6478141f61eSdrh ** 6488141f61eSdrh ** pExpr->iDb Set the index in db->aDb[] of the database holding 6498141f61eSdrh ** the table. 6508141f61eSdrh ** pExpr->iTable Set to the cursor number for the table obtained 6518141f61eSdrh ** from pSrcList. 6528141f61eSdrh ** pExpr->iColumn Set to the column number within the table. 6538141f61eSdrh ** pExpr->op Set to TK_COLUMN. 6548141f61eSdrh ** pExpr->pLeft Any expression this points to is deleted 6558141f61eSdrh ** pExpr->pRight Any expression this points to is deleted. 6568141f61eSdrh ** 6578141f61eSdrh ** The pDbToken is the name of the database (the "X"). This value may be 6588141f61eSdrh ** NULL meaning that name is of the form Y.Z or Z. Any available database 6598141f61eSdrh ** can be used. The pTableToken is the name of the table (the "Y"). This 6608141f61eSdrh ** value can be NULL if pDbToken is also NULL. If pTableToken is NULL it 6618141f61eSdrh ** means that the form of the name is Z and that columns from any table 6628141f61eSdrh ** can be used. 6638141f61eSdrh ** 6648141f61eSdrh ** If the name cannot be resolved unambiguously, leave an error message 6658141f61eSdrh ** in pParse and return non-zero. Return zero on success. 6668141f61eSdrh */ 6678141f61eSdrh static int lookupName( 6688141f61eSdrh Parse *pParse, /* The parsing context */ 6698141f61eSdrh Token *pDbToken, /* Name of the database containing table, or NULL */ 6708141f61eSdrh Token *pTableToken, /* Name of table containing column, or NULL */ 6718141f61eSdrh Token *pColumnToken, /* Name of the column. */ 6728141f61eSdrh SrcList *pSrcList, /* List of tables used to resolve column names */ 6738141f61eSdrh ExprList *pEList, /* List of expressions used to resolve "AS" */ 6748141f61eSdrh Expr *pExpr /* Make this EXPR node point to the selected column */ 6758141f61eSdrh ){ 6768141f61eSdrh char *zDb = 0; /* Name of the database. The "X" in X.Y.Z */ 6778141f61eSdrh char *zTab = 0; /* Name of the table. The "Y" in X.Y.Z or Y.Z */ 6788141f61eSdrh char *zCol = 0; /* Name of the column. The "Z" */ 6798141f61eSdrh int i, j; /* Loop counters */ 6808141f61eSdrh int cnt = 0; /* Number of matching column names */ 6818141f61eSdrh int cntTab = 0; /* Number of matching table names */ 6829bb575fdSdrh sqlite3 *db = pParse->db; /* The database */ 6838141f61eSdrh 6848141f61eSdrh assert( pColumnToken && pColumnToken->z ); /* The Z in X.Y.Z cannot be NULL */ 685a99db3b6Sdrh zDb = sqlite3NameFromToken(pDbToken); 686a99db3b6Sdrh zTab = sqlite3NameFromToken(pTableToken); 687a99db3b6Sdrh zCol = sqlite3NameFromToken(pColumnToken); 68824b03fd0Sdanielk1977 if( sqlite3_malloc_failed ){ 6898141f61eSdrh return 1; /* Leak memory (zDb and zTab) if malloc fails */ 6908141f61eSdrh } 6918141f61eSdrh assert( zTab==0 || pEList==0 ); 6928141f61eSdrh 6938141f61eSdrh pExpr->iTable = -1; 6948141f61eSdrh for(i=0; i<pSrcList->nSrc; i++){ 6958141f61eSdrh struct SrcList_item *pItem = &pSrcList->a[i]; 6968141f61eSdrh Table *pTab = pItem->pTab; 6978141f61eSdrh Column *pCol; 6988141f61eSdrh 6998141f61eSdrh if( pTab==0 ) continue; 7008141f61eSdrh assert( pTab->nCol>0 ); 7018141f61eSdrh if( zTab ){ 7028141f61eSdrh if( pItem->zAlias ){ 7038141f61eSdrh char *zTabName = pItem->zAlias; 7044adee20fSdanielk1977 if( sqlite3StrICmp(zTabName, zTab)!=0 ) continue; 7058141f61eSdrh }else{ 7068141f61eSdrh char *zTabName = pTab->zName; 7074adee20fSdanielk1977 if( zTabName==0 || sqlite3StrICmp(zTabName, zTab)!=0 ) continue; 7084adee20fSdanielk1977 if( zDb!=0 && sqlite3StrICmp(db->aDb[pTab->iDb].zName, zDb)!=0 ){ 7098141f61eSdrh continue; 7108141f61eSdrh } 7118141f61eSdrh } 7128141f61eSdrh } 7138141f61eSdrh if( 0==(cntTab++) ){ 7148141f61eSdrh pExpr->iTable = pItem->iCursor; 7158141f61eSdrh pExpr->iDb = pTab->iDb; 7168141f61eSdrh } 7178141f61eSdrh for(j=0, pCol=pTab->aCol; j<pTab->nCol; j++, pCol++){ 7184adee20fSdanielk1977 if( sqlite3StrICmp(pCol->zName, zCol)==0 ){ 7198141f61eSdrh cnt++; 7208141f61eSdrh pExpr->iTable = pItem->iCursor; 7218141f61eSdrh pExpr->iDb = pTab->iDb; 7228141f61eSdrh /* Substitute the rowid (column -1) for the INTEGER PRIMARY KEY */ 7238141f61eSdrh pExpr->iColumn = j==pTab->iPKey ? -1 : j; 724a37cdde0Sdanielk1977 pExpr->affinity = pTab->aCol[j].affinity; 7250202b29eSdanielk1977 pExpr->pColl = pTab->aCol[j].pColl; 7268141f61eSdrh break; 7278141f61eSdrh } 7288141f61eSdrh } 7298141f61eSdrh } 7308141f61eSdrh 731b7f9164eSdrh #ifndef SQLITE_OMIT_TRIGGER 7328141f61eSdrh /* If we have not already resolved the name, then maybe 7338141f61eSdrh ** it is a new.* or old.* trigger argument reference 7348141f61eSdrh */ 7358141f61eSdrh if( zDb==0 && zTab!=0 && cnt==0 && pParse->trigStack!=0 ){ 7368141f61eSdrh TriggerStack *pTriggerStack = pParse->trigStack; 7378141f61eSdrh Table *pTab = 0; 7384adee20fSdanielk1977 if( pTriggerStack->newIdx != -1 && sqlite3StrICmp("new", zTab) == 0 ){ 7398141f61eSdrh pExpr->iTable = pTriggerStack->newIdx; 7408141f61eSdrh assert( pTriggerStack->pTab ); 7418141f61eSdrh pTab = pTriggerStack->pTab; 7424adee20fSdanielk1977 }else if( pTriggerStack->oldIdx != -1 && sqlite3StrICmp("old", zTab) == 0 ){ 7438141f61eSdrh pExpr->iTable = pTriggerStack->oldIdx; 7448141f61eSdrh assert( pTriggerStack->pTab ); 7458141f61eSdrh pTab = pTriggerStack->pTab; 7468141f61eSdrh } 7478141f61eSdrh 7488141f61eSdrh if( pTab ){ 7498141f61eSdrh int j; 7508141f61eSdrh Column *pCol = pTab->aCol; 7518141f61eSdrh 7528141f61eSdrh pExpr->iDb = pTab->iDb; 7538141f61eSdrh cntTab++; 7548141f61eSdrh for(j=0; j < pTab->nCol; j++, pCol++) { 7554adee20fSdanielk1977 if( sqlite3StrICmp(pCol->zName, zCol)==0 ){ 7568141f61eSdrh cnt++; 7578141f61eSdrh pExpr->iColumn = j==pTab->iPKey ? -1 : j; 758a37cdde0Sdanielk1977 pExpr->affinity = pTab->aCol[j].affinity; 7590202b29eSdanielk1977 pExpr->pColl = pTab->aCol[j].pColl; 7608141f61eSdrh break; 7618141f61eSdrh } 7628141f61eSdrh } 7638141f61eSdrh } 7648141f61eSdrh } 765b7f9164eSdrh #endif /* !defined(SQLITE_OMIT_TRIGGER) */ 7668141f61eSdrh 7678141f61eSdrh /* 7688141f61eSdrh ** Perhaps the name is a reference to the ROWID 7698141f61eSdrh */ 7704adee20fSdanielk1977 if( cnt==0 && cntTab==1 && sqlite3IsRowid(zCol) ){ 7718141f61eSdrh cnt = 1; 7728141f61eSdrh pExpr->iColumn = -1; 773a37cdde0Sdanielk1977 pExpr->affinity = SQLITE_AFF_INTEGER; 7748141f61eSdrh } 7758141f61eSdrh 7768141f61eSdrh /* 7778141f61eSdrh ** If the input is of the form Z (not Y.Z or X.Y.Z) then the name Z 7788141f61eSdrh ** might refer to an result-set alias. This happens, for example, when 7798141f61eSdrh ** we are resolving names in the WHERE clause of the following command: 7808141f61eSdrh ** 7818141f61eSdrh ** SELECT a+b AS x FROM table WHERE x<10; 7828141f61eSdrh ** 7838141f61eSdrh ** In cases like this, replace pExpr with a copy of the expression that 7848141f61eSdrh ** forms the result set entry ("a+b" in the example) and return immediately. 7858141f61eSdrh ** Note that the expression in the result set should have already been 7868141f61eSdrh ** resolved by the time the WHERE clause is resolved. 7878141f61eSdrh */ 7888141f61eSdrh if( cnt==0 && pEList!=0 ){ 7898141f61eSdrh for(j=0; j<pEList->nExpr; j++){ 7908141f61eSdrh char *zAs = pEList->a[j].zName; 7914adee20fSdanielk1977 if( zAs!=0 && sqlite3StrICmp(zAs, zCol)==0 ){ 7928141f61eSdrh assert( pExpr->pLeft==0 && pExpr->pRight==0 ); 7938141f61eSdrh pExpr->op = TK_AS; 7948141f61eSdrh pExpr->iColumn = j; 7954adee20fSdanielk1977 pExpr->pLeft = sqlite3ExprDup(pEList->a[j].pExpr); 7968141f61eSdrh sqliteFree(zCol); 7978141f61eSdrh assert( zTab==0 && zDb==0 ); 7988141f61eSdrh return 0; 7998141f61eSdrh } 8008141f61eSdrh } 8018141f61eSdrh } 8028141f61eSdrh 8038141f61eSdrh /* 8048141f61eSdrh ** If X and Y are NULL (in other words if only the column name Z is 8058141f61eSdrh ** supplied) and the value of Z is enclosed in double-quotes, then 8068141f61eSdrh ** Z is a string literal if it doesn't match any column names. In that 8078141f61eSdrh ** case, we need to return right away and not make any changes to 8088141f61eSdrh ** pExpr. 8098141f61eSdrh */ 8108141f61eSdrh if( cnt==0 && zTab==0 && pColumnToken->z[0]=='"' ){ 8118141f61eSdrh sqliteFree(zCol); 8128141f61eSdrh return 0; 8138141f61eSdrh } 8148141f61eSdrh 8158141f61eSdrh /* 8168141f61eSdrh ** cnt==0 means there was not match. cnt>1 means there were two or 8178141f61eSdrh ** more matches. Either way, we have an error. 8188141f61eSdrh */ 8198141f61eSdrh if( cnt!=1 ){ 8208141f61eSdrh char *z = 0; 8218141f61eSdrh char *zErr; 8228141f61eSdrh zErr = cnt==0 ? "no such column: %s" : "ambiguous column name: %s"; 8238141f61eSdrh if( zDb ){ 8244adee20fSdanielk1977 sqlite3SetString(&z, zDb, ".", zTab, ".", zCol, 0); 8258141f61eSdrh }else if( zTab ){ 8264adee20fSdanielk1977 sqlite3SetString(&z, zTab, ".", zCol, 0); 8278141f61eSdrh }else{ 8288141f61eSdrh z = sqliteStrDup(zCol); 8298141f61eSdrh } 8304adee20fSdanielk1977 sqlite3ErrorMsg(pParse, zErr, z); 8318141f61eSdrh sqliteFree(z); 8328141f61eSdrh } 8338141f61eSdrh 8348141f61eSdrh /* Clean up and return 8358141f61eSdrh */ 8368141f61eSdrh sqliteFree(zDb); 8378141f61eSdrh sqliteFree(zTab); 8388141f61eSdrh sqliteFree(zCol); 8394adee20fSdanielk1977 sqlite3ExprDelete(pExpr->pLeft); 8408141f61eSdrh pExpr->pLeft = 0; 8414adee20fSdanielk1977 sqlite3ExprDelete(pExpr->pRight); 8428141f61eSdrh pExpr->pRight = 0; 8438141f61eSdrh pExpr->op = TK_COLUMN; 8444adee20fSdanielk1977 sqlite3AuthRead(pParse, pExpr, pSrcList); 8458141f61eSdrh return cnt!=1; 8468141f61eSdrh } 8478141f61eSdrh 8488141f61eSdrh /* 849cce7d176Sdrh ** This routine walks an expression tree and resolves references to 850967e8b73Sdrh ** table columns. Nodes of the form ID.ID or ID resolve into an 851aacc543eSdrh ** index to the table in the table list and a column offset. The 852aacc543eSdrh ** Expr.opcode for such nodes is changed to TK_COLUMN. The Expr.iTable 853aacc543eSdrh ** value is changed to the index of the referenced table in pTabList 854832508b7Sdrh ** plus the "base" value. The base value will ultimately become the 855aacc543eSdrh ** VDBE cursor number for a cursor that is pointing into the referenced 856aacc543eSdrh ** table. The Expr.iColumn value is changed to the index of the column 857aacc543eSdrh ** of the referenced table. The Expr.iColumn value for the special 858aacc543eSdrh ** ROWID column is -1. Any INTEGER PRIMARY KEY column is tried as an 859aacc543eSdrh ** alias for ROWID. 86019a775c2Sdrh ** 861fef5208cSdrh ** We also check for instances of the IN operator. IN comes in two 862fef5208cSdrh ** forms: 863fef5208cSdrh ** 864fef5208cSdrh ** expr IN (exprlist) 865fef5208cSdrh ** and 866fef5208cSdrh ** expr IN (SELECT ...) 867fef5208cSdrh ** 868fef5208cSdrh ** The first form is handled by creating a set holding the list 869fef5208cSdrh ** of allowed values. The second form causes the SELECT to generate 870fef5208cSdrh ** a temporary table. 871fef5208cSdrh ** 872fef5208cSdrh ** This routine also looks for scalar SELECTs that are part of an expression. 87319a775c2Sdrh ** If it finds any, it generates code to write the value of that select 87419a775c2Sdrh ** into a memory cell. 875cce7d176Sdrh ** 876967e8b73Sdrh ** Unknown columns or tables provoke an error. The function returns 877cce7d176Sdrh ** the number of errors seen and leaves an error message on pParse->zErrMsg. 878cce7d176Sdrh */ 8794adee20fSdanielk1977 int sqlite3ExprResolveIds( 880a2e00042Sdrh Parse *pParse, /* The parser context */ 8818141f61eSdrh SrcList *pSrcList, /* List of tables used to resolve column names */ 882a2e00042Sdrh ExprList *pEList, /* List of expressions used to resolve "AS" */ 883a2e00042Sdrh Expr *pExpr /* The expression to be analyzed. */ 884a2e00042Sdrh ){ 8856a3ea0e6Sdrh int i; 8866a3ea0e6Sdrh 8878141f61eSdrh if( pExpr==0 || pSrcList==0 ) return 0; 8888141f61eSdrh for(i=0; i<pSrcList->nSrc; i++){ 8898141f61eSdrh assert( pSrcList->a[i].iCursor>=0 && pSrcList->a[i].iCursor<pParse->nTab ); 8906a3ea0e6Sdrh } 891cce7d176Sdrh switch( pExpr->op ){ 8922398937bSdrh /* Double-quoted strings (ex: "abc") are used as identifiers if 8932398937bSdrh ** possible. Otherwise they remain as strings. Single-quoted 8942398937bSdrh ** strings (ex: 'abc') are always string literals. 8952398937bSdrh */ 8962398937bSdrh case TK_STRING: { 8972398937bSdrh if( pExpr->token.z[0]=='\'' ) break; 8982398937bSdrh /* Fall thru into the TK_ID case if this is a double-quoted string */ 8992398937bSdrh } 9008141f61eSdrh /* A lone identifier is the name of a columnd. 901a2e00042Sdrh */ 902cce7d176Sdrh case TK_ID: { 9038141f61eSdrh if( lookupName(pParse, 0, 0, &pExpr->token, pSrcList, pEList, pExpr) ){ 904cce7d176Sdrh return 1; 905ed6c8671Sdrh } 906cce7d176Sdrh break; 907cce7d176Sdrh } 908cce7d176Sdrh 909d24cc427Sdrh /* A table name and column name: ID.ID 910d24cc427Sdrh ** Or a database, table and column: ID.ID.ID 911d24cc427Sdrh */ 912cce7d176Sdrh case TK_DOT: { 9138141f61eSdrh Token *pColumn; 9148141f61eSdrh Token *pTable; 9158141f61eSdrh Token *pDb; 9168141f61eSdrh Expr *pRight; 917cce7d176Sdrh 918cce7d176Sdrh pRight = pExpr->pRight; 919d24cc427Sdrh if( pRight->op==TK_ID ){ 9208141f61eSdrh pDb = 0; 9218141f61eSdrh pTable = &pExpr->pLeft->token; 9228141f61eSdrh pColumn = &pRight->token; 923d24cc427Sdrh }else{ 9248141f61eSdrh assert( pRight->op==TK_DOT ); 9258141f61eSdrh pDb = &pExpr->pLeft->token; 9268141f61eSdrh pTable = &pRight->pLeft->token; 9278141f61eSdrh pColumn = &pRight->pRight->token; 928d24cc427Sdrh } 9298141f61eSdrh if( lookupName(pParse, pDb, pTable, pColumn, pSrcList, 0, pExpr) ){ 930daffd0e5Sdrh return 1; 931daffd0e5Sdrh } 932cce7d176Sdrh break; 933cce7d176Sdrh } 934cce7d176Sdrh 935fef5208cSdrh case TK_IN: { 936e014a838Sdanielk1977 char affinity; 9374adee20fSdanielk1977 Vdbe *v = sqlite3GetVdbe(pParse); 938d3d39e93Sdrh KeyInfo keyInfo; 9390202b29eSdanielk1977 int addr; /* Address of OP_OpenTemp instruction */ 940d3d39e93Sdrh 941fef5208cSdrh if( v==0 ) return 1; 9424adee20fSdanielk1977 if( sqlite3ExprResolveIds(pParse, pSrcList, pEList, pExpr->pLeft) ){ 943cfab11bcSdrh return 1; 944cfab11bcSdrh } 945bf3b721fSdanielk1977 affinity = sqlite3ExprAffinity(pExpr->pLeft); 946e014a838Sdanielk1977 947e014a838Sdanielk1977 /* Whether this is an 'x IN(SELECT...)' or an 'x IN(<exprlist>)' 948e014a838Sdanielk1977 ** expression it is handled the same way. A temporary table is 949e014a838Sdanielk1977 ** filled with single-field index keys representing the results 950e014a838Sdanielk1977 ** from the SELECT or the <exprlist>. 951fef5208cSdrh ** 952e014a838Sdanielk1977 ** If the 'x' expression is a column value, or the SELECT... 953e014a838Sdanielk1977 ** statement returns a column value, then the affinity of that 954e014a838Sdanielk1977 ** column is used to build the index keys. If both 'x' and the 955e014a838Sdanielk1977 ** SELECT... statement are columns, then numeric affinity is used 956e014a838Sdanielk1977 ** if either column has NUMERIC or INTEGER affinity. If neither 957e014a838Sdanielk1977 ** 'x' nor the SELECT... statement are columns, then numeric affinity 958e014a838Sdanielk1977 ** is used. 959fef5208cSdrh */ 960832508b7Sdrh pExpr->iTable = pParse->nTab++; 9610202b29eSdanielk1977 addr = sqlite3VdbeAddOp(v, OP_OpenTemp, pExpr->iTable, 0); 962d3d39e93Sdrh memset(&keyInfo, 0, sizeof(keyInfo)); 963d3d39e93Sdrh keyInfo.nField = 1; 964f3218feaSdrh sqlite3VdbeAddOp(v, OP_SetNumColumns, pExpr->iTable, 1); 965e014a838Sdanielk1977 966e014a838Sdanielk1977 if( pExpr->pSelect ){ 967e014a838Sdanielk1977 /* Case 1: expr IN (SELECT ...) 968e014a838Sdanielk1977 ** 969e014a838Sdanielk1977 ** Generate code to write the results of the select into the temporary 970e014a838Sdanielk1977 ** table allocated and opened above. 971e014a838Sdanielk1977 */ 972e014a838Sdanielk1977 int iParm = pExpr->iTable + (((int)affinity)<<16); 973be5c89acSdrh ExprList *pEList; 974e014a838Sdanielk1977 assert( (pExpr->iTable&0x0000FFFF)==pExpr->iTable ); 975bf3b721fSdanielk1977 sqlite3Select(pParse, pExpr->pSelect, SRT_Set, iParm, 0, 0, 0, 0); 976be5c89acSdrh pEList = pExpr->pSelect->pEList; 977be5c89acSdrh if( pEList && pEList->nExpr>0 ){ 9787cedc8d4Sdanielk1977 keyInfo.aColl[0] = binaryCompareCollSeq(pParse, pExpr->pLeft, 979be5c89acSdrh pEList->a[0].pExpr); 9800202b29eSdanielk1977 } 981fef5208cSdrh }else if( pExpr->pList ){ 982fef5208cSdrh /* Case 2: expr IN (exprlist) 983fef5208cSdrh ** 984e014a838Sdanielk1977 ** For each expression, build an index key from the evaluation and 985e014a838Sdanielk1977 ** store it in the temporary table. If <expr> is a column, then use 986e014a838Sdanielk1977 ** that columns affinity when building index keys. If <expr> is not 987e014a838Sdanielk1977 ** a column, use numeric affinity. 988fef5208cSdrh */ 989e014a838Sdanielk1977 int i; 990e014a838Sdanielk1977 if( !affinity ){ 991e014a838Sdanielk1977 affinity = SQLITE_AFF_NUMERIC; 992e014a838Sdanielk1977 } 9930202b29eSdanielk1977 keyInfo.aColl[0] = pExpr->pLeft->pColl; 994e014a838Sdanielk1977 995e014a838Sdanielk1977 /* Loop through each expression in <exprlist>. */ 996fef5208cSdrh for(i=0; i<pExpr->pList->nExpr; i++){ 997fef5208cSdrh Expr *pE2 = pExpr->pList->a[i].pExpr; 998e014a838Sdanielk1977 999e014a838Sdanielk1977 /* Check that the expression is constant and valid. */ 10004adee20fSdanielk1977 if( !sqlite3ExprIsConstant(pE2) ){ 10014adee20fSdanielk1977 sqlite3ErrorMsg(pParse, 1002da93d238Sdrh "right-hand side of IN operator must be constant"); 1003fef5208cSdrh return 1; 1004fef5208cSdrh } 10054adee20fSdanielk1977 if( sqlite3ExprCheck(pParse, pE2, 0, 0) ){ 10064794b980Sdrh return 1; 10074794b980Sdrh } 1008e014a838Sdanielk1977 1009e014a838Sdanielk1977 /* Evaluate the expression and insert it into the temp table */ 10104adee20fSdanielk1977 sqlite3ExprCode(pParse, pE2); 101194a11211Sdrh sqlite3VdbeOp3(v, OP_MakeRecord, 1, 0, &affinity, 1); 10120f69c1e3Sdanielk1977 sqlite3VdbeAddOp(v, OP_String8, 0, 0); 1013e014a838Sdanielk1977 sqlite3VdbeAddOp(v, OP_PutStrKey, pExpr->iTable, 0); 1014fef5208cSdrh } 1015fef5208cSdrh } 10160202b29eSdanielk1977 sqlite3VdbeChangeP3(v, addr, (void *)&keyInfo, P3_KEYINFO); 10170202b29eSdanielk1977 1018cfab11bcSdrh break; 1019fef5208cSdrh } 1020fef5208cSdrh 102119a775c2Sdrh case TK_SELECT: { 1022fef5208cSdrh /* This has to be a scalar SELECT. Generate code to put the 1023fef5208cSdrh ** value of this select in a memory cell and record the number 1024967e8b73Sdrh ** of the memory cell in iColumn. 1025fef5208cSdrh */ 1026967e8b73Sdrh pExpr->iColumn = pParse->nMem++; 1027bf3b721fSdanielk1977 if(sqlite3Select(pParse, pExpr->pSelect, SRT_Mem,pExpr->iColumn,0,0,0,0)){ 102819a775c2Sdrh return 1; 102919a775c2Sdrh } 103019a775c2Sdrh break; 103119a775c2Sdrh } 103219a775c2Sdrh 1033cce7d176Sdrh /* For all else, just recursively walk the tree */ 1034cce7d176Sdrh default: { 1035cce7d176Sdrh if( pExpr->pLeft 10364adee20fSdanielk1977 && sqlite3ExprResolveIds(pParse, pSrcList, pEList, pExpr->pLeft) ){ 1037cce7d176Sdrh return 1; 1038cce7d176Sdrh } 1039cce7d176Sdrh if( pExpr->pRight 10404adee20fSdanielk1977 && sqlite3ExprResolveIds(pParse, pSrcList, pEList, pExpr->pRight) ){ 1041cce7d176Sdrh return 1; 1042cce7d176Sdrh } 1043cce7d176Sdrh if( pExpr->pList ){ 1044cce7d176Sdrh int i; 1045cce7d176Sdrh ExprList *pList = pExpr->pList; 1046cce7d176Sdrh for(i=0; i<pList->nExpr; i++){ 1047832508b7Sdrh Expr *pArg = pList->a[i].pExpr; 10484adee20fSdanielk1977 if( sqlite3ExprResolveIds(pParse, pSrcList, pEList, pArg) ){ 1049cce7d176Sdrh return 1; 1050cce7d176Sdrh } 1051cce7d176Sdrh } 1052cce7d176Sdrh } 1053cce7d176Sdrh } 1054cce7d176Sdrh } 1055cce7d176Sdrh return 0; 1056cce7d176Sdrh } 1057cce7d176Sdrh 1058cce7d176Sdrh /* 10594b59ab5eSdrh ** pExpr is a node that defines a function of some kind. It might 10604b59ab5eSdrh ** be a syntactic function like "count(x)" or it might be a function 10614b59ab5eSdrh ** that implements an operator, like "a LIKE b". 10624b59ab5eSdrh ** 10634b59ab5eSdrh ** This routine makes *pzName point to the name of the function and 10644b59ab5eSdrh ** *pnName hold the number of characters in the function name. 10654b59ab5eSdrh */ 10664b59ab5eSdrh static void getFunctionName(Expr *pExpr, const char **pzName, int *pnName){ 10674b59ab5eSdrh switch( pExpr->op ){ 10684b59ab5eSdrh case TK_FUNCTION: { 10694b59ab5eSdrh *pzName = pExpr->token.z; 10706977fea8Sdrh *pnName = pExpr->token.n; 10714b59ab5eSdrh break; 10724b59ab5eSdrh } 10734b59ab5eSdrh case TK_LIKE: { 10744b59ab5eSdrh *pzName = "like"; 10754b59ab5eSdrh *pnName = 4; 10764b59ab5eSdrh break; 10774b59ab5eSdrh } 10784b59ab5eSdrh case TK_GLOB: { 10794b59ab5eSdrh *pzName = "glob"; 10804b59ab5eSdrh *pnName = 4; 10814b59ab5eSdrh break; 10824b59ab5eSdrh } 10834b59ab5eSdrh default: { 10844b59ab5eSdrh *pzName = "can't happen"; 10854b59ab5eSdrh *pnName = 12; 10864b59ab5eSdrh break; 10874b59ab5eSdrh } 10884b59ab5eSdrh } 10894b59ab5eSdrh } 10904b59ab5eSdrh 10914b59ab5eSdrh /* 1092cce7d176Sdrh ** Error check the functions in an expression. Make sure all 1093cce7d176Sdrh ** function names are recognized and all functions have the correct 1094cce7d176Sdrh ** number of arguments. Leave an error message in pParse->zErrMsg 1095cce7d176Sdrh ** if anything is amiss. Return the number of errors. 1096cce7d176Sdrh ** 1097cce7d176Sdrh ** if pIsAgg is not null and this expression is an aggregate function 1098cce7d176Sdrh ** (like count(*) or max(value)) then write a 1 into *pIsAgg. 1099cce7d176Sdrh */ 11004adee20fSdanielk1977 int sqlite3ExprCheck(Parse *pParse, Expr *pExpr, int allowAgg, int *pIsAgg){ 1101cce7d176Sdrh int nErr = 0; 1102cce7d176Sdrh if( pExpr==0 ) return 0; 1103cce7d176Sdrh switch( pExpr->op ){ 11044b59ab5eSdrh case TK_GLOB: 11054b59ab5eSdrh case TK_LIKE: 1106cce7d176Sdrh case TK_FUNCTION: { 1107c9b84a1fSdrh int n = pExpr->pList ? pExpr->pList->nExpr : 0; /* Number of arguments */ 1108c9b84a1fSdrh int no_such_func = 0; /* True if no such function exists */ 1109c9b84a1fSdrh int wrong_num_args = 0; /* True if wrong number of arguments */ 1110c9b84a1fSdrh int is_agg = 0; /* True if is an aggregate function */ 1111cce7d176Sdrh int i; 11124b59ab5eSdrh int nId; /* Number of characters in function name */ 11134b59ab5eSdrh const char *zId; /* The function name. */ 11140bce8354Sdrh FuncDef *pDef; 1115d8123366Sdanielk1977 int enc = pParse->db->enc; 11160bce8354Sdrh 11174b59ab5eSdrh getFunctionName(pExpr, &zId, &nId); 1118d8123366Sdanielk1977 pDef = sqlite3FindFunction(pParse->db, zId, nId, n, enc, 0); 11190bce8354Sdrh if( pDef==0 ){ 1120d8123366Sdanielk1977 pDef = sqlite3FindFunction(pParse->db, zId, nId, -1, enc, 0); 11210bce8354Sdrh if( pDef==0 ){ 1122cce7d176Sdrh no_such_func = 1; 11238e0a2f90Sdrh }else{ 11248e0a2f90Sdrh wrong_num_args = 1; 11258e0a2f90Sdrh } 11268e0a2f90Sdrh }else{ 11270bce8354Sdrh is_agg = pDef->xFunc==0; 1128cce7d176Sdrh } 11298e0a2f90Sdrh if( is_agg && !allowAgg ){ 11304adee20fSdanielk1977 sqlite3ErrorMsg(pParse, "misuse of aggregate function %.*s()", nId, zId); 11318e0a2f90Sdrh nErr++; 11328e0a2f90Sdrh is_agg = 0; 11338e0a2f90Sdrh }else if( no_such_func ){ 11344adee20fSdanielk1977 sqlite3ErrorMsg(pParse, "no such function: %.*s", nId, zId); 1135cce7d176Sdrh nErr++; 11368e0a2f90Sdrh }else if( wrong_num_args ){ 11374adee20fSdanielk1977 sqlite3ErrorMsg(pParse,"wrong number of arguments to function %.*s()", 1138f7a9e1acSdrh nId, zId); 11398e0a2f90Sdrh nErr++; 1140cce7d176Sdrh } 1141f7a9e1acSdrh if( is_agg ){ 1142f7a9e1acSdrh pExpr->op = TK_AGG_FUNCTION; 1143f7a9e1acSdrh if( pIsAgg ) *pIsAgg = 1; 1144f7a9e1acSdrh } 1145cce7d176Sdrh for(i=0; nErr==0 && i<n; i++){ 11464adee20fSdanielk1977 nErr = sqlite3ExprCheck(pParse, pExpr->pList->a[i].pExpr, 11474cfa7934Sdrh allowAgg && !is_agg, pIsAgg); 1148cce7d176Sdrh } 11490202b29eSdanielk1977 /* FIX ME: Compute pExpr->affinity based on the expected return 11500202b29eSdanielk1977 ** type of the function 11510202b29eSdanielk1977 */ 1152cce7d176Sdrh } 1153cce7d176Sdrh default: { 1154cce7d176Sdrh if( pExpr->pLeft ){ 11554adee20fSdanielk1977 nErr = sqlite3ExprCheck(pParse, pExpr->pLeft, allowAgg, pIsAgg); 1156cce7d176Sdrh } 1157cce7d176Sdrh if( nErr==0 && pExpr->pRight ){ 11584adee20fSdanielk1977 nErr = sqlite3ExprCheck(pParse, pExpr->pRight, allowAgg, pIsAgg); 1159cce7d176Sdrh } 1160fef5208cSdrh if( nErr==0 && pExpr->pList ){ 1161fef5208cSdrh int n = pExpr->pList->nExpr; 1162fef5208cSdrh int i; 1163fef5208cSdrh for(i=0; nErr==0 && i<n; i++){ 11642282792aSdrh Expr *pE2 = pExpr->pList->a[i].pExpr; 11654adee20fSdanielk1977 nErr = sqlite3ExprCheck(pParse, pE2, allowAgg, pIsAgg); 1166fef5208cSdrh } 1167fef5208cSdrh } 1168cce7d176Sdrh break; 1169cce7d176Sdrh } 1170cce7d176Sdrh } 1171cce7d176Sdrh return nErr; 1172cce7d176Sdrh } 1173cce7d176Sdrh 1174cce7d176Sdrh /* 1175290c1948Sdrh ** Call sqlite3ExprResolveIds() followed by sqlite3ExprCheck(). 1176290c1948Sdrh ** 1177290c1948Sdrh ** This routine is provided as a convenience since it is very common 1178290c1948Sdrh ** to call ResolveIds() and Check() back to back. 1179290c1948Sdrh */ 1180290c1948Sdrh int sqlite3ExprResolveAndCheck( 1181290c1948Sdrh Parse *pParse, /* The parser context */ 1182290c1948Sdrh SrcList *pSrcList, /* List of tables used to resolve column names */ 1183290c1948Sdrh ExprList *pEList, /* List of expressions used to resolve "AS" */ 1184290c1948Sdrh Expr *pExpr, /* The expression to be analyzed. */ 1185290c1948Sdrh int allowAgg, /* True to allow aggregate expressions */ 1186290c1948Sdrh int *pIsAgg /* Set to TRUE if aggregates are found */ 1187290c1948Sdrh ){ 1188290c1948Sdrh if( pExpr==0 ) return 0; 1189290c1948Sdrh if( sqlite3ExprResolveIds(pParse,pSrcList,pEList,pExpr) ){ 1190290c1948Sdrh return 1; 1191290c1948Sdrh } 1192290c1948Sdrh return sqlite3ExprCheck(pParse, pExpr, allowAgg, pIsAgg); 1193290c1948Sdrh } 1194290c1948Sdrh 1195290c1948Sdrh /* 1196fec19aadSdrh ** Generate an instruction that will put the integer describe by 1197fec19aadSdrh ** text z[0..n-1] on the stack. 1198fec19aadSdrh */ 1199fec19aadSdrh static void codeInteger(Vdbe *v, const char *z, int n){ 1200fec19aadSdrh int i; 12016fec0762Sdrh if( sqlite3GetInt32(z, &i) ){ 12026fec0762Sdrh sqlite3VdbeAddOp(v, OP_Integer, i, 0); 12036fec0762Sdrh }else if( sqlite3FitsIn64Bits(z) ){ 12046fec0762Sdrh sqlite3VdbeOp3(v, OP_Integer, 0, 0, z, n); 1205fec19aadSdrh }else{ 1206fec19aadSdrh sqlite3VdbeOp3(v, OP_Real, 0, 0, z, n); 1207fec19aadSdrh } 1208fec19aadSdrh } 1209fec19aadSdrh 1210fec19aadSdrh /* 1211cce7d176Sdrh ** Generate code into the current Vdbe to evaluate the given 12121ccde15dSdrh ** expression and leave the result on the top of stack. 1213f2bc013cSdrh ** 1214f2bc013cSdrh ** This code depends on the fact that certain token values (ex: TK_EQ) 1215f2bc013cSdrh ** are the same as opcode values (ex: OP_Eq) that implement the corresponding 1216f2bc013cSdrh ** operation. Special comments in vdbe.c and the mkopcodeh.awk script in 1217f2bc013cSdrh ** the make process cause these values to align. Assert()s in the code 1218f2bc013cSdrh ** below verify that the numbers are aligned correctly. 1219cce7d176Sdrh */ 12204adee20fSdanielk1977 void sqlite3ExprCode(Parse *pParse, Expr *pExpr){ 1221cce7d176Sdrh Vdbe *v = pParse->pVdbe; 1222cce7d176Sdrh int op; 1223daffd0e5Sdrh if( v==0 || pExpr==0 ) return; 1224f2bc013cSdrh op = pExpr->op; 1225f2bc013cSdrh switch( op ){ 1226967e8b73Sdrh case TK_COLUMN: { 12272282792aSdrh if( pParse->useAgg ){ 12284adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_AggGet, 0, pExpr->iAgg); 1229c4a3c779Sdrh }else if( pExpr->iColumn>=0 ){ 12304adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_Column, pExpr->iTable, pExpr->iColumn); 1231145716b3Sdrh #ifndef NDEBUG 1232145716b3Sdrh if( pExpr->span.z && pExpr->span.n>0 && pExpr->span.n<100 ){ 1233ad6d9460Sdrh VdbeComment((v, "# %T", &pExpr->span)); 1234145716b3Sdrh } 1235145716b3Sdrh #endif 1236c4a3c779Sdrh }else{ 12374adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_Recno, pExpr->iTable, 0); 12382282792aSdrh } 1239cce7d176Sdrh break; 1240cce7d176Sdrh } 1241cce7d176Sdrh case TK_INTEGER: { 1242fec19aadSdrh codeInteger(v, pExpr->token.z, pExpr->token.n); 1243fec19aadSdrh break; 124451e9a445Sdrh } 1245fec19aadSdrh case TK_FLOAT: 1246fec19aadSdrh case TK_STRING: { 1247f2bc013cSdrh assert( TK_FLOAT==OP_Real ); 1248f2bc013cSdrh assert( TK_STRING==OP_String8 ); 1249fec19aadSdrh sqlite3VdbeOp3(v, op, 0, 0, pExpr->token.z, pExpr->token.n); 12504adee20fSdanielk1977 sqlite3VdbeDequoteP3(v, -1); 1251cce7d176Sdrh break; 1252cce7d176Sdrh } 1253c572ef7fSdanielk1977 case TK_BLOB: { 1254f2bc013cSdrh assert( TK_BLOB==OP_HexBlob ); 1255c572ef7fSdanielk1977 sqlite3VdbeOp3(v, op, 0, 0, pExpr->token.z+1, pExpr->token.n-1); 1256c572ef7fSdanielk1977 sqlite3VdbeDequoteP3(v, -1); 1257c572ef7fSdanielk1977 break; 1258c572ef7fSdanielk1977 } 1259cce7d176Sdrh case TK_NULL: { 12600f69c1e3Sdanielk1977 sqlite3VdbeAddOp(v, OP_String8, 0, 0); 1261cce7d176Sdrh break; 1262cce7d176Sdrh } 126350457896Sdrh case TK_VARIABLE: { 12644adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_Variable, pExpr->iTable, 0); 1265895d7472Sdrh if( pExpr->token.n>1 ){ 1266895d7472Sdrh sqlite3VdbeChangeP3(v, -1, pExpr->token.z, pExpr->token.n); 1267895d7472Sdrh } 126850457896Sdrh break; 126950457896Sdrh } 1270*4e0cff60Sdrh case TK_REGISTER: { 1271*4e0cff60Sdrh sqlite3VdbeAddOp(v, OP_MemLoad, pExpr->iTable, 0); 1272*4e0cff60Sdrh break; 1273*4e0cff60Sdrh } 1274c9b84a1fSdrh case TK_LT: 1275c9b84a1fSdrh case TK_LE: 1276c9b84a1fSdrh case TK_GT: 1277c9b84a1fSdrh case TK_GE: 1278c9b84a1fSdrh case TK_NE: 1279c9b84a1fSdrh case TK_EQ: { 1280f2bc013cSdrh assert( TK_LT==OP_Lt ); 1281f2bc013cSdrh assert( TK_LE==OP_Le ); 1282f2bc013cSdrh assert( TK_GT==OP_Gt ); 1283f2bc013cSdrh assert( TK_GE==OP_Ge ); 1284f2bc013cSdrh assert( TK_EQ==OP_Eq ); 1285f2bc013cSdrh assert( TK_NE==OP_Ne ); 1286a37cdde0Sdanielk1977 sqlite3ExprCode(pParse, pExpr->pLeft); 1287a37cdde0Sdanielk1977 sqlite3ExprCode(pParse, pExpr->pRight); 1288be5c89acSdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, 0, 0); 1289a37cdde0Sdanielk1977 break; 1290c9b84a1fSdrh } 1291cce7d176Sdrh case TK_AND: 1292cce7d176Sdrh case TK_OR: 1293cce7d176Sdrh case TK_PLUS: 1294cce7d176Sdrh case TK_STAR: 1295cce7d176Sdrh case TK_MINUS: 1296bf4133cbSdrh case TK_REM: 1297bf4133cbSdrh case TK_BITAND: 1298bf4133cbSdrh case TK_BITOR: 129917c40294Sdrh case TK_SLASH: 1300bf4133cbSdrh case TK_LSHIFT: 1301855eb1cfSdrh case TK_RSHIFT: 13020040077dSdrh case TK_CONCAT: { 1303f2bc013cSdrh assert( TK_AND==OP_And ); 1304f2bc013cSdrh assert( TK_OR==OP_Or ); 1305f2bc013cSdrh assert( TK_PLUS==OP_Add ); 1306f2bc013cSdrh assert( TK_MINUS==OP_Subtract ); 1307f2bc013cSdrh assert( TK_REM==OP_Remainder ); 1308f2bc013cSdrh assert( TK_BITAND==OP_BitAnd ); 1309f2bc013cSdrh assert( TK_BITOR==OP_BitOr ); 1310f2bc013cSdrh assert( TK_SLASH==OP_Divide ); 1311f2bc013cSdrh assert( TK_LSHIFT==OP_ShiftLeft ); 1312f2bc013cSdrh assert( TK_RSHIFT==OP_ShiftRight ); 1313f2bc013cSdrh assert( TK_CONCAT==OP_Concat ); 13144adee20fSdanielk1977 sqlite3ExprCode(pParse, pExpr->pLeft); 13154adee20fSdanielk1977 sqlite3ExprCode(pParse, pExpr->pRight); 1316855eb1cfSdrh sqlite3VdbeAddOp(v, op, 0, 0); 13170040077dSdrh break; 13180040077dSdrh } 1319cce7d176Sdrh case TK_UMINUS: { 1320fec19aadSdrh Expr *pLeft = pExpr->pLeft; 1321fec19aadSdrh assert( pLeft ); 1322fec19aadSdrh if( pLeft->op==TK_FLOAT || pLeft->op==TK_INTEGER ){ 1323fec19aadSdrh Token *p = &pLeft->token; 13246e142f54Sdrh char *z = sqliteMalloc( p->n + 2 ); 13256e142f54Sdrh sprintf(z, "-%.*s", p->n, p->z); 1326fec19aadSdrh if( pLeft->op==TK_FLOAT ){ 1327fec19aadSdrh sqlite3VdbeOp3(v, OP_Real, 0, 0, z, p->n+1); 1328e6840900Sdrh }else{ 1329fec19aadSdrh codeInteger(v, z, p->n+1); 1330e6840900Sdrh } 13316e142f54Sdrh sqliteFree(z); 13326e142f54Sdrh break; 13336e142f54Sdrh } 13341ccde15dSdrh /* Fall through into TK_NOT */ 13356e142f54Sdrh } 1336bf4133cbSdrh case TK_BITNOT: 13376e142f54Sdrh case TK_NOT: { 1338f2bc013cSdrh assert( TK_BITNOT==OP_BitNot ); 1339f2bc013cSdrh assert( TK_NOT==OP_Not ); 13404adee20fSdanielk1977 sqlite3ExprCode(pParse, pExpr->pLeft); 13414adee20fSdanielk1977 sqlite3VdbeAddOp(v, op, 0, 0); 1342cce7d176Sdrh break; 1343cce7d176Sdrh } 1344cce7d176Sdrh case TK_ISNULL: 1345cce7d176Sdrh case TK_NOTNULL: { 1346cce7d176Sdrh int dest; 1347f2bc013cSdrh assert( TK_ISNULL==OP_IsNull ); 1348f2bc013cSdrh assert( TK_NOTNULL==OP_NotNull ); 13494adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_Integer, 1, 0); 13504adee20fSdanielk1977 sqlite3ExprCode(pParse, pExpr->pLeft); 13514adee20fSdanielk1977 dest = sqlite3VdbeCurrentAddr(v) + 2; 13524adee20fSdanielk1977 sqlite3VdbeAddOp(v, op, 1, dest); 13534adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_AddImm, -1, 0); 1354a37cdde0Sdanielk1977 break; 1355f2bc013cSdrh } 13562282792aSdrh case TK_AGG_FUNCTION: { 13574adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_AggGet, 0, pExpr->iAgg); 13582282792aSdrh break; 13592282792aSdrh } 13604b59ab5eSdrh case TK_GLOB: 13614b59ab5eSdrh case TK_LIKE: 1362cce7d176Sdrh case TK_FUNCTION: { 1363cce7d176Sdrh ExprList *pList = pExpr->pList; 136489425d5eSdrh int nExpr = pList ? pList->nExpr : 0; 13650bce8354Sdrh FuncDef *pDef; 13664b59ab5eSdrh int nId; 13674b59ab5eSdrh const char *zId; 1368682f68b0Sdanielk1977 int p2 = 0; 1369682f68b0Sdanielk1977 int i; 1370d8123366Sdanielk1977 u8 enc = pParse->db->enc; 1371dc1bdc4fSdanielk1977 CollSeq *pColl = 0; 13724b59ab5eSdrh getFunctionName(pExpr, &zId, &nId); 1373d8123366Sdanielk1977 pDef = sqlite3FindFunction(pParse->db, zId, nId, nExpr, enc, 0); 13740bce8354Sdrh assert( pDef!=0 ); 1375f9b596ebSdrh nExpr = sqlite3ExprCodeExprList(pParse, pList); 1376682f68b0Sdanielk1977 for(i=0; i<nExpr && i<32; i++){ 1377d02eb1fdSdanielk1977 if( sqlite3ExprIsConstant(pList->a[i].pExpr) ){ 1378d02eb1fdSdanielk1977 p2 |= (1<<i); 1379d02eb1fdSdanielk1977 } 1380dc1bdc4fSdanielk1977 if( pDef->needCollSeq && !pColl ){ 1381dc1bdc4fSdanielk1977 pColl = sqlite3ExprCollSeq(pParse, pList->a[i].pExpr); 1382dc1bdc4fSdanielk1977 } 1383dc1bdc4fSdanielk1977 } 1384dc1bdc4fSdanielk1977 if( pDef->needCollSeq ){ 1385dc1bdc4fSdanielk1977 if( !pColl ) pColl = pParse->db->pDfltColl; 1386d8123366Sdanielk1977 sqlite3VdbeOp3(v, OP_CollSeq, 0, 0, (char *)pColl, P3_COLLSEQ); 1387682f68b0Sdanielk1977 } 1388682f68b0Sdanielk1977 sqlite3VdbeOp3(v, OP_Function, nExpr, p2, (char*)pDef, P3_FUNCDEF); 13896ec2733bSdrh break; 13906ec2733bSdrh } 139119a775c2Sdrh case TK_SELECT: { 13924adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_MemLoad, pExpr->iColumn, 0); 1393ad6d9460Sdrh VdbeComment((v, "# load subquery result")); 139419a775c2Sdrh break; 139519a775c2Sdrh } 1396fef5208cSdrh case TK_IN: { 1397fef5208cSdrh int addr; 139894a11211Sdrh char affinity; 1399e014a838Sdanielk1977 1400e014a838Sdanielk1977 /* Figure out the affinity to use to create a key from the results 1401e014a838Sdanielk1977 ** of the expression. affinityStr stores a static string suitable for 1402ededfd5eSdanielk1977 ** P3 of OP_MakeRecord. 1403e014a838Sdanielk1977 */ 140494a11211Sdrh affinity = comparisonAffinity(pExpr); 1405e014a838Sdanielk1977 14064adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_Integer, 1, 0); 1407e014a838Sdanielk1977 1408e014a838Sdanielk1977 /* Code the <expr> from "<expr> IN (...)". The temporary table 1409e014a838Sdanielk1977 ** pExpr->iTable contains the values that make up the (...) set. 1410e014a838Sdanielk1977 */ 14114adee20fSdanielk1977 sqlite3ExprCode(pParse, pExpr->pLeft); 14124adee20fSdanielk1977 addr = sqlite3VdbeCurrentAddr(v); 1413e014a838Sdanielk1977 sqlite3VdbeAddOp(v, OP_NotNull, -1, addr+4); /* addr + 0 */ 14144adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_Pop, 2, 0); 14150f69c1e3Sdanielk1977 sqlite3VdbeAddOp(v, OP_String8, 0, 0); 1416e014a838Sdanielk1977 sqlite3VdbeAddOp(v, OP_Goto, 0, addr+7); 141794a11211Sdrh sqlite3VdbeOp3(v, OP_MakeRecord, 1, 0, &affinity, 1); /* addr + 4 */ 1418e014a838Sdanielk1977 sqlite3VdbeAddOp(v, OP_Found, pExpr->iTable, addr+7); 1419e014a838Sdanielk1977 sqlite3VdbeAddOp(v, OP_AddImm, -1, 0); /* addr + 6 */ 1420e014a838Sdanielk1977 1421fef5208cSdrh break; 1422fef5208cSdrh } 1423fef5208cSdrh case TK_BETWEEN: { 1424be5c89acSdrh Expr *pLeft = pExpr->pLeft; 1425be5c89acSdrh struct ExprList_item *pLItem = pExpr->pList->a; 1426be5c89acSdrh Expr *pRight = pLItem->pExpr; 1427be5c89acSdrh sqlite3ExprCode(pParse, pLeft); 14284adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_Dup, 0, 0); 1429be5c89acSdrh sqlite3ExprCode(pParse, pRight); 1430be5c89acSdrh codeCompare(pParse, pLeft, pRight, OP_Ge, 0, 0); 14314adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_Pull, 1, 0); 1432be5c89acSdrh pLItem++; 1433be5c89acSdrh pRight = pLItem->pExpr; 1434be5c89acSdrh sqlite3ExprCode(pParse, pRight); 1435be5c89acSdrh codeCompare(pParse, pLeft, pRight, OP_Le, 0, 0); 14364adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_And, 0, 0); 1437fef5208cSdrh break; 1438fef5208cSdrh } 143951e9a445Sdrh case TK_UPLUS: 1440a2e00042Sdrh case TK_AS: { 14414adee20fSdanielk1977 sqlite3ExprCode(pParse, pExpr->pLeft); 1442a2e00042Sdrh break; 1443a2e00042Sdrh } 144417a7f8ddSdrh case TK_CASE: { 144517a7f8ddSdrh int expr_end_label; 1446f5905aa7Sdrh int jumpInst; 1447f5905aa7Sdrh int addr; 1448f5905aa7Sdrh int nExpr; 144917a7f8ddSdrh int i; 1450be5c89acSdrh ExprList *pEList; 1451be5c89acSdrh struct ExprList_item *aListelem; 145217a7f8ddSdrh 145317a7f8ddSdrh assert(pExpr->pList); 145417a7f8ddSdrh assert((pExpr->pList->nExpr % 2) == 0); 145517a7f8ddSdrh assert(pExpr->pList->nExpr > 0); 1456be5c89acSdrh pEList = pExpr->pList; 1457be5c89acSdrh aListelem = pEList->a; 1458be5c89acSdrh nExpr = pEList->nExpr; 14594adee20fSdanielk1977 expr_end_label = sqlite3VdbeMakeLabel(v); 146017a7f8ddSdrh if( pExpr->pLeft ){ 14614adee20fSdanielk1977 sqlite3ExprCode(pParse, pExpr->pLeft); 1462cce7d176Sdrh } 1463f5905aa7Sdrh for(i=0; i<nExpr; i=i+2){ 1464be5c89acSdrh sqlite3ExprCode(pParse, aListelem[i].pExpr); 146517a7f8ddSdrh if( pExpr->pLeft ){ 14664adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_Dup, 1, 1); 1467be5c89acSdrh jumpInst = codeCompare(pParse, pExpr->pLeft, aListelem[i].pExpr, 1468be5c89acSdrh OP_Ne, 0, 1); 14694adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_Pop, 1, 0); 1470f5905aa7Sdrh }else{ 14714adee20fSdanielk1977 jumpInst = sqlite3VdbeAddOp(v, OP_IfNot, 1, 0); 147217a7f8ddSdrh } 1473be5c89acSdrh sqlite3ExprCode(pParse, aListelem[i+1].pExpr); 14744adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_Goto, 0, expr_end_label); 14754adee20fSdanielk1977 addr = sqlite3VdbeCurrentAddr(v); 14764adee20fSdanielk1977 sqlite3VdbeChangeP2(v, jumpInst, addr); 147717a7f8ddSdrh } 1478f570f011Sdrh if( pExpr->pLeft ){ 14794adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_Pop, 1, 0); 1480f570f011Sdrh } 148117a7f8ddSdrh if( pExpr->pRight ){ 14824adee20fSdanielk1977 sqlite3ExprCode(pParse, pExpr->pRight); 148317a7f8ddSdrh }else{ 14840f69c1e3Sdanielk1977 sqlite3VdbeAddOp(v, OP_String8, 0, 0); 148517a7f8ddSdrh } 14864adee20fSdanielk1977 sqlite3VdbeResolveLabel(v, expr_end_label); 14876f34903eSdanielk1977 break; 14886f34903eSdanielk1977 } 14896f34903eSdanielk1977 case TK_RAISE: { 14906f34903eSdanielk1977 if( !pParse->trigStack ){ 14914adee20fSdanielk1977 sqlite3ErrorMsg(pParse, 1492da93d238Sdrh "RAISE() may only be used within a trigger-program"); 14936f34903eSdanielk1977 return; 14946f34903eSdanielk1977 } 1495ad6d9460Sdrh if( pExpr->iColumn!=OE_Ignore ){ 1496ad6d9460Sdrh assert( pExpr->iColumn==OE_Rollback || 14976f34903eSdanielk1977 pExpr->iColumn == OE_Abort || 1498ad6d9460Sdrh pExpr->iColumn == OE_Fail ); 14994adee20fSdanielk1977 sqlite3VdbeOp3(v, OP_Halt, SQLITE_CONSTRAINT, pExpr->iColumn, 1500701a0aebSdrh pExpr->token.z, pExpr->token.n); 15014adee20fSdanielk1977 sqlite3VdbeDequoteP3(v, -1); 15026f34903eSdanielk1977 } else { 15036f34903eSdanielk1977 assert( pExpr->iColumn == OE_Ignore ); 1504344737f6Sdrh sqlite3VdbeAddOp(v, OP_ContextPop, 0, 0); 1505ad6d9460Sdrh sqlite3VdbeAddOp(v, OP_Goto, 0, pParse->trigStack->ignoreJump); 1506ad6d9460Sdrh VdbeComment((v, "# raise(IGNORE)")); 15076f34903eSdanielk1977 } 150817a7f8ddSdrh } 150917a7f8ddSdrh break; 151017a7f8ddSdrh } 1511cce7d176Sdrh } 1512cce7d176Sdrh 1513cce7d176Sdrh /* 1514268380caSdrh ** Generate code that pushes the value of every element of the given 1515f9b596ebSdrh ** expression list onto the stack. 1516268380caSdrh ** 1517268380caSdrh ** Return the number of elements pushed onto the stack. 1518268380caSdrh */ 15194adee20fSdanielk1977 int sqlite3ExprCodeExprList( 1520268380caSdrh Parse *pParse, /* Parsing context */ 1521f9b596ebSdrh ExprList *pList /* The expression list to be coded */ 1522268380caSdrh ){ 1523268380caSdrh struct ExprList_item *pItem; 1524268380caSdrh int i, n; 1525268380caSdrh Vdbe *v; 1526268380caSdrh if( pList==0 ) return 0; 15274adee20fSdanielk1977 v = sqlite3GetVdbe(pParse); 1528268380caSdrh n = pList->nExpr; 1529268380caSdrh for(pItem=pList->a, i=0; i<n; i++, pItem++){ 15304adee20fSdanielk1977 sqlite3ExprCode(pParse, pItem->pExpr); 1531268380caSdrh } 1532f9b596ebSdrh return n; 1533268380caSdrh } 1534268380caSdrh 1535268380caSdrh /* 1536cce7d176Sdrh ** Generate code for a boolean expression such that a jump is made 1537cce7d176Sdrh ** to the label "dest" if the expression is true but execution 1538cce7d176Sdrh ** continues straight thru if the expression is false. 1539f5905aa7Sdrh ** 1540f5905aa7Sdrh ** If the expression evaluates to NULL (neither true nor false), then 1541f5905aa7Sdrh ** take the jump if the jumpIfNull flag is true. 1542f2bc013cSdrh ** 1543f2bc013cSdrh ** This code depends on the fact that certain token values (ex: TK_EQ) 1544f2bc013cSdrh ** are the same as opcode values (ex: OP_Eq) that implement the corresponding 1545f2bc013cSdrh ** operation. Special comments in vdbe.c and the mkopcodeh.awk script in 1546f2bc013cSdrh ** the make process cause these values to align. Assert()s in the code 1547f2bc013cSdrh ** below verify that the numbers are aligned correctly. 1548cce7d176Sdrh */ 15494adee20fSdanielk1977 void sqlite3ExprIfTrue(Parse *pParse, Expr *pExpr, int dest, int jumpIfNull){ 1550cce7d176Sdrh Vdbe *v = pParse->pVdbe; 1551cce7d176Sdrh int op = 0; 1552daffd0e5Sdrh if( v==0 || pExpr==0 ) return; 1553f2bc013cSdrh op = pExpr->op; 1554f2bc013cSdrh switch( op ){ 1555cce7d176Sdrh case TK_AND: { 15564adee20fSdanielk1977 int d2 = sqlite3VdbeMakeLabel(v); 15574adee20fSdanielk1977 sqlite3ExprIfFalse(pParse, pExpr->pLeft, d2, !jumpIfNull); 15584adee20fSdanielk1977 sqlite3ExprIfTrue(pParse, pExpr->pRight, dest, jumpIfNull); 15594adee20fSdanielk1977 sqlite3VdbeResolveLabel(v, d2); 1560cce7d176Sdrh break; 1561cce7d176Sdrh } 1562cce7d176Sdrh case TK_OR: { 15634adee20fSdanielk1977 sqlite3ExprIfTrue(pParse, pExpr->pLeft, dest, jumpIfNull); 15644adee20fSdanielk1977 sqlite3ExprIfTrue(pParse, pExpr->pRight, dest, jumpIfNull); 1565cce7d176Sdrh break; 1566cce7d176Sdrh } 1567cce7d176Sdrh case TK_NOT: { 15684adee20fSdanielk1977 sqlite3ExprIfFalse(pParse, pExpr->pLeft, dest, jumpIfNull); 1569cce7d176Sdrh break; 1570cce7d176Sdrh } 1571cce7d176Sdrh case TK_LT: 1572cce7d176Sdrh case TK_LE: 1573cce7d176Sdrh case TK_GT: 1574cce7d176Sdrh case TK_GE: 1575cce7d176Sdrh case TK_NE: 15760ac65892Sdrh case TK_EQ: { 1577f2bc013cSdrh assert( TK_LT==OP_Lt ); 1578f2bc013cSdrh assert( TK_LE==OP_Le ); 1579f2bc013cSdrh assert( TK_GT==OP_Gt ); 1580f2bc013cSdrh assert( TK_GE==OP_Ge ); 1581f2bc013cSdrh assert( TK_EQ==OP_Eq ); 1582f2bc013cSdrh assert( TK_NE==OP_Ne ); 15834adee20fSdanielk1977 sqlite3ExprCode(pParse, pExpr->pLeft); 15844adee20fSdanielk1977 sqlite3ExprCode(pParse, pExpr->pRight); 1585be5c89acSdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, dest, jumpIfNull); 1586cce7d176Sdrh break; 1587cce7d176Sdrh } 1588cce7d176Sdrh case TK_ISNULL: 1589cce7d176Sdrh case TK_NOTNULL: { 1590f2bc013cSdrh assert( TK_ISNULL==OP_IsNull ); 1591f2bc013cSdrh assert( TK_NOTNULL==OP_NotNull ); 15924adee20fSdanielk1977 sqlite3ExprCode(pParse, pExpr->pLeft); 15934adee20fSdanielk1977 sqlite3VdbeAddOp(v, op, 1, dest); 1594cce7d176Sdrh break; 1595cce7d176Sdrh } 1596fef5208cSdrh case TK_BETWEEN: { 15970202b29eSdanielk1977 /* The expression "x BETWEEN y AND z" is implemented as: 15980202b29eSdanielk1977 ** 15990202b29eSdanielk1977 ** 1 IF (x < y) GOTO 3 16000202b29eSdanielk1977 ** 2 IF (x <= z) GOTO <dest> 16010202b29eSdanielk1977 ** 3 ... 16020202b29eSdanielk1977 */ 1603f5905aa7Sdrh int addr; 1604be5c89acSdrh Expr *pLeft = pExpr->pLeft; 1605be5c89acSdrh Expr *pRight = pExpr->pList->a[0].pExpr; 1606be5c89acSdrh sqlite3ExprCode(pParse, pLeft); 16074adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_Dup, 0, 0); 1608be5c89acSdrh sqlite3ExprCode(pParse, pRight); 1609be5c89acSdrh addr = codeCompare(pParse, pLeft, pRight, OP_Lt, 0, !jumpIfNull); 16100202b29eSdanielk1977 1611be5c89acSdrh pRight = pExpr->pList->a[1].pExpr; 1612be5c89acSdrh sqlite3ExprCode(pParse, pRight); 1613be5c89acSdrh codeCompare(pParse, pLeft, pRight, OP_Le, dest, jumpIfNull); 16140202b29eSdanielk1977 16154adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_Integer, 0, 0); 16164adee20fSdanielk1977 sqlite3VdbeChangeP2(v, addr, sqlite3VdbeCurrentAddr(v)); 16174adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_Pop, 1, 0); 1618fef5208cSdrh break; 1619fef5208cSdrh } 1620cce7d176Sdrh default: { 16214adee20fSdanielk1977 sqlite3ExprCode(pParse, pExpr); 16224adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_If, jumpIfNull, dest); 1623cce7d176Sdrh break; 1624cce7d176Sdrh } 1625cce7d176Sdrh } 1626cce7d176Sdrh } 1627cce7d176Sdrh 1628cce7d176Sdrh /* 162966b89c8fSdrh ** Generate code for a boolean expression such that a jump is made 1630cce7d176Sdrh ** to the label "dest" if the expression is false but execution 1631cce7d176Sdrh ** continues straight thru if the expression is true. 1632f5905aa7Sdrh ** 1633f5905aa7Sdrh ** If the expression evaluates to NULL (neither true nor false) then 1634f5905aa7Sdrh ** jump if jumpIfNull is true or fall through if jumpIfNull is false. 1635cce7d176Sdrh */ 16364adee20fSdanielk1977 void sqlite3ExprIfFalse(Parse *pParse, Expr *pExpr, int dest, int jumpIfNull){ 1637cce7d176Sdrh Vdbe *v = pParse->pVdbe; 1638cce7d176Sdrh int op = 0; 1639daffd0e5Sdrh if( v==0 || pExpr==0 ) return; 1640f2bc013cSdrh 1641f2bc013cSdrh /* The value of pExpr->op and op are related as follows: 1642f2bc013cSdrh ** 1643f2bc013cSdrh ** pExpr->op op 1644f2bc013cSdrh ** --------- ---------- 1645f2bc013cSdrh ** TK_ISNULL OP_NotNull 1646f2bc013cSdrh ** TK_NOTNULL OP_IsNull 1647f2bc013cSdrh ** TK_NE OP_Eq 1648f2bc013cSdrh ** TK_EQ OP_Ne 1649f2bc013cSdrh ** TK_GT OP_Le 1650f2bc013cSdrh ** TK_LE OP_Gt 1651f2bc013cSdrh ** TK_GE OP_Lt 1652f2bc013cSdrh ** TK_LT OP_Ge 1653f2bc013cSdrh ** 1654f2bc013cSdrh ** For other values of pExpr->op, op is undefined and unused. 1655f2bc013cSdrh ** The value of TK_ and OP_ constants are arranged such that we 1656f2bc013cSdrh ** can compute the mapping above using the following expression. 1657f2bc013cSdrh ** Assert()s verify that the computation is correct. 1658f2bc013cSdrh */ 1659f2bc013cSdrh op = ((pExpr->op+(TK_ISNULL&1))^1)-(TK_ISNULL&1); 1660f2bc013cSdrh 1661f2bc013cSdrh /* Verify correct alignment of TK_ and OP_ constants 1662f2bc013cSdrh */ 1663f2bc013cSdrh assert( pExpr->op!=TK_ISNULL || op==OP_NotNull ); 1664f2bc013cSdrh assert( pExpr->op!=TK_NOTNULL || op==OP_IsNull ); 1665f2bc013cSdrh assert( pExpr->op!=TK_NE || op==OP_Eq ); 1666f2bc013cSdrh assert( pExpr->op!=TK_EQ || op==OP_Ne ); 1667f2bc013cSdrh assert( pExpr->op!=TK_LT || op==OP_Ge ); 1668f2bc013cSdrh assert( pExpr->op!=TK_LE || op==OP_Gt ); 1669f2bc013cSdrh assert( pExpr->op!=TK_GT || op==OP_Le ); 1670f2bc013cSdrh assert( pExpr->op!=TK_GE || op==OP_Lt ); 1671f2bc013cSdrh 1672cce7d176Sdrh switch( pExpr->op ){ 1673cce7d176Sdrh case TK_AND: { 16744adee20fSdanielk1977 sqlite3ExprIfFalse(pParse, pExpr->pLeft, dest, jumpIfNull); 16754adee20fSdanielk1977 sqlite3ExprIfFalse(pParse, pExpr->pRight, dest, jumpIfNull); 1676cce7d176Sdrh break; 1677cce7d176Sdrh } 1678cce7d176Sdrh case TK_OR: { 16794adee20fSdanielk1977 int d2 = sqlite3VdbeMakeLabel(v); 16804adee20fSdanielk1977 sqlite3ExprIfTrue(pParse, pExpr->pLeft, d2, !jumpIfNull); 16814adee20fSdanielk1977 sqlite3ExprIfFalse(pParse, pExpr->pRight, dest, jumpIfNull); 16824adee20fSdanielk1977 sqlite3VdbeResolveLabel(v, d2); 1683cce7d176Sdrh break; 1684cce7d176Sdrh } 1685cce7d176Sdrh case TK_NOT: { 16864adee20fSdanielk1977 sqlite3ExprIfTrue(pParse, pExpr->pLeft, dest, jumpIfNull); 1687cce7d176Sdrh break; 1688cce7d176Sdrh } 1689cce7d176Sdrh case TK_LT: 1690cce7d176Sdrh case TK_LE: 1691cce7d176Sdrh case TK_GT: 1692cce7d176Sdrh case TK_GE: 1693cce7d176Sdrh case TK_NE: 1694cce7d176Sdrh case TK_EQ: { 16954adee20fSdanielk1977 sqlite3ExprCode(pParse, pExpr->pLeft); 16964adee20fSdanielk1977 sqlite3ExprCode(pParse, pExpr->pRight); 1697be5c89acSdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, dest, jumpIfNull); 1698cce7d176Sdrh break; 1699cce7d176Sdrh } 1700cce7d176Sdrh case TK_ISNULL: 1701cce7d176Sdrh case TK_NOTNULL: { 17024adee20fSdanielk1977 sqlite3ExprCode(pParse, pExpr->pLeft); 17034adee20fSdanielk1977 sqlite3VdbeAddOp(v, op, 1, dest); 1704cce7d176Sdrh break; 1705cce7d176Sdrh } 1706fef5208cSdrh case TK_BETWEEN: { 17070202b29eSdanielk1977 /* The expression is "x BETWEEN y AND z". It is implemented as: 17080202b29eSdanielk1977 ** 17090202b29eSdanielk1977 ** 1 IF (x >= y) GOTO 3 17100202b29eSdanielk1977 ** 2 GOTO <dest> 17110202b29eSdanielk1977 ** 3 IF (x > z) GOTO <dest> 17120202b29eSdanielk1977 */ 1713fef5208cSdrh int addr; 1714be5c89acSdrh Expr *pLeft = pExpr->pLeft; 1715be5c89acSdrh Expr *pRight = pExpr->pList->a[0].pExpr; 1716be5c89acSdrh sqlite3ExprCode(pParse, pLeft); 17174adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_Dup, 0, 0); 1718be5c89acSdrh sqlite3ExprCode(pParse, pRight); 17194adee20fSdanielk1977 addr = sqlite3VdbeCurrentAddr(v); 1720be5c89acSdrh codeCompare(pParse, pLeft, pRight, OP_Ge, addr+3, !jumpIfNull); 1721be5c89acSdrh 17224adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_Pop, 1, 0); 17234adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_Goto, 0, dest); 1724be5c89acSdrh pRight = pExpr->pList->a[1].pExpr; 1725be5c89acSdrh sqlite3ExprCode(pParse, pRight); 1726be5c89acSdrh codeCompare(pParse, pLeft, pRight, OP_Gt, dest, jumpIfNull); 1727fef5208cSdrh break; 1728fef5208cSdrh } 1729cce7d176Sdrh default: { 17304adee20fSdanielk1977 sqlite3ExprCode(pParse, pExpr); 17314adee20fSdanielk1977 sqlite3VdbeAddOp(v, OP_IfNot, jumpIfNull, dest); 1732cce7d176Sdrh break; 1733cce7d176Sdrh } 1734cce7d176Sdrh } 1735cce7d176Sdrh } 17362282792aSdrh 17372282792aSdrh /* 17382282792aSdrh ** Do a deep comparison of two expression trees. Return TRUE (non-zero) 17392282792aSdrh ** if they are identical and return FALSE if they differ in any way. 17402282792aSdrh */ 17414adee20fSdanielk1977 int sqlite3ExprCompare(Expr *pA, Expr *pB){ 17422282792aSdrh int i; 17432282792aSdrh if( pA==0 ){ 17442282792aSdrh return pB==0; 17452282792aSdrh }else if( pB==0 ){ 17462282792aSdrh return 0; 17472282792aSdrh } 17482282792aSdrh if( pA->op!=pB->op ) return 0; 17494adee20fSdanielk1977 if( !sqlite3ExprCompare(pA->pLeft, pB->pLeft) ) return 0; 17504adee20fSdanielk1977 if( !sqlite3ExprCompare(pA->pRight, pB->pRight) ) return 0; 17512282792aSdrh if( pA->pList ){ 17522282792aSdrh if( pB->pList==0 ) return 0; 17532282792aSdrh if( pA->pList->nExpr!=pB->pList->nExpr ) return 0; 17542282792aSdrh for(i=0; i<pA->pList->nExpr; i++){ 17554adee20fSdanielk1977 if( !sqlite3ExprCompare(pA->pList->a[i].pExpr, pB->pList->a[i].pExpr) ){ 17562282792aSdrh return 0; 17572282792aSdrh } 17582282792aSdrh } 17592282792aSdrh }else if( pB->pList ){ 17602282792aSdrh return 0; 17612282792aSdrh } 17622282792aSdrh if( pA->pSelect || pB->pSelect ) return 0; 17632f2c01e5Sdrh if( pA->iTable!=pB->iTable || pA->iColumn!=pB->iColumn ) return 0; 17642282792aSdrh if( pA->token.z ){ 17652282792aSdrh if( pB->token.z==0 ) return 0; 17666977fea8Sdrh if( pB->token.n!=pA->token.n ) return 0; 17674adee20fSdanielk1977 if( sqlite3StrNICmp(pA->token.z, pB->token.z, pB->token.n)!=0 ) return 0; 17682282792aSdrh } 17692282792aSdrh return 1; 17702282792aSdrh } 17712282792aSdrh 17722282792aSdrh /* 17732282792aSdrh ** Add a new element to the pParse->aAgg[] array and return its index. 17742282792aSdrh */ 17752282792aSdrh static int appendAggInfo(Parse *pParse){ 17762282792aSdrh if( (pParse->nAgg & 0x7)==0 ){ 17772282792aSdrh int amt = pParse->nAgg + 8; 17786d4abfbeSdrh AggExpr *aAgg = sqliteRealloc(pParse->aAgg, amt*sizeof(pParse->aAgg[0])); 17796d4abfbeSdrh if( aAgg==0 ){ 17802282792aSdrh return -1; 17812282792aSdrh } 17826d4abfbeSdrh pParse->aAgg = aAgg; 17832282792aSdrh } 17842282792aSdrh memset(&pParse->aAgg[pParse->nAgg], 0, sizeof(pParse->aAgg[0])); 17852282792aSdrh return pParse->nAgg++; 17862282792aSdrh } 17872282792aSdrh 17882282792aSdrh /* 17892282792aSdrh ** Analyze the given expression looking for aggregate functions and 17902282792aSdrh ** for variables that need to be added to the pParse->aAgg[] array. 17912282792aSdrh ** Make additional entries to the pParse->aAgg[] array as necessary. 17922282792aSdrh ** 17932282792aSdrh ** This routine should only be called after the expression has been 17944adee20fSdanielk1977 ** analyzed by sqlite3ExprResolveIds() and sqlite3ExprCheck(). 17952282792aSdrh ** 17962282792aSdrh ** If errors are seen, leave an error message in zErrMsg and return 17972282792aSdrh ** the number of errors. 17982282792aSdrh */ 17994adee20fSdanielk1977 int sqlite3ExprAnalyzeAggregates(Parse *pParse, Expr *pExpr){ 18002282792aSdrh int i; 18012282792aSdrh AggExpr *aAgg; 18022282792aSdrh int nErr = 0; 18032282792aSdrh 18042282792aSdrh if( pExpr==0 ) return 0; 18052282792aSdrh switch( pExpr->op ){ 1806967e8b73Sdrh case TK_COLUMN: { 18072282792aSdrh aAgg = pParse->aAgg; 18082282792aSdrh for(i=0; i<pParse->nAgg; i++){ 18092282792aSdrh if( aAgg[i].isAgg ) continue; 18102282792aSdrh if( aAgg[i].pExpr->iTable==pExpr->iTable 1811967e8b73Sdrh && aAgg[i].pExpr->iColumn==pExpr->iColumn ){ 18122282792aSdrh break; 18132282792aSdrh } 18142282792aSdrh } 18152282792aSdrh if( i>=pParse->nAgg ){ 18162282792aSdrh i = appendAggInfo(pParse); 18172282792aSdrh if( i<0 ) return 1; 18182282792aSdrh pParse->aAgg[i].isAgg = 0; 18192282792aSdrh pParse->aAgg[i].pExpr = pExpr; 18202282792aSdrh } 1821aaf88729Sdrh pExpr->iAgg = i; 18222282792aSdrh break; 18232282792aSdrh } 18242282792aSdrh case TK_AGG_FUNCTION: { 18252282792aSdrh aAgg = pParse->aAgg; 18262282792aSdrh for(i=0; i<pParse->nAgg; i++){ 18272282792aSdrh if( !aAgg[i].isAgg ) continue; 18284adee20fSdanielk1977 if( sqlite3ExprCompare(aAgg[i].pExpr, pExpr) ){ 18292282792aSdrh break; 18302282792aSdrh } 18312282792aSdrh } 18322282792aSdrh if( i>=pParse->nAgg ){ 1833d8123366Sdanielk1977 u8 enc = pParse->db->enc; 18342282792aSdrh i = appendAggInfo(pParse); 18352282792aSdrh if( i<0 ) return 1; 18362282792aSdrh pParse->aAgg[i].isAgg = 1; 18372282792aSdrh pParse->aAgg[i].pExpr = pExpr; 18384adee20fSdanielk1977 pParse->aAgg[i].pFunc = sqlite3FindFunction(pParse->db, 18396977fea8Sdrh pExpr->token.z, pExpr->token.n, 1840d8123366Sdanielk1977 pExpr->pList ? pExpr->pList->nExpr : 0, enc, 0); 18412282792aSdrh } 18422282792aSdrh pExpr->iAgg = i; 18432282792aSdrh break; 18442282792aSdrh } 18452282792aSdrh default: { 18462282792aSdrh if( pExpr->pLeft ){ 18474adee20fSdanielk1977 nErr = sqlite3ExprAnalyzeAggregates(pParse, pExpr->pLeft); 18482282792aSdrh } 18492282792aSdrh if( nErr==0 && pExpr->pRight ){ 18504adee20fSdanielk1977 nErr = sqlite3ExprAnalyzeAggregates(pParse, pExpr->pRight); 18512282792aSdrh } 18522282792aSdrh if( nErr==0 && pExpr->pList ){ 18532282792aSdrh int n = pExpr->pList->nExpr; 18542282792aSdrh int i; 18552282792aSdrh for(i=0; nErr==0 && i<n; i++){ 18564adee20fSdanielk1977 nErr = sqlite3ExprAnalyzeAggregates(pParse, pExpr->pList->a[i].pExpr); 18572282792aSdrh } 18582282792aSdrh } 18592282792aSdrh break; 18602282792aSdrh } 18612282792aSdrh } 18622282792aSdrh return nErr; 18632282792aSdrh } 18648e0a2f90Sdrh 18658e0a2f90Sdrh /* 1866d02eb1fdSdanielk1977 ** Locate a user function given a name, a number of arguments and a flag 1867d02eb1fdSdanielk1977 ** indicating whether the function prefers UTF-16 over UTF-8. Return a 1868d02eb1fdSdanielk1977 ** pointer to the FuncDef structure that defines that function, or return 1869d02eb1fdSdanielk1977 ** NULL if the function does not exist. 18708e0a2f90Sdrh ** 18710bce8354Sdrh ** If the createFlag argument is true, then a new (blank) FuncDef 18728e0a2f90Sdrh ** structure is created and liked into the "db" structure if a 18738e0a2f90Sdrh ** no matching function previously existed. When createFlag is true 18748e0a2f90Sdrh ** and the nArg parameter is -1, then only a function that accepts 18758e0a2f90Sdrh ** any number of arguments will be returned. 18768e0a2f90Sdrh ** 18778e0a2f90Sdrh ** If createFlag is false and nArg is -1, then the first valid 18788e0a2f90Sdrh ** function found is returned. A function is valid if either xFunc 18798e0a2f90Sdrh ** or xStep is non-zero. 1880d02eb1fdSdanielk1977 ** 1881d02eb1fdSdanielk1977 ** If createFlag is false, then a function with the required name and 1882d02eb1fdSdanielk1977 ** number of arguments may be returned even if the eTextRep flag does not 1883d02eb1fdSdanielk1977 ** match that requested. 18848e0a2f90Sdrh */ 18854adee20fSdanielk1977 FuncDef *sqlite3FindFunction( 18869bb575fdSdrh sqlite3 *db, /* An open database */ 18878e0a2f90Sdrh const char *zName, /* Name of the function. Not null-terminated */ 18888e0a2f90Sdrh int nName, /* Number of characters in the name */ 18898e0a2f90Sdrh int nArg, /* Number of arguments. -1 means any number */ 1890d8123366Sdanielk1977 u8 enc, /* Preferred text encoding */ 18918e0a2f90Sdrh int createFlag /* Create new entry if true and does not otherwise exist */ 18928e0a2f90Sdrh ){ 1893d02eb1fdSdanielk1977 FuncDef *p; /* Iterator variable */ 1894d02eb1fdSdanielk1977 FuncDef *pFirst; /* First function with this name */ 1895d02eb1fdSdanielk1977 FuncDef *pBest = 0; /* Best match found so far */ 1896d8123366Sdanielk1977 int bestmatch = 0; 1897d02eb1fdSdanielk1977 1898d8123366Sdanielk1977 1899d8123366Sdanielk1977 assert( enc==SQLITE_UTF8 || enc==SQLITE_UTF16LE || enc==SQLITE_UTF16BE ); 1900d02eb1fdSdanielk1977 if( nArg<-1 ) nArg = -1; 1901d02eb1fdSdanielk1977 1902d02eb1fdSdanielk1977 pFirst = (FuncDef*)sqlite3HashFind(&db->aFunc, zName, nName); 1903d02eb1fdSdanielk1977 for(p=pFirst; p; p=p->pNext){ 1904d8123366Sdanielk1977 /* During the search for the best function definition, bestmatch is set 1905d8123366Sdanielk1977 ** as follows to indicate the quality of the match with the definition 1906d8123366Sdanielk1977 ** pointed to by pBest: 1907d8123366Sdanielk1977 ** 1908d8123366Sdanielk1977 ** 0: pBest is NULL. No match has been found. 1909d8123366Sdanielk1977 ** 1: A variable arguments function that prefers UTF-8 when a UTF-16 1910d8123366Sdanielk1977 ** encoding is requested, or vice versa. 1911d8123366Sdanielk1977 ** 2: A variable arguments function that uses UTF-16BE when UTF-16LE is 1912d8123366Sdanielk1977 ** requested, or vice versa. 1913d8123366Sdanielk1977 ** 3: A variable arguments function using the same text encoding. 1914d8123366Sdanielk1977 ** 4: A function with the exact number of arguments requested that 1915d8123366Sdanielk1977 ** prefers UTF-8 when a UTF-16 encoding is requested, or vice versa. 1916d8123366Sdanielk1977 ** 5: A function with the exact number of arguments requested that 1917d8123366Sdanielk1977 ** prefers UTF-16LE when UTF-16BE is requested, or vice versa. 1918d8123366Sdanielk1977 ** 6: An exact match. 1919d8123366Sdanielk1977 ** 1920d8123366Sdanielk1977 ** A larger value of 'matchqual' indicates a more desirable match. 1921d8123366Sdanielk1977 */ 1922e12c17baSdanielk1977 if( p->nArg==-1 || p->nArg==nArg || nArg==-1 ){ 1923d8123366Sdanielk1977 int match = 1; /* Quality of this match */ 1924d8123366Sdanielk1977 if( p->nArg==nArg || nArg==-1 ){ 1925d8123366Sdanielk1977 match = 4; 19268e0a2f90Sdrh } 1927d8123366Sdanielk1977 if( enc==p->iPrefEnc ){ 1928d8123366Sdanielk1977 match += 2; 19298e0a2f90Sdrh } 1930d8123366Sdanielk1977 else if( (enc==SQLITE_UTF16LE && p->iPrefEnc==SQLITE_UTF16BE) || 1931d8123366Sdanielk1977 (enc==SQLITE_UTF16BE && p->iPrefEnc==SQLITE_UTF16LE) ){ 1932d8123366Sdanielk1977 match += 1; 1933d02eb1fdSdanielk1977 } 1934d8123366Sdanielk1977 1935d8123366Sdanielk1977 if( match>bestmatch ){ 1936d02eb1fdSdanielk1977 pBest = p; 1937d8123366Sdanielk1977 bestmatch = match; 1938d02eb1fdSdanielk1977 } 1939d02eb1fdSdanielk1977 } 1940d02eb1fdSdanielk1977 } 1941d02eb1fdSdanielk1977 1942d8123366Sdanielk1977 /* If the createFlag parameter is true, and the seach did not reveal an 1943d8123366Sdanielk1977 ** exact match for the name, number of arguments and encoding, then add a 1944d8123366Sdanielk1977 ** new entry to the hash table and return it. 1945d8123366Sdanielk1977 */ 1946d8123366Sdanielk1977 if( createFlag && bestmatch<6 && 1947d02eb1fdSdanielk1977 (pBest = sqliteMalloc(sizeof(*pBest)+nName+1)) ){ 1948d02eb1fdSdanielk1977 pBest->nArg = nArg; 1949d02eb1fdSdanielk1977 pBest->pNext = pFirst; 1950d02eb1fdSdanielk1977 pBest->zName = (char*)&pBest[1]; 1951d8123366Sdanielk1977 pBest->iPrefEnc = enc; 1952d02eb1fdSdanielk1977 memcpy(pBest->zName, zName, nName); 1953d02eb1fdSdanielk1977 pBest->zName[nName] = 0; 1954d02eb1fdSdanielk1977 sqlite3HashInsert(&db->aFunc, pBest->zName, nName, (void*)pBest); 1955d02eb1fdSdanielk1977 } 1956d02eb1fdSdanielk1977 1957d02eb1fdSdanielk1977 if( pBest && (pBest->xStep || pBest->xFunc || createFlag) ){ 1958d02eb1fdSdanielk1977 return pBest; 1959d02eb1fdSdanielk1977 } 19608e0a2f90Sdrh return 0; 19618e0a2f90Sdrh } 1962