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 */ 15cce7d176Sdrh #include "sqliteInt.h" 16a2e00042Sdrh 17e014a838Sdanielk1977 /* 18e014a838Sdanielk1977 ** Return the 'affinity' of the expression pExpr if any. 19e014a838Sdanielk1977 ** 20e014a838Sdanielk1977 ** If pExpr is a column, a reference to a column via an 'AS' alias, 21e014a838Sdanielk1977 ** or a sub-select with a column as the return value, then the 22e014a838Sdanielk1977 ** affinity of that column is returned. Otherwise, 0x00 is returned, 23e014a838Sdanielk1977 ** indicating no affinity for the expression. 24e014a838Sdanielk1977 ** 25e014a838Sdanielk1977 ** i.e. the WHERE clause expresssions in the following statements all 26e014a838Sdanielk1977 ** have an affinity: 27e014a838Sdanielk1977 ** 28e014a838Sdanielk1977 ** CREATE TABLE t1(a); 29e014a838Sdanielk1977 ** SELECT * FROM t1 WHERE a; 30e014a838Sdanielk1977 ** SELECT a AS b FROM t1 WHERE b; 31e014a838Sdanielk1977 ** SELECT * FROM t1 WHERE (select a from t1); 32e014a838Sdanielk1977 */ 33bf3b721fSdanielk1977 char sqlite3ExprAffinity(Expr *pExpr){ 34580c8c18Sdrh int op; 35580c8c18Sdrh pExpr = sqlite3ExprSkipCollate(pExpr); 36580c8c18Sdrh op = pExpr->op; 37487e262fSdrh if( op==TK_SELECT ){ 386ab3a2ecSdanielk1977 assert( pExpr->flags&EP_xIsSelect ); 396ab3a2ecSdanielk1977 return sqlite3ExprAffinity(pExpr->x.pSelect->pEList->a[0].pExpr); 40a37cdde0Sdanielk1977 } 41487e262fSdrh #ifndef SQLITE_OMIT_CAST 42487e262fSdrh if( op==TK_CAST ){ 4333e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 4433e619fcSdrh return sqlite3AffinityType(pExpr->u.zToken); 45487e262fSdrh } 46487e262fSdrh #endif 47259a455fSdanielk1977 if( (op==TK_AGG_COLUMN || op==TK_COLUMN || op==TK_REGISTER) 48259a455fSdanielk1977 && pExpr->pTab!=0 49259a455fSdanielk1977 ){ 507d10d5a6Sdrh /* op==TK_REGISTER && pExpr->pTab!=0 happens when pExpr was originally 517d10d5a6Sdrh ** a TK_COLUMN but was previously evaluated and cached in a register */ 527d10d5a6Sdrh int j = pExpr->iColumn; 537d10d5a6Sdrh if( j<0 ) return SQLITE_AFF_INTEGER; 547d10d5a6Sdrh assert( pExpr->pTab && j<pExpr->pTab->nCol ); 557d10d5a6Sdrh return pExpr->pTab->aCol[j].affinity; 567d10d5a6Sdrh } 57a37cdde0Sdanielk1977 return pExpr->affinity; 58a37cdde0Sdanielk1977 } 59a37cdde0Sdanielk1977 6053db1458Sdrh /* 618b4c40d8Sdrh ** Set the collating sequence for expression pExpr to be the collating 62ae80ddeaSdrh ** sequence named by pToken. Return a pointer to a new Expr node that 63ae80ddeaSdrh ** implements the COLLATE operator. 640a8a406eSdrh ** 650a8a406eSdrh ** If a memory allocation error occurs, that fact is recorded in pParse->db 660a8a406eSdrh ** and the pExpr parameter is returned unchanged. 678b4c40d8Sdrh */ 680a8a406eSdrh Expr *sqlite3ExprAddCollateToken(Parse *pParse, Expr *pExpr, Token *pCollName){ 690a8a406eSdrh if( pCollName->n>0 ){ 70ae80ddeaSdrh Expr *pNew = sqlite3ExprAlloc(pParse->db, TK_COLLATE, pCollName, 1); 71ae80ddeaSdrh if( pNew ){ 72ae80ddeaSdrh pNew->pLeft = pExpr; 73ae80ddeaSdrh pNew->flags |= EP_Collate; 740a8a406eSdrh pExpr = pNew; 75ae80ddeaSdrh } 760a8a406eSdrh } 770a8a406eSdrh return pExpr; 780a8a406eSdrh } 790a8a406eSdrh Expr *sqlite3ExprAddCollateString(Parse *pParse, Expr *pExpr, const char *zC){ 800a8a406eSdrh Token s; 81261d8a51Sdrh assert( zC!=0 ); 820a8a406eSdrh s.z = zC; 830a8a406eSdrh s.n = sqlite3Strlen30(s.z); 84261d8a51Sdrh return sqlite3ExprAddCollateToken(pParse, pExpr, &s); 850a8a406eSdrh } 860a8a406eSdrh 870a8a406eSdrh /* 88d91eba96Sdrh ** Skip over any TK_COLLATE and/or TK_AS operators at the root of 89d91eba96Sdrh ** an expression. 900a8a406eSdrh */ 910a8a406eSdrh Expr *sqlite3ExprSkipCollate(Expr *pExpr){ 92d91eba96Sdrh while( pExpr && (pExpr->op==TK_COLLATE || pExpr->op==TK_AS) ){ 93d91eba96Sdrh pExpr = pExpr->pLeft; 94d91eba96Sdrh } 950a8a406eSdrh return pExpr; 968b4c40d8Sdrh } 978b4c40d8Sdrh 988b4c40d8Sdrh /* 99ae80ddeaSdrh ** Return the collation sequence for the expression pExpr. If 100ae80ddeaSdrh ** there is no defined collating sequence, return NULL. 101ae80ddeaSdrh ** 102ae80ddeaSdrh ** The collating sequence might be determined by a COLLATE operator 103ae80ddeaSdrh ** or by the presence of a column with a defined collating sequence. 104ae80ddeaSdrh ** COLLATE operators take first precedence. Left operands take 105ae80ddeaSdrh ** precedence over right operands. 1060202b29eSdanielk1977 */ 1077cedc8d4Sdanielk1977 CollSeq *sqlite3ExprCollSeq(Parse *pParse, Expr *pExpr){ 108ae80ddeaSdrh sqlite3 *db = pParse->db; 1097cedc8d4Sdanielk1977 CollSeq *pColl = 0; 1107d10d5a6Sdrh Expr *p = pExpr; 111261d8a51Sdrh while( p ){ 112ae80ddeaSdrh int op = p->op; 113ae80ddeaSdrh if( op==TK_CAST || op==TK_UPLUS ){ 114ae80ddeaSdrh p = p->pLeft; 115ae80ddeaSdrh continue; 116ae80ddeaSdrh } 117261d8a51Sdrh assert( op!=TK_REGISTER || p->op2!=TK_COLLATE ); 118261d8a51Sdrh if( op==TK_COLLATE ){ 11962a66e70Sdrh if( db->init.busy ){ 12062a66e70Sdrh /* Do not report errors when parsing while the schema */ 12162a66e70Sdrh pColl = sqlite3FindCollSeq(db, ENC(db), p->u.zToken, 0); 12262a66e70Sdrh }else{ 1237a66da13Sdrh pColl = sqlite3GetCollSeq(pParse, ENC(db), 0, p->u.zToken); 12462a66e70Sdrh } 125ae80ddeaSdrh break; 126ae80ddeaSdrh } 127ae80ddeaSdrh if( p->pTab!=0 128ae80ddeaSdrh && (op==TK_AGG_COLUMN || op==TK_COLUMN 129ae80ddeaSdrh || op==TK_REGISTER || op==TK_TRIGGER) 130ae80ddeaSdrh ){ 1317d10d5a6Sdrh /* op==TK_REGISTER && p->pTab!=0 happens when pExpr was originally 1327d10d5a6Sdrh ** a TK_COLUMN but was previously evaluated and cached in a register */ 1337d10d5a6Sdrh int j = p->iColumn; 1347d10d5a6Sdrh if( j>=0 ){ 135ae80ddeaSdrh const char *zColl = p->pTab->aCol[j].zColl; 136c4a64facSdrh pColl = sqlite3FindCollSeq(db, ENC(db), zColl, 0); 1370202b29eSdanielk1977 } 1387d10d5a6Sdrh break; 1397d10d5a6Sdrh } 140ae80ddeaSdrh if( p->flags & EP_Collate ){ 141261d8a51Sdrh if( ALWAYS(p->pLeft) && (p->pLeft->flags & EP_Collate)!=0 ){ 1427d10d5a6Sdrh p = p->pLeft; 143ae80ddeaSdrh }else{ 144ae80ddeaSdrh p = p->pRight; 145ae80ddeaSdrh } 146ae80ddeaSdrh }else{ 147ae80ddeaSdrh break; 148ae80ddeaSdrh } 1490202b29eSdanielk1977 } 1507cedc8d4Sdanielk1977 if( sqlite3CheckCollSeq(pParse, pColl) ){ 1517cedc8d4Sdanielk1977 pColl = 0; 1527cedc8d4Sdanielk1977 } 1537cedc8d4Sdanielk1977 return pColl; 1540202b29eSdanielk1977 } 1550202b29eSdanielk1977 1560202b29eSdanielk1977 /* 157626a879aSdrh ** pExpr is an operand of a comparison operator. aff2 is the 158626a879aSdrh ** type affinity of the other operand. This routine returns the 15953db1458Sdrh ** type affinity that should be used for the comparison operator. 16053db1458Sdrh */ 161e014a838Sdanielk1977 char sqlite3CompareAffinity(Expr *pExpr, char aff2){ 162bf3b721fSdanielk1977 char aff1 = sqlite3ExprAffinity(pExpr); 163e014a838Sdanielk1977 if( aff1 && aff2 ){ 1648df447f0Sdrh /* Both sides of the comparison are columns. If one has numeric 1658df447f0Sdrh ** affinity, use that. Otherwise use no affinity. 166e014a838Sdanielk1977 */ 1678a51256cSdrh if( sqlite3IsNumericAffinity(aff1) || sqlite3IsNumericAffinity(aff2) ){ 168e014a838Sdanielk1977 return SQLITE_AFF_NUMERIC; 169e014a838Sdanielk1977 }else{ 170e014a838Sdanielk1977 return SQLITE_AFF_NONE; 171e014a838Sdanielk1977 } 172e014a838Sdanielk1977 }else if( !aff1 && !aff2 ){ 1735f6a87b3Sdrh /* Neither side of the comparison is a column. Compare the 1745f6a87b3Sdrh ** results directly. 175e014a838Sdanielk1977 */ 1765f6a87b3Sdrh return SQLITE_AFF_NONE; 177e014a838Sdanielk1977 }else{ 178e014a838Sdanielk1977 /* One side is a column, the other is not. Use the columns affinity. */ 179fe05af87Sdrh assert( aff1==0 || aff2==0 ); 180e014a838Sdanielk1977 return (aff1 + aff2); 181e014a838Sdanielk1977 } 182e014a838Sdanielk1977 } 183e014a838Sdanielk1977 18453db1458Sdrh /* 18553db1458Sdrh ** pExpr is a comparison operator. Return the type affinity that should 18653db1458Sdrh ** be applied to both operands prior to doing the comparison. 18753db1458Sdrh */ 188e014a838Sdanielk1977 static char comparisonAffinity(Expr *pExpr){ 189e014a838Sdanielk1977 char aff; 190e014a838Sdanielk1977 assert( pExpr->op==TK_EQ || pExpr->op==TK_IN || pExpr->op==TK_LT || 191e014a838Sdanielk1977 pExpr->op==TK_GT || pExpr->op==TK_GE || pExpr->op==TK_LE || 1926a2fe093Sdrh pExpr->op==TK_NE || pExpr->op==TK_IS || pExpr->op==TK_ISNOT ); 193e014a838Sdanielk1977 assert( pExpr->pLeft ); 194bf3b721fSdanielk1977 aff = sqlite3ExprAffinity(pExpr->pLeft); 195e014a838Sdanielk1977 if( pExpr->pRight ){ 196e014a838Sdanielk1977 aff = sqlite3CompareAffinity(pExpr->pRight, aff); 1976ab3a2ecSdanielk1977 }else if( ExprHasProperty(pExpr, EP_xIsSelect) ){ 1986ab3a2ecSdanielk1977 aff = sqlite3CompareAffinity(pExpr->x.pSelect->pEList->a[0].pExpr, aff); 1996ab3a2ecSdanielk1977 }else if( !aff ){ 200de087bd5Sdrh aff = SQLITE_AFF_NONE; 201e014a838Sdanielk1977 } 202e014a838Sdanielk1977 return aff; 203e014a838Sdanielk1977 } 204e014a838Sdanielk1977 205e014a838Sdanielk1977 /* 206e014a838Sdanielk1977 ** pExpr is a comparison expression, eg. '=', '<', IN(...) etc. 207e014a838Sdanielk1977 ** idx_affinity is the affinity of an indexed column. Return true 208e014a838Sdanielk1977 ** if the index with affinity idx_affinity may be used to implement 209e014a838Sdanielk1977 ** the comparison in pExpr. 210e014a838Sdanielk1977 */ 211e014a838Sdanielk1977 int sqlite3IndexAffinityOk(Expr *pExpr, char idx_affinity){ 212e014a838Sdanielk1977 char aff = comparisonAffinity(pExpr); 2138a51256cSdrh switch( aff ){ 2148a51256cSdrh case SQLITE_AFF_NONE: 2158a51256cSdrh return 1; 2168a51256cSdrh case SQLITE_AFF_TEXT: 2178a51256cSdrh return idx_affinity==SQLITE_AFF_TEXT; 2188a51256cSdrh default: 2198a51256cSdrh return sqlite3IsNumericAffinity(idx_affinity); 2208a51256cSdrh } 221e014a838Sdanielk1977 } 222e014a838Sdanielk1977 223a37cdde0Sdanielk1977 /* 22435573356Sdrh ** Return the P5 value that should be used for a binary comparison 225a37cdde0Sdanielk1977 ** opcode (OP_Eq, OP_Ge etc.) used to compare pExpr1 and pExpr2. 226a37cdde0Sdanielk1977 */ 22735573356Sdrh static u8 binaryCompareP5(Expr *pExpr1, Expr *pExpr2, int jumpIfNull){ 22835573356Sdrh u8 aff = (char)sqlite3ExprAffinity(pExpr2); 2291bd10f8aSdrh aff = (u8)sqlite3CompareAffinity(pExpr1, aff) | (u8)jumpIfNull; 23035573356Sdrh return aff; 231a37cdde0Sdanielk1977 } 232a37cdde0Sdanielk1977 233a2e00042Sdrh /* 2340202b29eSdanielk1977 ** Return a pointer to the collation sequence that should be used by 2350202b29eSdanielk1977 ** a binary comparison operator comparing pLeft and pRight. 2360202b29eSdanielk1977 ** 2370202b29eSdanielk1977 ** If the left hand expression has a collating sequence type, then it is 2380202b29eSdanielk1977 ** used. Otherwise the collation sequence for the right hand expression 2390202b29eSdanielk1977 ** is used, or the default (BINARY) if neither expression has a collating 2400202b29eSdanielk1977 ** type. 241bcbb04e5Sdanielk1977 ** 242bcbb04e5Sdanielk1977 ** Argument pRight (but not pLeft) may be a null pointer. In this case, 243bcbb04e5Sdanielk1977 ** it is not considered. 2440202b29eSdanielk1977 */ 245bcbb04e5Sdanielk1977 CollSeq *sqlite3BinaryCompareCollSeq( 246bcbb04e5Sdanielk1977 Parse *pParse, 247bcbb04e5Sdanielk1977 Expr *pLeft, 248bcbb04e5Sdanielk1977 Expr *pRight 249bcbb04e5Sdanielk1977 ){ 250ec41ddacSdrh CollSeq *pColl; 251ec41ddacSdrh assert( pLeft ); 252ae80ddeaSdrh if( pLeft->flags & EP_Collate ){ 253ae80ddeaSdrh pColl = sqlite3ExprCollSeq(pParse, pLeft); 254ae80ddeaSdrh }else if( pRight && (pRight->flags & EP_Collate)!=0 ){ 255ae80ddeaSdrh pColl = sqlite3ExprCollSeq(pParse, pRight); 256ec41ddacSdrh }else{ 257ec41ddacSdrh pColl = sqlite3ExprCollSeq(pParse, pLeft); 2580202b29eSdanielk1977 if( !pColl ){ 2597cedc8d4Sdanielk1977 pColl = sqlite3ExprCollSeq(pParse, pRight); 2600202b29eSdanielk1977 } 261ec41ddacSdrh } 2620202b29eSdanielk1977 return pColl; 2630202b29eSdanielk1977 } 2640202b29eSdanielk1977 2650202b29eSdanielk1977 /* 266be5c89acSdrh ** Generate code for a comparison operator. 267be5c89acSdrh */ 268be5c89acSdrh static int codeCompare( 269be5c89acSdrh Parse *pParse, /* The parsing (and code generating) context */ 270be5c89acSdrh Expr *pLeft, /* The left operand */ 271be5c89acSdrh Expr *pRight, /* The right operand */ 272be5c89acSdrh int opcode, /* The comparison opcode */ 27335573356Sdrh int in1, int in2, /* Register holding operands */ 274be5c89acSdrh int dest, /* Jump here if true. */ 275be5c89acSdrh int jumpIfNull /* If true, jump if either operand is NULL */ 276be5c89acSdrh ){ 27735573356Sdrh int p5; 27835573356Sdrh int addr; 27935573356Sdrh CollSeq *p4; 28035573356Sdrh 28135573356Sdrh p4 = sqlite3BinaryCompareCollSeq(pParse, pLeft, pRight); 28235573356Sdrh p5 = binaryCompareP5(pLeft, pRight, jumpIfNull); 28335573356Sdrh addr = sqlite3VdbeAddOp4(pParse->pVdbe, opcode, in2, dest, in1, 28435573356Sdrh (void*)p4, P4_COLLSEQ); 2851bd10f8aSdrh sqlite3VdbeChangeP5(pParse->pVdbe, (u8)p5); 28635573356Sdrh return addr; 287be5c89acSdrh } 288be5c89acSdrh 2894b5255acSdanielk1977 #if SQLITE_MAX_EXPR_DEPTH>0 2904b5255acSdanielk1977 /* 2914b5255acSdanielk1977 ** Check that argument nHeight is less than or equal to the maximum 2924b5255acSdanielk1977 ** expression depth allowed. If it is not, leave an error message in 2934b5255acSdanielk1977 ** pParse. 2944b5255acSdanielk1977 */ 2957d10d5a6Sdrh int sqlite3ExprCheckHeight(Parse *pParse, int nHeight){ 2964b5255acSdanielk1977 int rc = SQLITE_OK; 2974b5255acSdanielk1977 int mxHeight = pParse->db->aLimit[SQLITE_LIMIT_EXPR_DEPTH]; 2984b5255acSdanielk1977 if( nHeight>mxHeight ){ 2994b5255acSdanielk1977 sqlite3ErrorMsg(pParse, 3004b5255acSdanielk1977 "Expression tree is too large (maximum depth %d)", mxHeight 3014b5255acSdanielk1977 ); 3024b5255acSdanielk1977 rc = SQLITE_ERROR; 3034b5255acSdanielk1977 } 3044b5255acSdanielk1977 return rc; 3054b5255acSdanielk1977 } 3064b5255acSdanielk1977 3074b5255acSdanielk1977 /* The following three functions, heightOfExpr(), heightOfExprList() 3084b5255acSdanielk1977 ** and heightOfSelect(), are used to determine the maximum height 3094b5255acSdanielk1977 ** of any expression tree referenced by the structure passed as the 3104b5255acSdanielk1977 ** first argument. 3114b5255acSdanielk1977 ** 3124b5255acSdanielk1977 ** If this maximum height is greater than the current value pointed 3134b5255acSdanielk1977 ** to by pnHeight, the second parameter, then set *pnHeight to that 3144b5255acSdanielk1977 ** value. 3154b5255acSdanielk1977 */ 3164b5255acSdanielk1977 static void heightOfExpr(Expr *p, int *pnHeight){ 3174b5255acSdanielk1977 if( p ){ 3184b5255acSdanielk1977 if( p->nHeight>*pnHeight ){ 3194b5255acSdanielk1977 *pnHeight = p->nHeight; 3204b5255acSdanielk1977 } 3214b5255acSdanielk1977 } 3224b5255acSdanielk1977 } 3234b5255acSdanielk1977 static void heightOfExprList(ExprList *p, int *pnHeight){ 3244b5255acSdanielk1977 if( p ){ 3254b5255acSdanielk1977 int i; 3264b5255acSdanielk1977 for(i=0; i<p->nExpr; i++){ 3274b5255acSdanielk1977 heightOfExpr(p->a[i].pExpr, pnHeight); 3284b5255acSdanielk1977 } 3294b5255acSdanielk1977 } 3304b5255acSdanielk1977 } 3314b5255acSdanielk1977 static void heightOfSelect(Select *p, int *pnHeight){ 3324b5255acSdanielk1977 if( p ){ 3334b5255acSdanielk1977 heightOfExpr(p->pWhere, pnHeight); 3344b5255acSdanielk1977 heightOfExpr(p->pHaving, pnHeight); 3354b5255acSdanielk1977 heightOfExpr(p->pLimit, pnHeight); 3364b5255acSdanielk1977 heightOfExpr(p->pOffset, pnHeight); 3374b5255acSdanielk1977 heightOfExprList(p->pEList, pnHeight); 3384b5255acSdanielk1977 heightOfExprList(p->pGroupBy, pnHeight); 3394b5255acSdanielk1977 heightOfExprList(p->pOrderBy, pnHeight); 3404b5255acSdanielk1977 heightOfSelect(p->pPrior, pnHeight); 3414b5255acSdanielk1977 } 3424b5255acSdanielk1977 } 3434b5255acSdanielk1977 3444b5255acSdanielk1977 /* 3454b5255acSdanielk1977 ** Set the Expr.nHeight variable in the structure passed as an 3464b5255acSdanielk1977 ** argument. An expression with no children, Expr.pList or 3474b5255acSdanielk1977 ** Expr.pSelect member has a height of 1. Any other expression 3484b5255acSdanielk1977 ** has a height equal to the maximum height of any other 3494b5255acSdanielk1977 ** referenced Expr plus one. 3504b5255acSdanielk1977 */ 3514b5255acSdanielk1977 static void exprSetHeight(Expr *p){ 3524b5255acSdanielk1977 int nHeight = 0; 3534b5255acSdanielk1977 heightOfExpr(p->pLeft, &nHeight); 3544b5255acSdanielk1977 heightOfExpr(p->pRight, &nHeight); 3556ab3a2ecSdanielk1977 if( ExprHasProperty(p, EP_xIsSelect) ){ 3566ab3a2ecSdanielk1977 heightOfSelect(p->x.pSelect, &nHeight); 3576ab3a2ecSdanielk1977 }else{ 3586ab3a2ecSdanielk1977 heightOfExprList(p->x.pList, &nHeight); 3596ab3a2ecSdanielk1977 } 3604b5255acSdanielk1977 p->nHeight = nHeight + 1; 3614b5255acSdanielk1977 } 3624b5255acSdanielk1977 3634b5255acSdanielk1977 /* 3644b5255acSdanielk1977 ** Set the Expr.nHeight variable using the exprSetHeight() function. If 3654b5255acSdanielk1977 ** the height is greater than the maximum allowed expression depth, 3664b5255acSdanielk1977 ** leave an error in pParse. 3674b5255acSdanielk1977 */ 3684b5255acSdanielk1977 void sqlite3ExprSetHeight(Parse *pParse, Expr *p){ 3694b5255acSdanielk1977 exprSetHeight(p); 3707d10d5a6Sdrh sqlite3ExprCheckHeight(pParse, p->nHeight); 3714b5255acSdanielk1977 } 3724b5255acSdanielk1977 3734b5255acSdanielk1977 /* 3744b5255acSdanielk1977 ** Return the maximum height of any expression tree referenced 3754b5255acSdanielk1977 ** by the select statement passed as an argument. 3764b5255acSdanielk1977 */ 3774b5255acSdanielk1977 int sqlite3SelectExprHeight(Select *p){ 3784b5255acSdanielk1977 int nHeight = 0; 3794b5255acSdanielk1977 heightOfSelect(p, &nHeight); 3804b5255acSdanielk1977 return nHeight; 3814b5255acSdanielk1977 } 3824b5255acSdanielk1977 #else 3834b5255acSdanielk1977 #define exprSetHeight(y) 3844b5255acSdanielk1977 #endif /* SQLITE_MAX_EXPR_DEPTH>0 */ 3854b5255acSdanielk1977 386be5c89acSdrh /* 387b7916a78Sdrh ** This routine is the core allocator for Expr nodes. 388b7916a78Sdrh ** 389a76b5dfcSdrh ** Construct a new expression node and return a pointer to it. Memory 390b7916a78Sdrh ** for this node and for the pToken argument is a single allocation 391b7916a78Sdrh ** obtained from sqlite3DbMalloc(). The calling function 392a76b5dfcSdrh ** is responsible for making sure the node eventually gets freed. 393b7916a78Sdrh ** 394b7916a78Sdrh ** If dequote is true, then the token (if it exists) is dequoted. 395b7916a78Sdrh ** If dequote is false, no dequoting is performance. The deQuote 396b7916a78Sdrh ** parameter is ignored if pToken is NULL or if the token does not 397b7916a78Sdrh ** appear to be quoted. If the quotes were of the form "..." (double-quotes) 398b7916a78Sdrh ** then the EP_DblQuoted flag is set on the expression node. 39933e619fcSdrh ** 40033e619fcSdrh ** Special case: If op==TK_INTEGER and pToken points to a string that 40133e619fcSdrh ** can be translated into a 32-bit integer, then the token is not 40233e619fcSdrh ** stored in u.zToken. Instead, the integer values is written 40333e619fcSdrh ** into u.iValue and the EP_IntValue flag is set. No extra storage 40433e619fcSdrh ** is allocated to hold the integer text and the dequote flag is ignored. 405a76b5dfcSdrh */ 406b7916a78Sdrh Expr *sqlite3ExprAlloc( 407a1644fd8Sdanielk1977 sqlite3 *db, /* Handle for sqlite3DbMallocZero() (may be null) */ 40817435752Sdrh int op, /* Expression opcode */ 409b7916a78Sdrh const Token *pToken, /* Token argument. Might be NULL */ 410b7916a78Sdrh int dequote /* True to dequote */ 41117435752Sdrh ){ 412a76b5dfcSdrh Expr *pNew; 41333e619fcSdrh int nExtra = 0; 414cf697396Sshane int iValue = 0; 415b7916a78Sdrh 416b7916a78Sdrh if( pToken ){ 41733e619fcSdrh if( op!=TK_INTEGER || pToken->z==0 41833e619fcSdrh || sqlite3GetInt32(pToken->z, &iValue)==0 ){ 419b7916a78Sdrh nExtra = pToken->n+1; 420d50ffc41Sdrh assert( iValue>=0 ); 42133e619fcSdrh } 422a76b5dfcSdrh } 423b7916a78Sdrh pNew = sqlite3DbMallocZero(db, sizeof(Expr)+nExtra); 424b7916a78Sdrh if( pNew ){ 4251bd10f8aSdrh pNew->op = (u8)op; 426a58fdfb1Sdanielk1977 pNew->iAgg = -1; 427a76b5dfcSdrh if( pToken ){ 42833e619fcSdrh if( nExtra==0 ){ 42933e619fcSdrh pNew->flags |= EP_IntValue; 43033e619fcSdrh pNew->u.iValue = iValue; 43133e619fcSdrh }else{ 432d9da78a2Sdrh int c; 43333e619fcSdrh pNew->u.zToken = (char*)&pNew[1]; 434b07028f7Sdrh assert( pToken->z!=0 || pToken->n==0 ); 435b07028f7Sdrh if( pToken->n ) memcpy(pNew->u.zToken, pToken->z, pToken->n); 43633e619fcSdrh pNew->u.zToken[pToken->n] = 0; 437b7916a78Sdrh if( dequote && nExtra>=3 438d9da78a2Sdrh && ((c = pToken->z[0])=='\'' || c=='"' || c=='[' || c=='`') ){ 43933e619fcSdrh sqlite3Dequote(pNew->u.zToken); 44024fb627aSdrh if( c=='"' ) pNew->flags |= EP_DblQuoted; 441a34001c9Sdrh } 442a34001c9Sdrh } 44333e619fcSdrh } 444b7916a78Sdrh #if SQLITE_MAX_EXPR_DEPTH>0 445b7916a78Sdrh pNew->nHeight = 1; 446b7916a78Sdrh #endif 447a34001c9Sdrh } 448a76b5dfcSdrh return pNew; 449a76b5dfcSdrh } 450a76b5dfcSdrh 451a76b5dfcSdrh /* 452b7916a78Sdrh ** Allocate a new expression node from a zero-terminated token that has 453b7916a78Sdrh ** already been dequoted. 454b7916a78Sdrh */ 455b7916a78Sdrh Expr *sqlite3Expr( 456b7916a78Sdrh sqlite3 *db, /* Handle for sqlite3DbMallocZero() (may be null) */ 457b7916a78Sdrh int op, /* Expression opcode */ 458b7916a78Sdrh const char *zToken /* Token argument. Might be NULL */ 459b7916a78Sdrh ){ 460b7916a78Sdrh Token x; 461b7916a78Sdrh x.z = zToken; 462b7916a78Sdrh x.n = zToken ? sqlite3Strlen30(zToken) : 0; 463b7916a78Sdrh return sqlite3ExprAlloc(db, op, &x, 0); 464b7916a78Sdrh } 465b7916a78Sdrh 466b7916a78Sdrh /* 467b7916a78Sdrh ** Attach subtrees pLeft and pRight to the Expr node pRoot. 468b7916a78Sdrh ** 469b7916a78Sdrh ** If pRoot==NULL that means that a memory allocation error has occurred. 470b7916a78Sdrh ** In that case, delete the subtrees pLeft and pRight. 471b7916a78Sdrh */ 472b7916a78Sdrh void sqlite3ExprAttachSubtrees( 473b7916a78Sdrh sqlite3 *db, 474b7916a78Sdrh Expr *pRoot, 475b7916a78Sdrh Expr *pLeft, 476b7916a78Sdrh Expr *pRight 477b7916a78Sdrh ){ 478b7916a78Sdrh if( pRoot==0 ){ 479b7916a78Sdrh assert( db->mallocFailed ); 480b7916a78Sdrh sqlite3ExprDelete(db, pLeft); 481b7916a78Sdrh sqlite3ExprDelete(db, pRight); 482b7916a78Sdrh }else{ 483b7916a78Sdrh if( pRight ){ 484b7916a78Sdrh pRoot->pRight = pRight; 485ae80ddeaSdrh pRoot->flags |= EP_Collate & pRight->flags; 486b7916a78Sdrh } 487b7916a78Sdrh if( pLeft ){ 488b7916a78Sdrh pRoot->pLeft = pLeft; 489ae80ddeaSdrh pRoot->flags |= EP_Collate & pLeft->flags; 490b7916a78Sdrh } 491b7916a78Sdrh exprSetHeight(pRoot); 492b7916a78Sdrh } 493b7916a78Sdrh } 494b7916a78Sdrh 495b7916a78Sdrh /* 496bf664469Sdrh ** Allocate a Expr node which joins as many as two subtrees. 497b7916a78Sdrh ** 498bf664469Sdrh ** One or both of the subtrees can be NULL. Return a pointer to the new 499bf664469Sdrh ** Expr node. Or, if an OOM error occurs, set pParse->db->mallocFailed, 500bf664469Sdrh ** free the subtrees and return NULL. 501206f3d96Sdrh */ 50217435752Sdrh Expr *sqlite3PExpr( 50317435752Sdrh Parse *pParse, /* Parsing context */ 50417435752Sdrh int op, /* Expression opcode */ 50517435752Sdrh Expr *pLeft, /* Left operand */ 50617435752Sdrh Expr *pRight, /* Right operand */ 50717435752Sdrh const Token *pToken /* Argument token */ 50817435752Sdrh ){ 5095fb52caaSdrh Expr *p; 5105fb52caaSdrh if( op==TK_AND && pLeft && pRight ){ 5115fb52caaSdrh /* Take advantage of short-circuit false optimization for AND */ 5125fb52caaSdrh p = sqlite3ExprAnd(pParse->db, pLeft, pRight); 5135fb52caaSdrh }else{ 5145fb52caaSdrh p = sqlite3ExprAlloc(pParse->db, op, pToken, 1); 515b7916a78Sdrh sqlite3ExprAttachSubtrees(pParse->db, p, pLeft, pRight); 5165fb52caaSdrh } 5172b359bdbSdan if( p ) { 5182b359bdbSdan sqlite3ExprCheckHeight(pParse, p->nHeight); 5192b359bdbSdan } 5204e0cff60Sdrh return p; 5214e0cff60Sdrh } 5224e0cff60Sdrh 5234e0cff60Sdrh /* 5245fb52caaSdrh ** Return 1 if an expression must be FALSE in all cases and 0 if the 5255fb52caaSdrh ** expression might be true. This is an optimization. If is OK to 5265fb52caaSdrh ** return 0 here even if the expression really is always false (a 5275fb52caaSdrh ** false negative). But it is a bug to return 1 if the expression 5285fb52caaSdrh ** might be true in some rare circumstances (a false positive.) 5295fb52caaSdrh ** 5305fb52caaSdrh ** Note that if the expression is part of conditional for a 5315fb52caaSdrh ** LEFT JOIN, then we cannot determine at compile-time whether or not 5325fb52caaSdrh ** is it true or false, so always return 0. 5335fb52caaSdrh */ 5345fb52caaSdrh static int exprAlwaysFalse(Expr *p){ 5355fb52caaSdrh int v = 0; 5365fb52caaSdrh if( ExprHasProperty(p, EP_FromJoin) ) return 0; 5375fb52caaSdrh if( !sqlite3ExprIsInteger(p, &v) ) return 0; 5385fb52caaSdrh return v==0; 5395fb52caaSdrh } 5405fb52caaSdrh 5415fb52caaSdrh /* 54291bb0eedSdrh ** Join two expressions using an AND operator. If either expression is 54391bb0eedSdrh ** NULL, then just return the other expression. 5445fb52caaSdrh ** 5455fb52caaSdrh ** If one side or the other of the AND is known to be false, then instead 5465fb52caaSdrh ** of returning an AND expression, just return a constant expression with 5475fb52caaSdrh ** a value of false. 54891bb0eedSdrh */ 5491e536953Sdanielk1977 Expr *sqlite3ExprAnd(sqlite3 *db, Expr *pLeft, Expr *pRight){ 55091bb0eedSdrh if( pLeft==0 ){ 55191bb0eedSdrh return pRight; 55291bb0eedSdrh }else if( pRight==0 ){ 55391bb0eedSdrh return pLeft; 5545fb52caaSdrh }else if( exprAlwaysFalse(pLeft) || exprAlwaysFalse(pRight) ){ 5555fb52caaSdrh sqlite3ExprDelete(db, pLeft); 5565fb52caaSdrh sqlite3ExprDelete(db, pRight); 5575fb52caaSdrh return sqlite3ExprAlloc(db, TK_INTEGER, &sqlite3IntTokens[0], 0); 55891bb0eedSdrh }else{ 559b7916a78Sdrh Expr *pNew = sqlite3ExprAlloc(db, TK_AND, 0, 0); 560b7916a78Sdrh sqlite3ExprAttachSubtrees(db, pNew, pLeft, pRight); 561b7916a78Sdrh return pNew; 562a76b5dfcSdrh } 563a76b5dfcSdrh } 564a76b5dfcSdrh 565a76b5dfcSdrh /* 566a76b5dfcSdrh ** Construct a new expression node for a function with multiple 567a76b5dfcSdrh ** arguments. 568a76b5dfcSdrh */ 56917435752Sdrh Expr *sqlite3ExprFunction(Parse *pParse, ExprList *pList, Token *pToken){ 570a76b5dfcSdrh Expr *pNew; 571633e6d57Sdrh sqlite3 *db = pParse->db; 5724b202ae2Sdanielk1977 assert( pToken ); 573b7916a78Sdrh pNew = sqlite3ExprAlloc(db, TK_FUNCTION, pToken, 1); 574a76b5dfcSdrh if( pNew==0 ){ 575d9da78a2Sdrh sqlite3ExprListDelete(db, pList); /* Avoid memory leak when malloc fails */ 576a76b5dfcSdrh return 0; 577a76b5dfcSdrh } 5786ab3a2ecSdanielk1977 pNew->x.pList = pList; 5796ab3a2ecSdanielk1977 assert( !ExprHasProperty(pNew, EP_xIsSelect) ); 5804b5255acSdanielk1977 sqlite3ExprSetHeight(pParse, pNew); 581a76b5dfcSdrh return pNew; 582a76b5dfcSdrh } 583a76b5dfcSdrh 584a76b5dfcSdrh /* 585fa6bc000Sdrh ** Assign a variable number to an expression that encodes a wildcard 586fa6bc000Sdrh ** in the original SQL statement. 587fa6bc000Sdrh ** 588fa6bc000Sdrh ** Wildcards consisting of a single "?" are assigned the next sequential 589fa6bc000Sdrh ** variable number. 590fa6bc000Sdrh ** 591fa6bc000Sdrh ** Wildcards of the form "?nnn" are assigned the number "nnn". We make 592fa6bc000Sdrh ** sure "nnn" is not too be to avoid a denial of service attack when 593fa6bc000Sdrh ** the SQL statement comes from an external source. 594fa6bc000Sdrh ** 59551f49f17Sdrh ** Wildcards of the form ":aaa", "@aaa", or "$aaa" are assigned the same number 596fa6bc000Sdrh ** as the previous instance of the same wildcard. Or if this is the first 597fa6bc000Sdrh ** instance of the wildcard, the next sequenial variable number is 598fa6bc000Sdrh ** assigned. 599fa6bc000Sdrh */ 600fa6bc000Sdrh void sqlite3ExprAssignVarNumber(Parse *pParse, Expr *pExpr){ 60117435752Sdrh sqlite3 *db = pParse->db; 602b7916a78Sdrh const char *z; 60317435752Sdrh 604fa6bc000Sdrh if( pExpr==0 ) return; 60533e619fcSdrh assert( !ExprHasAnyProperty(pExpr, EP_IntValue|EP_Reduced|EP_TokenOnly) ); 60633e619fcSdrh z = pExpr->u.zToken; 607b7916a78Sdrh assert( z!=0 ); 608b7916a78Sdrh assert( z[0]!=0 ); 609b7916a78Sdrh if( z[1]==0 ){ 610fa6bc000Sdrh /* Wildcard of the form "?". Assign the next variable number */ 611b7916a78Sdrh assert( z[0]=='?' ); 6128677d308Sdrh pExpr->iColumn = (ynVar)(++pParse->nVar); 613124c0b49Sdrh }else{ 614124c0b49Sdrh ynVar x = 0; 615124c0b49Sdrh u32 n = sqlite3Strlen30(z); 616124c0b49Sdrh if( z[0]=='?' ){ 617fa6bc000Sdrh /* Wildcard of the form "?nnn". Convert "nnn" to an integer and 618fa6bc000Sdrh ** use it as the variable number */ 619c8d735aeSdan i64 i; 620124c0b49Sdrh int bOk = 0==sqlite3Atoi64(&z[1], &i, n-1, SQLITE_UTF8); 621124c0b49Sdrh pExpr->iColumn = x = (ynVar)i; 622c5499befSdrh testcase( i==0 ); 623c5499befSdrh testcase( i==1 ); 624c5499befSdrh testcase( i==db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER]-1 ); 625c5499befSdrh testcase( i==db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER] ); 626c8d735aeSdan if( bOk==0 || i<1 || i>db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER] ){ 627fa6bc000Sdrh sqlite3ErrorMsg(pParse, "variable number must be between ?1 and ?%d", 628bb4957f8Sdrh db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER]); 629124c0b49Sdrh x = 0; 630fa6bc000Sdrh } 631fa6bc000Sdrh if( i>pParse->nVar ){ 6321df2db7fSshaneh pParse->nVar = (int)i; 633fa6bc000Sdrh } 634fa6bc000Sdrh }else{ 63551f49f17Sdrh /* Wildcards like ":aaa", "$aaa" or "@aaa". Reuse the same variable 636fa6bc000Sdrh ** number as the prior appearance of the same name, or if the name 637fa6bc000Sdrh ** has never appeared before, reuse the same variable number 638fa6bc000Sdrh */ 639124c0b49Sdrh ynVar i; 640124c0b49Sdrh for(i=0; i<pParse->nzVar; i++){ 641503a686eSdrh if( pParse->azVar[i] && strcmp(pParse->azVar[i],z)==0 ){ 642124c0b49Sdrh pExpr->iColumn = x = (ynVar)i+1; 643fa6bc000Sdrh break; 644fa6bc000Sdrh } 645fa6bc000Sdrh } 646124c0b49Sdrh if( x==0 ) x = pExpr->iColumn = (ynVar)(++pParse->nVar); 647fa6bc000Sdrh } 648124c0b49Sdrh if( x>0 ){ 649124c0b49Sdrh if( x>pParse->nzVar ){ 650124c0b49Sdrh char **a; 651124c0b49Sdrh a = sqlite3DbRealloc(db, pParse->azVar, x*sizeof(a[0])); 652124c0b49Sdrh if( a==0 ) return; /* Error reported through db->mallocFailed */ 653124c0b49Sdrh pParse->azVar = a; 654124c0b49Sdrh memset(&a[pParse->nzVar], 0, (x-pParse->nzVar)*sizeof(a[0])); 655124c0b49Sdrh pParse->nzVar = x; 656124c0b49Sdrh } 657124c0b49Sdrh if( z[0]!='?' || pParse->azVar[x-1]==0 ){ 658124c0b49Sdrh sqlite3DbFree(db, pParse->azVar[x-1]); 659124c0b49Sdrh pParse->azVar[x-1] = sqlite3DbStrNDup(db, z, n); 660fa6bc000Sdrh } 661fa6bc000Sdrh } 662fa6bc000Sdrh } 663bb4957f8Sdrh if( !pParse->nErr && pParse->nVar>db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER] ){ 664832b2664Sdanielk1977 sqlite3ErrorMsg(pParse, "too many SQL variables"); 665832b2664Sdanielk1977 } 666fa6bc000Sdrh } 667fa6bc000Sdrh 668fa6bc000Sdrh /* 669f6963f99Sdan ** Recursively delete an expression tree. 670a2e00042Sdrh */ 671f6963f99Sdan void sqlite3ExprDelete(sqlite3 *db, Expr *p){ 672f6963f99Sdan if( p==0 ) return; 673d50ffc41Sdrh /* Sanity check: Assert that the IntValue is non-negative if it exists */ 674d50ffc41Sdrh assert( !ExprHasProperty(p, EP_IntValue) || p->u.iValue>=0 ); 675b7916a78Sdrh if( !ExprHasAnyProperty(p, EP_TokenOnly) ){ 676633e6d57Sdrh sqlite3ExprDelete(db, p->pLeft); 677633e6d57Sdrh sqlite3ExprDelete(db, p->pRight); 67833e619fcSdrh if( !ExprHasProperty(p, EP_Reduced) && (p->flags2 & EP2_MallocedToken)!=0 ){ 67933e619fcSdrh sqlite3DbFree(db, p->u.zToken); 6806ab3a2ecSdanielk1977 } 6816ab3a2ecSdanielk1977 if( ExprHasProperty(p, EP_xIsSelect) ){ 6826ab3a2ecSdanielk1977 sqlite3SelectDelete(db, p->x.pSelect); 6836ab3a2ecSdanielk1977 }else{ 6846ab3a2ecSdanielk1977 sqlite3ExprListDelete(db, p->x.pList); 6856ab3a2ecSdanielk1977 } 6866ab3a2ecSdanielk1977 } 68733e619fcSdrh if( !ExprHasProperty(p, EP_Static) ){ 688633e6d57Sdrh sqlite3DbFree(db, p); 689a2e00042Sdrh } 69033e619fcSdrh } 691a2e00042Sdrh 692d2687b77Sdrh /* 6936ab3a2ecSdanielk1977 ** Return the number of bytes allocated for the expression structure 6946ab3a2ecSdanielk1977 ** passed as the first argument. This is always one of EXPR_FULLSIZE, 6956ab3a2ecSdanielk1977 ** EXPR_REDUCEDSIZE or EXPR_TOKENONLYSIZE. 6966ab3a2ecSdanielk1977 */ 6976ab3a2ecSdanielk1977 static int exprStructSize(Expr *p){ 6986ab3a2ecSdanielk1977 if( ExprHasProperty(p, EP_TokenOnly) ) return EXPR_TOKENONLYSIZE; 6996ab3a2ecSdanielk1977 if( ExprHasProperty(p, EP_Reduced) ) return EXPR_REDUCEDSIZE; 7006ab3a2ecSdanielk1977 return EXPR_FULLSIZE; 7016ab3a2ecSdanielk1977 } 7026ab3a2ecSdanielk1977 7036ab3a2ecSdanielk1977 /* 70433e619fcSdrh ** The dupedExpr*Size() routines each return the number of bytes required 70533e619fcSdrh ** to store a copy of an expression or expression tree. They differ in 70633e619fcSdrh ** how much of the tree is measured. 70733e619fcSdrh ** 70833e619fcSdrh ** dupedExprStructSize() Size of only the Expr structure 70933e619fcSdrh ** dupedExprNodeSize() Size of Expr + space for token 71033e619fcSdrh ** dupedExprSize() Expr + token + subtree components 71133e619fcSdrh ** 71233e619fcSdrh *************************************************************************** 71333e619fcSdrh ** 71433e619fcSdrh ** The dupedExprStructSize() function returns two values OR-ed together: 71533e619fcSdrh ** (1) the space required for a copy of the Expr structure only and 71633e619fcSdrh ** (2) the EP_xxx flags that indicate what the structure size should be. 71733e619fcSdrh ** The return values is always one of: 71833e619fcSdrh ** 71933e619fcSdrh ** EXPR_FULLSIZE 72033e619fcSdrh ** EXPR_REDUCEDSIZE | EP_Reduced 72133e619fcSdrh ** EXPR_TOKENONLYSIZE | EP_TokenOnly 72233e619fcSdrh ** 72333e619fcSdrh ** The size of the structure can be found by masking the return value 72433e619fcSdrh ** of this routine with 0xfff. The flags can be found by masking the 72533e619fcSdrh ** return value with EP_Reduced|EP_TokenOnly. 72633e619fcSdrh ** 72733e619fcSdrh ** Note that with flags==EXPRDUP_REDUCE, this routines works on full-size 72833e619fcSdrh ** (unreduced) Expr objects as they or originally constructed by the parser. 72933e619fcSdrh ** During expression analysis, extra information is computed and moved into 73033e619fcSdrh ** later parts of teh Expr object and that extra information might get chopped 73133e619fcSdrh ** off if the expression is reduced. Note also that it does not work to 73233e619fcSdrh ** make a EXPRDUP_REDUCE copy of a reduced expression. It is only legal 73333e619fcSdrh ** to reduce a pristine expression tree from the parser. The implementation 73433e619fcSdrh ** of dupedExprStructSize() contain multiple assert() statements that attempt 73533e619fcSdrh ** to enforce this constraint. 7366ab3a2ecSdanielk1977 */ 7376ab3a2ecSdanielk1977 static int dupedExprStructSize(Expr *p, int flags){ 7386ab3a2ecSdanielk1977 int nSize; 73933e619fcSdrh assert( flags==EXPRDUP_REDUCE || flags==0 ); /* Only one flag value allowed */ 7406ab3a2ecSdanielk1977 if( 0==(flags&EXPRDUP_REDUCE) ){ 7416ab3a2ecSdanielk1977 nSize = EXPR_FULLSIZE; 7426ab3a2ecSdanielk1977 }else{ 74333e619fcSdrh assert( !ExprHasAnyProperty(p, EP_TokenOnly|EP_Reduced) ); 74433e619fcSdrh assert( !ExprHasProperty(p, EP_FromJoin) ); 74533e619fcSdrh assert( (p->flags2 & EP2_MallocedToken)==0 ); 74633e619fcSdrh assert( (p->flags2 & EP2_Irreducible)==0 ); 747ae80ddeaSdrh if( p->pLeft || p->pRight || p->x.pList ){ 74833e619fcSdrh nSize = EXPR_REDUCEDSIZE | EP_Reduced; 74933e619fcSdrh }else{ 75033e619fcSdrh nSize = EXPR_TOKENONLYSIZE | EP_TokenOnly; 75133e619fcSdrh } 7526ab3a2ecSdanielk1977 } 7536ab3a2ecSdanielk1977 return nSize; 7546ab3a2ecSdanielk1977 } 7556ab3a2ecSdanielk1977 7566ab3a2ecSdanielk1977 /* 75733e619fcSdrh ** This function returns the space in bytes required to store the copy 75833e619fcSdrh ** of the Expr structure and a copy of the Expr.u.zToken string (if that 75933e619fcSdrh ** string is defined.) 7606ab3a2ecSdanielk1977 */ 7616ab3a2ecSdanielk1977 static int dupedExprNodeSize(Expr *p, int flags){ 76233e619fcSdrh int nByte = dupedExprStructSize(p, flags) & 0xfff; 76333e619fcSdrh if( !ExprHasProperty(p, EP_IntValue) && p->u.zToken ){ 76433e619fcSdrh nByte += sqlite3Strlen30(p->u.zToken)+1; 7656ab3a2ecSdanielk1977 } 766bc73971dSdanielk1977 return ROUND8(nByte); 7676ab3a2ecSdanielk1977 } 7686ab3a2ecSdanielk1977 7696ab3a2ecSdanielk1977 /* 7706ab3a2ecSdanielk1977 ** Return the number of bytes required to create a duplicate of the 7716ab3a2ecSdanielk1977 ** expression passed as the first argument. The second argument is a 7726ab3a2ecSdanielk1977 ** mask containing EXPRDUP_XXX flags. 7736ab3a2ecSdanielk1977 ** 7746ab3a2ecSdanielk1977 ** The value returned includes space to create a copy of the Expr struct 77533e619fcSdrh ** itself and the buffer referred to by Expr.u.zToken, if any. 7766ab3a2ecSdanielk1977 ** 7776ab3a2ecSdanielk1977 ** If the EXPRDUP_REDUCE flag is set, then the return value includes 7786ab3a2ecSdanielk1977 ** space to duplicate all Expr nodes in the tree formed by Expr.pLeft 7796ab3a2ecSdanielk1977 ** and Expr.pRight variables (but not for any structures pointed to or 7806ab3a2ecSdanielk1977 ** descended from the Expr.x.pList or Expr.x.pSelect variables). 7816ab3a2ecSdanielk1977 */ 7826ab3a2ecSdanielk1977 static int dupedExprSize(Expr *p, int flags){ 7836ab3a2ecSdanielk1977 int nByte = 0; 7846ab3a2ecSdanielk1977 if( p ){ 7856ab3a2ecSdanielk1977 nByte = dupedExprNodeSize(p, flags); 7866ab3a2ecSdanielk1977 if( flags&EXPRDUP_REDUCE ){ 787b7916a78Sdrh nByte += dupedExprSize(p->pLeft, flags) + dupedExprSize(p->pRight, flags); 7886ab3a2ecSdanielk1977 } 7896ab3a2ecSdanielk1977 } 7906ab3a2ecSdanielk1977 return nByte; 7916ab3a2ecSdanielk1977 } 7926ab3a2ecSdanielk1977 7936ab3a2ecSdanielk1977 /* 7946ab3a2ecSdanielk1977 ** This function is similar to sqlite3ExprDup(), except that if pzBuffer 7956ab3a2ecSdanielk1977 ** is not NULL then *pzBuffer is assumed to point to a buffer large enough 79633e619fcSdrh ** to store the copy of expression p, the copies of p->u.zToken 7976ab3a2ecSdanielk1977 ** (if applicable), and the copies of the p->pLeft and p->pRight expressions, 7986ab3a2ecSdanielk1977 ** if any. Before returning, *pzBuffer is set to the first byte passed the 7996ab3a2ecSdanielk1977 ** portion of the buffer copied into by this function. 8006ab3a2ecSdanielk1977 */ 8016ab3a2ecSdanielk1977 static Expr *exprDup(sqlite3 *db, Expr *p, int flags, u8 **pzBuffer){ 8026ab3a2ecSdanielk1977 Expr *pNew = 0; /* Value to return */ 8036ab3a2ecSdanielk1977 if( p ){ 8046ab3a2ecSdanielk1977 const int isReduced = (flags&EXPRDUP_REDUCE); 8056ab3a2ecSdanielk1977 u8 *zAlloc; 80633e619fcSdrh u32 staticFlag = 0; 8076ab3a2ecSdanielk1977 8086ab3a2ecSdanielk1977 assert( pzBuffer==0 || isReduced ); 8096ab3a2ecSdanielk1977 8106ab3a2ecSdanielk1977 /* Figure out where to write the new Expr structure. */ 8116ab3a2ecSdanielk1977 if( pzBuffer ){ 8126ab3a2ecSdanielk1977 zAlloc = *pzBuffer; 81333e619fcSdrh staticFlag = EP_Static; 8146ab3a2ecSdanielk1977 }else{ 8156ab3a2ecSdanielk1977 zAlloc = sqlite3DbMallocRaw(db, dupedExprSize(p, flags)); 8166ab3a2ecSdanielk1977 } 8176ab3a2ecSdanielk1977 pNew = (Expr *)zAlloc; 8186ab3a2ecSdanielk1977 8196ab3a2ecSdanielk1977 if( pNew ){ 8206ab3a2ecSdanielk1977 /* Set nNewSize to the size allocated for the structure pointed to 8216ab3a2ecSdanielk1977 ** by pNew. This is either EXPR_FULLSIZE, EXPR_REDUCEDSIZE or 8226ab3a2ecSdanielk1977 ** EXPR_TOKENONLYSIZE. nToken is set to the number of bytes consumed 82333e619fcSdrh ** by the copy of the p->u.zToken string (if any). 8246ab3a2ecSdanielk1977 */ 82533e619fcSdrh const unsigned nStructSize = dupedExprStructSize(p, flags); 82633e619fcSdrh const int nNewSize = nStructSize & 0xfff; 82733e619fcSdrh int nToken; 82833e619fcSdrh if( !ExprHasProperty(p, EP_IntValue) && p->u.zToken ){ 82933e619fcSdrh nToken = sqlite3Strlen30(p->u.zToken) + 1; 83033e619fcSdrh }else{ 83133e619fcSdrh nToken = 0; 83233e619fcSdrh } 8336ab3a2ecSdanielk1977 if( isReduced ){ 8346ab3a2ecSdanielk1977 assert( ExprHasProperty(p, EP_Reduced)==0 ); 8356ab3a2ecSdanielk1977 memcpy(zAlloc, p, nNewSize); 8366ab3a2ecSdanielk1977 }else{ 8376ab3a2ecSdanielk1977 int nSize = exprStructSize(p); 8386ab3a2ecSdanielk1977 memcpy(zAlloc, p, nSize); 8396ab3a2ecSdanielk1977 memset(&zAlloc[nSize], 0, EXPR_FULLSIZE-nSize); 8406ab3a2ecSdanielk1977 } 8416ab3a2ecSdanielk1977 84233e619fcSdrh /* Set the EP_Reduced, EP_TokenOnly, and EP_Static flags appropriately. */ 84333e619fcSdrh pNew->flags &= ~(EP_Reduced|EP_TokenOnly|EP_Static); 84433e619fcSdrh pNew->flags |= nStructSize & (EP_Reduced|EP_TokenOnly); 84533e619fcSdrh pNew->flags |= staticFlag; 8466ab3a2ecSdanielk1977 84733e619fcSdrh /* Copy the p->u.zToken string, if any. */ 8486ab3a2ecSdanielk1977 if( nToken ){ 84933e619fcSdrh char *zToken = pNew->u.zToken = (char*)&zAlloc[nNewSize]; 85033e619fcSdrh memcpy(zToken, p->u.zToken, nToken); 8516ab3a2ecSdanielk1977 } 8526ab3a2ecSdanielk1977 8536ab3a2ecSdanielk1977 if( 0==((p->flags|pNew->flags) & EP_TokenOnly) ){ 8546ab3a2ecSdanielk1977 /* Fill in the pNew->x.pSelect or pNew->x.pList member. */ 8556ab3a2ecSdanielk1977 if( ExprHasProperty(p, EP_xIsSelect) ){ 8566ab3a2ecSdanielk1977 pNew->x.pSelect = sqlite3SelectDup(db, p->x.pSelect, isReduced); 8576ab3a2ecSdanielk1977 }else{ 8586ab3a2ecSdanielk1977 pNew->x.pList = sqlite3ExprListDup(db, p->x.pList, isReduced); 8596ab3a2ecSdanielk1977 } 8606ab3a2ecSdanielk1977 } 8616ab3a2ecSdanielk1977 8626ab3a2ecSdanielk1977 /* Fill in pNew->pLeft and pNew->pRight. */ 863b7916a78Sdrh if( ExprHasAnyProperty(pNew, EP_Reduced|EP_TokenOnly) ){ 8646ab3a2ecSdanielk1977 zAlloc += dupedExprNodeSize(p, flags); 8656ab3a2ecSdanielk1977 if( ExprHasProperty(pNew, EP_Reduced) ){ 8666ab3a2ecSdanielk1977 pNew->pLeft = exprDup(db, p->pLeft, EXPRDUP_REDUCE, &zAlloc); 8676ab3a2ecSdanielk1977 pNew->pRight = exprDup(db, p->pRight, EXPRDUP_REDUCE, &zAlloc); 8686ab3a2ecSdanielk1977 } 8696ab3a2ecSdanielk1977 if( pzBuffer ){ 8706ab3a2ecSdanielk1977 *pzBuffer = zAlloc; 8716ab3a2ecSdanielk1977 } 872b7916a78Sdrh }else{ 873b7916a78Sdrh pNew->flags2 = 0; 874b7916a78Sdrh if( !ExprHasAnyProperty(p, EP_TokenOnly) ){ 8756ab3a2ecSdanielk1977 pNew->pLeft = sqlite3ExprDup(db, p->pLeft, 0); 8766ab3a2ecSdanielk1977 pNew->pRight = sqlite3ExprDup(db, p->pRight, 0); 8776ab3a2ecSdanielk1977 } 8786ab3a2ecSdanielk1977 } 879b7916a78Sdrh 880b7916a78Sdrh } 8816ab3a2ecSdanielk1977 } 8826ab3a2ecSdanielk1977 return pNew; 8836ab3a2ecSdanielk1977 } 8846ab3a2ecSdanielk1977 8856ab3a2ecSdanielk1977 /* 886ff78bd2fSdrh ** The following group of routines make deep copies of expressions, 887ff78bd2fSdrh ** expression lists, ID lists, and select statements. The copies can 888ff78bd2fSdrh ** be deleted (by being passed to their respective ...Delete() routines) 889ff78bd2fSdrh ** without effecting the originals. 890ff78bd2fSdrh ** 8914adee20fSdanielk1977 ** The expression list, ID, and source lists return by sqlite3ExprListDup(), 8924adee20fSdanielk1977 ** sqlite3IdListDup(), and sqlite3SrcListDup() can not be further expanded 893ad3cab52Sdrh ** by subsequent calls to sqlite*ListAppend() routines. 894ff78bd2fSdrh ** 895ad3cab52Sdrh ** Any tables that the SrcList might point to are not duplicated. 8966ab3a2ecSdanielk1977 ** 897b7916a78Sdrh ** The flags parameter contains a combination of the EXPRDUP_XXX flags. 8986ab3a2ecSdanielk1977 ** If the EXPRDUP_REDUCE flag is set, then the structure returned is a 8996ab3a2ecSdanielk1977 ** truncated version of the usual Expr structure that will be stored as 9006ab3a2ecSdanielk1977 ** part of the in-memory representation of the database schema. 901ff78bd2fSdrh */ 9026ab3a2ecSdanielk1977 Expr *sqlite3ExprDup(sqlite3 *db, Expr *p, int flags){ 9036ab3a2ecSdanielk1977 return exprDup(db, p, flags, 0); 904ff78bd2fSdrh } 9056ab3a2ecSdanielk1977 ExprList *sqlite3ExprListDup(sqlite3 *db, ExprList *p, int flags){ 906ff78bd2fSdrh ExprList *pNew; 907145716b3Sdrh struct ExprList_item *pItem, *pOldItem; 908ff78bd2fSdrh int i; 909ff78bd2fSdrh if( p==0 ) return 0; 91017435752Sdrh pNew = sqlite3DbMallocRaw(db, sizeof(*pNew) ); 911ff78bd2fSdrh if( pNew==0 ) return 0; 91231dad9daSdanielk1977 pNew->iECursor = 0; 913d872bb18Sdrh pNew->nExpr = i = p->nExpr; 914d872bb18Sdrh if( (flags & EXPRDUP_REDUCE)==0 ) for(i=1; i<p->nExpr; i+=i){} 915d872bb18Sdrh pNew->a = pItem = sqlite3DbMallocRaw(db, i*sizeof(p->a[0]) ); 916e0048400Sdanielk1977 if( pItem==0 ){ 917633e6d57Sdrh sqlite3DbFree(db, pNew); 918e0048400Sdanielk1977 return 0; 919e0048400Sdanielk1977 } 920145716b3Sdrh pOldItem = p->a; 921145716b3Sdrh for(i=0; i<p->nExpr; i++, pItem++, pOldItem++){ 9226ab3a2ecSdanielk1977 Expr *pOldExpr = pOldItem->pExpr; 923b5526ea6Sdrh pItem->pExpr = sqlite3ExprDup(db, pOldExpr, flags); 92417435752Sdrh pItem->zName = sqlite3DbStrDup(db, pOldItem->zName); 925b7916a78Sdrh pItem->zSpan = sqlite3DbStrDup(db, pOldItem->zSpan); 926145716b3Sdrh pItem->sortOrder = pOldItem->sortOrder; 9273e7bc9caSdrh pItem->done = 0; 9284b3ac73cSdrh pItem->iOrderByCol = pOldItem->iOrderByCol; 9298b213899Sdrh pItem->iAlias = pOldItem->iAlias; 930ff78bd2fSdrh } 931ff78bd2fSdrh return pNew; 932ff78bd2fSdrh } 93393758c8dSdanielk1977 93493758c8dSdanielk1977 /* 93593758c8dSdanielk1977 ** If cursors, triggers, views and subqueries are all omitted from 93693758c8dSdanielk1977 ** the build, then none of the following routines, except for 93793758c8dSdanielk1977 ** sqlite3SelectDup(), can be called. sqlite3SelectDup() is sometimes 93893758c8dSdanielk1977 ** called with a NULL argument. 93993758c8dSdanielk1977 */ 9406a67fe8eSdanielk1977 #if !defined(SQLITE_OMIT_VIEW) || !defined(SQLITE_OMIT_TRIGGER) \ 9416a67fe8eSdanielk1977 || !defined(SQLITE_OMIT_SUBQUERY) 9426ab3a2ecSdanielk1977 SrcList *sqlite3SrcListDup(sqlite3 *db, SrcList *p, int flags){ 943ad3cab52Sdrh SrcList *pNew; 944ad3cab52Sdrh int i; 945113088ecSdrh int nByte; 946ad3cab52Sdrh if( p==0 ) return 0; 947113088ecSdrh nByte = sizeof(*p) + (p->nSrc>0 ? sizeof(p->a[0]) * (p->nSrc-1) : 0); 94817435752Sdrh pNew = sqlite3DbMallocRaw(db, nByte ); 949ad3cab52Sdrh if( pNew==0 ) return 0; 9504305d103Sdrh pNew->nSrc = pNew->nAlloc = p->nSrc; 951ad3cab52Sdrh for(i=0; i<p->nSrc; i++){ 9524efc4754Sdrh struct SrcList_item *pNewItem = &pNew->a[i]; 9534efc4754Sdrh struct SrcList_item *pOldItem = &p->a[i]; 954ed8a3bb1Sdrh Table *pTab; 95541fb5cd1Sdan pNewItem->pSchema = pOldItem->pSchema; 95617435752Sdrh pNewItem->zDatabase = sqlite3DbStrDup(db, pOldItem->zDatabase); 95717435752Sdrh pNewItem->zName = sqlite3DbStrDup(db, pOldItem->zName); 95817435752Sdrh pNewItem->zAlias = sqlite3DbStrDup(db, pOldItem->zAlias); 9594efc4754Sdrh pNewItem->jointype = pOldItem->jointype; 9604efc4754Sdrh pNewItem->iCursor = pOldItem->iCursor; 9615b6a9ed4Sdrh pNewItem->addrFillSub = pOldItem->addrFillSub; 9625b6a9ed4Sdrh pNewItem->regReturn = pOldItem->regReturn; 963da79cf0cSdan pNewItem->isCorrelated = pOldItem->isCorrelated; 96421172c4cSdrh pNewItem->viaCoroutine = pOldItem->viaCoroutine; 96585574e31Sdanielk1977 pNewItem->zIndex = sqlite3DbStrDup(db, pOldItem->zIndex); 96685574e31Sdanielk1977 pNewItem->notIndexed = pOldItem->notIndexed; 96785574e31Sdanielk1977 pNewItem->pIndex = pOldItem->pIndex; 968ed8a3bb1Sdrh pTab = pNewItem->pTab = pOldItem->pTab; 969ed8a3bb1Sdrh if( pTab ){ 970ed8a3bb1Sdrh pTab->nRef++; 971a1cb183dSdanielk1977 } 9726ab3a2ecSdanielk1977 pNewItem->pSelect = sqlite3SelectDup(db, pOldItem->pSelect, flags); 9736ab3a2ecSdanielk1977 pNewItem->pOn = sqlite3ExprDup(db, pOldItem->pOn, flags); 97417435752Sdrh pNewItem->pUsing = sqlite3IdListDup(db, pOldItem->pUsing); 9756c18b6e0Sdanielk1977 pNewItem->colUsed = pOldItem->colUsed; 976ad3cab52Sdrh } 977ad3cab52Sdrh return pNew; 978ad3cab52Sdrh } 97917435752Sdrh IdList *sqlite3IdListDup(sqlite3 *db, IdList *p){ 980ff78bd2fSdrh IdList *pNew; 981ff78bd2fSdrh int i; 982ff78bd2fSdrh if( p==0 ) return 0; 98317435752Sdrh pNew = sqlite3DbMallocRaw(db, sizeof(*pNew) ); 984ff78bd2fSdrh if( pNew==0 ) return 0; 9856c535158Sdrh pNew->nId = p->nId; 98617435752Sdrh pNew->a = sqlite3DbMallocRaw(db, p->nId*sizeof(p->a[0]) ); 987d5d56523Sdanielk1977 if( pNew->a==0 ){ 988633e6d57Sdrh sqlite3DbFree(db, pNew); 989d5d56523Sdanielk1977 return 0; 990d5d56523Sdanielk1977 } 9916c535158Sdrh /* Note that because the size of the allocation for p->a[] is not 9926c535158Sdrh ** necessarily a power of two, sqlite3IdListAppend() may not be called 9936c535158Sdrh ** on the duplicate created by this function. */ 994ff78bd2fSdrh for(i=0; i<p->nId; i++){ 9954efc4754Sdrh struct IdList_item *pNewItem = &pNew->a[i]; 9964efc4754Sdrh struct IdList_item *pOldItem = &p->a[i]; 99717435752Sdrh pNewItem->zName = sqlite3DbStrDup(db, pOldItem->zName); 9984efc4754Sdrh pNewItem->idx = pOldItem->idx; 999ff78bd2fSdrh } 1000ff78bd2fSdrh return pNew; 1001ff78bd2fSdrh } 10026ab3a2ecSdanielk1977 Select *sqlite3SelectDup(sqlite3 *db, Select *p, int flags){ 100323b1b372Sdrh Select *pNew, *pPrior; 1004ff78bd2fSdrh if( p==0 ) return 0; 100517435752Sdrh pNew = sqlite3DbMallocRaw(db, sizeof(*p) ); 1006ff78bd2fSdrh if( pNew==0 ) return 0; 1007b7916a78Sdrh pNew->pEList = sqlite3ExprListDup(db, p->pEList, flags); 10086ab3a2ecSdanielk1977 pNew->pSrc = sqlite3SrcListDup(db, p->pSrc, flags); 10096ab3a2ecSdanielk1977 pNew->pWhere = sqlite3ExprDup(db, p->pWhere, flags); 10106ab3a2ecSdanielk1977 pNew->pGroupBy = sqlite3ExprListDup(db, p->pGroupBy, flags); 10116ab3a2ecSdanielk1977 pNew->pHaving = sqlite3ExprDup(db, p->pHaving, flags); 10126ab3a2ecSdanielk1977 pNew->pOrderBy = sqlite3ExprListDup(db, p->pOrderBy, flags); 1013ff78bd2fSdrh pNew->op = p->op; 101423b1b372Sdrh pNew->pPrior = pPrior = sqlite3SelectDup(db, p->pPrior, flags); 101523b1b372Sdrh if( pPrior ) pPrior->pNext = pNew; 101623b1b372Sdrh pNew->pNext = 0; 10176ab3a2ecSdanielk1977 pNew->pLimit = sqlite3ExprDup(db, p->pLimit, flags); 10186ab3a2ecSdanielk1977 pNew->pOffset = sqlite3ExprDup(db, p->pOffset, flags); 101992b01d53Sdrh pNew->iLimit = 0; 102092b01d53Sdrh pNew->iOffset = 0; 10217d10d5a6Sdrh pNew->selFlags = p->selFlags & ~SF_UsesEphemeral; 10220342b1f5Sdrh pNew->pRightmost = 0; 1023b9bb7c18Sdrh pNew->addrOpenEphm[0] = -1; 1024b9bb7c18Sdrh pNew->addrOpenEphm[1] = -1; 1025b9bb7c18Sdrh pNew->addrOpenEphm[2] = -1; 1026ff78bd2fSdrh return pNew; 1027ff78bd2fSdrh } 102893758c8dSdanielk1977 #else 10296ab3a2ecSdanielk1977 Select *sqlite3SelectDup(sqlite3 *db, Select *p, int flags){ 103093758c8dSdanielk1977 assert( p==0 ); 103193758c8dSdanielk1977 return 0; 103293758c8dSdanielk1977 } 103393758c8dSdanielk1977 #endif 1034ff78bd2fSdrh 1035ff78bd2fSdrh 1036ff78bd2fSdrh /* 1037a76b5dfcSdrh ** Add a new element to the end of an expression list. If pList is 1038a76b5dfcSdrh ** initially NULL, then create a new expression list. 1039b7916a78Sdrh ** 1040b7916a78Sdrh ** If a memory allocation error occurs, the entire list is freed and 1041b7916a78Sdrh ** NULL is returned. If non-NULL is returned, then it is guaranteed 1042b7916a78Sdrh ** that the new entry was successfully appended. 1043a76b5dfcSdrh */ 104417435752Sdrh ExprList *sqlite3ExprListAppend( 104517435752Sdrh Parse *pParse, /* Parsing context */ 104617435752Sdrh ExprList *pList, /* List to which to append. Might be NULL */ 1047b7916a78Sdrh Expr *pExpr /* Expression to be appended. Might be NULL */ 104817435752Sdrh ){ 104917435752Sdrh sqlite3 *db = pParse->db; 1050a76b5dfcSdrh if( pList==0 ){ 105117435752Sdrh pList = sqlite3DbMallocZero(db, sizeof(ExprList) ); 1052a76b5dfcSdrh if( pList==0 ){ 1053d5d56523Sdanielk1977 goto no_mem; 1054a76b5dfcSdrh } 1055d872bb18Sdrh pList->a = sqlite3DbMallocRaw(db, sizeof(pList->a[0])); 1056d872bb18Sdrh if( pList->a==0 ) goto no_mem; 1057d872bb18Sdrh }else if( (pList->nExpr & (pList->nExpr-1))==0 ){ 1058d5d56523Sdanielk1977 struct ExprList_item *a; 1059d872bb18Sdrh assert( pList->nExpr>0 ); 1060d872bb18Sdrh a = sqlite3DbRealloc(db, pList->a, pList->nExpr*2*sizeof(pList->a[0])); 1061d5d56523Sdanielk1977 if( a==0 ){ 1062d5d56523Sdanielk1977 goto no_mem; 1063a76b5dfcSdrh } 1064d5d56523Sdanielk1977 pList->a = a; 1065a76b5dfcSdrh } 10664efc4754Sdrh assert( pList->a!=0 ); 1067b7916a78Sdrh if( 1 ){ 10684efc4754Sdrh struct ExprList_item *pItem = &pList->a[pList->nExpr++]; 10694efc4754Sdrh memset(pItem, 0, sizeof(*pItem)); 1070e94ddc9eSdanielk1977 pItem->pExpr = pExpr; 1071a76b5dfcSdrh } 1072a76b5dfcSdrh return pList; 1073d5d56523Sdanielk1977 1074d5d56523Sdanielk1977 no_mem: 1075d5d56523Sdanielk1977 /* Avoid leaking memory if malloc has failed. */ 1076633e6d57Sdrh sqlite3ExprDelete(db, pExpr); 1077633e6d57Sdrh sqlite3ExprListDelete(db, pList); 1078d5d56523Sdanielk1977 return 0; 1079a76b5dfcSdrh } 1080a76b5dfcSdrh 1081a76b5dfcSdrh /* 1082b7916a78Sdrh ** Set the ExprList.a[].zName element of the most recently added item 1083b7916a78Sdrh ** on the expression list. 1084b7916a78Sdrh ** 1085b7916a78Sdrh ** pList might be NULL following an OOM error. But pName should never be 1086b7916a78Sdrh ** NULL. If a memory allocation fails, the pParse->db->mallocFailed flag 1087b7916a78Sdrh ** is set. 1088b7916a78Sdrh */ 1089b7916a78Sdrh void sqlite3ExprListSetName( 1090b7916a78Sdrh Parse *pParse, /* Parsing context */ 1091b7916a78Sdrh ExprList *pList, /* List to which to add the span. */ 1092b7916a78Sdrh Token *pName, /* Name to be added */ 1093b7916a78Sdrh int dequote /* True to cause the name to be dequoted */ 1094b7916a78Sdrh ){ 1095b7916a78Sdrh assert( pList!=0 || pParse->db->mallocFailed!=0 ); 1096b7916a78Sdrh if( pList ){ 1097b7916a78Sdrh struct ExprList_item *pItem; 1098b7916a78Sdrh assert( pList->nExpr>0 ); 1099b7916a78Sdrh pItem = &pList->a[pList->nExpr-1]; 1100b7916a78Sdrh assert( pItem->zName==0 ); 1101b7916a78Sdrh pItem->zName = sqlite3DbStrNDup(pParse->db, pName->z, pName->n); 1102b7916a78Sdrh if( dequote && pItem->zName ) sqlite3Dequote(pItem->zName); 1103b7916a78Sdrh } 1104b7916a78Sdrh } 1105b7916a78Sdrh 1106b7916a78Sdrh /* 1107b7916a78Sdrh ** Set the ExprList.a[].zSpan element of the most recently added item 1108b7916a78Sdrh ** on the expression list. 1109b7916a78Sdrh ** 1110b7916a78Sdrh ** pList might be NULL following an OOM error. But pSpan should never be 1111b7916a78Sdrh ** NULL. If a memory allocation fails, the pParse->db->mallocFailed flag 1112b7916a78Sdrh ** is set. 1113b7916a78Sdrh */ 1114b7916a78Sdrh void sqlite3ExprListSetSpan( 1115b7916a78Sdrh Parse *pParse, /* Parsing context */ 1116b7916a78Sdrh ExprList *pList, /* List to which to add the span. */ 1117b7916a78Sdrh ExprSpan *pSpan /* The span to be added */ 1118b7916a78Sdrh ){ 1119b7916a78Sdrh sqlite3 *db = pParse->db; 1120b7916a78Sdrh assert( pList!=0 || db->mallocFailed!=0 ); 1121b7916a78Sdrh if( pList ){ 1122b7916a78Sdrh struct ExprList_item *pItem = &pList->a[pList->nExpr-1]; 1123b7916a78Sdrh assert( pList->nExpr>0 ); 1124b7916a78Sdrh assert( db->mallocFailed || pItem->pExpr==pSpan->pExpr ); 1125b7916a78Sdrh sqlite3DbFree(db, pItem->zSpan); 1126b7916a78Sdrh pItem->zSpan = sqlite3DbStrNDup(db, (char*)pSpan->zStart, 1127cf697396Sshane (int)(pSpan->zEnd - pSpan->zStart)); 1128b7916a78Sdrh } 1129b7916a78Sdrh } 1130b7916a78Sdrh 1131b7916a78Sdrh /* 11327a15a4beSdanielk1977 ** If the expression list pEList contains more than iLimit elements, 11337a15a4beSdanielk1977 ** leave an error message in pParse. 11347a15a4beSdanielk1977 */ 11357a15a4beSdanielk1977 void sqlite3ExprListCheckLength( 11367a15a4beSdanielk1977 Parse *pParse, 11377a15a4beSdanielk1977 ExprList *pEList, 11387a15a4beSdanielk1977 const char *zObject 11397a15a4beSdanielk1977 ){ 1140b1a6c3c1Sdrh int mx = pParse->db->aLimit[SQLITE_LIMIT_COLUMN]; 1141c5499befSdrh testcase( pEList && pEList->nExpr==mx ); 1142c5499befSdrh testcase( pEList && pEList->nExpr==mx+1 ); 1143b1a6c3c1Sdrh if( pEList && pEList->nExpr>mx ){ 11447a15a4beSdanielk1977 sqlite3ErrorMsg(pParse, "too many columns in %s", zObject); 11457a15a4beSdanielk1977 } 11467a15a4beSdanielk1977 } 11477a15a4beSdanielk1977 11487a15a4beSdanielk1977 /* 1149a76b5dfcSdrh ** Delete an entire expression list. 1150a76b5dfcSdrh */ 1151633e6d57Sdrh void sqlite3ExprListDelete(sqlite3 *db, ExprList *pList){ 1152a76b5dfcSdrh int i; 1153be5c89acSdrh struct ExprList_item *pItem; 1154a76b5dfcSdrh if( pList==0 ) return; 1155d872bb18Sdrh assert( pList->a!=0 || pList->nExpr==0 ); 1156be5c89acSdrh for(pItem=pList->a, i=0; i<pList->nExpr; i++, pItem++){ 1157633e6d57Sdrh sqlite3ExprDelete(db, pItem->pExpr); 1158633e6d57Sdrh sqlite3DbFree(db, pItem->zName); 1159b7916a78Sdrh sqlite3DbFree(db, pItem->zSpan); 1160a76b5dfcSdrh } 1161633e6d57Sdrh sqlite3DbFree(db, pList->a); 1162633e6d57Sdrh sqlite3DbFree(db, pList); 1163a76b5dfcSdrh } 1164a76b5dfcSdrh 1165a76b5dfcSdrh /* 11667d10d5a6Sdrh ** These routines are Walker callbacks. Walker.u.pi is a pointer 11677d10d5a6Sdrh ** to an integer. These routines are checking an expression to see 11687d10d5a6Sdrh ** if it is a constant. Set *Walker.u.pi to 0 if the expression is 11697d10d5a6Sdrh ** not constant. 117073b211abSdrh ** 11717d10d5a6Sdrh ** These callback routines are used to implement the following: 1172626a879aSdrh ** 11737d10d5a6Sdrh ** sqlite3ExprIsConstant() 11747d10d5a6Sdrh ** sqlite3ExprIsConstantNotJoin() 11757d10d5a6Sdrh ** sqlite3ExprIsConstantOrFunction() 117687abf5c0Sdrh ** 1177626a879aSdrh */ 11787d10d5a6Sdrh static int exprNodeIsConstant(Walker *pWalker, Expr *pExpr){ 1179626a879aSdrh 11807d10d5a6Sdrh /* If pWalker->u.i is 3 then any term of the expression that comes from 11810a168377Sdrh ** the ON or USING clauses of a join disqualifies the expression 11820a168377Sdrh ** from being considered constant. */ 11837d10d5a6Sdrh if( pWalker->u.i==3 && ExprHasAnyProperty(pExpr, EP_FromJoin) ){ 11847d10d5a6Sdrh pWalker->u.i = 0; 11857d10d5a6Sdrh return WRC_Abort; 11860a168377Sdrh } 11870a168377Sdrh 1188626a879aSdrh switch( pExpr->op ){ 1189eb55bd2fSdrh /* Consider functions to be constant if all their arguments are constant 11907d10d5a6Sdrh ** and pWalker->u.i==2 */ 1191eb55bd2fSdrh case TK_FUNCTION: 11927d10d5a6Sdrh if( pWalker->u.i==2 ) return 0; 1193eb55bd2fSdrh /* Fall through */ 1194626a879aSdrh case TK_ID: 1195626a879aSdrh case TK_COLUMN: 1196626a879aSdrh case TK_AGG_FUNCTION: 119713449892Sdrh case TK_AGG_COLUMN: 1198c5499befSdrh testcase( pExpr->op==TK_ID ); 1199c5499befSdrh testcase( pExpr->op==TK_COLUMN ); 1200c5499befSdrh testcase( pExpr->op==TK_AGG_FUNCTION ); 1201c5499befSdrh testcase( pExpr->op==TK_AGG_COLUMN ); 12027d10d5a6Sdrh pWalker->u.i = 0; 12037d10d5a6Sdrh return WRC_Abort; 1204626a879aSdrh default: 1205b74b1017Sdrh testcase( pExpr->op==TK_SELECT ); /* selectNodeIsConstant will disallow */ 1206b74b1017Sdrh testcase( pExpr->op==TK_EXISTS ); /* selectNodeIsConstant will disallow */ 12077d10d5a6Sdrh return WRC_Continue; 1208626a879aSdrh } 1209626a879aSdrh } 121062c14b34Sdanielk1977 static int selectNodeIsConstant(Walker *pWalker, Select *NotUsed){ 121162c14b34Sdanielk1977 UNUSED_PARAMETER(NotUsed); 12127d10d5a6Sdrh pWalker->u.i = 0; 12137d10d5a6Sdrh return WRC_Abort; 12147d10d5a6Sdrh } 12157d10d5a6Sdrh static int exprIsConst(Expr *p, int initFlag){ 12167d10d5a6Sdrh Walker w; 1217*aa87f9a6Sdrh memset(&w, 0, sizeof(w)); 12187d10d5a6Sdrh w.u.i = initFlag; 12197d10d5a6Sdrh w.xExprCallback = exprNodeIsConstant; 12207d10d5a6Sdrh w.xSelectCallback = selectNodeIsConstant; 12217d10d5a6Sdrh sqlite3WalkExpr(&w, p); 12227d10d5a6Sdrh return w.u.i; 12237d10d5a6Sdrh } 1224626a879aSdrh 1225626a879aSdrh /* 1226fef5208cSdrh ** Walk an expression tree. Return 1 if the expression is constant 1227eb55bd2fSdrh ** and 0 if it involves variables or function calls. 12282398937bSdrh ** 12292398937bSdrh ** For the purposes of this function, a double-quoted string (ex: "abc") 12302398937bSdrh ** is considered a variable but a single-quoted string (ex: 'abc') is 12312398937bSdrh ** a constant. 1232fef5208cSdrh */ 12334adee20fSdanielk1977 int sqlite3ExprIsConstant(Expr *p){ 12347d10d5a6Sdrh return exprIsConst(p, 1); 1235fef5208cSdrh } 1236fef5208cSdrh 1237fef5208cSdrh /* 1238eb55bd2fSdrh ** Walk an expression tree. Return 1 if the expression is constant 12390a168377Sdrh ** that does no originate from the ON or USING clauses of a join. 12400a168377Sdrh ** Return 0 if it involves variables or function calls or terms from 12410a168377Sdrh ** an ON or USING clause. 12420a168377Sdrh */ 12430a168377Sdrh int sqlite3ExprIsConstantNotJoin(Expr *p){ 12447d10d5a6Sdrh return exprIsConst(p, 3); 12450a168377Sdrh } 12460a168377Sdrh 12470a168377Sdrh /* 12480a168377Sdrh ** Walk an expression tree. Return 1 if the expression is constant 1249eb55bd2fSdrh ** or a function call with constant arguments. Return and 0 if there 1250eb55bd2fSdrh ** are any variables. 1251eb55bd2fSdrh ** 1252eb55bd2fSdrh ** For the purposes of this function, a double-quoted string (ex: "abc") 1253eb55bd2fSdrh ** is considered a variable but a single-quoted string (ex: 'abc') is 1254eb55bd2fSdrh ** a constant. 1255eb55bd2fSdrh */ 1256eb55bd2fSdrh int sqlite3ExprIsConstantOrFunction(Expr *p){ 12577d10d5a6Sdrh return exprIsConst(p, 2); 1258eb55bd2fSdrh } 1259eb55bd2fSdrh 1260eb55bd2fSdrh /* 126173b211abSdrh ** If the expression p codes a constant integer that is small enough 1262202b2df7Sdrh ** to fit in a 32-bit integer, return 1 and put the value of the integer 1263202b2df7Sdrh ** in *pValue. If the expression is not an integer or if it is too big 1264202b2df7Sdrh ** to fit in a signed 32-bit integer, return 0 and leave *pValue unchanged. 1265e4de1febSdrh */ 12664adee20fSdanielk1977 int sqlite3ExprIsInteger(Expr *p, int *pValue){ 126792b01d53Sdrh int rc = 0; 1268cd92e84dSdrh 1269cd92e84dSdrh /* If an expression is an integer literal that fits in a signed 32-bit 1270cd92e84dSdrh ** integer, then the EP_IntValue flag will have already been set */ 1271cd92e84dSdrh assert( p->op!=TK_INTEGER || (p->flags & EP_IntValue)!=0 1272cd92e84dSdrh || sqlite3GetInt32(p->u.zToken, &rc)==0 ); 1273cd92e84dSdrh 127492b01d53Sdrh if( p->flags & EP_IntValue ){ 127533e619fcSdrh *pValue = p->u.iValue; 1276e4de1febSdrh return 1; 1277e4de1febSdrh } 127892b01d53Sdrh switch( p->op ){ 12794b59ab5eSdrh case TK_UPLUS: { 128092b01d53Sdrh rc = sqlite3ExprIsInteger(p->pLeft, pValue); 1281f6e369a1Sdrh break; 12824b59ab5eSdrh } 1283e4de1febSdrh case TK_UMINUS: { 1284e4de1febSdrh int v; 12854adee20fSdanielk1977 if( sqlite3ExprIsInteger(p->pLeft, &v) ){ 1286e4de1febSdrh *pValue = -v; 128792b01d53Sdrh rc = 1; 1288e4de1febSdrh } 1289e4de1febSdrh break; 1290e4de1febSdrh } 1291e4de1febSdrh default: break; 1292e4de1febSdrh } 129392b01d53Sdrh return rc; 1294e4de1febSdrh } 1295e4de1febSdrh 1296e4de1febSdrh /* 1297039fc32eSdrh ** Return FALSE if there is no chance that the expression can be NULL. 1298039fc32eSdrh ** 1299039fc32eSdrh ** If the expression might be NULL or if the expression is too complex 1300039fc32eSdrh ** to tell return TRUE. 1301039fc32eSdrh ** 1302039fc32eSdrh ** This routine is used as an optimization, to skip OP_IsNull opcodes 1303039fc32eSdrh ** when we know that a value cannot be NULL. Hence, a false positive 1304039fc32eSdrh ** (returning TRUE when in fact the expression can never be NULL) might 1305039fc32eSdrh ** be a small performance hit but is otherwise harmless. On the other 1306039fc32eSdrh ** hand, a false negative (returning FALSE when the result could be NULL) 1307039fc32eSdrh ** will likely result in an incorrect answer. So when in doubt, return 1308039fc32eSdrh ** TRUE. 1309039fc32eSdrh */ 1310039fc32eSdrh int sqlite3ExprCanBeNull(const Expr *p){ 1311039fc32eSdrh u8 op; 1312cd7f457eSdrh while( p->op==TK_UPLUS || p->op==TK_UMINUS ){ p = p->pLeft; } 1313039fc32eSdrh op = p->op; 1314039fc32eSdrh if( op==TK_REGISTER ) op = p->op2; 1315039fc32eSdrh switch( op ){ 1316039fc32eSdrh case TK_INTEGER: 1317039fc32eSdrh case TK_STRING: 1318039fc32eSdrh case TK_FLOAT: 1319039fc32eSdrh case TK_BLOB: 1320039fc32eSdrh return 0; 1321039fc32eSdrh default: 1322039fc32eSdrh return 1; 1323039fc32eSdrh } 1324039fc32eSdrh } 1325039fc32eSdrh 1326039fc32eSdrh /* 13272f2855b6Sdrh ** Generate an OP_IsNull instruction that tests register iReg and jumps 13282f2855b6Sdrh ** to location iDest if the value in iReg is NULL. The value in iReg 13292f2855b6Sdrh ** was computed by pExpr. If we can look at pExpr at compile-time and 13302f2855b6Sdrh ** determine that it can never generate a NULL, then the OP_IsNull operation 13312f2855b6Sdrh ** can be omitted. 13322f2855b6Sdrh */ 13332f2855b6Sdrh void sqlite3ExprCodeIsNullJump( 13342f2855b6Sdrh Vdbe *v, /* The VDBE under construction */ 13352f2855b6Sdrh const Expr *pExpr, /* Only generate OP_IsNull if this expr can be NULL */ 13362f2855b6Sdrh int iReg, /* Test the value in this register for NULL */ 13372f2855b6Sdrh int iDest /* Jump here if the value is null */ 13382f2855b6Sdrh ){ 13392f2855b6Sdrh if( sqlite3ExprCanBeNull(pExpr) ){ 13402f2855b6Sdrh sqlite3VdbeAddOp2(v, OP_IsNull, iReg, iDest); 13412f2855b6Sdrh } 13422f2855b6Sdrh } 13432f2855b6Sdrh 13442f2855b6Sdrh /* 1345039fc32eSdrh ** Return TRUE if the given expression is a constant which would be 1346039fc32eSdrh ** unchanged by OP_Affinity with the affinity given in the second 1347039fc32eSdrh ** argument. 1348039fc32eSdrh ** 1349039fc32eSdrh ** This routine is used to determine if the OP_Affinity operation 1350039fc32eSdrh ** can be omitted. When in doubt return FALSE. A false negative 1351039fc32eSdrh ** is harmless. A false positive, however, can result in the wrong 1352039fc32eSdrh ** answer. 1353039fc32eSdrh */ 1354039fc32eSdrh int sqlite3ExprNeedsNoAffinityChange(const Expr *p, char aff){ 1355039fc32eSdrh u8 op; 1356039fc32eSdrh if( aff==SQLITE_AFF_NONE ) return 1; 1357cd7f457eSdrh while( p->op==TK_UPLUS || p->op==TK_UMINUS ){ p = p->pLeft; } 1358039fc32eSdrh op = p->op; 1359039fc32eSdrh if( op==TK_REGISTER ) op = p->op2; 1360039fc32eSdrh switch( op ){ 1361039fc32eSdrh case TK_INTEGER: { 1362039fc32eSdrh return aff==SQLITE_AFF_INTEGER || aff==SQLITE_AFF_NUMERIC; 1363039fc32eSdrh } 1364039fc32eSdrh case TK_FLOAT: { 1365039fc32eSdrh return aff==SQLITE_AFF_REAL || aff==SQLITE_AFF_NUMERIC; 1366039fc32eSdrh } 1367039fc32eSdrh case TK_STRING: { 1368039fc32eSdrh return aff==SQLITE_AFF_TEXT; 1369039fc32eSdrh } 1370039fc32eSdrh case TK_BLOB: { 1371039fc32eSdrh return 1; 1372039fc32eSdrh } 13732f2855b6Sdrh case TK_COLUMN: { 137488376ca7Sdrh assert( p->iTable>=0 ); /* p cannot be part of a CHECK constraint */ 137588376ca7Sdrh return p->iColumn<0 13762f2855b6Sdrh && (aff==SQLITE_AFF_INTEGER || aff==SQLITE_AFF_NUMERIC); 13772f2855b6Sdrh } 1378039fc32eSdrh default: { 1379039fc32eSdrh return 0; 1380039fc32eSdrh } 1381039fc32eSdrh } 1382039fc32eSdrh } 1383039fc32eSdrh 1384039fc32eSdrh /* 1385c4a3c779Sdrh ** Return TRUE if the given string is a row-id column name. 1386c4a3c779Sdrh */ 13874adee20fSdanielk1977 int sqlite3IsRowid(const char *z){ 13884adee20fSdanielk1977 if( sqlite3StrICmp(z, "_ROWID_")==0 ) return 1; 13894adee20fSdanielk1977 if( sqlite3StrICmp(z, "ROWID")==0 ) return 1; 13904adee20fSdanielk1977 if( sqlite3StrICmp(z, "OID")==0 ) return 1; 1391c4a3c779Sdrh return 0; 1392c4a3c779Sdrh } 1393c4a3c779Sdrh 13949a96b668Sdanielk1977 /* 1395b74b1017Sdrh ** Return true if we are able to the IN operator optimization on a 1396b74b1017Sdrh ** query of the form 1397b287f4b6Sdrh ** 1398b74b1017Sdrh ** x IN (SELECT ...) 1399b287f4b6Sdrh ** 1400b74b1017Sdrh ** Where the SELECT... clause is as specified by the parameter to this 1401b74b1017Sdrh ** routine. 1402b74b1017Sdrh ** 1403b74b1017Sdrh ** The Select object passed in has already been preprocessed and no 1404b74b1017Sdrh ** errors have been found. 1405b287f4b6Sdrh */ 1406b287f4b6Sdrh #ifndef SQLITE_OMIT_SUBQUERY 1407b287f4b6Sdrh static int isCandidateForInOpt(Select *p){ 1408b287f4b6Sdrh SrcList *pSrc; 1409b287f4b6Sdrh ExprList *pEList; 1410b287f4b6Sdrh Table *pTab; 1411b287f4b6Sdrh if( p==0 ) return 0; /* right-hand side of IN is SELECT */ 1412b287f4b6Sdrh if( p->pPrior ) return 0; /* Not a compound SELECT */ 14137d10d5a6Sdrh if( p->selFlags & (SF_Distinct|SF_Aggregate) ){ 1414b74b1017Sdrh testcase( (p->selFlags & (SF_Distinct|SF_Aggregate))==SF_Distinct ); 1415b74b1017Sdrh testcase( (p->selFlags & (SF_Distinct|SF_Aggregate))==SF_Aggregate ); 14167d10d5a6Sdrh return 0; /* No DISTINCT keyword and no aggregate functions */ 14177d10d5a6Sdrh } 1418b74b1017Sdrh assert( p->pGroupBy==0 ); /* Has no GROUP BY clause */ 1419b287f4b6Sdrh if( p->pLimit ) return 0; /* Has no LIMIT clause */ 1420b74b1017Sdrh assert( p->pOffset==0 ); /* No LIMIT means no OFFSET */ 1421b287f4b6Sdrh if( p->pWhere ) return 0; /* Has no WHERE clause */ 1422b287f4b6Sdrh pSrc = p->pSrc; 1423d1fa7bcaSdrh assert( pSrc!=0 ); 1424d1fa7bcaSdrh if( pSrc->nSrc!=1 ) return 0; /* Single term in FROM clause */ 1425b74b1017Sdrh if( pSrc->a[0].pSelect ) return 0; /* FROM is not a subquery or view */ 1426b287f4b6Sdrh pTab = pSrc->a[0].pTab; 1427b74b1017Sdrh if( NEVER(pTab==0) ) return 0; 1428b74b1017Sdrh assert( pTab->pSelect==0 ); /* FROM clause is not a view */ 1429b287f4b6Sdrh if( IsVirtual(pTab) ) return 0; /* FROM clause not a virtual table */ 1430b287f4b6Sdrh pEList = p->pEList; 1431b287f4b6Sdrh if( pEList->nExpr!=1 ) return 0; /* One column in the result set */ 1432b287f4b6Sdrh if( pEList->a[0].pExpr->op!=TK_COLUMN ) return 0; /* Result is a column */ 1433b287f4b6Sdrh return 1; 1434b287f4b6Sdrh } 1435b287f4b6Sdrh #endif /* SQLITE_OMIT_SUBQUERY */ 1436b287f4b6Sdrh 1437b287f4b6Sdrh /* 14381d8cb21fSdan ** Code an OP_Once instruction and allocate space for its flag. Return the 14391d8cb21fSdan ** address of the new instruction. 14401d8cb21fSdan */ 14411d8cb21fSdan int sqlite3CodeOnce(Parse *pParse){ 14421d8cb21fSdan Vdbe *v = sqlite3GetVdbe(pParse); /* Virtual machine being coded */ 14431d8cb21fSdan return sqlite3VdbeAddOp1(v, OP_Once, pParse->nOnce++); 14441d8cb21fSdan } 14451d8cb21fSdan 14461d8cb21fSdan /* 14479a96b668Sdanielk1977 ** This function is used by the implementation of the IN (...) operator. 1448d4305ca6Sdrh ** The pX parameter is the expression on the RHS of the IN operator, which 1449d4305ca6Sdrh ** might be either a list of expressions or a subquery. 14509a96b668Sdanielk1977 ** 1451d4305ca6Sdrh ** The job of this routine is to find or create a b-tree object that can 1452d4305ca6Sdrh ** be used either to test for membership in the RHS set or to iterate through 1453d4305ca6Sdrh ** all members of the RHS set, skipping duplicates. 1454d4305ca6Sdrh ** 1455d4305ca6Sdrh ** A cursor is opened on the b-tree object that the RHS of the IN operator 1456d4305ca6Sdrh ** and pX->iTable is set to the index of that cursor. 1457d4305ca6Sdrh ** 1458b74b1017Sdrh ** The returned value of this function indicates the b-tree type, as follows: 14599a96b668Sdanielk1977 ** 14609a96b668Sdanielk1977 ** IN_INDEX_ROWID - The cursor was opened on a database table. 14611ccce449Sdrh ** IN_INDEX_INDEX_ASC - The cursor was opened on an ascending index. 14621ccce449Sdrh ** IN_INDEX_INDEX_DESC - The cursor was opened on a descending index. 14639a96b668Sdanielk1977 ** IN_INDEX_EPH - The cursor was opened on a specially created and 14649a96b668Sdanielk1977 ** populated epheremal table. 14659a96b668Sdanielk1977 ** 1466d4305ca6Sdrh ** An existing b-tree might be used if the RHS expression pX is a simple 1467d4305ca6Sdrh ** subquery such as: 14689a96b668Sdanielk1977 ** 14699a96b668Sdanielk1977 ** SELECT <column> FROM <table> 14709a96b668Sdanielk1977 ** 1471d4305ca6Sdrh ** If the RHS of the IN operator is a list or a more complex subquery, then 1472d4305ca6Sdrh ** an ephemeral table might need to be generated from the RHS and then 1473d4305ca6Sdrh ** pX->iTable made to point to the ephermeral table instead of an 1474d4305ca6Sdrh ** existing table. 1475d4305ca6Sdrh ** 1476b74b1017Sdrh ** If the prNotFound parameter is 0, then the b-tree will be used to iterate 14779a96b668Sdanielk1977 ** through the set members, skipping any duplicates. In this case an 14789a96b668Sdanielk1977 ** epheremal table must be used unless the selected <column> is guaranteed 14799a96b668Sdanielk1977 ** to be unique - either because it is an INTEGER PRIMARY KEY or it 1480b74b1017Sdrh ** has a UNIQUE constraint or UNIQUE index. 14810cdc022eSdanielk1977 ** 1482b74b1017Sdrh ** If the prNotFound parameter is not 0, then the b-tree will be used 14830cdc022eSdanielk1977 ** for fast set membership tests. In this case an epheremal table must 14840cdc022eSdanielk1977 ** be used unless <column> is an INTEGER PRIMARY KEY or an index can 14850cdc022eSdanielk1977 ** be found with <column> as its left-most column. 14860cdc022eSdanielk1977 ** 1487b74b1017Sdrh ** When the b-tree is being used for membership tests, the calling function 14880cdc022eSdanielk1977 ** needs to know whether or not the structure contains an SQL NULL 14890cdc022eSdanielk1977 ** value in order to correctly evaluate expressions like "X IN (Y, Z)". 1490e3365e6cSdrh ** If there is any chance that the (...) might contain a NULL value at 14910cdc022eSdanielk1977 ** runtime, then a register is allocated and the register number written 1492e3365e6cSdrh ** to *prNotFound. If there is no chance that the (...) contains a 14930cdc022eSdanielk1977 ** NULL value, then *prNotFound is left unchanged. 14940cdc022eSdanielk1977 ** 14950cdc022eSdanielk1977 ** If a register is allocated and its location stored in *prNotFound, then 1496e3365e6cSdrh ** its initial value is NULL. If the (...) does not remain constant 1497e3365e6cSdrh ** for the duration of the query (i.e. the SELECT within the (...) 1498b74b1017Sdrh ** is a correlated subquery) then the value of the allocated register is 1499e3365e6cSdrh ** reset to NULL each time the subquery is rerun. This allows the 1500b74b1017Sdrh ** caller to use vdbe code equivalent to the following: 15010cdc022eSdanielk1977 ** 15020cdc022eSdanielk1977 ** if( register==NULL ){ 15030cdc022eSdanielk1977 ** has_null = <test if data structure contains null> 15040cdc022eSdanielk1977 ** register = 1 15050cdc022eSdanielk1977 ** } 15060cdc022eSdanielk1977 ** 15070cdc022eSdanielk1977 ** in order to avoid running the <test if data structure contains null> 15080cdc022eSdanielk1977 ** test more often than is necessary. 15099a96b668Sdanielk1977 */ 1510284f4acaSdanielk1977 #ifndef SQLITE_OMIT_SUBQUERY 15110cdc022eSdanielk1977 int sqlite3FindInIndex(Parse *pParse, Expr *pX, int *prNotFound){ 1512b74b1017Sdrh Select *p; /* SELECT to the right of IN operator */ 1513b74b1017Sdrh int eType = 0; /* Type of RHS table. IN_INDEX_* */ 1514b74b1017Sdrh int iTab = pParse->nTab++; /* Cursor of the RHS table */ 1515b74b1017Sdrh int mustBeUnique = (prNotFound==0); /* True if RHS must be unique */ 1516b8475df8Sdrh Vdbe *v = sqlite3GetVdbe(pParse); /* Virtual machine being coded */ 15179a96b668Sdanielk1977 15181450bc6eSdrh assert( pX->op==TK_IN ); 15191450bc6eSdrh 1520b74b1017Sdrh /* Check to see if an existing table or index can be used to 1521b74b1017Sdrh ** satisfy the query. This is preferable to generating a new 1522b74b1017Sdrh ** ephemeral table. 15239a96b668Sdanielk1977 */ 15246ab3a2ecSdanielk1977 p = (ExprHasProperty(pX, EP_xIsSelect) ? pX->x.pSelect : 0); 1525fd773cf9Sdrh if( ALWAYS(pParse->nErr==0) && isCandidateForInOpt(p) ){ 1526e1fb65a0Sdanielk1977 sqlite3 *db = pParse->db; /* Database connection */ 1527b07028f7Sdrh Table *pTab; /* Table <table>. */ 1528b07028f7Sdrh Expr *pExpr; /* Expression <column> */ 1529b07028f7Sdrh int iCol; /* Index of column <column> */ 1530e1fb65a0Sdanielk1977 int iDb; /* Database idx for pTab */ 1531e1fb65a0Sdanielk1977 1532b07028f7Sdrh assert( p ); /* Because of isCandidateForInOpt(p) */ 1533b07028f7Sdrh assert( p->pEList!=0 ); /* Because of isCandidateForInOpt(p) */ 1534b07028f7Sdrh assert( p->pEList->a[0].pExpr!=0 ); /* Because of isCandidateForInOpt(p) */ 1535b07028f7Sdrh assert( p->pSrc!=0 ); /* Because of isCandidateForInOpt(p) */ 1536b07028f7Sdrh pTab = p->pSrc->a[0].pTab; 1537b07028f7Sdrh pExpr = p->pEList->a[0].pExpr; 1538b07028f7Sdrh iCol = pExpr->iColumn; 1539b07028f7Sdrh 1540e1fb65a0Sdanielk1977 /* Code an OP_VerifyCookie and OP_TableLock for <table>. */ 1541e1fb65a0Sdanielk1977 iDb = sqlite3SchemaToIndex(db, pTab->pSchema); 1542e1fb65a0Sdanielk1977 sqlite3CodeVerifySchema(pParse, iDb); 1543e1fb65a0Sdanielk1977 sqlite3TableLock(pParse, iDb, pTab->tnum, 0, pTab->zName); 15449a96b668Sdanielk1977 15459a96b668Sdanielk1977 /* This function is only called from two places. In both cases the vdbe 15469a96b668Sdanielk1977 ** has already been allocated. So assume sqlite3GetVdbe() is always 15479a96b668Sdanielk1977 ** successful here. 15489a96b668Sdanielk1977 */ 15499a96b668Sdanielk1977 assert(v); 15509a96b668Sdanielk1977 if( iCol<0 ){ 15519a96b668Sdanielk1977 int iAddr; 15529a96b668Sdanielk1977 15531d8cb21fSdan iAddr = sqlite3CodeOnce(pParse); 15549a96b668Sdanielk1977 15559a96b668Sdanielk1977 sqlite3OpenTable(pParse, iTab, iDb, pTab, OP_OpenRead); 15569a96b668Sdanielk1977 eType = IN_INDEX_ROWID; 15579a96b668Sdanielk1977 15589a96b668Sdanielk1977 sqlite3VdbeJumpHere(v, iAddr); 15599a96b668Sdanielk1977 }else{ 1560e1fb65a0Sdanielk1977 Index *pIdx; /* Iterator variable */ 1561e1fb65a0Sdanielk1977 15629a96b668Sdanielk1977 /* The collation sequence used by the comparison. If an index is to 15639a96b668Sdanielk1977 ** be used in place of a temp-table, it must be ordered according 1564e1fb65a0Sdanielk1977 ** to this collation sequence. */ 15659a96b668Sdanielk1977 CollSeq *pReq = sqlite3BinaryCompareCollSeq(pParse, pX->pLeft, pExpr); 15669a96b668Sdanielk1977 15679a96b668Sdanielk1977 /* Check that the affinity that will be used to perform the 15689a96b668Sdanielk1977 ** comparison is the same as the affinity of the column. If 15699a96b668Sdanielk1977 ** it is not, it is not possible to use any index. 15709a96b668Sdanielk1977 */ 1571dbaee5e3Sdrh int affinity_ok = sqlite3IndexAffinityOk(pX, pTab->aCol[iCol].affinity); 15729a96b668Sdanielk1977 15739a96b668Sdanielk1977 for(pIdx=pTab->pIndex; pIdx && eType==0 && affinity_ok; pIdx=pIdx->pNext){ 15749a96b668Sdanielk1977 if( (pIdx->aiColumn[0]==iCol) 1575b74b1017Sdrh && sqlite3FindCollSeq(db, ENC(db), pIdx->azColl[0], 0)==pReq 15769a96b668Sdanielk1977 && (!mustBeUnique || (pIdx->nColumn==1 && pIdx->onError!=OE_None)) 15779a96b668Sdanielk1977 ){ 15789a96b668Sdanielk1977 int iAddr; 15799a96b668Sdanielk1977 char *pKey; 15809a96b668Sdanielk1977 15819a96b668Sdanielk1977 pKey = (char *)sqlite3IndexKeyinfo(pParse, pIdx); 15821d8cb21fSdan iAddr = sqlite3CodeOnce(pParse); 15839a96b668Sdanielk1977 1584207872a4Sdanielk1977 sqlite3VdbeAddOp4(v, OP_OpenRead, iTab, pIdx->tnum, iDb, 158566a5167bSdrh pKey,P4_KEYINFO_HANDOFF); 1586207872a4Sdanielk1977 VdbeComment((v, "%s", pIdx->zName)); 15871ccce449Sdrh assert( IN_INDEX_INDEX_DESC == IN_INDEX_INDEX_ASC+1 ); 15881ccce449Sdrh eType = IN_INDEX_INDEX_ASC + pIdx->aSortOrder[0]; 15899a96b668Sdanielk1977 15909a96b668Sdanielk1977 sqlite3VdbeJumpHere(v, iAddr); 15910cdc022eSdanielk1977 if( prNotFound && !pTab->aCol[iCol].notNull ){ 15920cdc022eSdanielk1977 *prNotFound = ++pParse->nMem; 1593b8475df8Sdrh sqlite3VdbeAddOp2(v, OP_Null, 0, *prNotFound); 15940cdc022eSdanielk1977 } 15959a96b668Sdanielk1977 } 15969a96b668Sdanielk1977 } 15979a96b668Sdanielk1977 } 15989a96b668Sdanielk1977 } 15999a96b668Sdanielk1977 16009a96b668Sdanielk1977 if( eType==0 ){ 16011450bc6eSdrh /* Could not found an existing table or index to use as the RHS b-tree. 1602b74b1017Sdrh ** We will have to generate an ephemeral table to do the job. 1603b74b1017Sdrh */ 1604cf4d38aaSdrh double savedNQueryLoop = pParse->nQueryLoop; 16050cdc022eSdanielk1977 int rMayHaveNull = 0; 160641a05b7bSdanielk1977 eType = IN_INDEX_EPH; 16070cdc022eSdanielk1977 if( prNotFound ){ 16080cdc022eSdanielk1977 *prNotFound = rMayHaveNull = ++pParse->nMem; 1609b8475df8Sdrh sqlite3VdbeAddOp2(v, OP_Null, 0, *prNotFound); 1610cf4d38aaSdrh }else{ 1611cf4d38aaSdrh testcase( pParse->nQueryLoop>(double)1 ); 1612cf4d38aaSdrh pParse->nQueryLoop = (double)1; 1613cf4d38aaSdrh if( pX->pLeft->iColumn<0 && !ExprHasAnyProperty(pX, EP_xIsSelect) ){ 161441a05b7bSdanielk1977 eType = IN_INDEX_ROWID; 16150cdc022eSdanielk1977 } 1616cf4d38aaSdrh } 161741a05b7bSdanielk1977 sqlite3CodeSubselect(pParse, pX, rMayHaveNull, eType==IN_INDEX_ROWID); 1618cf4d38aaSdrh pParse->nQueryLoop = savedNQueryLoop; 16199a96b668Sdanielk1977 }else{ 16209a96b668Sdanielk1977 pX->iTable = iTab; 16219a96b668Sdanielk1977 } 16229a96b668Sdanielk1977 return eType; 16239a96b668Sdanielk1977 } 1624284f4acaSdanielk1977 #endif 1625626a879aSdrh 1626626a879aSdrh /* 1627d4187c71Sdrh ** Generate code for scalar subqueries used as a subquery expression, EXISTS, 1628d4187c71Sdrh ** or IN operators. Examples: 1629626a879aSdrh ** 16309cbe6352Sdrh ** (SELECT a FROM b) -- subquery 16319cbe6352Sdrh ** EXISTS (SELECT a FROM b) -- EXISTS subquery 16329cbe6352Sdrh ** x IN (4,5,11) -- IN operator with list on right-hand side 16339cbe6352Sdrh ** x IN (SELECT a FROM b) -- IN operator with subquery on the right 1634fef5208cSdrh ** 16359cbe6352Sdrh ** The pExpr parameter describes the expression that contains the IN 16369cbe6352Sdrh ** operator or subquery. 163741a05b7bSdanielk1977 ** 163841a05b7bSdanielk1977 ** If parameter isRowid is non-zero, then expression pExpr is guaranteed 163941a05b7bSdanielk1977 ** to be of the form "<rowid> IN (?, ?, ?)", where <rowid> is a reference 164041a05b7bSdanielk1977 ** to some integer key column of a table B-Tree. In this case, use an 164141a05b7bSdanielk1977 ** intkey B-Tree to store the set of IN(...) values instead of the usual 164241a05b7bSdanielk1977 ** (slower) variable length keys B-Tree. 1643fd773cf9Sdrh ** 1644fd773cf9Sdrh ** If rMayHaveNull is non-zero, that means that the operation is an IN 1645fd773cf9Sdrh ** (not a SELECT or EXISTS) and that the RHS might contains NULLs. 1646fd773cf9Sdrh ** Furthermore, the IN is in a WHERE clause and that we really want 1647fd773cf9Sdrh ** to iterate over the RHS of the IN operator in order to quickly locate 1648fd773cf9Sdrh ** all corresponding LHS elements. All this routine does is initialize 1649fd773cf9Sdrh ** the register given by rMayHaveNull to NULL. Calling routines will take 1650fd773cf9Sdrh ** care of changing this register value to non-NULL if the RHS is NULL-free. 1651fd773cf9Sdrh ** 1652fd773cf9Sdrh ** If rMayHaveNull is zero, that means that the subquery is being used 1653fd773cf9Sdrh ** for membership testing only. There is no need to initialize any 1654fd773cf9Sdrh ** registers to indicate the presense or absence of NULLs on the RHS. 16551450bc6eSdrh ** 16561450bc6eSdrh ** For a SELECT or EXISTS operator, return the register that holds the 16571450bc6eSdrh ** result. For IN operators or if an error occurs, the return value is 0. 1658cce7d176Sdrh */ 165951522cd3Sdrh #ifndef SQLITE_OMIT_SUBQUERY 16601450bc6eSdrh int sqlite3CodeSubselect( 1661fd773cf9Sdrh Parse *pParse, /* Parsing context */ 1662fd773cf9Sdrh Expr *pExpr, /* The IN, SELECT, or EXISTS operator */ 1663fd773cf9Sdrh int rMayHaveNull, /* Register that records whether NULLs exist in RHS */ 1664fd773cf9Sdrh int isRowid /* If true, LHS of IN operator is a rowid */ 166541a05b7bSdanielk1977 ){ 1666dfd2d9f6Sdrh int testAddr = -1; /* One-time test address */ 16671450bc6eSdrh int rReg = 0; /* Register storing resulting */ 1668b3bce662Sdanielk1977 Vdbe *v = sqlite3GetVdbe(pParse); 16691450bc6eSdrh if( NEVER(v==0) ) return 0; 1670ceea3321Sdrh sqlite3ExprCachePush(pParse); 1671fc976065Sdanielk1977 167257dbd7b3Sdrh /* This code must be run in its entirety every time it is encountered 167357dbd7b3Sdrh ** if any of the following is true: 167457dbd7b3Sdrh ** 167557dbd7b3Sdrh ** * The right-hand side is a correlated subquery 167657dbd7b3Sdrh ** * The right-hand side is an expression list containing variables 167757dbd7b3Sdrh ** * We are inside a trigger 167857dbd7b3Sdrh ** 167957dbd7b3Sdrh ** If all of the above are false, then we can run this code just once 168057dbd7b3Sdrh ** save the results, and reuse the same result on subsequent invocations. 1681b3bce662Sdanielk1977 */ 16821d8cb21fSdan if( !ExprHasAnyProperty(pExpr, EP_VarSelect) ){ 16831d8cb21fSdan testAddr = sqlite3CodeOnce(pParse); 1684b3bce662Sdanielk1977 } 1685b3bce662Sdanielk1977 16864a07e3dbSdan #ifndef SQLITE_OMIT_EXPLAIN 16874a07e3dbSdan if( pParse->explain==2 ){ 16884a07e3dbSdan char *zMsg = sqlite3MPrintf( 1689dfd2d9f6Sdrh pParse->db, "EXECUTE %s%s SUBQUERY %d", testAddr>=0?"":"CORRELATED ", 16904a07e3dbSdan pExpr->op==TK_IN?"LIST":"SCALAR", pParse->iNextSelectId 16914a07e3dbSdan ); 16924a07e3dbSdan sqlite3VdbeAddOp4(v, OP_Explain, pParse->iSelectId, 0, 0, zMsg, P4_DYNAMIC); 16934a07e3dbSdan } 16944a07e3dbSdan #endif 16954a07e3dbSdan 1696cce7d176Sdrh switch( pExpr->op ){ 1697fef5208cSdrh case TK_IN: { 1698d4187c71Sdrh char affinity; /* Affinity of the LHS of the IN */ 1699d4187c71Sdrh KeyInfo keyInfo; /* Keyinfo for the generated table */ 1700e1a022e4Sdrh static u8 sortOrder = 0; /* Fake aSortOrder for keyInfo */ 1701b9bb7c18Sdrh int addr; /* Address of OP_OpenEphemeral instruction */ 1702d4187c71Sdrh Expr *pLeft = pExpr->pLeft; /* the LHS of the IN operator */ 1703d3d39e93Sdrh 17040cdc022eSdanielk1977 if( rMayHaveNull ){ 17050cdc022eSdanielk1977 sqlite3VdbeAddOp2(v, OP_Null, 0, rMayHaveNull); 17060cdc022eSdanielk1977 } 17070cdc022eSdanielk1977 170841a05b7bSdanielk1977 affinity = sqlite3ExprAffinity(pLeft); 1709e014a838Sdanielk1977 1710e014a838Sdanielk1977 /* Whether this is an 'x IN(SELECT...)' or an 'x IN(<exprlist>)' 17118cff69dfSdrh ** expression it is handled the same way. An ephemeral table is 1712e014a838Sdanielk1977 ** filled with single-field index keys representing the results 1713e014a838Sdanielk1977 ** from the SELECT or the <exprlist>. 1714fef5208cSdrh ** 1715e014a838Sdanielk1977 ** If the 'x' expression is a column value, or the SELECT... 1716e014a838Sdanielk1977 ** statement returns a column value, then the affinity of that 1717e014a838Sdanielk1977 ** column is used to build the index keys. If both 'x' and the 1718e014a838Sdanielk1977 ** SELECT... statement are columns, then numeric affinity is used 1719e014a838Sdanielk1977 ** if either column has NUMERIC or INTEGER affinity. If neither 1720e014a838Sdanielk1977 ** 'x' nor the SELECT... statement are columns, then numeric affinity 1721e014a838Sdanielk1977 ** is used. 1722fef5208cSdrh */ 1723832508b7Sdrh pExpr->iTable = pParse->nTab++; 172441a05b7bSdanielk1977 addr = sqlite3VdbeAddOp2(v, OP_OpenEphemeral, pExpr->iTable, !isRowid); 1725d4187c71Sdrh if( rMayHaveNull==0 ) sqlite3VdbeChangeP5(v, BTREE_UNORDERED); 1726d3d39e93Sdrh memset(&keyInfo, 0, sizeof(keyInfo)); 1727d3d39e93Sdrh keyInfo.nField = 1; 1728e1a022e4Sdrh keyInfo.aSortOrder = &sortOrder; 1729e014a838Sdanielk1977 17306ab3a2ecSdanielk1977 if( ExprHasProperty(pExpr, EP_xIsSelect) ){ 1731e014a838Sdanielk1977 /* Case 1: expr IN (SELECT ...) 1732e014a838Sdanielk1977 ** 1733e014a838Sdanielk1977 ** Generate code to write the results of the select into the temporary 1734e014a838Sdanielk1977 ** table allocated and opened above. 1735e014a838Sdanielk1977 */ 17361013c932Sdrh SelectDest dest; 1737be5c89acSdrh ExprList *pEList; 17381013c932Sdrh 173941a05b7bSdanielk1977 assert( !isRowid ); 17401013c932Sdrh sqlite3SelectDestInit(&dest, SRT_Set, pExpr->iTable); 17412b596da8Sdrh dest.affSdst = (u8)affinity; 1742e014a838Sdanielk1977 assert( (pExpr->iTable&0x0000FFFF)==pExpr->iTable ); 174348b5b041Sdrh pExpr->x.pSelect->iLimit = 0; 17446ab3a2ecSdanielk1977 if( sqlite3Select(pParse, pExpr->x.pSelect, &dest) ){ 17451450bc6eSdrh return 0; 174694ccde58Sdrh } 17476ab3a2ecSdanielk1977 pEList = pExpr->x.pSelect->pEList; 1748fd773cf9Sdrh if( ALWAYS(pEList!=0 && pEList->nExpr>0) ){ 1749bcbb04e5Sdanielk1977 keyInfo.aColl[0] = sqlite3BinaryCompareCollSeq(pParse, pExpr->pLeft, 1750be5c89acSdrh pEList->a[0].pExpr); 17510202b29eSdanielk1977 } 1752a7d2db17Sdrh }else if( ALWAYS(pExpr->x.pList!=0) ){ 1753fef5208cSdrh /* Case 2: expr IN (exprlist) 1754fef5208cSdrh ** 1755e014a838Sdanielk1977 ** For each expression, build an index key from the evaluation and 1756e014a838Sdanielk1977 ** store it in the temporary table. If <expr> is a column, then use 1757e014a838Sdanielk1977 ** that columns affinity when building index keys. If <expr> is not 1758e014a838Sdanielk1977 ** a column, use numeric affinity. 1759fef5208cSdrh */ 1760e014a838Sdanielk1977 int i; 17616ab3a2ecSdanielk1977 ExprList *pList = pExpr->x.pList; 176257dbd7b3Sdrh struct ExprList_item *pItem; 1763ecc31805Sdrh int r1, r2, r3; 176457dbd7b3Sdrh 1765e014a838Sdanielk1977 if( !affinity ){ 17668159a35fSdrh affinity = SQLITE_AFF_NONE; 1767e014a838Sdanielk1977 } 17687d10d5a6Sdrh keyInfo.aColl[0] = sqlite3ExprCollSeq(pParse, pExpr->pLeft); 1769e1a022e4Sdrh keyInfo.aSortOrder = &sortOrder; 1770e014a838Sdanielk1977 1771e014a838Sdanielk1977 /* Loop through each expression in <exprlist>. */ 17722d401ab8Sdrh r1 = sqlite3GetTempReg(pParse); 17732d401ab8Sdrh r2 = sqlite3GetTempReg(pParse); 17744e7f36a2Sdanielk1977 sqlite3VdbeAddOp2(v, OP_Null, 0, r2); 177557dbd7b3Sdrh for(i=pList->nExpr, pItem=pList->a; i>0; i--, pItem++){ 177657dbd7b3Sdrh Expr *pE2 = pItem->pExpr; 1777e05c929bSdrh int iValToIns; 1778e014a838Sdanielk1977 177957dbd7b3Sdrh /* If the expression is not constant then we will need to 178057dbd7b3Sdrh ** disable the test that was generated above that makes sure 178157dbd7b3Sdrh ** this code only executes once. Because for a non-constant 178257dbd7b3Sdrh ** expression we need to rerun this code each time. 178357dbd7b3Sdrh */ 1784dfd2d9f6Sdrh if( testAddr>=0 && !sqlite3ExprIsConstant(pE2) ){ 178548f2d3b1Sdrh sqlite3VdbeChangeToNoop(v, testAddr); 1786dfd2d9f6Sdrh testAddr = -1; 17874794b980Sdrh } 1788e014a838Sdanielk1977 1789e014a838Sdanielk1977 /* Evaluate the expression and insert it into the temp table */ 1790e05c929bSdrh if( isRowid && sqlite3ExprIsInteger(pE2, &iValToIns) ){ 1791e05c929bSdrh sqlite3VdbeAddOp3(v, OP_InsertInt, pExpr->iTable, r2, iValToIns); 1792e05c929bSdrh }else{ 1793ecc31805Sdrh r3 = sqlite3ExprCodeTarget(pParse, pE2, r1); 179441a05b7bSdanielk1977 if( isRowid ){ 1795e05c929bSdrh sqlite3VdbeAddOp2(v, OP_MustBeInt, r3, 1796e05c929bSdrh sqlite3VdbeCurrentAddr(v)+2); 179741a05b7bSdanielk1977 sqlite3VdbeAddOp3(v, OP_Insert, pExpr->iTable, r2, r3); 179841a05b7bSdanielk1977 }else{ 1799ecc31805Sdrh sqlite3VdbeAddOp4(v, OP_MakeRecord, r3, 1, r2, &affinity, 1); 18003c31fc23Sdrh sqlite3ExprCacheAffinityChange(pParse, r3, 1); 18012d401ab8Sdrh sqlite3VdbeAddOp2(v, OP_IdxInsert, pExpr->iTable, r2); 1802fef5208cSdrh } 180341a05b7bSdanielk1977 } 1804e05c929bSdrh } 18052d401ab8Sdrh sqlite3ReleaseTempReg(pParse, r1); 18062d401ab8Sdrh sqlite3ReleaseTempReg(pParse, r2); 1807fef5208cSdrh } 180841a05b7bSdanielk1977 if( !isRowid ){ 180966a5167bSdrh sqlite3VdbeChangeP4(v, addr, (void *)&keyInfo, P4_KEYINFO); 181041a05b7bSdanielk1977 } 1811b3bce662Sdanielk1977 break; 1812fef5208cSdrh } 1813fef5208cSdrh 181451522cd3Sdrh case TK_EXISTS: 1815fd773cf9Sdrh case TK_SELECT: 1816fd773cf9Sdrh default: { 1817fd773cf9Sdrh /* If this has to be a scalar SELECT. Generate code to put the 1818fef5208cSdrh ** value of this select in a memory cell and record the number 1819fd773cf9Sdrh ** of the memory cell in iColumn. If this is an EXISTS, write 1820fd773cf9Sdrh ** an integer 0 (not exists) or 1 (exists) into a memory cell 1821fd773cf9Sdrh ** and record that memory cell in iColumn. 1822fef5208cSdrh */ 1823fd773cf9Sdrh Select *pSel; /* SELECT statement to encode */ 1824fd773cf9Sdrh SelectDest dest; /* How to deal with SELECt result */ 18251398ad36Sdrh 1826cf697396Sshane testcase( pExpr->op==TK_EXISTS ); 1827cf697396Sshane testcase( pExpr->op==TK_SELECT ); 1828cf697396Sshane assert( pExpr->op==TK_EXISTS || pExpr->op==TK_SELECT ); 1829cf697396Sshane 18306ab3a2ecSdanielk1977 assert( ExprHasProperty(pExpr, EP_xIsSelect) ); 18316ab3a2ecSdanielk1977 pSel = pExpr->x.pSelect; 18321013c932Sdrh sqlite3SelectDestInit(&dest, 0, ++pParse->nMem); 183351522cd3Sdrh if( pExpr->op==TK_SELECT ){ 18346c8c8ce0Sdanielk1977 dest.eDest = SRT_Mem; 18352b596da8Sdrh sqlite3VdbeAddOp2(v, OP_Null, 0, dest.iSDParm); 1836d4e70ebdSdrh VdbeComment((v, "Init subquery result")); 183751522cd3Sdrh }else{ 18386c8c8ce0Sdanielk1977 dest.eDest = SRT_Exists; 18392b596da8Sdrh sqlite3VdbeAddOp2(v, OP_Integer, 0, dest.iSDParm); 1840d4e70ebdSdrh VdbeComment((v, "Init EXISTS result")); 184151522cd3Sdrh } 1842633e6d57Sdrh sqlite3ExprDelete(pParse->db, pSel->pLimit); 1843094430ebSdrh pSel->pLimit = sqlite3PExpr(pParse, TK_INTEGER, 0, 0, 1844094430ebSdrh &sqlite3IntTokens[1]); 184548b5b041Sdrh pSel->iLimit = 0; 18467d10d5a6Sdrh if( sqlite3Select(pParse, pSel, &dest) ){ 18471450bc6eSdrh return 0; 184894ccde58Sdrh } 18492b596da8Sdrh rReg = dest.iSDParm; 185033e619fcSdrh ExprSetIrreducible(pExpr); 1851b3bce662Sdanielk1977 break; 185219a775c2Sdrh } 1853cce7d176Sdrh } 1854b3bce662Sdanielk1977 1855dfd2d9f6Sdrh if( testAddr>=0 ){ 185648f2d3b1Sdrh sqlite3VdbeJumpHere(v, testAddr); 1857b3bce662Sdanielk1977 } 1858ceea3321Sdrh sqlite3ExprCachePop(pParse, 1); 1859fc976065Sdanielk1977 18601450bc6eSdrh return rReg; 1861cce7d176Sdrh } 186251522cd3Sdrh #endif /* SQLITE_OMIT_SUBQUERY */ 1863cce7d176Sdrh 1864e3365e6cSdrh #ifndef SQLITE_OMIT_SUBQUERY 1865e3365e6cSdrh /* 1866e3365e6cSdrh ** Generate code for an IN expression. 1867e3365e6cSdrh ** 1868e3365e6cSdrh ** x IN (SELECT ...) 1869e3365e6cSdrh ** x IN (value, value, ...) 1870e3365e6cSdrh ** 1871e3365e6cSdrh ** The left-hand side (LHS) is a scalar expression. The right-hand side (RHS) 1872e3365e6cSdrh ** is an array of zero or more values. The expression is true if the LHS is 1873e3365e6cSdrh ** contained within the RHS. The value of the expression is unknown (NULL) 1874e3365e6cSdrh ** if the LHS is NULL or if the LHS is not contained within the RHS and the 1875e3365e6cSdrh ** RHS contains one or more NULL values. 1876e3365e6cSdrh ** 1877e3365e6cSdrh ** This routine generates code will jump to destIfFalse if the LHS is not 1878e3365e6cSdrh ** contained within the RHS. If due to NULLs we cannot determine if the LHS 1879e3365e6cSdrh ** is contained in the RHS then jump to destIfNull. If the LHS is contained 1880e3365e6cSdrh ** within the RHS then fall through. 1881e3365e6cSdrh */ 1882e3365e6cSdrh static void sqlite3ExprCodeIN( 1883e3365e6cSdrh Parse *pParse, /* Parsing and code generating context */ 1884e3365e6cSdrh Expr *pExpr, /* The IN expression */ 1885e3365e6cSdrh int destIfFalse, /* Jump here if LHS is not contained in the RHS */ 1886e3365e6cSdrh int destIfNull /* Jump here if the results are unknown due to NULLs */ 1887e3365e6cSdrh ){ 1888e3365e6cSdrh int rRhsHasNull = 0; /* Register that is true if RHS contains NULL values */ 1889e3365e6cSdrh char affinity; /* Comparison affinity to use */ 1890e3365e6cSdrh int eType; /* Type of the RHS */ 1891e3365e6cSdrh int r1; /* Temporary use register */ 1892e3365e6cSdrh Vdbe *v; /* Statement under construction */ 1893e3365e6cSdrh 1894e3365e6cSdrh /* Compute the RHS. After this step, the table with cursor 1895e3365e6cSdrh ** pExpr->iTable will contains the values that make up the RHS. 1896e3365e6cSdrh */ 1897e3365e6cSdrh v = pParse->pVdbe; 1898e3365e6cSdrh assert( v!=0 ); /* OOM detected prior to this routine */ 1899e3365e6cSdrh VdbeNoopComment((v, "begin IN expr")); 1900e3365e6cSdrh eType = sqlite3FindInIndex(pParse, pExpr, &rRhsHasNull); 1901e3365e6cSdrh 1902e3365e6cSdrh /* Figure out the affinity to use to create a key from the results 1903e3365e6cSdrh ** of the expression. affinityStr stores a static string suitable for 1904e3365e6cSdrh ** P4 of OP_MakeRecord. 1905e3365e6cSdrh */ 1906e3365e6cSdrh affinity = comparisonAffinity(pExpr); 1907e3365e6cSdrh 1908e3365e6cSdrh /* Code the LHS, the <expr> from "<expr> IN (...)". 1909e3365e6cSdrh */ 1910e3365e6cSdrh sqlite3ExprCachePush(pParse); 1911e3365e6cSdrh r1 = sqlite3GetTempReg(pParse); 1912e3365e6cSdrh sqlite3ExprCode(pParse, pExpr->pLeft, r1); 1913e3365e6cSdrh 1914094430ebSdrh /* If the LHS is NULL, then the result is either false or NULL depending 1915094430ebSdrh ** on whether the RHS is empty or not, respectively. 1916094430ebSdrh */ 1917094430ebSdrh if( destIfNull==destIfFalse ){ 1918094430ebSdrh /* Shortcut for the common case where the false and NULL outcomes are 1919094430ebSdrh ** the same. */ 1920094430ebSdrh sqlite3VdbeAddOp2(v, OP_IsNull, r1, destIfNull); 1921094430ebSdrh }else{ 1922094430ebSdrh int addr1 = sqlite3VdbeAddOp1(v, OP_NotNull, r1); 1923094430ebSdrh sqlite3VdbeAddOp2(v, OP_Rewind, pExpr->iTable, destIfFalse); 1924094430ebSdrh sqlite3VdbeAddOp2(v, OP_Goto, 0, destIfNull); 1925094430ebSdrh sqlite3VdbeJumpHere(v, addr1); 1926094430ebSdrh } 1927e3365e6cSdrh 1928e3365e6cSdrh if( eType==IN_INDEX_ROWID ){ 1929e3365e6cSdrh /* In this case, the RHS is the ROWID of table b-tree 1930e3365e6cSdrh */ 1931e3365e6cSdrh sqlite3VdbeAddOp2(v, OP_MustBeInt, r1, destIfFalse); 1932e3365e6cSdrh sqlite3VdbeAddOp3(v, OP_NotExists, pExpr->iTable, destIfFalse, r1); 1933e3365e6cSdrh }else{ 1934e3365e6cSdrh /* In this case, the RHS is an index b-tree. 1935e3365e6cSdrh */ 19368cff69dfSdrh sqlite3VdbeAddOp4(v, OP_Affinity, r1, 1, 0, &affinity, 1); 1937e3365e6cSdrh 1938e3365e6cSdrh /* If the set membership test fails, then the result of the 1939e3365e6cSdrh ** "x IN (...)" expression must be either 0 or NULL. If the set 1940e3365e6cSdrh ** contains no NULL values, then the result is 0. If the set 1941e3365e6cSdrh ** contains one or more NULL values, then the result of the 1942e3365e6cSdrh ** expression is also NULL. 1943e3365e6cSdrh */ 1944e3365e6cSdrh if( rRhsHasNull==0 || destIfFalse==destIfNull ){ 1945e3365e6cSdrh /* This branch runs if it is known at compile time that the RHS 1946e3365e6cSdrh ** cannot contain NULL values. This happens as the result 1947e3365e6cSdrh ** of a "NOT NULL" constraint in the database schema. 1948e3365e6cSdrh ** 1949e3365e6cSdrh ** Also run this branch if NULL is equivalent to FALSE 1950e3365e6cSdrh ** for this particular IN operator. 1951e3365e6cSdrh */ 19528cff69dfSdrh sqlite3VdbeAddOp4Int(v, OP_NotFound, pExpr->iTable, destIfFalse, r1, 1); 1953e3365e6cSdrh 1954e3365e6cSdrh }else{ 1955e3365e6cSdrh /* In this branch, the RHS of the IN might contain a NULL and 1956e3365e6cSdrh ** the presence of a NULL on the RHS makes a difference in the 1957e3365e6cSdrh ** outcome. 1958e3365e6cSdrh */ 1959e3365e6cSdrh int j1, j2, j3; 1960e3365e6cSdrh 1961e3365e6cSdrh /* First check to see if the LHS is contained in the RHS. If so, 1962e3365e6cSdrh ** then the presence of NULLs in the RHS does not matter, so jump 1963e3365e6cSdrh ** over all of the code that follows. 1964e3365e6cSdrh */ 19658cff69dfSdrh j1 = sqlite3VdbeAddOp4Int(v, OP_Found, pExpr->iTable, 0, r1, 1); 1966e3365e6cSdrh 1967e3365e6cSdrh /* Here we begin generating code that runs if the LHS is not 1968e3365e6cSdrh ** contained within the RHS. Generate additional code that 1969e3365e6cSdrh ** tests the RHS for NULLs. If the RHS contains a NULL then 1970e3365e6cSdrh ** jump to destIfNull. If there are no NULLs in the RHS then 1971e3365e6cSdrh ** jump to destIfFalse. 1972e3365e6cSdrh */ 1973e3365e6cSdrh j2 = sqlite3VdbeAddOp1(v, OP_NotNull, rRhsHasNull); 19748cff69dfSdrh j3 = sqlite3VdbeAddOp4Int(v, OP_Found, pExpr->iTable, 0, rRhsHasNull, 1); 1975e3365e6cSdrh sqlite3VdbeAddOp2(v, OP_Integer, -1, rRhsHasNull); 1976e3365e6cSdrh sqlite3VdbeJumpHere(v, j3); 1977e3365e6cSdrh sqlite3VdbeAddOp2(v, OP_AddImm, rRhsHasNull, 1); 1978e3365e6cSdrh sqlite3VdbeJumpHere(v, j2); 1979e3365e6cSdrh 1980e3365e6cSdrh /* Jump to the appropriate target depending on whether or not 1981e3365e6cSdrh ** the RHS contains a NULL 1982e3365e6cSdrh */ 1983e3365e6cSdrh sqlite3VdbeAddOp2(v, OP_If, rRhsHasNull, destIfNull); 1984e3365e6cSdrh sqlite3VdbeAddOp2(v, OP_Goto, 0, destIfFalse); 1985e3365e6cSdrh 1986e3365e6cSdrh /* The OP_Found at the top of this branch jumps here when true, 1987e3365e6cSdrh ** causing the overall IN expression evaluation to fall through. 1988e3365e6cSdrh */ 1989e3365e6cSdrh sqlite3VdbeJumpHere(v, j1); 1990e3365e6cSdrh } 1991e3365e6cSdrh } 1992e3365e6cSdrh sqlite3ReleaseTempReg(pParse, r1); 1993e3365e6cSdrh sqlite3ExprCachePop(pParse, 1); 1994e3365e6cSdrh VdbeComment((v, "end IN expr")); 1995e3365e6cSdrh } 1996e3365e6cSdrh #endif /* SQLITE_OMIT_SUBQUERY */ 1997e3365e6cSdrh 1998cce7d176Sdrh /* 1999598f1340Sdrh ** Duplicate an 8-byte value 2000598f1340Sdrh */ 2001598f1340Sdrh static char *dup8bytes(Vdbe *v, const char *in){ 2002598f1340Sdrh char *out = sqlite3DbMallocRaw(sqlite3VdbeDb(v), 8); 2003598f1340Sdrh if( out ){ 2004598f1340Sdrh memcpy(out, in, 8); 2005598f1340Sdrh } 2006598f1340Sdrh return out; 2007598f1340Sdrh } 2008598f1340Sdrh 200913573c71Sdrh #ifndef SQLITE_OMIT_FLOATING_POINT 2010598f1340Sdrh /* 2011598f1340Sdrh ** Generate an instruction that will put the floating point 20129cbf3425Sdrh ** value described by z[0..n-1] into register iMem. 20130cf19ed8Sdrh ** 20140cf19ed8Sdrh ** The z[] string will probably not be zero-terminated. But the 20150cf19ed8Sdrh ** z[n] character is guaranteed to be something that does not look 20160cf19ed8Sdrh ** like the continuation of the number. 2017598f1340Sdrh */ 2018b7916a78Sdrh static void codeReal(Vdbe *v, const char *z, int negateFlag, int iMem){ 2019fd773cf9Sdrh if( ALWAYS(z!=0) ){ 2020598f1340Sdrh double value; 2021598f1340Sdrh char *zV; 20229339da1fSdrh sqlite3AtoF(z, &value, sqlite3Strlen30(z), SQLITE_UTF8); 2023d0015161Sdrh assert( !sqlite3IsNaN(value) ); /* The new AtoF never returns NaN */ 2024598f1340Sdrh if( negateFlag ) value = -value; 2025598f1340Sdrh zV = dup8bytes(v, (char*)&value); 20269de221dfSdrh sqlite3VdbeAddOp4(v, OP_Real, 0, iMem, 0, zV, P4_REAL); 2027598f1340Sdrh } 2028598f1340Sdrh } 202913573c71Sdrh #endif 2030598f1340Sdrh 2031598f1340Sdrh 2032598f1340Sdrh /* 2033fec19aadSdrh ** Generate an instruction that will put the integer describe by 20349cbf3425Sdrh ** text z[0..n-1] into register iMem. 20350cf19ed8Sdrh ** 20365f1d6b61Sshaneh ** Expr.u.zToken is always UTF8 and zero-terminated. 2037fec19aadSdrh */ 203813573c71Sdrh static void codeInteger(Parse *pParse, Expr *pExpr, int negFlag, int iMem){ 203913573c71Sdrh Vdbe *v = pParse->pVdbe; 204092b01d53Sdrh if( pExpr->flags & EP_IntValue ){ 204133e619fcSdrh int i = pExpr->u.iValue; 2042d50ffc41Sdrh assert( i>=0 ); 204392b01d53Sdrh if( negFlag ) i = -i; 204492b01d53Sdrh sqlite3VdbeAddOp2(v, OP_Integer, i, iMem); 2045fd773cf9Sdrh }else{ 20465f1d6b61Sshaneh int c; 20475f1d6b61Sshaneh i64 value; 2048fd773cf9Sdrh const char *z = pExpr->u.zToken; 2049fd773cf9Sdrh assert( z!=0 ); 20505f1d6b61Sshaneh c = sqlite3Atoi64(z, &value, sqlite3Strlen30(z), SQLITE_UTF8); 20515f1d6b61Sshaneh if( c==0 || (c==2 && negFlag) ){ 2052598f1340Sdrh char *zV; 2053158b9cb9Sdrh if( negFlag ){ value = c==2 ? SMALLEST_INT64 : -value; } 2054598f1340Sdrh zV = dup8bytes(v, (char*)&value); 20559de221dfSdrh sqlite3VdbeAddOp4(v, OP_Int64, 0, iMem, 0, zV, P4_INT64); 2056fec19aadSdrh }else{ 205713573c71Sdrh #ifdef SQLITE_OMIT_FLOATING_POINT 205813573c71Sdrh sqlite3ErrorMsg(pParse, "oversized integer: %s%s", negFlag ? "-" : "", z); 205913573c71Sdrh #else 2060b7916a78Sdrh codeReal(v, z, negFlag, iMem); 206113573c71Sdrh #endif 2062fec19aadSdrh } 2063fec19aadSdrh } 2064c9cf901dSdanielk1977 } 2065fec19aadSdrh 2066ceea3321Sdrh /* 2067ceea3321Sdrh ** Clear a cache entry. 2068ceea3321Sdrh */ 2069ceea3321Sdrh static void cacheEntryClear(Parse *pParse, struct yColCache *p){ 2070ceea3321Sdrh if( p->tempReg ){ 2071ceea3321Sdrh if( pParse->nTempReg<ArraySize(pParse->aTempReg) ){ 2072ceea3321Sdrh pParse->aTempReg[pParse->nTempReg++] = p->iReg; 2073ceea3321Sdrh } 2074ceea3321Sdrh p->tempReg = 0; 2075ceea3321Sdrh } 2076ceea3321Sdrh } 2077ceea3321Sdrh 2078ceea3321Sdrh 2079ceea3321Sdrh /* 2080ceea3321Sdrh ** Record in the column cache that a particular column from a 2081ceea3321Sdrh ** particular table is stored in a particular register. 2082ceea3321Sdrh */ 2083ceea3321Sdrh void sqlite3ExprCacheStore(Parse *pParse, int iTab, int iCol, int iReg){ 2084ceea3321Sdrh int i; 2085ceea3321Sdrh int minLru; 2086ceea3321Sdrh int idxLru; 2087ceea3321Sdrh struct yColCache *p; 2088ceea3321Sdrh 208920411ea7Sdrh assert( iReg>0 ); /* Register numbers are always positive */ 209020411ea7Sdrh assert( iCol>=-1 && iCol<32768 ); /* Finite column numbers */ 209120411ea7Sdrh 2092b6da74ebSdrh /* The SQLITE_ColumnCache flag disables the column cache. This is used 2093b6da74ebSdrh ** for testing only - to verify that SQLite always gets the same answer 2094b6da74ebSdrh ** with and without the column cache. 2095b6da74ebSdrh */ 20967e5418e4Sdrh if( OptimizationDisabled(pParse->db, SQLITE_ColumnCache) ) return; 2097b6da74ebSdrh 209827ee406eSdrh /* First replace any existing entry. 209927ee406eSdrh ** 210027ee406eSdrh ** Actually, the way the column cache is currently used, we are guaranteed 210127ee406eSdrh ** that the object will never already be in cache. Verify this guarantee. 210227ee406eSdrh */ 210327ee406eSdrh #ifndef NDEBUG 2104ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 210527ee406eSdrh assert( p->iReg==0 || p->iTable!=iTab || p->iColumn!=iCol ); 2106ceea3321Sdrh } 210727ee406eSdrh #endif 2108ceea3321Sdrh 2109ceea3321Sdrh /* Find an empty slot and replace it */ 2110ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 2111ceea3321Sdrh if( p->iReg==0 ){ 2112ceea3321Sdrh p->iLevel = pParse->iCacheLevel; 2113ceea3321Sdrh p->iTable = iTab; 2114ceea3321Sdrh p->iColumn = iCol; 2115ceea3321Sdrh p->iReg = iReg; 2116ceea3321Sdrh p->tempReg = 0; 2117ceea3321Sdrh p->lru = pParse->iCacheCnt++; 2118ceea3321Sdrh return; 2119ceea3321Sdrh } 2120ceea3321Sdrh } 2121ceea3321Sdrh 2122ceea3321Sdrh /* Replace the last recently used */ 2123ceea3321Sdrh minLru = 0x7fffffff; 2124ceea3321Sdrh idxLru = -1; 2125ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 2126ceea3321Sdrh if( p->lru<minLru ){ 2127ceea3321Sdrh idxLru = i; 2128ceea3321Sdrh minLru = p->lru; 2129ceea3321Sdrh } 2130ceea3321Sdrh } 213120411ea7Sdrh if( ALWAYS(idxLru>=0) ){ 2132ceea3321Sdrh p = &pParse->aColCache[idxLru]; 2133ceea3321Sdrh p->iLevel = pParse->iCacheLevel; 2134ceea3321Sdrh p->iTable = iTab; 2135ceea3321Sdrh p->iColumn = iCol; 2136ceea3321Sdrh p->iReg = iReg; 2137ceea3321Sdrh p->tempReg = 0; 2138ceea3321Sdrh p->lru = pParse->iCacheCnt++; 2139ceea3321Sdrh return; 2140ceea3321Sdrh } 2141ceea3321Sdrh } 2142ceea3321Sdrh 2143ceea3321Sdrh /* 2144f49f3523Sdrh ** Indicate that registers between iReg..iReg+nReg-1 are being overwritten. 2145f49f3523Sdrh ** Purge the range of registers from the column cache. 2146ceea3321Sdrh */ 2147f49f3523Sdrh void sqlite3ExprCacheRemove(Parse *pParse, int iReg, int nReg){ 2148ceea3321Sdrh int i; 2149f49f3523Sdrh int iLast = iReg + nReg - 1; 2150ceea3321Sdrh struct yColCache *p; 2151ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 2152f49f3523Sdrh int r = p->iReg; 2153f49f3523Sdrh if( r>=iReg && r<=iLast ){ 2154ceea3321Sdrh cacheEntryClear(pParse, p); 2155ceea3321Sdrh p->iReg = 0; 2156ceea3321Sdrh } 2157ceea3321Sdrh } 2158ceea3321Sdrh } 2159ceea3321Sdrh 2160ceea3321Sdrh /* 2161ceea3321Sdrh ** Remember the current column cache context. Any new entries added 2162ceea3321Sdrh ** added to the column cache after this call are removed when the 2163ceea3321Sdrh ** corresponding pop occurs. 2164ceea3321Sdrh */ 2165ceea3321Sdrh void sqlite3ExprCachePush(Parse *pParse){ 2166ceea3321Sdrh pParse->iCacheLevel++; 2167ceea3321Sdrh } 2168ceea3321Sdrh 2169ceea3321Sdrh /* 2170ceea3321Sdrh ** Remove from the column cache any entries that were added since the 2171ceea3321Sdrh ** the previous N Push operations. In other words, restore the cache 2172ceea3321Sdrh ** to the state it was in N Pushes ago. 2173ceea3321Sdrh */ 2174ceea3321Sdrh void sqlite3ExprCachePop(Parse *pParse, int N){ 2175ceea3321Sdrh int i; 2176ceea3321Sdrh struct yColCache *p; 2177ceea3321Sdrh assert( N>0 ); 2178ceea3321Sdrh assert( pParse->iCacheLevel>=N ); 2179ceea3321Sdrh pParse->iCacheLevel -= N; 2180ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 2181ceea3321Sdrh if( p->iReg && p->iLevel>pParse->iCacheLevel ){ 2182ceea3321Sdrh cacheEntryClear(pParse, p); 2183ceea3321Sdrh p->iReg = 0; 2184ceea3321Sdrh } 2185ceea3321Sdrh } 2186ceea3321Sdrh } 2187945498f3Sdrh 2188945498f3Sdrh /* 21895cd79239Sdrh ** When a cached column is reused, make sure that its register is 21905cd79239Sdrh ** no longer available as a temp register. ticket #3879: that same 21915cd79239Sdrh ** register might be in the cache in multiple places, so be sure to 21925cd79239Sdrh ** get them all. 21935cd79239Sdrh */ 21945cd79239Sdrh static void sqlite3ExprCachePinRegister(Parse *pParse, int iReg){ 21955cd79239Sdrh int i; 21965cd79239Sdrh struct yColCache *p; 21975cd79239Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 21985cd79239Sdrh if( p->iReg==iReg ){ 21995cd79239Sdrh p->tempReg = 0; 22005cd79239Sdrh } 22015cd79239Sdrh } 22025cd79239Sdrh } 22035cd79239Sdrh 22045cd79239Sdrh /* 22055c092e8aSdrh ** Generate code to extract the value of the iCol-th column of a table. 22065c092e8aSdrh */ 22075c092e8aSdrh void sqlite3ExprCodeGetColumnOfTable( 22085c092e8aSdrh Vdbe *v, /* The VDBE under construction */ 22095c092e8aSdrh Table *pTab, /* The table containing the value */ 22105c092e8aSdrh int iTabCur, /* The cursor for this table */ 22115c092e8aSdrh int iCol, /* Index of the column to extract */ 22125c092e8aSdrh int regOut /* Extract the valud into this register */ 22135c092e8aSdrh ){ 22145c092e8aSdrh if( iCol<0 || iCol==pTab->iPKey ){ 22155c092e8aSdrh sqlite3VdbeAddOp2(v, OP_Rowid, iTabCur, regOut); 22165c092e8aSdrh }else{ 22175c092e8aSdrh int op = IsVirtual(pTab) ? OP_VColumn : OP_Column; 22185c092e8aSdrh sqlite3VdbeAddOp3(v, op, iTabCur, iCol, regOut); 22195c092e8aSdrh } 22205c092e8aSdrh if( iCol>=0 ){ 22215c092e8aSdrh sqlite3ColumnDefault(v, pTab, iCol, regOut); 22225c092e8aSdrh } 22235c092e8aSdrh } 22245c092e8aSdrh 22255c092e8aSdrh /* 2226945498f3Sdrh ** Generate code that will extract the iColumn-th column from 2227e55cbd72Sdrh ** table pTab and store the column value in a register. An effort 2228e55cbd72Sdrh ** is made to store the column value in register iReg, but this is 2229e55cbd72Sdrh ** not guaranteed. The location of the column value is returned. 2230e55cbd72Sdrh ** 2231e55cbd72Sdrh ** There must be an open cursor to pTab in iTable when this routine 2232e55cbd72Sdrh ** is called. If iColumn<0 then code is generated that extracts the rowid. 2233945498f3Sdrh */ 2234e55cbd72Sdrh int sqlite3ExprCodeGetColumn( 2235e55cbd72Sdrh Parse *pParse, /* Parsing and code generating context */ 22362133d822Sdrh Table *pTab, /* Description of the table we are reading from */ 22372133d822Sdrh int iColumn, /* Index of the table column */ 22382133d822Sdrh int iTable, /* The cursor pointing to the table */ 2239a748fdccSdrh int iReg, /* Store results here */ 2240a748fdccSdrh u8 p5 /* P5 value for OP_Column */ 22412133d822Sdrh ){ 2242e55cbd72Sdrh Vdbe *v = pParse->pVdbe; 2243e55cbd72Sdrh int i; 2244da250ea5Sdrh struct yColCache *p; 2245e55cbd72Sdrh 2246ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 2247b6da74ebSdrh if( p->iReg>0 && p->iTable==iTable && p->iColumn==iColumn ){ 2248ceea3321Sdrh p->lru = pParse->iCacheCnt++; 22495cd79239Sdrh sqlite3ExprCachePinRegister(pParse, p->iReg); 2250da250ea5Sdrh return p->iReg; 2251e55cbd72Sdrh } 2252e55cbd72Sdrh } 2253e55cbd72Sdrh assert( v!=0 ); 22545c092e8aSdrh sqlite3ExprCodeGetColumnOfTable(v, pTab, iTable, iColumn, iReg); 2255a748fdccSdrh if( p5 ){ 2256a748fdccSdrh sqlite3VdbeChangeP5(v, p5); 2257a748fdccSdrh }else{ 2258ceea3321Sdrh sqlite3ExprCacheStore(pParse, iTable, iColumn, iReg); 2259a748fdccSdrh } 2260e55cbd72Sdrh return iReg; 2261e55cbd72Sdrh } 2262e55cbd72Sdrh 2263e55cbd72Sdrh /* 2264ceea3321Sdrh ** Clear all column cache entries. 2265e55cbd72Sdrh */ 2266ceea3321Sdrh void sqlite3ExprCacheClear(Parse *pParse){ 2267e55cbd72Sdrh int i; 2268ceea3321Sdrh struct yColCache *p; 2269ceea3321Sdrh 2270ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 2271ceea3321Sdrh if( p->iReg ){ 2272ceea3321Sdrh cacheEntryClear(pParse, p); 2273ceea3321Sdrh p->iReg = 0; 2274e55cbd72Sdrh } 2275da250ea5Sdrh } 2276da250ea5Sdrh } 2277e55cbd72Sdrh 2278e55cbd72Sdrh /* 2279da250ea5Sdrh ** Record the fact that an affinity change has occurred on iCount 2280da250ea5Sdrh ** registers starting with iStart. 2281e55cbd72Sdrh */ 2282da250ea5Sdrh void sqlite3ExprCacheAffinityChange(Parse *pParse, int iStart, int iCount){ 2283f49f3523Sdrh sqlite3ExprCacheRemove(pParse, iStart, iCount); 2284e55cbd72Sdrh } 2285e55cbd72Sdrh 2286e55cbd72Sdrh /* 2287b21e7c70Sdrh ** Generate code to move content from registers iFrom...iFrom+nReg-1 2288b21e7c70Sdrh ** over to iTo..iTo+nReg-1. Keep the column cache up-to-date. 2289e55cbd72Sdrh */ 2290b21e7c70Sdrh void sqlite3ExprCodeMove(Parse *pParse, int iFrom, int iTo, int nReg){ 2291e55cbd72Sdrh int i; 2292ceea3321Sdrh struct yColCache *p; 2293e8e4af76Sdrh assert( iFrom>=iTo+nReg || iFrom+nReg<=iTo ); 2294e8e4af76Sdrh sqlite3VdbeAddOp3(pParse->pVdbe, OP_Move, iFrom, iTo, nReg-1); 2295ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 2296ceea3321Sdrh int x = p->iReg; 2297b21e7c70Sdrh if( x>=iFrom && x<iFrom+nReg ){ 2298ceea3321Sdrh p->iReg += iTo-iFrom; 2299e55cbd72Sdrh } 2300e55cbd72Sdrh } 2301945498f3Sdrh } 2302945498f3Sdrh 2303f49f3523Sdrh #if defined(SQLITE_DEBUG) || defined(SQLITE_COVERAGE_TEST) 230492b01d53Sdrh /* 2305652fbf55Sdrh ** Return true if any register in the range iFrom..iTo (inclusive) 2306652fbf55Sdrh ** is used as part of the column cache. 2307f49f3523Sdrh ** 2308f49f3523Sdrh ** This routine is used within assert() and testcase() macros only 2309f49f3523Sdrh ** and does not appear in a normal build. 2310652fbf55Sdrh */ 2311652fbf55Sdrh static int usedAsColumnCache(Parse *pParse, int iFrom, int iTo){ 2312652fbf55Sdrh int i; 2313ceea3321Sdrh struct yColCache *p; 2314ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 2315ceea3321Sdrh int r = p->iReg; 2316f49f3523Sdrh if( r>=iFrom && r<=iTo ) return 1; /*NO_TEST*/ 2317652fbf55Sdrh } 2318652fbf55Sdrh return 0; 2319652fbf55Sdrh } 2320f49f3523Sdrh #endif /* SQLITE_DEBUG || SQLITE_COVERAGE_TEST */ 2321652fbf55Sdrh 2322652fbf55Sdrh /* 2323cce7d176Sdrh ** Generate code into the current Vdbe to evaluate the given 23242dcef11bSdrh ** expression. Attempt to store the results in register "target". 23252dcef11bSdrh ** Return the register where results are stored. 2326389a1adbSdrh ** 23278b213899Sdrh ** With this routine, there is no guarantee that results will 23282dcef11bSdrh ** be stored in target. The result might be stored in some other 23292dcef11bSdrh ** register if it is convenient to do so. The calling function 23302dcef11bSdrh ** must check the return code and move the results to the desired 23312dcef11bSdrh ** register. 2332cce7d176Sdrh */ 2333678ccce8Sdrh int sqlite3ExprCodeTarget(Parse *pParse, Expr *pExpr, int target){ 23342dcef11bSdrh Vdbe *v = pParse->pVdbe; /* The VM under construction */ 23352dcef11bSdrh int op; /* The opcode being coded */ 23362dcef11bSdrh int inReg = target; /* Results stored in register inReg */ 23372dcef11bSdrh int regFree1 = 0; /* If non-zero free this temporary register */ 23382dcef11bSdrh int regFree2 = 0; /* If non-zero free this temporary register */ 2339678ccce8Sdrh int r1, r2, r3, r4; /* Various register numbers */ 234020411ea7Sdrh sqlite3 *db = pParse->db; /* The database connection */ 2341ffe07b2dSdrh 23429cbf3425Sdrh assert( target>0 && target<=pParse->nMem ); 234320411ea7Sdrh if( v==0 ){ 234420411ea7Sdrh assert( pParse->db->mallocFailed ); 234520411ea7Sdrh return 0; 234620411ea7Sdrh } 2347389a1adbSdrh 2348389a1adbSdrh if( pExpr==0 ){ 2349389a1adbSdrh op = TK_NULL; 2350389a1adbSdrh }else{ 2351f2bc013cSdrh op = pExpr->op; 2352389a1adbSdrh } 2353f2bc013cSdrh switch( op ){ 235413449892Sdrh case TK_AGG_COLUMN: { 235513449892Sdrh AggInfo *pAggInfo = pExpr->pAggInfo; 235613449892Sdrh struct AggInfo_col *pCol = &pAggInfo->aCol[pExpr->iAgg]; 235713449892Sdrh if( !pAggInfo->directMode ){ 23589de221dfSdrh assert( pCol->iMem>0 ); 23599de221dfSdrh inReg = pCol->iMem; 236013449892Sdrh break; 236113449892Sdrh }else if( pAggInfo->useSortingIdx ){ 23625134d135Sdan sqlite3VdbeAddOp3(v, OP_Column, pAggInfo->sortingIdxPTab, 2363389a1adbSdrh pCol->iSorterColumn, target); 236413449892Sdrh break; 236513449892Sdrh } 236613449892Sdrh /* Otherwise, fall thru into the TK_COLUMN case */ 236713449892Sdrh } 2368967e8b73Sdrh case TK_COLUMN: { 2369ffe07b2dSdrh if( pExpr->iTable<0 ){ 2370ffe07b2dSdrh /* This only happens when coding check constraints */ 2371aa9b8963Sdrh assert( pParse->ckBase>0 ); 2372aa9b8963Sdrh inReg = pExpr->iColumn + pParse->ckBase; 2373c4a3c779Sdrh }else{ 2374e55cbd72Sdrh inReg = sqlite3ExprCodeGetColumn(pParse, pExpr->pTab, 2375a748fdccSdrh pExpr->iColumn, pExpr->iTable, target, 2376a748fdccSdrh pExpr->op2); 23772282792aSdrh } 2378cce7d176Sdrh break; 2379cce7d176Sdrh } 2380cce7d176Sdrh case TK_INTEGER: { 238113573c71Sdrh codeInteger(pParse, pExpr, 0, target); 2382fec19aadSdrh break; 238351e9a445Sdrh } 238413573c71Sdrh #ifndef SQLITE_OMIT_FLOATING_POINT 2385598f1340Sdrh case TK_FLOAT: { 238633e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 238733e619fcSdrh codeReal(v, pExpr->u.zToken, 0, target); 2388598f1340Sdrh break; 2389598f1340Sdrh } 239013573c71Sdrh #endif 2391fec19aadSdrh case TK_STRING: { 239233e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 239333e619fcSdrh sqlite3VdbeAddOp4(v, OP_String8, 0, target, 0, pExpr->u.zToken, 0); 2394cce7d176Sdrh break; 2395cce7d176Sdrh } 2396f0863fe5Sdrh case TK_NULL: { 23979de221dfSdrh sqlite3VdbeAddOp2(v, OP_Null, 0, target); 2398f0863fe5Sdrh break; 2399f0863fe5Sdrh } 24005338a5f7Sdanielk1977 #ifndef SQLITE_OMIT_BLOB_LITERAL 2401c572ef7fSdanielk1977 case TK_BLOB: { 24026c8c6cecSdrh int n; 24036c8c6cecSdrh const char *z; 2404ca48c90fSdrh char *zBlob; 240533e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 240633e619fcSdrh assert( pExpr->u.zToken[0]=='x' || pExpr->u.zToken[0]=='X' ); 240733e619fcSdrh assert( pExpr->u.zToken[1]=='\'' ); 240833e619fcSdrh z = &pExpr->u.zToken[2]; 2409b7916a78Sdrh n = sqlite3Strlen30(z) - 1; 2410b7916a78Sdrh assert( z[n]=='\'' ); 2411ca48c90fSdrh zBlob = sqlite3HexToBlob(sqlite3VdbeDb(v), z, n); 2412ca48c90fSdrh sqlite3VdbeAddOp4(v, OP_Blob, n/2, target, 0, zBlob, P4_DYNAMIC); 2413c572ef7fSdanielk1977 break; 2414c572ef7fSdanielk1977 } 24155338a5f7Sdanielk1977 #endif 241650457896Sdrh case TK_VARIABLE: { 241733e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 241833e619fcSdrh assert( pExpr->u.zToken!=0 ); 241933e619fcSdrh assert( pExpr->u.zToken[0]!=0 ); 2420eaf52d88Sdrh sqlite3VdbeAddOp2(v, OP_Variable, pExpr->iColumn, target); 242133e619fcSdrh if( pExpr->u.zToken[1]!=0 ){ 242204e9eeadSdrh assert( pExpr->u.zToken[0]=='?' 242304e9eeadSdrh || strcmp(pExpr->u.zToken, pParse->azVar[pExpr->iColumn-1])==0 ); 242404e9eeadSdrh sqlite3VdbeChangeP4(v, -1, pParse->azVar[pExpr->iColumn-1], P4_STATIC); 2425895d7472Sdrh } 242650457896Sdrh break; 242750457896Sdrh } 24284e0cff60Sdrh case TK_REGISTER: { 24299de221dfSdrh inReg = pExpr->iTable; 24304e0cff60Sdrh break; 24314e0cff60Sdrh } 24328b213899Sdrh case TK_AS: { 24337445ffe2Sdrh inReg = sqlite3ExprCodeTarget(pParse, pExpr->pLeft, target); 24348b213899Sdrh break; 24358b213899Sdrh } 2436487e262fSdrh #ifndef SQLITE_OMIT_CAST 2437487e262fSdrh case TK_CAST: { 2438487e262fSdrh /* Expressions of the form: CAST(pLeft AS token) */ 2439f0113000Sdanielk1977 int aff, to_op; 24402dcef11bSdrh inReg = sqlite3ExprCodeTarget(pParse, pExpr->pLeft, target); 244133e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 244233e619fcSdrh aff = sqlite3AffinityType(pExpr->u.zToken); 2443f0113000Sdanielk1977 to_op = aff - SQLITE_AFF_TEXT + OP_ToText; 2444f0113000Sdanielk1977 assert( to_op==OP_ToText || aff!=SQLITE_AFF_TEXT ); 2445f0113000Sdanielk1977 assert( to_op==OP_ToBlob || aff!=SQLITE_AFF_NONE ); 2446f0113000Sdanielk1977 assert( to_op==OP_ToNumeric || aff!=SQLITE_AFF_NUMERIC ); 2447f0113000Sdanielk1977 assert( to_op==OP_ToInt || aff!=SQLITE_AFF_INTEGER ); 2448f0113000Sdanielk1977 assert( to_op==OP_ToReal || aff!=SQLITE_AFF_REAL ); 2449c5499befSdrh testcase( to_op==OP_ToText ); 2450c5499befSdrh testcase( to_op==OP_ToBlob ); 2451c5499befSdrh testcase( to_op==OP_ToNumeric ); 2452c5499befSdrh testcase( to_op==OP_ToInt ); 2453c5499befSdrh testcase( to_op==OP_ToReal ); 24541735fa88Sdrh if( inReg!=target ){ 24551735fa88Sdrh sqlite3VdbeAddOp2(v, OP_SCopy, inReg, target); 24561735fa88Sdrh inReg = target; 24571735fa88Sdrh } 24582dcef11bSdrh sqlite3VdbeAddOp1(v, to_op, inReg); 2459c5499befSdrh testcase( usedAsColumnCache(pParse, inReg, inReg) ); 2460b3843a82Sdrh sqlite3ExprCacheAffinityChange(pParse, inReg, 1); 2461487e262fSdrh break; 2462487e262fSdrh } 2463487e262fSdrh #endif /* SQLITE_OMIT_CAST */ 2464c9b84a1fSdrh case TK_LT: 2465c9b84a1fSdrh case TK_LE: 2466c9b84a1fSdrh case TK_GT: 2467c9b84a1fSdrh case TK_GE: 2468c9b84a1fSdrh case TK_NE: 2469c9b84a1fSdrh case TK_EQ: { 2470f2bc013cSdrh assert( TK_LT==OP_Lt ); 2471f2bc013cSdrh assert( TK_LE==OP_Le ); 2472f2bc013cSdrh assert( TK_GT==OP_Gt ); 2473f2bc013cSdrh assert( TK_GE==OP_Ge ); 2474f2bc013cSdrh assert( TK_EQ==OP_Eq ); 2475f2bc013cSdrh assert( TK_NE==OP_Ne ); 2476c5499befSdrh testcase( op==TK_LT ); 2477c5499befSdrh testcase( op==TK_LE ); 2478c5499befSdrh testcase( op==TK_GT ); 2479c5499befSdrh testcase( op==TK_GE ); 2480c5499befSdrh testcase( op==TK_EQ ); 2481c5499befSdrh testcase( op==TK_NE ); 2482b6da74ebSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 2483b6da74ebSdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); 248435573356Sdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, 248535573356Sdrh r1, r2, inReg, SQLITE_STOREP2); 2486c5499befSdrh testcase( regFree1==0 ); 2487c5499befSdrh testcase( regFree2==0 ); 2488a37cdde0Sdanielk1977 break; 2489c9b84a1fSdrh } 24906a2fe093Sdrh case TK_IS: 24916a2fe093Sdrh case TK_ISNOT: { 24926a2fe093Sdrh testcase( op==TK_IS ); 24936a2fe093Sdrh testcase( op==TK_ISNOT ); 2494b6da74ebSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 2495b6da74ebSdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); 24966a2fe093Sdrh op = (op==TK_IS) ? TK_EQ : TK_NE; 24976a2fe093Sdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, 24986a2fe093Sdrh r1, r2, inReg, SQLITE_STOREP2 | SQLITE_NULLEQ); 24996a2fe093Sdrh testcase( regFree1==0 ); 25006a2fe093Sdrh testcase( regFree2==0 ); 25016a2fe093Sdrh break; 25026a2fe093Sdrh } 2503cce7d176Sdrh case TK_AND: 2504cce7d176Sdrh case TK_OR: 2505cce7d176Sdrh case TK_PLUS: 2506cce7d176Sdrh case TK_STAR: 2507cce7d176Sdrh case TK_MINUS: 2508bf4133cbSdrh case TK_REM: 2509bf4133cbSdrh case TK_BITAND: 2510bf4133cbSdrh case TK_BITOR: 251117c40294Sdrh case TK_SLASH: 2512bf4133cbSdrh case TK_LSHIFT: 2513855eb1cfSdrh case TK_RSHIFT: 25140040077dSdrh case TK_CONCAT: { 2515f2bc013cSdrh assert( TK_AND==OP_And ); 2516f2bc013cSdrh assert( TK_OR==OP_Or ); 2517f2bc013cSdrh assert( TK_PLUS==OP_Add ); 2518f2bc013cSdrh assert( TK_MINUS==OP_Subtract ); 2519f2bc013cSdrh assert( TK_REM==OP_Remainder ); 2520f2bc013cSdrh assert( TK_BITAND==OP_BitAnd ); 2521f2bc013cSdrh assert( TK_BITOR==OP_BitOr ); 2522f2bc013cSdrh assert( TK_SLASH==OP_Divide ); 2523f2bc013cSdrh assert( TK_LSHIFT==OP_ShiftLeft ); 2524f2bc013cSdrh assert( TK_RSHIFT==OP_ShiftRight ); 2525f2bc013cSdrh assert( TK_CONCAT==OP_Concat ); 2526c5499befSdrh testcase( op==TK_AND ); 2527c5499befSdrh testcase( op==TK_OR ); 2528c5499befSdrh testcase( op==TK_PLUS ); 2529c5499befSdrh testcase( op==TK_MINUS ); 2530c5499befSdrh testcase( op==TK_REM ); 2531c5499befSdrh testcase( op==TK_BITAND ); 2532c5499befSdrh testcase( op==TK_BITOR ); 2533c5499befSdrh testcase( op==TK_SLASH ); 2534c5499befSdrh testcase( op==TK_LSHIFT ); 2535c5499befSdrh testcase( op==TK_RSHIFT ); 2536c5499befSdrh testcase( op==TK_CONCAT ); 25372dcef11bSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 25382dcef11bSdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); 25395b6afba9Sdrh sqlite3VdbeAddOp3(v, op, r2, r1, target); 2540c5499befSdrh testcase( regFree1==0 ); 2541c5499befSdrh testcase( regFree2==0 ); 25420040077dSdrh break; 25430040077dSdrh } 2544cce7d176Sdrh case TK_UMINUS: { 2545fec19aadSdrh Expr *pLeft = pExpr->pLeft; 2546fec19aadSdrh assert( pLeft ); 254713573c71Sdrh if( pLeft->op==TK_INTEGER ){ 254813573c71Sdrh codeInteger(pParse, pLeft, 1, target); 254913573c71Sdrh #ifndef SQLITE_OMIT_FLOATING_POINT 255013573c71Sdrh }else if( pLeft->op==TK_FLOAT ){ 255133e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 255233e619fcSdrh codeReal(v, pLeft->u.zToken, 1, target); 255313573c71Sdrh #endif 25543c84ddffSdrh }else{ 25552dcef11bSdrh regFree1 = r1 = sqlite3GetTempReg(pParse); 25563c84ddffSdrh sqlite3VdbeAddOp2(v, OP_Integer, 0, r1); 2557e55cbd72Sdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free2); 25582dcef11bSdrh sqlite3VdbeAddOp3(v, OP_Subtract, r2, r1, target); 2559c5499befSdrh testcase( regFree2==0 ); 25603c84ddffSdrh } 25619de221dfSdrh inReg = target; 25626e142f54Sdrh break; 25636e142f54Sdrh } 2564bf4133cbSdrh case TK_BITNOT: 25656e142f54Sdrh case TK_NOT: { 2566f2bc013cSdrh assert( TK_BITNOT==OP_BitNot ); 2567f2bc013cSdrh assert( TK_NOT==OP_Not ); 2568c5499befSdrh testcase( op==TK_BITNOT ); 2569c5499befSdrh testcase( op==TK_NOT ); 2570e99fa2afSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 2571e99fa2afSdrh testcase( regFree1==0 ); 2572e99fa2afSdrh inReg = target; 2573e99fa2afSdrh sqlite3VdbeAddOp2(v, op, r1, inReg); 2574cce7d176Sdrh break; 2575cce7d176Sdrh } 2576cce7d176Sdrh case TK_ISNULL: 2577cce7d176Sdrh case TK_NOTNULL: { 25786a288a33Sdrh int addr; 2579f2bc013cSdrh assert( TK_ISNULL==OP_IsNull ); 2580f2bc013cSdrh assert( TK_NOTNULL==OP_NotNull ); 2581c5499befSdrh testcase( op==TK_ISNULL ); 2582c5499befSdrh testcase( op==TK_NOTNULL ); 25839de221dfSdrh sqlite3VdbeAddOp2(v, OP_Integer, 1, target); 25842dcef11bSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 2585c5499befSdrh testcase( regFree1==0 ); 25862dcef11bSdrh addr = sqlite3VdbeAddOp1(v, op, r1); 25879de221dfSdrh sqlite3VdbeAddOp2(v, OP_AddImm, target, -1); 25886a288a33Sdrh sqlite3VdbeJumpHere(v, addr); 2589a37cdde0Sdanielk1977 break; 2590f2bc013cSdrh } 25912282792aSdrh case TK_AGG_FUNCTION: { 259213449892Sdrh AggInfo *pInfo = pExpr->pAggInfo; 25937e56e711Sdrh if( pInfo==0 ){ 259433e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 259533e619fcSdrh sqlite3ErrorMsg(pParse, "misuse of aggregate: %s()", pExpr->u.zToken); 25967e56e711Sdrh }else{ 25979de221dfSdrh inReg = pInfo->aFunc[pExpr->iAgg].iMem; 25987e56e711Sdrh } 25992282792aSdrh break; 26002282792aSdrh } 2601b71090fdSdrh case TK_CONST_FUNC: 2602cce7d176Sdrh case TK_FUNCTION: { 260312ffee8cSdrh ExprList *pFarg; /* List of function arguments */ 260412ffee8cSdrh int nFarg; /* Number of function arguments */ 260512ffee8cSdrh FuncDef *pDef; /* The function definition object */ 260612ffee8cSdrh int nId; /* Length of the function name in bytes */ 260712ffee8cSdrh const char *zId; /* The function name */ 260812ffee8cSdrh int constMask = 0; /* Mask of function arguments that are constant */ 260912ffee8cSdrh int i; /* Loop counter */ 261012ffee8cSdrh u8 enc = ENC(db); /* The text encoding used by this database */ 261112ffee8cSdrh CollSeq *pColl = 0; /* A collating sequence */ 261217435752Sdrh 26136ab3a2ecSdanielk1977 assert( !ExprHasProperty(pExpr, EP_xIsSelect) ); 2614c5499befSdrh testcase( op==TK_CONST_FUNC ); 2615c5499befSdrh testcase( op==TK_FUNCTION ); 2616b7916a78Sdrh if( ExprHasAnyProperty(pExpr, EP_TokenOnly) ){ 261712ffee8cSdrh pFarg = 0; 261812ffee8cSdrh }else{ 261912ffee8cSdrh pFarg = pExpr->x.pList; 262012ffee8cSdrh } 262112ffee8cSdrh nFarg = pFarg ? pFarg->nExpr : 0; 262233e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 262333e619fcSdrh zId = pExpr->u.zToken; 2624b7916a78Sdrh nId = sqlite3Strlen30(zId); 262512ffee8cSdrh pDef = sqlite3FindFunction(db, zId, nId, nFarg, enc, 0); 2626feb306f5Sdrh if( pDef==0 ){ 2627feb306f5Sdrh sqlite3ErrorMsg(pParse, "unknown function: %.*s()", nId, zId); 2628feb306f5Sdrh break; 2629feb306f5Sdrh } 2630ae6bb957Sdrh 2631ae6bb957Sdrh /* Attempt a direct implementation of the built-in COALESCE() and 2632ae6bb957Sdrh ** IFNULL() functions. This avoids unnecessary evalation of 2633ae6bb957Sdrh ** arguments past the first non-NULL argument. 2634ae6bb957Sdrh */ 2635ae6bb957Sdrh if( pDef->flags & SQLITE_FUNC_COALESCE ){ 2636ae6bb957Sdrh int endCoalesce = sqlite3VdbeMakeLabel(v); 2637ae6bb957Sdrh assert( nFarg>=2 ); 2638ae6bb957Sdrh sqlite3ExprCode(pParse, pFarg->a[0].pExpr, target); 2639ae6bb957Sdrh for(i=1; i<nFarg; i++){ 2640ae6bb957Sdrh sqlite3VdbeAddOp2(v, OP_NotNull, target, endCoalesce); 2641f49f3523Sdrh sqlite3ExprCacheRemove(pParse, target, 1); 2642ae6bb957Sdrh sqlite3ExprCachePush(pParse); 2643ae6bb957Sdrh sqlite3ExprCode(pParse, pFarg->a[i].pExpr, target); 2644ae6bb957Sdrh sqlite3ExprCachePop(pParse, 1); 2645ae6bb957Sdrh } 2646ae6bb957Sdrh sqlite3VdbeResolveLabel(v, endCoalesce); 2647ae6bb957Sdrh break; 2648ae6bb957Sdrh } 2649ae6bb957Sdrh 2650ae6bb957Sdrh 265112ffee8cSdrh if( pFarg ){ 265212ffee8cSdrh r1 = sqlite3GetTempRange(pParse, nFarg); 2653a748fdccSdrh 2654a748fdccSdrh /* For length() and typeof() functions with a column argument, 2655a748fdccSdrh ** set the P5 parameter to the OP_Column opcode to OPFLAG_LENGTHARG 2656a748fdccSdrh ** or OPFLAG_TYPEOFARG respectively, to avoid unnecessary data 2657a748fdccSdrh ** loading. 2658a748fdccSdrh */ 2659a748fdccSdrh if( (pDef->flags & (SQLITE_FUNC_LENGTH|SQLITE_FUNC_TYPEOF))!=0 ){ 26604e245a4cSdrh u8 exprOp; 2661a748fdccSdrh assert( nFarg==1 ); 2662a748fdccSdrh assert( pFarg->a[0].pExpr!=0 ); 26634e245a4cSdrh exprOp = pFarg->a[0].pExpr->op; 26644e245a4cSdrh if( exprOp==TK_COLUMN || exprOp==TK_AGG_COLUMN ){ 2665a748fdccSdrh assert( SQLITE_FUNC_LENGTH==OPFLAG_LENGTHARG ); 2666a748fdccSdrh assert( SQLITE_FUNC_TYPEOF==OPFLAG_TYPEOFARG ); 2667a748fdccSdrh testcase( pDef->flags==SQLITE_FUNC_LENGTH ); 2668a748fdccSdrh pFarg->a[0].pExpr->op2 = pDef->flags; 2669a748fdccSdrh } 2670a748fdccSdrh } 2671a748fdccSdrh 2672d7d385ddSdrh sqlite3ExprCachePush(pParse); /* Ticket 2ea2425d34be */ 267312ffee8cSdrh sqlite3ExprCodeExprList(pParse, pFarg, r1, 1); 2674d7d385ddSdrh sqlite3ExprCachePop(pParse, 1); /* Ticket 2ea2425d34be */ 2675892d3179Sdrh }else{ 267612ffee8cSdrh r1 = 0; 2677892d3179Sdrh } 2678b7f6f68fSdrh #ifndef SQLITE_OMIT_VIRTUALTABLE 2679a43fa227Sdrh /* Possibly overload the function if the first argument is 2680a43fa227Sdrh ** a virtual table column. 2681a43fa227Sdrh ** 2682a43fa227Sdrh ** For infix functions (LIKE, GLOB, REGEXP, and MATCH) use the 2683a43fa227Sdrh ** second argument, not the first, as the argument to test to 2684a43fa227Sdrh ** see if it is a column in a virtual table. This is done because 2685a43fa227Sdrh ** the left operand of infix functions (the operand we want to 2686a43fa227Sdrh ** control overloading) ends up as the second argument to the 2687a43fa227Sdrh ** function. The expression "A glob B" is equivalent to 2688a43fa227Sdrh ** "glob(B,A). We want to use the A in "A glob B" to test 2689a43fa227Sdrh ** for function overloading. But we use the B term in "glob(B,A)". 2690a43fa227Sdrh */ 269112ffee8cSdrh if( nFarg>=2 && (pExpr->flags & EP_InfixFunc) ){ 269212ffee8cSdrh pDef = sqlite3VtabOverloadFunction(db, pDef, nFarg, pFarg->a[1].pExpr); 269312ffee8cSdrh }else if( nFarg>0 ){ 269412ffee8cSdrh pDef = sqlite3VtabOverloadFunction(db, pDef, nFarg, pFarg->a[0].pExpr); 2695b7f6f68fSdrh } 2696b7f6f68fSdrh #endif 2697f7bca574Sdrh for(i=0; i<nFarg; i++){ 2698f7bca574Sdrh if( i<32 && sqlite3ExprIsConstant(pFarg->a[i].pExpr) ){ 269913449892Sdrh constMask |= (1<<i); 2700d02eb1fdSdanielk1977 } 2701e82f5d04Sdrh if( (pDef->flags & SQLITE_FUNC_NEEDCOLL)!=0 && !pColl ){ 270212ffee8cSdrh pColl = sqlite3ExprCollSeq(pParse, pFarg->a[i].pExpr); 2703dc1bdc4fSdanielk1977 } 2704dc1bdc4fSdanielk1977 } 2705e82f5d04Sdrh if( pDef->flags & SQLITE_FUNC_NEEDCOLL ){ 27068b213899Sdrh if( !pColl ) pColl = db->pDfltColl; 270766a5167bSdrh sqlite3VdbeAddOp4(v, OP_CollSeq, 0, 0, 0, (char *)pColl, P4_COLLSEQ); 2708682f68b0Sdanielk1977 } 27092dcef11bSdrh sqlite3VdbeAddOp4(v, OP_Function, constMask, r1, target, 271066a5167bSdrh (char*)pDef, P4_FUNCDEF); 271112ffee8cSdrh sqlite3VdbeChangeP5(v, (u8)nFarg); 271212ffee8cSdrh if( nFarg ){ 271312ffee8cSdrh sqlite3ReleaseTempRange(pParse, r1, nFarg); 27142dcef11bSdrh } 27156ec2733bSdrh break; 27166ec2733bSdrh } 2717fe2093d7Sdrh #ifndef SQLITE_OMIT_SUBQUERY 2718fe2093d7Sdrh case TK_EXISTS: 271919a775c2Sdrh case TK_SELECT: { 2720c5499befSdrh testcase( op==TK_EXISTS ); 2721c5499befSdrh testcase( op==TK_SELECT ); 27221450bc6eSdrh inReg = sqlite3CodeSubselect(pParse, pExpr, 0, 0); 272319a775c2Sdrh break; 272419a775c2Sdrh } 2725fef5208cSdrh case TK_IN: { 2726e3365e6cSdrh int destIfFalse = sqlite3VdbeMakeLabel(v); 2727e3365e6cSdrh int destIfNull = sqlite3VdbeMakeLabel(v); 2728e3365e6cSdrh sqlite3VdbeAddOp2(v, OP_Null, 0, target); 2729e3365e6cSdrh sqlite3ExprCodeIN(pParse, pExpr, destIfFalse, destIfNull); 273066ba23ceSdrh sqlite3VdbeAddOp2(v, OP_Integer, 1, target); 2731e3365e6cSdrh sqlite3VdbeResolveLabel(v, destIfFalse); 2732e3365e6cSdrh sqlite3VdbeAddOp2(v, OP_AddImm, target, 0); 2733e3365e6cSdrh sqlite3VdbeResolveLabel(v, destIfNull); 2734fef5208cSdrh break; 2735fef5208cSdrh } 2736e3365e6cSdrh #endif /* SQLITE_OMIT_SUBQUERY */ 2737e3365e6cSdrh 2738e3365e6cSdrh 27392dcef11bSdrh /* 27402dcef11bSdrh ** x BETWEEN y AND z 27412dcef11bSdrh ** 27422dcef11bSdrh ** This is equivalent to 27432dcef11bSdrh ** 27442dcef11bSdrh ** x>=y AND x<=z 27452dcef11bSdrh ** 27462dcef11bSdrh ** X is stored in pExpr->pLeft. 27472dcef11bSdrh ** Y is stored in pExpr->pList->a[0].pExpr. 27482dcef11bSdrh ** Z is stored in pExpr->pList->a[1].pExpr. 27492dcef11bSdrh */ 2750fef5208cSdrh case TK_BETWEEN: { 2751be5c89acSdrh Expr *pLeft = pExpr->pLeft; 27526ab3a2ecSdanielk1977 struct ExprList_item *pLItem = pExpr->x.pList->a; 2753be5c89acSdrh Expr *pRight = pLItem->pExpr; 275435573356Sdrh 2755b6da74ebSdrh r1 = sqlite3ExprCodeTemp(pParse, pLeft, ®Free1); 2756b6da74ebSdrh r2 = sqlite3ExprCodeTemp(pParse, pRight, ®Free2); 2757c5499befSdrh testcase( regFree1==0 ); 2758c5499befSdrh testcase( regFree2==0 ); 27592dcef11bSdrh r3 = sqlite3GetTempReg(pParse); 2760678ccce8Sdrh r4 = sqlite3GetTempReg(pParse); 276135573356Sdrh codeCompare(pParse, pLeft, pRight, OP_Ge, 276235573356Sdrh r1, r2, r3, SQLITE_STOREP2); 2763be5c89acSdrh pLItem++; 2764be5c89acSdrh pRight = pLItem->pExpr; 27652dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree2); 27662dcef11bSdrh r2 = sqlite3ExprCodeTemp(pParse, pRight, ®Free2); 2767c5499befSdrh testcase( regFree2==0 ); 2768678ccce8Sdrh codeCompare(pParse, pLeft, pRight, OP_Le, r1, r2, r4, SQLITE_STOREP2); 2769678ccce8Sdrh sqlite3VdbeAddOp3(v, OP_And, r3, r4, target); 27702dcef11bSdrh sqlite3ReleaseTempReg(pParse, r3); 2771678ccce8Sdrh sqlite3ReleaseTempReg(pParse, r4); 2772fef5208cSdrh break; 2773fef5208cSdrh } 2774ae80ddeaSdrh case TK_COLLATE: 27754f07e5fbSdrh case TK_UPLUS: { 27762dcef11bSdrh inReg = sqlite3ExprCodeTarget(pParse, pExpr->pLeft, target); 2777a2e00042Sdrh break; 2778a2e00042Sdrh } 27792dcef11bSdrh 2780165921a7Sdan case TK_TRIGGER: { 278165a7cd16Sdan /* If the opcode is TK_TRIGGER, then the expression is a reference 278265a7cd16Sdan ** to a column in the new.* or old.* pseudo-tables available to 278365a7cd16Sdan ** trigger programs. In this case Expr.iTable is set to 1 for the 278465a7cd16Sdan ** new.* pseudo-table, or 0 for the old.* pseudo-table. Expr.iColumn 278565a7cd16Sdan ** is set to the column of the pseudo-table to read, or to -1 to 278665a7cd16Sdan ** read the rowid field. 278765a7cd16Sdan ** 278865a7cd16Sdan ** The expression is implemented using an OP_Param opcode. The p1 278965a7cd16Sdan ** parameter is set to 0 for an old.rowid reference, or to (i+1) 279065a7cd16Sdan ** to reference another column of the old.* pseudo-table, where 279165a7cd16Sdan ** i is the index of the column. For a new.rowid reference, p1 is 279265a7cd16Sdan ** set to (n+1), where n is the number of columns in each pseudo-table. 279365a7cd16Sdan ** For a reference to any other column in the new.* pseudo-table, p1 279465a7cd16Sdan ** is set to (n+2+i), where n and i are as defined previously. For 279565a7cd16Sdan ** example, if the table on which triggers are being fired is 279665a7cd16Sdan ** declared as: 279765a7cd16Sdan ** 279865a7cd16Sdan ** CREATE TABLE t1(a, b); 279965a7cd16Sdan ** 280065a7cd16Sdan ** Then p1 is interpreted as follows: 280165a7cd16Sdan ** 280265a7cd16Sdan ** p1==0 -> old.rowid p1==3 -> new.rowid 280365a7cd16Sdan ** p1==1 -> old.a p1==4 -> new.a 280465a7cd16Sdan ** p1==2 -> old.b p1==5 -> new.b 280565a7cd16Sdan */ 28062832ad42Sdan Table *pTab = pExpr->pTab; 280765a7cd16Sdan int p1 = pExpr->iTable * (pTab->nCol+1) + 1 + pExpr->iColumn; 280865a7cd16Sdan 280965a7cd16Sdan assert( pExpr->iTable==0 || pExpr->iTable==1 ); 281065a7cd16Sdan assert( pExpr->iColumn>=-1 && pExpr->iColumn<pTab->nCol ); 281165a7cd16Sdan assert( pTab->iPKey<0 || pExpr->iColumn!=pTab->iPKey ); 281265a7cd16Sdan assert( p1>=0 && p1<(pTab->nCol*2+2) ); 281365a7cd16Sdan 281465a7cd16Sdan sqlite3VdbeAddOp2(v, OP_Param, p1, target); 281576d462eeSdan VdbeComment((v, "%s.%s -> $%d", 2816165921a7Sdan (pExpr->iTable ? "new" : "old"), 281776d462eeSdan (pExpr->iColumn<0 ? "rowid" : pExpr->pTab->aCol[pExpr->iColumn].zName), 281876d462eeSdan target 2819165921a7Sdan )); 282065a7cd16Sdan 282144dbca83Sdrh #ifndef SQLITE_OMIT_FLOATING_POINT 282265a7cd16Sdan /* If the column has REAL affinity, it may currently be stored as an 282365a7cd16Sdan ** integer. Use OP_RealAffinity to make sure it is really real. */ 28242832ad42Sdan if( pExpr->iColumn>=0 28252832ad42Sdan && pTab->aCol[pExpr->iColumn].affinity==SQLITE_AFF_REAL 28262832ad42Sdan ){ 28272832ad42Sdan sqlite3VdbeAddOp1(v, OP_RealAffinity, target); 28282832ad42Sdan } 282944dbca83Sdrh #endif 2830165921a7Sdan break; 2831165921a7Sdan } 2832165921a7Sdan 2833165921a7Sdan 28342dcef11bSdrh /* 28352dcef11bSdrh ** Form A: 28362dcef11bSdrh ** CASE x WHEN e1 THEN r1 WHEN e2 THEN r2 ... WHEN eN THEN rN ELSE y END 28372dcef11bSdrh ** 28382dcef11bSdrh ** Form B: 28392dcef11bSdrh ** CASE WHEN e1 THEN r1 WHEN e2 THEN r2 ... WHEN eN THEN rN ELSE y END 28402dcef11bSdrh ** 28412dcef11bSdrh ** Form A is can be transformed into the equivalent form B as follows: 28422dcef11bSdrh ** CASE WHEN x=e1 THEN r1 WHEN x=e2 THEN r2 ... 28432dcef11bSdrh ** WHEN x=eN THEN rN ELSE y END 28442dcef11bSdrh ** 28452dcef11bSdrh ** X (if it exists) is in pExpr->pLeft. 28462dcef11bSdrh ** Y is in pExpr->pRight. The Y is also optional. If there is no 28472dcef11bSdrh ** ELSE clause and no other term matches, then the result of the 28482dcef11bSdrh ** exprssion is NULL. 28492dcef11bSdrh ** Ei is in pExpr->pList->a[i*2] and Ri is pExpr->pList->a[i*2+1]. 28502dcef11bSdrh ** 28512dcef11bSdrh ** The result of the expression is the Ri for the first matching Ei, 28522dcef11bSdrh ** or if there is no matching Ei, the ELSE term Y, or if there is 28532dcef11bSdrh ** no ELSE term, NULL. 28542dcef11bSdrh */ 285533cd4909Sdrh default: assert( op==TK_CASE ); { 28562dcef11bSdrh int endLabel; /* GOTO label for end of CASE stmt */ 28572dcef11bSdrh int nextCase; /* GOTO label for next WHEN clause */ 28582dcef11bSdrh int nExpr; /* 2x number of WHEN terms */ 28592dcef11bSdrh int i; /* Loop counter */ 28602dcef11bSdrh ExprList *pEList; /* List of WHEN terms */ 28612dcef11bSdrh struct ExprList_item *aListelem; /* Array of WHEN terms */ 28622dcef11bSdrh Expr opCompare; /* The X==Ei expression */ 28632dcef11bSdrh Expr cacheX; /* Cached expression X */ 28642dcef11bSdrh Expr *pX; /* The X expression */ 28651bd10f8aSdrh Expr *pTest = 0; /* X==Ei (form A) or just Ei (form B) */ 2866ceea3321Sdrh VVA_ONLY( int iCacheLevel = pParse->iCacheLevel; ) 286717a7f8ddSdrh 28686ab3a2ecSdanielk1977 assert( !ExprHasProperty(pExpr, EP_xIsSelect) && pExpr->x.pList ); 28696ab3a2ecSdanielk1977 assert((pExpr->x.pList->nExpr % 2) == 0); 28706ab3a2ecSdanielk1977 assert(pExpr->x.pList->nExpr > 0); 28716ab3a2ecSdanielk1977 pEList = pExpr->x.pList; 2872be5c89acSdrh aListelem = pEList->a; 2873be5c89acSdrh nExpr = pEList->nExpr; 28742dcef11bSdrh endLabel = sqlite3VdbeMakeLabel(v); 28752dcef11bSdrh if( (pX = pExpr->pLeft)!=0 ){ 28762dcef11bSdrh cacheX = *pX; 287733cd4909Sdrh testcase( pX->op==TK_COLUMN ); 287833cd4909Sdrh testcase( pX->op==TK_REGISTER ); 28792dcef11bSdrh cacheX.iTable = sqlite3ExprCodeTemp(pParse, pX, ®Free1); 2880c5499befSdrh testcase( regFree1==0 ); 28812dcef11bSdrh cacheX.op = TK_REGISTER; 28822dcef11bSdrh opCompare.op = TK_EQ; 28832dcef11bSdrh opCompare.pLeft = &cacheX; 28842dcef11bSdrh pTest = &opCompare; 28858b1db07fSdrh /* Ticket b351d95f9cd5ef17e9d9dbae18f5ca8611190001: 28868b1db07fSdrh ** The value in regFree1 might get SCopy-ed into the file result. 28878b1db07fSdrh ** So make sure that the regFree1 register is not reused for other 28888b1db07fSdrh ** purposes and possibly overwritten. */ 28898b1db07fSdrh regFree1 = 0; 2890cce7d176Sdrh } 2891f5905aa7Sdrh for(i=0; i<nExpr; i=i+2){ 2892ceea3321Sdrh sqlite3ExprCachePush(pParse); 28932dcef11bSdrh if( pX ){ 28941bd10f8aSdrh assert( pTest!=0 ); 28952dcef11bSdrh opCompare.pRight = aListelem[i].pExpr; 2896f5905aa7Sdrh }else{ 28972dcef11bSdrh pTest = aListelem[i].pExpr; 289817a7f8ddSdrh } 28992dcef11bSdrh nextCase = sqlite3VdbeMakeLabel(v); 290033cd4909Sdrh testcase( pTest->op==TK_COLUMN ); 29012dcef11bSdrh sqlite3ExprIfFalse(pParse, pTest, nextCase, SQLITE_JUMPIFNULL); 2902c5499befSdrh testcase( aListelem[i+1].pExpr->op==TK_COLUMN ); 2903c5499befSdrh testcase( aListelem[i+1].pExpr->op==TK_REGISTER ); 29049de221dfSdrh sqlite3ExprCode(pParse, aListelem[i+1].pExpr, target); 29052dcef11bSdrh sqlite3VdbeAddOp2(v, OP_Goto, 0, endLabel); 2906ceea3321Sdrh sqlite3ExprCachePop(pParse, 1); 29072dcef11bSdrh sqlite3VdbeResolveLabel(v, nextCase); 2908f570f011Sdrh } 290917a7f8ddSdrh if( pExpr->pRight ){ 2910ceea3321Sdrh sqlite3ExprCachePush(pParse); 29119de221dfSdrh sqlite3ExprCode(pParse, pExpr->pRight, target); 2912ceea3321Sdrh sqlite3ExprCachePop(pParse, 1); 291317a7f8ddSdrh }else{ 29149de221dfSdrh sqlite3VdbeAddOp2(v, OP_Null, 0, target); 291517a7f8ddSdrh } 2916c1f4a19bSdanielk1977 assert( db->mallocFailed || pParse->nErr>0 2917c1f4a19bSdanielk1977 || pParse->iCacheLevel==iCacheLevel ); 29182dcef11bSdrh sqlite3VdbeResolveLabel(v, endLabel); 29196f34903eSdanielk1977 break; 29206f34903eSdanielk1977 } 29215338a5f7Sdanielk1977 #ifndef SQLITE_OMIT_TRIGGER 29226f34903eSdanielk1977 case TK_RAISE: { 2923165921a7Sdan assert( pExpr->affinity==OE_Rollback 2924165921a7Sdan || pExpr->affinity==OE_Abort 2925165921a7Sdan || pExpr->affinity==OE_Fail 2926165921a7Sdan || pExpr->affinity==OE_Ignore 2927165921a7Sdan ); 2928e0af83acSdan if( !pParse->pTriggerTab ){ 2929e0af83acSdan sqlite3ErrorMsg(pParse, 2930e0af83acSdan "RAISE() may only be used within a trigger-program"); 2931e0af83acSdan return 0; 2932e0af83acSdan } 2933e0af83acSdan if( pExpr->affinity==OE_Abort ){ 2934e0af83acSdan sqlite3MayAbort(pParse); 2935e0af83acSdan } 293633e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 2937e0af83acSdan if( pExpr->affinity==OE_Ignore ){ 2938e0af83acSdan sqlite3VdbeAddOp4( 2939e0af83acSdan v, OP_Halt, SQLITE_OK, OE_Ignore, 0, pExpr->u.zToken,0); 2940e0af83acSdan }else{ 2941433dccfbSdrh sqlite3HaltConstraint(pParse, SQLITE_CONSTRAINT_TRIGGER, 2942d91c1a17Sdrh pExpr->affinity, pExpr->u.zToken, 0); 2943e0af83acSdan } 2944e0af83acSdan 2945ffe07b2dSdrh break; 294617a7f8ddSdrh } 29475338a5f7Sdanielk1977 #endif 2948ffe07b2dSdrh } 29492dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree1); 29502dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree2); 29512dcef11bSdrh return inReg; 29525b6afba9Sdrh } 29532dcef11bSdrh 29542dcef11bSdrh /* 29552dcef11bSdrh ** Generate code to evaluate an expression and store the results 29562dcef11bSdrh ** into a register. Return the register number where the results 29572dcef11bSdrh ** are stored. 29582dcef11bSdrh ** 29592dcef11bSdrh ** If the register is a temporary register that can be deallocated, 2960678ccce8Sdrh ** then write its number into *pReg. If the result register is not 29612dcef11bSdrh ** a temporary, then set *pReg to zero. 29622dcef11bSdrh */ 29632dcef11bSdrh int sqlite3ExprCodeTemp(Parse *pParse, Expr *pExpr, int *pReg){ 29642dcef11bSdrh int r1 = sqlite3GetTempReg(pParse); 29652dcef11bSdrh int r2 = sqlite3ExprCodeTarget(pParse, pExpr, r1); 29662dcef11bSdrh if( r2==r1 ){ 29672dcef11bSdrh *pReg = r1; 29682dcef11bSdrh }else{ 29692dcef11bSdrh sqlite3ReleaseTempReg(pParse, r1); 29702dcef11bSdrh *pReg = 0; 29712dcef11bSdrh } 29722dcef11bSdrh return r2; 29732dcef11bSdrh } 29742dcef11bSdrh 29752dcef11bSdrh /* 29762dcef11bSdrh ** Generate code that will evaluate expression pExpr and store the 29772dcef11bSdrh ** results in register target. The results are guaranteed to appear 29782dcef11bSdrh ** in register target. 29792dcef11bSdrh */ 29802dcef11bSdrh int sqlite3ExprCode(Parse *pParse, Expr *pExpr, int target){ 29819cbf3425Sdrh int inReg; 29829cbf3425Sdrh 29839cbf3425Sdrh assert( target>0 && target<=pParse->nMem ); 2984ebc16717Sdrh if( pExpr && pExpr->op==TK_REGISTER ){ 2985ebc16717Sdrh sqlite3VdbeAddOp2(pParse->pVdbe, OP_Copy, pExpr->iTable, target); 2986ebc16717Sdrh }else{ 29879cbf3425Sdrh inReg = sqlite3ExprCodeTarget(pParse, pExpr, target); 29880e359b30Sdrh assert( pParse->pVdbe || pParse->db->mallocFailed ); 29890e359b30Sdrh if( inReg!=target && pParse->pVdbe ){ 29909cbf3425Sdrh sqlite3VdbeAddOp2(pParse->pVdbe, OP_SCopy, inReg, target); 299117a7f8ddSdrh } 2992ebc16717Sdrh } 2993389a1adbSdrh return target; 2994cce7d176Sdrh } 2995cce7d176Sdrh 2996cce7d176Sdrh /* 29972dcef11bSdrh ** Generate code that evalutes the given expression and puts the result 2998de4fcfddSdrh ** in register target. 299925303780Sdrh ** 30002dcef11bSdrh ** Also make a copy of the expression results into another "cache" register 30012dcef11bSdrh ** and modify the expression so that the next time it is evaluated, 30022dcef11bSdrh ** the result is a copy of the cache register. 30032dcef11bSdrh ** 30042dcef11bSdrh ** This routine is used for expressions that are used multiple 30052dcef11bSdrh ** times. They are evaluated once and the results of the expression 30062dcef11bSdrh ** are reused. 300725303780Sdrh */ 30082dcef11bSdrh int sqlite3ExprCodeAndCache(Parse *pParse, Expr *pExpr, int target){ 300925303780Sdrh Vdbe *v = pParse->pVdbe; 30102dcef11bSdrh int inReg; 30112dcef11bSdrh inReg = sqlite3ExprCode(pParse, pExpr, target); 3012de4fcfddSdrh assert( target>0 ); 301320bc393cSdrh /* This routine is called for terms to INSERT or UPDATE. And the only 301420bc393cSdrh ** other place where expressions can be converted into TK_REGISTER is 301520bc393cSdrh ** in WHERE clause processing. So as currently implemented, there is 301620bc393cSdrh ** no way for a TK_REGISTER to exist here. But it seems prudent to 301720bc393cSdrh ** keep the ALWAYS() in case the conditions above change with future 301820bc393cSdrh ** modifications or enhancements. */ 301920bc393cSdrh if( ALWAYS(pExpr->op!=TK_REGISTER) ){ 302025303780Sdrh int iMem; 30212dcef11bSdrh iMem = ++pParse->nMem; 30222dcef11bSdrh sqlite3VdbeAddOp2(v, OP_Copy, inReg, iMem); 30232dcef11bSdrh pExpr->iTable = iMem; 3024937d0deaSdan pExpr->op2 = pExpr->op; 302525303780Sdrh pExpr->op = TK_REGISTER; 302625303780Sdrh } 30272dcef11bSdrh return inReg; 302825303780Sdrh } 30292dcef11bSdrh 3030678a9aa7Sdrh #if defined(SQLITE_ENABLE_TREE_EXPLAIN) 30317e02e5e6Sdrh /* 30327e02e5e6Sdrh ** Generate a human-readable explanation of an expression tree. 30337e02e5e6Sdrh */ 3034a84203a0Sdrh void sqlite3ExplainExpr(Vdbe *pOut, Expr *pExpr){ 3035a84203a0Sdrh int op; /* The opcode being coded */ 3036a84203a0Sdrh const char *zBinOp = 0; /* Binary operator */ 3037a84203a0Sdrh const char *zUniOp = 0; /* Unary operator */ 3038a84203a0Sdrh if( pExpr==0 ){ 3039a84203a0Sdrh op = TK_NULL; 30407e02e5e6Sdrh }else{ 3041a84203a0Sdrh op = pExpr->op; 30427e02e5e6Sdrh } 3043a84203a0Sdrh switch( op ){ 3044a84203a0Sdrh case TK_AGG_COLUMN: { 304504b8342bSdrh sqlite3ExplainPrintf(pOut, "AGG{%d:%d}", 304604b8342bSdrh pExpr->iTable, pExpr->iColumn); 3047a84203a0Sdrh break; 30487e02e5e6Sdrh } 3049a84203a0Sdrh case TK_COLUMN: { 3050a84203a0Sdrh if( pExpr->iTable<0 ){ 3051a84203a0Sdrh /* This only happens when coding check constraints */ 3052a84203a0Sdrh sqlite3ExplainPrintf(pOut, "COLUMN(%d)", pExpr->iColumn); 3053a84203a0Sdrh }else{ 305404b8342bSdrh sqlite3ExplainPrintf(pOut, "{%d:%d}", 305504b8342bSdrh pExpr->iTable, pExpr->iColumn); 3056a84203a0Sdrh } 3057a84203a0Sdrh break; 3058a84203a0Sdrh } 3059a84203a0Sdrh case TK_INTEGER: { 3060a84203a0Sdrh if( pExpr->flags & EP_IntValue ){ 306104b8342bSdrh sqlite3ExplainPrintf(pOut, "%d", pExpr->u.iValue); 3062a84203a0Sdrh }else{ 306304b8342bSdrh sqlite3ExplainPrintf(pOut, "%s", pExpr->u.zToken); 3064a84203a0Sdrh } 3065a84203a0Sdrh break; 3066a84203a0Sdrh } 3067a84203a0Sdrh #ifndef SQLITE_OMIT_FLOATING_POINT 3068a84203a0Sdrh case TK_FLOAT: { 306904b8342bSdrh sqlite3ExplainPrintf(pOut,"%s", pExpr->u.zToken); 3070a84203a0Sdrh break; 3071a84203a0Sdrh } 3072a84203a0Sdrh #endif 3073a84203a0Sdrh case TK_STRING: { 307404b8342bSdrh sqlite3ExplainPrintf(pOut,"%Q", pExpr->u.zToken); 3075a84203a0Sdrh break; 3076a84203a0Sdrh } 3077a84203a0Sdrh case TK_NULL: { 3078a84203a0Sdrh sqlite3ExplainPrintf(pOut,"NULL"); 3079a84203a0Sdrh break; 3080a84203a0Sdrh } 3081a84203a0Sdrh #ifndef SQLITE_OMIT_BLOB_LITERAL 3082a84203a0Sdrh case TK_BLOB: { 308304b8342bSdrh sqlite3ExplainPrintf(pOut,"%s", pExpr->u.zToken); 3084a84203a0Sdrh break; 3085a84203a0Sdrh } 3086a84203a0Sdrh #endif 3087a84203a0Sdrh case TK_VARIABLE: { 3088a84203a0Sdrh sqlite3ExplainPrintf(pOut,"VARIABLE(%s,%d)", 3089a84203a0Sdrh pExpr->u.zToken, pExpr->iColumn); 3090a84203a0Sdrh break; 3091a84203a0Sdrh } 3092a84203a0Sdrh case TK_REGISTER: { 3093a84203a0Sdrh sqlite3ExplainPrintf(pOut,"REGISTER(%d)", pExpr->iTable); 3094a84203a0Sdrh break; 3095a84203a0Sdrh } 3096a84203a0Sdrh case TK_AS: { 3097a84203a0Sdrh sqlite3ExplainExpr(pOut, pExpr->pLeft); 3098a84203a0Sdrh break; 3099a84203a0Sdrh } 3100a84203a0Sdrh #ifndef SQLITE_OMIT_CAST 3101a84203a0Sdrh case TK_CAST: { 3102a84203a0Sdrh /* Expressions of the form: CAST(pLeft AS token) */ 3103a84203a0Sdrh const char *zAff = "unk"; 3104a84203a0Sdrh switch( sqlite3AffinityType(pExpr->u.zToken) ){ 3105a84203a0Sdrh case SQLITE_AFF_TEXT: zAff = "TEXT"; break; 3106a84203a0Sdrh case SQLITE_AFF_NONE: zAff = "NONE"; break; 3107a84203a0Sdrh case SQLITE_AFF_NUMERIC: zAff = "NUMERIC"; break; 3108a84203a0Sdrh case SQLITE_AFF_INTEGER: zAff = "INTEGER"; break; 3109a84203a0Sdrh case SQLITE_AFF_REAL: zAff = "REAL"; break; 3110a84203a0Sdrh } 3111a84203a0Sdrh sqlite3ExplainPrintf(pOut, "CAST-%s(", zAff); 3112a84203a0Sdrh sqlite3ExplainExpr(pOut, pExpr->pLeft); 3113a84203a0Sdrh sqlite3ExplainPrintf(pOut, ")"); 3114a84203a0Sdrh break; 3115a84203a0Sdrh } 3116a84203a0Sdrh #endif /* SQLITE_OMIT_CAST */ 3117a84203a0Sdrh case TK_LT: zBinOp = "LT"; break; 3118a84203a0Sdrh case TK_LE: zBinOp = "LE"; break; 3119a84203a0Sdrh case TK_GT: zBinOp = "GT"; break; 3120a84203a0Sdrh case TK_GE: zBinOp = "GE"; break; 3121a84203a0Sdrh case TK_NE: zBinOp = "NE"; break; 3122a84203a0Sdrh case TK_EQ: zBinOp = "EQ"; break; 3123a84203a0Sdrh case TK_IS: zBinOp = "IS"; break; 3124a84203a0Sdrh case TK_ISNOT: zBinOp = "ISNOT"; break; 3125a84203a0Sdrh case TK_AND: zBinOp = "AND"; break; 3126a84203a0Sdrh case TK_OR: zBinOp = "OR"; break; 3127a84203a0Sdrh case TK_PLUS: zBinOp = "ADD"; break; 3128a84203a0Sdrh case TK_STAR: zBinOp = "MUL"; break; 3129a84203a0Sdrh case TK_MINUS: zBinOp = "SUB"; break; 3130a84203a0Sdrh case TK_REM: zBinOp = "REM"; break; 3131a84203a0Sdrh case TK_BITAND: zBinOp = "BITAND"; break; 3132a84203a0Sdrh case TK_BITOR: zBinOp = "BITOR"; break; 3133a84203a0Sdrh case TK_SLASH: zBinOp = "DIV"; break; 3134a84203a0Sdrh case TK_LSHIFT: zBinOp = "LSHIFT"; break; 3135a84203a0Sdrh case TK_RSHIFT: zBinOp = "RSHIFT"; break; 3136a84203a0Sdrh case TK_CONCAT: zBinOp = "CONCAT"; break; 3137a84203a0Sdrh 3138a84203a0Sdrh case TK_UMINUS: zUniOp = "UMINUS"; break; 3139a84203a0Sdrh case TK_UPLUS: zUniOp = "UPLUS"; break; 3140a84203a0Sdrh case TK_BITNOT: zUniOp = "BITNOT"; break; 3141a84203a0Sdrh case TK_NOT: zUniOp = "NOT"; break; 3142a84203a0Sdrh case TK_ISNULL: zUniOp = "ISNULL"; break; 3143a84203a0Sdrh case TK_NOTNULL: zUniOp = "NOTNULL"; break; 3144a84203a0Sdrh 31457a66da13Sdrh case TK_COLLATE: { 31467a66da13Sdrh sqlite3ExplainExpr(pOut, pExpr->pLeft); 31477a66da13Sdrh sqlite3ExplainPrintf(pOut,".COLLATE(%s)",pExpr->u.zToken); 31487a66da13Sdrh break; 31497a66da13Sdrh } 31507a66da13Sdrh 3151a84203a0Sdrh case TK_AGG_FUNCTION: 3152a84203a0Sdrh case TK_CONST_FUNC: 3153a84203a0Sdrh case TK_FUNCTION: { 3154a84203a0Sdrh ExprList *pFarg; /* List of function arguments */ 3155a84203a0Sdrh if( ExprHasAnyProperty(pExpr, EP_TokenOnly) ){ 3156a84203a0Sdrh pFarg = 0; 3157a84203a0Sdrh }else{ 3158a84203a0Sdrh pFarg = pExpr->x.pList; 3159a84203a0Sdrh } 3160ed551b95Sdrh if( op==TK_AGG_FUNCTION ){ 3161ed551b95Sdrh sqlite3ExplainPrintf(pOut, "AGG_FUNCTION%d:%s(", 3162ed551b95Sdrh pExpr->op2, pExpr->u.zToken); 3163ed551b95Sdrh }else{ 3164ed551b95Sdrh sqlite3ExplainPrintf(pOut, "FUNCTION:%s(", pExpr->u.zToken); 3165ed551b95Sdrh } 3166a84203a0Sdrh if( pFarg ){ 3167a84203a0Sdrh sqlite3ExplainExprList(pOut, pFarg); 31687e02e5e6Sdrh } 31697e02e5e6Sdrh sqlite3ExplainPrintf(pOut, ")"); 3170a84203a0Sdrh break; 3171a84203a0Sdrh } 3172a84203a0Sdrh #ifndef SQLITE_OMIT_SUBQUERY 3173a84203a0Sdrh case TK_EXISTS: { 3174a84203a0Sdrh sqlite3ExplainPrintf(pOut, "EXISTS("); 3175a84203a0Sdrh sqlite3ExplainSelect(pOut, pExpr->x.pSelect); 3176a84203a0Sdrh sqlite3ExplainPrintf(pOut,")"); 3177a84203a0Sdrh break; 3178a84203a0Sdrh } 3179a84203a0Sdrh case TK_SELECT: { 3180a84203a0Sdrh sqlite3ExplainPrintf(pOut, "("); 3181a84203a0Sdrh sqlite3ExplainSelect(pOut, pExpr->x.pSelect); 3182a84203a0Sdrh sqlite3ExplainPrintf(pOut, ")"); 3183a84203a0Sdrh break; 3184a84203a0Sdrh } 3185a84203a0Sdrh case TK_IN: { 3186a84203a0Sdrh sqlite3ExplainPrintf(pOut, "IN("); 3187a84203a0Sdrh sqlite3ExplainExpr(pOut, pExpr->pLeft); 3188a84203a0Sdrh sqlite3ExplainPrintf(pOut, ","); 3189a84203a0Sdrh if( ExprHasProperty(pExpr, EP_xIsSelect) ){ 3190a84203a0Sdrh sqlite3ExplainSelect(pOut, pExpr->x.pSelect); 3191a84203a0Sdrh }else{ 3192a84203a0Sdrh sqlite3ExplainExprList(pOut, pExpr->x.pList); 3193a84203a0Sdrh } 3194a84203a0Sdrh sqlite3ExplainPrintf(pOut, ")"); 3195a84203a0Sdrh break; 3196a84203a0Sdrh } 3197a84203a0Sdrh #endif /* SQLITE_OMIT_SUBQUERY */ 3198a84203a0Sdrh 3199a84203a0Sdrh /* 3200a84203a0Sdrh ** x BETWEEN y AND z 3201a84203a0Sdrh ** 3202a84203a0Sdrh ** This is equivalent to 3203a84203a0Sdrh ** 3204a84203a0Sdrh ** x>=y AND x<=z 3205a84203a0Sdrh ** 3206a84203a0Sdrh ** X is stored in pExpr->pLeft. 3207a84203a0Sdrh ** Y is stored in pExpr->pList->a[0].pExpr. 3208a84203a0Sdrh ** Z is stored in pExpr->pList->a[1].pExpr. 3209a84203a0Sdrh */ 3210a84203a0Sdrh case TK_BETWEEN: { 3211a84203a0Sdrh Expr *pX = pExpr->pLeft; 3212a84203a0Sdrh Expr *pY = pExpr->x.pList->a[0].pExpr; 3213a84203a0Sdrh Expr *pZ = pExpr->x.pList->a[1].pExpr; 3214a84203a0Sdrh sqlite3ExplainPrintf(pOut, "BETWEEN("); 3215a84203a0Sdrh sqlite3ExplainExpr(pOut, pX); 3216a84203a0Sdrh sqlite3ExplainPrintf(pOut, ","); 3217a84203a0Sdrh sqlite3ExplainExpr(pOut, pY); 3218a84203a0Sdrh sqlite3ExplainPrintf(pOut, ","); 3219a84203a0Sdrh sqlite3ExplainExpr(pOut, pZ); 3220a84203a0Sdrh sqlite3ExplainPrintf(pOut, ")"); 3221a84203a0Sdrh break; 3222a84203a0Sdrh } 3223a84203a0Sdrh case TK_TRIGGER: { 3224a84203a0Sdrh /* If the opcode is TK_TRIGGER, then the expression is a reference 3225a84203a0Sdrh ** to a column in the new.* or old.* pseudo-tables available to 3226a84203a0Sdrh ** trigger programs. In this case Expr.iTable is set to 1 for the 3227a84203a0Sdrh ** new.* pseudo-table, or 0 for the old.* pseudo-table. Expr.iColumn 3228a84203a0Sdrh ** is set to the column of the pseudo-table to read, or to -1 to 3229a84203a0Sdrh ** read the rowid field. 3230a84203a0Sdrh */ 3231a84203a0Sdrh sqlite3ExplainPrintf(pOut, "%s(%d)", 3232a84203a0Sdrh pExpr->iTable ? "NEW" : "OLD", pExpr->iColumn); 3233a84203a0Sdrh break; 3234a84203a0Sdrh } 3235a84203a0Sdrh case TK_CASE: { 3236a84203a0Sdrh sqlite3ExplainPrintf(pOut, "CASE("); 3237a84203a0Sdrh sqlite3ExplainExpr(pOut, pExpr->pLeft); 3238a84203a0Sdrh sqlite3ExplainPrintf(pOut, ","); 3239a84203a0Sdrh sqlite3ExplainExprList(pOut, pExpr->x.pList); 3240a84203a0Sdrh break; 3241a84203a0Sdrh } 3242a84203a0Sdrh #ifndef SQLITE_OMIT_TRIGGER 3243a84203a0Sdrh case TK_RAISE: { 3244a84203a0Sdrh const char *zType = "unk"; 3245a84203a0Sdrh switch( pExpr->affinity ){ 3246a84203a0Sdrh case OE_Rollback: zType = "rollback"; break; 3247a84203a0Sdrh case OE_Abort: zType = "abort"; break; 3248a84203a0Sdrh case OE_Fail: zType = "fail"; break; 3249a84203a0Sdrh case OE_Ignore: zType = "ignore"; break; 3250a84203a0Sdrh } 3251a84203a0Sdrh sqlite3ExplainPrintf(pOut, "RAISE-%s(%s)", zType, pExpr->u.zToken); 3252a84203a0Sdrh break; 3253a84203a0Sdrh } 3254a84203a0Sdrh #endif 3255a84203a0Sdrh } 3256a84203a0Sdrh if( zBinOp ){ 3257a84203a0Sdrh sqlite3ExplainPrintf(pOut,"%s(", zBinOp); 3258a84203a0Sdrh sqlite3ExplainExpr(pOut, pExpr->pLeft); 3259a84203a0Sdrh sqlite3ExplainPrintf(pOut,","); 3260a84203a0Sdrh sqlite3ExplainExpr(pOut, pExpr->pRight); 3261a84203a0Sdrh sqlite3ExplainPrintf(pOut,")"); 3262a84203a0Sdrh }else if( zUniOp ){ 3263a84203a0Sdrh sqlite3ExplainPrintf(pOut,"%s(", zUniOp); 3264a84203a0Sdrh sqlite3ExplainExpr(pOut, pExpr->pLeft); 3265a84203a0Sdrh sqlite3ExplainPrintf(pOut,")"); 3266a84203a0Sdrh } 32677e02e5e6Sdrh } 3268678a9aa7Sdrh #endif /* defined(SQLITE_ENABLE_TREE_EXPLAIN) */ 32697e02e5e6Sdrh 3270678a9aa7Sdrh #if defined(SQLITE_ENABLE_TREE_EXPLAIN) 32717e02e5e6Sdrh /* 32727e02e5e6Sdrh ** Generate a human-readable explanation of an expression list. 32737e02e5e6Sdrh */ 32747e02e5e6Sdrh void sqlite3ExplainExprList(Vdbe *pOut, ExprList *pList){ 32757e02e5e6Sdrh int i; 3276a84203a0Sdrh if( pList==0 || pList->nExpr==0 ){ 32777e02e5e6Sdrh sqlite3ExplainPrintf(pOut, "(empty-list)"); 32787e02e5e6Sdrh return; 3279a84203a0Sdrh }else if( pList->nExpr==1 ){ 3280a84203a0Sdrh sqlite3ExplainExpr(pOut, pList->a[0].pExpr); 3281a84203a0Sdrh }else{ 32827e02e5e6Sdrh sqlite3ExplainPush(pOut); 32837e02e5e6Sdrh for(i=0; i<pList->nExpr; i++){ 3284a84203a0Sdrh sqlite3ExplainPrintf(pOut, "item[%d] = ", i); 32857e02e5e6Sdrh sqlite3ExplainPush(pOut); 32867e02e5e6Sdrh sqlite3ExplainExpr(pOut, pList->a[i].pExpr); 32877e02e5e6Sdrh sqlite3ExplainPop(pOut); 32883e3f1a5bSdrh if( pList->a[i].zName ){ 32893e3f1a5bSdrh sqlite3ExplainPrintf(pOut, " AS %s", pList->a[i].zName); 32903e3f1a5bSdrh } 32913e3f1a5bSdrh if( pList->a[i].bSpanIsTab ){ 32923e3f1a5bSdrh sqlite3ExplainPrintf(pOut, " (%s)", pList->a[i].zSpan); 32933e3f1a5bSdrh } 32947e02e5e6Sdrh if( i<pList->nExpr-1 ){ 32957e02e5e6Sdrh sqlite3ExplainNL(pOut); 32967e02e5e6Sdrh } 32977e02e5e6Sdrh } 32987e02e5e6Sdrh sqlite3ExplainPop(pOut); 32997e02e5e6Sdrh } 3300a84203a0Sdrh } 33017e02e5e6Sdrh #endif /* SQLITE_DEBUG */ 33027e02e5e6Sdrh 3303678ccce8Sdrh /* 330447de955eSdrh ** Return TRUE if pExpr is an constant expression that is appropriate 330547de955eSdrh ** for factoring out of a loop. Appropriate expressions are: 330647de955eSdrh ** 330747de955eSdrh ** * Any expression that evaluates to two or more opcodes. 330847de955eSdrh ** 330947de955eSdrh ** * Any OP_Integer, OP_Real, OP_String, OP_Blob, OP_Null, 331047de955eSdrh ** or OP_Variable that does not need to be placed in a 331147de955eSdrh ** specific register. 331247de955eSdrh ** 331347de955eSdrh ** There is no point in factoring out single-instruction constant 331447de955eSdrh ** expressions that need to be placed in a particular register. 331547de955eSdrh ** We could factor them out, but then we would end up adding an 331647de955eSdrh ** OP_SCopy instruction to move the value into the correct register 331747de955eSdrh ** later. We might as well just use the original instruction and 331847de955eSdrh ** avoid the OP_SCopy. 331947de955eSdrh */ 332047de955eSdrh static int isAppropriateForFactoring(Expr *p){ 332147de955eSdrh if( !sqlite3ExprIsConstantNotJoin(p) ){ 332247de955eSdrh return 0; /* Only constant expressions are appropriate for factoring */ 332347de955eSdrh } 332447de955eSdrh if( (p->flags & EP_FixedDest)==0 ){ 332547de955eSdrh return 1; /* Any constant without a fixed destination is appropriate */ 332647de955eSdrh } 332747de955eSdrh while( p->op==TK_UPLUS ) p = p->pLeft; 332847de955eSdrh switch( p->op ){ 332947de955eSdrh #ifndef SQLITE_OMIT_BLOB_LITERAL 333047de955eSdrh case TK_BLOB: 333147de955eSdrh #endif 333247de955eSdrh case TK_VARIABLE: 333347de955eSdrh case TK_INTEGER: 333447de955eSdrh case TK_FLOAT: 333547de955eSdrh case TK_NULL: 333647de955eSdrh case TK_STRING: { 333747de955eSdrh testcase( p->op==TK_BLOB ); 333847de955eSdrh testcase( p->op==TK_VARIABLE ); 333947de955eSdrh testcase( p->op==TK_INTEGER ); 334047de955eSdrh testcase( p->op==TK_FLOAT ); 334147de955eSdrh testcase( p->op==TK_NULL ); 334247de955eSdrh testcase( p->op==TK_STRING ); 334347de955eSdrh /* Single-instruction constants with a fixed destination are 334447de955eSdrh ** better done in-line. If we factor them, they will just end 334547de955eSdrh ** up generating an OP_SCopy to move the value to the destination 334647de955eSdrh ** register. */ 334747de955eSdrh return 0; 334847de955eSdrh } 334947de955eSdrh case TK_UMINUS: { 335047de955eSdrh if( p->pLeft->op==TK_FLOAT || p->pLeft->op==TK_INTEGER ){ 335147de955eSdrh return 0; 335247de955eSdrh } 335347de955eSdrh break; 335447de955eSdrh } 335547de955eSdrh default: { 335647de955eSdrh break; 335747de955eSdrh } 335847de955eSdrh } 335947de955eSdrh return 1; 336047de955eSdrh } 336147de955eSdrh 336247de955eSdrh /* 336347de955eSdrh ** If pExpr is a constant expression that is appropriate for 336447de955eSdrh ** factoring out of a loop, then evaluate the expression 3365678ccce8Sdrh ** into a register and convert the expression into a TK_REGISTER 3366678ccce8Sdrh ** expression. 3367678ccce8Sdrh */ 33687d10d5a6Sdrh static int evalConstExpr(Walker *pWalker, Expr *pExpr){ 33697d10d5a6Sdrh Parse *pParse = pWalker->pParse; 337047de955eSdrh switch( pExpr->op ){ 3371e05c929bSdrh case TK_IN: 337247de955eSdrh case TK_REGISTER: { 337333cd4909Sdrh return WRC_Prune; 3374678ccce8Sdrh } 3375261d8a51Sdrh case TK_COLLATE: { 3376261d8a51Sdrh return WRC_Continue; 3377261d8a51Sdrh } 337847de955eSdrh case TK_FUNCTION: 337947de955eSdrh case TK_AGG_FUNCTION: 338047de955eSdrh case TK_CONST_FUNC: { 338147de955eSdrh /* The arguments to a function have a fixed destination. 338247de955eSdrh ** Mark them this way to avoid generated unneeded OP_SCopy 338347de955eSdrh ** instructions. 338447de955eSdrh */ 33856ab3a2ecSdanielk1977 ExprList *pList = pExpr->x.pList; 33866ab3a2ecSdanielk1977 assert( !ExprHasProperty(pExpr, EP_xIsSelect) ); 338747de955eSdrh if( pList ){ 338847de955eSdrh int i = pList->nExpr; 338947de955eSdrh struct ExprList_item *pItem = pList->a; 339047de955eSdrh for(; i>0; i--, pItem++){ 339133cd4909Sdrh if( ALWAYS(pItem->pExpr) ) pItem->pExpr->flags |= EP_FixedDest; 339247de955eSdrh } 339347de955eSdrh } 339447de955eSdrh break; 339547de955eSdrh } 339647de955eSdrh } 339747de955eSdrh if( isAppropriateForFactoring(pExpr) ){ 3398678ccce8Sdrh int r1 = ++pParse->nMem; 3399261d8a51Sdrh int r2 = sqlite3ExprCodeTarget(pParse, pExpr, r1); 3400261d8a51Sdrh /* If r2!=r1, it means that register r1 is never used. That is harmless 3401261d8a51Sdrh ** but suboptimal, so we want to know about the situation to fix it. 3402261d8a51Sdrh ** Hence the following assert: */ 3403261d8a51Sdrh assert( r2==r1 ); 3404fcd4a150Sdan pExpr->op2 = pExpr->op; 3405678ccce8Sdrh pExpr->op = TK_REGISTER; 3406678ccce8Sdrh pExpr->iTable = r2; 34077d10d5a6Sdrh return WRC_Prune; 3408678ccce8Sdrh } 34097d10d5a6Sdrh return WRC_Continue; 3410678ccce8Sdrh } 3411678ccce8Sdrh 3412678ccce8Sdrh /* 3413678ccce8Sdrh ** Preevaluate constant subexpressions within pExpr and store the 3414678ccce8Sdrh ** results in registers. Modify pExpr so that the constant subexpresions 3415678ccce8Sdrh ** are TK_REGISTER opcodes that refer to the precomputed values. 3416f58ee7f1Sdrh ** 3417f58ee7f1Sdrh ** This routine is a no-op if the jump to the cookie-check code has 3418f58ee7f1Sdrh ** already occur. Since the cookie-check jump is generated prior to 3419f58ee7f1Sdrh ** any other serious processing, this check ensures that there is no 3420f58ee7f1Sdrh ** way to accidently bypass the constant initializations. 3421f58ee7f1Sdrh ** 3422f58ee7f1Sdrh ** This routine is also a no-op if the SQLITE_FactorOutConst optimization 3423f58ee7f1Sdrh ** is disabled via the sqlite3_test_control(SQLITE_TESTCTRL_OPTIMIZATIONS) 3424f58ee7f1Sdrh ** interface. This allows test logic to verify that the same answer is 3425f58ee7f1Sdrh ** obtained for queries regardless of whether or not constants are 3426f58ee7f1Sdrh ** precomputed into registers or if they are inserted in-line. 3427678ccce8Sdrh */ 3428678ccce8Sdrh void sqlite3ExprCodeConstants(Parse *pParse, Expr *pExpr){ 34297d10d5a6Sdrh Walker w; 343048b5b041Sdrh if( pParse->cookieGoto ) return; 34317e5418e4Sdrh if( OptimizationDisabled(pParse->db, SQLITE_FactorOutConst) ) return; 3432*aa87f9a6Sdrh memset(&w, 0, sizeof(w)); 34337d10d5a6Sdrh w.xExprCallback = evalConstExpr; 34347d10d5a6Sdrh w.pParse = pParse; 34357d10d5a6Sdrh sqlite3WalkExpr(&w, pExpr); 3436678ccce8Sdrh } 3437678ccce8Sdrh 343825303780Sdrh 343925303780Sdrh /* 3440268380caSdrh ** Generate code that pushes the value of every element of the given 34419cbf3425Sdrh ** expression list into a sequence of registers beginning at target. 3442268380caSdrh ** 3443892d3179Sdrh ** Return the number of elements evaluated. 3444268380caSdrh */ 34454adee20fSdanielk1977 int sqlite3ExprCodeExprList( 3446268380caSdrh Parse *pParse, /* Parsing context */ 3447389a1adbSdrh ExprList *pList, /* The expression list to be coded */ 3448191b54cbSdrh int target, /* Where to write results */ 3449d176611bSdrh int doHardCopy /* Make a hard copy of every element */ 3450268380caSdrh ){ 3451268380caSdrh struct ExprList_item *pItem; 34529cbf3425Sdrh int i, n; 34539d8b3072Sdrh assert( pList!=0 ); 34549cbf3425Sdrh assert( target>0 ); 3455d81a142bSdrh assert( pParse->pVdbe!=0 ); /* Never gets this far otherwise */ 3456268380caSdrh n = pList->nExpr; 3457191b54cbSdrh for(pItem=pList->a, i=0; i<n; i++, pItem++){ 34587445ffe2Sdrh Expr *pExpr = pItem->pExpr; 34597445ffe2Sdrh int inReg = sqlite3ExprCodeTarget(pParse, pExpr, target+i); 3460746fd9ccSdrh if( inReg!=target+i ){ 34617445ffe2Sdrh sqlite3VdbeAddOp2(pParse->pVdbe, doHardCopy ? OP_Copy : OP_SCopy, 34627445ffe2Sdrh inReg, target+i); 3463d176611bSdrh } 3464268380caSdrh } 3465f9b596ebSdrh return n; 3466268380caSdrh } 3467268380caSdrh 3468268380caSdrh /* 346936c563a2Sdrh ** Generate code for a BETWEEN operator. 347036c563a2Sdrh ** 347136c563a2Sdrh ** x BETWEEN y AND z 347236c563a2Sdrh ** 347336c563a2Sdrh ** The above is equivalent to 347436c563a2Sdrh ** 347536c563a2Sdrh ** x>=y AND x<=z 347636c563a2Sdrh ** 347736c563a2Sdrh ** Code it as such, taking care to do the common subexpression 347836c563a2Sdrh ** elementation of x. 347936c563a2Sdrh */ 348036c563a2Sdrh static void exprCodeBetween( 348136c563a2Sdrh Parse *pParse, /* Parsing and code generating context */ 348236c563a2Sdrh Expr *pExpr, /* The BETWEEN expression */ 348336c563a2Sdrh int dest, /* Jump here if the jump is taken */ 348436c563a2Sdrh int jumpIfTrue, /* Take the jump if the BETWEEN is true */ 348536c563a2Sdrh int jumpIfNull /* Take the jump if the BETWEEN is NULL */ 348636c563a2Sdrh ){ 348736c563a2Sdrh Expr exprAnd; /* The AND operator in x>=y AND x<=z */ 348836c563a2Sdrh Expr compLeft; /* The x>=y term */ 348936c563a2Sdrh Expr compRight; /* The x<=z term */ 349036c563a2Sdrh Expr exprX; /* The x subexpression */ 349136c563a2Sdrh int regFree1 = 0; /* Temporary use register */ 349236c563a2Sdrh 349336c563a2Sdrh assert( !ExprHasProperty(pExpr, EP_xIsSelect) ); 349436c563a2Sdrh exprX = *pExpr->pLeft; 349536c563a2Sdrh exprAnd.op = TK_AND; 349636c563a2Sdrh exprAnd.pLeft = &compLeft; 349736c563a2Sdrh exprAnd.pRight = &compRight; 349836c563a2Sdrh compLeft.op = TK_GE; 349936c563a2Sdrh compLeft.pLeft = &exprX; 350036c563a2Sdrh compLeft.pRight = pExpr->x.pList->a[0].pExpr; 350136c563a2Sdrh compRight.op = TK_LE; 350236c563a2Sdrh compRight.pLeft = &exprX; 350336c563a2Sdrh compRight.pRight = pExpr->x.pList->a[1].pExpr; 350436c563a2Sdrh exprX.iTable = sqlite3ExprCodeTemp(pParse, &exprX, ®Free1); 350536c563a2Sdrh exprX.op = TK_REGISTER; 350636c563a2Sdrh if( jumpIfTrue ){ 350736c563a2Sdrh sqlite3ExprIfTrue(pParse, &exprAnd, dest, jumpIfNull); 350836c563a2Sdrh }else{ 350936c563a2Sdrh sqlite3ExprIfFalse(pParse, &exprAnd, dest, jumpIfNull); 351036c563a2Sdrh } 351136c563a2Sdrh sqlite3ReleaseTempReg(pParse, regFree1); 351236c563a2Sdrh 351336c563a2Sdrh /* Ensure adequate test coverage */ 351436c563a2Sdrh testcase( jumpIfTrue==0 && jumpIfNull==0 && regFree1==0 ); 351536c563a2Sdrh testcase( jumpIfTrue==0 && jumpIfNull==0 && regFree1!=0 ); 351636c563a2Sdrh testcase( jumpIfTrue==0 && jumpIfNull!=0 && regFree1==0 ); 351736c563a2Sdrh testcase( jumpIfTrue==0 && jumpIfNull!=0 && regFree1!=0 ); 351836c563a2Sdrh testcase( jumpIfTrue!=0 && jumpIfNull==0 && regFree1==0 ); 351936c563a2Sdrh testcase( jumpIfTrue!=0 && jumpIfNull==0 && regFree1!=0 ); 352036c563a2Sdrh testcase( jumpIfTrue!=0 && jumpIfNull!=0 && regFree1==0 ); 352136c563a2Sdrh testcase( jumpIfTrue!=0 && jumpIfNull!=0 && regFree1!=0 ); 352236c563a2Sdrh } 352336c563a2Sdrh 352436c563a2Sdrh /* 3525cce7d176Sdrh ** Generate code for a boolean expression such that a jump is made 3526cce7d176Sdrh ** to the label "dest" if the expression is true but execution 3527cce7d176Sdrh ** continues straight thru if the expression is false. 3528f5905aa7Sdrh ** 3529f5905aa7Sdrh ** If the expression evaluates to NULL (neither true nor false), then 353035573356Sdrh ** take the jump if the jumpIfNull flag is SQLITE_JUMPIFNULL. 3531f2bc013cSdrh ** 3532f2bc013cSdrh ** This code depends on the fact that certain token values (ex: TK_EQ) 3533f2bc013cSdrh ** are the same as opcode values (ex: OP_Eq) that implement the corresponding 3534f2bc013cSdrh ** operation. Special comments in vdbe.c and the mkopcodeh.awk script in 3535f2bc013cSdrh ** the make process cause these values to align. Assert()s in the code 3536f2bc013cSdrh ** below verify that the numbers are aligned correctly. 3537cce7d176Sdrh */ 35384adee20fSdanielk1977 void sqlite3ExprIfTrue(Parse *pParse, Expr *pExpr, int dest, int jumpIfNull){ 3539cce7d176Sdrh Vdbe *v = pParse->pVdbe; 3540cce7d176Sdrh int op = 0; 35412dcef11bSdrh int regFree1 = 0; 35422dcef11bSdrh int regFree2 = 0; 35432dcef11bSdrh int r1, r2; 35442dcef11bSdrh 354535573356Sdrh assert( jumpIfNull==SQLITE_JUMPIFNULL || jumpIfNull==0 ); 354648864df9Smistachkin if( NEVER(v==0) ) return; /* Existence of VDBE checked by caller */ 354733cd4909Sdrh if( NEVER(pExpr==0) ) return; /* No way this can happen */ 3548f2bc013cSdrh op = pExpr->op; 3549f2bc013cSdrh switch( op ){ 3550cce7d176Sdrh case TK_AND: { 35514adee20fSdanielk1977 int d2 = sqlite3VdbeMakeLabel(v); 3552c5499befSdrh testcase( jumpIfNull==0 ); 3553ceea3321Sdrh sqlite3ExprCachePush(pParse); 355435573356Sdrh sqlite3ExprIfFalse(pParse, pExpr->pLeft, d2,jumpIfNull^SQLITE_JUMPIFNULL); 35554adee20fSdanielk1977 sqlite3ExprIfTrue(pParse, pExpr->pRight, dest, jumpIfNull); 35564adee20fSdanielk1977 sqlite3VdbeResolveLabel(v, d2); 3557ceea3321Sdrh sqlite3ExprCachePop(pParse, 1); 3558cce7d176Sdrh break; 3559cce7d176Sdrh } 3560cce7d176Sdrh case TK_OR: { 3561c5499befSdrh testcase( jumpIfNull==0 ); 35624adee20fSdanielk1977 sqlite3ExprIfTrue(pParse, pExpr->pLeft, dest, jumpIfNull); 35634adee20fSdanielk1977 sqlite3ExprIfTrue(pParse, pExpr->pRight, dest, jumpIfNull); 3564cce7d176Sdrh break; 3565cce7d176Sdrh } 3566cce7d176Sdrh case TK_NOT: { 3567c5499befSdrh testcase( jumpIfNull==0 ); 35684adee20fSdanielk1977 sqlite3ExprIfFalse(pParse, pExpr->pLeft, dest, jumpIfNull); 3569cce7d176Sdrh break; 3570cce7d176Sdrh } 3571cce7d176Sdrh case TK_LT: 3572cce7d176Sdrh case TK_LE: 3573cce7d176Sdrh case TK_GT: 3574cce7d176Sdrh case TK_GE: 3575cce7d176Sdrh case TK_NE: 35760ac65892Sdrh case TK_EQ: { 3577f2bc013cSdrh assert( TK_LT==OP_Lt ); 3578f2bc013cSdrh assert( TK_LE==OP_Le ); 3579f2bc013cSdrh assert( TK_GT==OP_Gt ); 3580f2bc013cSdrh assert( TK_GE==OP_Ge ); 3581f2bc013cSdrh assert( TK_EQ==OP_Eq ); 3582f2bc013cSdrh assert( TK_NE==OP_Ne ); 3583c5499befSdrh testcase( op==TK_LT ); 3584c5499befSdrh testcase( op==TK_LE ); 3585c5499befSdrh testcase( op==TK_GT ); 3586c5499befSdrh testcase( op==TK_GE ); 3587c5499befSdrh testcase( op==TK_EQ ); 3588c5499befSdrh testcase( op==TK_NE ); 3589c5499befSdrh testcase( jumpIfNull==0 ); 3590b6da74ebSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 3591b6da74ebSdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); 359235573356Sdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, 35932dcef11bSdrh r1, r2, dest, jumpIfNull); 3594c5499befSdrh testcase( regFree1==0 ); 3595c5499befSdrh testcase( regFree2==0 ); 3596cce7d176Sdrh break; 3597cce7d176Sdrh } 35986a2fe093Sdrh case TK_IS: 35996a2fe093Sdrh case TK_ISNOT: { 36006a2fe093Sdrh testcase( op==TK_IS ); 36016a2fe093Sdrh testcase( op==TK_ISNOT ); 3602b6da74ebSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 3603b6da74ebSdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); 36046a2fe093Sdrh op = (op==TK_IS) ? TK_EQ : TK_NE; 36056a2fe093Sdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, 36066a2fe093Sdrh r1, r2, dest, SQLITE_NULLEQ); 36076a2fe093Sdrh testcase( regFree1==0 ); 36086a2fe093Sdrh testcase( regFree2==0 ); 36096a2fe093Sdrh break; 36106a2fe093Sdrh } 3611cce7d176Sdrh case TK_ISNULL: 3612cce7d176Sdrh case TK_NOTNULL: { 3613f2bc013cSdrh assert( TK_ISNULL==OP_IsNull ); 3614f2bc013cSdrh assert( TK_NOTNULL==OP_NotNull ); 3615c5499befSdrh testcase( op==TK_ISNULL ); 3616c5499befSdrh testcase( op==TK_NOTNULL ); 36172dcef11bSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 36182dcef11bSdrh sqlite3VdbeAddOp2(v, op, r1, dest); 3619c5499befSdrh testcase( regFree1==0 ); 3620cce7d176Sdrh break; 3621cce7d176Sdrh } 3622fef5208cSdrh case TK_BETWEEN: { 36235c03f30aSdrh testcase( jumpIfNull==0 ); 362436c563a2Sdrh exprCodeBetween(pParse, pExpr, dest, 1, jumpIfNull); 3625fef5208cSdrh break; 3626fef5208cSdrh } 3627bb201344Sshaneh #ifndef SQLITE_OMIT_SUBQUERY 3628e3365e6cSdrh case TK_IN: { 3629e3365e6cSdrh int destIfFalse = sqlite3VdbeMakeLabel(v); 3630e3365e6cSdrh int destIfNull = jumpIfNull ? dest : destIfFalse; 3631e3365e6cSdrh sqlite3ExprCodeIN(pParse, pExpr, destIfFalse, destIfNull); 3632e3365e6cSdrh sqlite3VdbeAddOp2(v, OP_Goto, 0, dest); 3633e3365e6cSdrh sqlite3VdbeResolveLabel(v, destIfFalse); 3634e3365e6cSdrh break; 3635e3365e6cSdrh } 3636bb201344Sshaneh #endif 3637cce7d176Sdrh default: { 36382dcef11bSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr, ®Free1); 36392dcef11bSdrh sqlite3VdbeAddOp3(v, OP_If, r1, dest, jumpIfNull!=0); 3640c5499befSdrh testcase( regFree1==0 ); 3641c5499befSdrh testcase( jumpIfNull==0 ); 3642cce7d176Sdrh break; 3643cce7d176Sdrh } 3644cce7d176Sdrh } 36452dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree1); 36462dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree2); 3647cce7d176Sdrh } 3648cce7d176Sdrh 3649cce7d176Sdrh /* 365066b89c8fSdrh ** Generate code for a boolean expression such that a jump is made 3651cce7d176Sdrh ** to the label "dest" if the expression is false but execution 3652cce7d176Sdrh ** continues straight thru if the expression is true. 3653f5905aa7Sdrh ** 3654f5905aa7Sdrh ** If the expression evaluates to NULL (neither true nor false) then 365535573356Sdrh ** jump if jumpIfNull is SQLITE_JUMPIFNULL or fall through if jumpIfNull 365635573356Sdrh ** is 0. 3657cce7d176Sdrh */ 36584adee20fSdanielk1977 void sqlite3ExprIfFalse(Parse *pParse, Expr *pExpr, int dest, int jumpIfNull){ 3659cce7d176Sdrh Vdbe *v = pParse->pVdbe; 3660cce7d176Sdrh int op = 0; 36612dcef11bSdrh int regFree1 = 0; 36622dcef11bSdrh int regFree2 = 0; 36632dcef11bSdrh int r1, r2; 36642dcef11bSdrh 366535573356Sdrh assert( jumpIfNull==SQLITE_JUMPIFNULL || jumpIfNull==0 ); 366648864df9Smistachkin if( NEVER(v==0) ) return; /* Existence of VDBE checked by caller */ 366733cd4909Sdrh if( pExpr==0 ) return; 3668f2bc013cSdrh 3669f2bc013cSdrh /* The value of pExpr->op and op are related as follows: 3670f2bc013cSdrh ** 3671f2bc013cSdrh ** pExpr->op op 3672f2bc013cSdrh ** --------- ---------- 3673f2bc013cSdrh ** TK_ISNULL OP_NotNull 3674f2bc013cSdrh ** TK_NOTNULL OP_IsNull 3675f2bc013cSdrh ** TK_NE OP_Eq 3676f2bc013cSdrh ** TK_EQ OP_Ne 3677f2bc013cSdrh ** TK_GT OP_Le 3678f2bc013cSdrh ** TK_LE OP_Gt 3679f2bc013cSdrh ** TK_GE OP_Lt 3680f2bc013cSdrh ** TK_LT OP_Ge 3681f2bc013cSdrh ** 3682f2bc013cSdrh ** For other values of pExpr->op, op is undefined and unused. 3683f2bc013cSdrh ** The value of TK_ and OP_ constants are arranged such that we 3684f2bc013cSdrh ** can compute the mapping above using the following expression. 3685f2bc013cSdrh ** Assert()s verify that the computation is correct. 3686f2bc013cSdrh */ 3687f2bc013cSdrh op = ((pExpr->op+(TK_ISNULL&1))^1)-(TK_ISNULL&1); 3688f2bc013cSdrh 3689f2bc013cSdrh /* Verify correct alignment of TK_ and OP_ constants 3690f2bc013cSdrh */ 3691f2bc013cSdrh assert( pExpr->op!=TK_ISNULL || op==OP_NotNull ); 3692f2bc013cSdrh assert( pExpr->op!=TK_NOTNULL || op==OP_IsNull ); 3693f2bc013cSdrh assert( pExpr->op!=TK_NE || op==OP_Eq ); 3694f2bc013cSdrh assert( pExpr->op!=TK_EQ || op==OP_Ne ); 3695f2bc013cSdrh assert( pExpr->op!=TK_LT || op==OP_Ge ); 3696f2bc013cSdrh assert( pExpr->op!=TK_LE || op==OP_Gt ); 3697f2bc013cSdrh assert( pExpr->op!=TK_GT || op==OP_Le ); 3698f2bc013cSdrh assert( pExpr->op!=TK_GE || op==OP_Lt ); 3699f2bc013cSdrh 3700cce7d176Sdrh switch( pExpr->op ){ 3701cce7d176Sdrh case TK_AND: { 3702c5499befSdrh testcase( jumpIfNull==0 ); 37034adee20fSdanielk1977 sqlite3ExprIfFalse(pParse, pExpr->pLeft, dest, jumpIfNull); 37044adee20fSdanielk1977 sqlite3ExprIfFalse(pParse, pExpr->pRight, dest, jumpIfNull); 3705cce7d176Sdrh break; 3706cce7d176Sdrh } 3707cce7d176Sdrh case TK_OR: { 37084adee20fSdanielk1977 int d2 = sqlite3VdbeMakeLabel(v); 3709c5499befSdrh testcase( jumpIfNull==0 ); 3710ceea3321Sdrh sqlite3ExprCachePush(pParse); 371135573356Sdrh sqlite3ExprIfTrue(pParse, pExpr->pLeft, d2, jumpIfNull^SQLITE_JUMPIFNULL); 37124adee20fSdanielk1977 sqlite3ExprIfFalse(pParse, pExpr->pRight, dest, jumpIfNull); 37134adee20fSdanielk1977 sqlite3VdbeResolveLabel(v, d2); 3714ceea3321Sdrh sqlite3ExprCachePop(pParse, 1); 3715cce7d176Sdrh break; 3716cce7d176Sdrh } 3717cce7d176Sdrh case TK_NOT: { 37185c03f30aSdrh testcase( jumpIfNull==0 ); 37194adee20fSdanielk1977 sqlite3ExprIfTrue(pParse, pExpr->pLeft, dest, jumpIfNull); 3720cce7d176Sdrh break; 3721cce7d176Sdrh } 3722cce7d176Sdrh case TK_LT: 3723cce7d176Sdrh case TK_LE: 3724cce7d176Sdrh case TK_GT: 3725cce7d176Sdrh case TK_GE: 3726cce7d176Sdrh case TK_NE: 3727cce7d176Sdrh case TK_EQ: { 3728c5499befSdrh testcase( op==TK_LT ); 3729c5499befSdrh testcase( op==TK_LE ); 3730c5499befSdrh testcase( op==TK_GT ); 3731c5499befSdrh testcase( op==TK_GE ); 3732c5499befSdrh testcase( op==TK_EQ ); 3733c5499befSdrh testcase( op==TK_NE ); 3734c5499befSdrh testcase( jumpIfNull==0 ); 3735b6da74ebSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 3736b6da74ebSdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); 373735573356Sdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, 37382dcef11bSdrh r1, r2, dest, jumpIfNull); 3739c5499befSdrh testcase( regFree1==0 ); 3740c5499befSdrh testcase( regFree2==0 ); 3741cce7d176Sdrh break; 3742cce7d176Sdrh } 37436a2fe093Sdrh case TK_IS: 37446a2fe093Sdrh case TK_ISNOT: { 37456d4486aeSdrh testcase( pExpr->op==TK_IS ); 37466d4486aeSdrh testcase( pExpr->op==TK_ISNOT ); 3747b6da74ebSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 3748b6da74ebSdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); 37496a2fe093Sdrh op = (pExpr->op==TK_IS) ? TK_NE : TK_EQ; 37506a2fe093Sdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, 37516a2fe093Sdrh r1, r2, dest, SQLITE_NULLEQ); 37526a2fe093Sdrh testcase( regFree1==0 ); 37536a2fe093Sdrh testcase( regFree2==0 ); 37546a2fe093Sdrh break; 37556a2fe093Sdrh } 3756cce7d176Sdrh case TK_ISNULL: 3757cce7d176Sdrh case TK_NOTNULL: { 3758c5499befSdrh testcase( op==TK_ISNULL ); 3759c5499befSdrh testcase( op==TK_NOTNULL ); 37602dcef11bSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 37612dcef11bSdrh sqlite3VdbeAddOp2(v, op, r1, dest); 3762c5499befSdrh testcase( regFree1==0 ); 3763cce7d176Sdrh break; 3764cce7d176Sdrh } 3765fef5208cSdrh case TK_BETWEEN: { 37665c03f30aSdrh testcase( jumpIfNull==0 ); 376736c563a2Sdrh exprCodeBetween(pParse, pExpr, dest, 0, jumpIfNull); 3768fef5208cSdrh break; 3769fef5208cSdrh } 3770bb201344Sshaneh #ifndef SQLITE_OMIT_SUBQUERY 3771e3365e6cSdrh case TK_IN: { 3772e3365e6cSdrh if( jumpIfNull ){ 3773e3365e6cSdrh sqlite3ExprCodeIN(pParse, pExpr, dest, dest); 3774e3365e6cSdrh }else{ 3775e3365e6cSdrh int destIfNull = sqlite3VdbeMakeLabel(v); 3776e3365e6cSdrh sqlite3ExprCodeIN(pParse, pExpr, dest, destIfNull); 3777e3365e6cSdrh sqlite3VdbeResolveLabel(v, destIfNull); 3778e3365e6cSdrh } 3779e3365e6cSdrh break; 3780e3365e6cSdrh } 3781bb201344Sshaneh #endif 3782cce7d176Sdrh default: { 37832dcef11bSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr, ®Free1); 37842dcef11bSdrh sqlite3VdbeAddOp3(v, OP_IfNot, r1, dest, jumpIfNull!=0); 3785c5499befSdrh testcase( regFree1==0 ); 3786c5499befSdrh testcase( jumpIfNull==0 ); 3787cce7d176Sdrh break; 3788cce7d176Sdrh } 3789cce7d176Sdrh } 37902dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree1); 37912dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree2); 3792cce7d176Sdrh } 37932282792aSdrh 37942282792aSdrh /* 37951d9da70aSdrh ** Do a deep comparison of two expression trees. Return 0 if the two 37961d9da70aSdrh ** expressions are completely identical. Return 1 if they differ only 37971d9da70aSdrh ** by a COLLATE operator at the top level. Return 2 if there are differences 37981d9da70aSdrh ** other than the top-level COLLATE operator. 3799d40aab0eSdrh ** 38001d9da70aSdrh ** Sometimes this routine will return 2 even if the two expressions 3801d40aab0eSdrh ** really are equivalent. If we cannot prove that the expressions are 38021d9da70aSdrh ** identical, we return 2 just to be safe. So if this routine 38031d9da70aSdrh ** returns 2, then you do not really know for certain if the two 38041d9da70aSdrh ** expressions are the same. But if you get a 0 or 1 return, then you 3805d40aab0eSdrh ** can be sure the expressions are the same. In the places where 38061d9da70aSdrh ** this routine is used, it does not hurt to get an extra 2 - that 3807d40aab0eSdrh ** just might result in some slightly slower code. But returning 38081d9da70aSdrh ** an incorrect 0 or 1 could lead to a malfunction. 38092282792aSdrh */ 38104adee20fSdanielk1977 int sqlite3ExprCompare(Expr *pA, Expr *pB){ 38114b202ae2Sdanielk1977 if( pA==0||pB==0 ){ 38121d9da70aSdrh return pB==pA ? 0 : 2; 38132282792aSdrh } 381433e619fcSdrh assert( !ExprHasAnyProperty(pA, EP_TokenOnly|EP_Reduced) ); 381533e619fcSdrh assert( !ExprHasAnyProperty(pB, EP_TokenOnly|EP_Reduced) ); 38166ab3a2ecSdanielk1977 if( ExprHasProperty(pA, EP_xIsSelect) || ExprHasProperty(pB, EP_xIsSelect) ){ 38171d9da70aSdrh return 2; 38186ab3a2ecSdanielk1977 } 38191d9da70aSdrh if( (pA->flags & EP_Distinct)!=(pB->flags & EP_Distinct) ) return 2; 3820ae80ddeaSdrh if( pA->op!=pB->op ){ 3821ae80ddeaSdrh if( pA->op==TK_COLLATE && sqlite3ExprCompare(pA->pLeft, pB)<2 ){ 3822ae80ddeaSdrh return 1; 3823ae80ddeaSdrh } 3824ae80ddeaSdrh if( pB->op==TK_COLLATE && sqlite3ExprCompare(pA, pB->pLeft)<2 ){ 3825ae80ddeaSdrh return 1; 3826ae80ddeaSdrh } 3827ae80ddeaSdrh return 2; 3828ae80ddeaSdrh } 38291d9da70aSdrh if( sqlite3ExprCompare(pA->pLeft, pB->pLeft) ) return 2; 38301d9da70aSdrh if( sqlite3ExprCompare(pA->pRight, pB->pRight) ) return 2; 38318c6f666bSdrh if( sqlite3ExprListCompare(pA->x.pList, pB->x.pList) ) return 2; 38321d9da70aSdrh if( pA->iTable!=pB->iTable || pA->iColumn!=pB->iColumn ) return 2; 383333e619fcSdrh if( ExprHasProperty(pA, EP_IntValue) ){ 383433e619fcSdrh if( !ExprHasProperty(pB, EP_IntValue) || pA->u.iValue!=pB->u.iValue ){ 38351d9da70aSdrh return 2; 383633e619fcSdrh } 3837bbabe197Sdrh }else if( pA->op!=TK_COLUMN && ALWAYS(pA->op!=TK_AGG_COLUMN) && pA->u.zToken){ 38381d9da70aSdrh if( ExprHasProperty(pB, EP_IntValue) || NEVER(pB->u.zToken==0) ) return 2; 38396b93c9aeSdrh if( strcmp(pA->u.zToken,pB->u.zToken)!=0 ){ 3840ae80ddeaSdrh return pA->op==TK_COLLATE ? 1 : 2; 38411d9da70aSdrh } 38421d9da70aSdrh } 38432646da7eSdrh return 0; 38442646da7eSdrh } 38452282792aSdrh 38468c6f666bSdrh /* 38478c6f666bSdrh ** Compare two ExprList objects. Return 0 if they are identical and 38488c6f666bSdrh ** non-zero if they differ in any way. 38498c6f666bSdrh ** 38508c6f666bSdrh ** This routine might return non-zero for equivalent ExprLists. The 38518c6f666bSdrh ** only consequence will be disabled optimizations. But this routine 38528c6f666bSdrh ** must never return 0 if the two ExprList objects are different, or 38538c6f666bSdrh ** a malfunction will result. 38548c6f666bSdrh ** 38558c6f666bSdrh ** Two NULL pointers are considered to be the same. But a NULL pointer 38568c6f666bSdrh ** always differs from a non-NULL pointer. 38578c6f666bSdrh */ 38588c6f666bSdrh int sqlite3ExprListCompare(ExprList *pA, ExprList *pB){ 38598c6f666bSdrh int i; 38608c6f666bSdrh if( pA==0 && pB==0 ) return 0; 38618c6f666bSdrh if( pA==0 || pB==0 ) return 1; 38628c6f666bSdrh if( pA->nExpr!=pB->nExpr ) return 1; 38638c6f666bSdrh for(i=0; i<pA->nExpr; i++){ 38648c6f666bSdrh Expr *pExprA = pA->a[i].pExpr; 38658c6f666bSdrh Expr *pExprB = pB->a[i].pExpr; 38668c6f666bSdrh if( pA->a[i].sortOrder!=pB->a[i].sortOrder ) return 1; 38678c6f666bSdrh if( sqlite3ExprCompare(pExprA, pExprB) ) return 1; 38688c6f666bSdrh } 38698c6f666bSdrh return 0; 38708c6f666bSdrh } 387113449892Sdrh 38722282792aSdrh /* 3873030796dfSdrh ** An instance of the following structure is used by the tree walker 3874030796dfSdrh ** to count references to table columns in the arguments of an 3875ed551b95Sdrh ** aggregate function, in order to implement the 3876ed551b95Sdrh ** sqlite3FunctionThisSrc() routine. 3877374fdce4Sdrh */ 3878030796dfSdrh struct SrcCount { 3879030796dfSdrh SrcList *pSrc; /* One particular FROM clause in a nested query */ 3880030796dfSdrh int nThis; /* Number of references to columns in pSrcList */ 3881030796dfSdrh int nOther; /* Number of references to columns in other FROM clauses */ 3882030796dfSdrh }; 3883030796dfSdrh 3884030796dfSdrh /* 3885030796dfSdrh ** Count the number of references to columns. 3886030796dfSdrh */ 3887030796dfSdrh static int exprSrcCount(Walker *pWalker, Expr *pExpr){ 3888fb0a6081Sdrh /* The NEVER() on the second term is because sqlite3FunctionUsesThisSrc() 3889fb0a6081Sdrh ** is always called before sqlite3ExprAnalyzeAggregates() and so the 3890fb0a6081Sdrh ** TK_COLUMNs have not yet been converted into TK_AGG_COLUMN. If 3891fb0a6081Sdrh ** sqlite3FunctionUsesThisSrc() is used differently in the future, the 3892fb0a6081Sdrh ** NEVER() will need to be removed. */ 3893fb0a6081Sdrh if( pExpr->op==TK_COLUMN || NEVER(pExpr->op==TK_AGG_COLUMN) ){ 3894374fdce4Sdrh int i; 3895030796dfSdrh struct SrcCount *p = pWalker->u.pSrcCount; 3896030796dfSdrh SrcList *pSrc = p->pSrc; 3897374fdce4Sdrh for(i=0; i<pSrc->nSrc; i++){ 3898030796dfSdrh if( pExpr->iTable==pSrc->a[i].iCursor ) break; 3899374fdce4Sdrh } 3900030796dfSdrh if( i<pSrc->nSrc ){ 3901030796dfSdrh p->nThis++; 3902374fdce4Sdrh }else{ 3903030796dfSdrh p->nOther++; 3904374fdce4Sdrh } 3905374fdce4Sdrh } 3906030796dfSdrh return WRC_Continue; 3907030796dfSdrh } 3908374fdce4Sdrh 3909374fdce4Sdrh /* 3910030796dfSdrh ** Determine if any of the arguments to the pExpr Function reference 3911030796dfSdrh ** pSrcList. Return true if they do. Also return true if the function 3912030796dfSdrh ** has no arguments or has only constant arguments. Return false if pExpr 3913030796dfSdrh ** references columns but not columns of tables found in pSrcList. 3914374fdce4Sdrh */ 3915030796dfSdrh int sqlite3FunctionUsesThisSrc(Expr *pExpr, SrcList *pSrcList){ 3916374fdce4Sdrh Walker w; 3917030796dfSdrh struct SrcCount cnt; 3918374fdce4Sdrh assert( pExpr->op==TK_AGG_FUNCTION ); 3919374fdce4Sdrh memset(&w, 0, sizeof(w)); 3920030796dfSdrh w.xExprCallback = exprSrcCount; 3921030796dfSdrh w.u.pSrcCount = &cnt; 3922030796dfSdrh cnt.pSrc = pSrcList; 3923030796dfSdrh cnt.nThis = 0; 3924030796dfSdrh cnt.nOther = 0; 3925030796dfSdrh sqlite3WalkExprList(&w, pExpr->x.pList); 3926030796dfSdrh return cnt.nThis>0 || cnt.nOther==0; 3927374fdce4Sdrh } 3928374fdce4Sdrh 3929374fdce4Sdrh /* 393013449892Sdrh ** Add a new element to the pAggInfo->aCol[] array. Return the index of 393113449892Sdrh ** the new element. Return a negative number if malloc fails. 39322282792aSdrh */ 393317435752Sdrh static int addAggInfoColumn(sqlite3 *db, AggInfo *pInfo){ 393413449892Sdrh int i; 3935cf643729Sdrh pInfo->aCol = sqlite3ArrayAllocate( 393617435752Sdrh db, 3937cf643729Sdrh pInfo->aCol, 3938cf643729Sdrh sizeof(pInfo->aCol[0]), 3939cf643729Sdrh &pInfo->nColumn, 3940cf643729Sdrh &i 3941cf643729Sdrh ); 394213449892Sdrh return i; 39432282792aSdrh } 394413449892Sdrh 394513449892Sdrh /* 394613449892Sdrh ** Add a new element to the pAggInfo->aFunc[] array. Return the index of 394713449892Sdrh ** the new element. Return a negative number if malloc fails. 394813449892Sdrh */ 394917435752Sdrh static int addAggInfoFunc(sqlite3 *db, AggInfo *pInfo){ 395013449892Sdrh int i; 3951cf643729Sdrh pInfo->aFunc = sqlite3ArrayAllocate( 395217435752Sdrh db, 3953cf643729Sdrh pInfo->aFunc, 3954cf643729Sdrh sizeof(pInfo->aFunc[0]), 3955cf643729Sdrh &pInfo->nFunc, 3956cf643729Sdrh &i 3957cf643729Sdrh ); 395813449892Sdrh return i; 39592282792aSdrh } 39602282792aSdrh 39612282792aSdrh /* 39627d10d5a6Sdrh ** This is the xExprCallback for a tree walker. It is used to 39637d10d5a6Sdrh ** implement sqlite3ExprAnalyzeAggregates(). See sqlite3ExprAnalyzeAggregates 3964626a879aSdrh ** for additional information. 39652282792aSdrh */ 39667d10d5a6Sdrh static int analyzeAggregate(Walker *pWalker, Expr *pExpr){ 39672282792aSdrh int i; 39687d10d5a6Sdrh NameContext *pNC = pWalker->u.pNC; 3969a58fdfb1Sdanielk1977 Parse *pParse = pNC->pParse; 3970a58fdfb1Sdanielk1977 SrcList *pSrcList = pNC->pSrcList; 397113449892Sdrh AggInfo *pAggInfo = pNC->pAggInfo; 397213449892Sdrh 39732282792aSdrh switch( pExpr->op ){ 397489c69d00Sdrh case TK_AGG_COLUMN: 3975967e8b73Sdrh case TK_COLUMN: { 39768b213899Sdrh testcase( pExpr->op==TK_AGG_COLUMN ); 39778b213899Sdrh testcase( pExpr->op==TK_COLUMN ); 397813449892Sdrh /* Check to see if the column is in one of the tables in the FROM 397913449892Sdrh ** clause of the aggregate query */ 398020bc393cSdrh if( ALWAYS(pSrcList!=0) ){ 398113449892Sdrh struct SrcList_item *pItem = pSrcList->a; 398213449892Sdrh for(i=0; i<pSrcList->nSrc; i++, pItem++){ 398313449892Sdrh struct AggInfo_col *pCol; 398433e619fcSdrh assert( !ExprHasAnyProperty(pExpr, EP_TokenOnly|EP_Reduced) ); 398513449892Sdrh if( pExpr->iTable==pItem->iCursor ){ 398613449892Sdrh /* If we reach this point, it means that pExpr refers to a table 398713449892Sdrh ** that is in the FROM clause of the aggregate query. 398813449892Sdrh ** 398913449892Sdrh ** Make an entry for the column in pAggInfo->aCol[] if there 399013449892Sdrh ** is not an entry there already. 399113449892Sdrh */ 39927f906d63Sdrh int k; 399313449892Sdrh pCol = pAggInfo->aCol; 39947f906d63Sdrh for(k=0; k<pAggInfo->nColumn; k++, pCol++){ 399513449892Sdrh if( pCol->iTable==pExpr->iTable && 399613449892Sdrh pCol->iColumn==pExpr->iColumn ){ 39972282792aSdrh break; 39982282792aSdrh } 39992282792aSdrh } 40001e536953Sdanielk1977 if( (k>=pAggInfo->nColumn) 40011e536953Sdanielk1977 && (k = addAggInfoColumn(pParse->db, pAggInfo))>=0 40021e536953Sdanielk1977 ){ 40037f906d63Sdrh pCol = &pAggInfo->aCol[k]; 40040817d0dfSdanielk1977 pCol->pTab = pExpr->pTab; 400513449892Sdrh pCol->iTable = pExpr->iTable; 400613449892Sdrh pCol->iColumn = pExpr->iColumn; 40070a07c107Sdrh pCol->iMem = ++pParse->nMem; 400813449892Sdrh pCol->iSorterColumn = -1; 40095774b806Sdrh pCol->pExpr = pExpr; 401013449892Sdrh if( pAggInfo->pGroupBy ){ 401113449892Sdrh int j, n; 401213449892Sdrh ExprList *pGB = pAggInfo->pGroupBy; 401313449892Sdrh struct ExprList_item *pTerm = pGB->a; 401413449892Sdrh n = pGB->nExpr; 401513449892Sdrh for(j=0; j<n; j++, pTerm++){ 401613449892Sdrh Expr *pE = pTerm->pExpr; 401713449892Sdrh if( pE->op==TK_COLUMN && pE->iTable==pExpr->iTable && 401813449892Sdrh pE->iColumn==pExpr->iColumn ){ 401913449892Sdrh pCol->iSorterColumn = j; 402013449892Sdrh break; 40212282792aSdrh } 402213449892Sdrh } 402313449892Sdrh } 402413449892Sdrh if( pCol->iSorterColumn<0 ){ 402513449892Sdrh pCol->iSorterColumn = pAggInfo->nSortingColumn++; 402613449892Sdrh } 402713449892Sdrh } 402813449892Sdrh /* There is now an entry for pExpr in pAggInfo->aCol[] (either 402913449892Sdrh ** because it was there before or because we just created it). 403013449892Sdrh ** Convert the pExpr to be a TK_AGG_COLUMN referring to that 403113449892Sdrh ** pAggInfo->aCol[] entry. 403213449892Sdrh */ 403333e619fcSdrh ExprSetIrreducible(pExpr); 403413449892Sdrh pExpr->pAggInfo = pAggInfo; 403513449892Sdrh pExpr->op = TK_AGG_COLUMN; 4036cf697396Sshane pExpr->iAgg = (i16)k; 403713449892Sdrh break; 403813449892Sdrh } /* endif pExpr->iTable==pItem->iCursor */ 403913449892Sdrh } /* end loop over pSrcList */ 4040a58fdfb1Sdanielk1977 } 40417d10d5a6Sdrh return WRC_Prune; 40422282792aSdrh } 40432282792aSdrh case TK_AGG_FUNCTION: { 40443a8c4be7Sdrh if( (pNC->ncFlags & NC_InAggFunc)==0 4045ed551b95Sdrh && pWalker->walkerDepth==pExpr->op2 40463a8c4be7Sdrh ){ 404713449892Sdrh /* Check to see if pExpr is a duplicate of another aggregate 404813449892Sdrh ** function that is already in the pAggInfo structure 404913449892Sdrh */ 405013449892Sdrh struct AggInfo_func *pItem = pAggInfo->aFunc; 405113449892Sdrh for(i=0; i<pAggInfo->nFunc; i++, pItem++){ 40521d9da70aSdrh if( sqlite3ExprCompare(pItem->pExpr, pExpr)==0 ){ 40532282792aSdrh break; 40542282792aSdrh } 40552282792aSdrh } 405613449892Sdrh if( i>=pAggInfo->nFunc ){ 405713449892Sdrh /* pExpr is original. Make a new entry in pAggInfo->aFunc[] 405813449892Sdrh */ 405914db2665Sdanielk1977 u8 enc = ENC(pParse->db); 40601e536953Sdanielk1977 i = addAggInfoFunc(pParse->db, pAggInfo); 406113449892Sdrh if( i>=0 ){ 40626ab3a2ecSdanielk1977 assert( !ExprHasProperty(pExpr, EP_xIsSelect) ); 406313449892Sdrh pItem = &pAggInfo->aFunc[i]; 406413449892Sdrh pItem->pExpr = pExpr; 40650a07c107Sdrh pItem->iMem = ++pParse->nMem; 406633e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 406713449892Sdrh pItem->pFunc = sqlite3FindFunction(pParse->db, 406833e619fcSdrh pExpr->u.zToken, sqlite3Strlen30(pExpr->u.zToken), 40696ab3a2ecSdanielk1977 pExpr->x.pList ? pExpr->x.pList->nExpr : 0, enc, 0); 4070fd357974Sdrh if( pExpr->flags & EP_Distinct ){ 4071fd357974Sdrh pItem->iDistinct = pParse->nTab++; 4072fd357974Sdrh }else{ 4073fd357974Sdrh pItem->iDistinct = -1; 4074fd357974Sdrh } 40752282792aSdrh } 407613449892Sdrh } 407713449892Sdrh /* Make pExpr point to the appropriate pAggInfo->aFunc[] entry 407813449892Sdrh */ 407933e619fcSdrh assert( !ExprHasAnyProperty(pExpr, EP_TokenOnly|EP_Reduced) ); 408033e619fcSdrh ExprSetIrreducible(pExpr); 4081cf697396Sshane pExpr->iAgg = (i16)i; 408213449892Sdrh pExpr->pAggInfo = pAggInfo; 40833a8c4be7Sdrh return WRC_Prune; 40846e83a57fSdrh }else{ 40856e83a57fSdrh return WRC_Continue; 40866e83a57fSdrh } 40872282792aSdrh } 4088a58fdfb1Sdanielk1977 } 40897d10d5a6Sdrh return WRC_Continue; 40907d10d5a6Sdrh } 40917d10d5a6Sdrh static int analyzeAggregatesInSelect(Walker *pWalker, Select *pSelect){ 4092d5a336efSdrh UNUSED_PARAMETER(pWalker); 4093d5a336efSdrh UNUSED_PARAMETER(pSelect); 40947d10d5a6Sdrh return WRC_Continue; 4095a58fdfb1Sdanielk1977 } 4096626a879aSdrh 4097626a879aSdrh /* 4098e8abb4caSdrh ** Analyze the pExpr expression looking for aggregate functions and 4099e8abb4caSdrh ** for variables that need to be added to AggInfo object that pNC->pAggInfo 4100e8abb4caSdrh ** points to. Additional entries are made on the AggInfo object as 4101e8abb4caSdrh ** necessary. 4102626a879aSdrh ** 4103626a879aSdrh ** This routine should only be called after the expression has been 41047d10d5a6Sdrh ** analyzed by sqlite3ResolveExprNames(). 4105626a879aSdrh */ 4106d2b3e23bSdrh void sqlite3ExprAnalyzeAggregates(NameContext *pNC, Expr *pExpr){ 41077d10d5a6Sdrh Walker w; 4108374fdce4Sdrh memset(&w, 0, sizeof(w)); 41097d10d5a6Sdrh w.xExprCallback = analyzeAggregate; 41107d10d5a6Sdrh w.xSelectCallback = analyzeAggregatesInSelect; 41117d10d5a6Sdrh w.u.pNC = pNC; 411220bc393cSdrh assert( pNC->pSrcList!=0 ); 41137d10d5a6Sdrh sqlite3WalkExpr(&w, pExpr); 41142282792aSdrh } 41155d9a4af9Sdrh 41165d9a4af9Sdrh /* 41175d9a4af9Sdrh ** Call sqlite3ExprAnalyzeAggregates() for every expression in an 41185d9a4af9Sdrh ** expression list. Return the number of errors. 41195d9a4af9Sdrh ** 41205d9a4af9Sdrh ** If an error is found, the analysis is cut short. 41215d9a4af9Sdrh */ 4122d2b3e23bSdrh void sqlite3ExprAnalyzeAggList(NameContext *pNC, ExprList *pList){ 41235d9a4af9Sdrh struct ExprList_item *pItem; 41245d9a4af9Sdrh int i; 41255d9a4af9Sdrh if( pList ){ 4126d2b3e23bSdrh for(pItem=pList->a, i=0; i<pList->nExpr; i++, pItem++){ 4127d2b3e23bSdrh sqlite3ExprAnalyzeAggregates(pNC, pItem->pExpr); 41285d9a4af9Sdrh } 41295d9a4af9Sdrh } 41305d9a4af9Sdrh } 4131892d3179Sdrh 4132892d3179Sdrh /* 4133ceea3321Sdrh ** Allocate a single new register for use to hold some intermediate result. 4134892d3179Sdrh */ 4135892d3179Sdrh int sqlite3GetTempReg(Parse *pParse){ 4136e55cbd72Sdrh if( pParse->nTempReg==0 ){ 4137892d3179Sdrh return ++pParse->nMem; 4138892d3179Sdrh } 41392f425f6bSdanielk1977 return pParse->aTempReg[--pParse->nTempReg]; 4140892d3179Sdrh } 4141ceea3321Sdrh 4142ceea3321Sdrh /* 4143ceea3321Sdrh ** Deallocate a register, making available for reuse for some other 4144ceea3321Sdrh ** purpose. 4145ceea3321Sdrh ** 4146ceea3321Sdrh ** If a register is currently being used by the column cache, then 4147ceea3321Sdrh ** the dallocation is deferred until the column cache line that uses 4148ceea3321Sdrh ** the register becomes stale. 4149ceea3321Sdrh */ 4150892d3179Sdrh void sqlite3ReleaseTempReg(Parse *pParse, int iReg){ 41512dcef11bSdrh if( iReg && pParse->nTempReg<ArraySize(pParse->aTempReg) ){ 4152ceea3321Sdrh int i; 4153ceea3321Sdrh struct yColCache *p; 4154ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 4155ceea3321Sdrh if( p->iReg==iReg ){ 4156ceea3321Sdrh p->tempReg = 1; 4157ceea3321Sdrh return; 4158ceea3321Sdrh } 4159ceea3321Sdrh } 4160892d3179Sdrh pParse->aTempReg[pParse->nTempReg++] = iReg; 4161892d3179Sdrh } 4162892d3179Sdrh } 4163892d3179Sdrh 4164892d3179Sdrh /* 4165892d3179Sdrh ** Allocate or deallocate a block of nReg consecutive registers 4166892d3179Sdrh */ 4167892d3179Sdrh int sqlite3GetTempRange(Parse *pParse, int nReg){ 4168e55cbd72Sdrh int i, n; 4169892d3179Sdrh i = pParse->iRangeReg; 4170e55cbd72Sdrh n = pParse->nRangeReg; 4171f49f3523Sdrh if( nReg<=n ){ 4172f49f3523Sdrh assert( !usedAsColumnCache(pParse, i, i+n-1) ); 4173892d3179Sdrh pParse->iRangeReg += nReg; 4174892d3179Sdrh pParse->nRangeReg -= nReg; 4175892d3179Sdrh }else{ 4176892d3179Sdrh i = pParse->nMem+1; 4177892d3179Sdrh pParse->nMem += nReg; 4178892d3179Sdrh } 4179892d3179Sdrh return i; 4180892d3179Sdrh } 4181892d3179Sdrh void sqlite3ReleaseTempRange(Parse *pParse, int iReg, int nReg){ 4182f49f3523Sdrh sqlite3ExprCacheRemove(pParse, iReg, nReg); 4183892d3179Sdrh if( nReg>pParse->nRangeReg ){ 4184892d3179Sdrh pParse->nRangeReg = nReg; 4185892d3179Sdrh pParse->iRangeReg = iReg; 4186892d3179Sdrh } 4187892d3179Sdrh } 4188cdc69557Sdrh 4189cdc69557Sdrh /* 4190cdc69557Sdrh ** Mark all temporary registers as being unavailable for reuse. 4191cdc69557Sdrh */ 4192cdc69557Sdrh void sqlite3ClearTempRegCache(Parse *pParse){ 4193cdc69557Sdrh pParse->nTempReg = 0; 4194cdc69557Sdrh pParse->nRangeReg = 0; 4195cdc69557Sdrh } 4196