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) ); 44fdaac671Sdrh return sqlite3AffinityType(pExpr->u.zToken, 0); 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 */ 68*4ef7efadSdrh Expr *sqlite3ExprAddCollateToken( 69*4ef7efadSdrh Parse *pParse, /* Parsing context */ 70*4ef7efadSdrh Expr *pExpr, /* Add the "COLLATE" clause to this expression */ 71*4ef7efadSdrh const Token *pCollName /* Name of collating sequence */ 72*4ef7efadSdrh ){ 730a8a406eSdrh if( pCollName->n>0 ){ 74ae80ddeaSdrh Expr *pNew = sqlite3ExprAlloc(pParse->db, TK_COLLATE, pCollName, 1); 75ae80ddeaSdrh if( pNew ){ 76ae80ddeaSdrh pNew->pLeft = pExpr; 77a4c3c87eSdrh pNew->flags |= EP_Collate|EP_Skip; 780a8a406eSdrh pExpr = pNew; 79ae80ddeaSdrh } 800a8a406eSdrh } 810a8a406eSdrh return pExpr; 820a8a406eSdrh } 830a8a406eSdrh Expr *sqlite3ExprAddCollateString(Parse *pParse, Expr *pExpr, const char *zC){ 840a8a406eSdrh Token s; 85261d8a51Sdrh assert( zC!=0 ); 860a8a406eSdrh s.z = zC; 870a8a406eSdrh s.n = sqlite3Strlen30(s.z); 88261d8a51Sdrh return sqlite3ExprAddCollateToken(pParse, pExpr, &s); 890a8a406eSdrh } 900a8a406eSdrh 910a8a406eSdrh /* 92a4c3c87eSdrh ** Skip over any TK_COLLATE or TK_AS operators and any unlikely() 93a4c3c87eSdrh ** or likelihood() function at the root of an expression. 940a8a406eSdrh */ 950a8a406eSdrh Expr *sqlite3ExprSkipCollate(Expr *pExpr){ 96a4c3c87eSdrh while( pExpr && ExprHasProperty(pExpr, EP_Skip) ){ 97a4c3c87eSdrh if( ExprHasProperty(pExpr, EP_Unlikely) ){ 98cca9f3d2Sdrh assert( !ExprHasProperty(pExpr, EP_xIsSelect) ); 99cca9f3d2Sdrh assert( pExpr->x.pList->nExpr>0 ); 100a4c3c87eSdrh assert( pExpr->op==TK_FUNCTION ); 101cca9f3d2Sdrh pExpr = pExpr->x.pList->a[0].pExpr; 102cca9f3d2Sdrh }else{ 103a4c3c87eSdrh assert( pExpr->op==TK_COLLATE || pExpr->op==TK_AS ); 104d91eba96Sdrh pExpr = pExpr->pLeft; 105cca9f3d2Sdrh } 106d91eba96Sdrh } 1070a8a406eSdrh return pExpr; 1088b4c40d8Sdrh } 1098b4c40d8Sdrh 1108b4c40d8Sdrh /* 111ae80ddeaSdrh ** Return the collation sequence for the expression pExpr. If 112ae80ddeaSdrh ** there is no defined collating sequence, return NULL. 113ae80ddeaSdrh ** 114ae80ddeaSdrh ** The collating sequence might be determined by a COLLATE operator 115ae80ddeaSdrh ** or by the presence of a column with a defined collating sequence. 116ae80ddeaSdrh ** COLLATE operators take first precedence. Left operands take 117ae80ddeaSdrh ** precedence over right operands. 1180202b29eSdanielk1977 */ 1197cedc8d4Sdanielk1977 CollSeq *sqlite3ExprCollSeq(Parse *pParse, Expr *pExpr){ 120ae80ddeaSdrh sqlite3 *db = pParse->db; 1217cedc8d4Sdanielk1977 CollSeq *pColl = 0; 1227d10d5a6Sdrh Expr *p = pExpr; 123261d8a51Sdrh while( p ){ 124ae80ddeaSdrh int op = p->op; 125ae80ddeaSdrh if( op==TK_CAST || op==TK_UPLUS ){ 126ae80ddeaSdrh p = p->pLeft; 127ae80ddeaSdrh continue; 128ae80ddeaSdrh } 12936e78309Sdan if( op==TK_COLLATE || (op==TK_REGISTER && p->op2==TK_COLLATE) ){ 1307a66da13Sdrh pColl = sqlite3GetCollSeq(pParse, ENC(db), 0, p->u.zToken); 131ae80ddeaSdrh break; 132ae80ddeaSdrh } 133ae80ddeaSdrh if( p->pTab!=0 134ae80ddeaSdrh && (op==TK_AGG_COLUMN || op==TK_COLUMN 135ae80ddeaSdrh || op==TK_REGISTER || op==TK_TRIGGER) 136ae80ddeaSdrh ){ 1377d10d5a6Sdrh /* op==TK_REGISTER && p->pTab!=0 happens when pExpr was originally 1387d10d5a6Sdrh ** a TK_COLUMN but was previously evaluated and cached in a register */ 1397d10d5a6Sdrh int j = p->iColumn; 1407d10d5a6Sdrh if( j>=0 ){ 141ae80ddeaSdrh const char *zColl = p->pTab->aCol[j].zColl; 142c4a64facSdrh pColl = sqlite3FindCollSeq(db, ENC(db), zColl, 0); 1430202b29eSdanielk1977 } 1447d10d5a6Sdrh break; 1457d10d5a6Sdrh } 146ae80ddeaSdrh if( p->flags & EP_Collate ){ 147261d8a51Sdrh if( ALWAYS(p->pLeft) && (p->pLeft->flags & EP_Collate)!=0 ){ 1487d10d5a6Sdrh p = p->pLeft; 149ae80ddeaSdrh }else{ 150ae80ddeaSdrh p = p->pRight; 151ae80ddeaSdrh } 152ae80ddeaSdrh }else{ 153ae80ddeaSdrh break; 154ae80ddeaSdrh } 1550202b29eSdanielk1977 } 1567cedc8d4Sdanielk1977 if( sqlite3CheckCollSeq(pParse, pColl) ){ 1577cedc8d4Sdanielk1977 pColl = 0; 1587cedc8d4Sdanielk1977 } 1597cedc8d4Sdanielk1977 return pColl; 1600202b29eSdanielk1977 } 1610202b29eSdanielk1977 1620202b29eSdanielk1977 /* 163626a879aSdrh ** pExpr is an operand of a comparison operator. aff2 is the 164626a879aSdrh ** type affinity of the other operand. This routine returns the 16553db1458Sdrh ** type affinity that should be used for the comparison operator. 16653db1458Sdrh */ 167e014a838Sdanielk1977 char sqlite3CompareAffinity(Expr *pExpr, char aff2){ 168bf3b721fSdanielk1977 char aff1 = sqlite3ExprAffinity(pExpr); 169e014a838Sdanielk1977 if( aff1 && aff2 ){ 1708df447f0Sdrh /* Both sides of the comparison are columns. If one has numeric 1718df447f0Sdrh ** affinity, use that. Otherwise use no affinity. 172e014a838Sdanielk1977 */ 1738a51256cSdrh if( sqlite3IsNumericAffinity(aff1) || sqlite3IsNumericAffinity(aff2) ){ 174e014a838Sdanielk1977 return SQLITE_AFF_NUMERIC; 175e014a838Sdanielk1977 }else{ 176e014a838Sdanielk1977 return SQLITE_AFF_NONE; 177e014a838Sdanielk1977 } 178e014a838Sdanielk1977 }else if( !aff1 && !aff2 ){ 1795f6a87b3Sdrh /* Neither side of the comparison is a column. Compare the 1805f6a87b3Sdrh ** results directly. 181e014a838Sdanielk1977 */ 1825f6a87b3Sdrh return SQLITE_AFF_NONE; 183e014a838Sdanielk1977 }else{ 184e014a838Sdanielk1977 /* One side is a column, the other is not. Use the columns affinity. */ 185fe05af87Sdrh assert( aff1==0 || aff2==0 ); 186e014a838Sdanielk1977 return (aff1 + aff2); 187e014a838Sdanielk1977 } 188e014a838Sdanielk1977 } 189e014a838Sdanielk1977 19053db1458Sdrh /* 19153db1458Sdrh ** pExpr is a comparison operator. Return the type affinity that should 19253db1458Sdrh ** be applied to both operands prior to doing the comparison. 19353db1458Sdrh */ 194e014a838Sdanielk1977 static char comparisonAffinity(Expr *pExpr){ 195e014a838Sdanielk1977 char aff; 196e014a838Sdanielk1977 assert( pExpr->op==TK_EQ || pExpr->op==TK_IN || pExpr->op==TK_LT || 197e014a838Sdanielk1977 pExpr->op==TK_GT || pExpr->op==TK_GE || pExpr->op==TK_LE || 1986a2fe093Sdrh pExpr->op==TK_NE || pExpr->op==TK_IS || pExpr->op==TK_ISNOT ); 199e014a838Sdanielk1977 assert( pExpr->pLeft ); 200bf3b721fSdanielk1977 aff = sqlite3ExprAffinity(pExpr->pLeft); 201e014a838Sdanielk1977 if( pExpr->pRight ){ 202e014a838Sdanielk1977 aff = sqlite3CompareAffinity(pExpr->pRight, aff); 2036ab3a2ecSdanielk1977 }else if( ExprHasProperty(pExpr, EP_xIsSelect) ){ 2046ab3a2ecSdanielk1977 aff = sqlite3CompareAffinity(pExpr->x.pSelect->pEList->a[0].pExpr, aff); 2056ab3a2ecSdanielk1977 }else if( !aff ){ 206de087bd5Sdrh aff = SQLITE_AFF_NONE; 207e014a838Sdanielk1977 } 208e014a838Sdanielk1977 return aff; 209e014a838Sdanielk1977 } 210e014a838Sdanielk1977 211e014a838Sdanielk1977 /* 212e014a838Sdanielk1977 ** pExpr is a comparison expression, eg. '=', '<', IN(...) etc. 213e014a838Sdanielk1977 ** idx_affinity is the affinity of an indexed column. Return true 214e014a838Sdanielk1977 ** if the index with affinity idx_affinity may be used to implement 215e014a838Sdanielk1977 ** the comparison in pExpr. 216e014a838Sdanielk1977 */ 217e014a838Sdanielk1977 int sqlite3IndexAffinityOk(Expr *pExpr, char idx_affinity){ 218e014a838Sdanielk1977 char aff = comparisonAffinity(pExpr); 2198a51256cSdrh switch( aff ){ 2208a51256cSdrh case SQLITE_AFF_NONE: 2218a51256cSdrh return 1; 2228a51256cSdrh case SQLITE_AFF_TEXT: 2238a51256cSdrh return idx_affinity==SQLITE_AFF_TEXT; 2248a51256cSdrh default: 2258a51256cSdrh return sqlite3IsNumericAffinity(idx_affinity); 2268a51256cSdrh } 227e014a838Sdanielk1977 } 228e014a838Sdanielk1977 229a37cdde0Sdanielk1977 /* 23035573356Sdrh ** Return the P5 value that should be used for a binary comparison 231a37cdde0Sdanielk1977 ** opcode (OP_Eq, OP_Ge etc.) used to compare pExpr1 and pExpr2. 232a37cdde0Sdanielk1977 */ 23335573356Sdrh static u8 binaryCompareP5(Expr *pExpr1, Expr *pExpr2, int jumpIfNull){ 23435573356Sdrh u8 aff = (char)sqlite3ExprAffinity(pExpr2); 2351bd10f8aSdrh aff = (u8)sqlite3CompareAffinity(pExpr1, aff) | (u8)jumpIfNull; 23635573356Sdrh return aff; 237a37cdde0Sdanielk1977 } 238a37cdde0Sdanielk1977 239a2e00042Sdrh /* 2400202b29eSdanielk1977 ** Return a pointer to the collation sequence that should be used by 2410202b29eSdanielk1977 ** a binary comparison operator comparing pLeft and pRight. 2420202b29eSdanielk1977 ** 2430202b29eSdanielk1977 ** If the left hand expression has a collating sequence type, then it is 2440202b29eSdanielk1977 ** used. Otherwise the collation sequence for the right hand expression 2450202b29eSdanielk1977 ** is used, or the default (BINARY) if neither expression has a collating 2460202b29eSdanielk1977 ** type. 247bcbb04e5Sdanielk1977 ** 248bcbb04e5Sdanielk1977 ** Argument pRight (but not pLeft) may be a null pointer. In this case, 249bcbb04e5Sdanielk1977 ** it is not considered. 2500202b29eSdanielk1977 */ 251bcbb04e5Sdanielk1977 CollSeq *sqlite3BinaryCompareCollSeq( 252bcbb04e5Sdanielk1977 Parse *pParse, 253bcbb04e5Sdanielk1977 Expr *pLeft, 254bcbb04e5Sdanielk1977 Expr *pRight 255bcbb04e5Sdanielk1977 ){ 256ec41ddacSdrh CollSeq *pColl; 257ec41ddacSdrh assert( pLeft ); 258ae80ddeaSdrh if( pLeft->flags & EP_Collate ){ 259ae80ddeaSdrh pColl = sqlite3ExprCollSeq(pParse, pLeft); 260ae80ddeaSdrh }else if( pRight && (pRight->flags & EP_Collate)!=0 ){ 261ae80ddeaSdrh pColl = sqlite3ExprCollSeq(pParse, pRight); 262ec41ddacSdrh }else{ 263ec41ddacSdrh pColl = sqlite3ExprCollSeq(pParse, pLeft); 2640202b29eSdanielk1977 if( !pColl ){ 2657cedc8d4Sdanielk1977 pColl = sqlite3ExprCollSeq(pParse, pRight); 2660202b29eSdanielk1977 } 267ec41ddacSdrh } 2680202b29eSdanielk1977 return pColl; 2690202b29eSdanielk1977 } 2700202b29eSdanielk1977 2710202b29eSdanielk1977 /* 272be5c89acSdrh ** Generate code for a comparison operator. 273be5c89acSdrh */ 274be5c89acSdrh static int codeCompare( 275be5c89acSdrh Parse *pParse, /* The parsing (and code generating) context */ 276be5c89acSdrh Expr *pLeft, /* The left operand */ 277be5c89acSdrh Expr *pRight, /* The right operand */ 278be5c89acSdrh int opcode, /* The comparison opcode */ 27935573356Sdrh int in1, int in2, /* Register holding operands */ 280be5c89acSdrh int dest, /* Jump here if true. */ 281be5c89acSdrh int jumpIfNull /* If true, jump if either operand is NULL */ 282be5c89acSdrh ){ 28335573356Sdrh int p5; 28435573356Sdrh int addr; 28535573356Sdrh CollSeq *p4; 28635573356Sdrh 28735573356Sdrh p4 = sqlite3BinaryCompareCollSeq(pParse, pLeft, pRight); 28835573356Sdrh p5 = binaryCompareP5(pLeft, pRight, jumpIfNull); 28935573356Sdrh addr = sqlite3VdbeAddOp4(pParse->pVdbe, opcode, in2, dest, in1, 29035573356Sdrh (void*)p4, P4_COLLSEQ); 2911bd10f8aSdrh sqlite3VdbeChangeP5(pParse->pVdbe, (u8)p5); 29235573356Sdrh return addr; 293be5c89acSdrh } 294be5c89acSdrh 2954b5255acSdanielk1977 #if SQLITE_MAX_EXPR_DEPTH>0 2964b5255acSdanielk1977 /* 2974b5255acSdanielk1977 ** Check that argument nHeight is less than or equal to the maximum 2984b5255acSdanielk1977 ** expression depth allowed. If it is not, leave an error message in 2994b5255acSdanielk1977 ** pParse. 3004b5255acSdanielk1977 */ 3017d10d5a6Sdrh int sqlite3ExprCheckHeight(Parse *pParse, int nHeight){ 3024b5255acSdanielk1977 int rc = SQLITE_OK; 3034b5255acSdanielk1977 int mxHeight = pParse->db->aLimit[SQLITE_LIMIT_EXPR_DEPTH]; 3044b5255acSdanielk1977 if( nHeight>mxHeight ){ 3054b5255acSdanielk1977 sqlite3ErrorMsg(pParse, 3064b5255acSdanielk1977 "Expression tree is too large (maximum depth %d)", mxHeight 3074b5255acSdanielk1977 ); 3084b5255acSdanielk1977 rc = SQLITE_ERROR; 3094b5255acSdanielk1977 } 3104b5255acSdanielk1977 return rc; 3114b5255acSdanielk1977 } 3124b5255acSdanielk1977 3134b5255acSdanielk1977 /* The following three functions, heightOfExpr(), heightOfExprList() 3144b5255acSdanielk1977 ** and heightOfSelect(), are used to determine the maximum height 3154b5255acSdanielk1977 ** of any expression tree referenced by the structure passed as the 3164b5255acSdanielk1977 ** first argument. 3174b5255acSdanielk1977 ** 3184b5255acSdanielk1977 ** If this maximum height is greater than the current value pointed 3194b5255acSdanielk1977 ** to by pnHeight, the second parameter, then set *pnHeight to that 3204b5255acSdanielk1977 ** value. 3214b5255acSdanielk1977 */ 3224b5255acSdanielk1977 static void heightOfExpr(Expr *p, int *pnHeight){ 3234b5255acSdanielk1977 if( p ){ 3244b5255acSdanielk1977 if( p->nHeight>*pnHeight ){ 3254b5255acSdanielk1977 *pnHeight = p->nHeight; 3264b5255acSdanielk1977 } 3274b5255acSdanielk1977 } 3284b5255acSdanielk1977 } 3294b5255acSdanielk1977 static void heightOfExprList(ExprList *p, int *pnHeight){ 3304b5255acSdanielk1977 if( p ){ 3314b5255acSdanielk1977 int i; 3324b5255acSdanielk1977 for(i=0; i<p->nExpr; i++){ 3334b5255acSdanielk1977 heightOfExpr(p->a[i].pExpr, pnHeight); 3344b5255acSdanielk1977 } 3354b5255acSdanielk1977 } 3364b5255acSdanielk1977 } 3374b5255acSdanielk1977 static void heightOfSelect(Select *p, int *pnHeight){ 3384b5255acSdanielk1977 if( p ){ 3394b5255acSdanielk1977 heightOfExpr(p->pWhere, pnHeight); 3404b5255acSdanielk1977 heightOfExpr(p->pHaving, pnHeight); 3414b5255acSdanielk1977 heightOfExpr(p->pLimit, pnHeight); 3424b5255acSdanielk1977 heightOfExpr(p->pOffset, pnHeight); 3434b5255acSdanielk1977 heightOfExprList(p->pEList, pnHeight); 3444b5255acSdanielk1977 heightOfExprList(p->pGroupBy, pnHeight); 3454b5255acSdanielk1977 heightOfExprList(p->pOrderBy, pnHeight); 3464b5255acSdanielk1977 heightOfSelect(p->pPrior, pnHeight); 3474b5255acSdanielk1977 } 3484b5255acSdanielk1977 } 3494b5255acSdanielk1977 3504b5255acSdanielk1977 /* 3514b5255acSdanielk1977 ** Set the Expr.nHeight variable in the structure passed as an 3524b5255acSdanielk1977 ** argument. An expression with no children, Expr.pList or 3534b5255acSdanielk1977 ** Expr.pSelect member has a height of 1. Any other expression 3544b5255acSdanielk1977 ** has a height equal to the maximum height of any other 3554b5255acSdanielk1977 ** referenced Expr plus one. 3564b5255acSdanielk1977 */ 3574b5255acSdanielk1977 static void exprSetHeight(Expr *p){ 3584b5255acSdanielk1977 int nHeight = 0; 3594b5255acSdanielk1977 heightOfExpr(p->pLeft, &nHeight); 3604b5255acSdanielk1977 heightOfExpr(p->pRight, &nHeight); 3616ab3a2ecSdanielk1977 if( ExprHasProperty(p, EP_xIsSelect) ){ 3626ab3a2ecSdanielk1977 heightOfSelect(p->x.pSelect, &nHeight); 3636ab3a2ecSdanielk1977 }else{ 3646ab3a2ecSdanielk1977 heightOfExprList(p->x.pList, &nHeight); 3656ab3a2ecSdanielk1977 } 3664b5255acSdanielk1977 p->nHeight = nHeight + 1; 3674b5255acSdanielk1977 } 3684b5255acSdanielk1977 3694b5255acSdanielk1977 /* 3704b5255acSdanielk1977 ** Set the Expr.nHeight variable using the exprSetHeight() function. If 3714b5255acSdanielk1977 ** the height is greater than the maximum allowed expression depth, 3724b5255acSdanielk1977 ** leave an error in pParse. 3734b5255acSdanielk1977 */ 3744b5255acSdanielk1977 void sqlite3ExprSetHeight(Parse *pParse, Expr *p){ 3754b5255acSdanielk1977 exprSetHeight(p); 3767d10d5a6Sdrh sqlite3ExprCheckHeight(pParse, p->nHeight); 3774b5255acSdanielk1977 } 3784b5255acSdanielk1977 3794b5255acSdanielk1977 /* 3804b5255acSdanielk1977 ** Return the maximum height of any expression tree referenced 3814b5255acSdanielk1977 ** by the select statement passed as an argument. 3824b5255acSdanielk1977 */ 3834b5255acSdanielk1977 int sqlite3SelectExprHeight(Select *p){ 3844b5255acSdanielk1977 int nHeight = 0; 3854b5255acSdanielk1977 heightOfSelect(p, &nHeight); 3864b5255acSdanielk1977 return nHeight; 3874b5255acSdanielk1977 } 3884b5255acSdanielk1977 #else 3894b5255acSdanielk1977 #define exprSetHeight(y) 3904b5255acSdanielk1977 #endif /* SQLITE_MAX_EXPR_DEPTH>0 */ 3914b5255acSdanielk1977 392be5c89acSdrh /* 393b7916a78Sdrh ** This routine is the core allocator for Expr nodes. 394b7916a78Sdrh ** 395a76b5dfcSdrh ** Construct a new expression node and return a pointer to it. Memory 396b7916a78Sdrh ** for this node and for the pToken argument is a single allocation 397b7916a78Sdrh ** obtained from sqlite3DbMalloc(). The calling function 398a76b5dfcSdrh ** is responsible for making sure the node eventually gets freed. 399b7916a78Sdrh ** 400b7916a78Sdrh ** If dequote is true, then the token (if it exists) is dequoted. 401b7916a78Sdrh ** If dequote is false, no dequoting is performance. The deQuote 402b7916a78Sdrh ** parameter is ignored if pToken is NULL or if the token does not 403b7916a78Sdrh ** appear to be quoted. If the quotes were of the form "..." (double-quotes) 404b7916a78Sdrh ** then the EP_DblQuoted flag is set on the expression node. 40533e619fcSdrh ** 40633e619fcSdrh ** Special case: If op==TK_INTEGER and pToken points to a string that 40733e619fcSdrh ** can be translated into a 32-bit integer, then the token is not 40833e619fcSdrh ** stored in u.zToken. Instead, the integer values is written 40933e619fcSdrh ** into u.iValue and the EP_IntValue flag is set. No extra storage 41033e619fcSdrh ** is allocated to hold the integer text and the dequote flag is ignored. 411a76b5dfcSdrh */ 412b7916a78Sdrh Expr *sqlite3ExprAlloc( 413a1644fd8Sdanielk1977 sqlite3 *db, /* Handle for sqlite3DbMallocZero() (may be null) */ 41417435752Sdrh int op, /* Expression opcode */ 415b7916a78Sdrh const Token *pToken, /* Token argument. Might be NULL */ 416b7916a78Sdrh int dequote /* True to dequote */ 41717435752Sdrh ){ 418a76b5dfcSdrh Expr *pNew; 41933e619fcSdrh int nExtra = 0; 420cf697396Sshane int iValue = 0; 421b7916a78Sdrh 422b7916a78Sdrh if( pToken ){ 42333e619fcSdrh if( op!=TK_INTEGER || pToken->z==0 42433e619fcSdrh || sqlite3GetInt32(pToken->z, &iValue)==0 ){ 425b7916a78Sdrh nExtra = pToken->n+1; 426d50ffc41Sdrh assert( iValue>=0 ); 42733e619fcSdrh } 428a76b5dfcSdrh } 429b7916a78Sdrh pNew = sqlite3DbMallocZero(db, sizeof(Expr)+nExtra); 430b7916a78Sdrh if( pNew ){ 4311bd10f8aSdrh pNew->op = (u8)op; 432a58fdfb1Sdanielk1977 pNew->iAgg = -1; 433a76b5dfcSdrh if( pToken ){ 43433e619fcSdrh if( nExtra==0 ){ 43533e619fcSdrh pNew->flags |= EP_IntValue; 43633e619fcSdrh pNew->u.iValue = iValue; 43733e619fcSdrh }else{ 438d9da78a2Sdrh int c; 43933e619fcSdrh pNew->u.zToken = (char*)&pNew[1]; 440b07028f7Sdrh assert( pToken->z!=0 || pToken->n==0 ); 441b07028f7Sdrh if( pToken->n ) memcpy(pNew->u.zToken, pToken->z, pToken->n); 44233e619fcSdrh pNew->u.zToken[pToken->n] = 0; 443b7916a78Sdrh if( dequote && nExtra>=3 444d9da78a2Sdrh && ((c = pToken->z[0])=='\'' || c=='"' || c=='[' || c=='`') ){ 44533e619fcSdrh sqlite3Dequote(pNew->u.zToken); 44624fb627aSdrh if( c=='"' ) pNew->flags |= EP_DblQuoted; 447a34001c9Sdrh } 448a34001c9Sdrh } 44933e619fcSdrh } 450b7916a78Sdrh #if SQLITE_MAX_EXPR_DEPTH>0 451b7916a78Sdrh pNew->nHeight = 1; 452b7916a78Sdrh #endif 453a34001c9Sdrh } 454a76b5dfcSdrh return pNew; 455a76b5dfcSdrh } 456a76b5dfcSdrh 457a76b5dfcSdrh /* 458b7916a78Sdrh ** Allocate a new expression node from a zero-terminated token that has 459b7916a78Sdrh ** already been dequoted. 460b7916a78Sdrh */ 461b7916a78Sdrh Expr *sqlite3Expr( 462b7916a78Sdrh sqlite3 *db, /* Handle for sqlite3DbMallocZero() (may be null) */ 463b7916a78Sdrh int op, /* Expression opcode */ 464b7916a78Sdrh const char *zToken /* Token argument. Might be NULL */ 465b7916a78Sdrh ){ 466b7916a78Sdrh Token x; 467b7916a78Sdrh x.z = zToken; 468b7916a78Sdrh x.n = zToken ? sqlite3Strlen30(zToken) : 0; 469b7916a78Sdrh return sqlite3ExprAlloc(db, op, &x, 0); 470b7916a78Sdrh } 471b7916a78Sdrh 472b7916a78Sdrh /* 473b7916a78Sdrh ** Attach subtrees pLeft and pRight to the Expr node pRoot. 474b7916a78Sdrh ** 475b7916a78Sdrh ** If pRoot==NULL that means that a memory allocation error has occurred. 476b7916a78Sdrh ** In that case, delete the subtrees pLeft and pRight. 477b7916a78Sdrh */ 478b7916a78Sdrh void sqlite3ExprAttachSubtrees( 479b7916a78Sdrh sqlite3 *db, 480b7916a78Sdrh Expr *pRoot, 481b7916a78Sdrh Expr *pLeft, 482b7916a78Sdrh Expr *pRight 483b7916a78Sdrh ){ 484b7916a78Sdrh if( pRoot==0 ){ 485b7916a78Sdrh assert( db->mallocFailed ); 486b7916a78Sdrh sqlite3ExprDelete(db, pLeft); 487b7916a78Sdrh sqlite3ExprDelete(db, pRight); 488b7916a78Sdrh }else{ 489b7916a78Sdrh if( pRight ){ 490b7916a78Sdrh pRoot->pRight = pRight; 491ae80ddeaSdrh pRoot->flags |= EP_Collate & pRight->flags; 492b7916a78Sdrh } 493b7916a78Sdrh if( pLeft ){ 494b7916a78Sdrh pRoot->pLeft = pLeft; 495ae80ddeaSdrh pRoot->flags |= EP_Collate & pLeft->flags; 496b7916a78Sdrh } 497b7916a78Sdrh exprSetHeight(pRoot); 498b7916a78Sdrh } 499b7916a78Sdrh } 500b7916a78Sdrh 501b7916a78Sdrh /* 502bf664469Sdrh ** Allocate a Expr node which joins as many as two subtrees. 503b7916a78Sdrh ** 504bf664469Sdrh ** One or both of the subtrees can be NULL. Return a pointer to the new 505bf664469Sdrh ** Expr node. Or, if an OOM error occurs, set pParse->db->mallocFailed, 506bf664469Sdrh ** free the subtrees and return NULL. 507206f3d96Sdrh */ 50817435752Sdrh Expr *sqlite3PExpr( 50917435752Sdrh Parse *pParse, /* Parsing context */ 51017435752Sdrh int op, /* Expression opcode */ 51117435752Sdrh Expr *pLeft, /* Left operand */ 51217435752Sdrh Expr *pRight, /* Right operand */ 51317435752Sdrh const Token *pToken /* Argument token */ 51417435752Sdrh ){ 5155fb52caaSdrh Expr *p; 5165fb52caaSdrh if( op==TK_AND && pLeft && pRight ){ 5175fb52caaSdrh /* Take advantage of short-circuit false optimization for AND */ 5185fb52caaSdrh p = sqlite3ExprAnd(pParse->db, pLeft, pRight); 5195fb52caaSdrh }else{ 5205fb52caaSdrh p = sqlite3ExprAlloc(pParse->db, op, pToken, 1); 521b7916a78Sdrh sqlite3ExprAttachSubtrees(pParse->db, p, pLeft, pRight); 5225fb52caaSdrh } 5232b359bdbSdan if( p ) { 5242b359bdbSdan sqlite3ExprCheckHeight(pParse, p->nHeight); 5252b359bdbSdan } 5264e0cff60Sdrh return p; 5274e0cff60Sdrh } 5284e0cff60Sdrh 5294e0cff60Sdrh /* 530991a1985Sdrh ** If the expression is always either TRUE or FALSE (respectively), 531991a1985Sdrh ** then return 1. If one cannot determine the truth value of the 532991a1985Sdrh ** expression at compile-time return 0. 533991a1985Sdrh ** 534991a1985Sdrh ** This is an optimization. If is OK to return 0 here even if 535991a1985Sdrh ** the expression really is always false or false (a false negative). 536991a1985Sdrh ** But it is a bug to return 1 if the expression might have different 537991a1985Sdrh ** boolean values in different circumstances (a false positive.) 5385fb52caaSdrh ** 5395fb52caaSdrh ** Note that if the expression is part of conditional for a 5405fb52caaSdrh ** LEFT JOIN, then we cannot determine at compile-time whether or not 5415fb52caaSdrh ** is it true or false, so always return 0. 5425fb52caaSdrh */ 543991a1985Sdrh static int exprAlwaysTrue(Expr *p){ 544991a1985Sdrh int v = 0; 545991a1985Sdrh if( ExprHasProperty(p, EP_FromJoin) ) return 0; 546991a1985Sdrh if( !sqlite3ExprIsInteger(p, &v) ) return 0; 547991a1985Sdrh return v!=0; 548991a1985Sdrh } 5495fb52caaSdrh static int exprAlwaysFalse(Expr *p){ 5505fb52caaSdrh int v = 0; 5515fb52caaSdrh if( ExprHasProperty(p, EP_FromJoin) ) return 0; 5525fb52caaSdrh if( !sqlite3ExprIsInteger(p, &v) ) return 0; 5535fb52caaSdrh return v==0; 5545fb52caaSdrh } 5555fb52caaSdrh 5565fb52caaSdrh /* 55791bb0eedSdrh ** Join two expressions using an AND operator. If either expression is 55891bb0eedSdrh ** NULL, then just return the other expression. 5595fb52caaSdrh ** 5605fb52caaSdrh ** If one side or the other of the AND is known to be false, then instead 5615fb52caaSdrh ** of returning an AND expression, just return a constant expression with 5625fb52caaSdrh ** a value of false. 56391bb0eedSdrh */ 5641e536953Sdanielk1977 Expr *sqlite3ExprAnd(sqlite3 *db, Expr *pLeft, Expr *pRight){ 56591bb0eedSdrh if( pLeft==0 ){ 56691bb0eedSdrh return pRight; 56791bb0eedSdrh }else if( pRight==0 ){ 56891bb0eedSdrh return pLeft; 5695fb52caaSdrh }else if( exprAlwaysFalse(pLeft) || exprAlwaysFalse(pRight) ){ 5705fb52caaSdrh sqlite3ExprDelete(db, pLeft); 5715fb52caaSdrh sqlite3ExprDelete(db, pRight); 5725fb52caaSdrh return sqlite3ExprAlloc(db, TK_INTEGER, &sqlite3IntTokens[0], 0); 57391bb0eedSdrh }else{ 574b7916a78Sdrh Expr *pNew = sqlite3ExprAlloc(db, TK_AND, 0, 0); 575b7916a78Sdrh sqlite3ExprAttachSubtrees(db, pNew, pLeft, pRight); 576b7916a78Sdrh return pNew; 577a76b5dfcSdrh } 578a76b5dfcSdrh } 579a76b5dfcSdrh 580a76b5dfcSdrh /* 581a76b5dfcSdrh ** Construct a new expression node for a function with multiple 582a76b5dfcSdrh ** arguments. 583a76b5dfcSdrh */ 58417435752Sdrh Expr *sqlite3ExprFunction(Parse *pParse, ExprList *pList, Token *pToken){ 585a76b5dfcSdrh Expr *pNew; 586633e6d57Sdrh sqlite3 *db = pParse->db; 5874b202ae2Sdanielk1977 assert( pToken ); 588b7916a78Sdrh pNew = sqlite3ExprAlloc(db, TK_FUNCTION, pToken, 1); 589a76b5dfcSdrh if( pNew==0 ){ 590d9da78a2Sdrh sqlite3ExprListDelete(db, pList); /* Avoid memory leak when malloc fails */ 591a76b5dfcSdrh return 0; 592a76b5dfcSdrh } 5936ab3a2ecSdanielk1977 pNew->x.pList = pList; 5946ab3a2ecSdanielk1977 assert( !ExprHasProperty(pNew, EP_xIsSelect) ); 5954b5255acSdanielk1977 sqlite3ExprSetHeight(pParse, pNew); 596a76b5dfcSdrh return pNew; 597a76b5dfcSdrh } 598a76b5dfcSdrh 599a76b5dfcSdrh /* 600fa6bc000Sdrh ** Assign a variable number to an expression that encodes a wildcard 601fa6bc000Sdrh ** in the original SQL statement. 602fa6bc000Sdrh ** 603fa6bc000Sdrh ** Wildcards consisting of a single "?" are assigned the next sequential 604fa6bc000Sdrh ** variable number. 605fa6bc000Sdrh ** 606fa6bc000Sdrh ** Wildcards of the form "?nnn" are assigned the number "nnn". We make 607fa6bc000Sdrh ** sure "nnn" is not too be to avoid a denial of service attack when 608fa6bc000Sdrh ** the SQL statement comes from an external source. 609fa6bc000Sdrh ** 61051f49f17Sdrh ** Wildcards of the form ":aaa", "@aaa", or "$aaa" are assigned the same number 611fa6bc000Sdrh ** as the previous instance of the same wildcard. Or if this is the first 612fa6bc000Sdrh ** instance of the wildcard, the next sequenial variable number is 613fa6bc000Sdrh ** assigned. 614fa6bc000Sdrh */ 615fa6bc000Sdrh void sqlite3ExprAssignVarNumber(Parse *pParse, Expr *pExpr){ 61617435752Sdrh sqlite3 *db = pParse->db; 617b7916a78Sdrh const char *z; 61817435752Sdrh 619fa6bc000Sdrh if( pExpr==0 ) return; 620c5cd1249Sdrh assert( !ExprHasProperty(pExpr, EP_IntValue|EP_Reduced|EP_TokenOnly) ); 62133e619fcSdrh z = pExpr->u.zToken; 622b7916a78Sdrh assert( z!=0 ); 623b7916a78Sdrh assert( z[0]!=0 ); 624b7916a78Sdrh if( z[1]==0 ){ 625fa6bc000Sdrh /* Wildcard of the form "?". Assign the next variable number */ 626b7916a78Sdrh assert( z[0]=='?' ); 6278677d308Sdrh pExpr->iColumn = (ynVar)(++pParse->nVar); 628124c0b49Sdrh }else{ 629124c0b49Sdrh ynVar x = 0; 630124c0b49Sdrh u32 n = sqlite3Strlen30(z); 631124c0b49Sdrh if( z[0]=='?' ){ 632fa6bc000Sdrh /* Wildcard of the form "?nnn". Convert "nnn" to an integer and 633fa6bc000Sdrh ** use it as the variable number */ 634c8d735aeSdan i64 i; 635124c0b49Sdrh int bOk = 0==sqlite3Atoi64(&z[1], &i, n-1, SQLITE_UTF8); 636124c0b49Sdrh pExpr->iColumn = x = (ynVar)i; 637c5499befSdrh testcase( i==0 ); 638c5499befSdrh testcase( i==1 ); 639c5499befSdrh testcase( i==db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER]-1 ); 640c5499befSdrh testcase( i==db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER] ); 641c8d735aeSdan if( bOk==0 || i<1 || i>db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER] ){ 642fa6bc000Sdrh sqlite3ErrorMsg(pParse, "variable number must be between ?1 and ?%d", 643bb4957f8Sdrh db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER]); 644124c0b49Sdrh x = 0; 645fa6bc000Sdrh } 646fa6bc000Sdrh if( i>pParse->nVar ){ 6471df2db7fSshaneh pParse->nVar = (int)i; 648fa6bc000Sdrh } 649fa6bc000Sdrh }else{ 65051f49f17Sdrh /* Wildcards like ":aaa", "$aaa" or "@aaa". Reuse the same variable 651fa6bc000Sdrh ** number as the prior appearance of the same name, or if the name 652fa6bc000Sdrh ** has never appeared before, reuse the same variable number 653fa6bc000Sdrh */ 654124c0b49Sdrh ynVar i; 655124c0b49Sdrh for(i=0; i<pParse->nzVar; i++){ 656503a686eSdrh if( pParse->azVar[i] && strcmp(pParse->azVar[i],z)==0 ){ 657124c0b49Sdrh pExpr->iColumn = x = (ynVar)i+1; 658fa6bc000Sdrh break; 659fa6bc000Sdrh } 660fa6bc000Sdrh } 661124c0b49Sdrh if( x==0 ) x = pExpr->iColumn = (ynVar)(++pParse->nVar); 662fa6bc000Sdrh } 663124c0b49Sdrh if( x>0 ){ 664124c0b49Sdrh if( x>pParse->nzVar ){ 665124c0b49Sdrh char **a; 666124c0b49Sdrh a = sqlite3DbRealloc(db, pParse->azVar, x*sizeof(a[0])); 667124c0b49Sdrh if( a==0 ) return; /* Error reported through db->mallocFailed */ 668124c0b49Sdrh pParse->azVar = a; 669124c0b49Sdrh memset(&a[pParse->nzVar], 0, (x-pParse->nzVar)*sizeof(a[0])); 670124c0b49Sdrh pParse->nzVar = x; 671124c0b49Sdrh } 672124c0b49Sdrh if( z[0]!='?' || pParse->azVar[x-1]==0 ){ 673124c0b49Sdrh sqlite3DbFree(db, pParse->azVar[x-1]); 674124c0b49Sdrh pParse->azVar[x-1] = sqlite3DbStrNDup(db, z, n); 675fa6bc000Sdrh } 676fa6bc000Sdrh } 677fa6bc000Sdrh } 678bb4957f8Sdrh if( !pParse->nErr && pParse->nVar>db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER] ){ 679832b2664Sdanielk1977 sqlite3ErrorMsg(pParse, "too many SQL variables"); 680832b2664Sdanielk1977 } 681fa6bc000Sdrh } 682fa6bc000Sdrh 683fa6bc000Sdrh /* 684f6963f99Sdan ** Recursively delete an expression tree. 685a2e00042Sdrh */ 686f6963f99Sdan void sqlite3ExprDelete(sqlite3 *db, Expr *p){ 687f6963f99Sdan if( p==0 ) return; 688d50ffc41Sdrh /* Sanity check: Assert that the IntValue is non-negative if it exists */ 689d50ffc41Sdrh assert( !ExprHasProperty(p, EP_IntValue) || p->u.iValue>=0 ); 690c5cd1249Sdrh if( !ExprHasProperty(p, EP_TokenOnly) ){ 691c5cd1249Sdrh /* The Expr.x union is never used at the same time as Expr.pRight */ 692c5cd1249Sdrh assert( p->x.pList==0 || p->pRight==0 ); 693633e6d57Sdrh sqlite3ExprDelete(db, p->pLeft); 694633e6d57Sdrh sqlite3ExprDelete(db, p->pRight); 695c5cd1249Sdrh if( ExprHasProperty(p, EP_MemToken) ) sqlite3DbFree(db, p->u.zToken); 6966ab3a2ecSdanielk1977 if( ExprHasProperty(p, EP_xIsSelect) ){ 6976ab3a2ecSdanielk1977 sqlite3SelectDelete(db, p->x.pSelect); 6986ab3a2ecSdanielk1977 }else{ 6996ab3a2ecSdanielk1977 sqlite3ExprListDelete(db, p->x.pList); 7006ab3a2ecSdanielk1977 } 7016ab3a2ecSdanielk1977 } 70233e619fcSdrh if( !ExprHasProperty(p, EP_Static) ){ 703633e6d57Sdrh sqlite3DbFree(db, p); 704a2e00042Sdrh } 70533e619fcSdrh } 706a2e00042Sdrh 707d2687b77Sdrh /* 7086ab3a2ecSdanielk1977 ** Return the number of bytes allocated for the expression structure 7096ab3a2ecSdanielk1977 ** passed as the first argument. This is always one of EXPR_FULLSIZE, 7106ab3a2ecSdanielk1977 ** EXPR_REDUCEDSIZE or EXPR_TOKENONLYSIZE. 7116ab3a2ecSdanielk1977 */ 7126ab3a2ecSdanielk1977 static int exprStructSize(Expr *p){ 7136ab3a2ecSdanielk1977 if( ExprHasProperty(p, EP_TokenOnly) ) return EXPR_TOKENONLYSIZE; 7146ab3a2ecSdanielk1977 if( ExprHasProperty(p, EP_Reduced) ) return EXPR_REDUCEDSIZE; 7156ab3a2ecSdanielk1977 return EXPR_FULLSIZE; 7166ab3a2ecSdanielk1977 } 7176ab3a2ecSdanielk1977 7186ab3a2ecSdanielk1977 /* 71933e619fcSdrh ** The dupedExpr*Size() routines each return the number of bytes required 72033e619fcSdrh ** to store a copy of an expression or expression tree. They differ in 72133e619fcSdrh ** how much of the tree is measured. 72233e619fcSdrh ** 72333e619fcSdrh ** dupedExprStructSize() Size of only the Expr structure 72433e619fcSdrh ** dupedExprNodeSize() Size of Expr + space for token 72533e619fcSdrh ** dupedExprSize() Expr + token + subtree components 72633e619fcSdrh ** 72733e619fcSdrh *************************************************************************** 72833e619fcSdrh ** 72933e619fcSdrh ** The dupedExprStructSize() function returns two values OR-ed together: 73033e619fcSdrh ** (1) the space required for a copy of the Expr structure only and 73133e619fcSdrh ** (2) the EP_xxx flags that indicate what the structure size should be. 73233e619fcSdrh ** The return values is always one of: 73333e619fcSdrh ** 73433e619fcSdrh ** EXPR_FULLSIZE 73533e619fcSdrh ** EXPR_REDUCEDSIZE | EP_Reduced 73633e619fcSdrh ** EXPR_TOKENONLYSIZE | EP_TokenOnly 73733e619fcSdrh ** 73833e619fcSdrh ** The size of the structure can be found by masking the return value 73933e619fcSdrh ** of this routine with 0xfff. The flags can be found by masking the 74033e619fcSdrh ** return value with EP_Reduced|EP_TokenOnly. 74133e619fcSdrh ** 74233e619fcSdrh ** Note that with flags==EXPRDUP_REDUCE, this routines works on full-size 74333e619fcSdrh ** (unreduced) Expr objects as they or originally constructed by the parser. 74433e619fcSdrh ** During expression analysis, extra information is computed and moved into 74533e619fcSdrh ** later parts of teh Expr object and that extra information might get chopped 74633e619fcSdrh ** off if the expression is reduced. Note also that it does not work to 74733e619fcSdrh ** make a EXPRDUP_REDUCE copy of a reduced expression. It is only legal 74833e619fcSdrh ** to reduce a pristine expression tree from the parser. The implementation 74933e619fcSdrh ** of dupedExprStructSize() contain multiple assert() statements that attempt 75033e619fcSdrh ** to enforce this constraint. 7516ab3a2ecSdanielk1977 */ 7526ab3a2ecSdanielk1977 static int dupedExprStructSize(Expr *p, int flags){ 7536ab3a2ecSdanielk1977 int nSize; 75433e619fcSdrh assert( flags==EXPRDUP_REDUCE || flags==0 ); /* Only one flag value allowed */ 755aecd8021Sdrh assert( EXPR_FULLSIZE<=0xfff ); 756aecd8021Sdrh assert( (0xfff & (EP_Reduced|EP_TokenOnly))==0 ); 7576ab3a2ecSdanielk1977 if( 0==(flags&EXPRDUP_REDUCE) ){ 7586ab3a2ecSdanielk1977 nSize = EXPR_FULLSIZE; 7596ab3a2ecSdanielk1977 }else{ 760c5cd1249Sdrh assert( !ExprHasProperty(p, EP_TokenOnly|EP_Reduced) ); 76133e619fcSdrh assert( !ExprHasProperty(p, EP_FromJoin) ); 762c5cd1249Sdrh assert( !ExprHasProperty(p, EP_MemToken) ); 763ebb6a65dSdrh assert( !ExprHasProperty(p, EP_NoReduce) ); 764aecd8021Sdrh if( p->pLeft || p->x.pList ){ 76533e619fcSdrh nSize = EXPR_REDUCEDSIZE | EP_Reduced; 76633e619fcSdrh }else{ 767aecd8021Sdrh assert( p->pRight==0 ); 76833e619fcSdrh nSize = EXPR_TOKENONLYSIZE | EP_TokenOnly; 76933e619fcSdrh } 7706ab3a2ecSdanielk1977 } 7716ab3a2ecSdanielk1977 return nSize; 7726ab3a2ecSdanielk1977 } 7736ab3a2ecSdanielk1977 7746ab3a2ecSdanielk1977 /* 77533e619fcSdrh ** This function returns the space in bytes required to store the copy 77633e619fcSdrh ** of the Expr structure and a copy of the Expr.u.zToken string (if that 77733e619fcSdrh ** string is defined.) 7786ab3a2ecSdanielk1977 */ 7796ab3a2ecSdanielk1977 static int dupedExprNodeSize(Expr *p, int flags){ 78033e619fcSdrh int nByte = dupedExprStructSize(p, flags) & 0xfff; 78133e619fcSdrh if( !ExprHasProperty(p, EP_IntValue) && p->u.zToken ){ 78233e619fcSdrh nByte += sqlite3Strlen30(p->u.zToken)+1; 7836ab3a2ecSdanielk1977 } 784bc73971dSdanielk1977 return ROUND8(nByte); 7856ab3a2ecSdanielk1977 } 7866ab3a2ecSdanielk1977 7876ab3a2ecSdanielk1977 /* 7886ab3a2ecSdanielk1977 ** Return the number of bytes required to create a duplicate of the 7896ab3a2ecSdanielk1977 ** expression passed as the first argument. The second argument is a 7906ab3a2ecSdanielk1977 ** mask containing EXPRDUP_XXX flags. 7916ab3a2ecSdanielk1977 ** 7926ab3a2ecSdanielk1977 ** The value returned includes space to create a copy of the Expr struct 79333e619fcSdrh ** itself and the buffer referred to by Expr.u.zToken, if any. 7946ab3a2ecSdanielk1977 ** 7956ab3a2ecSdanielk1977 ** If the EXPRDUP_REDUCE flag is set, then the return value includes 7966ab3a2ecSdanielk1977 ** space to duplicate all Expr nodes in the tree formed by Expr.pLeft 7976ab3a2ecSdanielk1977 ** and Expr.pRight variables (but not for any structures pointed to or 7986ab3a2ecSdanielk1977 ** descended from the Expr.x.pList or Expr.x.pSelect variables). 7996ab3a2ecSdanielk1977 */ 8006ab3a2ecSdanielk1977 static int dupedExprSize(Expr *p, int flags){ 8016ab3a2ecSdanielk1977 int nByte = 0; 8026ab3a2ecSdanielk1977 if( p ){ 8036ab3a2ecSdanielk1977 nByte = dupedExprNodeSize(p, flags); 8046ab3a2ecSdanielk1977 if( flags&EXPRDUP_REDUCE ){ 805b7916a78Sdrh nByte += dupedExprSize(p->pLeft, flags) + dupedExprSize(p->pRight, flags); 8066ab3a2ecSdanielk1977 } 8076ab3a2ecSdanielk1977 } 8086ab3a2ecSdanielk1977 return nByte; 8096ab3a2ecSdanielk1977 } 8106ab3a2ecSdanielk1977 8116ab3a2ecSdanielk1977 /* 8126ab3a2ecSdanielk1977 ** This function is similar to sqlite3ExprDup(), except that if pzBuffer 8136ab3a2ecSdanielk1977 ** is not NULL then *pzBuffer is assumed to point to a buffer large enough 81433e619fcSdrh ** to store the copy of expression p, the copies of p->u.zToken 8156ab3a2ecSdanielk1977 ** (if applicable), and the copies of the p->pLeft and p->pRight expressions, 8166ab3a2ecSdanielk1977 ** if any. Before returning, *pzBuffer is set to the first byte passed the 8176ab3a2ecSdanielk1977 ** portion of the buffer copied into by this function. 8186ab3a2ecSdanielk1977 */ 8196ab3a2ecSdanielk1977 static Expr *exprDup(sqlite3 *db, Expr *p, int flags, u8 **pzBuffer){ 8206ab3a2ecSdanielk1977 Expr *pNew = 0; /* Value to return */ 8216ab3a2ecSdanielk1977 if( p ){ 8226ab3a2ecSdanielk1977 const int isReduced = (flags&EXPRDUP_REDUCE); 8236ab3a2ecSdanielk1977 u8 *zAlloc; 82433e619fcSdrh u32 staticFlag = 0; 8256ab3a2ecSdanielk1977 8266ab3a2ecSdanielk1977 assert( pzBuffer==0 || isReduced ); 8276ab3a2ecSdanielk1977 8286ab3a2ecSdanielk1977 /* Figure out where to write the new Expr structure. */ 8296ab3a2ecSdanielk1977 if( pzBuffer ){ 8306ab3a2ecSdanielk1977 zAlloc = *pzBuffer; 83133e619fcSdrh staticFlag = EP_Static; 8326ab3a2ecSdanielk1977 }else{ 8336ab3a2ecSdanielk1977 zAlloc = sqlite3DbMallocRaw(db, dupedExprSize(p, flags)); 8346ab3a2ecSdanielk1977 } 8356ab3a2ecSdanielk1977 pNew = (Expr *)zAlloc; 8366ab3a2ecSdanielk1977 8376ab3a2ecSdanielk1977 if( pNew ){ 8386ab3a2ecSdanielk1977 /* Set nNewSize to the size allocated for the structure pointed to 8396ab3a2ecSdanielk1977 ** by pNew. This is either EXPR_FULLSIZE, EXPR_REDUCEDSIZE or 8406ab3a2ecSdanielk1977 ** EXPR_TOKENONLYSIZE. nToken is set to the number of bytes consumed 84133e619fcSdrh ** by the copy of the p->u.zToken string (if any). 8426ab3a2ecSdanielk1977 */ 84333e619fcSdrh const unsigned nStructSize = dupedExprStructSize(p, flags); 84433e619fcSdrh const int nNewSize = nStructSize & 0xfff; 84533e619fcSdrh int nToken; 84633e619fcSdrh if( !ExprHasProperty(p, EP_IntValue) && p->u.zToken ){ 84733e619fcSdrh nToken = sqlite3Strlen30(p->u.zToken) + 1; 84833e619fcSdrh }else{ 84933e619fcSdrh nToken = 0; 85033e619fcSdrh } 8516ab3a2ecSdanielk1977 if( isReduced ){ 8526ab3a2ecSdanielk1977 assert( ExprHasProperty(p, EP_Reduced)==0 ); 8536ab3a2ecSdanielk1977 memcpy(zAlloc, p, nNewSize); 8546ab3a2ecSdanielk1977 }else{ 8556ab3a2ecSdanielk1977 int nSize = exprStructSize(p); 8566ab3a2ecSdanielk1977 memcpy(zAlloc, p, nSize); 8576ab3a2ecSdanielk1977 memset(&zAlloc[nSize], 0, EXPR_FULLSIZE-nSize); 8586ab3a2ecSdanielk1977 } 8596ab3a2ecSdanielk1977 86033e619fcSdrh /* Set the EP_Reduced, EP_TokenOnly, and EP_Static flags appropriately. */ 861c5cd1249Sdrh pNew->flags &= ~(EP_Reduced|EP_TokenOnly|EP_Static|EP_MemToken); 86233e619fcSdrh pNew->flags |= nStructSize & (EP_Reduced|EP_TokenOnly); 86333e619fcSdrh pNew->flags |= staticFlag; 8646ab3a2ecSdanielk1977 86533e619fcSdrh /* Copy the p->u.zToken string, if any. */ 8666ab3a2ecSdanielk1977 if( nToken ){ 86733e619fcSdrh char *zToken = pNew->u.zToken = (char*)&zAlloc[nNewSize]; 86833e619fcSdrh memcpy(zToken, p->u.zToken, nToken); 8696ab3a2ecSdanielk1977 } 8706ab3a2ecSdanielk1977 8716ab3a2ecSdanielk1977 if( 0==((p->flags|pNew->flags) & EP_TokenOnly) ){ 8726ab3a2ecSdanielk1977 /* Fill in the pNew->x.pSelect or pNew->x.pList member. */ 8736ab3a2ecSdanielk1977 if( ExprHasProperty(p, EP_xIsSelect) ){ 8746ab3a2ecSdanielk1977 pNew->x.pSelect = sqlite3SelectDup(db, p->x.pSelect, isReduced); 8756ab3a2ecSdanielk1977 }else{ 8766ab3a2ecSdanielk1977 pNew->x.pList = sqlite3ExprListDup(db, p->x.pList, isReduced); 8776ab3a2ecSdanielk1977 } 8786ab3a2ecSdanielk1977 } 8796ab3a2ecSdanielk1977 8806ab3a2ecSdanielk1977 /* Fill in pNew->pLeft and pNew->pRight. */ 881c5cd1249Sdrh if( ExprHasProperty(pNew, EP_Reduced|EP_TokenOnly) ){ 8826ab3a2ecSdanielk1977 zAlloc += dupedExprNodeSize(p, flags); 8836ab3a2ecSdanielk1977 if( ExprHasProperty(pNew, EP_Reduced) ){ 8846ab3a2ecSdanielk1977 pNew->pLeft = exprDup(db, p->pLeft, EXPRDUP_REDUCE, &zAlloc); 8856ab3a2ecSdanielk1977 pNew->pRight = exprDup(db, p->pRight, EXPRDUP_REDUCE, &zAlloc); 8866ab3a2ecSdanielk1977 } 8876ab3a2ecSdanielk1977 if( pzBuffer ){ 8886ab3a2ecSdanielk1977 *pzBuffer = zAlloc; 8896ab3a2ecSdanielk1977 } 890b7916a78Sdrh }else{ 891c5cd1249Sdrh if( !ExprHasProperty(p, EP_TokenOnly) ){ 8926ab3a2ecSdanielk1977 pNew->pLeft = sqlite3ExprDup(db, p->pLeft, 0); 8936ab3a2ecSdanielk1977 pNew->pRight = sqlite3ExprDup(db, p->pRight, 0); 8946ab3a2ecSdanielk1977 } 8956ab3a2ecSdanielk1977 } 896b7916a78Sdrh 897b7916a78Sdrh } 8986ab3a2ecSdanielk1977 } 8996ab3a2ecSdanielk1977 return pNew; 9006ab3a2ecSdanielk1977 } 9016ab3a2ecSdanielk1977 902bfe31e7fSdan /* 903bfe31e7fSdan ** Create and return a deep copy of the object passed as the second 904bfe31e7fSdan ** argument. If an OOM condition is encountered, NULL is returned 905bfe31e7fSdan ** and the db->mallocFailed flag set. 906bfe31e7fSdan */ 907eede6a53Sdan #ifndef SQLITE_OMIT_CTE 908bfe31e7fSdan static With *withDup(sqlite3 *db, With *p){ 9094e9119d9Sdan With *pRet = 0; 9104e9119d9Sdan if( p ){ 9114e9119d9Sdan int nByte = sizeof(*p) + sizeof(p->a[0]) * (p->nCte-1); 9124e9119d9Sdan pRet = sqlite3DbMallocZero(db, nByte); 9134e9119d9Sdan if( pRet ){ 9144e9119d9Sdan int i; 9154e9119d9Sdan pRet->nCte = p->nCte; 9164e9119d9Sdan for(i=0; i<p->nCte; i++){ 9174e9119d9Sdan pRet->a[i].pSelect = sqlite3SelectDup(db, p->a[i].pSelect, 0); 9184e9119d9Sdan pRet->a[i].pCols = sqlite3ExprListDup(db, p->a[i].pCols, 0); 9194e9119d9Sdan pRet->a[i].zName = sqlite3DbStrDup(db, p->a[i].zName); 9204e9119d9Sdan } 9214e9119d9Sdan } 9224e9119d9Sdan } 9234e9119d9Sdan return pRet; 9244e9119d9Sdan } 925eede6a53Sdan #else 926eede6a53Sdan # define withDup(x,y) 0 927eede6a53Sdan #endif 9284e9119d9Sdan 9296ab3a2ecSdanielk1977 /* 930ff78bd2fSdrh ** The following group of routines make deep copies of expressions, 931ff78bd2fSdrh ** expression lists, ID lists, and select statements. The copies can 932ff78bd2fSdrh ** be deleted (by being passed to their respective ...Delete() routines) 933ff78bd2fSdrh ** without effecting the originals. 934ff78bd2fSdrh ** 9354adee20fSdanielk1977 ** The expression list, ID, and source lists return by sqlite3ExprListDup(), 9364adee20fSdanielk1977 ** sqlite3IdListDup(), and sqlite3SrcListDup() can not be further expanded 937ad3cab52Sdrh ** by subsequent calls to sqlite*ListAppend() routines. 938ff78bd2fSdrh ** 939ad3cab52Sdrh ** Any tables that the SrcList might point to are not duplicated. 9406ab3a2ecSdanielk1977 ** 941b7916a78Sdrh ** The flags parameter contains a combination of the EXPRDUP_XXX flags. 9426ab3a2ecSdanielk1977 ** If the EXPRDUP_REDUCE flag is set, then the structure returned is a 9436ab3a2ecSdanielk1977 ** truncated version of the usual Expr structure that will be stored as 9446ab3a2ecSdanielk1977 ** part of the in-memory representation of the database schema. 945ff78bd2fSdrh */ 9466ab3a2ecSdanielk1977 Expr *sqlite3ExprDup(sqlite3 *db, Expr *p, int flags){ 9476ab3a2ecSdanielk1977 return exprDup(db, p, flags, 0); 948ff78bd2fSdrh } 9496ab3a2ecSdanielk1977 ExprList *sqlite3ExprListDup(sqlite3 *db, ExprList *p, int flags){ 950ff78bd2fSdrh ExprList *pNew; 951145716b3Sdrh struct ExprList_item *pItem, *pOldItem; 952ff78bd2fSdrh int i; 953ff78bd2fSdrh if( p==0 ) return 0; 95417435752Sdrh pNew = sqlite3DbMallocRaw(db, sizeof(*pNew) ); 955ff78bd2fSdrh if( pNew==0 ) return 0; 95631dad9daSdanielk1977 pNew->iECursor = 0; 957d872bb18Sdrh pNew->nExpr = i = p->nExpr; 958d872bb18Sdrh if( (flags & EXPRDUP_REDUCE)==0 ) for(i=1; i<p->nExpr; i+=i){} 959d872bb18Sdrh pNew->a = pItem = sqlite3DbMallocRaw(db, i*sizeof(p->a[0]) ); 960e0048400Sdanielk1977 if( pItem==0 ){ 961633e6d57Sdrh sqlite3DbFree(db, pNew); 962e0048400Sdanielk1977 return 0; 963e0048400Sdanielk1977 } 964145716b3Sdrh pOldItem = p->a; 965145716b3Sdrh for(i=0; i<p->nExpr; i++, pItem++, pOldItem++){ 9666ab3a2ecSdanielk1977 Expr *pOldExpr = pOldItem->pExpr; 967b5526ea6Sdrh pItem->pExpr = sqlite3ExprDup(db, pOldExpr, flags); 96817435752Sdrh pItem->zName = sqlite3DbStrDup(db, pOldItem->zName); 969b7916a78Sdrh pItem->zSpan = sqlite3DbStrDup(db, pOldItem->zSpan); 970145716b3Sdrh pItem->sortOrder = pOldItem->sortOrder; 9713e7bc9caSdrh pItem->done = 0; 9722c036cffSdrh pItem->bSpanIsTab = pOldItem->bSpanIsTab; 973c2acc4e4Sdrh pItem->u = pOldItem->u; 974ff78bd2fSdrh } 975ff78bd2fSdrh return pNew; 976ff78bd2fSdrh } 97793758c8dSdanielk1977 97893758c8dSdanielk1977 /* 97993758c8dSdanielk1977 ** If cursors, triggers, views and subqueries are all omitted from 98093758c8dSdanielk1977 ** the build, then none of the following routines, except for 98193758c8dSdanielk1977 ** sqlite3SelectDup(), can be called. sqlite3SelectDup() is sometimes 98293758c8dSdanielk1977 ** called with a NULL argument. 98393758c8dSdanielk1977 */ 9846a67fe8eSdanielk1977 #if !defined(SQLITE_OMIT_VIEW) || !defined(SQLITE_OMIT_TRIGGER) \ 9856a67fe8eSdanielk1977 || !defined(SQLITE_OMIT_SUBQUERY) 9866ab3a2ecSdanielk1977 SrcList *sqlite3SrcListDup(sqlite3 *db, SrcList *p, int flags){ 987ad3cab52Sdrh SrcList *pNew; 988ad3cab52Sdrh int i; 989113088ecSdrh int nByte; 990ad3cab52Sdrh if( p==0 ) return 0; 991113088ecSdrh nByte = sizeof(*p) + (p->nSrc>0 ? sizeof(p->a[0]) * (p->nSrc-1) : 0); 99217435752Sdrh pNew = sqlite3DbMallocRaw(db, nByte ); 993ad3cab52Sdrh if( pNew==0 ) return 0; 9944305d103Sdrh pNew->nSrc = pNew->nAlloc = p->nSrc; 995ad3cab52Sdrh for(i=0; i<p->nSrc; i++){ 9964efc4754Sdrh struct SrcList_item *pNewItem = &pNew->a[i]; 9974efc4754Sdrh struct SrcList_item *pOldItem = &p->a[i]; 998ed8a3bb1Sdrh Table *pTab; 99941fb5cd1Sdan pNewItem->pSchema = pOldItem->pSchema; 100017435752Sdrh pNewItem->zDatabase = sqlite3DbStrDup(db, pOldItem->zDatabase); 100117435752Sdrh pNewItem->zName = sqlite3DbStrDup(db, pOldItem->zName); 100217435752Sdrh pNewItem->zAlias = sqlite3DbStrDup(db, pOldItem->zAlias); 10034efc4754Sdrh pNewItem->jointype = pOldItem->jointype; 10044efc4754Sdrh pNewItem->iCursor = pOldItem->iCursor; 10055b6a9ed4Sdrh pNewItem->addrFillSub = pOldItem->addrFillSub; 10065b6a9ed4Sdrh pNewItem->regReturn = pOldItem->regReturn; 1007da79cf0cSdan pNewItem->isCorrelated = pOldItem->isCorrelated; 100821172c4cSdrh pNewItem->viaCoroutine = pOldItem->viaCoroutine; 1009f43fe6e9Sdan pNewItem->isRecursive = pOldItem->isRecursive; 101085574e31Sdanielk1977 pNewItem->zIndex = sqlite3DbStrDup(db, pOldItem->zIndex); 101185574e31Sdanielk1977 pNewItem->notIndexed = pOldItem->notIndexed; 101285574e31Sdanielk1977 pNewItem->pIndex = pOldItem->pIndex; 1013ed8a3bb1Sdrh pTab = pNewItem->pTab = pOldItem->pTab; 1014ed8a3bb1Sdrh if( pTab ){ 1015ed8a3bb1Sdrh pTab->nRef++; 1016a1cb183dSdanielk1977 } 10176ab3a2ecSdanielk1977 pNewItem->pSelect = sqlite3SelectDup(db, pOldItem->pSelect, flags); 10186ab3a2ecSdanielk1977 pNewItem->pOn = sqlite3ExprDup(db, pOldItem->pOn, flags); 101917435752Sdrh pNewItem->pUsing = sqlite3IdListDup(db, pOldItem->pUsing); 10206c18b6e0Sdanielk1977 pNewItem->colUsed = pOldItem->colUsed; 1021ad3cab52Sdrh } 1022ad3cab52Sdrh return pNew; 1023ad3cab52Sdrh } 102417435752Sdrh IdList *sqlite3IdListDup(sqlite3 *db, IdList *p){ 1025ff78bd2fSdrh IdList *pNew; 1026ff78bd2fSdrh int i; 1027ff78bd2fSdrh if( p==0 ) return 0; 102817435752Sdrh pNew = sqlite3DbMallocRaw(db, sizeof(*pNew) ); 1029ff78bd2fSdrh if( pNew==0 ) return 0; 10306c535158Sdrh pNew->nId = p->nId; 103117435752Sdrh pNew->a = sqlite3DbMallocRaw(db, p->nId*sizeof(p->a[0]) ); 1032d5d56523Sdanielk1977 if( pNew->a==0 ){ 1033633e6d57Sdrh sqlite3DbFree(db, pNew); 1034d5d56523Sdanielk1977 return 0; 1035d5d56523Sdanielk1977 } 10366c535158Sdrh /* Note that because the size of the allocation for p->a[] is not 10376c535158Sdrh ** necessarily a power of two, sqlite3IdListAppend() may not be called 10386c535158Sdrh ** on the duplicate created by this function. */ 1039ff78bd2fSdrh for(i=0; i<p->nId; i++){ 10404efc4754Sdrh struct IdList_item *pNewItem = &pNew->a[i]; 10414efc4754Sdrh struct IdList_item *pOldItem = &p->a[i]; 104217435752Sdrh pNewItem->zName = sqlite3DbStrDup(db, pOldItem->zName); 10434efc4754Sdrh pNewItem->idx = pOldItem->idx; 1044ff78bd2fSdrh } 1045ff78bd2fSdrh return pNew; 1046ff78bd2fSdrh } 10476ab3a2ecSdanielk1977 Select *sqlite3SelectDup(sqlite3 *db, Select *p, int flags){ 104823b1b372Sdrh Select *pNew, *pPrior; 1049ff78bd2fSdrh if( p==0 ) return 0; 105017435752Sdrh pNew = sqlite3DbMallocRaw(db, sizeof(*p) ); 1051ff78bd2fSdrh if( pNew==0 ) return 0; 1052b7916a78Sdrh pNew->pEList = sqlite3ExprListDup(db, p->pEList, flags); 10536ab3a2ecSdanielk1977 pNew->pSrc = sqlite3SrcListDup(db, p->pSrc, flags); 10546ab3a2ecSdanielk1977 pNew->pWhere = sqlite3ExprDup(db, p->pWhere, flags); 10556ab3a2ecSdanielk1977 pNew->pGroupBy = sqlite3ExprListDup(db, p->pGroupBy, flags); 10566ab3a2ecSdanielk1977 pNew->pHaving = sqlite3ExprDup(db, p->pHaving, flags); 10576ab3a2ecSdanielk1977 pNew->pOrderBy = sqlite3ExprListDup(db, p->pOrderBy, flags); 1058ff78bd2fSdrh pNew->op = p->op; 105923b1b372Sdrh pNew->pPrior = pPrior = sqlite3SelectDup(db, p->pPrior, flags); 106023b1b372Sdrh if( pPrior ) pPrior->pNext = pNew; 106123b1b372Sdrh pNew->pNext = 0; 10626ab3a2ecSdanielk1977 pNew->pLimit = sqlite3ExprDup(db, p->pLimit, flags); 10636ab3a2ecSdanielk1977 pNew->pOffset = sqlite3ExprDup(db, p->pOffset, flags); 106492b01d53Sdrh pNew->iLimit = 0; 106592b01d53Sdrh pNew->iOffset = 0; 10667d10d5a6Sdrh pNew->selFlags = p->selFlags & ~SF_UsesEphemeral; 1067b9bb7c18Sdrh pNew->addrOpenEphm[0] = -1; 1068b9bb7c18Sdrh pNew->addrOpenEphm[1] = -1; 1069b9bb7c18Sdrh pNew->addrOpenEphm[2] = -1; 1070ec2da854Sdrh pNew->nSelectRow = p->nSelectRow; 10714e9119d9Sdan pNew->pWith = withDup(db, p->pWith); 1072ff78bd2fSdrh return pNew; 1073ff78bd2fSdrh } 107493758c8dSdanielk1977 #else 10756ab3a2ecSdanielk1977 Select *sqlite3SelectDup(sqlite3 *db, Select *p, int flags){ 107693758c8dSdanielk1977 assert( p==0 ); 107793758c8dSdanielk1977 return 0; 107893758c8dSdanielk1977 } 107993758c8dSdanielk1977 #endif 1080ff78bd2fSdrh 1081ff78bd2fSdrh 1082ff78bd2fSdrh /* 1083a76b5dfcSdrh ** Add a new element to the end of an expression list. If pList is 1084a76b5dfcSdrh ** initially NULL, then create a new expression list. 1085b7916a78Sdrh ** 1086b7916a78Sdrh ** If a memory allocation error occurs, the entire list is freed and 1087b7916a78Sdrh ** NULL is returned. If non-NULL is returned, then it is guaranteed 1088b7916a78Sdrh ** that the new entry was successfully appended. 1089a76b5dfcSdrh */ 109017435752Sdrh ExprList *sqlite3ExprListAppend( 109117435752Sdrh Parse *pParse, /* Parsing context */ 109217435752Sdrh ExprList *pList, /* List to which to append. Might be NULL */ 1093b7916a78Sdrh Expr *pExpr /* Expression to be appended. Might be NULL */ 109417435752Sdrh ){ 109517435752Sdrh sqlite3 *db = pParse->db; 1096a76b5dfcSdrh if( pList==0 ){ 109717435752Sdrh pList = sqlite3DbMallocZero(db, sizeof(ExprList) ); 1098a76b5dfcSdrh if( pList==0 ){ 1099d5d56523Sdanielk1977 goto no_mem; 1100a76b5dfcSdrh } 1101d872bb18Sdrh pList->a = sqlite3DbMallocRaw(db, sizeof(pList->a[0])); 1102d872bb18Sdrh if( pList->a==0 ) goto no_mem; 1103d872bb18Sdrh }else if( (pList->nExpr & (pList->nExpr-1))==0 ){ 1104d5d56523Sdanielk1977 struct ExprList_item *a; 1105d872bb18Sdrh assert( pList->nExpr>0 ); 1106d872bb18Sdrh a = sqlite3DbRealloc(db, pList->a, pList->nExpr*2*sizeof(pList->a[0])); 1107d5d56523Sdanielk1977 if( a==0 ){ 1108d5d56523Sdanielk1977 goto no_mem; 1109a76b5dfcSdrh } 1110d5d56523Sdanielk1977 pList->a = a; 1111a76b5dfcSdrh } 11124efc4754Sdrh assert( pList->a!=0 ); 1113b7916a78Sdrh if( 1 ){ 11144efc4754Sdrh struct ExprList_item *pItem = &pList->a[pList->nExpr++]; 11154efc4754Sdrh memset(pItem, 0, sizeof(*pItem)); 1116e94ddc9eSdanielk1977 pItem->pExpr = pExpr; 1117a76b5dfcSdrh } 1118a76b5dfcSdrh return pList; 1119d5d56523Sdanielk1977 1120d5d56523Sdanielk1977 no_mem: 1121d5d56523Sdanielk1977 /* Avoid leaking memory if malloc has failed. */ 1122633e6d57Sdrh sqlite3ExprDelete(db, pExpr); 1123633e6d57Sdrh sqlite3ExprListDelete(db, pList); 1124d5d56523Sdanielk1977 return 0; 1125a76b5dfcSdrh } 1126a76b5dfcSdrh 1127a76b5dfcSdrh /* 1128b7916a78Sdrh ** Set the ExprList.a[].zName element of the most recently added item 1129b7916a78Sdrh ** on the expression list. 1130b7916a78Sdrh ** 1131b7916a78Sdrh ** pList might be NULL following an OOM error. But pName should never be 1132b7916a78Sdrh ** NULL. If a memory allocation fails, the pParse->db->mallocFailed flag 1133b7916a78Sdrh ** is set. 1134b7916a78Sdrh */ 1135b7916a78Sdrh void sqlite3ExprListSetName( 1136b7916a78Sdrh Parse *pParse, /* Parsing context */ 1137b7916a78Sdrh ExprList *pList, /* List to which to add the span. */ 1138b7916a78Sdrh Token *pName, /* Name to be added */ 1139b7916a78Sdrh int dequote /* True to cause the name to be dequoted */ 1140b7916a78Sdrh ){ 1141b7916a78Sdrh assert( pList!=0 || pParse->db->mallocFailed!=0 ); 1142b7916a78Sdrh if( pList ){ 1143b7916a78Sdrh struct ExprList_item *pItem; 1144b7916a78Sdrh assert( pList->nExpr>0 ); 1145b7916a78Sdrh pItem = &pList->a[pList->nExpr-1]; 1146b7916a78Sdrh assert( pItem->zName==0 ); 1147b7916a78Sdrh pItem->zName = sqlite3DbStrNDup(pParse->db, pName->z, pName->n); 1148b7916a78Sdrh if( dequote && pItem->zName ) sqlite3Dequote(pItem->zName); 1149b7916a78Sdrh } 1150b7916a78Sdrh } 1151b7916a78Sdrh 1152b7916a78Sdrh /* 1153b7916a78Sdrh ** Set the ExprList.a[].zSpan element of the most recently added item 1154b7916a78Sdrh ** on the expression list. 1155b7916a78Sdrh ** 1156b7916a78Sdrh ** pList might be NULL following an OOM error. But pSpan should never be 1157b7916a78Sdrh ** NULL. If a memory allocation fails, the pParse->db->mallocFailed flag 1158b7916a78Sdrh ** is set. 1159b7916a78Sdrh */ 1160b7916a78Sdrh void sqlite3ExprListSetSpan( 1161b7916a78Sdrh Parse *pParse, /* Parsing context */ 1162b7916a78Sdrh ExprList *pList, /* List to which to add the span. */ 1163b7916a78Sdrh ExprSpan *pSpan /* The span to be added */ 1164b7916a78Sdrh ){ 1165b7916a78Sdrh sqlite3 *db = pParse->db; 1166b7916a78Sdrh assert( pList!=0 || db->mallocFailed!=0 ); 1167b7916a78Sdrh if( pList ){ 1168b7916a78Sdrh struct ExprList_item *pItem = &pList->a[pList->nExpr-1]; 1169b7916a78Sdrh assert( pList->nExpr>0 ); 1170b7916a78Sdrh assert( db->mallocFailed || pItem->pExpr==pSpan->pExpr ); 1171b7916a78Sdrh sqlite3DbFree(db, pItem->zSpan); 1172b7916a78Sdrh pItem->zSpan = sqlite3DbStrNDup(db, (char*)pSpan->zStart, 1173cf697396Sshane (int)(pSpan->zEnd - pSpan->zStart)); 1174b7916a78Sdrh } 1175b7916a78Sdrh } 1176b7916a78Sdrh 1177b7916a78Sdrh /* 11787a15a4beSdanielk1977 ** If the expression list pEList contains more than iLimit elements, 11797a15a4beSdanielk1977 ** leave an error message in pParse. 11807a15a4beSdanielk1977 */ 11817a15a4beSdanielk1977 void sqlite3ExprListCheckLength( 11827a15a4beSdanielk1977 Parse *pParse, 11837a15a4beSdanielk1977 ExprList *pEList, 11847a15a4beSdanielk1977 const char *zObject 11857a15a4beSdanielk1977 ){ 1186b1a6c3c1Sdrh int mx = pParse->db->aLimit[SQLITE_LIMIT_COLUMN]; 1187c5499befSdrh testcase( pEList && pEList->nExpr==mx ); 1188c5499befSdrh testcase( pEList && pEList->nExpr==mx+1 ); 1189b1a6c3c1Sdrh if( pEList && pEList->nExpr>mx ){ 11907a15a4beSdanielk1977 sqlite3ErrorMsg(pParse, "too many columns in %s", zObject); 11917a15a4beSdanielk1977 } 11927a15a4beSdanielk1977 } 11937a15a4beSdanielk1977 11947a15a4beSdanielk1977 /* 1195a76b5dfcSdrh ** Delete an entire expression list. 1196a76b5dfcSdrh */ 1197633e6d57Sdrh void sqlite3ExprListDelete(sqlite3 *db, ExprList *pList){ 1198a76b5dfcSdrh int i; 1199be5c89acSdrh struct ExprList_item *pItem; 1200a76b5dfcSdrh if( pList==0 ) return; 1201d872bb18Sdrh assert( pList->a!=0 || pList->nExpr==0 ); 1202be5c89acSdrh for(pItem=pList->a, i=0; i<pList->nExpr; i++, pItem++){ 1203633e6d57Sdrh sqlite3ExprDelete(db, pItem->pExpr); 1204633e6d57Sdrh sqlite3DbFree(db, pItem->zName); 1205b7916a78Sdrh sqlite3DbFree(db, pItem->zSpan); 1206a76b5dfcSdrh } 1207633e6d57Sdrh sqlite3DbFree(db, pList->a); 1208633e6d57Sdrh sqlite3DbFree(db, pList); 1209a76b5dfcSdrh } 1210a76b5dfcSdrh 1211a76b5dfcSdrh /* 12127d10d5a6Sdrh ** These routines are Walker callbacks. Walker.u.pi is a pointer 12137d10d5a6Sdrh ** to an integer. These routines are checking an expression to see 12147d10d5a6Sdrh ** if it is a constant. Set *Walker.u.pi to 0 if the expression is 12157d10d5a6Sdrh ** not constant. 121673b211abSdrh ** 12177d10d5a6Sdrh ** These callback routines are used to implement the following: 1218626a879aSdrh ** 12197d10d5a6Sdrh ** sqlite3ExprIsConstant() 12207d10d5a6Sdrh ** sqlite3ExprIsConstantNotJoin() 12217d10d5a6Sdrh ** sqlite3ExprIsConstantOrFunction() 122287abf5c0Sdrh ** 1223626a879aSdrh */ 12247d10d5a6Sdrh static int exprNodeIsConstant(Walker *pWalker, Expr *pExpr){ 1225626a879aSdrh 12267d10d5a6Sdrh /* If pWalker->u.i is 3 then any term of the expression that comes from 12270a168377Sdrh ** the ON or USING clauses of a join disqualifies the expression 12280a168377Sdrh ** from being considered constant. */ 1229c5cd1249Sdrh if( pWalker->u.i==3 && ExprHasProperty(pExpr, EP_FromJoin) ){ 12307d10d5a6Sdrh pWalker->u.i = 0; 12317d10d5a6Sdrh return WRC_Abort; 12320a168377Sdrh } 12330a168377Sdrh 1234626a879aSdrh switch( pExpr->op ){ 1235eb55bd2fSdrh /* Consider functions to be constant if all their arguments are constant 1236b1fba286Sdrh ** and either pWalker->u.i==2 or the function as the SQLITE_FUNC_CONST 1237b1fba286Sdrh ** flag. */ 1238eb55bd2fSdrh case TK_FUNCTION: 1239b1fba286Sdrh if( pWalker->u.i==2 || ExprHasProperty(pExpr,EP_Constant) ){ 1240b1fba286Sdrh return WRC_Continue; 1241b1fba286Sdrh } 1242eb55bd2fSdrh /* Fall through */ 1243626a879aSdrh case TK_ID: 1244626a879aSdrh case TK_COLUMN: 1245626a879aSdrh case TK_AGG_FUNCTION: 124613449892Sdrh case TK_AGG_COLUMN: 1247c5499befSdrh testcase( pExpr->op==TK_ID ); 1248c5499befSdrh testcase( pExpr->op==TK_COLUMN ); 1249c5499befSdrh testcase( pExpr->op==TK_AGG_FUNCTION ); 1250c5499befSdrh testcase( pExpr->op==TK_AGG_COLUMN ); 12517d10d5a6Sdrh pWalker->u.i = 0; 12527d10d5a6Sdrh return WRC_Abort; 1253626a879aSdrh default: 1254b74b1017Sdrh testcase( pExpr->op==TK_SELECT ); /* selectNodeIsConstant will disallow */ 1255b74b1017Sdrh testcase( pExpr->op==TK_EXISTS ); /* selectNodeIsConstant will disallow */ 12567d10d5a6Sdrh return WRC_Continue; 1257626a879aSdrh } 1258626a879aSdrh } 125962c14b34Sdanielk1977 static int selectNodeIsConstant(Walker *pWalker, Select *NotUsed){ 126062c14b34Sdanielk1977 UNUSED_PARAMETER(NotUsed); 12617d10d5a6Sdrh pWalker->u.i = 0; 12627d10d5a6Sdrh return WRC_Abort; 12637d10d5a6Sdrh } 12647d10d5a6Sdrh static int exprIsConst(Expr *p, int initFlag){ 12657d10d5a6Sdrh Walker w; 1266aa87f9a6Sdrh memset(&w, 0, sizeof(w)); 12677d10d5a6Sdrh w.u.i = initFlag; 12687d10d5a6Sdrh w.xExprCallback = exprNodeIsConstant; 12697d10d5a6Sdrh w.xSelectCallback = selectNodeIsConstant; 12707d10d5a6Sdrh sqlite3WalkExpr(&w, p); 12717d10d5a6Sdrh return w.u.i; 12727d10d5a6Sdrh } 1273626a879aSdrh 1274626a879aSdrh /* 1275fef5208cSdrh ** Walk an expression tree. Return 1 if the expression is constant 1276eb55bd2fSdrh ** and 0 if it involves variables or function calls. 12772398937bSdrh ** 12782398937bSdrh ** For the purposes of this function, a double-quoted string (ex: "abc") 12792398937bSdrh ** is considered a variable but a single-quoted string (ex: 'abc') is 12802398937bSdrh ** a constant. 1281fef5208cSdrh */ 12824adee20fSdanielk1977 int sqlite3ExprIsConstant(Expr *p){ 12837d10d5a6Sdrh return exprIsConst(p, 1); 1284fef5208cSdrh } 1285fef5208cSdrh 1286fef5208cSdrh /* 1287eb55bd2fSdrh ** Walk an expression tree. Return 1 if the expression is constant 12880a168377Sdrh ** that does no originate from the ON or USING clauses of a join. 12890a168377Sdrh ** Return 0 if it involves variables or function calls or terms from 12900a168377Sdrh ** an ON or USING clause. 12910a168377Sdrh */ 12920a168377Sdrh int sqlite3ExprIsConstantNotJoin(Expr *p){ 12937d10d5a6Sdrh return exprIsConst(p, 3); 12940a168377Sdrh } 12950a168377Sdrh 12960a168377Sdrh /* 12970a168377Sdrh ** Walk an expression tree. Return 1 if the expression is constant 1298eb55bd2fSdrh ** or a function call with constant arguments. Return and 0 if there 1299eb55bd2fSdrh ** are any variables. 1300eb55bd2fSdrh ** 1301eb55bd2fSdrh ** For the purposes of this function, a double-quoted string (ex: "abc") 1302eb55bd2fSdrh ** is considered a variable but a single-quoted string (ex: 'abc') is 1303eb55bd2fSdrh ** a constant. 1304eb55bd2fSdrh */ 1305eb55bd2fSdrh int sqlite3ExprIsConstantOrFunction(Expr *p){ 13067d10d5a6Sdrh return exprIsConst(p, 2); 1307eb55bd2fSdrh } 1308eb55bd2fSdrh 1309eb55bd2fSdrh /* 131073b211abSdrh ** If the expression p codes a constant integer that is small enough 1311202b2df7Sdrh ** to fit in a 32-bit integer, return 1 and put the value of the integer 1312202b2df7Sdrh ** in *pValue. If the expression is not an integer or if it is too big 1313202b2df7Sdrh ** to fit in a signed 32-bit integer, return 0 and leave *pValue unchanged. 1314e4de1febSdrh */ 13154adee20fSdanielk1977 int sqlite3ExprIsInteger(Expr *p, int *pValue){ 131692b01d53Sdrh int rc = 0; 1317cd92e84dSdrh 1318cd92e84dSdrh /* If an expression is an integer literal that fits in a signed 32-bit 1319cd92e84dSdrh ** integer, then the EP_IntValue flag will have already been set */ 1320cd92e84dSdrh assert( p->op!=TK_INTEGER || (p->flags & EP_IntValue)!=0 1321cd92e84dSdrh || sqlite3GetInt32(p->u.zToken, &rc)==0 ); 1322cd92e84dSdrh 132392b01d53Sdrh if( p->flags & EP_IntValue ){ 132433e619fcSdrh *pValue = p->u.iValue; 1325e4de1febSdrh return 1; 1326e4de1febSdrh } 132792b01d53Sdrh switch( p->op ){ 13284b59ab5eSdrh case TK_UPLUS: { 132992b01d53Sdrh rc = sqlite3ExprIsInteger(p->pLeft, pValue); 1330f6e369a1Sdrh break; 13314b59ab5eSdrh } 1332e4de1febSdrh case TK_UMINUS: { 1333e4de1febSdrh int v; 13344adee20fSdanielk1977 if( sqlite3ExprIsInteger(p->pLeft, &v) ){ 1335f6418891Smistachkin assert( v!=(-2147483647-1) ); 1336e4de1febSdrh *pValue = -v; 133792b01d53Sdrh rc = 1; 1338e4de1febSdrh } 1339e4de1febSdrh break; 1340e4de1febSdrh } 1341e4de1febSdrh default: break; 1342e4de1febSdrh } 134392b01d53Sdrh return rc; 1344e4de1febSdrh } 1345e4de1febSdrh 1346e4de1febSdrh /* 1347039fc32eSdrh ** Return FALSE if there is no chance that the expression can be NULL. 1348039fc32eSdrh ** 1349039fc32eSdrh ** If the expression might be NULL or if the expression is too complex 1350039fc32eSdrh ** to tell return TRUE. 1351039fc32eSdrh ** 1352039fc32eSdrh ** This routine is used as an optimization, to skip OP_IsNull opcodes 1353039fc32eSdrh ** when we know that a value cannot be NULL. Hence, a false positive 1354039fc32eSdrh ** (returning TRUE when in fact the expression can never be NULL) might 1355039fc32eSdrh ** be a small performance hit but is otherwise harmless. On the other 1356039fc32eSdrh ** hand, a false negative (returning FALSE when the result could be NULL) 1357039fc32eSdrh ** will likely result in an incorrect answer. So when in doubt, return 1358039fc32eSdrh ** TRUE. 1359039fc32eSdrh */ 1360039fc32eSdrh int sqlite3ExprCanBeNull(const Expr *p){ 1361039fc32eSdrh u8 op; 1362cd7f457eSdrh while( p->op==TK_UPLUS || p->op==TK_UMINUS ){ p = p->pLeft; } 1363039fc32eSdrh op = p->op; 1364039fc32eSdrh if( op==TK_REGISTER ) op = p->op2; 1365039fc32eSdrh switch( op ){ 1366039fc32eSdrh case TK_INTEGER: 1367039fc32eSdrh case TK_STRING: 1368039fc32eSdrh case TK_FLOAT: 1369039fc32eSdrh case TK_BLOB: 1370039fc32eSdrh return 0; 1371039fc32eSdrh default: 1372039fc32eSdrh return 1; 1373039fc32eSdrh } 1374039fc32eSdrh } 1375039fc32eSdrh 1376039fc32eSdrh /* 1377039fc32eSdrh ** Return TRUE if the given expression is a constant which would be 1378039fc32eSdrh ** unchanged by OP_Affinity with the affinity given in the second 1379039fc32eSdrh ** argument. 1380039fc32eSdrh ** 1381039fc32eSdrh ** This routine is used to determine if the OP_Affinity operation 1382039fc32eSdrh ** can be omitted. When in doubt return FALSE. A false negative 1383039fc32eSdrh ** is harmless. A false positive, however, can result in the wrong 1384039fc32eSdrh ** answer. 1385039fc32eSdrh */ 1386039fc32eSdrh int sqlite3ExprNeedsNoAffinityChange(const Expr *p, char aff){ 1387039fc32eSdrh u8 op; 1388039fc32eSdrh if( aff==SQLITE_AFF_NONE ) return 1; 1389cd7f457eSdrh while( p->op==TK_UPLUS || p->op==TK_UMINUS ){ p = p->pLeft; } 1390039fc32eSdrh op = p->op; 1391039fc32eSdrh if( op==TK_REGISTER ) op = p->op2; 1392039fc32eSdrh switch( op ){ 1393039fc32eSdrh case TK_INTEGER: { 1394039fc32eSdrh return aff==SQLITE_AFF_INTEGER || aff==SQLITE_AFF_NUMERIC; 1395039fc32eSdrh } 1396039fc32eSdrh case TK_FLOAT: { 1397039fc32eSdrh return aff==SQLITE_AFF_REAL || aff==SQLITE_AFF_NUMERIC; 1398039fc32eSdrh } 1399039fc32eSdrh case TK_STRING: { 1400039fc32eSdrh return aff==SQLITE_AFF_TEXT; 1401039fc32eSdrh } 1402039fc32eSdrh case TK_BLOB: { 1403039fc32eSdrh return 1; 1404039fc32eSdrh } 14052f2855b6Sdrh case TK_COLUMN: { 140688376ca7Sdrh assert( p->iTable>=0 ); /* p cannot be part of a CHECK constraint */ 140788376ca7Sdrh return p->iColumn<0 14082f2855b6Sdrh && (aff==SQLITE_AFF_INTEGER || aff==SQLITE_AFF_NUMERIC); 14092f2855b6Sdrh } 1410039fc32eSdrh default: { 1411039fc32eSdrh return 0; 1412039fc32eSdrh } 1413039fc32eSdrh } 1414039fc32eSdrh } 1415039fc32eSdrh 1416039fc32eSdrh /* 1417c4a3c779Sdrh ** Return TRUE if the given string is a row-id column name. 1418c4a3c779Sdrh */ 14194adee20fSdanielk1977 int sqlite3IsRowid(const char *z){ 14204adee20fSdanielk1977 if( sqlite3StrICmp(z, "_ROWID_")==0 ) return 1; 14214adee20fSdanielk1977 if( sqlite3StrICmp(z, "ROWID")==0 ) return 1; 14224adee20fSdanielk1977 if( sqlite3StrICmp(z, "OID")==0 ) return 1; 1423c4a3c779Sdrh return 0; 1424c4a3c779Sdrh } 1425c4a3c779Sdrh 14269a96b668Sdanielk1977 /* 1427b74b1017Sdrh ** Return true if we are able to the IN operator optimization on a 1428b74b1017Sdrh ** query of the form 1429b287f4b6Sdrh ** 1430b74b1017Sdrh ** x IN (SELECT ...) 1431b287f4b6Sdrh ** 1432b74b1017Sdrh ** Where the SELECT... clause is as specified by the parameter to this 1433b74b1017Sdrh ** routine. 1434b74b1017Sdrh ** 1435b74b1017Sdrh ** The Select object passed in has already been preprocessed and no 1436b74b1017Sdrh ** errors have been found. 1437b287f4b6Sdrh */ 1438b287f4b6Sdrh #ifndef SQLITE_OMIT_SUBQUERY 1439b287f4b6Sdrh static int isCandidateForInOpt(Select *p){ 1440b287f4b6Sdrh SrcList *pSrc; 1441b287f4b6Sdrh ExprList *pEList; 1442b287f4b6Sdrh Table *pTab; 1443b287f4b6Sdrh if( p==0 ) return 0; /* right-hand side of IN is SELECT */ 1444b287f4b6Sdrh if( p->pPrior ) return 0; /* Not a compound SELECT */ 14457d10d5a6Sdrh if( p->selFlags & (SF_Distinct|SF_Aggregate) ){ 1446b74b1017Sdrh testcase( (p->selFlags & (SF_Distinct|SF_Aggregate))==SF_Distinct ); 1447b74b1017Sdrh testcase( (p->selFlags & (SF_Distinct|SF_Aggregate))==SF_Aggregate ); 14487d10d5a6Sdrh return 0; /* No DISTINCT keyword and no aggregate functions */ 14497d10d5a6Sdrh } 1450b74b1017Sdrh assert( p->pGroupBy==0 ); /* Has no GROUP BY clause */ 1451b287f4b6Sdrh if( p->pLimit ) return 0; /* Has no LIMIT clause */ 1452b74b1017Sdrh assert( p->pOffset==0 ); /* No LIMIT means no OFFSET */ 1453b287f4b6Sdrh if( p->pWhere ) return 0; /* Has no WHERE clause */ 1454b287f4b6Sdrh pSrc = p->pSrc; 1455d1fa7bcaSdrh assert( pSrc!=0 ); 1456d1fa7bcaSdrh if( pSrc->nSrc!=1 ) return 0; /* Single term in FROM clause */ 1457b74b1017Sdrh if( pSrc->a[0].pSelect ) return 0; /* FROM is not a subquery or view */ 1458b287f4b6Sdrh pTab = pSrc->a[0].pTab; 1459b74b1017Sdrh if( NEVER(pTab==0) ) return 0; 1460b74b1017Sdrh assert( pTab->pSelect==0 ); /* FROM clause is not a view */ 1461b287f4b6Sdrh if( IsVirtual(pTab) ) return 0; /* FROM clause not a virtual table */ 1462b287f4b6Sdrh pEList = p->pEList; 1463b287f4b6Sdrh if( pEList->nExpr!=1 ) return 0; /* One column in the result set */ 1464b287f4b6Sdrh if( pEList->a[0].pExpr->op!=TK_COLUMN ) return 0; /* Result is a column */ 1465b287f4b6Sdrh return 1; 1466b287f4b6Sdrh } 1467b287f4b6Sdrh #endif /* SQLITE_OMIT_SUBQUERY */ 1468b287f4b6Sdrh 1469b287f4b6Sdrh /* 14701d8cb21fSdan ** Code an OP_Once instruction and allocate space for its flag. Return the 14711d8cb21fSdan ** address of the new instruction. 14721d8cb21fSdan */ 14731d8cb21fSdan int sqlite3CodeOnce(Parse *pParse){ 14741d8cb21fSdan Vdbe *v = sqlite3GetVdbe(pParse); /* Virtual machine being coded */ 14757d176105Sdrh return sqlite3VdbeAddOp1(v, OP_Once, pParse->nOnce++); 14761d8cb21fSdan } 14771d8cb21fSdan 14781d8cb21fSdan /* 14799a96b668Sdanielk1977 ** This function is used by the implementation of the IN (...) operator. 1480d4305ca6Sdrh ** The pX parameter is the expression on the RHS of the IN operator, which 1481d4305ca6Sdrh ** might be either a list of expressions or a subquery. 14829a96b668Sdanielk1977 ** 1483d4305ca6Sdrh ** The job of this routine is to find or create a b-tree object that can 1484d4305ca6Sdrh ** be used either to test for membership in the RHS set or to iterate through 1485d4305ca6Sdrh ** all members of the RHS set, skipping duplicates. 1486d4305ca6Sdrh ** 1487d4305ca6Sdrh ** A cursor is opened on the b-tree object that the RHS of the IN operator 1488d4305ca6Sdrh ** and pX->iTable is set to the index of that cursor. 1489d4305ca6Sdrh ** 1490b74b1017Sdrh ** The returned value of this function indicates the b-tree type, as follows: 14919a96b668Sdanielk1977 ** 14929a96b668Sdanielk1977 ** IN_INDEX_ROWID - The cursor was opened on a database table. 14931ccce449Sdrh ** IN_INDEX_INDEX_ASC - The cursor was opened on an ascending index. 14941ccce449Sdrh ** IN_INDEX_INDEX_DESC - The cursor was opened on a descending index. 14959a96b668Sdanielk1977 ** IN_INDEX_EPH - The cursor was opened on a specially created and 14969a96b668Sdanielk1977 ** populated epheremal table. 14979a96b668Sdanielk1977 ** 1498d4305ca6Sdrh ** An existing b-tree might be used if the RHS expression pX is a simple 1499d4305ca6Sdrh ** subquery such as: 15009a96b668Sdanielk1977 ** 15019a96b668Sdanielk1977 ** SELECT <column> FROM <table> 15029a96b668Sdanielk1977 ** 1503d4305ca6Sdrh ** If the RHS of the IN operator is a list or a more complex subquery, then 1504d4305ca6Sdrh ** an ephemeral table might need to be generated from the RHS and then 1505d4305ca6Sdrh ** pX->iTable made to point to the ephermeral table instead of an 1506d4305ca6Sdrh ** existing table. 1507d4305ca6Sdrh ** 1508b74b1017Sdrh ** If the prNotFound parameter is 0, then the b-tree will be used to iterate 15099a96b668Sdanielk1977 ** through the set members, skipping any duplicates. In this case an 15109a96b668Sdanielk1977 ** epheremal table must be used unless the selected <column> is guaranteed 15119a96b668Sdanielk1977 ** to be unique - either because it is an INTEGER PRIMARY KEY or it 1512b74b1017Sdrh ** has a UNIQUE constraint or UNIQUE index. 15130cdc022eSdanielk1977 ** 1514b74b1017Sdrh ** If the prNotFound parameter is not 0, then the b-tree will be used 15150cdc022eSdanielk1977 ** for fast set membership tests. In this case an epheremal table must 15160cdc022eSdanielk1977 ** be used unless <column> is an INTEGER PRIMARY KEY or an index can 15170cdc022eSdanielk1977 ** be found with <column> as its left-most column. 15180cdc022eSdanielk1977 ** 1519b74b1017Sdrh ** When the b-tree is being used for membership tests, the calling function 15200cdc022eSdanielk1977 ** needs to know whether or not the structure contains an SQL NULL 15210cdc022eSdanielk1977 ** value in order to correctly evaluate expressions like "X IN (Y, Z)". 1522e3365e6cSdrh ** If there is any chance that the (...) might contain a NULL value at 15230cdc022eSdanielk1977 ** runtime, then a register is allocated and the register number written 1524e3365e6cSdrh ** to *prNotFound. If there is no chance that the (...) contains a 15250cdc022eSdanielk1977 ** NULL value, then *prNotFound is left unchanged. 15260cdc022eSdanielk1977 ** 15270cdc022eSdanielk1977 ** If a register is allocated and its location stored in *prNotFound, then 1528e3365e6cSdrh ** its initial value is NULL. If the (...) does not remain constant 1529e3365e6cSdrh ** for the duration of the query (i.e. the SELECT within the (...) 1530b74b1017Sdrh ** is a correlated subquery) then the value of the allocated register is 1531e3365e6cSdrh ** reset to NULL each time the subquery is rerun. This allows the 1532b74b1017Sdrh ** caller to use vdbe code equivalent to the following: 15330cdc022eSdanielk1977 ** 15340cdc022eSdanielk1977 ** if( register==NULL ){ 15350cdc022eSdanielk1977 ** has_null = <test if data structure contains null> 15360cdc022eSdanielk1977 ** register = 1 15370cdc022eSdanielk1977 ** } 15380cdc022eSdanielk1977 ** 15390cdc022eSdanielk1977 ** in order to avoid running the <test if data structure contains null> 15400cdc022eSdanielk1977 ** test more often than is necessary. 15419a96b668Sdanielk1977 */ 1542284f4acaSdanielk1977 #ifndef SQLITE_OMIT_SUBQUERY 15430cdc022eSdanielk1977 int sqlite3FindInIndex(Parse *pParse, Expr *pX, int *prNotFound){ 1544b74b1017Sdrh Select *p; /* SELECT to the right of IN operator */ 1545b74b1017Sdrh int eType = 0; /* Type of RHS table. IN_INDEX_* */ 1546b74b1017Sdrh int iTab = pParse->nTab++; /* Cursor of the RHS table */ 1547b74b1017Sdrh int mustBeUnique = (prNotFound==0); /* True if RHS must be unique */ 1548b8475df8Sdrh Vdbe *v = sqlite3GetVdbe(pParse); /* Virtual machine being coded */ 15499a96b668Sdanielk1977 15501450bc6eSdrh assert( pX->op==TK_IN ); 15511450bc6eSdrh 1552b74b1017Sdrh /* Check to see if an existing table or index can be used to 1553b74b1017Sdrh ** satisfy the query. This is preferable to generating a new 1554b74b1017Sdrh ** ephemeral table. 15559a96b668Sdanielk1977 */ 15566ab3a2ecSdanielk1977 p = (ExprHasProperty(pX, EP_xIsSelect) ? pX->x.pSelect : 0); 1557fd773cf9Sdrh if( ALWAYS(pParse->nErr==0) && isCandidateForInOpt(p) ){ 1558e1fb65a0Sdanielk1977 sqlite3 *db = pParse->db; /* Database connection */ 1559b07028f7Sdrh Table *pTab; /* Table <table>. */ 1560b07028f7Sdrh Expr *pExpr; /* Expression <column> */ 1561bbbdc83bSdrh i16 iCol; /* Index of column <column> */ 1562bbbdc83bSdrh i16 iDb; /* Database idx for pTab */ 1563e1fb65a0Sdanielk1977 1564b07028f7Sdrh assert( p ); /* Because of isCandidateForInOpt(p) */ 1565b07028f7Sdrh assert( p->pEList!=0 ); /* Because of isCandidateForInOpt(p) */ 1566b07028f7Sdrh assert( p->pEList->a[0].pExpr!=0 ); /* Because of isCandidateForInOpt(p) */ 1567b07028f7Sdrh assert( p->pSrc!=0 ); /* Because of isCandidateForInOpt(p) */ 1568b07028f7Sdrh pTab = p->pSrc->a[0].pTab; 1569b07028f7Sdrh pExpr = p->pEList->a[0].pExpr; 1570bbbdc83bSdrh iCol = (i16)pExpr->iColumn; 1571b07028f7Sdrh 1572b22f7c83Sdrh /* Code an OP_Transaction and OP_TableLock for <table>. */ 1573e1fb65a0Sdanielk1977 iDb = sqlite3SchemaToIndex(db, pTab->pSchema); 1574e1fb65a0Sdanielk1977 sqlite3CodeVerifySchema(pParse, iDb); 1575e1fb65a0Sdanielk1977 sqlite3TableLock(pParse, iDb, pTab->tnum, 0, pTab->zName); 15769a96b668Sdanielk1977 15779a96b668Sdanielk1977 /* This function is only called from two places. In both cases the vdbe 15789a96b668Sdanielk1977 ** has already been allocated. So assume sqlite3GetVdbe() is always 15799a96b668Sdanielk1977 ** successful here. 15809a96b668Sdanielk1977 */ 15819a96b668Sdanielk1977 assert(v); 15829a96b668Sdanielk1977 if( iCol<0 ){ 15837d176105Sdrh int iAddr = sqlite3CodeOnce(pParse); 15847d176105Sdrh VdbeCoverage(v); 15859a96b668Sdanielk1977 15869a96b668Sdanielk1977 sqlite3OpenTable(pParse, iTab, iDb, pTab, OP_OpenRead); 15879a96b668Sdanielk1977 eType = IN_INDEX_ROWID; 15889a96b668Sdanielk1977 15899a96b668Sdanielk1977 sqlite3VdbeJumpHere(v, iAddr); 15909a96b668Sdanielk1977 }else{ 1591e1fb65a0Sdanielk1977 Index *pIdx; /* Iterator variable */ 1592e1fb65a0Sdanielk1977 15939a96b668Sdanielk1977 /* The collation sequence used by the comparison. If an index is to 15949a96b668Sdanielk1977 ** be used in place of a temp-table, it must be ordered according 1595e1fb65a0Sdanielk1977 ** to this collation sequence. */ 15969a96b668Sdanielk1977 CollSeq *pReq = sqlite3BinaryCompareCollSeq(pParse, pX->pLeft, pExpr); 15979a96b668Sdanielk1977 15989a96b668Sdanielk1977 /* Check that the affinity that will be used to perform the 15999a96b668Sdanielk1977 ** comparison is the same as the affinity of the column. If 16009a96b668Sdanielk1977 ** it is not, it is not possible to use any index. 16019a96b668Sdanielk1977 */ 1602dbaee5e3Sdrh int affinity_ok = sqlite3IndexAffinityOk(pX, pTab->aCol[iCol].affinity); 16039a96b668Sdanielk1977 16049a96b668Sdanielk1977 for(pIdx=pTab->pIndex; pIdx && eType==0 && affinity_ok; pIdx=pIdx->pNext){ 16059a96b668Sdanielk1977 if( (pIdx->aiColumn[0]==iCol) 1606b74b1017Sdrh && sqlite3FindCollSeq(db, ENC(db), pIdx->azColl[0], 0)==pReq 1607bbbdc83bSdrh && (!mustBeUnique || (pIdx->nKeyCol==1 && pIdx->onError!=OE_None)) 16089a96b668Sdanielk1977 ){ 16097d176105Sdrh int iAddr = sqlite3CodeOnce(pParse); VdbeCoverage(v); 16102ec2fb22Sdrh sqlite3VdbeAddOp3(v, OP_OpenRead, iTab, pIdx->tnum, iDb); 16112ec2fb22Sdrh sqlite3VdbeSetP4KeyInfo(pParse, pIdx); 1612207872a4Sdanielk1977 VdbeComment((v, "%s", pIdx->zName)); 16131ccce449Sdrh assert( IN_INDEX_INDEX_DESC == IN_INDEX_INDEX_ASC+1 ); 16141ccce449Sdrh eType = IN_INDEX_INDEX_ASC + pIdx->aSortOrder[0]; 16159a96b668Sdanielk1977 16160cdc022eSdanielk1977 if( prNotFound && !pTab->aCol[iCol].notNull ){ 16170cdc022eSdanielk1977 *prNotFound = ++pParse->nMem; 1618b8475df8Sdrh sqlite3VdbeAddOp2(v, OP_Null, 0, *prNotFound); 16190cdc022eSdanielk1977 } 1620552fd454Sdrh sqlite3VdbeJumpHere(v, iAddr); 16219a96b668Sdanielk1977 } 16229a96b668Sdanielk1977 } 16239a96b668Sdanielk1977 } 16249a96b668Sdanielk1977 } 16259a96b668Sdanielk1977 16269a96b668Sdanielk1977 if( eType==0 ){ 16271450bc6eSdrh /* Could not found an existing table or index to use as the RHS b-tree. 1628b74b1017Sdrh ** We will have to generate an ephemeral table to do the job. 1629b74b1017Sdrh */ 16308e23daf3Sdrh u32 savedNQueryLoop = pParse->nQueryLoop; 16310cdc022eSdanielk1977 int rMayHaveNull = 0; 163241a05b7bSdanielk1977 eType = IN_INDEX_EPH; 16330cdc022eSdanielk1977 if( prNotFound ){ 16340cdc022eSdanielk1977 *prNotFound = rMayHaveNull = ++pParse->nMem; 1635b8475df8Sdrh sqlite3VdbeAddOp2(v, OP_Null, 0, *prNotFound); 1636cf4d38aaSdrh }else{ 16374a5acf8eSdrh testcase( pParse->nQueryLoop>0 ); 16384a5acf8eSdrh pParse->nQueryLoop = 0; 1639c5cd1249Sdrh if( pX->pLeft->iColumn<0 && !ExprHasProperty(pX, EP_xIsSelect) ){ 164041a05b7bSdanielk1977 eType = IN_INDEX_ROWID; 16410cdc022eSdanielk1977 } 1642cf4d38aaSdrh } 164341a05b7bSdanielk1977 sqlite3CodeSubselect(pParse, pX, rMayHaveNull, eType==IN_INDEX_ROWID); 1644cf4d38aaSdrh pParse->nQueryLoop = savedNQueryLoop; 16459a96b668Sdanielk1977 }else{ 16469a96b668Sdanielk1977 pX->iTable = iTab; 16479a96b668Sdanielk1977 } 16489a96b668Sdanielk1977 return eType; 16499a96b668Sdanielk1977 } 1650284f4acaSdanielk1977 #endif 1651626a879aSdrh 1652626a879aSdrh /* 1653d4187c71Sdrh ** Generate code for scalar subqueries used as a subquery expression, EXISTS, 1654d4187c71Sdrh ** or IN operators. Examples: 1655626a879aSdrh ** 16569cbe6352Sdrh ** (SELECT a FROM b) -- subquery 16579cbe6352Sdrh ** EXISTS (SELECT a FROM b) -- EXISTS subquery 16589cbe6352Sdrh ** x IN (4,5,11) -- IN operator with list on right-hand side 16599cbe6352Sdrh ** x IN (SELECT a FROM b) -- IN operator with subquery on the right 1660fef5208cSdrh ** 16619cbe6352Sdrh ** The pExpr parameter describes the expression that contains the IN 16629cbe6352Sdrh ** operator or subquery. 166341a05b7bSdanielk1977 ** 166441a05b7bSdanielk1977 ** If parameter isRowid is non-zero, then expression pExpr is guaranteed 166541a05b7bSdanielk1977 ** to be of the form "<rowid> IN (?, ?, ?)", where <rowid> is a reference 166641a05b7bSdanielk1977 ** to some integer key column of a table B-Tree. In this case, use an 166741a05b7bSdanielk1977 ** intkey B-Tree to store the set of IN(...) values instead of the usual 166841a05b7bSdanielk1977 ** (slower) variable length keys B-Tree. 1669fd773cf9Sdrh ** 1670fd773cf9Sdrh ** If rMayHaveNull is non-zero, that means that the operation is an IN 1671fd773cf9Sdrh ** (not a SELECT or EXISTS) and that the RHS might contains NULLs. 1672fd773cf9Sdrh ** Furthermore, the IN is in a WHERE clause and that we really want 1673fd773cf9Sdrh ** to iterate over the RHS of the IN operator in order to quickly locate 1674fd773cf9Sdrh ** all corresponding LHS elements. All this routine does is initialize 1675fd773cf9Sdrh ** the register given by rMayHaveNull to NULL. Calling routines will take 1676fd773cf9Sdrh ** care of changing this register value to non-NULL if the RHS is NULL-free. 1677fd773cf9Sdrh ** 1678fd773cf9Sdrh ** If rMayHaveNull is zero, that means that the subquery is being used 1679fd773cf9Sdrh ** for membership testing only. There is no need to initialize any 1680f7b5496eSdrh ** registers to indicate the presence or absence of NULLs on the RHS. 16811450bc6eSdrh ** 16821450bc6eSdrh ** For a SELECT or EXISTS operator, return the register that holds the 16831450bc6eSdrh ** result. For IN operators or if an error occurs, the return value is 0. 1684cce7d176Sdrh */ 168551522cd3Sdrh #ifndef SQLITE_OMIT_SUBQUERY 16861450bc6eSdrh int sqlite3CodeSubselect( 1687fd773cf9Sdrh Parse *pParse, /* Parsing context */ 1688fd773cf9Sdrh Expr *pExpr, /* The IN, SELECT, or EXISTS operator */ 1689fd773cf9Sdrh int rMayHaveNull, /* Register that records whether NULLs exist in RHS */ 1690fd773cf9Sdrh int isRowid /* If true, LHS of IN operator is a rowid */ 169141a05b7bSdanielk1977 ){ 1692dfd2d9f6Sdrh int testAddr = -1; /* One-time test address */ 16931450bc6eSdrh int rReg = 0; /* Register storing resulting */ 1694b3bce662Sdanielk1977 Vdbe *v = sqlite3GetVdbe(pParse); 16951450bc6eSdrh if( NEVER(v==0) ) return 0; 1696ceea3321Sdrh sqlite3ExprCachePush(pParse); 1697fc976065Sdanielk1977 169857dbd7b3Sdrh /* This code must be run in its entirety every time it is encountered 169957dbd7b3Sdrh ** if any of the following is true: 170057dbd7b3Sdrh ** 170157dbd7b3Sdrh ** * The right-hand side is a correlated subquery 170257dbd7b3Sdrh ** * The right-hand side is an expression list containing variables 170357dbd7b3Sdrh ** * We are inside a trigger 170457dbd7b3Sdrh ** 170557dbd7b3Sdrh ** If all of the above are false, then we can run this code just once 170657dbd7b3Sdrh ** save the results, and reuse the same result on subsequent invocations. 1707b3bce662Sdanielk1977 */ 1708c5cd1249Sdrh if( !ExprHasProperty(pExpr, EP_VarSelect) ){ 17097d176105Sdrh testAddr = sqlite3CodeOnce(pParse); VdbeCoverage(v); 1710b3bce662Sdanielk1977 } 1711b3bce662Sdanielk1977 17124a07e3dbSdan #ifndef SQLITE_OMIT_EXPLAIN 17134a07e3dbSdan if( pParse->explain==2 ){ 17144a07e3dbSdan char *zMsg = sqlite3MPrintf( 1715dfd2d9f6Sdrh pParse->db, "EXECUTE %s%s SUBQUERY %d", testAddr>=0?"":"CORRELATED ", 17164a07e3dbSdan pExpr->op==TK_IN?"LIST":"SCALAR", pParse->iNextSelectId 17174a07e3dbSdan ); 17184a07e3dbSdan sqlite3VdbeAddOp4(v, OP_Explain, pParse->iSelectId, 0, 0, zMsg, P4_DYNAMIC); 17194a07e3dbSdan } 17204a07e3dbSdan #endif 17214a07e3dbSdan 1722cce7d176Sdrh switch( pExpr->op ){ 1723fef5208cSdrh case TK_IN: { 1724d4187c71Sdrh char affinity; /* Affinity of the LHS of the IN */ 1725b9bb7c18Sdrh int addr; /* Address of OP_OpenEphemeral instruction */ 1726d4187c71Sdrh Expr *pLeft = pExpr->pLeft; /* the LHS of the IN operator */ 1727323df790Sdrh KeyInfo *pKeyInfo = 0; /* Key information */ 1728d3d39e93Sdrh 17290cdc022eSdanielk1977 if( rMayHaveNull ){ 17300cdc022eSdanielk1977 sqlite3VdbeAddOp2(v, OP_Null, 0, rMayHaveNull); 17310cdc022eSdanielk1977 } 17320cdc022eSdanielk1977 173341a05b7bSdanielk1977 affinity = sqlite3ExprAffinity(pLeft); 1734e014a838Sdanielk1977 1735e014a838Sdanielk1977 /* Whether this is an 'x IN(SELECT...)' or an 'x IN(<exprlist>)' 17368cff69dfSdrh ** expression it is handled the same way. An ephemeral table is 1737e014a838Sdanielk1977 ** filled with single-field index keys representing the results 1738e014a838Sdanielk1977 ** from the SELECT or the <exprlist>. 1739fef5208cSdrh ** 1740e014a838Sdanielk1977 ** If the 'x' expression is a column value, or the SELECT... 1741e014a838Sdanielk1977 ** statement returns a column value, then the affinity of that 1742e014a838Sdanielk1977 ** column is used to build the index keys. If both 'x' and the 1743e014a838Sdanielk1977 ** SELECT... statement are columns, then numeric affinity is used 1744e014a838Sdanielk1977 ** if either column has NUMERIC or INTEGER affinity. If neither 1745e014a838Sdanielk1977 ** 'x' nor the SELECT... statement are columns, then numeric affinity 1746e014a838Sdanielk1977 ** is used. 1747fef5208cSdrh */ 1748832508b7Sdrh pExpr->iTable = pParse->nTab++; 174941a05b7bSdanielk1977 addr = sqlite3VdbeAddOp2(v, OP_OpenEphemeral, pExpr->iTable, !isRowid); 1750ad124329Sdrh pKeyInfo = isRowid ? 0 : sqlite3KeyInfoAlloc(pParse->db, 1, 1); 1751e014a838Sdanielk1977 17526ab3a2ecSdanielk1977 if( ExprHasProperty(pExpr, EP_xIsSelect) ){ 1753e014a838Sdanielk1977 /* Case 1: expr IN (SELECT ...) 1754e014a838Sdanielk1977 ** 1755e014a838Sdanielk1977 ** Generate code to write the results of the select into the temporary 1756e014a838Sdanielk1977 ** table allocated and opened above. 1757e014a838Sdanielk1977 */ 17581013c932Sdrh SelectDest dest; 1759be5c89acSdrh ExprList *pEList; 17601013c932Sdrh 176141a05b7bSdanielk1977 assert( !isRowid ); 17621013c932Sdrh sqlite3SelectDestInit(&dest, SRT_Set, pExpr->iTable); 17632b596da8Sdrh dest.affSdst = (u8)affinity; 1764e014a838Sdanielk1977 assert( (pExpr->iTable&0x0000FFFF)==pExpr->iTable ); 176548b5b041Sdrh pExpr->x.pSelect->iLimit = 0; 1766812ea833Sdrh testcase( pKeyInfo==0 ); /* Caused by OOM in sqlite3KeyInfoAlloc() */ 17676ab3a2ecSdanielk1977 if( sqlite3Select(pParse, pExpr->x.pSelect, &dest) ){ 17682ec2fb22Sdrh sqlite3KeyInfoUnref(pKeyInfo); 17691450bc6eSdrh return 0; 177094ccde58Sdrh } 17716ab3a2ecSdanielk1977 pEList = pExpr->x.pSelect->pEList; 1772812ea833Sdrh assert( pKeyInfo!=0 ); /* OOM will cause exit after sqlite3Select() */ 17733535ec3eSdrh assert( pEList!=0 ); 17743535ec3eSdrh assert( pEList->nExpr>0 ); 17752ec2fb22Sdrh assert( sqlite3KeyInfoIsWriteable(pKeyInfo) ); 1776323df790Sdrh pKeyInfo->aColl[0] = sqlite3BinaryCompareCollSeq(pParse, pExpr->pLeft, 1777be5c89acSdrh pEList->a[0].pExpr); 1778a7d2db17Sdrh }else if( ALWAYS(pExpr->x.pList!=0) ){ 1779fef5208cSdrh /* Case 2: expr IN (exprlist) 1780fef5208cSdrh ** 1781e014a838Sdanielk1977 ** For each expression, build an index key from the evaluation and 1782e014a838Sdanielk1977 ** store it in the temporary table. If <expr> is a column, then use 1783e014a838Sdanielk1977 ** that columns affinity when building index keys. If <expr> is not 1784e014a838Sdanielk1977 ** a column, use numeric affinity. 1785fef5208cSdrh */ 1786e014a838Sdanielk1977 int i; 17876ab3a2ecSdanielk1977 ExprList *pList = pExpr->x.pList; 178857dbd7b3Sdrh struct ExprList_item *pItem; 1789ecc31805Sdrh int r1, r2, r3; 179057dbd7b3Sdrh 1791e014a838Sdanielk1977 if( !affinity ){ 17928159a35fSdrh affinity = SQLITE_AFF_NONE; 1793e014a838Sdanielk1977 } 1794323df790Sdrh if( pKeyInfo ){ 17952ec2fb22Sdrh assert( sqlite3KeyInfoIsWriteable(pKeyInfo) ); 1796323df790Sdrh pKeyInfo->aColl[0] = sqlite3ExprCollSeq(pParse, pExpr->pLeft); 1797323df790Sdrh } 1798e014a838Sdanielk1977 1799e014a838Sdanielk1977 /* Loop through each expression in <exprlist>. */ 18002d401ab8Sdrh r1 = sqlite3GetTempReg(pParse); 18012d401ab8Sdrh r2 = sqlite3GetTempReg(pParse); 18024e7f36a2Sdanielk1977 sqlite3VdbeAddOp2(v, OP_Null, 0, r2); 180357dbd7b3Sdrh for(i=pList->nExpr, pItem=pList->a; i>0; i--, pItem++){ 180457dbd7b3Sdrh Expr *pE2 = pItem->pExpr; 1805e05c929bSdrh int iValToIns; 1806e014a838Sdanielk1977 180757dbd7b3Sdrh /* If the expression is not constant then we will need to 180857dbd7b3Sdrh ** disable the test that was generated above that makes sure 180957dbd7b3Sdrh ** this code only executes once. Because for a non-constant 181057dbd7b3Sdrh ** expression we need to rerun this code each time. 181157dbd7b3Sdrh */ 1812dfd2d9f6Sdrh if( testAddr>=0 && !sqlite3ExprIsConstant(pE2) ){ 181348f2d3b1Sdrh sqlite3VdbeChangeToNoop(v, testAddr); 1814dfd2d9f6Sdrh testAddr = -1; 18154794b980Sdrh } 1816e014a838Sdanielk1977 1817e014a838Sdanielk1977 /* Evaluate the expression and insert it into the temp table */ 1818e05c929bSdrh if( isRowid && sqlite3ExprIsInteger(pE2, &iValToIns) ){ 1819e05c929bSdrh sqlite3VdbeAddOp3(v, OP_InsertInt, pExpr->iTable, r2, iValToIns); 1820e05c929bSdrh }else{ 1821ecc31805Sdrh r3 = sqlite3ExprCodeTarget(pParse, pE2, r1); 182241a05b7bSdanielk1977 if( isRowid ){ 1823e05c929bSdrh sqlite3VdbeAddOp2(v, OP_MustBeInt, r3, 1824e05c929bSdrh sqlite3VdbeCurrentAddr(v)+2); 1825688852abSdrh VdbeCoverage(v); 182641a05b7bSdanielk1977 sqlite3VdbeAddOp3(v, OP_Insert, pExpr->iTable, r2, r3); 182741a05b7bSdanielk1977 }else{ 1828ecc31805Sdrh sqlite3VdbeAddOp4(v, OP_MakeRecord, r3, 1, r2, &affinity, 1); 18293c31fc23Sdrh sqlite3ExprCacheAffinityChange(pParse, r3, 1); 18302d401ab8Sdrh sqlite3VdbeAddOp2(v, OP_IdxInsert, pExpr->iTable, r2); 1831fef5208cSdrh } 183241a05b7bSdanielk1977 } 1833e05c929bSdrh } 18342d401ab8Sdrh sqlite3ReleaseTempReg(pParse, r1); 18352d401ab8Sdrh sqlite3ReleaseTempReg(pParse, r2); 1836fef5208cSdrh } 1837323df790Sdrh if( pKeyInfo ){ 18382ec2fb22Sdrh sqlite3VdbeChangeP4(v, addr, (void *)pKeyInfo, P4_KEYINFO); 183941a05b7bSdanielk1977 } 1840b3bce662Sdanielk1977 break; 1841fef5208cSdrh } 1842fef5208cSdrh 184351522cd3Sdrh case TK_EXISTS: 1844fd773cf9Sdrh case TK_SELECT: 1845fd773cf9Sdrh default: { 1846fd773cf9Sdrh /* If this has to be a scalar SELECT. Generate code to put the 1847fef5208cSdrh ** value of this select in a memory cell and record the number 1848fd773cf9Sdrh ** of the memory cell in iColumn. If this is an EXISTS, write 1849fd773cf9Sdrh ** an integer 0 (not exists) or 1 (exists) into a memory cell 1850fd773cf9Sdrh ** and record that memory cell in iColumn. 1851fef5208cSdrh */ 1852fd773cf9Sdrh Select *pSel; /* SELECT statement to encode */ 1853fd773cf9Sdrh SelectDest dest; /* How to deal with SELECt result */ 18541398ad36Sdrh 1855cf697396Sshane testcase( pExpr->op==TK_EXISTS ); 1856cf697396Sshane testcase( pExpr->op==TK_SELECT ); 1857cf697396Sshane assert( pExpr->op==TK_EXISTS || pExpr->op==TK_SELECT ); 1858cf697396Sshane 18596ab3a2ecSdanielk1977 assert( ExprHasProperty(pExpr, EP_xIsSelect) ); 18606ab3a2ecSdanielk1977 pSel = pExpr->x.pSelect; 18611013c932Sdrh sqlite3SelectDestInit(&dest, 0, ++pParse->nMem); 186251522cd3Sdrh if( pExpr->op==TK_SELECT ){ 18636c8c8ce0Sdanielk1977 dest.eDest = SRT_Mem; 18642b596da8Sdrh sqlite3VdbeAddOp2(v, OP_Null, 0, dest.iSDParm); 1865d4e70ebdSdrh VdbeComment((v, "Init subquery result")); 186651522cd3Sdrh }else{ 18676c8c8ce0Sdanielk1977 dest.eDest = SRT_Exists; 18682b596da8Sdrh sqlite3VdbeAddOp2(v, OP_Integer, 0, dest.iSDParm); 1869d4e70ebdSdrh VdbeComment((v, "Init EXISTS result")); 187051522cd3Sdrh } 1871633e6d57Sdrh sqlite3ExprDelete(pParse->db, pSel->pLimit); 1872094430ebSdrh pSel->pLimit = sqlite3PExpr(pParse, TK_INTEGER, 0, 0, 1873094430ebSdrh &sqlite3IntTokens[1]); 187448b5b041Sdrh pSel->iLimit = 0; 18757d10d5a6Sdrh if( sqlite3Select(pParse, pSel, &dest) ){ 18761450bc6eSdrh return 0; 187794ccde58Sdrh } 18782b596da8Sdrh rReg = dest.iSDParm; 1879ebb6a65dSdrh ExprSetVVAProperty(pExpr, EP_NoReduce); 1880b3bce662Sdanielk1977 break; 188119a775c2Sdrh } 1882cce7d176Sdrh } 1883b3bce662Sdanielk1977 1884dfd2d9f6Sdrh if( testAddr>=0 ){ 188548f2d3b1Sdrh sqlite3VdbeJumpHere(v, testAddr); 1886b3bce662Sdanielk1977 } 1887ceea3321Sdrh sqlite3ExprCachePop(pParse, 1); 1888fc976065Sdanielk1977 18891450bc6eSdrh return rReg; 1890cce7d176Sdrh } 189151522cd3Sdrh #endif /* SQLITE_OMIT_SUBQUERY */ 1892cce7d176Sdrh 1893e3365e6cSdrh #ifndef SQLITE_OMIT_SUBQUERY 1894e3365e6cSdrh /* 1895e3365e6cSdrh ** Generate code for an IN expression. 1896e3365e6cSdrh ** 1897e3365e6cSdrh ** x IN (SELECT ...) 1898e3365e6cSdrh ** x IN (value, value, ...) 1899e3365e6cSdrh ** 1900e3365e6cSdrh ** The left-hand side (LHS) is a scalar expression. The right-hand side (RHS) 1901e3365e6cSdrh ** is an array of zero or more values. The expression is true if the LHS is 1902e3365e6cSdrh ** contained within the RHS. The value of the expression is unknown (NULL) 1903e3365e6cSdrh ** if the LHS is NULL or if the LHS is not contained within the RHS and the 1904e3365e6cSdrh ** RHS contains one or more NULL values. 1905e3365e6cSdrh ** 1906e3365e6cSdrh ** This routine generates code will jump to destIfFalse if the LHS is not 1907e3365e6cSdrh ** contained within the RHS. If due to NULLs we cannot determine if the LHS 1908e3365e6cSdrh ** is contained in the RHS then jump to destIfNull. If the LHS is contained 1909e3365e6cSdrh ** within the RHS then fall through. 1910e3365e6cSdrh */ 1911e3365e6cSdrh static void sqlite3ExprCodeIN( 1912e3365e6cSdrh Parse *pParse, /* Parsing and code generating context */ 1913e3365e6cSdrh Expr *pExpr, /* The IN expression */ 1914e3365e6cSdrh int destIfFalse, /* Jump here if LHS is not contained in the RHS */ 1915e3365e6cSdrh int destIfNull /* Jump here if the results are unknown due to NULLs */ 1916e3365e6cSdrh ){ 1917e3365e6cSdrh int rRhsHasNull = 0; /* Register that is true if RHS contains NULL values */ 1918e3365e6cSdrh char affinity; /* Comparison affinity to use */ 1919e3365e6cSdrh int eType; /* Type of the RHS */ 1920e3365e6cSdrh int r1; /* Temporary use register */ 1921e3365e6cSdrh Vdbe *v; /* Statement under construction */ 1922e3365e6cSdrh 1923e3365e6cSdrh /* Compute the RHS. After this step, the table with cursor 1924e3365e6cSdrh ** pExpr->iTable will contains the values that make up the RHS. 1925e3365e6cSdrh */ 1926e3365e6cSdrh v = pParse->pVdbe; 1927e3365e6cSdrh assert( v!=0 ); /* OOM detected prior to this routine */ 1928e3365e6cSdrh VdbeNoopComment((v, "begin IN expr")); 1929e3365e6cSdrh eType = sqlite3FindInIndex(pParse, pExpr, &rRhsHasNull); 1930e3365e6cSdrh 1931e3365e6cSdrh /* Figure out the affinity to use to create a key from the results 1932e3365e6cSdrh ** of the expression. affinityStr stores a static string suitable for 1933e3365e6cSdrh ** P4 of OP_MakeRecord. 1934e3365e6cSdrh */ 1935e3365e6cSdrh affinity = comparisonAffinity(pExpr); 1936e3365e6cSdrh 1937e3365e6cSdrh /* Code the LHS, the <expr> from "<expr> IN (...)". 1938e3365e6cSdrh */ 1939e3365e6cSdrh sqlite3ExprCachePush(pParse); 1940e3365e6cSdrh r1 = sqlite3GetTempReg(pParse); 1941e3365e6cSdrh sqlite3ExprCode(pParse, pExpr->pLeft, r1); 1942e3365e6cSdrh 1943094430ebSdrh /* If the LHS is NULL, then the result is either false or NULL depending 1944094430ebSdrh ** on whether the RHS is empty or not, respectively. 1945094430ebSdrh */ 1946094430ebSdrh if( destIfNull==destIfFalse ){ 1947094430ebSdrh /* Shortcut for the common case where the false and NULL outcomes are 1948094430ebSdrh ** the same. */ 1949688852abSdrh sqlite3VdbeAddOp2(v, OP_IsNull, r1, destIfNull); VdbeCoverage(v); 1950094430ebSdrh }else{ 1951688852abSdrh int addr1 = sqlite3VdbeAddOp1(v, OP_NotNull, r1); VdbeCoverage(v); 1952094430ebSdrh sqlite3VdbeAddOp2(v, OP_Rewind, pExpr->iTable, destIfFalse); 1953688852abSdrh VdbeCoverage(v); 1954094430ebSdrh sqlite3VdbeAddOp2(v, OP_Goto, 0, destIfNull); 1955094430ebSdrh sqlite3VdbeJumpHere(v, addr1); 1956094430ebSdrh } 1957e3365e6cSdrh 1958e3365e6cSdrh if( eType==IN_INDEX_ROWID ){ 1959e3365e6cSdrh /* In this case, the RHS is the ROWID of table b-tree 1960e3365e6cSdrh */ 1961688852abSdrh sqlite3VdbeAddOp2(v, OP_MustBeInt, r1, destIfFalse); VdbeCoverage(v); 1962e3365e6cSdrh sqlite3VdbeAddOp3(v, OP_NotExists, pExpr->iTable, destIfFalse, r1); 1963688852abSdrh VdbeCoverage(v); 1964e3365e6cSdrh }else{ 1965e3365e6cSdrh /* In this case, the RHS is an index b-tree. 1966e3365e6cSdrh */ 19678cff69dfSdrh sqlite3VdbeAddOp4(v, OP_Affinity, r1, 1, 0, &affinity, 1); 1968e3365e6cSdrh 1969e3365e6cSdrh /* If the set membership test fails, then the result of the 1970e3365e6cSdrh ** "x IN (...)" expression must be either 0 or NULL. If the set 1971e3365e6cSdrh ** contains no NULL values, then the result is 0. If the set 1972e3365e6cSdrh ** contains one or more NULL values, then the result of the 1973e3365e6cSdrh ** expression is also NULL. 1974e3365e6cSdrh */ 1975e3365e6cSdrh if( rRhsHasNull==0 || destIfFalse==destIfNull ){ 1976e3365e6cSdrh /* This branch runs if it is known at compile time that the RHS 1977e3365e6cSdrh ** cannot contain NULL values. This happens as the result 1978e3365e6cSdrh ** of a "NOT NULL" constraint in the database schema. 1979e3365e6cSdrh ** 1980e3365e6cSdrh ** Also run this branch if NULL is equivalent to FALSE 1981e3365e6cSdrh ** for this particular IN operator. 1982e3365e6cSdrh */ 19838cff69dfSdrh sqlite3VdbeAddOp4Int(v, OP_NotFound, pExpr->iTable, destIfFalse, r1, 1); 1984688852abSdrh VdbeCoverage(v); 1985e3365e6cSdrh }else{ 1986e3365e6cSdrh /* In this branch, the RHS of the IN might contain a NULL and 1987e3365e6cSdrh ** the presence of a NULL on the RHS makes a difference in the 1988e3365e6cSdrh ** outcome. 1989e3365e6cSdrh */ 1990552fd454Sdrh int j1, j2; 1991e3365e6cSdrh 1992e3365e6cSdrh /* First check to see if the LHS is contained in the RHS. If so, 1993e3365e6cSdrh ** then the presence of NULLs in the RHS does not matter, so jump 1994e3365e6cSdrh ** over all of the code that follows. 1995e3365e6cSdrh */ 19968cff69dfSdrh j1 = sqlite3VdbeAddOp4Int(v, OP_Found, pExpr->iTable, 0, r1, 1); 1997688852abSdrh VdbeCoverage(v); 1998e3365e6cSdrh 1999e3365e6cSdrh /* Here we begin generating code that runs if the LHS is not 2000e3365e6cSdrh ** contained within the RHS. Generate additional code that 2001e3365e6cSdrh ** tests the RHS for NULLs. If the RHS contains a NULL then 2002e3365e6cSdrh ** jump to destIfNull. If there are no NULLs in the RHS then 2003e3365e6cSdrh ** jump to destIfFalse. 2004e3365e6cSdrh */ 2005688852abSdrh sqlite3VdbeAddOp2(v, OP_If, rRhsHasNull, destIfNull); VdbeCoverage(v); 2006552fd454Sdrh sqlite3VdbeAddOp2(v, OP_IfNot, rRhsHasNull, destIfFalse); VdbeCoverage(v); 2007552fd454Sdrh j2 = sqlite3VdbeAddOp4Int(v, OP_Found, pExpr->iTable, 0, rRhsHasNull, 1); 2008552fd454Sdrh VdbeCoverage(v); 2009552fd454Sdrh sqlite3VdbeAddOp2(v, OP_Integer, 0, rRhsHasNull); 2010e3365e6cSdrh sqlite3VdbeAddOp2(v, OP_Goto, 0, destIfFalse); 2011552fd454Sdrh sqlite3VdbeJumpHere(v, j2); 2012552fd454Sdrh sqlite3VdbeAddOp2(v, OP_Integer, 1, rRhsHasNull); 2013552fd454Sdrh sqlite3VdbeAddOp2(v, OP_Goto, 0, destIfNull); 2014e3365e6cSdrh 2015e3365e6cSdrh /* The OP_Found at the top of this branch jumps here when true, 2016e3365e6cSdrh ** causing the overall IN expression evaluation to fall through. 2017e3365e6cSdrh */ 2018e3365e6cSdrh sqlite3VdbeJumpHere(v, j1); 2019e3365e6cSdrh } 2020e3365e6cSdrh } 2021e3365e6cSdrh sqlite3ReleaseTempReg(pParse, r1); 2022e3365e6cSdrh sqlite3ExprCachePop(pParse, 1); 2023e3365e6cSdrh VdbeComment((v, "end IN expr")); 2024e3365e6cSdrh } 2025e3365e6cSdrh #endif /* SQLITE_OMIT_SUBQUERY */ 2026e3365e6cSdrh 2027cce7d176Sdrh /* 2028598f1340Sdrh ** Duplicate an 8-byte value 2029598f1340Sdrh */ 2030598f1340Sdrh static char *dup8bytes(Vdbe *v, const char *in){ 2031598f1340Sdrh char *out = sqlite3DbMallocRaw(sqlite3VdbeDb(v), 8); 2032598f1340Sdrh if( out ){ 2033598f1340Sdrh memcpy(out, in, 8); 2034598f1340Sdrh } 2035598f1340Sdrh return out; 2036598f1340Sdrh } 2037598f1340Sdrh 203813573c71Sdrh #ifndef SQLITE_OMIT_FLOATING_POINT 2039598f1340Sdrh /* 2040598f1340Sdrh ** Generate an instruction that will put the floating point 20419cbf3425Sdrh ** value described by z[0..n-1] into register iMem. 20420cf19ed8Sdrh ** 20430cf19ed8Sdrh ** The z[] string will probably not be zero-terminated. But the 20440cf19ed8Sdrh ** z[n] character is guaranteed to be something that does not look 20450cf19ed8Sdrh ** like the continuation of the number. 2046598f1340Sdrh */ 2047b7916a78Sdrh static void codeReal(Vdbe *v, const char *z, int negateFlag, int iMem){ 2048fd773cf9Sdrh if( ALWAYS(z!=0) ){ 2049598f1340Sdrh double value; 2050598f1340Sdrh char *zV; 20519339da1fSdrh sqlite3AtoF(z, &value, sqlite3Strlen30(z), SQLITE_UTF8); 2052d0015161Sdrh assert( !sqlite3IsNaN(value) ); /* The new AtoF never returns NaN */ 2053598f1340Sdrh if( negateFlag ) value = -value; 2054598f1340Sdrh zV = dup8bytes(v, (char*)&value); 20559de221dfSdrh sqlite3VdbeAddOp4(v, OP_Real, 0, iMem, 0, zV, P4_REAL); 2056598f1340Sdrh } 2057598f1340Sdrh } 205813573c71Sdrh #endif 2059598f1340Sdrh 2060598f1340Sdrh 2061598f1340Sdrh /* 2062fec19aadSdrh ** Generate an instruction that will put the integer describe by 20639cbf3425Sdrh ** text z[0..n-1] into register iMem. 20640cf19ed8Sdrh ** 20655f1d6b61Sshaneh ** Expr.u.zToken is always UTF8 and zero-terminated. 2066fec19aadSdrh */ 206713573c71Sdrh static void codeInteger(Parse *pParse, Expr *pExpr, int negFlag, int iMem){ 206813573c71Sdrh Vdbe *v = pParse->pVdbe; 206992b01d53Sdrh if( pExpr->flags & EP_IntValue ){ 207033e619fcSdrh int i = pExpr->u.iValue; 2071d50ffc41Sdrh assert( i>=0 ); 207292b01d53Sdrh if( negFlag ) i = -i; 207392b01d53Sdrh sqlite3VdbeAddOp2(v, OP_Integer, i, iMem); 2074fd773cf9Sdrh }else{ 20755f1d6b61Sshaneh int c; 20765f1d6b61Sshaneh i64 value; 2077fd773cf9Sdrh const char *z = pExpr->u.zToken; 2078fd773cf9Sdrh assert( z!=0 ); 20795f1d6b61Sshaneh c = sqlite3Atoi64(z, &value, sqlite3Strlen30(z), SQLITE_UTF8); 20805f1d6b61Sshaneh if( c==0 || (c==2 && negFlag) ){ 2081598f1340Sdrh char *zV; 2082158b9cb9Sdrh if( negFlag ){ value = c==2 ? SMALLEST_INT64 : -value; } 2083598f1340Sdrh zV = dup8bytes(v, (char*)&value); 20849de221dfSdrh sqlite3VdbeAddOp4(v, OP_Int64, 0, iMem, 0, zV, P4_INT64); 2085fec19aadSdrh }else{ 208613573c71Sdrh #ifdef SQLITE_OMIT_FLOATING_POINT 208713573c71Sdrh sqlite3ErrorMsg(pParse, "oversized integer: %s%s", negFlag ? "-" : "", z); 208813573c71Sdrh #else 2089b7916a78Sdrh codeReal(v, z, negFlag, iMem); 209013573c71Sdrh #endif 2091fec19aadSdrh } 2092fec19aadSdrh } 2093c9cf901dSdanielk1977 } 2094fec19aadSdrh 2095ceea3321Sdrh /* 2096ceea3321Sdrh ** Clear a cache entry. 2097ceea3321Sdrh */ 2098ceea3321Sdrh static void cacheEntryClear(Parse *pParse, struct yColCache *p){ 2099ceea3321Sdrh if( p->tempReg ){ 2100ceea3321Sdrh if( pParse->nTempReg<ArraySize(pParse->aTempReg) ){ 2101ceea3321Sdrh pParse->aTempReg[pParse->nTempReg++] = p->iReg; 2102ceea3321Sdrh } 2103ceea3321Sdrh p->tempReg = 0; 2104ceea3321Sdrh } 2105ceea3321Sdrh } 2106ceea3321Sdrh 2107ceea3321Sdrh 2108ceea3321Sdrh /* 2109ceea3321Sdrh ** Record in the column cache that a particular column from a 2110ceea3321Sdrh ** particular table is stored in a particular register. 2111ceea3321Sdrh */ 2112ceea3321Sdrh void sqlite3ExprCacheStore(Parse *pParse, int iTab, int iCol, int iReg){ 2113ceea3321Sdrh int i; 2114ceea3321Sdrh int minLru; 2115ceea3321Sdrh int idxLru; 2116ceea3321Sdrh struct yColCache *p; 2117ceea3321Sdrh 211820411ea7Sdrh assert( iReg>0 ); /* Register numbers are always positive */ 211920411ea7Sdrh assert( iCol>=-1 && iCol<32768 ); /* Finite column numbers */ 212020411ea7Sdrh 2121b6da74ebSdrh /* The SQLITE_ColumnCache flag disables the column cache. This is used 2122b6da74ebSdrh ** for testing only - to verify that SQLite always gets the same answer 2123b6da74ebSdrh ** with and without the column cache. 2124b6da74ebSdrh */ 21257e5418e4Sdrh if( OptimizationDisabled(pParse->db, SQLITE_ColumnCache) ) return; 2126b6da74ebSdrh 212727ee406eSdrh /* First replace any existing entry. 212827ee406eSdrh ** 212927ee406eSdrh ** Actually, the way the column cache is currently used, we are guaranteed 213027ee406eSdrh ** that the object will never already be in cache. Verify this guarantee. 213127ee406eSdrh */ 213227ee406eSdrh #ifndef NDEBUG 2133ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 213427ee406eSdrh assert( p->iReg==0 || p->iTable!=iTab || p->iColumn!=iCol ); 2135ceea3321Sdrh } 213627ee406eSdrh #endif 2137ceea3321Sdrh 2138ceea3321Sdrh /* Find an empty slot and replace it */ 2139ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 2140ceea3321Sdrh if( p->iReg==0 ){ 2141ceea3321Sdrh p->iLevel = pParse->iCacheLevel; 2142ceea3321Sdrh p->iTable = iTab; 2143ceea3321Sdrh p->iColumn = iCol; 2144ceea3321Sdrh p->iReg = iReg; 2145ceea3321Sdrh p->tempReg = 0; 2146ceea3321Sdrh p->lru = pParse->iCacheCnt++; 2147ceea3321Sdrh return; 2148ceea3321Sdrh } 2149ceea3321Sdrh } 2150ceea3321Sdrh 2151ceea3321Sdrh /* Replace the last recently used */ 2152ceea3321Sdrh minLru = 0x7fffffff; 2153ceea3321Sdrh idxLru = -1; 2154ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 2155ceea3321Sdrh if( p->lru<minLru ){ 2156ceea3321Sdrh idxLru = i; 2157ceea3321Sdrh minLru = p->lru; 2158ceea3321Sdrh } 2159ceea3321Sdrh } 216020411ea7Sdrh if( ALWAYS(idxLru>=0) ){ 2161ceea3321Sdrh p = &pParse->aColCache[idxLru]; 2162ceea3321Sdrh p->iLevel = pParse->iCacheLevel; 2163ceea3321Sdrh p->iTable = iTab; 2164ceea3321Sdrh p->iColumn = iCol; 2165ceea3321Sdrh p->iReg = iReg; 2166ceea3321Sdrh p->tempReg = 0; 2167ceea3321Sdrh p->lru = pParse->iCacheCnt++; 2168ceea3321Sdrh return; 2169ceea3321Sdrh } 2170ceea3321Sdrh } 2171ceea3321Sdrh 2172ceea3321Sdrh /* 2173f49f3523Sdrh ** Indicate that registers between iReg..iReg+nReg-1 are being overwritten. 2174f49f3523Sdrh ** Purge the range of registers from the column cache. 2175ceea3321Sdrh */ 2176f49f3523Sdrh void sqlite3ExprCacheRemove(Parse *pParse, int iReg, int nReg){ 2177ceea3321Sdrh int i; 2178f49f3523Sdrh int iLast = iReg + nReg - 1; 2179ceea3321Sdrh struct yColCache *p; 2180ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 2181f49f3523Sdrh int r = p->iReg; 2182f49f3523Sdrh if( r>=iReg && r<=iLast ){ 2183ceea3321Sdrh cacheEntryClear(pParse, p); 2184ceea3321Sdrh p->iReg = 0; 2185ceea3321Sdrh } 2186ceea3321Sdrh } 2187ceea3321Sdrh } 2188ceea3321Sdrh 2189ceea3321Sdrh /* 2190ceea3321Sdrh ** Remember the current column cache context. Any new entries added 2191ceea3321Sdrh ** added to the column cache after this call are removed when the 2192ceea3321Sdrh ** corresponding pop occurs. 2193ceea3321Sdrh */ 2194ceea3321Sdrh void sqlite3ExprCachePush(Parse *pParse){ 2195ceea3321Sdrh pParse->iCacheLevel++; 21969ac7962aSdrh #ifdef SQLITE_DEBUG 21979ac7962aSdrh if( pParse->db->flags & SQLITE_VdbeAddopTrace ){ 21989ac7962aSdrh printf("PUSH to %d\n", pParse->iCacheLevel); 21999ac7962aSdrh } 22009ac7962aSdrh #endif 2201ceea3321Sdrh } 2202ceea3321Sdrh 2203ceea3321Sdrh /* 2204ceea3321Sdrh ** Remove from the column cache any entries that were added since the 2205ceea3321Sdrh ** the previous N Push operations. In other words, restore the cache 2206ceea3321Sdrh ** to the state it was in N Pushes ago. 2207ceea3321Sdrh */ 2208ceea3321Sdrh void sqlite3ExprCachePop(Parse *pParse, int N){ 2209ceea3321Sdrh int i; 2210ceea3321Sdrh struct yColCache *p; 2211ceea3321Sdrh assert( N>0 ); 2212ceea3321Sdrh assert( pParse->iCacheLevel>=N ); 2213ceea3321Sdrh pParse->iCacheLevel -= N; 22149ac7962aSdrh #ifdef SQLITE_DEBUG 22159ac7962aSdrh if( pParse->db->flags & SQLITE_VdbeAddopTrace ){ 22169ac7962aSdrh printf("POP to %d\n", pParse->iCacheLevel); 22179ac7962aSdrh } 22189ac7962aSdrh #endif 2219ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 2220ceea3321Sdrh if( p->iReg && p->iLevel>pParse->iCacheLevel ){ 2221ceea3321Sdrh cacheEntryClear(pParse, p); 2222ceea3321Sdrh p->iReg = 0; 2223ceea3321Sdrh } 2224ceea3321Sdrh } 2225ceea3321Sdrh } 2226945498f3Sdrh 2227945498f3Sdrh /* 22285cd79239Sdrh ** When a cached column is reused, make sure that its register is 22295cd79239Sdrh ** no longer available as a temp register. ticket #3879: that same 22305cd79239Sdrh ** register might be in the cache in multiple places, so be sure to 22315cd79239Sdrh ** get them all. 22325cd79239Sdrh */ 22335cd79239Sdrh static void sqlite3ExprCachePinRegister(Parse *pParse, int iReg){ 22345cd79239Sdrh int i; 22355cd79239Sdrh struct yColCache *p; 22365cd79239Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 22375cd79239Sdrh if( p->iReg==iReg ){ 22385cd79239Sdrh p->tempReg = 0; 22395cd79239Sdrh } 22405cd79239Sdrh } 22415cd79239Sdrh } 22425cd79239Sdrh 22435cd79239Sdrh /* 22445c092e8aSdrh ** Generate code to extract the value of the iCol-th column of a table. 22455c092e8aSdrh */ 22465c092e8aSdrh void sqlite3ExprCodeGetColumnOfTable( 22475c092e8aSdrh Vdbe *v, /* The VDBE under construction */ 22485c092e8aSdrh Table *pTab, /* The table containing the value */ 2249313619f5Sdrh int iTabCur, /* The table cursor. Or the PK cursor for WITHOUT ROWID */ 22505c092e8aSdrh int iCol, /* Index of the column to extract */ 2251313619f5Sdrh int regOut /* Extract the value into this register */ 22525c092e8aSdrh ){ 22535c092e8aSdrh if( iCol<0 || iCol==pTab->iPKey ){ 22545c092e8aSdrh sqlite3VdbeAddOp2(v, OP_Rowid, iTabCur, regOut); 22555c092e8aSdrh }else{ 22565c092e8aSdrh int op = IsVirtual(pTab) ? OP_VColumn : OP_Column; 2257ee0ec8e1Sdrh int x = iCol; 2258ee0ec8e1Sdrh if( !HasRowid(pTab) ){ 2259ee0ec8e1Sdrh x = sqlite3ColumnOfIndex(sqlite3PrimaryKeyIndex(pTab), iCol); 2260ee0ec8e1Sdrh } 2261ee0ec8e1Sdrh sqlite3VdbeAddOp3(v, op, iTabCur, x, regOut); 22625c092e8aSdrh } 22635c092e8aSdrh if( iCol>=0 ){ 22645c092e8aSdrh sqlite3ColumnDefault(v, pTab, iCol, regOut); 22655c092e8aSdrh } 22665c092e8aSdrh } 22675c092e8aSdrh 22685c092e8aSdrh /* 2269945498f3Sdrh ** Generate code that will extract the iColumn-th column from 2270e55cbd72Sdrh ** table pTab and store the column value in a register. An effort 2271e55cbd72Sdrh ** is made to store the column value in register iReg, but this is 2272e55cbd72Sdrh ** not guaranteed. The location of the column value is returned. 2273e55cbd72Sdrh ** 2274e55cbd72Sdrh ** There must be an open cursor to pTab in iTable when this routine 2275e55cbd72Sdrh ** is called. If iColumn<0 then code is generated that extracts the rowid. 2276945498f3Sdrh */ 2277e55cbd72Sdrh int sqlite3ExprCodeGetColumn( 2278e55cbd72Sdrh Parse *pParse, /* Parsing and code generating context */ 22792133d822Sdrh Table *pTab, /* Description of the table we are reading from */ 22802133d822Sdrh int iColumn, /* Index of the table column */ 22812133d822Sdrh int iTable, /* The cursor pointing to the table */ 2282a748fdccSdrh int iReg, /* Store results here */ 2283a748fdccSdrh u8 p5 /* P5 value for OP_Column */ 22842133d822Sdrh ){ 2285e55cbd72Sdrh Vdbe *v = pParse->pVdbe; 2286e55cbd72Sdrh int i; 2287da250ea5Sdrh struct yColCache *p; 2288e55cbd72Sdrh 2289ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 2290b6da74ebSdrh if( p->iReg>0 && p->iTable==iTable && p->iColumn==iColumn ){ 2291ceea3321Sdrh p->lru = pParse->iCacheCnt++; 22925cd79239Sdrh sqlite3ExprCachePinRegister(pParse, p->iReg); 2293da250ea5Sdrh return p->iReg; 2294e55cbd72Sdrh } 2295e55cbd72Sdrh } 2296e55cbd72Sdrh assert( v!=0 ); 22975c092e8aSdrh sqlite3ExprCodeGetColumnOfTable(v, pTab, iTable, iColumn, iReg); 2298a748fdccSdrh if( p5 ){ 2299a748fdccSdrh sqlite3VdbeChangeP5(v, p5); 2300a748fdccSdrh }else{ 2301ceea3321Sdrh sqlite3ExprCacheStore(pParse, iTable, iColumn, iReg); 2302a748fdccSdrh } 2303e55cbd72Sdrh return iReg; 2304e55cbd72Sdrh } 2305e55cbd72Sdrh 2306e55cbd72Sdrh /* 2307ceea3321Sdrh ** Clear all column cache entries. 2308e55cbd72Sdrh */ 2309ceea3321Sdrh void sqlite3ExprCacheClear(Parse *pParse){ 2310e55cbd72Sdrh int i; 2311ceea3321Sdrh struct yColCache *p; 2312ceea3321Sdrh 23139ac7962aSdrh #if SQLITE_DEBUG 23149ac7962aSdrh if( pParse->db->flags & SQLITE_VdbeAddopTrace ){ 23159ac7962aSdrh printf("CLEAR\n"); 23169ac7962aSdrh } 23179ac7962aSdrh #endif 2318ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 2319ceea3321Sdrh if( p->iReg ){ 2320ceea3321Sdrh cacheEntryClear(pParse, p); 2321ceea3321Sdrh p->iReg = 0; 2322e55cbd72Sdrh } 2323da250ea5Sdrh } 2324da250ea5Sdrh } 2325e55cbd72Sdrh 2326e55cbd72Sdrh /* 2327da250ea5Sdrh ** Record the fact that an affinity change has occurred on iCount 2328da250ea5Sdrh ** registers starting with iStart. 2329e55cbd72Sdrh */ 2330da250ea5Sdrh void sqlite3ExprCacheAffinityChange(Parse *pParse, int iStart, int iCount){ 2331f49f3523Sdrh sqlite3ExprCacheRemove(pParse, iStart, iCount); 2332e55cbd72Sdrh } 2333e55cbd72Sdrh 2334e55cbd72Sdrh /* 2335b21e7c70Sdrh ** Generate code to move content from registers iFrom...iFrom+nReg-1 2336b21e7c70Sdrh ** over to iTo..iTo+nReg-1. Keep the column cache up-to-date. 2337e55cbd72Sdrh */ 2338b21e7c70Sdrh void sqlite3ExprCodeMove(Parse *pParse, int iFrom, int iTo, int nReg){ 2339e55cbd72Sdrh int i; 2340ceea3321Sdrh struct yColCache *p; 2341e8e4af76Sdrh assert( iFrom>=iTo+nReg || iFrom+nReg<=iTo ); 2342e8e4af76Sdrh sqlite3VdbeAddOp3(pParse->pVdbe, OP_Move, iFrom, iTo, nReg-1); 2343ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 2344ceea3321Sdrh int x = p->iReg; 2345b21e7c70Sdrh if( x>=iFrom && x<iFrom+nReg ){ 2346ceea3321Sdrh p->iReg += iTo-iFrom; 2347e55cbd72Sdrh } 2348e55cbd72Sdrh } 2349945498f3Sdrh } 2350945498f3Sdrh 2351f49f3523Sdrh #if defined(SQLITE_DEBUG) || defined(SQLITE_COVERAGE_TEST) 235292b01d53Sdrh /* 2353652fbf55Sdrh ** Return true if any register in the range iFrom..iTo (inclusive) 2354652fbf55Sdrh ** is used as part of the column cache. 2355f49f3523Sdrh ** 2356f49f3523Sdrh ** This routine is used within assert() and testcase() macros only 2357f49f3523Sdrh ** and does not appear in a normal build. 2358652fbf55Sdrh */ 2359652fbf55Sdrh static int usedAsColumnCache(Parse *pParse, int iFrom, int iTo){ 2360652fbf55Sdrh int i; 2361ceea3321Sdrh struct yColCache *p; 2362ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 2363ceea3321Sdrh int r = p->iReg; 2364f49f3523Sdrh if( r>=iFrom && r<=iTo ) return 1; /*NO_TEST*/ 2365652fbf55Sdrh } 2366652fbf55Sdrh return 0; 2367652fbf55Sdrh } 2368f49f3523Sdrh #endif /* SQLITE_DEBUG || SQLITE_COVERAGE_TEST */ 2369652fbf55Sdrh 2370652fbf55Sdrh /* 2371a4c3c87eSdrh ** Convert an expression node to a TK_REGISTER 2372a4c3c87eSdrh */ 2373a4c3c87eSdrh static void exprToRegister(Expr *p, int iReg){ 2374a4c3c87eSdrh p->op2 = p->op; 2375a4c3c87eSdrh p->op = TK_REGISTER; 2376a4c3c87eSdrh p->iTable = iReg; 2377a4c3c87eSdrh ExprClearProperty(p, EP_Skip); 2378a4c3c87eSdrh } 2379a4c3c87eSdrh 2380a4c3c87eSdrh /* 2381cce7d176Sdrh ** Generate code into the current Vdbe to evaluate the given 23822dcef11bSdrh ** expression. Attempt to store the results in register "target". 23832dcef11bSdrh ** Return the register where results are stored. 2384389a1adbSdrh ** 23858b213899Sdrh ** With this routine, there is no guarantee that results will 23862dcef11bSdrh ** be stored in target. The result might be stored in some other 23872dcef11bSdrh ** register if it is convenient to do so. The calling function 23882dcef11bSdrh ** must check the return code and move the results to the desired 23892dcef11bSdrh ** register. 2390cce7d176Sdrh */ 2391678ccce8Sdrh int sqlite3ExprCodeTarget(Parse *pParse, Expr *pExpr, int target){ 23922dcef11bSdrh Vdbe *v = pParse->pVdbe; /* The VM under construction */ 23932dcef11bSdrh int op; /* The opcode being coded */ 23942dcef11bSdrh int inReg = target; /* Results stored in register inReg */ 23952dcef11bSdrh int regFree1 = 0; /* If non-zero free this temporary register */ 23962dcef11bSdrh int regFree2 = 0; /* If non-zero free this temporary register */ 2397678ccce8Sdrh int r1, r2, r3, r4; /* Various register numbers */ 239820411ea7Sdrh sqlite3 *db = pParse->db; /* The database connection */ 239910d1edf0Sdrh Expr tempX; /* Temporary expression node */ 2400ffe07b2dSdrh 24019cbf3425Sdrh assert( target>0 && target<=pParse->nMem ); 240220411ea7Sdrh if( v==0 ){ 240320411ea7Sdrh assert( pParse->db->mallocFailed ); 240420411ea7Sdrh return 0; 240520411ea7Sdrh } 2406389a1adbSdrh 2407389a1adbSdrh if( pExpr==0 ){ 2408389a1adbSdrh op = TK_NULL; 2409389a1adbSdrh }else{ 2410f2bc013cSdrh op = pExpr->op; 2411389a1adbSdrh } 2412f2bc013cSdrh switch( op ){ 241313449892Sdrh case TK_AGG_COLUMN: { 241413449892Sdrh AggInfo *pAggInfo = pExpr->pAggInfo; 241513449892Sdrh struct AggInfo_col *pCol = &pAggInfo->aCol[pExpr->iAgg]; 241613449892Sdrh if( !pAggInfo->directMode ){ 24179de221dfSdrh assert( pCol->iMem>0 ); 24189de221dfSdrh inReg = pCol->iMem; 241913449892Sdrh break; 242013449892Sdrh }else if( pAggInfo->useSortingIdx ){ 24215134d135Sdan sqlite3VdbeAddOp3(v, OP_Column, pAggInfo->sortingIdxPTab, 2422389a1adbSdrh pCol->iSorterColumn, target); 242313449892Sdrh break; 242413449892Sdrh } 242513449892Sdrh /* Otherwise, fall thru into the TK_COLUMN case */ 242613449892Sdrh } 2427967e8b73Sdrh case TK_COLUMN: { 2428b2b9d3d7Sdrh int iTab = pExpr->iTable; 2429b2b9d3d7Sdrh if( iTab<0 ){ 2430b2b9d3d7Sdrh if( pParse->ckBase>0 ){ 2431b2b9d3d7Sdrh /* Generating CHECK constraints or inserting into partial index */ 2432aa9b8963Sdrh inReg = pExpr->iColumn + pParse->ckBase; 2433b2b9d3d7Sdrh break; 2434c4a3c779Sdrh }else{ 2435b2b9d3d7Sdrh /* Deleting from a partial index */ 2436b2b9d3d7Sdrh iTab = pParse->iPartIdxTab; 24372282792aSdrh } 2438b2b9d3d7Sdrh } 2439b2b9d3d7Sdrh inReg = sqlite3ExprCodeGetColumn(pParse, pExpr->pTab, 2440b2b9d3d7Sdrh pExpr->iColumn, iTab, target, 2441b2b9d3d7Sdrh pExpr->op2); 2442cce7d176Sdrh break; 2443cce7d176Sdrh } 2444cce7d176Sdrh case TK_INTEGER: { 244513573c71Sdrh codeInteger(pParse, pExpr, 0, target); 2446fec19aadSdrh break; 244751e9a445Sdrh } 244813573c71Sdrh #ifndef SQLITE_OMIT_FLOATING_POINT 2449598f1340Sdrh case TK_FLOAT: { 245033e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 245133e619fcSdrh codeReal(v, pExpr->u.zToken, 0, target); 2452598f1340Sdrh break; 2453598f1340Sdrh } 245413573c71Sdrh #endif 2455fec19aadSdrh case TK_STRING: { 245633e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 245733e619fcSdrh sqlite3VdbeAddOp4(v, OP_String8, 0, target, 0, pExpr->u.zToken, 0); 2458cce7d176Sdrh break; 2459cce7d176Sdrh } 2460f0863fe5Sdrh case TK_NULL: { 24619de221dfSdrh sqlite3VdbeAddOp2(v, OP_Null, 0, target); 2462f0863fe5Sdrh break; 2463f0863fe5Sdrh } 24645338a5f7Sdanielk1977 #ifndef SQLITE_OMIT_BLOB_LITERAL 2465c572ef7fSdanielk1977 case TK_BLOB: { 24666c8c6cecSdrh int n; 24676c8c6cecSdrh const char *z; 2468ca48c90fSdrh char *zBlob; 246933e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 247033e619fcSdrh assert( pExpr->u.zToken[0]=='x' || pExpr->u.zToken[0]=='X' ); 247133e619fcSdrh assert( pExpr->u.zToken[1]=='\'' ); 247233e619fcSdrh z = &pExpr->u.zToken[2]; 2473b7916a78Sdrh n = sqlite3Strlen30(z) - 1; 2474b7916a78Sdrh assert( z[n]=='\'' ); 2475ca48c90fSdrh zBlob = sqlite3HexToBlob(sqlite3VdbeDb(v), z, n); 2476ca48c90fSdrh sqlite3VdbeAddOp4(v, OP_Blob, n/2, target, 0, zBlob, P4_DYNAMIC); 2477c572ef7fSdanielk1977 break; 2478c572ef7fSdanielk1977 } 24795338a5f7Sdanielk1977 #endif 248050457896Sdrh case TK_VARIABLE: { 248133e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 248233e619fcSdrh assert( pExpr->u.zToken!=0 ); 248333e619fcSdrh assert( pExpr->u.zToken[0]!=0 ); 2484eaf52d88Sdrh sqlite3VdbeAddOp2(v, OP_Variable, pExpr->iColumn, target); 248533e619fcSdrh if( pExpr->u.zToken[1]!=0 ){ 248604e9eeadSdrh assert( pExpr->u.zToken[0]=='?' 248704e9eeadSdrh || strcmp(pExpr->u.zToken, pParse->azVar[pExpr->iColumn-1])==0 ); 248804e9eeadSdrh sqlite3VdbeChangeP4(v, -1, pParse->azVar[pExpr->iColumn-1], P4_STATIC); 2489895d7472Sdrh } 249050457896Sdrh break; 249150457896Sdrh } 24924e0cff60Sdrh case TK_REGISTER: { 24939de221dfSdrh inReg = pExpr->iTable; 24944e0cff60Sdrh break; 24954e0cff60Sdrh } 24968b213899Sdrh case TK_AS: { 24977445ffe2Sdrh inReg = sqlite3ExprCodeTarget(pParse, pExpr->pLeft, target); 24988b213899Sdrh break; 24998b213899Sdrh } 2500487e262fSdrh #ifndef SQLITE_OMIT_CAST 2501487e262fSdrh case TK_CAST: { 2502487e262fSdrh /* Expressions of the form: CAST(pLeft AS token) */ 2503f0113000Sdanielk1977 int aff, to_op; 25042dcef11bSdrh inReg = sqlite3ExprCodeTarget(pParse, pExpr->pLeft, target); 250533e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 2506fdaac671Sdrh aff = sqlite3AffinityType(pExpr->u.zToken, 0); 2507f0113000Sdanielk1977 to_op = aff - SQLITE_AFF_TEXT + OP_ToText; 2508f0113000Sdanielk1977 assert( to_op==OP_ToText || aff!=SQLITE_AFF_TEXT ); 2509f0113000Sdanielk1977 assert( to_op==OP_ToBlob || aff!=SQLITE_AFF_NONE ); 2510f0113000Sdanielk1977 assert( to_op==OP_ToNumeric || aff!=SQLITE_AFF_NUMERIC ); 2511f0113000Sdanielk1977 assert( to_op==OP_ToInt || aff!=SQLITE_AFF_INTEGER ); 2512f0113000Sdanielk1977 assert( to_op==OP_ToReal || aff!=SQLITE_AFF_REAL ); 2513c5499befSdrh testcase( to_op==OP_ToText ); 2514c5499befSdrh testcase( to_op==OP_ToBlob ); 2515c5499befSdrh testcase( to_op==OP_ToNumeric ); 2516c5499befSdrh testcase( to_op==OP_ToInt ); 2517c5499befSdrh testcase( to_op==OP_ToReal ); 25181735fa88Sdrh if( inReg!=target ){ 25191735fa88Sdrh sqlite3VdbeAddOp2(v, OP_SCopy, inReg, target); 25201735fa88Sdrh inReg = target; 25211735fa88Sdrh } 25222dcef11bSdrh sqlite3VdbeAddOp1(v, to_op, inReg); 2523c5499befSdrh testcase( usedAsColumnCache(pParse, inReg, inReg) ); 2524b3843a82Sdrh sqlite3ExprCacheAffinityChange(pParse, inReg, 1); 2525487e262fSdrh break; 2526487e262fSdrh } 2527487e262fSdrh #endif /* SQLITE_OMIT_CAST */ 2528c9b84a1fSdrh case TK_LT: 2529c9b84a1fSdrh case TK_LE: 2530c9b84a1fSdrh case TK_GT: 2531c9b84a1fSdrh case TK_GE: 2532c9b84a1fSdrh case TK_NE: 2533c9b84a1fSdrh case TK_EQ: { 2534b6da74ebSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 2535b6da74ebSdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); 253635573356Sdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, 25377d176105Sdrh r1, r2, inReg, SQLITE_STOREP2); 25387d176105Sdrh assert(TK_LT==OP_Lt); testcase(op==OP_Lt); VdbeCoverageIf(v,op==OP_Lt); 25397d176105Sdrh assert(TK_LE==OP_Le); testcase(op==OP_Le); VdbeCoverageIf(v,op==OP_Le); 25407d176105Sdrh assert(TK_GT==OP_Gt); testcase(op==OP_Gt); VdbeCoverageIf(v,op==OP_Gt); 25417d176105Sdrh assert(TK_GE==OP_Ge); testcase(op==OP_Ge); VdbeCoverageIf(v,op==OP_Ge); 25427d176105Sdrh assert(TK_EQ==OP_Eq); testcase(op==OP_Eq); VdbeCoverageIf(v,op==OP_Eq); 25437d176105Sdrh assert(TK_NE==OP_Ne); testcase(op==OP_Ne); VdbeCoverageIf(v,op==OP_Ne); 2544c5499befSdrh testcase( regFree1==0 ); 2545c5499befSdrh testcase( regFree2==0 ); 2546a37cdde0Sdanielk1977 break; 2547c9b84a1fSdrh } 25486a2fe093Sdrh case TK_IS: 25496a2fe093Sdrh case TK_ISNOT: { 25506a2fe093Sdrh testcase( op==TK_IS ); 25516a2fe093Sdrh testcase( op==TK_ISNOT ); 2552b6da74ebSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 2553b6da74ebSdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); 25546a2fe093Sdrh op = (op==TK_IS) ? TK_EQ : TK_NE; 25556a2fe093Sdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, 25566a2fe093Sdrh r1, r2, inReg, SQLITE_STOREP2 | SQLITE_NULLEQ); 25577d176105Sdrh VdbeCoverageIf(v, op==TK_EQ); 25587d176105Sdrh VdbeCoverageIf(v, op==TK_NE); 25596a2fe093Sdrh testcase( regFree1==0 ); 25606a2fe093Sdrh testcase( regFree2==0 ); 25616a2fe093Sdrh break; 25626a2fe093Sdrh } 2563cce7d176Sdrh case TK_AND: 2564cce7d176Sdrh case TK_OR: 2565cce7d176Sdrh case TK_PLUS: 2566cce7d176Sdrh case TK_STAR: 2567cce7d176Sdrh case TK_MINUS: 2568bf4133cbSdrh case TK_REM: 2569bf4133cbSdrh case TK_BITAND: 2570bf4133cbSdrh case TK_BITOR: 257117c40294Sdrh case TK_SLASH: 2572bf4133cbSdrh case TK_LSHIFT: 2573855eb1cfSdrh case TK_RSHIFT: 25740040077dSdrh case TK_CONCAT: { 25757d176105Sdrh assert( TK_AND==OP_And ); testcase( op==TK_AND ); 25767d176105Sdrh assert( TK_OR==OP_Or ); testcase( op==TK_OR ); 25777d176105Sdrh assert( TK_PLUS==OP_Add ); testcase( op==TK_PLUS ); 25787d176105Sdrh assert( TK_MINUS==OP_Subtract ); testcase( op==TK_MINUS ); 25797d176105Sdrh assert( TK_REM==OP_Remainder ); testcase( op==TK_REM ); 25807d176105Sdrh assert( TK_BITAND==OP_BitAnd ); testcase( op==TK_BITAND ); 25817d176105Sdrh assert( TK_BITOR==OP_BitOr ); testcase( op==TK_BITOR ); 25827d176105Sdrh assert( TK_SLASH==OP_Divide ); testcase( op==TK_SLASH ); 25837d176105Sdrh assert( TK_LSHIFT==OP_ShiftLeft ); testcase( op==TK_LSHIFT ); 25847d176105Sdrh assert( TK_RSHIFT==OP_ShiftRight ); testcase( op==TK_RSHIFT ); 25857d176105Sdrh assert( TK_CONCAT==OP_Concat ); testcase( op==TK_CONCAT ); 25862dcef11bSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 25872dcef11bSdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); 25885b6afba9Sdrh sqlite3VdbeAddOp3(v, op, r2, r1, target); 2589c5499befSdrh testcase( regFree1==0 ); 2590c5499befSdrh testcase( regFree2==0 ); 25910040077dSdrh break; 25920040077dSdrh } 2593cce7d176Sdrh case TK_UMINUS: { 2594fec19aadSdrh Expr *pLeft = pExpr->pLeft; 2595fec19aadSdrh assert( pLeft ); 259613573c71Sdrh if( pLeft->op==TK_INTEGER ){ 259713573c71Sdrh codeInteger(pParse, pLeft, 1, target); 259813573c71Sdrh #ifndef SQLITE_OMIT_FLOATING_POINT 259913573c71Sdrh }else if( pLeft->op==TK_FLOAT ){ 260033e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 260133e619fcSdrh codeReal(v, pLeft->u.zToken, 1, target); 260213573c71Sdrh #endif 26033c84ddffSdrh }else{ 260410d1edf0Sdrh tempX.op = TK_INTEGER; 260510d1edf0Sdrh tempX.flags = EP_IntValue|EP_TokenOnly; 260610d1edf0Sdrh tempX.u.iValue = 0; 260710d1edf0Sdrh r1 = sqlite3ExprCodeTemp(pParse, &tempX, ®Free1); 2608e55cbd72Sdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free2); 26092dcef11bSdrh sqlite3VdbeAddOp3(v, OP_Subtract, r2, r1, target); 2610c5499befSdrh testcase( regFree2==0 ); 26113c84ddffSdrh } 26129de221dfSdrh inReg = target; 26136e142f54Sdrh break; 26146e142f54Sdrh } 2615bf4133cbSdrh case TK_BITNOT: 26166e142f54Sdrh case TK_NOT: { 26177d176105Sdrh assert( TK_BITNOT==OP_BitNot ); testcase( op==TK_BITNOT ); 26187d176105Sdrh assert( TK_NOT==OP_Not ); testcase( op==TK_NOT ); 2619e99fa2afSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 2620e99fa2afSdrh testcase( regFree1==0 ); 2621e99fa2afSdrh inReg = target; 2622e99fa2afSdrh sqlite3VdbeAddOp2(v, op, r1, inReg); 2623cce7d176Sdrh break; 2624cce7d176Sdrh } 2625cce7d176Sdrh case TK_ISNULL: 2626cce7d176Sdrh case TK_NOTNULL: { 26276a288a33Sdrh int addr; 26287d176105Sdrh assert( TK_ISNULL==OP_IsNull ); testcase( op==TK_ISNULL ); 26297d176105Sdrh assert( TK_NOTNULL==OP_NotNull ); testcase( op==TK_NOTNULL ); 26309de221dfSdrh sqlite3VdbeAddOp2(v, OP_Integer, 1, target); 26312dcef11bSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 2632c5499befSdrh testcase( regFree1==0 ); 26337d176105Sdrh addr = sqlite3VdbeAddOp1(v, op, r1); 26347d176105Sdrh VdbeCoverageIf(v, op==TK_ISNULL); 26357d176105Sdrh VdbeCoverageIf(v, op==TK_NOTNULL); 26369de221dfSdrh sqlite3VdbeAddOp2(v, OP_AddImm, target, -1); 26376a288a33Sdrh sqlite3VdbeJumpHere(v, addr); 2638a37cdde0Sdanielk1977 break; 2639f2bc013cSdrh } 26402282792aSdrh case TK_AGG_FUNCTION: { 264113449892Sdrh AggInfo *pInfo = pExpr->pAggInfo; 26427e56e711Sdrh if( pInfo==0 ){ 264333e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 264433e619fcSdrh sqlite3ErrorMsg(pParse, "misuse of aggregate: %s()", pExpr->u.zToken); 26457e56e711Sdrh }else{ 26469de221dfSdrh inReg = pInfo->aFunc[pExpr->iAgg].iMem; 26477e56e711Sdrh } 26482282792aSdrh break; 26492282792aSdrh } 2650cce7d176Sdrh case TK_FUNCTION: { 265112ffee8cSdrh ExprList *pFarg; /* List of function arguments */ 265212ffee8cSdrh int nFarg; /* Number of function arguments */ 265312ffee8cSdrh FuncDef *pDef; /* The function definition object */ 265412ffee8cSdrh int nId; /* Length of the function name in bytes */ 265512ffee8cSdrh const char *zId; /* The function name */ 2656693e6719Sdrh u32 constMask = 0; /* Mask of function arguments that are constant */ 265712ffee8cSdrh int i; /* Loop counter */ 265812ffee8cSdrh u8 enc = ENC(db); /* The text encoding used by this database */ 265912ffee8cSdrh CollSeq *pColl = 0; /* A collating sequence */ 266017435752Sdrh 26616ab3a2ecSdanielk1977 assert( !ExprHasProperty(pExpr, EP_xIsSelect) ); 2662c5cd1249Sdrh if( ExprHasProperty(pExpr, EP_TokenOnly) ){ 266312ffee8cSdrh pFarg = 0; 266412ffee8cSdrh }else{ 266512ffee8cSdrh pFarg = pExpr->x.pList; 266612ffee8cSdrh } 266712ffee8cSdrh nFarg = pFarg ? pFarg->nExpr : 0; 266833e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 266933e619fcSdrh zId = pExpr->u.zToken; 2670b7916a78Sdrh nId = sqlite3Strlen30(zId); 267112ffee8cSdrh pDef = sqlite3FindFunction(db, zId, nId, nFarg, enc, 0); 2672feb306f5Sdrh if( pDef==0 ){ 2673feb306f5Sdrh sqlite3ErrorMsg(pParse, "unknown function: %.*s()", nId, zId); 2674feb306f5Sdrh break; 2675feb306f5Sdrh } 2676ae6bb957Sdrh 2677ae6bb957Sdrh /* Attempt a direct implementation of the built-in COALESCE() and 2678ae6bb957Sdrh ** IFNULL() functions. This avoids unnecessary evalation of 2679ae6bb957Sdrh ** arguments past the first non-NULL argument. 2680ae6bb957Sdrh */ 2681d36e1041Sdrh if( pDef->funcFlags & SQLITE_FUNC_COALESCE ){ 2682ae6bb957Sdrh int endCoalesce = sqlite3VdbeMakeLabel(v); 2683ae6bb957Sdrh assert( nFarg>=2 ); 2684ae6bb957Sdrh sqlite3ExprCode(pParse, pFarg->a[0].pExpr, target); 2685ae6bb957Sdrh for(i=1; i<nFarg; i++){ 2686ae6bb957Sdrh sqlite3VdbeAddOp2(v, OP_NotNull, target, endCoalesce); 2687688852abSdrh VdbeCoverage(v); 2688f49f3523Sdrh sqlite3ExprCacheRemove(pParse, target, 1); 2689ae6bb957Sdrh sqlite3ExprCachePush(pParse); 2690ae6bb957Sdrh sqlite3ExprCode(pParse, pFarg->a[i].pExpr, target); 2691ae6bb957Sdrh sqlite3ExprCachePop(pParse, 1); 2692ae6bb957Sdrh } 2693ae6bb957Sdrh sqlite3VdbeResolveLabel(v, endCoalesce); 2694ae6bb957Sdrh break; 2695ae6bb957Sdrh } 2696ae6bb957Sdrh 2697cca9f3d2Sdrh /* The UNLIKELY() function is a no-op. The result is the value 2698cca9f3d2Sdrh ** of the first argument. 2699cca9f3d2Sdrh */ 2700cca9f3d2Sdrh if( pDef->funcFlags & SQLITE_FUNC_UNLIKELY ){ 2701cca9f3d2Sdrh assert( nFarg>=1 ); 2702cca9f3d2Sdrh sqlite3ExprCode(pParse, pFarg->a[0].pExpr, target); 2703cca9f3d2Sdrh break; 2704cca9f3d2Sdrh } 2705ae6bb957Sdrh 2706d1a01edaSdrh for(i=0; i<nFarg; i++){ 2707d1a01edaSdrh if( i<32 && sqlite3ExprIsConstant(pFarg->a[i].pExpr) ){ 2708693e6719Sdrh testcase( i==31 ); 2709693e6719Sdrh constMask |= MASKBIT32(i); 2710d1a01edaSdrh } 2711d1a01edaSdrh if( (pDef->funcFlags & SQLITE_FUNC_NEEDCOLL)!=0 && !pColl ){ 2712d1a01edaSdrh pColl = sqlite3ExprCollSeq(pParse, pFarg->a[i].pExpr); 2713d1a01edaSdrh } 2714d1a01edaSdrh } 271512ffee8cSdrh if( pFarg ){ 2716d1a01edaSdrh if( constMask ){ 2717d1a01edaSdrh r1 = pParse->nMem+1; 2718d1a01edaSdrh pParse->nMem += nFarg; 2719d1a01edaSdrh }else{ 272012ffee8cSdrh r1 = sqlite3GetTempRange(pParse, nFarg); 2721d1a01edaSdrh } 2722a748fdccSdrh 2723a748fdccSdrh /* For length() and typeof() functions with a column argument, 2724a748fdccSdrh ** set the P5 parameter to the OP_Column opcode to OPFLAG_LENGTHARG 2725a748fdccSdrh ** or OPFLAG_TYPEOFARG respectively, to avoid unnecessary data 2726a748fdccSdrh ** loading. 2727a748fdccSdrh */ 2728d36e1041Sdrh if( (pDef->funcFlags & (SQLITE_FUNC_LENGTH|SQLITE_FUNC_TYPEOF))!=0 ){ 27294e245a4cSdrh u8 exprOp; 2730a748fdccSdrh assert( nFarg==1 ); 2731a748fdccSdrh assert( pFarg->a[0].pExpr!=0 ); 27324e245a4cSdrh exprOp = pFarg->a[0].pExpr->op; 27334e245a4cSdrh if( exprOp==TK_COLUMN || exprOp==TK_AGG_COLUMN ){ 2734a748fdccSdrh assert( SQLITE_FUNC_LENGTH==OPFLAG_LENGTHARG ); 2735a748fdccSdrh assert( SQLITE_FUNC_TYPEOF==OPFLAG_TYPEOFARG ); 2736b1fba286Sdrh testcase( pDef->funcFlags & OPFLAG_LENGTHARG ); 2737b1fba286Sdrh pFarg->a[0].pExpr->op2 = 2738b1fba286Sdrh pDef->funcFlags & (OPFLAG_LENGTHARG|OPFLAG_TYPEOFARG); 2739a748fdccSdrh } 2740a748fdccSdrh } 2741a748fdccSdrh 2742d7d385ddSdrh sqlite3ExprCachePush(pParse); /* Ticket 2ea2425d34be */ 2743d1a01edaSdrh sqlite3ExprCodeExprList(pParse, pFarg, r1, 2744d1a01edaSdrh SQLITE_ECEL_DUP|SQLITE_ECEL_FACTOR); 2745d7d385ddSdrh sqlite3ExprCachePop(pParse, 1); /* Ticket 2ea2425d34be */ 2746892d3179Sdrh }else{ 274712ffee8cSdrh r1 = 0; 2748892d3179Sdrh } 2749b7f6f68fSdrh #ifndef SQLITE_OMIT_VIRTUALTABLE 2750a43fa227Sdrh /* Possibly overload the function if the first argument is 2751a43fa227Sdrh ** a virtual table column. 2752a43fa227Sdrh ** 2753a43fa227Sdrh ** For infix functions (LIKE, GLOB, REGEXP, and MATCH) use the 2754a43fa227Sdrh ** second argument, not the first, as the argument to test to 2755a43fa227Sdrh ** see if it is a column in a virtual table. This is done because 2756a43fa227Sdrh ** the left operand of infix functions (the operand we want to 2757a43fa227Sdrh ** control overloading) ends up as the second argument to the 2758a43fa227Sdrh ** function. The expression "A glob B" is equivalent to 2759a43fa227Sdrh ** "glob(B,A). We want to use the A in "A glob B" to test 2760a43fa227Sdrh ** for function overloading. But we use the B term in "glob(B,A)". 2761a43fa227Sdrh */ 276212ffee8cSdrh if( nFarg>=2 && (pExpr->flags & EP_InfixFunc) ){ 276312ffee8cSdrh pDef = sqlite3VtabOverloadFunction(db, pDef, nFarg, pFarg->a[1].pExpr); 276412ffee8cSdrh }else if( nFarg>0 ){ 276512ffee8cSdrh pDef = sqlite3VtabOverloadFunction(db, pDef, nFarg, pFarg->a[0].pExpr); 2766b7f6f68fSdrh } 2767b7f6f68fSdrh #endif 2768d36e1041Sdrh if( pDef->funcFlags & SQLITE_FUNC_NEEDCOLL ){ 27698b213899Sdrh if( !pColl ) pColl = db->pDfltColl; 277066a5167bSdrh sqlite3VdbeAddOp4(v, OP_CollSeq, 0, 0, 0, (char *)pColl, P4_COLLSEQ); 2771682f68b0Sdanielk1977 } 27722dcef11bSdrh sqlite3VdbeAddOp4(v, OP_Function, constMask, r1, target, 277366a5167bSdrh (char*)pDef, P4_FUNCDEF); 277412ffee8cSdrh sqlite3VdbeChangeP5(v, (u8)nFarg); 2775d1a01edaSdrh if( nFarg && constMask==0 ){ 277612ffee8cSdrh sqlite3ReleaseTempRange(pParse, r1, nFarg); 27772dcef11bSdrh } 27786ec2733bSdrh break; 27796ec2733bSdrh } 2780fe2093d7Sdrh #ifndef SQLITE_OMIT_SUBQUERY 2781fe2093d7Sdrh case TK_EXISTS: 278219a775c2Sdrh case TK_SELECT: { 2783c5499befSdrh testcase( op==TK_EXISTS ); 2784c5499befSdrh testcase( op==TK_SELECT ); 27851450bc6eSdrh inReg = sqlite3CodeSubselect(pParse, pExpr, 0, 0); 278619a775c2Sdrh break; 278719a775c2Sdrh } 2788fef5208cSdrh case TK_IN: { 2789e3365e6cSdrh int destIfFalse = sqlite3VdbeMakeLabel(v); 2790e3365e6cSdrh int destIfNull = sqlite3VdbeMakeLabel(v); 2791e3365e6cSdrh sqlite3VdbeAddOp2(v, OP_Null, 0, target); 2792e3365e6cSdrh sqlite3ExprCodeIN(pParse, pExpr, destIfFalse, destIfNull); 279366ba23ceSdrh sqlite3VdbeAddOp2(v, OP_Integer, 1, target); 2794e3365e6cSdrh sqlite3VdbeResolveLabel(v, destIfFalse); 2795e3365e6cSdrh sqlite3VdbeAddOp2(v, OP_AddImm, target, 0); 2796e3365e6cSdrh sqlite3VdbeResolveLabel(v, destIfNull); 2797fef5208cSdrh break; 2798fef5208cSdrh } 2799e3365e6cSdrh #endif /* SQLITE_OMIT_SUBQUERY */ 2800e3365e6cSdrh 2801e3365e6cSdrh 28022dcef11bSdrh /* 28032dcef11bSdrh ** x BETWEEN y AND z 28042dcef11bSdrh ** 28052dcef11bSdrh ** This is equivalent to 28062dcef11bSdrh ** 28072dcef11bSdrh ** x>=y AND x<=z 28082dcef11bSdrh ** 28092dcef11bSdrh ** X is stored in pExpr->pLeft. 28102dcef11bSdrh ** Y is stored in pExpr->pList->a[0].pExpr. 28112dcef11bSdrh ** Z is stored in pExpr->pList->a[1].pExpr. 28122dcef11bSdrh */ 2813fef5208cSdrh case TK_BETWEEN: { 2814be5c89acSdrh Expr *pLeft = pExpr->pLeft; 28156ab3a2ecSdanielk1977 struct ExprList_item *pLItem = pExpr->x.pList->a; 2816be5c89acSdrh Expr *pRight = pLItem->pExpr; 281735573356Sdrh 2818b6da74ebSdrh r1 = sqlite3ExprCodeTemp(pParse, pLeft, ®Free1); 2819b6da74ebSdrh r2 = sqlite3ExprCodeTemp(pParse, pRight, ®Free2); 2820c5499befSdrh testcase( regFree1==0 ); 2821c5499befSdrh testcase( regFree2==0 ); 28222dcef11bSdrh r3 = sqlite3GetTempReg(pParse); 2823678ccce8Sdrh r4 = sqlite3GetTempReg(pParse); 282435573356Sdrh codeCompare(pParse, pLeft, pRight, OP_Ge, 28257d176105Sdrh r1, r2, r3, SQLITE_STOREP2); VdbeCoverage(v); 2826be5c89acSdrh pLItem++; 2827be5c89acSdrh pRight = pLItem->pExpr; 28282dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree2); 28292dcef11bSdrh r2 = sqlite3ExprCodeTemp(pParse, pRight, ®Free2); 2830c5499befSdrh testcase( regFree2==0 ); 2831678ccce8Sdrh codeCompare(pParse, pLeft, pRight, OP_Le, r1, r2, r4, SQLITE_STOREP2); 2832688852abSdrh VdbeCoverage(v); 2833678ccce8Sdrh sqlite3VdbeAddOp3(v, OP_And, r3, r4, target); 28342dcef11bSdrh sqlite3ReleaseTempReg(pParse, r3); 2835678ccce8Sdrh sqlite3ReleaseTempReg(pParse, r4); 2836fef5208cSdrh break; 2837fef5208cSdrh } 2838ae80ddeaSdrh case TK_COLLATE: 28394f07e5fbSdrh case TK_UPLUS: { 28402dcef11bSdrh inReg = sqlite3ExprCodeTarget(pParse, pExpr->pLeft, target); 2841a2e00042Sdrh break; 2842a2e00042Sdrh } 28432dcef11bSdrh 2844165921a7Sdan case TK_TRIGGER: { 284565a7cd16Sdan /* If the opcode is TK_TRIGGER, then the expression is a reference 284665a7cd16Sdan ** to a column in the new.* or old.* pseudo-tables available to 284765a7cd16Sdan ** trigger programs. In this case Expr.iTable is set to 1 for the 284865a7cd16Sdan ** new.* pseudo-table, or 0 for the old.* pseudo-table. Expr.iColumn 284965a7cd16Sdan ** is set to the column of the pseudo-table to read, or to -1 to 285065a7cd16Sdan ** read the rowid field. 285165a7cd16Sdan ** 285265a7cd16Sdan ** The expression is implemented using an OP_Param opcode. The p1 285365a7cd16Sdan ** parameter is set to 0 for an old.rowid reference, or to (i+1) 285465a7cd16Sdan ** to reference another column of the old.* pseudo-table, where 285565a7cd16Sdan ** i is the index of the column. For a new.rowid reference, p1 is 285665a7cd16Sdan ** set to (n+1), where n is the number of columns in each pseudo-table. 285765a7cd16Sdan ** For a reference to any other column in the new.* pseudo-table, p1 285865a7cd16Sdan ** is set to (n+2+i), where n and i are as defined previously. For 285965a7cd16Sdan ** example, if the table on which triggers are being fired is 286065a7cd16Sdan ** declared as: 286165a7cd16Sdan ** 286265a7cd16Sdan ** CREATE TABLE t1(a, b); 286365a7cd16Sdan ** 286465a7cd16Sdan ** Then p1 is interpreted as follows: 286565a7cd16Sdan ** 286665a7cd16Sdan ** p1==0 -> old.rowid p1==3 -> new.rowid 286765a7cd16Sdan ** p1==1 -> old.a p1==4 -> new.a 286865a7cd16Sdan ** p1==2 -> old.b p1==5 -> new.b 286965a7cd16Sdan */ 28702832ad42Sdan Table *pTab = pExpr->pTab; 287165a7cd16Sdan int p1 = pExpr->iTable * (pTab->nCol+1) + 1 + pExpr->iColumn; 287265a7cd16Sdan 287365a7cd16Sdan assert( pExpr->iTable==0 || pExpr->iTable==1 ); 287465a7cd16Sdan assert( pExpr->iColumn>=-1 && pExpr->iColumn<pTab->nCol ); 287565a7cd16Sdan assert( pTab->iPKey<0 || pExpr->iColumn!=pTab->iPKey ); 287665a7cd16Sdan assert( p1>=0 && p1<(pTab->nCol*2+2) ); 287765a7cd16Sdan 287865a7cd16Sdan sqlite3VdbeAddOp2(v, OP_Param, p1, target); 287976d462eeSdan VdbeComment((v, "%s.%s -> $%d", 2880165921a7Sdan (pExpr->iTable ? "new" : "old"), 288176d462eeSdan (pExpr->iColumn<0 ? "rowid" : pExpr->pTab->aCol[pExpr->iColumn].zName), 288276d462eeSdan target 2883165921a7Sdan )); 288465a7cd16Sdan 288544dbca83Sdrh #ifndef SQLITE_OMIT_FLOATING_POINT 288665a7cd16Sdan /* If the column has REAL affinity, it may currently be stored as an 288765a7cd16Sdan ** integer. Use OP_RealAffinity to make sure it is really real. */ 28882832ad42Sdan if( pExpr->iColumn>=0 28892832ad42Sdan && pTab->aCol[pExpr->iColumn].affinity==SQLITE_AFF_REAL 28902832ad42Sdan ){ 28912832ad42Sdan sqlite3VdbeAddOp1(v, OP_RealAffinity, target); 28922832ad42Sdan } 289344dbca83Sdrh #endif 2894165921a7Sdan break; 2895165921a7Sdan } 2896165921a7Sdan 2897165921a7Sdan 28982dcef11bSdrh /* 28992dcef11bSdrh ** Form A: 29002dcef11bSdrh ** CASE x WHEN e1 THEN r1 WHEN e2 THEN r2 ... WHEN eN THEN rN ELSE y END 29012dcef11bSdrh ** 29022dcef11bSdrh ** Form B: 29032dcef11bSdrh ** CASE WHEN e1 THEN r1 WHEN e2 THEN r2 ... WHEN eN THEN rN ELSE y END 29042dcef11bSdrh ** 29052dcef11bSdrh ** Form A is can be transformed into the equivalent form B as follows: 29062dcef11bSdrh ** CASE WHEN x=e1 THEN r1 WHEN x=e2 THEN r2 ... 29072dcef11bSdrh ** WHEN x=eN THEN rN ELSE y END 29082dcef11bSdrh ** 29092dcef11bSdrh ** X (if it exists) is in pExpr->pLeft. 2910c5cd1249Sdrh ** Y is in the last element of pExpr->x.pList if pExpr->x.pList->nExpr is 2911c5cd1249Sdrh ** odd. The Y is also optional. If the number of elements in x.pList 2912c5cd1249Sdrh ** is even, then Y is omitted and the "otherwise" result is NULL. 29132dcef11bSdrh ** Ei is in pExpr->pList->a[i*2] and Ri is pExpr->pList->a[i*2+1]. 29142dcef11bSdrh ** 29152dcef11bSdrh ** The result of the expression is the Ri for the first matching Ei, 29162dcef11bSdrh ** or if there is no matching Ei, the ELSE term Y, or if there is 29172dcef11bSdrh ** no ELSE term, NULL. 29182dcef11bSdrh */ 291933cd4909Sdrh default: assert( op==TK_CASE ); { 29202dcef11bSdrh int endLabel; /* GOTO label for end of CASE stmt */ 29212dcef11bSdrh int nextCase; /* GOTO label for next WHEN clause */ 29222dcef11bSdrh int nExpr; /* 2x number of WHEN terms */ 29232dcef11bSdrh int i; /* Loop counter */ 29242dcef11bSdrh ExprList *pEList; /* List of WHEN terms */ 29252dcef11bSdrh struct ExprList_item *aListelem; /* Array of WHEN terms */ 29262dcef11bSdrh Expr opCompare; /* The X==Ei expression */ 29272dcef11bSdrh Expr *pX; /* The X expression */ 29281bd10f8aSdrh Expr *pTest = 0; /* X==Ei (form A) or just Ei (form B) */ 2929ceea3321Sdrh VVA_ONLY( int iCacheLevel = pParse->iCacheLevel; ) 293017a7f8ddSdrh 29316ab3a2ecSdanielk1977 assert( !ExprHasProperty(pExpr, EP_xIsSelect) && pExpr->x.pList ); 29326ab3a2ecSdanielk1977 assert(pExpr->x.pList->nExpr > 0); 29336ab3a2ecSdanielk1977 pEList = pExpr->x.pList; 2934be5c89acSdrh aListelem = pEList->a; 2935be5c89acSdrh nExpr = pEList->nExpr; 29362dcef11bSdrh endLabel = sqlite3VdbeMakeLabel(v); 29372dcef11bSdrh if( (pX = pExpr->pLeft)!=0 ){ 293810d1edf0Sdrh tempX = *pX; 293933cd4909Sdrh testcase( pX->op==TK_COLUMN ); 294010d1edf0Sdrh exprToRegister(&tempX, sqlite3ExprCodeTemp(pParse, pX, ®Free1)); 2941c5499befSdrh testcase( regFree1==0 ); 29422dcef11bSdrh opCompare.op = TK_EQ; 294310d1edf0Sdrh opCompare.pLeft = &tempX; 29442dcef11bSdrh pTest = &opCompare; 29458b1db07fSdrh /* Ticket b351d95f9cd5ef17e9d9dbae18f5ca8611190001: 29468b1db07fSdrh ** The value in regFree1 might get SCopy-ed into the file result. 29478b1db07fSdrh ** So make sure that the regFree1 register is not reused for other 29488b1db07fSdrh ** purposes and possibly overwritten. */ 29498b1db07fSdrh regFree1 = 0; 2950cce7d176Sdrh } 2951c5cd1249Sdrh for(i=0; i<nExpr-1; i=i+2){ 2952ceea3321Sdrh sqlite3ExprCachePush(pParse); 29532dcef11bSdrh if( pX ){ 29541bd10f8aSdrh assert( pTest!=0 ); 29552dcef11bSdrh opCompare.pRight = aListelem[i].pExpr; 2956f5905aa7Sdrh }else{ 29572dcef11bSdrh pTest = aListelem[i].pExpr; 295817a7f8ddSdrh } 29592dcef11bSdrh nextCase = sqlite3VdbeMakeLabel(v); 296033cd4909Sdrh testcase( pTest->op==TK_COLUMN ); 29612dcef11bSdrh sqlite3ExprIfFalse(pParse, pTest, nextCase, SQLITE_JUMPIFNULL); 2962c5499befSdrh testcase( aListelem[i+1].pExpr->op==TK_COLUMN ); 29639de221dfSdrh sqlite3ExprCode(pParse, aListelem[i+1].pExpr, target); 29642dcef11bSdrh sqlite3VdbeAddOp2(v, OP_Goto, 0, endLabel); 2965ceea3321Sdrh sqlite3ExprCachePop(pParse, 1); 29662dcef11bSdrh sqlite3VdbeResolveLabel(v, nextCase); 2967f570f011Sdrh } 2968c5cd1249Sdrh if( (nExpr&1)!=0 ){ 2969ceea3321Sdrh sqlite3ExprCachePush(pParse); 2970c5cd1249Sdrh sqlite3ExprCode(pParse, pEList->a[nExpr-1].pExpr, target); 2971ceea3321Sdrh sqlite3ExprCachePop(pParse, 1); 297217a7f8ddSdrh }else{ 29739de221dfSdrh sqlite3VdbeAddOp2(v, OP_Null, 0, target); 297417a7f8ddSdrh } 2975c1f4a19bSdanielk1977 assert( db->mallocFailed || pParse->nErr>0 2976c1f4a19bSdanielk1977 || pParse->iCacheLevel==iCacheLevel ); 29772dcef11bSdrh sqlite3VdbeResolveLabel(v, endLabel); 29786f34903eSdanielk1977 break; 29796f34903eSdanielk1977 } 29805338a5f7Sdanielk1977 #ifndef SQLITE_OMIT_TRIGGER 29816f34903eSdanielk1977 case TK_RAISE: { 2982165921a7Sdan assert( pExpr->affinity==OE_Rollback 2983165921a7Sdan || pExpr->affinity==OE_Abort 2984165921a7Sdan || pExpr->affinity==OE_Fail 2985165921a7Sdan || pExpr->affinity==OE_Ignore 2986165921a7Sdan ); 2987e0af83acSdan if( !pParse->pTriggerTab ){ 2988e0af83acSdan sqlite3ErrorMsg(pParse, 2989e0af83acSdan "RAISE() may only be used within a trigger-program"); 2990e0af83acSdan return 0; 2991e0af83acSdan } 2992e0af83acSdan if( pExpr->affinity==OE_Abort ){ 2993e0af83acSdan sqlite3MayAbort(pParse); 2994e0af83acSdan } 299533e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 2996e0af83acSdan if( pExpr->affinity==OE_Ignore ){ 2997e0af83acSdan sqlite3VdbeAddOp4( 2998e0af83acSdan v, OP_Halt, SQLITE_OK, OE_Ignore, 0, pExpr->u.zToken,0); 2999688852abSdrh VdbeCoverage(v); 3000e0af83acSdan }else{ 3001433dccfbSdrh sqlite3HaltConstraint(pParse, SQLITE_CONSTRAINT_TRIGGER, 3002f9c8ce3cSdrh pExpr->affinity, pExpr->u.zToken, 0, 0); 3003e0af83acSdan } 3004e0af83acSdan 3005ffe07b2dSdrh break; 300617a7f8ddSdrh } 30075338a5f7Sdanielk1977 #endif 3008ffe07b2dSdrh } 30092dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree1); 30102dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree2); 30112dcef11bSdrh return inReg; 30125b6afba9Sdrh } 30132dcef11bSdrh 30142dcef11bSdrh /* 3015d1a01edaSdrh ** Factor out the code of the given expression to initialization time. 3016d1a01edaSdrh */ 3017d673cddaSdrh void sqlite3ExprCodeAtInit( 3018d673cddaSdrh Parse *pParse, /* Parsing context */ 3019d673cddaSdrh Expr *pExpr, /* The expression to code when the VDBE initializes */ 3020d673cddaSdrh int regDest, /* Store the value in this register */ 3021d673cddaSdrh u8 reusable /* True if this expression is reusable */ 3022d673cddaSdrh ){ 3023d1a01edaSdrh ExprList *p; 3024d9f158e7Sdrh assert( ConstFactorOk(pParse) ); 3025d1a01edaSdrh p = pParse->pConstExpr; 3026d1a01edaSdrh pExpr = sqlite3ExprDup(pParse->db, pExpr, 0); 3027d1a01edaSdrh p = sqlite3ExprListAppend(pParse, p, pExpr); 3028d673cddaSdrh if( p ){ 3029d673cddaSdrh struct ExprList_item *pItem = &p->a[p->nExpr-1]; 3030d673cddaSdrh pItem->u.iConstExprReg = regDest; 3031d673cddaSdrh pItem->reusable = reusable; 3032d673cddaSdrh } 3033d1a01edaSdrh pParse->pConstExpr = p; 3034d1a01edaSdrh } 3035d1a01edaSdrh 3036d1a01edaSdrh /* 30372dcef11bSdrh ** Generate code to evaluate an expression and store the results 30382dcef11bSdrh ** into a register. Return the register number where the results 30392dcef11bSdrh ** are stored. 30402dcef11bSdrh ** 30412dcef11bSdrh ** If the register is a temporary register that can be deallocated, 3042678ccce8Sdrh ** then write its number into *pReg. If the result register is not 30432dcef11bSdrh ** a temporary, then set *pReg to zero. 3044f30a969bSdrh ** 3045f30a969bSdrh ** If pExpr is a constant, then this routine might generate this 3046f30a969bSdrh ** code to fill the register in the initialization section of the 3047f30a969bSdrh ** VDBE program, in order to factor it out of the evaluation loop. 30482dcef11bSdrh */ 30492dcef11bSdrh int sqlite3ExprCodeTemp(Parse *pParse, Expr *pExpr, int *pReg){ 3050f30a969bSdrh int r2; 3051f30a969bSdrh pExpr = sqlite3ExprSkipCollate(pExpr); 3052d9f158e7Sdrh if( ConstFactorOk(pParse) 3053f30a969bSdrh && pExpr->op!=TK_REGISTER 3054f30a969bSdrh && sqlite3ExprIsConstantNotJoin(pExpr) 3055f30a969bSdrh ){ 3056f30a969bSdrh ExprList *p = pParse->pConstExpr; 3057f30a969bSdrh int i; 3058f30a969bSdrh *pReg = 0; 3059f30a969bSdrh if( p ){ 3060d673cddaSdrh struct ExprList_item *pItem; 3061d673cddaSdrh for(pItem=p->a, i=p->nExpr; i>0; pItem++, i--){ 3062d673cddaSdrh if( pItem->reusable && sqlite3ExprCompare(pItem->pExpr,pExpr,-1)==0 ){ 3063d673cddaSdrh return pItem->u.iConstExprReg; 3064f30a969bSdrh } 3065f30a969bSdrh } 3066f30a969bSdrh } 3067f30a969bSdrh r2 = ++pParse->nMem; 3068d673cddaSdrh sqlite3ExprCodeAtInit(pParse, pExpr, r2, 1); 3069f30a969bSdrh }else{ 30702dcef11bSdrh int r1 = sqlite3GetTempReg(pParse); 3071f30a969bSdrh r2 = sqlite3ExprCodeTarget(pParse, pExpr, r1); 30722dcef11bSdrh if( r2==r1 ){ 30732dcef11bSdrh *pReg = r1; 30742dcef11bSdrh }else{ 30752dcef11bSdrh sqlite3ReleaseTempReg(pParse, r1); 30762dcef11bSdrh *pReg = 0; 30772dcef11bSdrh } 3078f30a969bSdrh } 30792dcef11bSdrh return r2; 30802dcef11bSdrh } 30812dcef11bSdrh 30822dcef11bSdrh /* 30832dcef11bSdrh ** Generate code that will evaluate expression pExpr and store the 30842dcef11bSdrh ** results in register target. The results are guaranteed to appear 30852dcef11bSdrh ** in register target. 30862dcef11bSdrh */ 308705a86c5cSdrh void sqlite3ExprCode(Parse *pParse, Expr *pExpr, int target){ 30889cbf3425Sdrh int inReg; 30899cbf3425Sdrh 30909cbf3425Sdrh assert( target>0 && target<=pParse->nMem ); 3091ebc16717Sdrh if( pExpr && pExpr->op==TK_REGISTER ){ 3092ebc16717Sdrh sqlite3VdbeAddOp2(pParse->pVdbe, OP_Copy, pExpr->iTable, target); 3093ebc16717Sdrh }else{ 30949cbf3425Sdrh inReg = sqlite3ExprCodeTarget(pParse, pExpr, target); 30950e359b30Sdrh assert( pParse->pVdbe || pParse->db->mallocFailed ); 30960e359b30Sdrh if( inReg!=target && pParse->pVdbe ){ 30979cbf3425Sdrh sqlite3VdbeAddOp2(pParse->pVdbe, OP_SCopy, inReg, target); 309817a7f8ddSdrh } 3099ebc16717Sdrh } 310005a86c5cSdrh } 310105a86c5cSdrh 310205a86c5cSdrh /* 310305a86c5cSdrh ** Generate code that will evaluate expression pExpr and store the 310405a86c5cSdrh ** results in register target. The results are guaranteed to appear 310505a86c5cSdrh ** in register target. If the expression is constant, then this routine 310605a86c5cSdrh ** might choose to code the expression at initialization time. 310705a86c5cSdrh */ 310805a86c5cSdrh void sqlite3ExprCodeFactorable(Parse *pParse, Expr *pExpr, int target){ 310905a86c5cSdrh if( pParse->okConstFactor && sqlite3ExprIsConstant(pExpr) ){ 311005a86c5cSdrh sqlite3ExprCodeAtInit(pParse, pExpr, target, 0); 311105a86c5cSdrh }else{ 311205a86c5cSdrh sqlite3ExprCode(pParse, pExpr, target); 311305a86c5cSdrh } 3114cce7d176Sdrh } 3115cce7d176Sdrh 3116cce7d176Sdrh /* 31172dcef11bSdrh ** Generate code that evalutes the given expression and puts the result 3118de4fcfddSdrh ** in register target. 311925303780Sdrh ** 31202dcef11bSdrh ** Also make a copy of the expression results into another "cache" register 31212dcef11bSdrh ** and modify the expression so that the next time it is evaluated, 31222dcef11bSdrh ** the result is a copy of the cache register. 31232dcef11bSdrh ** 31242dcef11bSdrh ** This routine is used for expressions that are used multiple 31252dcef11bSdrh ** times. They are evaluated once and the results of the expression 31262dcef11bSdrh ** are reused. 312725303780Sdrh */ 312805a86c5cSdrh void sqlite3ExprCodeAndCache(Parse *pParse, Expr *pExpr, int target){ 312925303780Sdrh Vdbe *v = pParse->pVdbe; 313025303780Sdrh int iMem; 313105a86c5cSdrh 313205a86c5cSdrh assert( target>0 ); 313305a86c5cSdrh assert( pExpr->op!=TK_REGISTER ); 313405a86c5cSdrh sqlite3ExprCode(pParse, pExpr, target); 31352dcef11bSdrh iMem = ++pParse->nMem; 313605a86c5cSdrh sqlite3VdbeAddOp2(v, OP_Copy, target, iMem); 3137a4c3c87eSdrh exprToRegister(pExpr, iMem); 313825303780Sdrh } 31392dcef11bSdrh 3140678a9aa7Sdrh #if defined(SQLITE_ENABLE_TREE_EXPLAIN) 31417e02e5e6Sdrh /* 31427e02e5e6Sdrh ** Generate a human-readable explanation of an expression tree. 31437e02e5e6Sdrh */ 3144a84203a0Sdrh void sqlite3ExplainExpr(Vdbe *pOut, Expr *pExpr){ 3145a84203a0Sdrh int op; /* The opcode being coded */ 3146a84203a0Sdrh const char *zBinOp = 0; /* Binary operator */ 3147a84203a0Sdrh const char *zUniOp = 0; /* Unary operator */ 3148a84203a0Sdrh if( pExpr==0 ){ 3149a84203a0Sdrh op = TK_NULL; 31507e02e5e6Sdrh }else{ 3151a84203a0Sdrh op = pExpr->op; 31527e02e5e6Sdrh } 3153a84203a0Sdrh switch( op ){ 3154a84203a0Sdrh case TK_AGG_COLUMN: { 315504b8342bSdrh sqlite3ExplainPrintf(pOut, "AGG{%d:%d}", 315604b8342bSdrh pExpr->iTable, pExpr->iColumn); 3157a84203a0Sdrh break; 31587e02e5e6Sdrh } 3159a84203a0Sdrh case TK_COLUMN: { 3160a84203a0Sdrh if( pExpr->iTable<0 ){ 3161a84203a0Sdrh /* This only happens when coding check constraints */ 3162a84203a0Sdrh sqlite3ExplainPrintf(pOut, "COLUMN(%d)", pExpr->iColumn); 3163a84203a0Sdrh }else{ 316404b8342bSdrh sqlite3ExplainPrintf(pOut, "{%d:%d}", 316504b8342bSdrh pExpr->iTable, pExpr->iColumn); 3166a84203a0Sdrh } 3167a84203a0Sdrh break; 3168a84203a0Sdrh } 3169a84203a0Sdrh case TK_INTEGER: { 3170a84203a0Sdrh if( pExpr->flags & EP_IntValue ){ 317104b8342bSdrh sqlite3ExplainPrintf(pOut, "%d", pExpr->u.iValue); 3172a84203a0Sdrh }else{ 317304b8342bSdrh sqlite3ExplainPrintf(pOut, "%s", pExpr->u.zToken); 3174a84203a0Sdrh } 3175a84203a0Sdrh break; 3176a84203a0Sdrh } 3177a84203a0Sdrh #ifndef SQLITE_OMIT_FLOATING_POINT 3178a84203a0Sdrh case TK_FLOAT: { 317904b8342bSdrh sqlite3ExplainPrintf(pOut,"%s", pExpr->u.zToken); 3180a84203a0Sdrh break; 3181a84203a0Sdrh } 3182a84203a0Sdrh #endif 3183a84203a0Sdrh case TK_STRING: { 318404b8342bSdrh sqlite3ExplainPrintf(pOut,"%Q", pExpr->u.zToken); 3185a84203a0Sdrh break; 3186a84203a0Sdrh } 3187a84203a0Sdrh case TK_NULL: { 3188a84203a0Sdrh sqlite3ExplainPrintf(pOut,"NULL"); 3189a84203a0Sdrh break; 3190a84203a0Sdrh } 3191a84203a0Sdrh #ifndef SQLITE_OMIT_BLOB_LITERAL 3192a84203a0Sdrh case TK_BLOB: { 319304b8342bSdrh sqlite3ExplainPrintf(pOut,"%s", pExpr->u.zToken); 3194a84203a0Sdrh break; 3195a84203a0Sdrh } 3196a84203a0Sdrh #endif 3197a84203a0Sdrh case TK_VARIABLE: { 3198a84203a0Sdrh sqlite3ExplainPrintf(pOut,"VARIABLE(%s,%d)", 3199a84203a0Sdrh pExpr->u.zToken, pExpr->iColumn); 3200a84203a0Sdrh break; 3201a84203a0Sdrh } 3202a84203a0Sdrh case TK_REGISTER: { 3203a84203a0Sdrh sqlite3ExplainPrintf(pOut,"REGISTER(%d)", pExpr->iTable); 3204a84203a0Sdrh break; 3205a84203a0Sdrh } 3206a84203a0Sdrh case TK_AS: { 3207a84203a0Sdrh sqlite3ExplainExpr(pOut, pExpr->pLeft); 3208a84203a0Sdrh break; 3209a84203a0Sdrh } 3210a84203a0Sdrh #ifndef SQLITE_OMIT_CAST 3211a84203a0Sdrh case TK_CAST: { 3212a84203a0Sdrh /* Expressions of the form: CAST(pLeft AS token) */ 3213a84203a0Sdrh const char *zAff = "unk"; 3214fdaac671Sdrh switch( sqlite3AffinityType(pExpr->u.zToken, 0) ){ 3215a84203a0Sdrh case SQLITE_AFF_TEXT: zAff = "TEXT"; break; 3216a84203a0Sdrh case SQLITE_AFF_NONE: zAff = "NONE"; break; 3217a84203a0Sdrh case SQLITE_AFF_NUMERIC: zAff = "NUMERIC"; break; 3218a84203a0Sdrh case SQLITE_AFF_INTEGER: zAff = "INTEGER"; break; 3219a84203a0Sdrh case SQLITE_AFF_REAL: zAff = "REAL"; break; 3220a84203a0Sdrh } 3221a84203a0Sdrh sqlite3ExplainPrintf(pOut, "CAST-%s(", zAff); 3222a84203a0Sdrh sqlite3ExplainExpr(pOut, pExpr->pLeft); 3223a84203a0Sdrh sqlite3ExplainPrintf(pOut, ")"); 3224a84203a0Sdrh break; 3225a84203a0Sdrh } 3226a84203a0Sdrh #endif /* SQLITE_OMIT_CAST */ 3227a84203a0Sdrh case TK_LT: zBinOp = "LT"; break; 3228a84203a0Sdrh case TK_LE: zBinOp = "LE"; break; 3229a84203a0Sdrh case TK_GT: zBinOp = "GT"; break; 3230a84203a0Sdrh case TK_GE: zBinOp = "GE"; break; 3231a84203a0Sdrh case TK_NE: zBinOp = "NE"; break; 3232a84203a0Sdrh case TK_EQ: zBinOp = "EQ"; break; 3233a84203a0Sdrh case TK_IS: zBinOp = "IS"; break; 3234a84203a0Sdrh case TK_ISNOT: zBinOp = "ISNOT"; break; 3235a84203a0Sdrh case TK_AND: zBinOp = "AND"; break; 3236a84203a0Sdrh case TK_OR: zBinOp = "OR"; break; 3237a84203a0Sdrh case TK_PLUS: zBinOp = "ADD"; break; 3238a84203a0Sdrh case TK_STAR: zBinOp = "MUL"; break; 3239a84203a0Sdrh case TK_MINUS: zBinOp = "SUB"; break; 3240a84203a0Sdrh case TK_REM: zBinOp = "REM"; break; 3241a84203a0Sdrh case TK_BITAND: zBinOp = "BITAND"; break; 3242a84203a0Sdrh case TK_BITOR: zBinOp = "BITOR"; break; 3243a84203a0Sdrh case TK_SLASH: zBinOp = "DIV"; break; 3244a84203a0Sdrh case TK_LSHIFT: zBinOp = "LSHIFT"; break; 3245a84203a0Sdrh case TK_RSHIFT: zBinOp = "RSHIFT"; break; 3246a84203a0Sdrh case TK_CONCAT: zBinOp = "CONCAT"; break; 3247a84203a0Sdrh 3248a84203a0Sdrh case TK_UMINUS: zUniOp = "UMINUS"; break; 3249a84203a0Sdrh case TK_UPLUS: zUniOp = "UPLUS"; break; 3250a84203a0Sdrh case TK_BITNOT: zUniOp = "BITNOT"; break; 3251a84203a0Sdrh case TK_NOT: zUniOp = "NOT"; break; 3252a84203a0Sdrh case TK_ISNULL: zUniOp = "ISNULL"; break; 3253a84203a0Sdrh case TK_NOTNULL: zUniOp = "NOTNULL"; break; 3254a84203a0Sdrh 32557a66da13Sdrh case TK_COLLATE: { 32567a66da13Sdrh sqlite3ExplainExpr(pOut, pExpr->pLeft); 32577a66da13Sdrh sqlite3ExplainPrintf(pOut,".COLLATE(%s)",pExpr->u.zToken); 32587a66da13Sdrh break; 32597a66da13Sdrh } 32607a66da13Sdrh 3261a84203a0Sdrh case TK_AGG_FUNCTION: 3262a84203a0Sdrh case TK_FUNCTION: { 3263a84203a0Sdrh ExprList *pFarg; /* List of function arguments */ 3264c5cd1249Sdrh if( ExprHasProperty(pExpr, EP_TokenOnly) ){ 3265a84203a0Sdrh pFarg = 0; 3266a84203a0Sdrh }else{ 3267a84203a0Sdrh pFarg = pExpr->x.pList; 3268a84203a0Sdrh } 3269ed551b95Sdrh if( op==TK_AGG_FUNCTION ){ 3270ed551b95Sdrh sqlite3ExplainPrintf(pOut, "AGG_FUNCTION%d:%s(", 3271ed551b95Sdrh pExpr->op2, pExpr->u.zToken); 3272ed551b95Sdrh }else{ 3273ed551b95Sdrh sqlite3ExplainPrintf(pOut, "FUNCTION:%s(", pExpr->u.zToken); 3274ed551b95Sdrh } 3275a84203a0Sdrh if( pFarg ){ 3276a84203a0Sdrh sqlite3ExplainExprList(pOut, pFarg); 32777e02e5e6Sdrh } 32787e02e5e6Sdrh sqlite3ExplainPrintf(pOut, ")"); 3279a84203a0Sdrh break; 3280a84203a0Sdrh } 3281a84203a0Sdrh #ifndef SQLITE_OMIT_SUBQUERY 3282a84203a0Sdrh case TK_EXISTS: { 3283a84203a0Sdrh sqlite3ExplainPrintf(pOut, "EXISTS("); 3284a84203a0Sdrh sqlite3ExplainSelect(pOut, pExpr->x.pSelect); 3285a84203a0Sdrh sqlite3ExplainPrintf(pOut,")"); 3286a84203a0Sdrh break; 3287a84203a0Sdrh } 3288a84203a0Sdrh case TK_SELECT: { 3289a84203a0Sdrh sqlite3ExplainPrintf(pOut, "("); 3290a84203a0Sdrh sqlite3ExplainSelect(pOut, pExpr->x.pSelect); 3291a84203a0Sdrh sqlite3ExplainPrintf(pOut, ")"); 3292a84203a0Sdrh break; 3293a84203a0Sdrh } 3294a84203a0Sdrh case TK_IN: { 3295a84203a0Sdrh sqlite3ExplainPrintf(pOut, "IN("); 3296a84203a0Sdrh sqlite3ExplainExpr(pOut, pExpr->pLeft); 3297a84203a0Sdrh sqlite3ExplainPrintf(pOut, ","); 3298a84203a0Sdrh if( ExprHasProperty(pExpr, EP_xIsSelect) ){ 3299a84203a0Sdrh sqlite3ExplainSelect(pOut, pExpr->x.pSelect); 3300a84203a0Sdrh }else{ 3301a84203a0Sdrh sqlite3ExplainExprList(pOut, pExpr->x.pList); 3302a84203a0Sdrh } 3303a84203a0Sdrh sqlite3ExplainPrintf(pOut, ")"); 3304a84203a0Sdrh break; 3305a84203a0Sdrh } 3306a84203a0Sdrh #endif /* SQLITE_OMIT_SUBQUERY */ 3307a84203a0Sdrh 3308a84203a0Sdrh /* 3309a84203a0Sdrh ** x BETWEEN y AND z 3310a84203a0Sdrh ** 3311a84203a0Sdrh ** This is equivalent to 3312a84203a0Sdrh ** 3313a84203a0Sdrh ** x>=y AND x<=z 3314a84203a0Sdrh ** 3315a84203a0Sdrh ** X is stored in pExpr->pLeft. 3316a84203a0Sdrh ** Y is stored in pExpr->pList->a[0].pExpr. 3317a84203a0Sdrh ** Z is stored in pExpr->pList->a[1].pExpr. 3318a84203a0Sdrh */ 3319a84203a0Sdrh case TK_BETWEEN: { 3320a84203a0Sdrh Expr *pX = pExpr->pLeft; 3321a84203a0Sdrh Expr *pY = pExpr->x.pList->a[0].pExpr; 3322a84203a0Sdrh Expr *pZ = pExpr->x.pList->a[1].pExpr; 3323a84203a0Sdrh sqlite3ExplainPrintf(pOut, "BETWEEN("); 3324a84203a0Sdrh sqlite3ExplainExpr(pOut, pX); 3325a84203a0Sdrh sqlite3ExplainPrintf(pOut, ","); 3326a84203a0Sdrh sqlite3ExplainExpr(pOut, pY); 3327a84203a0Sdrh sqlite3ExplainPrintf(pOut, ","); 3328a84203a0Sdrh sqlite3ExplainExpr(pOut, pZ); 3329a84203a0Sdrh sqlite3ExplainPrintf(pOut, ")"); 3330a84203a0Sdrh break; 3331a84203a0Sdrh } 3332a84203a0Sdrh case TK_TRIGGER: { 3333a84203a0Sdrh /* If the opcode is TK_TRIGGER, then the expression is a reference 3334a84203a0Sdrh ** to a column in the new.* or old.* pseudo-tables available to 3335a84203a0Sdrh ** trigger programs. In this case Expr.iTable is set to 1 for the 3336a84203a0Sdrh ** new.* pseudo-table, or 0 for the old.* pseudo-table. Expr.iColumn 3337a84203a0Sdrh ** is set to the column of the pseudo-table to read, or to -1 to 3338a84203a0Sdrh ** read the rowid field. 3339a84203a0Sdrh */ 3340a84203a0Sdrh sqlite3ExplainPrintf(pOut, "%s(%d)", 3341a84203a0Sdrh pExpr->iTable ? "NEW" : "OLD", pExpr->iColumn); 3342a84203a0Sdrh break; 3343a84203a0Sdrh } 3344a84203a0Sdrh case TK_CASE: { 3345a84203a0Sdrh sqlite3ExplainPrintf(pOut, "CASE("); 3346a84203a0Sdrh sqlite3ExplainExpr(pOut, pExpr->pLeft); 3347a84203a0Sdrh sqlite3ExplainPrintf(pOut, ","); 3348a84203a0Sdrh sqlite3ExplainExprList(pOut, pExpr->x.pList); 3349a84203a0Sdrh break; 3350a84203a0Sdrh } 3351a84203a0Sdrh #ifndef SQLITE_OMIT_TRIGGER 3352a84203a0Sdrh case TK_RAISE: { 3353a84203a0Sdrh const char *zType = "unk"; 3354a84203a0Sdrh switch( pExpr->affinity ){ 3355a84203a0Sdrh case OE_Rollback: zType = "rollback"; break; 3356a84203a0Sdrh case OE_Abort: zType = "abort"; break; 3357a84203a0Sdrh case OE_Fail: zType = "fail"; break; 3358a84203a0Sdrh case OE_Ignore: zType = "ignore"; break; 3359a84203a0Sdrh } 3360a84203a0Sdrh sqlite3ExplainPrintf(pOut, "RAISE-%s(%s)", zType, pExpr->u.zToken); 3361a84203a0Sdrh break; 3362a84203a0Sdrh } 3363a84203a0Sdrh #endif 3364a84203a0Sdrh } 3365a84203a0Sdrh if( zBinOp ){ 3366a84203a0Sdrh sqlite3ExplainPrintf(pOut,"%s(", zBinOp); 3367a84203a0Sdrh sqlite3ExplainExpr(pOut, pExpr->pLeft); 3368a84203a0Sdrh sqlite3ExplainPrintf(pOut,","); 3369a84203a0Sdrh sqlite3ExplainExpr(pOut, pExpr->pRight); 3370a84203a0Sdrh sqlite3ExplainPrintf(pOut,")"); 3371a84203a0Sdrh }else if( zUniOp ){ 3372a84203a0Sdrh sqlite3ExplainPrintf(pOut,"%s(", zUniOp); 3373a84203a0Sdrh sqlite3ExplainExpr(pOut, pExpr->pLeft); 3374a84203a0Sdrh sqlite3ExplainPrintf(pOut,")"); 3375a84203a0Sdrh } 33767e02e5e6Sdrh } 3377678a9aa7Sdrh #endif /* defined(SQLITE_ENABLE_TREE_EXPLAIN) */ 33787e02e5e6Sdrh 3379678a9aa7Sdrh #if defined(SQLITE_ENABLE_TREE_EXPLAIN) 33807e02e5e6Sdrh /* 33817e02e5e6Sdrh ** Generate a human-readable explanation of an expression list. 33827e02e5e6Sdrh */ 33837e02e5e6Sdrh void sqlite3ExplainExprList(Vdbe *pOut, ExprList *pList){ 33847e02e5e6Sdrh int i; 3385a84203a0Sdrh if( pList==0 || pList->nExpr==0 ){ 33867e02e5e6Sdrh sqlite3ExplainPrintf(pOut, "(empty-list)"); 33877e02e5e6Sdrh return; 3388a84203a0Sdrh }else if( pList->nExpr==1 ){ 3389a84203a0Sdrh sqlite3ExplainExpr(pOut, pList->a[0].pExpr); 3390a84203a0Sdrh }else{ 33917e02e5e6Sdrh sqlite3ExplainPush(pOut); 33927e02e5e6Sdrh for(i=0; i<pList->nExpr; i++){ 3393a84203a0Sdrh sqlite3ExplainPrintf(pOut, "item[%d] = ", i); 33947e02e5e6Sdrh sqlite3ExplainPush(pOut); 33957e02e5e6Sdrh sqlite3ExplainExpr(pOut, pList->a[i].pExpr); 3396b66e21fdSdrh sqlite3ExplainPop(pOut); 33973e3f1a5bSdrh if( pList->a[i].zName ){ 33983e3f1a5bSdrh sqlite3ExplainPrintf(pOut, " AS %s", pList->a[i].zName); 33993e3f1a5bSdrh } 34003e3f1a5bSdrh if( pList->a[i].bSpanIsTab ){ 34013e3f1a5bSdrh sqlite3ExplainPrintf(pOut, " (%s)", pList->a[i].zSpan); 34023e3f1a5bSdrh } 34037e02e5e6Sdrh if( i<pList->nExpr-1 ){ 34047e02e5e6Sdrh sqlite3ExplainNL(pOut); 34057e02e5e6Sdrh } 34067e02e5e6Sdrh } 34077e02e5e6Sdrh sqlite3ExplainPop(pOut); 34087e02e5e6Sdrh } 3409a84203a0Sdrh } 34107e02e5e6Sdrh #endif /* SQLITE_DEBUG */ 34117e02e5e6Sdrh 3412678ccce8Sdrh /* 3413268380caSdrh ** Generate code that pushes the value of every element of the given 34149cbf3425Sdrh ** expression list into a sequence of registers beginning at target. 3415268380caSdrh ** 3416892d3179Sdrh ** Return the number of elements evaluated. 3417d1a01edaSdrh ** 3418d1a01edaSdrh ** The SQLITE_ECEL_DUP flag prevents the arguments from being 3419d1a01edaSdrh ** filled using OP_SCopy. OP_Copy must be used instead. 3420d1a01edaSdrh ** 3421d1a01edaSdrh ** The SQLITE_ECEL_FACTOR argument allows constant arguments to be 3422d1a01edaSdrh ** factored out into initialization code. 3423268380caSdrh */ 34244adee20fSdanielk1977 int sqlite3ExprCodeExprList( 3425268380caSdrh Parse *pParse, /* Parsing context */ 3426389a1adbSdrh ExprList *pList, /* The expression list to be coded */ 3427191b54cbSdrh int target, /* Where to write results */ 3428d1a01edaSdrh u8 flags /* SQLITE_ECEL_* flags */ 3429268380caSdrh ){ 3430268380caSdrh struct ExprList_item *pItem; 34319cbf3425Sdrh int i, n; 3432d1a01edaSdrh u8 copyOp = (flags & SQLITE_ECEL_DUP) ? OP_Copy : OP_SCopy; 34339d8b3072Sdrh assert( pList!=0 ); 34349cbf3425Sdrh assert( target>0 ); 3435d81a142bSdrh assert( pParse->pVdbe!=0 ); /* Never gets this far otherwise */ 3436268380caSdrh n = pList->nExpr; 3437d9f158e7Sdrh if( !ConstFactorOk(pParse) ) flags &= ~SQLITE_ECEL_FACTOR; 3438191b54cbSdrh for(pItem=pList->a, i=0; i<n; i++, pItem++){ 34397445ffe2Sdrh Expr *pExpr = pItem->pExpr; 3440d1a01edaSdrh if( (flags & SQLITE_ECEL_FACTOR)!=0 && sqlite3ExprIsConstant(pExpr) ){ 3441d673cddaSdrh sqlite3ExprCodeAtInit(pParse, pExpr, target+i, 0); 3442d1a01edaSdrh }else{ 34437445ffe2Sdrh int inReg = sqlite3ExprCodeTarget(pParse, pExpr, target+i); 3444746fd9ccSdrh if( inReg!=target+i ){ 34454eded604Sdrh VdbeOp *pOp; 34464eded604Sdrh Vdbe *v = pParse->pVdbe; 34474eded604Sdrh if( copyOp==OP_Copy 34484eded604Sdrh && (pOp=sqlite3VdbeGetOp(v, -1))->opcode==OP_Copy 34494eded604Sdrh && pOp->p1+pOp->p3+1==inReg 34504eded604Sdrh && pOp->p2+pOp->p3+1==target+i 34514eded604Sdrh ){ 34524eded604Sdrh pOp->p3++; 34534eded604Sdrh }else{ 34544eded604Sdrh sqlite3VdbeAddOp2(v, copyOp, inReg, target+i); 34554eded604Sdrh } 3456d1a01edaSdrh } 3457d176611bSdrh } 3458268380caSdrh } 3459f9b596ebSdrh return n; 3460268380caSdrh } 3461268380caSdrh 3462268380caSdrh /* 346336c563a2Sdrh ** Generate code for a BETWEEN operator. 346436c563a2Sdrh ** 346536c563a2Sdrh ** x BETWEEN y AND z 346636c563a2Sdrh ** 346736c563a2Sdrh ** The above is equivalent to 346836c563a2Sdrh ** 346936c563a2Sdrh ** x>=y AND x<=z 347036c563a2Sdrh ** 347136c563a2Sdrh ** Code it as such, taking care to do the common subexpression 347236c563a2Sdrh ** elementation of x. 347336c563a2Sdrh */ 347436c563a2Sdrh static void exprCodeBetween( 347536c563a2Sdrh Parse *pParse, /* Parsing and code generating context */ 347636c563a2Sdrh Expr *pExpr, /* The BETWEEN expression */ 347736c563a2Sdrh int dest, /* Jump here if the jump is taken */ 347836c563a2Sdrh int jumpIfTrue, /* Take the jump if the BETWEEN is true */ 347936c563a2Sdrh int jumpIfNull /* Take the jump if the BETWEEN is NULL */ 348036c563a2Sdrh ){ 348136c563a2Sdrh Expr exprAnd; /* The AND operator in x>=y AND x<=z */ 348236c563a2Sdrh Expr compLeft; /* The x>=y term */ 348336c563a2Sdrh Expr compRight; /* The x<=z term */ 348436c563a2Sdrh Expr exprX; /* The x subexpression */ 348536c563a2Sdrh int regFree1 = 0; /* Temporary use register */ 348636c563a2Sdrh 348736c563a2Sdrh assert( !ExprHasProperty(pExpr, EP_xIsSelect) ); 348836c563a2Sdrh exprX = *pExpr->pLeft; 348936c563a2Sdrh exprAnd.op = TK_AND; 349036c563a2Sdrh exprAnd.pLeft = &compLeft; 349136c563a2Sdrh exprAnd.pRight = &compRight; 349236c563a2Sdrh compLeft.op = TK_GE; 349336c563a2Sdrh compLeft.pLeft = &exprX; 349436c563a2Sdrh compLeft.pRight = pExpr->x.pList->a[0].pExpr; 349536c563a2Sdrh compRight.op = TK_LE; 349636c563a2Sdrh compRight.pLeft = &exprX; 349736c563a2Sdrh compRight.pRight = pExpr->x.pList->a[1].pExpr; 3498a4c3c87eSdrh exprToRegister(&exprX, sqlite3ExprCodeTemp(pParse, &exprX, ®Free1)); 349936c563a2Sdrh if( jumpIfTrue ){ 350036c563a2Sdrh sqlite3ExprIfTrue(pParse, &exprAnd, dest, jumpIfNull); 350136c563a2Sdrh }else{ 350236c563a2Sdrh sqlite3ExprIfFalse(pParse, &exprAnd, dest, jumpIfNull); 350336c563a2Sdrh } 350436c563a2Sdrh sqlite3ReleaseTempReg(pParse, regFree1); 350536c563a2Sdrh 350636c563a2Sdrh /* Ensure adequate test coverage */ 350736c563a2Sdrh testcase( jumpIfTrue==0 && jumpIfNull==0 && regFree1==0 ); 350836c563a2Sdrh testcase( jumpIfTrue==0 && jumpIfNull==0 && regFree1!=0 ); 350936c563a2Sdrh testcase( jumpIfTrue==0 && jumpIfNull!=0 && regFree1==0 ); 351036c563a2Sdrh testcase( jumpIfTrue==0 && jumpIfNull!=0 && regFree1!=0 ); 351136c563a2Sdrh testcase( jumpIfTrue!=0 && jumpIfNull==0 && regFree1==0 ); 351236c563a2Sdrh testcase( jumpIfTrue!=0 && jumpIfNull==0 && regFree1!=0 ); 351336c563a2Sdrh testcase( jumpIfTrue!=0 && jumpIfNull!=0 && regFree1==0 ); 351436c563a2Sdrh testcase( jumpIfTrue!=0 && jumpIfNull!=0 && regFree1!=0 ); 351536c563a2Sdrh } 351636c563a2Sdrh 351736c563a2Sdrh /* 3518cce7d176Sdrh ** Generate code for a boolean expression such that a jump is made 3519cce7d176Sdrh ** to the label "dest" if the expression is true but execution 3520cce7d176Sdrh ** continues straight thru if the expression is false. 3521f5905aa7Sdrh ** 3522f5905aa7Sdrh ** If the expression evaluates to NULL (neither true nor false), then 352335573356Sdrh ** take the jump if the jumpIfNull flag is SQLITE_JUMPIFNULL. 3524f2bc013cSdrh ** 3525f2bc013cSdrh ** This code depends on the fact that certain token values (ex: TK_EQ) 3526f2bc013cSdrh ** are the same as opcode values (ex: OP_Eq) that implement the corresponding 3527f2bc013cSdrh ** operation. Special comments in vdbe.c and the mkopcodeh.awk script in 3528f2bc013cSdrh ** the make process cause these values to align. Assert()s in the code 3529f2bc013cSdrh ** below verify that the numbers are aligned correctly. 3530cce7d176Sdrh */ 35314adee20fSdanielk1977 void sqlite3ExprIfTrue(Parse *pParse, Expr *pExpr, int dest, int jumpIfNull){ 3532cce7d176Sdrh Vdbe *v = pParse->pVdbe; 3533cce7d176Sdrh int op = 0; 35342dcef11bSdrh int regFree1 = 0; 35352dcef11bSdrh int regFree2 = 0; 35362dcef11bSdrh int r1, r2; 35372dcef11bSdrh 353835573356Sdrh assert( jumpIfNull==SQLITE_JUMPIFNULL || jumpIfNull==0 ); 353948864df9Smistachkin if( NEVER(v==0) ) return; /* Existence of VDBE checked by caller */ 354033cd4909Sdrh if( NEVER(pExpr==0) ) return; /* No way this can happen */ 3541f2bc013cSdrh op = pExpr->op; 3542f2bc013cSdrh switch( op ){ 3543cce7d176Sdrh case TK_AND: { 35444adee20fSdanielk1977 int d2 = sqlite3VdbeMakeLabel(v); 3545c5499befSdrh testcase( jumpIfNull==0 ); 354635573356Sdrh sqlite3ExprIfFalse(pParse, pExpr->pLeft, d2,jumpIfNull^SQLITE_JUMPIFNULL); 354754e2adb5Sdrh sqlite3ExprCachePush(pParse); 35484adee20fSdanielk1977 sqlite3ExprIfTrue(pParse, pExpr->pRight, dest, jumpIfNull); 35494adee20fSdanielk1977 sqlite3VdbeResolveLabel(v, d2); 3550ceea3321Sdrh sqlite3ExprCachePop(pParse, 1); 3551cce7d176Sdrh break; 3552cce7d176Sdrh } 3553cce7d176Sdrh case TK_OR: { 3554c5499befSdrh testcase( jumpIfNull==0 ); 35554adee20fSdanielk1977 sqlite3ExprIfTrue(pParse, pExpr->pLeft, dest, jumpIfNull); 355654e2adb5Sdrh sqlite3ExprCachePush(pParse); 35574adee20fSdanielk1977 sqlite3ExprIfTrue(pParse, pExpr->pRight, dest, jumpIfNull); 355854e2adb5Sdrh sqlite3ExprCachePop(pParse, 1); 3559cce7d176Sdrh break; 3560cce7d176Sdrh } 3561cce7d176Sdrh case TK_NOT: { 3562c5499befSdrh testcase( jumpIfNull==0 ); 35634adee20fSdanielk1977 sqlite3ExprIfFalse(pParse, pExpr->pLeft, dest, jumpIfNull); 3564cce7d176Sdrh break; 3565cce7d176Sdrh } 3566cce7d176Sdrh case TK_LT: 3567cce7d176Sdrh case TK_LE: 3568cce7d176Sdrh case TK_GT: 3569cce7d176Sdrh case TK_GE: 3570cce7d176Sdrh case TK_NE: 35710ac65892Sdrh case TK_EQ: { 3572c5499befSdrh testcase( jumpIfNull==0 ); 3573b6da74ebSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 3574b6da74ebSdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); 357535573356Sdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, 35767d176105Sdrh r1, r2, dest, jumpIfNull); 35777d176105Sdrh assert(TK_LT==OP_Lt); testcase(op==OP_Lt); VdbeCoverageIf(v,op==OP_Lt); 35787d176105Sdrh assert(TK_LE==OP_Le); testcase(op==OP_Le); VdbeCoverageIf(v,op==OP_Le); 35797d176105Sdrh assert(TK_GT==OP_Gt); testcase(op==OP_Gt); VdbeCoverageIf(v,op==OP_Gt); 35807d176105Sdrh assert(TK_GE==OP_Ge); testcase(op==OP_Ge); VdbeCoverageIf(v,op==OP_Ge); 35817d176105Sdrh assert(TK_EQ==OP_Eq); testcase(op==OP_Eq); VdbeCoverageIf(v,op==OP_Eq); 35827d176105Sdrh assert(TK_NE==OP_Ne); testcase(op==OP_Ne); VdbeCoverageIf(v,op==OP_Ne); 3583c5499befSdrh testcase( regFree1==0 ); 3584c5499befSdrh testcase( regFree2==0 ); 3585cce7d176Sdrh break; 3586cce7d176Sdrh } 35876a2fe093Sdrh case TK_IS: 35886a2fe093Sdrh case TK_ISNOT: { 35896a2fe093Sdrh testcase( op==TK_IS ); 35906a2fe093Sdrh testcase( op==TK_ISNOT ); 3591b6da74ebSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 3592b6da74ebSdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); 35936a2fe093Sdrh op = (op==TK_IS) ? TK_EQ : TK_NE; 35946a2fe093Sdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, 35957d176105Sdrh r1, r2, dest, SQLITE_NULLEQ); 35967d176105Sdrh VdbeCoverageIf(v, op==TK_EQ); 35977d176105Sdrh VdbeCoverageIf(v, op==TK_NE); 35986a2fe093Sdrh testcase( regFree1==0 ); 35996a2fe093Sdrh testcase( regFree2==0 ); 36006a2fe093Sdrh break; 36016a2fe093Sdrh } 3602cce7d176Sdrh case TK_ISNULL: 3603cce7d176Sdrh case TK_NOTNULL: { 36047d176105Sdrh assert( TK_ISNULL==OP_IsNull ); testcase( op==TK_ISNULL ); 36057d176105Sdrh assert( TK_NOTNULL==OP_NotNull ); testcase( op==TK_NOTNULL ); 36062dcef11bSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 36077d176105Sdrh sqlite3VdbeAddOp2(v, op, r1, dest); 36087d176105Sdrh VdbeCoverageIf(v, op==TK_ISNULL); 36097d176105Sdrh VdbeCoverageIf(v, op==TK_NOTNULL); 3610c5499befSdrh testcase( regFree1==0 ); 3611cce7d176Sdrh break; 3612cce7d176Sdrh } 3613fef5208cSdrh case TK_BETWEEN: { 36145c03f30aSdrh testcase( jumpIfNull==0 ); 361536c563a2Sdrh exprCodeBetween(pParse, pExpr, dest, 1, jumpIfNull); 3616fef5208cSdrh break; 3617fef5208cSdrh } 3618bb201344Sshaneh #ifndef SQLITE_OMIT_SUBQUERY 3619e3365e6cSdrh case TK_IN: { 3620e3365e6cSdrh int destIfFalse = sqlite3VdbeMakeLabel(v); 3621e3365e6cSdrh int destIfNull = jumpIfNull ? dest : destIfFalse; 3622e3365e6cSdrh sqlite3ExprCodeIN(pParse, pExpr, destIfFalse, destIfNull); 3623e3365e6cSdrh sqlite3VdbeAddOp2(v, OP_Goto, 0, dest); 3624e3365e6cSdrh sqlite3VdbeResolveLabel(v, destIfFalse); 3625e3365e6cSdrh break; 3626e3365e6cSdrh } 3627bb201344Sshaneh #endif 3628cce7d176Sdrh default: { 3629991a1985Sdrh if( exprAlwaysTrue(pExpr) ){ 3630991a1985Sdrh sqlite3VdbeAddOp2(v, OP_Goto, 0, dest); 3631991a1985Sdrh }else if( exprAlwaysFalse(pExpr) ){ 3632991a1985Sdrh /* No-op */ 3633991a1985Sdrh }else{ 36342dcef11bSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr, ®Free1); 36352dcef11bSdrh sqlite3VdbeAddOp3(v, OP_If, r1, dest, jumpIfNull!=0); 3636688852abSdrh VdbeCoverage(v); 3637c5499befSdrh testcase( regFree1==0 ); 3638c5499befSdrh testcase( jumpIfNull==0 ); 3639991a1985Sdrh } 3640cce7d176Sdrh break; 3641cce7d176Sdrh } 3642cce7d176Sdrh } 36432dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree1); 36442dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree2); 3645cce7d176Sdrh } 3646cce7d176Sdrh 3647cce7d176Sdrh /* 364866b89c8fSdrh ** Generate code for a boolean expression such that a jump is made 3649cce7d176Sdrh ** to the label "dest" if the expression is false but execution 3650cce7d176Sdrh ** continues straight thru if the expression is true. 3651f5905aa7Sdrh ** 3652f5905aa7Sdrh ** If the expression evaluates to NULL (neither true nor false) then 365335573356Sdrh ** jump if jumpIfNull is SQLITE_JUMPIFNULL or fall through if jumpIfNull 365435573356Sdrh ** is 0. 3655cce7d176Sdrh */ 36564adee20fSdanielk1977 void sqlite3ExprIfFalse(Parse *pParse, Expr *pExpr, int dest, int jumpIfNull){ 3657cce7d176Sdrh Vdbe *v = pParse->pVdbe; 3658cce7d176Sdrh int op = 0; 36592dcef11bSdrh int regFree1 = 0; 36602dcef11bSdrh int regFree2 = 0; 36612dcef11bSdrh int r1, r2; 36622dcef11bSdrh 366335573356Sdrh assert( jumpIfNull==SQLITE_JUMPIFNULL || jumpIfNull==0 ); 366448864df9Smistachkin if( NEVER(v==0) ) return; /* Existence of VDBE checked by caller */ 366533cd4909Sdrh if( pExpr==0 ) return; 3666f2bc013cSdrh 3667f2bc013cSdrh /* The value of pExpr->op and op are related as follows: 3668f2bc013cSdrh ** 3669f2bc013cSdrh ** pExpr->op op 3670f2bc013cSdrh ** --------- ---------- 3671f2bc013cSdrh ** TK_ISNULL OP_NotNull 3672f2bc013cSdrh ** TK_NOTNULL OP_IsNull 3673f2bc013cSdrh ** TK_NE OP_Eq 3674f2bc013cSdrh ** TK_EQ OP_Ne 3675f2bc013cSdrh ** TK_GT OP_Le 3676f2bc013cSdrh ** TK_LE OP_Gt 3677f2bc013cSdrh ** TK_GE OP_Lt 3678f2bc013cSdrh ** TK_LT OP_Ge 3679f2bc013cSdrh ** 3680f2bc013cSdrh ** For other values of pExpr->op, op is undefined and unused. 3681f2bc013cSdrh ** The value of TK_ and OP_ constants are arranged such that we 3682f2bc013cSdrh ** can compute the mapping above using the following expression. 3683f2bc013cSdrh ** Assert()s verify that the computation is correct. 3684f2bc013cSdrh */ 3685f2bc013cSdrh op = ((pExpr->op+(TK_ISNULL&1))^1)-(TK_ISNULL&1); 3686f2bc013cSdrh 3687f2bc013cSdrh /* Verify correct alignment of TK_ and OP_ constants 3688f2bc013cSdrh */ 3689f2bc013cSdrh assert( pExpr->op!=TK_ISNULL || op==OP_NotNull ); 3690f2bc013cSdrh assert( pExpr->op!=TK_NOTNULL || op==OP_IsNull ); 3691f2bc013cSdrh assert( pExpr->op!=TK_NE || op==OP_Eq ); 3692f2bc013cSdrh assert( pExpr->op!=TK_EQ || op==OP_Ne ); 3693f2bc013cSdrh assert( pExpr->op!=TK_LT || op==OP_Ge ); 3694f2bc013cSdrh assert( pExpr->op!=TK_LE || op==OP_Gt ); 3695f2bc013cSdrh assert( pExpr->op!=TK_GT || op==OP_Le ); 3696f2bc013cSdrh assert( pExpr->op!=TK_GE || op==OP_Lt ); 3697f2bc013cSdrh 3698cce7d176Sdrh switch( pExpr->op ){ 3699cce7d176Sdrh case TK_AND: { 3700c5499befSdrh testcase( jumpIfNull==0 ); 37014adee20fSdanielk1977 sqlite3ExprIfFalse(pParse, pExpr->pLeft, dest, jumpIfNull); 370254e2adb5Sdrh sqlite3ExprCachePush(pParse); 37034adee20fSdanielk1977 sqlite3ExprIfFalse(pParse, pExpr->pRight, dest, jumpIfNull); 370454e2adb5Sdrh sqlite3ExprCachePop(pParse, 1); 3705cce7d176Sdrh break; 3706cce7d176Sdrh } 3707cce7d176Sdrh case TK_OR: { 37084adee20fSdanielk1977 int d2 = sqlite3VdbeMakeLabel(v); 3709c5499befSdrh testcase( jumpIfNull==0 ); 371035573356Sdrh sqlite3ExprIfTrue(pParse, pExpr->pLeft, d2, jumpIfNull^SQLITE_JUMPIFNULL); 371154e2adb5Sdrh sqlite3ExprCachePush(pParse); 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( jumpIfNull==0 ); 3729b6da74ebSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 3730b6da74ebSdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); 373135573356Sdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, 37327d176105Sdrh r1, r2, dest, jumpIfNull); 37337d176105Sdrh assert(TK_LT==OP_Lt); testcase(op==OP_Lt); VdbeCoverageIf(v,op==OP_Lt); 37347d176105Sdrh assert(TK_LE==OP_Le); testcase(op==OP_Le); VdbeCoverageIf(v,op==OP_Le); 37357d176105Sdrh assert(TK_GT==OP_Gt); testcase(op==OP_Gt); VdbeCoverageIf(v,op==OP_Gt); 37367d176105Sdrh assert(TK_GE==OP_Ge); testcase(op==OP_Ge); VdbeCoverageIf(v,op==OP_Ge); 37377d176105Sdrh assert(TK_EQ==OP_Eq); testcase(op==OP_Eq); VdbeCoverageIf(v,op==OP_Eq); 37387d176105Sdrh assert(TK_NE==OP_Ne); testcase(op==OP_Ne); VdbeCoverageIf(v,op==OP_Ne); 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, 37517d176105Sdrh r1, r2, dest, SQLITE_NULLEQ); 37527d176105Sdrh VdbeCoverageIf(v, op==TK_EQ); 37537d176105Sdrh VdbeCoverageIf(v, op==TK_NE); 37546a2fe093Sdrh testcase( regFree1==0 ); 37556a2fe093Sdrh testcase( regFree2==0 ); 37566a2fe093Sdrh break; 37576a2fe093Sdrh } 3758cce7d176Sdrh case TK_ISNULL: 3759cce7d176Sdrh case TK_NOTNULL: { 37602dcef11bSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 37617d176105Sdrh sqlite3VdbeAddOp2(v, op, r1, dest); 37627d176105Sdrh testcase( op==TK_ISNULL ); VdbeCoverageIf(v, op==TK_ISNULL); 37637d176105Sdrh testcase( op==TK_NOTNULL ); VdbeCoverageIf(v, op==TK_NOTNULL); 3764c5499befSdrh testcase( regFree1==0 ); 3765cce7d176Sdrh break; 3766cce7d176Sdrh } 3767fef5208cSdrh case TK_BETWEEN: { 37685c03f30aSdrh testcase( jumpIfNull==0 ); 376936c563a2Sdrh exprCodeBetween(pParse, pExpr, dest, 0, jumpIfNull); 3770fef5208cSdrh break; 3771fef5208cSdrh } 3772bb201344Sshaneh #ifndef SQLITE_OMIT_SUBQUERY 3773e3365e6cSdrh case TK_IN: { 3774e3365e6cSdrh if( jumpIfNull ){ 3775e3365e6cSdrh sqlite3ExprCodeIN(pParse, pExpr, dest, dest); 3776e3365e6cSdrh }else{ 3777e3365e6cSdrh int destIfNull = sqlite3VdbeMakeLabel(v); 3778e3365e6cSdrh sqlite3ExprCodeIN(pParse, pExpr, dest, destIfNull); 3779e3365e6cSdrh sqlite3VdbeResolveLabel(v, destIfNull); 3780e3365e6cSdrh } 3781e3365e6cSdrh break; 3782e3365e6cSdrh } 3783bb201344Sshaneh #endif 3784cce7d176Sdrh default: { 3785991a1985Sdrh if( exprAlwaysFalse(pExpr) ){ 3786991a1985Sdrh sqlite3VdbeAddOp2(v, OP_Goto, 0, dest); 3787991a1985Sdrh }else if( exprAlwaysTrue(pExpr) ){ 3788991a1985Sdrh /* no-op */ 3789991a1985Sdrh }else{ 37902dcef11bSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr, ®Free1); 37912dcef11bSdrh sqlite3VdbeAddOp3(v, OP_IfNot, r1, dest, jumpIfNull!=0); 3792688852abSdrh VdbeCoverage(v); 3793c5499befSdrh testcase( regFree1==0 ); 3794c5499befSdrh testcase( jumpIfNull==0 ); 3795991a1985Sdrh } 3796cce7d176Sdrh break; 3797cce7d176Sdrh } 3798cce7d176Sdrh } 37992dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree1); 38002dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree2); 3801cce7d176Sdrh } 38022282792aSdrh 38032282792aSdrh /* 38041d9da70aSdrh ** Do a deep comparison of two expression trees. Return 0 if the two 38051d9da70aSdrh ** expressions are completely identical. Return 1 if they differ only 38061d9da70aSdrh ** by a COLLATE operator at the top level. Return 2 if there are differences 38071d9da70aSdrh ** other than the top-level COLLATE operator. 3808d40aab0eSdrh ** 3809619a1305Sdrh ** If any subelement of pB has Expr.iTable==(-1) then it is allowed 3810619a1305Sdrh ** to compare equal to an equivalent element in pA with Expr.iTable==iTab. 3811619a1305Sdrh ** 381266518ca7Sdrh ** The pA side might be using TK_REGISTER. If that is the case and pB is 381366518ca7Sdrh ** not using TK_REGISTER but is otherwise equivalent, then still return 0. 381466518ca7Sdrh ** 38151d9da70aSdrh ** Sometimes this routine will return 2 even if the two expressions 3816d40aab0eSdrh ** really are equivalent. If we cannot prove that the expressions are 38171d9da70aSdrh ** identical, we return 2 just to be safe. So if this routine 38181d9da70aSdrh ** returns 2, then you do not really know for certain if the two 38191d9da70aSdrh ** expressions are the same. But if you get a 0 or 1 return, then you 3820d40aab0eSdrh ** can be sure the expressions are the same. In the places where 38211d9da70aSdrh ** this routine is used, it does not hurt to get an extra 2 - that 3822d40aab0eSdrh ** just might result in some slightly slower code. But returning 38231d9da70aSdrh ** an incorrect 0 or 1 could lead to a malfunction. 38242282792aSdrh */ 3825619a1305Sdrh int sqlite3ExprCompare(Expr *pA, Expr *pB, int iTab){ 382610d1edf0Sdrh u32 combinedFlags; 38274b202ae2Sdanielk1977 if( pA==0 || pB==0 ){ 38281d9da70aSdrh return pB==pA ? 0 : 2; 38292282792aSdrh } 383010d1edf0Sdrh combinedFlags = pA->flags | pB->flags; 383110d1edf0Sdrh if( combinedFlags & EP_IntValue ){ 383210d1edf0Sdrh if( (pA->flags&pB->flags&EP_IntValue)!=0 && pA->u.iValue==pB->u.iValue ){ 383310d1edf0Sdrh return 0; 383410d1edf0Sdrh } 38351d9da70aSdrh return 2; 38366ab3a2ecSdanielk1977 } 3837c2acc4e4Sdrh if( pA->op!=pB->op ){ 3838619a1305Sdrh if( pA->op==TK_COLLATE && sqlite3ExprCompare(pA->pLeft, pB, iTab)<2 ){ 3839ae80ddeaSdrh return 1; 3840ae80ddeaSdrh } 3841619a1305Sdrh if( pB->op==TK_COLLATE && sqlite3ExprCompare(pA, pB->pLeft, iTab)<2 ){ 3842ae80ddeaSdrh return 1; 3843ae80ddeaSdrh } 3844ae80ddeaSdrh return 2; 3845ae80ddeaSdrh } 384610d1edf0Sdrh if( pA->op!=TK_COLUMN && ALWAYS(pA->op!=TK_AGG_COLUMN) && pA->u.zToken ){ 384710d1edf0Sdrh if( strcmp(pA->u.zToken,pB->u.zToken)!=0 ){ 384810d1edf0Sdrh return pA->op==TK_COLLATE ? 1 : 2; 384910d1edf0Sdrh } 385010d1edf0Sdrh } 385110d1edf0Sdrh if( (pA->flags & EP_Distinct)!=(pB->flags & EP_Distinct) ) return 2; 385285f8aa79Sdrh if( ALWAYS((combinedFlags & EP_TokenOnly)==0) ){ 385310d1edf0Sdrh if( combinedFlags & EP_xIsSelect ) return 2; 3854619a1305Sdrh if( sqlite3ExprCompare(pA->pLeft, pB->pLeft, iTab) ) return 2; 3855619a1305Sdrh if( sqlite3ExprCompare(pA->pRight, pB->pRight, iTab) ) return 2; 3856619a1305Sdrh if( sqlite3ExprListCompare(pA->x.pList, pB->x.pList, iTab) ) return 2; 385785f8aa79Sdrh if( ALWAYS((combinedFlags & EP_Reduced)==0) ){ 3858619a1305Sdrh if( pA->iColumn!=pB->iColumn ) return 2; 385966518ca7Sdrh if( pA->iTable!=pB->iTable 386085f8aa79Sdrh && (pA->iTable!=iTab || NEVER(pB->iTable>=0)) ) return 2; 38611d9da70aSdrh } 38621d9da70aSdrh } 38632646da7eSdrh return 0; 38642646da7eSdrh } 38652282792aSdrh 38668c6f666bSdrh /* 38678c6f666bSdrh ** Compare two ExprList objects. Return 0 if they are identical and 38688c6f666bSdrh ** non-zero if they differ in any way. 38698c6f666bSdrh ** 3870619a1305Sdrh ** If any subelement of pB has Expr.iTable==(-1) then it is allowed 3871619a1305Sdrh ** to compare equal to an equivalent element in pA with Expr.iTable==iTab. 3872619a1305Sdrh ** 38738c6f666bSdrh ** This routine might return non-zero for equivalent ExprLists. The 38748c6f666bSdrh ** only consequence will be disabled optimizations. But this routine 38758c6f666bSdrh ** must never return 0 if the two ExprList objects are different, or 38768c6f666bSdrh ** a malfunction will result. 38778c6f666bSdrh ** 38788c6f666bSdrh ** Two NULL pointers are considered to be the same. But a NULL pointer 38798c6f666bSdrh ** always differs from a non-NULL pointer. 38808c6f666bSdrh */ 3881619a1305Sdrh int sqlite3ExprListCompare(ExprList *pA, ExprList *pB, int iTab){ 38828c6f666bSdrh int i; 38838c6f666bSdrh if( pA==0 && pB==0 ) return 0; 38848c6f666bSdrh if( pA==0 || pB==0 ) return 1; 38858c6f666bSdrh if( pA->nExpr!=pB->nExpr ) return 1; 38868c6f666bSdrh for(i=0; i<pA->nExpr; i++){ 38878c6f666bSdrh Expr *pExprA = pA->a[i].pExpr; 38888c6f666bSdrh Expr *pExprB = pB->a[i].pExpr; 38898c6f666bSdrh if( pA->a[i].sortOrder!=pB->a[i].sortOrder ) return 1; 3890619a1305Sdrh if( sqlite3ExprCompare(pExprA, pExprB, iTab) ) return 1; 38918c6f666bSdrh } 38928c6f666bSdrh return 0; 38938c6f666bSdrh } 389413449892Sdrh 38952282792aSdrh /* 38964bd5f73fSdrh ** Return true if we can prove the pE2 will always be true if pE1 is 38974bd5f73fSdrh ** true. Return false if we cannot complete the proof or if pE2 might 38984bd5f73fSdrh ** be false. Examples: 38994bd5f73fSdrh ** 3900619a1305Sdrh ** pE1: x==5 pE2: x==5 Result: true 39014bd5f73fSdrh ** pE1: x>0 pE2: x==5 Result: false 3902619a1305Sdrh ** pE1: x=21 pE2: x=21 OR y=43 Result: true 39034bd5f73fSdrh ** pE1: x!=123 pE2: x IS NOT NULL Result: true 3904619a1305Sdrh ** pE1: x!=?1 pE2: x IS NOT NULL Result: true 3905619a1305Sdrh ** pE1: x IS NULL pE2: x IS NOT NULL Result: false 3906619a1305Sdrh ** pE1: x IS ?2 pE2: x IS NOT NULL Reuslt: false 39074bd5f73fSdrh ** 39084bd5f73fSdrh ** When comparing TK_COLUMN nodes between pE1 and pE2, if pE2 has 39094bd5f73fSdrh ** Expr.iTable<0 then assume a table number given by iTab. 39104bd5f73fSdrh ** 39114bd5f73fSdrh ** When in doubt, return false. Returning true might give a performance 39124bd5f73fSdrh ** improvement. Returning false might cause a performance reduction, but 39134bd5f73fSdrh ** it will always give the correct answer and is hence always safe. 39144bd5f73fSdrh */ 39154bd5f73fSdrh int sqlite3ExprImpliesExpr(Expr *pE1, Expr *pE2, int iTab){ 3916619a1305Sdrh if( sqlite3ExprCompare(pE1, pE2, iTab)==0 ){ 3917619a1305Sdrh return 1; 3918619a1305Sdrh } 3919619a1305Sdrh if( pE2->op==TK_OR 3920619a1305Sdrh && (sqlite3ExprImpliesExpr(pE1, pE2->pLeft, iTab) 3921619a1305Sdrh || sqlite3ExprImpliesExpr(pE1, pE2->pRight, iTab) ) 3922619a1305Sdrh ){ 3923619a1305Sdrh return 1; 3924619a1305Sdrh } 3925619a1305Sdrh if( pE2->op==TK_NOTNULL 3926619a1305Sdrh && sqlite3ExprCompare(pE1->pLeft, pE2->pLeft, iTab)==0 3927619a1305Sdrh && (pE1->op!=TK_ISNULL && pE1->op!=TK_IS) 3928619a1305Sdrh ){ 3929619a1305Sdrh return 1; 3930619a1305Sdrh } 3931619a1305Sdrh return 0; 39324bd5f73fSdrh } 39334bd5f73fSdrh 39344bd5f73fSdrh /* 3935030796dfSdrh ** An instance of the following structure is used by the tree walker 3936030796dfSdrh ** to count references to table columns in the arguments of an 3937ed551b95Sdrh ** aggregate function, in order to implement the 3938ed551b95Sdrh ** sqlite3FunctionThisSrc() routine. 3939374fdce4Sdrh */ 3940030796dfSdrh struct SrcCount { 3941030796dfSdrh SrcList *pSrc; /* One particular FROM clause in a nested query */ 3942030796dfSdrh int nThis; /* Number of references to columns in pSrcList */ 3943030796dfSdrh int nOther; /* Number of references to columns in other FROM clauses */ 3944030796dfSdrh }; 3945030796dfSdrh 3946030796dfSdrh /* 3947030796dfSdrh ** Count the number of references to columns. 3948030796dfSdrh */ 3949030796dfSdrh static int exprSrcCount(Walker *pWalker, Expr *pExpr){ 3950fb0a6081Sdrh /* The NEVER() on the second term is because sqlite3FunctionUsesThisSrc() 3951fb0a6081Sdrh ** is always called before sqlite3ExprAnalyzeAggregates() and so the 3952fb0a6081Sdrh ** TK_COLUMNs have not yet been converted into TK_AGG_COLUMN. If 3953fb0a6081Sdrh ** sqlite3FunctionUsesThisSrc() is used differently in the future, the 3954fb0a6081Sdrh ** NEVER() will need to be removed. */ 3955fb0a6081Sdrh if( pExpr->op==TK_COLUMN || NEVER(pExpr->op==TK_AGG_COLUMN) ){ 3956374fdce4Sdrh int i; 3957030796dfSdrh struct SrcCount *p = pWalker->u.pSrcCount; 3958030796dfSdrh SrcList *pSrc = p->pSrc; 3959374fdce4Sdrh for(i=0; i<pSrc->nSrc; i++){ 3960030796dfSdrh if( pExpr->iTable==pSrc->a[i].iCursor ) break; 3961374fdce4Sdrh } 3962030796dfSdrh if( i<pSrc->nSrc ){ 3963030796dfSdrh p->nThis++; 3964374fdce4Sdrh }else{ 3965030796dfSdrh p->nOther++; 3966374fdce4Sdrh } 3967374fdce4Sdrh } 3968030796dfSdrh return WRC_Continue; 3969030796dfSdrh } 3970374fdce4Sdrh 3971374fdce4Sdrh /* 3972030796dfSdrh ** Determine if any of the arguments to the pExpr Function reference 3973030796dfSdrh ** pSrcList. Return true if they do. Also return true if the function 3974030796dfSdrh ** has no arguments or has only constant arguments. Return false if pExpr 3975030796dfSdrh ** references columns but not columns of tables found in pSrcList. 3976374fdce4Sdrh */ 3977030796dfSdrh int sqlite3FunctionUsesThisSrc(Expr *pExpr, SrcList *pSrcList){ 3978374fdce4Sdrh Walker w; 3979030796dfSdrh struct SrcCount cnt; 3980374fdce4Sdrh assert( pExpr->op==TK_AGG_FUNCTION ); 3981374fdce4Sdrh memset(&w, 0, sizeof(w)); 3982030796dfSdrh w.xExprCallback = exprSrcCount; 3983030796dfSdrh w.u.pSrcCount = &cnt; 3984030796dfSdrh cnt.pSrc = pSrcList; 3985030796dfSdrh cnt.nThis = 0; 3986030796dfSdrh cnt.nOther = 0; 3987030796dfSdrh sqlite3WalkExprList(&w, pExpr->x.pList); 3988030796dfSdrh return cnt.nThis>0 || cnt.nOther==0; 3989374fdce4Sdrh } 3990374fdce4Sdrh 3991374fdce4Sdrh /* 399213449892Sdrh ** Add a new element to the pAggInfo->aCol[] array. Return the index of 399313449892Sdrh ** the new element. Return a negative number if malloc fails. 39942282792aSdrh */ 399517435752Sdrh static int addAggInfoColumn(sqlite3 *db, AggInfo *pInfo){ 399613449892Sdrh int i; 3997cf643729Sdrh pInfo->aCol = sqlite3ArrayAllocate( 399817435752Sdrh db, 3999cf643729Sdrh pInfo->aCol, 4000cf643729Sdrh sizeof(pInfo->aCol[0]), 4001cf643729Sdrh &pInfo->nColumn, 4002cf643729Sdrh &i 4003cf643729Sdrh ); 400413449892Sdrh return i; 40052282792aSdrh } 400613449892Sdrh 400713449892Sdrh /* 400813449892Sdrh ** Add a new element to the pAggInfo->aFunc[] array. Return the index of 400913449892Sdrh ** the new element. Return a negative number if malloc fails. 401013449892Sdrh */ 401117435752Sdrh static int addAggInfoFunc(sqlite3 *db, AggInfo *pInfo){ 401213449892Sdrh int i; 4013cf643729Sdrh pInfo->aFunc = sqlite3ArrayAllocate( 401417435752Sdrh db, 4015cf643729Sdrh pInfo->aFunc, 4016cf643729Sdrh sizeof(pInfo->aFunc[0]), 4017cf643729Sdrh &pInfo->nFunc, 4018cf643729Sdrh &i 4019cf643729Sdrh ); 402013449892Sdrh return i; 40212282792aSdrh } 40222282792aSdrh 40232282792aSdrh /* 40247d10d5a6Sdrh ** This is the xExprCallback for a tree walker. It is used to 40257d10d5a6Sdrh ** implement sqlite3ExprAnalyzeAggregates(). See sqlite3ExprAnalyzeAggregates 4026626a879aSdrh ** for additional information. 40272282792aSdrh */ 40287d10d5a6Sdrh static int analyzeAggregate(Walker *pWalker, Expr *pExpr){ 40292282792aSdrh int i; 40307d10d5a6Sdrh NameContext *pNC = pWalker->u.pNC; 4031a58fdfb1Sdanielk1977 Parse *pParse = pNC->pParse; 4032a58fdfb1Sdanielk1977 SrcList *pSrcList = pNC->pSrcList; 403313449892Sdrh AggInfo *pAggInfo = pNC->pAggInfo; 403413449892Sdrh 40352282792aSdrh switch( pExpr->op ){ 403689c69d00Sdrh case TK_AGG_COLUMN: 4037967e8b73Sdrh case TK_COLUMN: { 40388b213899Sdrh testcase( pExpr->op==TK_AGG_COLUMN ); 40398b213899Sdrh testcase( pExpr->op==TK_COLUMN ); 404013449892Sdrh /* Check to see if the column is in one of the tables in the FROM 404113449892Sdrh ** clause of the aggregate query */ 404220bc393cSdrh if( ALWAYS(pSrcList!=0) ){ 404313449892Sdrh struct SrcList_item *pItem = pSrcList->a; 404413449892Sdrh for(i=0; i<pSrcList->nSrc; i++, pItem++){ 404513449892Sdrh struct AggInfo_col *pCol; 4046c5cd1249Sdrh assert( !ExprHasProperty(pExpr, EP_TokenOnly|EP_Reduced) ); 404713449892Sdrh if( pExpr->iTable==pItem->iCursor ){ 404813449892Sdrh /* If we reach this point, it means that pExpr refers to a table 404913449892Sdrh ** that is in the FROM clause of the aggregate query. 405013449892Sdrh ** 405113449892Sdrh ** Make an entry for the column in pAggInfo->aCol[] if there 405213449892Sdrh ** is not an entry there already. 405313449892Sdrh */ 40547f906d63Sdrh int k; 405513449892Sdrh pCol = pAggInfo->aCol; 40567f906d63Sdrh for(k=0; k<pAggInfo->nColumn; k++, pCol++){ 405713449892Sdrh if( pCol->iTable==pExpr->iTable && 405813449892Sdrh pCol->iColumn==pExpr->iColumn ){ 40592282792aSdrh break; 40602282792aSdrh } 40612282792aSdrh } 40621e536953Sdanielk1977 if( (k>=pAggInfo->nColumn) 40631e536953Sdanielk1977 && (k = addAggInfoColumn(pParse->db, pAggInfo))>=0 40641e536953Sdanielk1977 ){ 40657f906d63Sdrh pCol = &pAggInfo->aCol[k]; 40660817d0dfSdanielk1977 pCol->pTab = pExpr->pTab; 406713449892Sdrh pCol->iTable = pExpr->iTable; 406813449892Sdrh pCol->iColumn = pExpr->iColumn; 40690a07c107Sdrh pCol->iMem = ++pParse->nMem; 407013449892Sdrh pCol->iSorterColumn = -1; 40715774b806Sdrh pCol->pExpr = pExpr; 407213449892Sdrh if( pAggInfo->pGroupBy ){ 407313449892Sdrh int j, n; 407413449892Sdrh ExprList *pGB = pAggInfo->pGroupBy; 407513449892Sdrh struct ExprList_item *pTerm = pGB->a; 407613449892Sdrh n = pGB->nExpr; 407713449892Sdrh for(j=0; j<n; j++, pTerm++){ 407813449892Sdrh Expr *pE = pTerm->pExpr; 407913449892Sdrh if( pE->op==TK_COLUMN && pE->iTable==pExpr->iTable && 408013449892Sdrh pE->iColumn==pExpr->iColumn ){ 408113449892Sdrh pCol->iSorterColumn = j; 408213449892Sdrh break; 40832282792aSdrh } 408413449892Sdrh } 408513449892Sdrh } 408613449892Sdrh if( pCol->iSorterColumn<0 ){ 408713449892Sdrh pCol->iSorterColumn = pAggInfo->nSortingColumn++; 408813449892Sdrh } 408913449892Sdrh } 409013449892Sdrh /* There is now an entry for pExpr in pAggInfo->aCol[] (either 409113449892Sdrh ** because it was there before or because we just created it). 409213449892Sdrh ** Convert the pExpr to be a TK_AGG_COLUMN referring to that 409313449892Sdrh ** pAggInfo->aCol[] entry. 409413449892Sdrh */ 4095ebb6a65dSdrh ExprSetVVAProperty(pExpr, EP_NoReduce); 409613449892Sdrh pExpr->pAggInfo = pAggInfo; 409713449892Sdrh pExpr->op = TK_AGG_COLUMN; 4098cf697396Sshane pExpr->iAgg = (i16)k; 409913449892Sdrh break; 410013449892Sdrh } /* endif pExpr->iTable==pItem->iCursor */ 410113449892Sdrh } /* end loop over pSrcList */ 4102a58fdfb1Sdanielk1977 } 41037d10d5a6Sdrh return WRC_Prune; 41042282792aSdrh } 41052282792aSdrh case TK_AGG_FUNCTION: { 41063a8c4be7Sdrh if( (pNC->ncFlags & NC_InAggFunc)==0 4107ed551b95Sdrh && pWalker->walkerDepth==pExpr->op2 41083a8c4be7Sdrh ){ 410913449892Sdrh /* Check to see if pExpr is a duplicate of another aggregate 411013449892Sdrh ** function that is already in the pAggInfo structure 411113449892Sdrh */ 411213449892Sdrh struct AggInfo_func *pItem = pAggInfo->aFunc; 411313449892Sdrh for(i=0; i<pAggInfo->nFunc; i++, pItem++){ 4114619a1305Sdrh if( sqlite3ExprCompare(pItem->pExpr, pExpr, -1)==0 ){ 41152282792aSdrh break; 41162282792aSdrh } 41172282792aSdrh } 411813449892Sdrh if( i>=pAggInfo->nFunc ){ 411913449892Sdrh /* pExpr is original. Make a new entry in pAggInfo->aFunc[] 412013449892Sdrh */ 412114db2665Sdanielk1977 u8 enc = ENC(pParse->db); 41221e536953Sdanielk1977 i = addAggInfoFunc(pParse->db, pAggInfo); 412313449892Sdrh if( i>=0 ){ 41246ab3a2ecSdanielk1977 assert( !ExprHasProperty(pExpr, EP_xIsSelect) ); 412513449892Sdrh pItem = &pAggInfo->aFunc[i]; 412613449892Sdrh pItem->pExpr = pExpr; 41270a07c107Sdrh pItem->iMem = ++pParse->nMem; 412833e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 412913449892Sdrh pItem->pFunc = sqlite3FindFunction(pParse->db, 413033e619fcSdrh pExpr->u.zToken, sqlite3Strlen30(pExpr->u.zToken), 41316ab3a2ecSdanielk1977 pExpr->x.pList ? pExpr->x.pList->nExpr : 0, enc, 0); 4132fd357974Sdrh if( pExpr->flags & EP_Distinct ){ 4133fd357974Sdrh pItem->iDistinct = pParse->nTab++; 4134fd357974Sdrh }else{ 4135fd357974Sdrh pItem->iDistinct = -1; 4136fd357974Sdrh } 41372282792aSdrh } 413813449892Sdrh } 413913449892Sdrh /* Make pExpr point to the appropriate pAggInfo->aFunc[] entry 414013449892Sdrh */ 4141c5cd1249Sdrh assert( !ExprHasProperty(pExpr, EP_TokenOnly|EP_Reduced) ); 4142ebb6a65dSdrh ExprSetVVAProperty(pExpr, EP_NoReduce); 4143cf697396Sshane pExpr->iAgg = (i16)i; 414413449892Sdrh pExpr->pAggInfo = pAggInfo; 41453a8c4be7Sdrh return WRC_Prune; 41466e83a57fSdrh }else{ 41476e83a57fSdrh return WRC_Continue; 41486e83a57fSdrh } 41492282792aSdrh } 4150a58fdfb1Sdanielk1977 } 41517d10d5a6Sdrh return WRC_Continue; 41527d10d5a6Sdrh } 41537d10d5a6Sdrh static int analyzeAggregatesInSelect(Walker *pWalker, Select *pSelect){ 4154d5a336efSdrh UNUSED_PARAMETER(pWalker); 4155d5a336efSdrh UNUSED_PARAMETER(pSelect); 41567d10d5a6Sdrh return WRC_Continue; 4157a58fdfb1Sdanielk1977 } 4158626a879aSdrh 4159626a879aSdrh /* 4160e8abb4caSdrh ** Analyze the pExpr expression looking for aggregate functions and 4161e8abb4caSdrh ** for variables that need to be added to AggInfo object that pNC->pAggInfo 4162e8abb4caSdrh ** points to. Additional entries are made on the AggInfo object as 4163e8abb4caSdrh ** necessary. 4164626a879aSdrh ** 4165626a879aSdrh ** This routine should only be called after the expression has been 41667d10d5a6Sdrh ** analyzed by sqlite3ResolveExprNames(). 4167626a879aSdrh */ 4168d2b3e23bSdrh void sqlite3ExprAnalyzeAggregates(NameContext *pNC, Expr *pExpr){ 41697d10d5a6Sdrh Walker w; 4170374fdce4Sdrh memset(&w, 0, sizeof(w)); 41717d10d5a6Sdrh w.xExprCallback = analyzeAggregate; 41727d10d5a6Sdrh w.xSelectCallback = analyzeAggregatesInSelect; 41737d10d5a6Sdrh w.u.pNC = pNC; 417420bc393cSdrh assert( pNC->pSrcList!=0 ); 41757d10d5a6Sdrh sqlite3WalkExpr(&w, pExpr); 41762282792aSdrh } 41775d9a4af9Sdrh 41785d9a4af9Sdrh /* 41795d9a4af9Sdrh ** Call sqlite3ExprAnalyzeAggregates() for every expression in an 41805d9a4af9Sdrh ** expression list. Return the number of errors. 41815d9a4af9Sdrh ** 41825d9a4af9Sdrh ** If an error is found, the analysis is cut short. 41835d9a4af9Sdrh */ 4184d2b3e23bSdrh void sqlite3ExprAnalyzeAggList(NameContext *pNC, ExprList *pList){ 41855d9a4af9Sdrh struct ExprList_item *pItem; 41865d9a4af9Sdrh int i; 41875d9a4af9Sdrh if( pList ){ 4188d2b3e23bSdrh for(pItem=pList->a, i=0; i<pList->nExpr; i++, pItem++){ 4189d2b3e23bSdrh sqlite3ExprAnalyzeAggregates(pNC, pItem->pExpr); 41905d9a4af9Sdrh } 41915d9a4af9Sdrh } 41925d9a4af9Sdrh } 4193892d3179Sdrh 4194892d3179Sdrh /* 4195ceea3321Sdrh ** Allocate a single new register for use to hold some intermediate result. 4196892d3179Sdrh */ 4197892d3179Sdrh int sqlite3GetTempReg(Parse *pParse){ 4198e55cbd72Sdrh if( pParse->nTempReg==0 ){ 4199892d3179Sdrh return ++pParse->nMem; 4200892d3179Sdrh } 42012f425f6bSdanielk1977 return pParse->aTempReg[--pParse->nTempReg]; 4202892d3179Sdrh } 4203ceea3321Sdrh 4204ceea3321Sdrh /* 4205ceea3321Sdrh ** Deallocate a register, making available for reuse for some other 4206ceea3321Sdrh ** purpose. 4207ceea3321Sdrh ** 4208ceea3321Sdrh ** If a register is currently being used by the column cache, then 4209ceea3321Sdrh ** the dallocation is deferred until the column cache line that uses 4210ceea3321Sdrh ** the register becomes stale. 4211ceea3321Sdrh */ 4212892d3179Sdrh void sqlite3ReleaseTempReg(Parse *pParse, int iReg){ 42132dcef11bSdrh if( iReg && pParse->nTempReg<ArraySize(pParse->aTempReg) ){ 4214ceea3321Sdrh int i; 4215ceea3321Sdrh struct yColCache *p; 4216ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 4217ceea3321Sdrh if( p->iReg==iReg ){ 4218ceea3321Sdrh p->tempReg = 1; 4219ceea3321Sdrh return; 4220ceea3321Sdrh } 4221ceea3321Sdrh } 4222892d3179Sdrh pParse->aTempReg[pParse->nTempReg++] = iReg; 4223892d3179Sdrh } 4224892d3179Sdrh } 4225892d3179Sdrh 4226892d3179Sdrh /* 4227892d3179Sdrh ** Allocate or deallocate a block of nReg consecutive registers 4228892d3179Sdrh */ 4229892d3179Sdrh int sqlite3GetTempRange(Parse *pParse, int nReg){ 4230e55cbd72Sdrh int i, n; 4231892d3179Sdrh i = pParse->iRangeReg; 4232e55cbd72Sdrh n = pParse->nRangeReg; 4233f49f3523Sdrh if( nReg<=n ){ 4234f49f3523Sdrh assert( !usedAsColumnCache(pParse, i, i+n-1) ); 4235892d3179Sdrh pParse->iRangeReg += nReg; 4236892d3179Sdrh pParse->nRangeReg -= nReg; 4237892d3179Sdrh }else{ 4238892d3179Sdrh i = pParse->nMem+1; 4239892d3179Sdrh pParse->nMem += nReg; 4240892d3179Sdrh } 4241892d3179Sdrh return i; 4242892d3179Sdrh } 4243892d3179Sdrh void sqlite3ReleaseTempRange(Parse *pParse, int iReg, int nReg){ 4244f49f3523Sdrh sqlite3ExprCacheRemove(pParse, iReg, nReg); 4245892d3179Sdrh if( nReg>pParse->nRangeReg ){ 4246892d3179Sdrh pParse->nRangeReg = nReg; 4247892d3179Sdrh pParse->iRangeReg = iReg; 4248892d3179Sdrh } 4249892d3179Sdrh } 4250cdc69557Sdrh 4251cdc69557Sdrh /* 4252cdc69557Sdrh ** Mark all temporary registers as being unavailable for reuse. 4253cdc69557Sdrh */ 4254cdc69557Sdrh void sqlite3ClearTempRegCache(Parse *pParse){ 4255cdc69557Sdrh pParse->nTempReg = 0; 4256cdc69557Sdrh pParse->nRangeReg = 0; 4257cdc69557Sdrh } 4258