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 ** 2560ec914cSpeter.d.reid ** i.e. the WHERE clause expressions 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); 369bec6fb3Smistachkin if( pExpr->flags & EP_Generic ) return 0; 37580c8c18Sdrh op = pExpr->op; 38487e262fSdrh if( op==TK_SELECT ){ 396ab3a2ecSdanielk1977 assert( pExpr->flags&EP_xIsSelect ); 406ab3a2ecSdanielk1977 return sqlite3ExprAffinity(pExpr->x.pSelect->pEList->a[0].pExpr); 41a37cdde0Sdanielk1977 } 42487e262fSdrh #ifndef SQLITE_OMIT_CAST 43487e262fSdrh if( op==TK_CAST ){ 4433e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 45fdaac671Sdrh return sqlite3AffinityType(pExpr->u.zToken, 0); 46487e262fSdrh } 47487e262fSdrh #endif 48259a455fSdanielk1977 if( (op==TK_AGG_COLUMN || op==TK_COLUMN || op==TK_REGISTER) 49259a455fSdanielk1977 && pExpr->pTab!=0 50259a455fSdanielk1977 ){ 517d10d5a6Sdrh /* op==TK_REGISTER && pExpr->pTab!=0 happens when pExpr was originally 527d10d5a6Sdrh ** a TK_COLUMN but was previously evaluated and cached in a register */ 537d10d5a6Sdrh int j = pExpr->iColumn; 547d10d5a6Sdrh if( j<0 ) return SQLITE_AFF_INTEGER; 557d10d5a6Sdrh assert( pExpr->pTab && j<pExpr->pTab->nCol ); 567d10d5a6Sdrh return pExpr->pTab->aCol[j].affinity; 577d10d5a6Sdrh } 58a37cdde0Sdanielk1977 return pExpr->affinity; 59a37cdde0Sdanielk1977 } 60a37cdde0Sdanielk1977 6153db1458Sdrh /* 628b4c40d8Sdrh ** Set the collating sequence for expression pExpr to be the collating 63ae80ddeaSdrh ** sequence named by pToken. Return a pointer to a new Expr node that 64ae80ddeaSdrh ** implements the COLLATE operator. 650a8a406eSdrh ** 660a8a406eSdrh ** If a memory allocation error occurs, that fact is recorded in pParse->db 670a8a406eSdrh ** and the pExpr parameter is returned unchanged. 688b4c40d8Sdrh */ 694ef7efadSdrh Expr *sqlite3ExprAddCollateToken( 704ef7efadSdrh Parse *pParse, /* Parsing context */ 714ef7efadSdrh Expr *pExpr, /* Add the "COLLATE" clause to this expression */ 724ef7efadSdrh const Token *pCollName /* Name of collating sequence */ 734ef7efadSdrh ){ 740a8a406eSdrh if( pCollName->n>0 ){ 75ae80ddeaSdrh Expr *pNew = sqlite3ExprAlloc(pParse->db, TK_COLLATE, pCollName, 1); 76ae80ddeaSdrh if( pNew ){ 77ae80ddeaSdrh pNew->pLeft = pExpr; 78a4c3c87eSdrh pNew->flags |= EP_Collate|EP_Skip; 790a8a406eSdrh pExpr = pNew; 80ae80ddeaSdrh } 810a8a406eSdrh } 820a8a406eSdrh return pExpr; 830a8a406eSdrh } 840a8a406eSdrh Expr *sqlite3ExprAddCollateString(Parse *pParse, Expr *pExpr, const char *zC){ 850a8a406eSdrh Token s; 86261d8a51Sdrh assert( zC!=0 ); 870a8a406eSdrh s.z = zC; 880a8a406eSdrh s.n = sqlite3Strlen30(s.z); 89261d8a51Sdrh return sqlite3ExprAddCollateToken(pParse, pExpr, &s); 900a8a406eSdrh } 910a8a406eSdrh 920a8a406eSdrh /* 93a4c3c87eSdrh ** Skip over any TK_COLLATE or TK_AS operators and any unlikely() 94a4c3c87eSdrh ** or likelihood() function at the root of an expression. 950a8a406eSdrh */ 960a8a406eSdrh Expr *sqlite3ExprSkipCollate(Expr *pExpr){ 97a4c3c87eSdrh while( pExpr && ExprHasProperty(pExpr, EP_Skip) ){ 98a4c3c87eSdrh if( ExprHasProperty(pExpr, EP_Unlikely) ){ 99cca9f3d2Sdrh assert( !ExprHasProperty(pExpr, EP_xIsSelect) ); 100cca9f3d2Sdrh assert( pExpr->x.pList->nExpr>0 ); 101a4c3c87eSdrh assert( pExpr->op==TK_FUNCTION ); 102cca9f3d2Sdrh pExpr = pExpr->x.pList->a[0].pExpr; 103cca9f3d2Sdrh }else{ 104a4c3c87eSdrh assert( pExpr->op==TK_COLLATE || pExpr->op==TK_AS ); 105d91eba96Sdrh pExpr = pExpr->pLeft; 106cca9f3d2Sdrh } 107d91eba96Sdrh } 1080a8a406eSdrh return pExpr; 1098b4c40d8Sdrh } 1108b4c40d8Sdrh 1118b4c40d8Sdrh /* 112ae80ddeaSdrh ** Return the collation sequence for the expression pExpr. If 113ae80ddeaSdrh ** there is no defined collating sequence, return NULL. 114ae80ddeaSdrh ** 115ae80ddeaSdrh ** The collating sequence might be determined by a COLLATE operator 116ae80ddeaSdrh ** or by the presence of a column with a defined collating sequence. 117ae80ddeaSdrh ** COLLATE operators take first precedence. Left operands take 118ae80ddeaSdrh ** precedence over right operands. 1190202b29eSdanielk1977 */ 1207cedc8d4Sdanielk1977 CollSeq *sqlite3ExprCollSeq(Parse *pParse, Expr *pExpr){ 121ae80ddeaSdrh sqlite3 *db = pParse->db; 1227cedc8d4Sdanielk1977 CollSeq *pColl = 0; 1237d10d5a6Sdrh Expr *p = pExpr; 124261d8a51Sdrh while( p ){ 125ae80ddeaSdrh int op = p->op; 126fbb24d10Sdrh if( p->flags & EP_Generic ) break; 127ae80ddeaSdrh if( op==TK_CAST || op==TK_UPLUS ){ 128ae80ddeaSdrh p = p->pLeft; 129ae80ddeaSdrh continue; 130ae80ddeaSdrh } 13136e78309Sdan if( op==TK_COLLATE || (op==TK_REGISTER && p->op2==TK_COLLATE) ){ 1327a66da13Sdrh pColl = sqlite3GetCollSeq(pParse, ENC(db), 0, p->u.zToken); 133ae80ddeaSdrh break; 134ae80ddeaSdrh } 135ae80ddeaSdrh if( p->pTab!=0 136ae80ddeaSdrh && (op==TK_AGG_COLUMN || op==TK_COLUMN 137ae80ddeaSdrh || op==TK_REGISTER || op==TK_TRIGGER) 138ae80ddeaSdrh ){ 1397d10d5a6Sdrh /* op==TK_REGISTER && p->pTab!=0 happens when pExpr was originally 1407d10d5a6Sdrh ** a TK_COLUMN but was previously evaluated and cached in a register */ 1417d10d5a6Sdrh int j = p->iColumn; 1427d10d5a6Sdrh if( j>=0 ){ 143ae80ddeaSdrh const char *zColl = p->pTab->aCol[j].zColl; 144c4a64facSdrh pColl = sqlite3FindCollSeq(db, ENC(db), zColl, 0); 1450202b29eSdanielk1977 } 1467d10d5a6Sdrh break; 1477d10d5a6Sdrh } 148ae80ddeaSdrh if( p->flags & EP_Collate ){ 149261d8a51Sdrh if( ALWAYS(p->pLeft) && (p->pLeft->flags & EP_Collate)!=0 ){ 1507d10d5a6Sdrh p = p->pLeft; 151ae80ddeaSdrh }else{ 152ae80ddeaSdrh p = p->pRight; 153ae80ddeaSdrh } 154ae80ddeaSdrh }else{ 155ae80ddeaSdrh break; 156ae80ddeaSdrh } 1570202b29eSdanielk1977 } 1587cedc8d4Sdanielk1977 if( sqlite3CheckCollSeq(pParse, pColl) ){ 1597cedc8d4Sdanielk1977 pColl = 0; 1607cedc8d4Sdanielk1977 } 1617cedc8d4Sdanielk1977 return pColl; 1620202b29eSdanielk1977 } 1630202b29eSdanielk1977 1640202b29eSdanielk1977 /* 165626a879aSdrh ** pExpr is an operand of a comparison operator. aff2 is the 166626a879aSdrh ** type affinity of the other operand. This routine returns the 16753db1458Sdrh ** type affinity that should be used for the comparison operator. 16853db1458Sdrh */ 169e014a838Sdanielk1977 char sqlite3CompareAffinity(Expr *pExpr, char aff2){ 170bf3b721fSdanielk1977 char aff1 = sqlite3ExprAffinity(pExpr); 171e014a838Sdanielk1977 if( aff1 && aff2 ){ 1728df447f0Sdrh /* Both sides of the comparison are columns. If one has numeric 1738df447f0Sdrh ** affinity, use that. Otherwise use no affinity. 174e014a838Sdanielk1977 */ 1758a51256cSdrh if( sqlite3IsNumericAffinity(aff1) || sqlite3IsNumericAffinity(aff2) ){ 176e014a838Sdanielk1977 return SQLITE_AFF_NUMERIC; 177e014a838Sdanielk1977 }else{ 178e014a838Sdanielk1977 return SQLITE_AFF_NONE; 179e014a838Sdanielk1977 } 180e014a838Sdanielk1977 }else if( !aff1 && !aff2 ){ 1815f6a87b3Sdrh /* Neither side of the comparison is a column. Compare the 1825f6a87b3Sdrh ** results directly. 183e014a838Sdanielk1977 */ 1845f6a87b3Sdrh return SQLITE_AFF_NONE; 185e014a838Sdanielk1977 }else{ 186e014a838Sdanielk1977 /* One side is a column, the other is not. Use the columns affinity. */ 187fe05af87Sdrh assert( aff1==0 || aff2==0 ); 188e014a838Sdanielk1977 return (aff1 + aff2); 189e014a838Sdanielk1977 } 190e014a838Sdanielk1977 } 191e014a838Sdanielk1977 19253db1458Sdrh /* 19353db1458Sdrh ** pExpr is a comparison operator. Return the type affinity that should 19453db1458Sdrh ** be applied to both operands prior to doing the comparison. 19553db1458Sdrh */ 196e014a838Sdanielk1977 static char comparisonAffinity(Expr *pExpr){ 197e014a838Sdanielk1977 char aff; 198e014a838Sdanielk1977 assert( pExpr->op==TK_EQ || pExpr->op==TK_IN || pExpr->op==TK_LT || 199e014a838Sdanielk1977 pExpr->op==TK_GT || pExpr->op==TK_GE || pExpr->op==TK_LE || 2006a2fe093Sdrh pExpr->op==TK_NE || pExpr->op==TK_IS || pExpr->op==TK_ISNOT ); 201e014a838Sdanielk1977 assert( pExpr->pLeft ); 202bf3b721fSdanielk1977 aff = sqlite3ExprAffinity(pExpr->pLeft); 203e014a838Sdanielk1977 if( pExpr->pRight ){ 204e014a838Sdanielk1977 aff = sqlite3CompareAffinity(pExpr->pRight, aff); 2056ab3a2ecSdanielk1977 }else if( ExprHasProperty(pExpr, EP_xIsSelect) ){ 2066ab3a2ecSdanielk1977 aff = sqlite3CompareAffinity(pExpr->x.pSelect->pEList->a[0].pExpr, aff); 2076ab3a2ecSdanielk1977 }else if( !aff ){ 208de087bd5Sdrh aff = SQLITE_AFF_NONE; 209e014a838Sdanielk1977 } 210e014a838Sdanielk1977 return aff; 211e014a838Sdanielk1977 } 212e014a838Sdanielk1977 213e014a838Sdanielk1977 /* 214e014a838Sdanielk1977 ** pExpr is a comparison expression, eg. '=', '<', IN(...) etc. 215e014a838Sdanielk1977 ** idx_affinity is the affinity of an indexed column. Return true 216e014a838Sdanielk1977 ** if the index with affinity idx_affinity may be used to implement 217e014a838Sdanielk1977 ** the comparison in pExpr. 218e014a838Sdanielk1977 */ 219e014a838Sdanielk1977 int sqlite3IndexAffinityOk(Expr *pExpr, char idx_affinity){ 220e014a838Sdanielk1977 char aff = comparisonAffinity(pExpr); 2218a51256cSdrh switch( aff ){ 2228a51256cSdrh case SQLITE_AFF_NONE: 2238a51256cSdrh return 1; 2248a51256cSdrh case SQLITE_AFF_TEXT: 2258a51256cSdrh return idx_affinity==SQLITE_AFF_TEXT; 2268a51256cSdrh default: 2278a51256cSdrh return sqlite3IsNumericAffinity(idx_affinity); 2288a51256cSdrh } 229e014a838Sdanielk1977 } 230e014a838Sdanielk1977 231a37cdde0Sdanielk1977 /* 23235573356Sdrh ** Return the P5 value that should be used for a binary comparison 233a37cdde0Sdanielk1977 ** opcode (OP_Eq, OP_Ge etc.) used to compare pExpr1 and pExpr2. 234a37cdde0Sdanielk1977 */ 23535573356Sdrh static u8 binaryCompareP5(Expr *pExpr1, Expr *pExpr2, int jumpIfNull){ 23635573356Sdrh u8 aff = (char)sqlite3ExprAffinity(pExpr2); 2371bd10f8aSdrh aff = (u8)sqlite3CompareAffinity(pExpr1, aff) | (u8)jumpIfNull; 23835573356Sdrh return aff; 239a37cdde0Sdanielk1977 } 240a37cdde0Sdanielk1977 241a2e00042Sdrh /* 2420202b29eSdanielk1977 ** Return a pointer to the collation sequence that should be used by 2430202b29eSdanielk1977 ** a binary comparison operator comparing pLeft and pRight. 2440202b29eSdanielk1977 ** 2450202b29eSdanielk1977 ** If the left hand expression has a collating sequence type, then it is 2460202b29eSdanielk1977 ** used. Otherwise the collation sequence for the right hand expression 2470202b29eSdanielk1977 ** is used, or the default (BINARY) if neither expression has a collating 2480202b29eSdanielk1977 ** type. 249bcbb04e5Sdanielk1977 ** 250bcbb04e5Sdanielk1977 ** Argument pRight (but not pLeft) may be a null pointer. In this case, 251bcbb04e5Sdanielk1977 ** it is not considered. 2520202b29eSdanielk1977 */ 253bcbb04e5Sdanielk1977 CollSeq *sqlite3BinaryCompareCollSeq( 254bcbb04e5Sdanielk1977 Parse *pParse, 255bcbb04e5Sdanielk1977 Expr *pLeft, 256bcbb04e5Sdanielk1977 Expr *pRight 257bcbb04e5Sdanielk1977 ){ 258ec41ddacSdrh CollSeq *pColl; 259ec41ddacSdrh assert( pLeft ); 260ae80ddeaSdrh if( pLeft->flags & EP_Collate ){ 261ae80ddeaSdrh pColl = sqlite3ExprCollSeq(pParse, pLeft); 262ae80ddeaSdrh }else if( pRight && (pRight->flags & EP_Collate)!=0 ){ 263ae80ddeaSdrh pColl = sqlite3ExprCollSeq(pParse, pRight); 264ec41ddacSdrh }else{ 265ec41ddacSdrh pColl = sqlite3ExprCollSeq(pParse, pLeft); 2660202b29eSdanielk1977 if( !pColl ){ 2677cedc8d4Sdanielk1977 pColl = sqlite3ExprCollSeq(pParse, pRight); 2680202b29eSdanielk1977 } 269ec41ddacSdrh } 2700202b29eSdanielk1977 return pColl; 2710202b29eSdanielk1977 } 2720202b29eSdanielk1977 2730202b29eSdanielk1977 /* 274be5c89acSdrh ** Generate code for a comparison operator. 275be5c89acSdrh */ 276be5c89acSdrh static int codeCompare( 277be5c89acSdrh Parse *pParse, /* The parsing (and code generating) context */ 278be5c89acSdrh Expr *pLeft, /* The left operand */ 279be5c89acSdrh Expr *pRight, /* The right operand */ 280be5c89acSdrh int opcode, /* The comparison opcode */ 28135573356Sdrh int in1, int in2, /* Register holding operands */ 282be5c89acSdrh int dest, /* Jump here if true. */ 283be5c89acSdrh int jumpIfNull /* If true, jump if either operand is NULL */ 284be5c89acSdrh ){ 28535573356Sdrh int p5; 28635573356Sdrh int addr; 28735573356Sdrh CollSeq *p4; 28835573356Sdrh 28935573356Sdrh p4 = sqlite3BinaryCompareCollSeq(pParse, pLeft, pRight); 29035573356Sdrh p5 = binaryCompareP5(pLeft, pRight, jumpIfNull); 29135573356Sdrh addr = sqlite3VdbeAddOp4(pParse->pVdbe, opcode, in2, dest, in1, 29235573356Sdrh (void*)p4, P4_COLLSEQ); 2931bd10f8aSdrh sqlite3VdbeChangeP5(pParse->pVdbe, (u8)p5); 29435573356Sdrh return addr; 295be5c89acSdrh } 296be5c89acSdrh 2974b5255acSdanielk1977 #if SQLITE_MAX_EXPR_DEPTH>0 2984b5255acSdanielk1977 /* 2994b5255acSdanielk1977 ** Check that argument nHeight is less than or equal to the maximum 3004b5255acSdanielk1977 ** expression depth allowed. If it is not, leave an error message in 3014b5255acSdanielk1977 ** pParse. 3024b5255acSdanielk1977 */ 3037d10d5a6Sdrh int sqlite3ExprCheckHeight(Parse *pParse, int nHeight){ 3044b5255acSdanielk1977 int rc = SQLITE_OK; 3054b5255acSdanielk1977 int mxHeight = pParse->db->aLimit[SQLITE_LIMIT_EXPR_DEPTH]; 3064b5255acSdanielk1977 if( nHeight>mxHeight ){ 3074b5255acSdanielk1977 sqlite3ErrorMsg(pParse, 3084b5255acSdanielk1977 "Expression tree is too large (maximum depth %d)", mxHeight 3094b5255acSdanielk1977 ); 3104b5255acSdanielk1977 rc = SQLITE_ERROR; 3114b5255acSdanielk1977 } 3124b5255acSdanielk1977 return rc; 3134b5255acSdanielk1977 } 3144b5255acSdanielk1977 3154b5255acSdanielk1977 /* The following three functions, heightOfExpr(), heightOfExprList() 3164b5255acSdanielk1977 ** and heightOfSelect(), are used to determine the maximum height 3174b5255acSdanielk1977 ** of any expression tree referenced by the structure passed as the 3184b5255acSdanielk1977 ** first argument. 3194b5255acSdanielk1977 ** 3204b5255acSdanielk1977 ** If this maximum height is greater than the current value pointed 3214b5255acSdanielk1977 ** to by pnHeight, the second parameter, then set *pnHeight to that 3224b5255acSdanielk1977 ** value. 3234b5255acSdanielk1977 */ 3244b5255acSdanielk1977 static void heightOfExpr(Expr *p, int *pnHeight){ 3254b5255acSdanielk1977 if( p ){ 3264b5255acSdanielk1977 if( p->nHeight>*pnHeight ){ 3274b5255acSdanielk1977 *pnHeight = p->nHeight; 3284b5255acSdanielk1977 } 3294b5255acSdanielk1977 } 3304b5255acSdanielk1977 } 3314b5255acSdanielk1977 static void heightOfExprList(ExprList *p, int *pnHeight){ 3324b5255acSdanielk1977 if( p ){ 3334b5255acSdanielk1977 int i; 3344b5255acSdanielk1977 for(i=0; i<p->nExpr; i++){ 3354b5255acSdanielk1977 heightOfExpr(p->a[i].pExpr, pnHeight); 3364b5255acSdanielk1977 } 3374b5255acSdanielk1977 } 3384b5255acSdanielk1977 } 3394b5255acSdanielk1977 static void heightOfSelect(Select *p, int *pnHeight){ 3404b5255acSdanielk1977 if( p ){ 3414b5255acSdanielk1977 heightOfExpr(p->pWhere, pnHeight); 3424b5255acSdanielk1977 heightOfExpr(p->pHaving, pnHeight); 3434b5255acSdanielk1977 heightOfExpr(p->pLimit, pnHeight); 3444b5255acSdanielk1977 heightOfExpr(p->pOffset, pnHeight); 3454b5255acSdanielk1977 heightOfExprList(p->pEList, pnHeight); 3464b5255acSdanielk1977 heightOfExprList(p->pGroupBy, pnHeight); 3474b5255acSdanielk1977 heightOfExprList(p->pOrderBy, pnHeight); 3484b5255acSdanielk1977 heightOfSelect(p->pPrior, pnHeight); 3494b5255acSdanielk1977 } 3504b5255acSdanielk1977 } 3514b5255acSdanielk1977 3524b5255acSdanielk1977 /* 3534b5255acSdanielk1977 ** Set the Expr.nHeight variable in the structure passed as an 3544b5255acSdanielk1977 ** argument. An expression with no children, Expr.pList or 3554b5255acSdanielk1977 ** Expr.pSelect member has a height of 1. Any other expression 3564b5255acSdanielk1977 ** has a height equal to the maximum height of any other 3574b5255acSdanielk1977 ** referenced Expr plus one. 3584b5255acSdanielk1977 */ 3594b5255acSdanielk1977 static void exprSetHeight(Expr *p){ 3604b5255acSdanielk1977 int nHeight = 0; 3614b5255acSdanielk1977 heightOfExpr(p->pLeft, &nHeight); 3624b5255acSdanielk1977 heightOfExpr(p->pRight, &nHeight); 3636ab3a2ecSdanielk1977 if( ExprHasProperty(p, EP_xIsSelect) ){ 3646ab3a2ecSdanielk1977 heightOfSelect(p->x.pSelect, &nHeight); 3656ab3a2ecSdanielk1977 }else{ 3666ab3a2ecSdanielk1977 heightOfExprList(p->x.pList, &nHeight); 3676ab3a2ecSdanielk1977 } 3684b5255acSdanielk1977 p->nHeight = nHeight + 1; 3694b5255acSdanielk1977 } 3704b5255acSdanielk1977 3714b5255acSdanielk1977 /* 3724b5255acSdanielk1977 ** Set the Expr.nHeight variable using the exprSetHeight() function. If 3734b5255acSdanielk1977 ** the height is greater than the maximum allowed expression depth, 3744b5255acSdanielk1977 ** leave an error in pParse. 3754b5255acSdanielk1977 */ 3764b5255acSdanielk1977 void sqlite3ExprSetHeight(Parse *pParse, Expr *p){ 3774b5255acSdanielk1977 exprSetHeight(p); 3787d10d5a6Sdrh sqlite3ExprCheckHeight(pParse, p->nHeight); 3794b5255acSdanielk1977 } 3804b5255acSdanielk1977 3814b5255acSdanielk1977 /* 3824b5255acSdanielk1977 ** Return the maximum height of any expression tree referenced 3834b5255acSdanielk1977 ** by the select statement passed as an argument. 3844b5255acSdanielk1977 */ 3854b5255acSdanielk1977 int sqlite3SelectExprHeight(Select *p){ 3864b5255acSdanielk1977 int nHeight = 0; 3874b5255acSdanielk1977 heightOfSelect(p, &nHeight); 3884b5255acSdanielk1977 return nHeight; 3894b5255acSdanielk1977 } 3904b5255acSdanielk1977 #else 3914b5255acSdanielk1977 #define exprSetHeight(y) 3924b5255acSdanielk1977 #endif /* SQLITE_MAX_EXPR_DEPTH>0 */ 3934b5255acSdanielk1977 394be5c89acSdrh /* 395b7916a78Sdrh ** This routine is the core allocator for Expr nodes. 396b7916a78Sdrh ** 397a76b5dfcSdrh ** Construct a new expression node and return a pointer to it. Memory 398b7916a78Sdrh ** for this node and for the pToken argument is a single allocation 399b7916a78Sdrh ** obtained from sqlite3DbMalloc(). The calling function 400a76b5dfcSdrh ** is responsible for making sure the node eventually gets freed. 401b7916a78Sdrh ** 402b7916a78Sdrh ** If dequote is true, then the token (if it exists) is dequoted. 403b7916a78Sdrh ** If dequote is false, no dequoting is performance. The deQuote 404b7916a78Sdrh ** parameter is ignored if pToken is NULL or if the token does not 405b7916a78Sdrh ** appear to be quoted. If the quotes were of the form "..." (double-quotes) 406b7916a78Sdrh ** then the EP_DblQuoted flag is set on the expression node. 40733e619fcSdrh ** 40833e619fcSdrh ** Special case: If op==TK_INTEGER and pToken points to a string that 40933e619fcSdrh ** can be translated into a 32-bit integer, then the token is not 41033e619fcSdrh ** stored in u.zToken. Instead, the integer values is written 41133e619fcSdrh ** into u.iValue and the EP_IntValue flag is set. No extra storage 41233e619fcSdrh ** is allocated to hold the integer text and the dequote flag is ignored. 413a76b5dfcSdrh */ 414b7916a78Sdrh Expr *sqlite3ExprAlloc( 415a1644fd8Sdanielk1977 sqlite3 *db, /* Handle for sqlite3DbMallocZero() (may be null) */ 41617435752Sdrh int op, /* Expression opcode */ 417b7916a78Sdrh const Token *pToken, /* Token argument. Might be NULL */ 418b7916a78Sdrh int dequote /* True to dequote */ 41917435752Sdrh ){ 420a76b5dfcSdrh Expr *pNew; 42133e619fcSdrh int nExtra = 0; 422cf697396Sshane int iValue = 0; 423b7916a78Sdrh 424b7916a78Sdrh if( pToken ){ 42533e619fcSdrh if( op!=TK_INTEGER || pToken->z==0 42633e619fcSdrh || sqlite3GetInt32(pToken->z, &iValue)==0 ){ 427b7916a78Sdrh nExtra = pToken->n+1; 428d50ffc41Sdrh assert( iValue>=0 ); 42933e619fcSdrh } 430a76b5dfcSdrh } 431b7916a78Sdrh pNew = sqlite3DbMallocZero(db, sizeof(Expr)+nExtra); 432b7916a78Sdrh if( pNew ){ 4331bd10f8aSdrh pNew->op = (u8)op; 434a58fdfb1Sdanielk1977 pNew->iAgg = -1; 435a76b5dfcSdrh if( pToken ){ 43633e619fcSdrh if( nExtra==0 ){ 43733e619fcSdrh pNew->flags |= EP_IntValue; 43833e619fcSdrh pNew->u.iValue = iValue; 43933e619fcSdrh }else{ 440d9da78a2Sdrh int c; 44133e619fcSdrh pNew->u.zToken = (char*)&pNew[1]; 442b07028f7Sdrh assert( pToken->z!=0 || pToken->n==0 ); 443b07028f7Sdrh if( pToken->n ) memcpy(pNew->u.zToken, pToken->z, pToken->n); 44433e619fcSdrh pNew->u.zToken[pToken->n] = 0; 445b7916a78Sdrh if( dequote && nExtra>=3 446d9da78a2Sdrh && ((c = pToken->z[0])=='\'' || c=='"' || c=='[' || c=='`') ){ 44733e619fcSdrh sqlite3Dequote(pNew->u.zToken); 44824fb627aSdrh if( c=='"' ) pNew->flags |= EP_DblQuoted; 449a34001c9Sdrh } 450a34001c9Sdrh } 45133e619fcSdrh } 452b7916a78Sdrh #if SQLITE_MAX_EXPR_DEPTH>0 453b7916a78Sdrh pNew->nHeight = 1; 454b7916a78Sdrh #endif 455a34001c9Sdrh } 456a76b5dfcSdrh return pNew; 457a76b5dfcSdrh } 458a76b5dfcSdrh 459a76b5dfcSdrh /* 460b7916a78Sdrh ** Allocate a new expression node from a zero-terminated token that has 461b7916a78Sdrh ** already been dequoted. 462b7916a78Sdrh */ 463b7916a78Sdrh Expr *sqlite3Expr( 464b7916a78Sdrh sqlite3 *db, /* Handle for sqlite3DbMallocZero() (may be null) */ 465b7916a78Sdrh int op, /* Expression opcode */ 466b7916a78Sdrh const char *zToken /* Token argument. Might be NULL */ 467b7916a78Sdrh ){ 468b7916a78Sdrh Token x; 469b7916a78Sdrh x.z = zToken; 470b7916a78Sdrh x.n = zToken ? sqlite3Strlen30(zToken) : 0; 471b7916a78Sdrh return sqlite3ExprAlloc(db, op, &x, 0); 472b7916a78Sdrh } 473b7916a78Sdrh 474b7916a78Sdrh /* 475b7916a78Sdrh ** Attach subtrees pLeft and pRight to the Expr node pRoot. 476b7916a78Sdrh ** 477b7916a78Sdrh ** If pRoot==NULL that means that a memory allocation error has occurred. 478b7916a78Sdrh ** In that case, delete the subtrees pLeft and pRight. 479b7916a78Sdrh */ 480b7916a78Sdrh void sqlite3ExprAttachSubtrees( 481b7916a78Sdrh sqlite3 *db, 482b7916a78Sdrh Expr *pRoot, 483b7916a78Sdrh Expr *pLeft, 484b7916a78Sdrh Expr *pRight 485b7916a78Sdrh ){ 486b7916a78Sdrh if( pRoot==0 ){ 487b7916a78Sdrh assert( db->mallocFailed ); 488b7916a78Sdrh sqlite3ExprDelete(db, pLeft); 489b7916a78Sdrh sqlite3ExprDelete(db, pRight); 490b7916a78Sdrh }else{ 491b7916a78Sdrh if( pRight ){ 492b7916a78Sdrh pRoot->pRight = pRight; 493ae80ddeaSdrh pRoot->flags |= EP_Collate & pRight->flags; 494b7916a78Sdrh } 495b7916a78Sdrh if( pLeft ){ 496b7916a78Sdrh pRoot->pLeft = pLeft; 497ae80ddeaSdrh pRoot->flags |= EP_Collate & pLeft->flags; 498b7916a78Sdrh } 499b7916a78Sdrh exprSetHeight(pRoot); 500b7916a78Sdrh } 501b7916a78Sdrh } 502b7916a78Sdrh 503b7916a78Sdrh /* 50460ec914cSpeter.d.reid ** Allocate an Expr node which joins as many as two subtrees. 505b7916a78Sdrh ** 506bf664469Sdrh ** One or both of the subtrees can be NULL. Return a pointer to the new 507bf664469Sdrh ** Expr node. Or, if an OOM error occurs, set pParse->db->mallocFailed, 508bf664469Sdrh ** free the subtrees and return NULL. 509206f3d96Sdrh */ 51017435752Sdrh Expr *sqlite3PExpr( 51117435752Sdrh Parse *pParse, /* Parsing context */ 51217435752Sdrh int op, /* Expression opcode */ 51317435752Sdrh Expr *pLeft, /* Left operand */ 51417435752Sdrh Expr *pRight, /* Right operand */ 51517435752Sdrh const Token *pToken /* Argument token */ 51617435752Sdrh ){ 5175fb52caaSdrh Expr *p; 5185fb52caaSdrh if( op==TK_AND && pLeft && pRight ){ 5195fb52caaSdrh /* Take advantage of short-circuit false optimization for AND */ 5205fb52caaSdrh p = sqlite3ExprAnd(pParse->db, pLeft, pRight); 5215fb52caaSdrh }else{ 5225fb52caaSdrh p = sqlite3ExprAlloc(pParse->db, op, pToken, 1); 523b7916a78Sdrh sqlite3ExprAttachSubtrees(pParse->db, p, pLeft, pRight); 5245fb52caaSdrh } 5252b359bdbSdan if( p ) { 5262b359bdbSdan sqlite3ExprCheckHeight(pParse, p->nHeight); 5272b359bdbSdan } 5284e0cff60Sdrh return p; 5294e0cff60Sdrh } 5304e0cff60Sdrh 5314e0cff60Sdrh /* 532991a1985Sdrh ** If the expression is always either TRUE or FALSE (respectively), 533991a1985Sdrh ** then return 1. If one cannot determine the truth value of the 534991a1985Sdrh ** expression at compile-time return 0. 535991a1985Sdrh ** 536991a1985Sdrh ** This is an optimization. If is OK to return 0 here even if 537991a1985Sdrh ** the expression really is always false or false (a false negative). 538991a1985Sdrh ** But it is a bug to return 1 if the expression might have different 539991a1985Sdrh ** boolean values in different circumstances (a false positive.) 5405fb52caaSdrh ** 5415fb52caaSdrh ** Note that if the expression is part of conditional for a 5425fb52caaSdrh ** LEFT JOIN, then we cannot determine at compile-time whether or not 5435fb52caaSdrh ** is it true or false, so always return 0. 5445fb52caaSdrh */ 545991a1985Sdrh static int exprAlwaysTrue(Expr *p){ 546991a1985Sdrh int v = 0; 547991a1985Sdrh if( ExprHasProperty(p, EP_FromJoin) ) return 0; 548991a1985Sdrh if( !sqlite3ExprIsInteger(p, &v) ) return 0; 549991a1985Sdrh return v!=0; 550991a1985Sdrh } 5515fb52caaSdrh static int exprAlwaysFalse(Expr *p){ 5525fb52caaSdrh int v = 0; 5535fb52caaSdrh if( ExprHasProperty(p, EP_FromJoin) ) return 0; 5545fb52caaSdrh if( !sqlite3ExprIsInteger(p, &v) ) return 0; 5555fb52caaSdrh return v==0; 5565fb52caaSdrh } 5575fb52caaSdrh 5585fb52caaSdrh /* 55991bb0eedSdrh ** Join two expressions using an AND operator. If either expression is 56091bb0eedSdrh ** NULL, then just return the other expression. 5615fb52caaSdrh ** 5625fb52caaSdrh ** If one side or the other of the AND is known to be false, then instead 5635fb52caaSdrh ** of returning an AND expression, just return a constant expression with 5645fb52caaSdrh ** a value of false. 56591bb0eedSdrh */ 5661e536953Sdanielk1977 Expr *sqlite3ExprAnd(sqlite3 *db, Expr *pLeft, Expr *pRight){ 56791bb0eedSdrh if( pLeft==0 ){ 56891bb0eedSdrh return pRight; 56991bb0eedSdrh }else if( pRight==0 ){ 57091bb0eedSdrh return pLeft; 5715fb52caaSdrh }else if( exprAlwaysFalse(pLeft) || exprAlwaysFalse(pRight) ){ 5725fb52caaSdrh sqlite3ExprDelete(db, pLeft); 5735fb52caaSdrh sqlite3ExprDelete(db, pRight); 5745fb52caaSdrh return sqlite3ExprAlloc(db, TK_INTEGER, &sqlite3IntTokens[0], 0); 57591bb0eedSdrh }else{ 576b7916a78Sdrh Expr *pNew = sqlite3ExprAlloc(db, TK_AND, 0, 0); 577b7916a78Sdrh sqlite3ExprAttachSubtrees(db, pNew, pLeft, pRight); 578b7916a78Sdrh return pNew; 579a76b5dfcSdrh } 580a76b5dfcSdrh } 581a76b5dfcSdrh 582a76b5dfcSdrh /* 583a76b5dfcSdrh ** Construct a new expression node for a function with multiple 584a76b5dfcSdrh ** arguments. 585a76b5dfcSdrh */ 58617435752Sdrh Expr *sqlite3ExprFunction(Parse *pParse, ExprList *pList, Token *pToken){ 587a76b5dfcSdrh Expr *pNew; 588633e6d57Sdrh sqlite3 *db = pParse->db; 5894b202ae2Sdanielk1977 assert( pToken ); 590b7916a78Sdrh pNew = sqlite3ExprAlloc(db, TK_FUNCTION, pToken, 1); 591a76b5dfcSdrh if( pNew==0 ){ 592d9da78a2Sdrh sqlite3ExprListDelete(db, pList); /* Avoid memory leak when malloc fails */ 593a76b5dfcSdrh return 0; 594a76b5dfcSdrh } 5956ab3a2ecSdanielk1977 pNew->x.pList = pList; 5966ab3a2ecSdanielk1977 assert( !ExprHasProperty(pNew, EP_xIsSelect) ); 5974b5255acSdanielk1977 sqlite3ExprSetHeight(pParse, pNew); 598a76b5dfcSdrh return pNew; 599a76b5dfcSdrh } 600a76b5dfcSdrh 601a76b5dfcSdrh /* 602fa6bc000Sdrh ** Assign a variable number to an expression that encodes a wildcard 603fa6bc000Sdrh ** in the original SQL statement. 604fa6bc000Sdrh ** 605fa6bc000Sdrh ** Wildcards consisting of a single "?" are assigned the next sequential 606fa6bc000Sdrh ** variable number. 607fa6bc000Sdrh ** 608fa6bc000Sdrh ** Wildcards of the form "?nnn" are assigned the number "nnn". We make 609fa6bc000Sdrh ** sure "nnn" is not too be to avoid a denial of service attack when 610fa6bc000Sdrh ** the SQL statement comes from an external source. 611fa6bc000Sdrh ** 61251f49f17Sdrh ** Wildcards of the form ":aaa", "@aaa", or "$aaa" are assigned the same number 613fa6bc000Sdrh ** as the previous instance of the same wildcard. Or if this is the first 61460ec914cSpeter.d.reid ** instance of the wildcard, the next sequential variable number is 615fa6bc000Sdrh ** assigned. 616fa6bc000Sdrh */ 617fa6bc000Sdrh void sqlite3ExprAssignVarNumber(Parse *pParse, Expr *pExpr){ 61817435752Sdrh sqlite3 *db = pParse->db; 619b7916a78Sdrh const char *z; 62017435752Sdrh 621fa6bc000Sdrh if( pExpr==0 ) return; 622c5cd1249Sdrh assert( !ExprHasProperty(pExpr, EP_IntValue|EP_Reduced|EP_TokenOnly) ); 62333e619fcSdrh z = pExpr->u.zToken; 624b7916a78Sdrh assert( z!=0 ); 625b7916a78Sdrh assert( z[0]!=0 ); 626b7916a78Sdrh if( z[1]==0 ){ 627fa6bc000Sdrh /* Wildcard of the form "?". Assign the next variable number */ 628b7916a78Sdrh assert( z[0]=='?' ); 6298677d308Sdrh pExpr->iColumn = (ynVar)(++pParse->nVar); 630124c0b49Sdrh }else{ 631124c0b49Sdrh ynVar x = 0; 632124c0b49Sdrh u32 n = sqlite3Strlen30(z); 633124c0b49Sdrh if( z[0]=='?' ){ 634fa6bc000Sdrh /* Wildcard of the form "?nnn". Convert "nnn" to an integer and 635fa6bc000Sdrh ** use it as the variable number */ 636c8d735aeSdan i64 i; 637124c0b49Sdrh int bOk = 0==sqlite3Atoi64(&z[1], &i, n-1, SQLITE_UTF8); 638124c0b49Sdrh pExpr->iColumn = x = (ynVar)i; 639c5499befSdrh testcase( i==0 ); 640c5499befSdrh testcase( i==1 ); 641c5499befSdrh testcase( i==db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER]-1 ); 642c5499befSdrh testcase( i==db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER] ); 643c8d735aeSdan if( bOk==0 || i<1 || i>db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER] ){ 644fa6bc000Sdrh sqlite3ErrorMsg(pParse, "variable number must be between ?1 and ?%d", 645bb4957f8Sdrh db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER]); 646124c0b49Sdrh x = 0; 647fa6bc000Sdrh } 648fa6bc000Sdrh if( i>pParse->nVar ){ 6491df2db7fSshaneh pParse->nVar = (int)i; 650fa6bc000Sdrh } 651fa6bc000Sdrh }else{ 65251f49f17Sdrh /* Wildcards like ":aaa", "$aaa" or "@aaa". Reuse the same variable 653fa6bc000Sdrh ** number as the prior appearance of the same name, or if the name 654fa6bc000Sdrh ** has never appeared before, reuse the same variable number 655fa6bc000Sdrh */ 656124c0b49Sdrh ynVar i; 657124c0b49Sdrh for(i=0; i<pParse->nzVar; i++){ 658503a686eSdrh if( pParse->azVar[i] && strcmp(pParse->azVar[i],z)==0 ){ 659124c0b49Sdrh pExpr->iColumn = x = (ynVar)i+1; 660fa6bc000Sdrh break; 661fa6bc000Sdrh } 662fa6bc000Sdrh } 663124c0b49Sdrh if( x==0 ) x = pExpr->iColumn = (ynVar)(++pParse->nVar); 664fa6bc000Sdrh } 665124c0b49Sdrh if( x>0 ){ 666124c0b49Sdrh if( x>pParse->nzVar ){ 667124c0b49Sdrh char **a; 668124c0b49Sdrh a = sqlite3DbRealloc(db, pParse->azVar, x*sizeof(a[0])); 669124c0b49Sdrh if( a==0 ) return; /* Error reported through db->mallocFailed */ 670124c0b49Sdrh pParse->azVar = a; 671124c0b49Sdrh memset(&a[pParse->nzVar], 0, (x-pParse->nzVar)*sizeof(a[0])); 672124c0b49Sdrh pParse->nzVar = x; 673124c0b49Sdrh } 674124c0b49Sdrh if( z[0]!='?' || pParse->azVar[x-1]==0 ){ 675124c0b49Sdrh sqlite3DbFree(db, pParse->azVar[x-1]); 676124c0b49Sdrh pParse->azVar[x-1] = sqlite3DbStrNDup(db, z, n); 677fa6bc000Sdrh } 678fa6bc000Sdrh } 679fa6bc000Sdrh } 680bb4957f8Sdrh if( !pParse->nErr && pParse->nVar>db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER] ){ 681832b2664Sdanielk1977 sqlite3ErrorMsg(pParse, "too many SQL variables"); 682832b2664Sdanielk1977 } 683fa6bc000Sdrh } 684fa6bc000Sdrh 685fa6bc000Sdrh /* 686f6963f99Sdan ** Recursively delete an expression tree. 687a2e00042Sdrh */ 688f6963f99Sdan void sqlite3ExprDelete(sqlite3 *db, Expr *p){ 689f6963f99Sdan if( p==0 ) return; 690d50ffc41Sdrh /* Sanity check: Assert that the IntValue is non-negative if it exists */ 691d50ffc41Sdrh assert( !ExprHasProperty(p, EP_IntValue) || p->u.iValue>=0 ); 692c5cd1249Sdrh if( !ExprHasProperty(p, EP_TokenOnly) ){ 693c5cd1249Sdrh /* The Expr.x union is never used at the same time as Expr.pRight */ 694c5cd1249Sdrh assert( p->x.pList==0 || p->pRight==0 ); 695633e6d57Sdrh sqlite3ExprDelete(db, p->pLeft); 696633e6d57Sdrh sqlite3ExprDelete(db, p->pRight); 697c5cd1249Sdrh if( ExprHasProperty(p, EP_MemToken) ) sqlite3DbFree(db, p->u.zToken); 6986ab3a2ecSdanielk1977 if( ExprHasProperty(p, EP_xIsSelect) ){ 6996ab3a2ecSdanielk1977 sqlite3SelectDelete(db, p->x.pSelect); 7006ab3a2ecSdanielk1977 }else{ 7016ab3a2ecSdanielk1977 sqlite3ExprListDelete(db, p->x.pList); 7026ab3a2ecSdanielk1977 } 7036ab3a2ecSdanielk1977 } 70433e619fcSdrh if( !ExprHasProperty(p, EP_Static) ){ 705633e6d57Sdrh sqlite3DbFree(db, p); 706a2e00042Sdrh } 70733e619fcSdrh } 708a2e00042Sdrh 709d2687b77Sdrh /* 7106ab3a2ecSdanielk1977 ** Return the number of bytes allocated for the expression structure 7116ab3a2ecSdanielk1977 ** passed as the first argument. This is always one of EXPR_FULLSIZE, 7126ab3a2ecSdanielk1977 ** EXPR_REDUCEDSIZE or EXPR_TOKENONLYSIZE. 7136ab3a2ecSdanielk1977 */ 7146ab3a2ecSdanielk1977 static int exprStructSize(Expr *p){ 7156ab3a2ecSdanielk1977 if( ExprHasProperty(p, EP_TokenOnly) ) return EXPR_TOKENONLYSIZE; 7166ab3a2ecSdanielk1977 if( ExprHasProperty(p, EP_Reduced) ) return EXPR_REDUCEDSIZE; 7176ab3a2ecSdanielk1977 return EXPR_FULLSIZE; 7186ab3a2ecSdanielk1977 } 7196ab3a2ecSdanielk1977 7206ab3a2ecSdanielk1977 /* 72133e619fcSdrh ** The dupedExpr*Size() routines each return the number of bytes required 72233e619fcSdrh ** to store a copy of an expression or expression tree. They differ in 72333e619fcSdrh ** how much of the tree is measured. 72433e619fcSdrh ** 72533e619fcSdrh ** dupedExprStructSize() Size of only the Expr structure 72633e619fcSdrh ** dupedExprNodeSize() Size of Expr + space for token 72733e619fcSdrh ** dupedExprSize() Expr + token + subtree components 72833e619fcSdrh ** 72933e619fcSdrh *************************************************************************** 73033e619fcSdrh ** 73133e619fcSdrh ** The dupedExprStructSize() function returns two values OR-ed together: 73233e619fcSdrh ** (1) the space required for a copy of the Expr structure only and 73333e619fcSdrh ** (2) the EP_xxx flags that indicate what the structure size should be. 73433e619fcSdrh ** The return values is always one of: 73533e619fcSdrh ** 73633e619fcSdrh ** EXPR_FULLSIZE 73733e619fcSdrh ** EXPR_REDUCEDSIZE | EP_Reduced 73833e619fcSdrh ** EXPR_TOKENONLYSIZE | EP_TokenOnly 73933e619fcSdrh ** 74033e619fcSdrh ** The size of the structure can be found by masking the return value 74133e619fcSdrh ** of this routine with 0xfff. The flags can be found by masking the 74233e619fcSdrh ** return value with EP_Reduced|EP_TokenOnly. 74333e619fcSdrh ** 74433e619fcSdrh ** Note that with flags==EXPRDUP_REDUCE, this routines works on full-size 74533e619fcSdrh ** (unreduced) Expr objects as they or originally constructed by the parser. 74633e619fcSdrh ** During expression analysis, extra information is computed and moved into 74733e619fcSdrh ** later parts of teh Expr object and that extra information might get chopped 74833e619fcSdrh ** off if the expression is reduced. Note also that it does not work to 74960ec914cSpeter.d.reid ** make an EXPRDUP_REDUCE copy of a reduced expression. It is only legal 75033e619fcSdrh ** to reduce a pristine expression tree from the parser. The implementation 75133e619fcSdrh ** of dupedExprStructSize() contain multiple assert() statements that attempt 75233e619fcSdrh ** to enforce this constraint. 7536ab3a2ecSdanielk1977 */ 7546ab3a2ecSdanielk1977 static int dupedExprStructSize(Expr *p, int flags){ 7556ab3a2ecSdanielk1977 int nSize; 75633e619fcSdrh assert( flags==EXPRDUP_REDUCE || flags==0 ); /* Only one flag value allowed */ 757aecd8021Sdrh assert( EXPR_FULLSIZE<=0xfff ); 758aecd8021Sdrh assert( (0xfff & (EP_Reduced|EP_TokenOnly))==0 ); 7596ab3a2ecSdanielk1977 if( 0==(flags&EXPRDUP_REDUCE) ){ 7606ab3a2ecSdanielk1977 nSize = EXPR_FULLSIZE; 7616ab3a2ecSdanielk1977 }else{ 762c5cd1249Sdrh assert( !ExprHasProperty(p, EP_TokenOnly|EP_Reduced) ); 76333e619fcSdrh assert( !ExprHasProperty(p, EP_FromJoin) ); 764c5cd1249Sdrh assert( !ExprHasProperty(p, EP_MemToken) ); 765ebb6a65dSdrh assert( !ExprHasProperty(p, EP_NoReduce) ); 766aecd8021Sdrh if( p->pLeft || p->x.pList ){ 76733e619fcSdrh nSize = EXPR_REDUCEDSIZE | EP_Reduced; 76833e619fcSdrh }else{ 769aecd8021Sdrh assert( p->pRight==0 ); 77033e619fcSdrh nSize = EXPR_TOKENONLYSIZE | EP_TokenOnly; 77133e619fcSdrh } 7726ab3a2ecSdanielk1977 } 7736ab3a2ecSdanielk1977 return nSize; 7746ab3a2ecSdanielk1977 } 7756ab3a2ecSdanielk1977 7766ab3a2ecSdanielk1977 /* 77733e619fcSdrh ** This function returns the space in bytes required to store the copy 77833e619fcSdrh ** of the Expr structure and a copy of the Expr.u.zToken string (if that 77933e619fcSdrh ** string is defined.) 7806ab3a2ecSdanielk1977 */ 7816ab3a2ecSdanielk1977 static int dupedExprNodeSize(Expr *p, int flags){ 78233e619fcSdrh int nByte = dupedExprStructSize(p, flags) & 0xfff; 78333e619fcSdrh if( !ExprHasProperty(p, EP_IntValue) && p->u.zToken ){ 78433e619fcSdrh nByte += sqlite3Strlen30(p->u.zToken)+1; 7856ab3a2ecSdanielk1977 } 786bc73971dSdanielk1977 return ROUND8(nByte); 7876ab3a2ecSdanielk1977 } 7886ab3a2ecSdanielk1977 7896ab3a2ecSdanielk1977 /* 7906ab3a2ecSdanielk1977 ** Return the number of bytes required to create a duplicate of the 7916ab3a2ecSdanielk1977 ** expression passed as the first argument. The second argument is a 7926ab3a2ecSdanielk1977 ** mask containing EXPRDUP_XXX flags. 7936ab3a2ecSdanielk1977 ** 7946ab3a2ecSdanielk1977 ** The value returned includes space to create a copy of the Expr struct 79533e619fcSdrh ** itself and the buffer referred to by Expr.u.zToken, if any. 7966ab3a2ecSdanielk1977 ** 7976ab3a2ecSdanielk1977 ** If the EXPRDUP_REDUCE flag is set, then the return value includes 7986ab3a2ecSdanielk1977 ** space to duplicate all Expr nodes in the tree formed by Expr.pLeft 7996ab3a2ecSdanielk1977 ** and Expr.pRight variables (but not for any structures pointed to or 8006ab3a2ecSdanielk1977 ** descended from the Expr.x.pList or Expr.x.pSelect variables). 8016ab3a2ecSdanielk1977 */ 8026ab3a2ecSdanielk1977 static int dupedExprSize(Expr *p, int flags){ 8036ab3a2ecSdanielk1977 int nByte = 0; 8046ab3a2ecSdanielk1977 if( p ){ 8056ab3a2ecSdanielk1977 nByte = dupedExprNodeSize(p, flags); 8066ab3a2ecSdanielk1977 if( flags&EXPRDUP_REDUCE ){ 807b7916a78Sdrh nByte += dupedExprSize(p->pLeft, flags) + dupedExprSize(p->pRight, flags); 8086ab3a2ecSdanielk1977 } 8096ab3a2ecSdanielk1977 } 8106ab3a2ecSdanielk1977 return nByte; 8116ab3a2ecSdanielk1977 } 8126ab3a2ecSdanielk1977 8136ab3a2ecSdanielk1977 /* 8146ab3a2ecSdanielk1977 ** This function is similar to sqlite3ExprDup(), except that if pzBuffer 8156ab3a2ecSdanielk1977 ** is not NULL then *pzBuffer is assumed to point to a buffer large enough 81633e619fcSdrh ** to store the copy of expression p, the copies of p->u.zToken 8176ab3a2ecSdanielk1977 ** (if applicable), and the copies of the p->pLeft and p->pRight expressions, 81860ec914cSpeter.d.reid ** if any. Before returning, *pzBuffer is set to the first byte past the 8196ab3a2ecSdanielk1977 ** portion of the buffer copied into by this function. 8206ab3a2ecSdanielk1977 */ 8216ab3a2ecSdanielk1977 static Expr *exprDup(sqlite3 *db, Expr *p, int flags, u8 **pzBuffer){ 8226ab3a2ecSdanielk1977 Expr *pNew = 0; /* Value to return */ 8236ab3a2ecSdanielk1977 if( p ){ 8246ab3a2ecSdanielk1977 const int isReduced = (flags&EXPRDUP_REDUCE); 8256ab3a2ecSdanielk1977 u8 *zAlloc; 82633e619fcSdrh u32 staticFlag = 0; 8276ab3a2ecSdanielk1977 8286ab3a2ecSdanielk1977 assert( pzBuffer==0 || isReduced ); 8296ab3a2ecSdanielk1977 8306ab3a2ecSdanielk1977 /* Figure out where to write the new Expr structure. */ 8316ab3a2ecSdanielk1977 if( pzBuffer ){ 8326ab3a2ecSdanielk1977 zAlloc = *pzBuffer; 83333e619fcSdrh staticFlag = EP_Static; 8346ab3a2ecSdanielk1977 }else{ 8356ab3a2ecSdanielk1977 zAlloc = sqlite3DbMallocRaw(db, dupedExprSize(p, flags)); 8366ab3a2ecSdanielk1977 } 8376ab3a2ecSdanielk1977 pNew = (Expr *)zAlloc; 8386ab3a2ecSdanielk1977 8396ab3a2ecSdanielk1977 if( pNew ){ 8406ab3a2ecSdanielk1977 /* Set nNewSize to the size allocated for the structure pointed to 8416ab3a2ecSdanielk1977 ** by pNew. This is either EXPR_FULLSIZE, EXPR_REDUCEDSIZE or 8426ab3a2ecSdanielk1977 ** EXPR_TOKENONLYSIZE. nToken is set to the number of bytes consumed 84333e619fcSdrh ** by the copy of the p->u.zToken string (if any). 8446ab3a2ecSdanielk1977 */ 84533e619fcSdrh const unsigned nStructSize = dupedExprStructSize(p, flags); 84633e619fcSdrh const int nNewSize = nStructSize & 0xfff; 84733e619fcSdrh int nToken; 84833e619fcSdrh if( !ExprHasProperty(p, EP_IntValue) && p->u.zToken ){ 84933e619fcSdrh nToken = sqlite3Strlen30(p->u.zToken) + 1; 85033e619fcSdrh }else{ 85133e619fcSdrh nToken = 0; 85233e619fcSdrh } 8536ab3a2ecSdanielk1977 if( isReduced ){ 8546ab3a2ecSdanielk1977 assert( ExprHasProperty(p, EP_Reduced)==0 ); 8556ab3a2ecSdanielk1977 memcpy(zAlloc, p, nNewSize); 8566ab3a2ecSdanielk1977 }else{ 8576ab3a2ecSdanielk1977 int nSize = exprStructSize(p); 8586ab3a2ecSdanielk1977 memcpy(zAlloc, p, nSize); 8596ab3a2ecSdanielk1977 memset(&zAlloc[nSize], 0, EXPR_FULLSIZE-nSize); 8606ab3a2ecSdanielk1977 } 8616ab3a2ecSdanielk1977 86233e619fcSdrh /* Set the EP_Reduced, EP_TokenOnly, and EP_Static flags appropriately. */ 863c5cd1249Sdrh pNew->flags &= ~(EP_Reduced|EP_TokenOnly|EP_Static|EP_MemToken); 86433e619fcSdrh pNew->flags |= nStructSize & (EP_Reduced|EP_TokenOnly); 86533e619fcSdrh pNew->flags |= staticFlag; 8666ab3a2ecSdanielk1977 86733e619fcSdrh /* Copy the p->u.zToken string, if any. */ 8686ab3a2ecSdanielk1977 if( nToken ){ 86933e619fcSdrh char *zToken = pNew->u.zToken = (char*)&zAlloc[nNewSize]; 87033e619fcSdrh memcpy(zToken, p->u.zToken, nToken); 8716ab3a2ecSdanielk1977 } 8726ab3a2ecSdanielk1977 8736ab3a2ecSdanielk1977 if( 0==((p->flags|pNew->flags) & EP_TokenOnly) ){ 8746ab3a2ecSdanielk1977 /* Fill in the pNew->x.pSelect or pNew->x.pList member. */ 8756ab3a2ecSdanielk1977 if( ExprHasProperty(p, EP_xIsSelect) ){ 8766ab3a2ecSdanielk1977 pNew->x.pSelect = sqlite3SelectDup(db, p->x.pSelect, isReduced); 8776ab3a2ecSdanielk1977 }else{ 8786ab3a2ecSdanielk1977 pNew->x.pList = sqlite3ExprListDup(db, p->x.pList, isReduced); 8796ab3a2ecSdanielk1977 } 8806ab3a2ecSdanielk1977 } 8816ab3a2ecSdanielk1977 8826ab3a2ecSdanielk1977 /* Fill in pNew->pLeft and pNew->pRight. */ 883c5cd1249Sdrh if( ExprHasProperty(pNew, EP_Reduced|EP_TokenOnly) ){ 8846ab3a2ecSdanielk1977 zAlloc += dupedExprNodeSize(p, flags); 8856ab3a2ecSdanielk1977 if( ExprHasProperty(pNew, EP_Reduced) ){ 8866ab3a2ecSdanielk1977 pNew->pLeft = exprDup(db, p->pLeft, EXPRDUP_REDUCE, &zAlloc); 8876ab3a2ecSdanielk1977 pNew->pRight = exprDup(db, p->pRight, EXPRDUP_REDUCE, &zAlloc); 8886ab3a2ecSdanielk1977 } 8896ab3a2ecSdanielk1977 if( pzBuffer ){ 8906ab3a2ecSdanielk1977 *pzBuffer = zAlloc; 8916ab3a2ecSdanielk1977 } 892b7916a78Sdrh }else{ 893c5cd1249Sdrh if( !ExprHasProperty(p, EP_TokenOnly) ){ 8946ab3a2ecSdanielk1977 pNew->pLeft = sqlite3ExprDup(db, p->pLeft, 0); 8956ab3a2ecSdanielk1977 pNew->pRight = sqlite3ExprDup(db, p->pRight, 0); 8966ab3a2ecSdanielk1977 } 8976ab3a2ecSdanielk1977 } 898b7916a78Sdrh 899b7916a78Sdrh } 9006ab3a2ecSdanielk1977 } 9016ab3a2ecSdanielk1977 return pNew; 9026ab3a2ecSdanielk1977 } 9036ab3a2ecSdanielk1977 904bfe31e7fSdan /* 905bfe31e7fSdan ** Create and return a deep copy of the object passed as the second 906bfe31e7fSdan ** argument. If an OOM condition is encountered, NULL is returned 907bfe31e7fSdan ** and the db->mallocFailed flag set. 908bfe31e7fSdan */ 909eede6a53Sdan #ifndef SQLITE_OMIT_CTE 910bfe31e7fSdan static With *withDup(sqlite3 *db, With *p){ 9114e9119d9Sdan With *pRet = 0; 9124e9119d9Sdan if( p ){ 9134e9119d9Sdan int nByte = sizeof(*p) + sizeof(p->a[0]) * (p->nCte-1); 9144e9119d9Sdan pRet = sqlite3DbMallocZero(db, nByte); 9154e9119d9Sdan if( pRet ){ 9164e9119d9Sdan int i; 9174e9119d9Sdan pRet->nCte = p->nCte; 9184e9119d9Sdan for(i=0; i<p->nCte; i++){ 9194e9119d9Sdan pRet->a[i].pSelect = sqlite3SelectDup(db, p->a[i].pSelect, 0); 9204e9119d9Sdan pRet->a[i].pCols = sqlite3ExprListDup(db, p->a[i].pCols, 0); 9214e9119d9Sdan pRet->a[i].zName = sqlite3DbStrDup(db, p->a[i].zName); 9224e9119d9Sdan } 9234e9119d9Sdan } 9244e9119d9Sdan } 9254e9119d9Sdan return pRet; 9264e9119d9Sdan } 927eede6a53Sdan #else 928eede6a53Sdan # define withDup(x,y) 0 929eede6a53Sdan #endif 9304e9119d9Sdan 9316ab3a2ecSdanielk1977 /* 932ff78bd2fSdrh ** The following group of routines make deep copies of expressions, 933ff78bd2fSdrh ** expression lists, ID lists, and select statements. The copies can 934ff78bd2fSdrh ** be deleted (by being passed to their respective ...Delete() routines) 935ff78bd2fSdrh ** without effecting the originals. 936ff78bd2fSdrh ** 9374adee20fSdanielk1977 ** The expression list, ID, and source lists return by sqlite3ExprListDup(), 9384adee20fSdanielk1977 ** sqlite3IdListDup(), and sqlite3SrcListDup() can not be further expanded 939ad3cab52Sdrh ** by subsequent calls to sqlite*ListAppend() routines. 940ff78bd2fSdrh ** 941ad3cab52Sdrh ** Any tables that the SrcList might point to are not duplicated. 9426ab3a2ecSdanielk1977 ** 943b7916a78Sdrh ** The flags parameter contains a combination of the EXPRDUP_XXX flags. 9446ab3a2ecSdanielk1977 ** If the EXPRDUP_REDUCE flag is set, then the structure returned is a 9456ab3a2ecSdanielk1977 ** truncated version of the usual Expr structure that will be stored as 9466ab3a2ecSdanielk1977 ** part of the in-memory representation of the database schema. 947ff78bd2fSdrh */ 9486ab3a2ecSdanielk1977 Expr *sqlite3ExprDup(sqlite3 *db, Expr *p, int flags){ 9496ab3a2ecSdanielk1977 return exprDup(db, p, flags, 0); 950ff78bd2fSdrh } 9516ab3a2ecSdanielk1977 ExprList *sqlite3ExprListDup(sqlite3 *db, ExprList *p, int flags){ 952ff78bd2fSdrh ExprList *pNew; 953145716b3Sdrh struct ExprList_item *pItem, *pOldItem; 954ff78bd2fSdrh int i; 955ff78bd2fSdrh if( p==0 ) return 0; 95617435752Sdrh pNew = sqlite3DbMallocRaw(db, sizeof(*pNew) ); 957ff78bd2fSdrh if( pNew==0 ) return 0; 958d872bb18Sdrh pNew->nExpr = i = p->nExpr; 959d872bb18Sdrh if( (flags & EXPRDUP_REDUCE)==0 ) for(i=1; i<p->nExpr; i+=i){} 960d872bb18Sdrh pNew->a = pItem = sqlite3DbMallocRaw(db, i*sizeof(p->a[0]) ); 961e0048400Sdanielk1977 if( pItem==0 ){ 962633e6d57Sdrh sqlite3DbFree(db, pNew); 963e0048400Sdanielk1977 return 0; 964e0048400Sdanielk1977 } 965145716b3Sdrh pOldItem = p->a; 966145716b3Sdrh for(i=0; i<p->nExpr; i++, pItem++, pOldItem++){ 9676ab3a2ecSdanielk1977 Expr *pOldExpr = pOldItem->pExpr; 968b5526ea6Sdrh pItem->pExpr = sqlite3ExprDup(db, pOldExpr, flags); 96917435752Sdrh pItem->zName = sqlite3DbStrDup(db, pOldItem->zName); 970b7916a78Sdrh pItem->zSpan = sqlite3DbStrDup(db, pOldItem->zSpan); 971145716b3Sdrh pItem->sortOrder = pOldItem->sortOrder; 9723e7bc9caSdrh pItem->done = 0; 9732c036cffSdrh pItem->bSpanIsTab = pOldItem->bSpanIsTab; 974c2acc4e4Sdrh pItem->u = pOldItem->u; 975ff78bd2fSdrh } 976ff78bd2fSdrh return pNew; 977ff78bd2fSdrh } 97893758c8dSdanielk1977 97993758c8dSdanielk1977 /* 98093758c8dSdanielk1977 ** If cursors, triggers, views and subqueries are all omitted from 98193758c8dSdanielk1977 ** the build, then none of the following routines, except for 98293758c8dSdanielk1977 ** sqlite3SelectDup(), can be called. sqlite3SelectDup() is sometimes 98393758c8dSdanielk1977 ** called with a NULL argument. 98493758c8dSdanielk1977 */ 9856a67fe8eSdanielk1977 #if !defined(SQLITE_OMIT_VIEW) || !defined(SQLITE_OMIT_TRIGGER) \ 9866a67fe8eSdanielk1977 || !defined(SQLITE_OMIT_SUBQUERY) 9876ab3a2ecSdanielk1977 SrcList *sqlite3SrcListDup(sqlite3 *db, SrcList *p, int flags){ 988ad3cab52Sdrh SrcList *pNew; 989ad3cab52Sdrh int i; 990113088ecSdrh int nByte; 991ad3cab52Sdrh if( p==0 ) return 0; 992113088ecSdrh nByte = sizeof(*p) + (p->nSrc>0 ? sizeof(p->a[0]) * (p->nSrc-1) : 0); 99317435752Sdrh pNew = sqlite3DbMallocRaw(db, nByte ); 994ad3cab52Sdrh if( pNew==0 ) return 0; 9954305d103Sdrh pNew->nSrc = pNew->nAlloc = p->nSrc; 996ad3cab52Sdrh for(i=0; i<p->nSrc; i++){ 9974efc4754Sdrh struct SrcList_item *pNewItem = &pNew->a[i]; 9984efc4754Sdrh struct SrcList_item *pOldItem = &p->a[i]; 999ed8a3bb1Sdrh Table *pTab; 100041fb5cd1Sdan pNewItem->pSchema = pOldItem->pSchema; 100117435752Sdrh pNewItem->zDatabase = sqlite3DbStrDup(db, pOldItem->zDatabase); 100217435752Sdrh pNewItem->zName = sqlite3DbStrDup(db, pOldItem->zName); 100317435752Sdrh pNewItem->zAlias = sqlite3DbStrDup(db, pOldItem->zAlias); 10044efc4754Sdrh pNewItem->jointype = pOldItem->jointype; 10054efc4754Sdrh pNewItem->iCursor = pOldItem->iCursor; 10065b6a9ed4Sdrh pNewItem->addrFillSub = pOldItem->addrFillSub; 10075b6a9ed4Sdrh pNewItem->regReturn = pOldItem->regReturn; 1008da79cf0cSdan pNewItem->isCorrelated = pOldItem->isCorrelated; 100921172c4cSdrh pNewItem->viaCoroutine = pOldItem->viaCoroutine; 1010f43fe6e9Sdan pNewItem->isRecursive = pOldItem->isRecursive; 101185574e31Sdanielk1977 pNewItem->zIndex = sqlite3DbStrDup(db, pOldItem->zIndex); 101285574e31Sdanielk1977 pNewItem->notIndexed = pOldItem->notIndexed; 101385574e31Sdanielk1977 pNewItem->pIndex = pOldItem->pIndex; 1014ed8a3bb1Sdrh pTab = pNewItem->pTab = pOldItem->pTab; 1015ed8a3bb1Sdrh if( pTab ){ 1016ed8a3bb1Sdrh pTab->nRef++; 1017a1cb183dSdanielk1977 } 10186ab3a2ecSdanielk1977 pNewItem->pSelect = sqlite3SelectDup(db, pOldItem->pSelect, flags); 10196ab3a2ecSdanielk1977 pNewItem->pOn = sqlite3ExprDup(db, pOldItem->pOn, flags); 102017435752Sdrh pNewItem->pUsing = sqlite3IdListDup(db, pOldItem->pUsing); 10216c18b6e0Sdanielk1977 pNewItem->colUsed = pOldItem->colUsed; 1022ad3cab52Sdrh } 1023ad3cab52Sdrh return pNew; 1024ad3cab52Sdrh } 102517435752Sdrh IdList *sqlite3IdListDup(sqlite3 *db, IdList *p){ 1026ff78bd2fSdrh IdList *pNew; 1027ff78bd2fSdrh int i; 1028ff78bd2fSdrh if( p==0 ) return 0; 102917435752Sdrh pNew = sqlite3DbMallocRaw(db, sizeof(*pNew) ); 1030ff78bd2fSdrh if( pNew==0 ) return 0; 10316c535158Sdrh pNew->nId = p->nId; 103217435752Sdrh pNew->a = sqlite3DbMallocRaw(db, p->nId*sizeof(p->a[0]) ); 1033d5d56523Sdanielk1977 if( pNew->a==0 ){ 1034633e6d57Sdrh sqlite3DbFree(db, pNew); 1035d5d56523Sdanielk1977 return 0; 1036d5d56523Sdanielk1977 } 10376c535158Sdrh /* Note that because the size of the allocation for p->a[] is not 10386c535158Sdrh ** necessarily a power of two, sqlite3IdListAppend() may not be called 10396c535158Sdrh ** on the duplicate created by this function. */ 1040ff78bd2fSdrh for(i=0; i<p->nId; i++){ 10414efc4754Sdrh struct IdList_item *pNewItem = &pNew->a[i]; 10424efc4754Sdrh struct IdList_item *pOldItem = &p->a[i]; 104317435752Sdrh pNewItem->zName = sqlite3DbStrDup(db, pOldItem->zName); 10444efc4754Sdrh pNewItem->idx = pOldItem->idx; 1045ff78bd2fSdrh } 1046ff78bd2fSdrh return pNew; 1047ff78bd2fSdrh } 10486ab3a2ecSdanielk1977 Select *sqlite3SelectDup(sqlite3 *db, Select *p, int flags){ 104923b1b372Sdrh Select *pNew, *pPrior; 1050ff78bd2fSdrh if( p==0 ) return 0; 105117435752Sdrh pNew = sqlite3DbMallocRaw(db, sizeof(*p) ); 1052ff78bd2fSdrh if( pNew==0 ) return 0; 1053b7916a78Sdrh pNew->pEList = sqlite3ExprListDup(db, p->pEList, flags); 10546ab3a2ecSdanielk1977 pNew->pSrc = sqlite3SrcListDup(db, p->pSrc, flags); 10556ab3a2ecSdanielk1977 pNew->pWhere = sqlite3ExprDup(db, p->pWhere, flags); 10566ab3a2ecSdanielk1977 pNew->pGroupBy = sqlite3ExprListDup(db, p->pGroupBy, flags); 10576ab3a2ecSdanielk1977 pNew->pHaving = sqlite3ExprDup(db, p->pHaving, flags); 10586ab3a2ecSdanielk1977 pNew->pOrderBy = sqlite3ExprListDup(db, p->pOrderBy, flags); 1059ff78bd2fSdrh pNew->op = p->op; 106023b1b372Sdrh pNew->pPrior = pPrior = sqlite3SelectDup(db, p->pPrior, flags); 106123b1b372Sdrh if( pPrior ) pPrior->pNext = pNew; 106223b1b372Sdrh pNew->pNext = 0; 10636ab3a2ecSdanielk1977 pNew->pLimit = sqlite3ExprDup(db, p->pLimit, flags); 10646ab3a2ecSdanielk1977 pNew->pOffset = sqlite3ExprDup(db, p->pOffset, flags); 106592b01d53Sdrh pNew->iLimit = 0; 106692b01d53Sdrh pNew->iOffset = 0; 10677d10d5a6Sdrh pNew->selFlags = p->selFlags & ~SF_UsesEphemeral; 1068b9bb7c18Sdrh pNew->addrOpenEphm[0] = -1; 1069b9bb7c18Sdrh pNew->addrOpenEphm[1] = -1; 1070ec2da854Sdrh pNew->nSelectRow = p->nSelectRow; 10714e9119d9Sdan pNew->pWith = withDup(db, p->pWith); 1072eb9b884cSdrh sqlite3SelectSetName(pNew, p->zSelName); 1073ff78bd2fSdrh return pNew; 1074ff78bd2fSdrh } 107593758c8dSdanielk1977 #else 10766ab3a2ecSdanielk1977 Select *sqlite3SelectDup(sqlite3 *db, Select *p, int flags){ 107793758c8dSdanielk1977 assert( p==0 ); 107893758c8dSdanielk1977 return 0; 107993758c8dSdanielk1977 } 108093758c8dSdanielk1977 #endif 1081ff78bd2fSdrh 1082ff78bd2fSdrh 1083ff78bd2fSdrh /* 1084a76b5dfcSdrh ** Add a new element to the end of an expression list. If pList is 1085a76b5dfcSdrh ** initially NULL, then create a new expression list. 1086b7916a78Sdrh ** 1087b7916a78Sdrh ** If a memory allocation error occurs, the entire list is freed and 1088b7916a78Sdrh ** NULL is returned. If non-NULL is returned, then it is guaranteed 1089b7916a78Sdrh ** that the new entry was successfully appended. 1090a76b5dfcSdrh */ 109117435752Sdrh ExprList *sqlite3ExprListAppend( 109217435752Sdrh Parse *pParse, /* Parsing context */ 109317435752Sdrh ExprList *pList, /* List to which to append. Might be NULL */ 1094b7916a78Sdrh Expr *pExpr /* Expression to be appended. Might be NULL */ 109517435752Sdrh ){ 109617435752Sdrh sqlite3 *db = pParse->db; 1097a76b5dfcSdrh if( pList==0 ){ 109817435752Sdrh pList = sqlite3DbMallocZero(db, sizeof(ExprList) ); 1099a76b5dfcSdrh if( pList==0 ){ 1100d5d56523Sdanielk1977 goto no_mem; 1101a76b5dfcSdrh } 1102d872bb18Sdrh pList->a = sqlite3DbMallocRaw(db, sizeof(pList->a[0])); 1103d872bb18Sdrh if( pList->a==0 ) goto no_mem; 1104d872bb18Sdrh }else if( (pList->nExpr & (pList->nExpr-1))==0 ){ 1105d5d56523Sdanielk1977 struct ExprList_item *a; 1106d872bb18Sdrh assert( pList->nExpr>0 ); 1107d872bb18Sdrh a = sqlite3DbRealloc(db, pList->a, pList->nExpr*2*sizeof(pList->a[0])); 1108d5d56523Sdanielk1977 if( a==0 ){ 1109d5d56523Sdanielk1977 goto no_mem; 1110a76b5dfcSdrh } 1111d5d56523Sdanielk1977 pList->a = a; 1112a76b5dfcSdrh } 11134efc4754Sdrh assert( pList->a!=0 ); 1114b7916a78Sdrh if( 1 ){ 11154efc4754Sdrh struct ExprList_item *pItem = &pList->a[pList->nExpr++]; 11164efc4754Sdrh memset(pItem, 0, sizeof(*pItem)); 1117e94ddc9eSdanielk1977 pItem->pExpr = pExpr; 1118a76b5dfcSdrh } 1119a76b5dfcSdrh return pList; 1120d5d56523Sdanielk1977 1121d5d56523Sdanielk1977 no_mem: 1122d5d56523Sdanielk1977 /* Avoid leaking memory if malloc has failed. */ 1123633e6d57Sdrh sqlite3ExprDelete(db, pExpr); 1124633e6d57Sdrh sqlite3ExprListDelete(db, pList); 1125d5d56523Sdanielk1977 return 0; 1126a76b5dfcSdrh } 1127a76b5dfcSdrh 1128a76b5dfcSdrh /* 1129b7916a78Sdrh ** Set the ExprList.a[].zName element of the most recently added item 1130b7916a78Sdrh ** on the expression list. 1131b7916a78Sdrh ** 1132b7916a78Sdrh ** pList might be NULL following an OOM error. But pName should never be 1133b7916a78Sdrh ** NULL. If a memory allocation fails, the pParse->db->mallocFailed flag 1134b7916a78Sdrh ** is set. 1135b7916a78Sdrh */ 1136b7916a78Sdrh void sqlite3ExprListSetName( 1137b7916a78Sdrh Parse *pParse, /* Parsing context */ 1138b7916a78Sdrh ExprList *pList, /* List to which to add the span. */ 1139b7916a78Sdrh Token *pName, /* Name to be added */ 1140b7916a78Sdrh int dequote /* True to cause the name to be dequoted */ 1141b7916a78Sdrh ){ 1142b7916a78Sdrh assert( pList!=0 || pParse->db->mallocFailed!=0 ); 1143b7916a78Sdrh if( pList ){ 1144b7916a78Sdrh struct ExprList_item *pItem; 1145b7916a78Sdrh assert( pList->nExpr>0 ); 1146b7916a78Sdrh pItem = &pList->a[pList->nExpr-1]; 1147b7916a78Sdrh assert( pItem->zName==0 ); 1148b7916a78Sdrh pItem->zName = sqlite3DbStrNDup(pParse->db, pName->z, pName->n); 1149b7916a78Sdrh if( dequote && pItem->zName ) sqlite3Dequote(pItem->zName); 1150b7916a78Sdrh } 1151b7916a78Sdrh } 1152b7916a78Sdrh 1153b7916a78Sdrh /* 1154b7916a78Sdrh ** Set the ExprList.a[].zSpan element of the most recently added item 1155b7916a78Sdrh ** on the expression list. 1156b7916a78Sdrh ** 1157b7916a78Sdrh ** pList might be NULL following an OOM error. But pSpan should never be 1158b7916a78Sdrh ** NULL. If a memory allocation fails, the pParse->db->mallocFailed flag 1159b7916a78Sdrh ** is set. 1160b7916a78Sdrh */ 1161b7916a78Sdrh void sqlite3ExprListSetSpan( 1162b7916a78Sdrh Parse *pParse, /* Parsing context */ 1163b7916a78Sdrh ExprList *pList, /* List to which to add the span. */ 1164b7916a78Sdrh ExprSpan *pSpan /* The span to be added */ 1165b7916a78Sdrh ){ 1166b7916a78Sdrh sqlite3 *db = pParse->db; 1167b7916a78Sdrh assert( pList!=0 || db->mallocFailed!=0 ); 1168b7916a78Sdrh if( pList ){ 1169b7916a78Sdrh struct ExprList_item *pItem = &pList->a[pList->nExpr-1]; 1170b7916a78Sdrh assert( pList->nExpr>0 ); 1171b7916a78Sdrh assert( db->mallocFailed || pItem->pExpr==pSpan->pExpr ); 1172b7916a78Sdrh sqlite3DbFree(db, pItem->zSpan); 1173b7916a78Sdrh pItem->zSpan = sqlite3DbStrNDup(db, (char*)pSpan->zStart, 1174cf697396Sshane (int)(pSpan->zEnd - pSpan->zStart)); 1175b7916a78Sdrh } 1176b7916a78Sdrh } 1177b7916a78Sdrh 1178b7916a78Sdrh /* 11797a15a4beSdanielk1977 ** If the expression list pEList contains more than iLimit elements, 11807a15a4beSdanielk1977 ** leave an error message in pParse. 11817a15a4beSdanielk1977 */ 11827a15a4beSdanielk1977 void sqlite3ExprListCheckLength( 11837a15a4beSdanielk1977 Parse *pParse, 11847a15a4beSdanielk1977 ExprList *pEList, 11857a15a4beSdanielk1977 const char *zObject 11867a15a4beSdanielk1977 ){ 1187b1a6c3c1Sdrh int mx = pParse->db->aLimit[SQLITE_LIMIT_COLUMN]; 1188c5499befSdrh testcase( pEList && pEList->nExpr==mx ); 1189c5499befSdrh testcase( pEList && pEList->nExpr==mx+1 ); 1190b1a6c3c1Sdrh if( pEList && pEList->nExpr>mx ){ 11917a15a4beSdanielk1977 sqlite3ErrorMsg(pParse, "too many columns in %s", zObject); 11927a15a4beSdanielk1977 } 11937a15a4beSdanielk1977 } 11947a15a4beSdanielk1977 11957a15a4beSdanielk1977 /* 1196a76b5dfcSdrh ** Delete an entire expression list. 1197a76b5dfcSdrh */ 1198633e6d57Sdrh void sqlite3ExprListDelete(sqlite3 *db, ExprList *pList){ 1199a76b5dfcSdrh int i; 1200be5c89acSdrh struct ExprList_item *pItem; 1201a76b5dfcSdrh if( pList==0 ) return; 1202d872bb18Sdrh assert( pList->a!=0 || pList->nExpr==0 ); 1203be5c89acSdrh for(pItem=pList->a, i=0; i<pList->nExpr; i++, pItem++){ 1204633e6d57Sdrh sqlite3ExprDelete(db, pItem->pExpr); 1205633e6d57Sdrh sqlite3DbFree(db, pItem->zName); 1206b7916a78Sdrh sqlite3DbFree(db, pItem->zSpan); 1207a76b5dfcSdrh } 1208633e6d57Sdrh sqlite3DbFree(db, pList->a); 1209633e6d57Sdrh sqlite3DbFree(db, pList); 1210a76b5dfcSdrh } 1211a76b5dfcSdrh 1212a76b5dfcSdrh /* 1213*059b2d50Sdrh ** These routines are Walker callbacks used to check expressions to 1214*059b2d50Sdrh ** see if they are "constant" for some definition of constant. The 1215*059b2d50Sdrh ** Walker.eCode value determines the type of "constant" we are looking 1216*059b2d50Sdrh ** for. 121773b211abSdrh ** 12187d10d5a6Sdrh ** These callback routines are used to implement the following: 1219626a879aSdrh ** 1220*059b2d50Sdrh ** sqlite3ExprIsConstant() pWalker->eCode==1 1221*059b2d50Sdrh ** sqlite3ExprIsConstantNotJoin() pWalker->eCode==2 1222*059b2d50Sdrh ** sqlite3ExprRefOneTableOnly() pWalker->eCode==3 1223*059b2d50Sdrh ** sqlite3ExprIsConstantOrFunction() pWalker->eCode==4 or 5 1224*059b2d50Sdrh ** 1225*059b2d50Sdrh ** In all cases, the callbacks set Walker.eCode=0 and abort if the expression 1226*059b2d50Sdrh ** is found to not be a constant. 122787abf5c0Sdrh ** 1228feada2dfSdrh ** The sqlite3ExprIsConstantOrFunction() is used for evaluating expressions 1229*059b2d50Sdrh ** in a CREATE TABLE statement. The Walker.eCode value is 5 when parsing 1230*059b2d50Sdrh ** an existing schema and 4 when processing a new statement. A bound 1231feada2dfSdrh ** parameter raises an error for new statements, but is silently converted 1232feada2dfSdrh ** to NULL for existing schemas. This allows sqlite_master tables that 1233feada2dfSdrh ** contain a bound parameter because they were generated by older versions 1234feada2dfSdrh ** of SQLite to be parsed by newer versions of SQLite without raising a 1235feada2dfSdrh ** malformed schema error. 1236626a879aSdrh */ 12377d10d5a6Sdrh static int exprNodeIsConstant(Walker *pWalker, Expr *pExpr){ 1238626a879aSdrh 1239*059b2d50Sdrh /* If pWalker->eCode is 2 then any term of the expression that comes from 1240*059b2d50Sdrh ** the ON or USING clauses of a left join disqualifies the expression 12410a168377Sdrh ** from being considered constant. */ 1242*059b2d50Sdrh if( pWalker->eCode==2 && ExprHasProperty(pExpr, EP_FromJoin) ){ 1243*059b2d50Sdrh pWalker->eCode = 0; 12447d10d5a6Sdrh return WRC_Abort; 12450a168377Sdrh } 12460a168377Sdrh 1247626a879aSdrh switch( pExpr->op ){ 1248eb55bd2fSdrh /* Consider functions to be constant if all their arguments are constant 1249*059b2d50Sdrh ** and either pWalker->eCode==4 or 5 or the function has the 1250*059b2d50Sdrh ** SQLITE_FUNC_CONST flag. */ 1251eb55bd2fSdrh case TK_FUNCTION: 1252*059b2d50Sdrh if( pWalker->eCode>=4 || ExprHasProperty(pExpr,EP_Constant) ){ 1253b1fba286Sdrh return WRC_Continue; 1254*059b2d50Sdrh }else{ 1255*059b2d50Sdrh pWalker->eCode = 0; 1256*059b2d50Sdrh return WRC_Abort; 1257b1fba286Sdrh } 1258626a879aSdrh case TK_ID: 1259626a879aSdrh case TK_COLUMN: 1260626a879aSdrh case TK_AGG_FUNCTION: 126113449892Sdrh case TK_AGG_COLUMN: 1262c5499befSdrh testcase( pExpr->op==TK_ID ); 1263c5499befSdrh testcase( pExpr->op==TK_COLUMN ); 1264c5499befSdrh testcase( pExpr->op==TK_AGG_FUNCTION ); 1265c5499befSdrh testcase( pExpr->op==TK_AGG_COLUMN ); 1266*059b2d50Sdrh if( pWalker->eCode==3 && pExpr->iTable==pWalker->u.iCur ){ 1267*059b2d50Sdrh return WRC_Continue; 1268*059b2d50Sdrh }else{ 1269*059b2d50Sdrh pWalker->eCode = 0; 12707d10d5a6Sdrh return WRC_Abort; 1271*059b2d50Sdrh } 1272feada2dfSdrh case TK_VARIABLE: 1273*059b2d50Sdrh if( pWalker->eCode==5 ){ 1274feada2dfSdrh /* Silently convert bound parameters that appear inside of CREATE 1275feada2dfSdrh ** statements into a NULL when parsing the CREATE statement text out 1276feada2dfSdrh ** of the sqlite_master table */ 1277feada2dfSdrh pExpr->op = TK_NULL; 1278*059b2d50Sdrh }else if( pWalker->eCode==4 ){ 1279feada2dfSdrh /* A bound parameter in a CREATE statement that originates from 1280feada2dfSdrh ** sqlite3_prepare() causes an error */ 1281*059b2d50Sdrh pWalker->eCode = 0; 1282feada2dfSdrh return WRC_Abort; 1283feada2dfSdrh } 1284feada2dfSdrh /* Fall through */ 1285626a879aSdrh default: 1286b74b1017Sdrh testcase( pExpr->op==TK_SELECT ); /* selectNodeIsConstant will disallow */ 1287b74b1017Sdrh testcase( pExpr->op==TK_EXISTS ); /* selectNodeIsConstant will disallow */ 12887d10d5a6Sdrh return WRC_Continue; 1289626a879aSdrh } 1290626a879aSdrh } 129162c14b34Sdanielk1977 static int selectNodeIsConstant(Walker *pWalker, Select *NotUsed){ 129262c14b34Sdanielk1977 UNUSED_PARAMETER(NotUsed); 1293*059b2d50Sdrh pWalker->eCode = 0; 12947d10d5a6Sdrh return WRC_Abort; 12957d10d5a6Sdrh } 1296*059b2d50Sdrh static int exprIsConst(Expr *p, int initFlag, int iCur){ 12977d10d5a6Sdrh Walker w; 1298aa87f9a6Sdrh memset(&w, 0, sizeof(w)); 1299*059b2d50Sdrh w.eCode = initFlag; 13007d10d5a6Sdrh w.xExprCallback = exprNodeIsConstant; 13017d10d5a6Sdrh w.xSelectCallback = selectNodeIsConstant; 1302*059b2d50Sdrh w.u.iCur = iCur; 13037d10d5a6Sdrh sqlite3WalkExpr(&w, p); 1304*059b2d50Sdrh return w.eCode; 13057d10d5a6Sdrh } 1306626a879aSdrh 1307626a879aSdrh /* 1308*059b2d50Sdrh ** Walk an expression tree. Return non-zero if the expression is constant 1309eb55bd2fSdrh ** and 0 if it involves variables or function calls. 13102398937bSdrh ** 13112398937bSdrh ** For the purposes of this function, a double-quoted string (ex: "abc") 13122398937bSdrh ** is considered a variable but a single-quoted string (ex: 'abc') is 13132398937bSdrh ** a constant. 1314fef5208cSdrh */ 13154adee20fSdanielk1977 int sqlite3ExprIsConstant(Expr *p){ 1316*059b2d50Sdrh return exprIsConst(p, 1, 0); 1317fef5208cSdrh } 1318fef5208cSdrh 1319fef5208cSdrh /* 1320*059b2d50Sdrh ** Walk an expression tree. Return non-zero if the expression is constant 13210a168377Sdrh ** that does no originate from the ON or USING clauses of a join. 13220a168377Sdrh ** Return 0 if it involves variables or function calls or terms from 13230a168377Sdrh ** an ON or USING clause. 13240a168377Sdrh */ 13250a168377Sdrh int sqlite3ExprIsConstantNotJoin(Expr *p){ 1326*059b2d50Sdrh return exprIsConst(p, 2, 0); 13270a168377Sdrh } 13280a168377Sdrh 13290a168377Sdrh /* 1330*059b2d50Sdrh ** Walk an expression tree. Return non-zero if the expression constant 1331*059b2d50Sdrh ** for any single row of the table with cursor iCur. In other words, the 1332*059b2d50Sdrh ** expression must not refer to any non-deterministic function nor any 1333*059b2d50Sdrh ** table other than iCur. 1334*059b2d50Sdrh */ 1335*059b2d50Sdrh int sqlite3ExprIsTableConstant(Expr *p, int iCur){ 1336*059b2d50Sdrh return exprIsConst(p, 3, iCur); 1337*059b2d50Sdrh } 1338*059b2d50Sdrh 1339*059b2d50Sdrh /* 1340*059b2d50Sdrh ** Walk an expression tree. Return non-zero if the expression is constant 1341eb55bd2fSdrh ** or a function call with constant arguments. Return and 0 if there 1342eb55bd2fSdrh ** are any variables. 1343eb55bd2fSdrh ** 1344eb55bd2fSdrh ** For the purposes of this function, a double-quoted string (ex: "abc") 1345eb55bd2fSdrh ** is considered a variable but a single-quoted string (ex: 'abc') is 1346eb55bd2fSdrh ** a constant. 1347eb55bd2fSdrh */ 1348feada2dfSdrh int sqlite3ExprIsConstantOrFunction(Expr *p, u8 isInit){ 1349feada2dfSdrh assert( isInit==0 || isInit==1 ); 1350*059b2d50Sdrh return exprIsConst(p, 4+isInit, 0); 1351eb55bd2fSdrh } 1352eb55bd2fSdrh 1353eb55bd2fSdrh /* 135473b211abSdrh ** If the expression p codes a constant integer that is small enough 1355202b2df7Sdrh ** to fit in a 32-bit integer, return 1 and put the value of the integer 1356202b2df7Sdrh ** in *pValue. If the expression is not an integer or if it is too big 1357202b2df7Sdrh ** to fit in a signed 32-bit integer, return 0 and leave *pValue unchanged. 1358e4de1febSdrh */ 13594adee20fSdanielk1977 int sqlite3ExprIsInteger(Expr *p, int *pValue){ 136092b01d53Sdrh int rc = 0; 1361cd92e84dSdrh 1362cd92e84dSdrh /* If an expression is an integer literal that fits in a signed 32-bit 1363cd92e84dSdrh ** integer, then the EP_IntValue flag will have already been set */ 1364cd92e84dSdrh assert( p->op!=TK_INTEGER || (p->flags & EP_IntValue)!=0 1365cd92e84dSdrh || sqlite3GetInt32(p->u.zToken, &rc)==0 ); 1366cd92e84dSdrh 136792b01d53Sdrh if( p->flags & EP_IntValue ){ 136833e619fcSdrh *pValue = p->u.iValue; 1369e4de1febSdrh return 1; 1370e4de1febSdrh } 137192b01d53Sdrh switch( p->op ){ 13724b59ab5eSdrh case TK_UPLUS: { 137392b01d53Sdrh rc = sqlite3ExprIsInteger(p->pLeft, pValue); 1374f6e369a1Sdrh break; 13754b59ab5eSdrh } 1376e4de1febSdrh case TK_UMINUS: { 1377e4de1febSdrh int v; 13784adee20fSdanielk1977 if( sqlite3ExprIsInteger(p->pLeft, &v) ){ 1379f6418891Smistachkin assert( v!=(-2147483647-1) ); 1380e4de1febSdrh *pValue = -v; 138192b01d53Sdrh rc = 1; 1382e4de1febSdrh } 1383e4de1febSdrh break; 1384e4de1febSdrh } 1385e4de1febSdrh default: break; 1386e4de1febSdrh } 138792b01d53Sdrh return rc; 1388e4de1febSdrh } 1389e4de1febSdrh 1390e4de1febSdrh /* 1391039fc32eSdrh ** Return FALSE if there is no chance that the expression can be NULL. 1392039fc32eSdrh ** 1393039fc32eSdrh ** If the expression might be NULL or if the expression is too complex 1394039fc32eSdrh ** to tell return TRUE. 1395039fc32eSdrh ** 1396039fc32eSdrh ** This routine is used as an optimization, to skip OP_IsNull opcodes 1397039fc32eSdrh ** when we know that a value cannot be NULL. Hence, a false positive 1398039fc32eSdrh ** (returning TRUE when in fact the expression can never be NULL) might 1399039fc32eSdrh ** be a small performance hit but is otherwise harmless. On the other 1400039fc32eSdrh ** hand, a false negative (returning FALSE when the result could be NULL) 1401039fc32eSdrh ** will likely result in an incorrect answer. So when in doubt, return 1402039fc32eSdrh ** TRUE. 1403039fc32eSdrh */ 1404039fc32eSdrh int sqlite3ExprCanBeNull(const Expr *p){ 1405039fc32eSdrh u8 op; 1406cd7f457eSdrh while( p->op==TK_UPLUS || p->op==TK_UMINUS ){ p = p->pLeft; } 1407039fc32eSdrh op = p->op; 1408039fc32eSdrh if( op==TK_REGISTER ) op = p->op2; 1409039fc32eSdrh switch( op ){ 1410039fc32eSdrh case TK_INTEGER: 1411039fc32eSdrh case TK_STRING: 1412039fc32eSdrh case TK_FLOAT: 1413039fc32eSdrh case TK_BLOB: 1414039fc32eSdrh return 0; 14157248a8b2Sdrh case TK_COLUMN: 14167248a8b2Sdrh assert( p->pTab!=0 ); 14177248a8b2Sdrh return p->iColumn>=0 && p->pTab->aCol[p->iColumn].notNull==0; 1418039fc32eSdrh default: 1419039fc32eSdrh return 1; 1420039fc32eSdrh } 1421039fc32eSdrh } 1422039fc32eSdrh 1423039fc32eSdrh /* 1424039fc32eSdrh ** Return TRUE if the given expression is a constant which would be 1425039fc32eSdrh ** unchanged by OP_Affinity with the affinity given in the second 1426039fc32eSdrh ** argument. 1427039fc32eSdrh ** 1428039fc32eSdrh ** This routine is used to determine if the OP_Affinity operation 1429039fc32eSdrh ** can be omitted. When in doubt return FALSE. A false negative 1430039fc32eSdrh ** is harmless. A false positive, however, can result in the wrong 1431039fc32eSdrh ** answer. 1432039fc32eSdrh */ 1433039fc32eSdrh int sqlite3ExprNeedsNoAffinityChange(const Expr *p, char aff){ 1434039fc32eSdrh u8 op; 1435039fc32eSdrh if( aff==SQLITE_AFF_NONE ) return 1; 1436cd7f457eSdrh while( p->op==TK_UPLUS || p->op==TK_UMINUS ){ p = p->pLeft; } 1437039fc32eSdrh op = p->op; 1438039fc32eSdrh if( op==TK_REGISTER ) op = p->op2; 1439039fc32eSdrh switch( op ){ 1440039fc32eSdrh case TK_INTEGER: { 1441039fc32eSdrh return aff==SQLITE_AFF_INTEGER || aff==SQLITE_AFF_NUMERIC; 1442039fc32eSdrh } 1443039fc32eSdrh case TK_FLOAT: { 1444039fc32eSdrh return aff==SQLITE_AFF_REAL || aff==SQLITE_AFF_NUMERIC; 1445039fc32eSdrh } 1446039fc32eSdrh case TK_STRING: { 1447039fc32eSdrh return aff==SQLITE_AFF_TEXT; 1448039fc32eSdrh } 1449039fc32eSdrh case TK_BLOB: { 1450039fc32eSdrh return 1; 1451039fc32eSdrh } 14522f2855b6Sdrh case TK_COLUMN: { 145388376ca7Sdrh assert( p->iTable>=0 ); /* p cannot be part of a CHECK constraint */ 145488376ca7Sdrh return p->iColumn<0 14552f2855b6Sdrh && (aff==SQLITE_AFF_INTEGER || aff==SQLITE_AFF_NUMERIC); 14562f2855b6Sdrh } 1457039fc32eSdrh default: { 1458039fc32eSdrh return 0; 1459039fc32eSdrh } 1460039fc32eSdrh } 1461039fc32eSdrh } 1462039fc32eSdrh 1463039fc32eSdrh /* 1464c4a3c779Sdrh ** Return TRUE if the given string is a row-id column name. 1465c4a3c779Sdrh */ 14664adee20fSdanielk1977 int sqlite3IsRowid(const char *z){ 14674adee20fSdanielk1977 if( sqlite3StrICmp(z, "_ROWID_")==0 ) return 1; 14684adee20fSdanielk1977 if( sqlite3StrICmp(z, "ROWID")==0 ) return 1; 14694adee20fSdanielk1977 if( sqlite3StrICmp(z, "OID")==0 ) return 1; 1470c4a3c779Sdrh return 0; 1471c4a3c779Sdrh } 1472c4a3c779Sdrh 14739a96b668Sdanielk1977 /* 1474b74b1017Sdrh ** Return true if we are able to the IN operator optimization on a 1475b74b1017Sdrh ** query of the form 1476b287f4b6Sdrh ** 1477b74b1017Sdrh ** x IN (SELECT ...) 1478b287f4b6Sdrh ** 1479b74b1017Sdrh ** Where the SELECT... clause is as specified by the parameter to this 1480b74b1017Sdrh ** routine. 1481b74b1017Sdrh ** 1482b74b1017Sdrh ** The Select object passed in has already been preprocessed and no 1483b74b1017Sdrh ** errors have been found. 1484b287f4b6Sdrh */ 1485b287f4b6Sdrh #ifndef SQLITE_OMIT_SUBQUERY 1486b287f4b6Sdrh static int isCandidateForInOpt(Select *p){ 1487b287f4b6Sdrh SrcList *pSrc; 1488b287f4b6Sdrh ExprList *pEList; 1489b287f4b6Sdrh Table *pTab; 1490b287f4b6Sdrh if( p==0 ) return 0; /* right-hand side of IN is SELECT */ 1491b287f4b6Sdrh if( p->pPrior ) return 0; /* Not a compound SELECT */ 14927d10d5a6Sdrh if( p->selFlags & (SF_Distinct|SF_Aggregate) ){ 1493b74b1017Sdrh testcase( (p->selFlags & (SF_Distinct|SF_Aggregate))==SF_Distinct ); 1494b74b1017Sdrh testcase( (p->selFlags & (SF_Distinct|SF_Aggregate))==SF_Aggregate ); 14957d10d5a6Sdrh return 0; /* No DISTINCT keyword and no aggregate functions */ 14967d10d5a6Sdrh } 1497b74b1017Sdrh assert( p->pGroupBy==0 ); /* Has no GROUP BY clause */ 1498b287f4b6Sdrh if( p->pLimit ) return 0; /* Has no LIMIT clause */ 1499b74b1017Sdrh assert( p->pOffset==0 ); /* No LIMIT means no OFFSET */ 1500b287f4b6Sdrh if( p->pWhere ) return 0; /* Has no WHERE clause */ 1501b287f4b6Sdrh pSrc = p->pSrc; 1502d1fa7bcaSdrh assert( pSrc!=0 ); 1503d1fa7bcaSdrh if( pSrc->nSrc!=1 ) return 0; /* Single term in FROM clause */ 1504b74b1017Sdrh if( pSrc->a[0].pSelect ) return 0; /* FROM is not a subquery or view */ 1505b287f4b6Sdrh pTab = pSrc->a[0].pTab; 1506b74b1017Sdrh if( NEVER(pTab==0) ) return 0; 1507b74b1017Sdrh assert( pTab->pSelect==0 ); /* FROM clause is not a view */ 1508b287f4b6Sdrh if( IsVirtual(pTab) ) return 0; /* FROM clause not a virtual table */ 1509b287f4b6Sdrh pEList = p->pEList; 1510b287f4b6Sdrh if( pEList->nExpr!=1 ) return 0; /* One column in the result set */ 1511b287f4b6Sdrh if( pEList->a[0].pExpr->op!=TK_COLUMN ) return 0; /* Result is a column */ 1512b287f4b6Sdrh return 1; 1513b287f4b6Sdrh } 1514b287f4b6Sdrh #endif /* SQLITE_OMIT_SUBQUERY */ 1515b287f4b6Sdrh 1516b287f4b6Sdrh /* 15171d8cb21fSdan ** Code an OP_Once instruction and allocate space for its flag. Return the 15181d8cb21fSdan ** address of the new instruction. 15191d8cb21fSdan */ 15201d8cb21fSdan int sqlite3CodeOnce(Parse *pParse){ 15211d8cb21fSdan Vdbe *v = sqlite3GetVdbe(pParse); /* Virtual machine being coded */ 15227d176105Sdrh return sqlite3VdbeAddOp1(v, OP_Once, pParse->nOnce++); 15231d8cb21fSdan } 15241d8cb21fSdan 15251d8cb21fSdan /* 15264c259e9fSdrh ** Generate code that checks the left-most column of index table iCur to see if 15274c259e9fSdrh ** it contains any NULL entries. Cause the register at regHasNull to be set 15286be515ebSdrh ** to a non-NULL value if iCur contains no NULLs. Cause register regHasNull 15296be515ebSdrh ** to be set to NULL if iCur contains one or more NULL values. 15306be515ebSdrh */ 15316be515ebSdrh static void sqlite3SetHasNullFlag(Vdbe *v, int iCur, int regHasNull){ 15326be515ebSdrh int j1; 15336be515ebSdrh sqlite3VdbeAddOp2(v, OP_Integer, 0, regHasNull); 15346be515ebSdrh j1 = sqlite3VdbeAddOp1(v, OP_Rewind, iCur); VdbeCoverage(v); 15356be515ebSdrh sqlite3VdbeAddOp3(v, OP_Column, iCur, 0, regHasNull); 15366be515ebSdrh sqlite3VdbeChangeP5(v, OPFLAG_TYPEOFARG); 15374c259e9fSdrh VdbeComment((v, "first_entry_in(%d)", iCur)); 15386be515ebSdrh sqlite3VdbeJumpHere(v, j1); 15396be515ebSdrh } 15406be515ebSdrh 1541bb53ecb1Sdrh 1542bb53ecb1Sdrh #ifndef SQLITE_OMIT_SUBQUERY 1543bb53ecb1Sdrh /* 1544bb53ecb1Sdrh ** The argument is an IN operator with a list (not a subquery) on the 1545bb53ecb1Sdrh ** right-hand side. Return TRUE if that list is constant. 1546bb53ecb1Sdrh */ 1547bb53ecb1Sdrh static int sqlite3InRhsIsConstant(Expr *pIn){ 1548bb53ecb1Sdrh Expr *pLHS; 1549bb53ecb1Sdrh int res; 1550bb53ecb1Sdrh assert( !ExprHasProperty(pIn, EP_xIsSelect) ); 1551bb53ecb1Sdrh pLHS = pIn->pLeft; 1552bb53ecb1Sdrh pIn->pLeft = 0; 1553bb53ecb1Sdrh res = sqlite3ExprIsConstant(pIn); 1554bb53ecb1Sdrh pIn->pLeft = pLHS; 1555bb53ecb1Sdrh return res; 1556bb53ecb1Sdrh } 1557bb53ecb1Sdrh #endif 1558bb53ecb1Sdrh 15596be515ebSdrh /* 15609a96b668Sdanielk1977 ** This function is used by the implementation of the IN (...) operator. 1561d4305ca6Sdrh ** The pX parameter is the expression on the RHS of the IN operator, which 1562d4305ca6Sdrh ** might be either a list of expressions or a subquery. 15639a96b668Sdanielk1977 ** 1564d4305ca6Sdrh ** The job of this routine is to find or create a b-tree object that can 1565d4305ca6Sdrh ** be used either to test for membership in the RHS set or to iterate through 1566d4305ca6Sdrh ** all members of the RHS set, skipping duplicates. 1567d4305ca6Sdrh ** 15683a85625dSdrh ** A cursor is opened on the b-tree object that is the RHS of the IN operator 1569d4305ca6Sdrh ** and pX->iTable is set to the index of that cursor. 1570d4305ca6Sdrh ** 1571b74b1017Sdrh ** The returned value of this function indicates the b-tree type, as follows: 15729a96b668Sdanielk1977 ** 15739a96b668Sdanielk1977 ** IN_INDEX_ROWID - The cursor was opened on a database table. 15741ccce449Sdrh ** IN_INDEX_INDEX_ASC - The cursor was opened on an ascending index. 15751ccce449Sdrh ** IN_INDEX_INDEX_DESC - The cursor was opened on a descending index. 15769a96b668Sdanielk1977 ** IN_INDEX_EPH - The cursor was opened on a specially created and 15779a96b668Sdanielk1977 ** populated epheremal table. 1578bb53ecb1Sdrh ** IN_INDEX_NOOP - No cursor was allocated. The IN operator must be 1579bb53ecb1Sdrh ** implemented as a sequence of comparisons. 15809a96b668Sdanielk1977 ** 1581d4305ca6Sdrh ** An existing b-tree might be used if the RHS expression pX is a simple 1582d4305ca6Sdrh ** subquery such as: 15839a96b668Sdanielk1977 ** 15849a96b668Sdanielk1977 ** SELECT <column> FROM <table> 15859a96b668Sdanielk1977 ** 1586d4305ca6Sdrh ** If the RHS of the IN operator is a list or a more complex subquery, then 1587d4305ca6Sdrh ** an ephemeral table might need to be generated from the RHS and then 158860ec914cSpeter.d.reid ** pX->iTable made to point to the ephemeral table instead of an 1589d4305ca6Sdrh ** existing table. 1590d4305ca6Sdrh ** 15913a85625dSdrh ** The inFlags parameter must contain exactly one of the bits 15923a85625dSdrh ** IN_INDEX_MEMBERSHIP or IN_INDEX_LOOP. If inFlags contains 15933a85625dSdrh ** IN_INDEX_MEMBERSHIP, then the generated table will be used for a 15943a85625dSdrh ** fast membership test. When the IN_INDEX_LOOP bit is set, the 15953a85625dSdrh ** IN index will be used to loop over all values of the RHS of the 15963a85625dSdrh ** IN operator. 15973a85625dSdrh ** 15983a85625dSdrh ** When IN_INDEX_LOOP is used (and the b-tree will be used to iterate 15993a85625dSdrh ** through the set members) then the b-tree must not contain duplicates. 16003a85625dSdrh ** An epheremal table must be used unless the selected <column> is guaranteed 16019a96b668Sdanielk1977 ** to be unique - either because it is an INTEGER PRIMARY KEY or it 1602b74b1017Sdrh ** has a UNIQUE constraint or UNIQUE index. 16030cdc022eSdanielk1977 ** 16043a85625dSdrh ** When IN_INDEX_MEMBERSHIP is used (and the b-tree will be used 16053a85625dSdrh ** for fast set membership tests) then an epheremal table must 16060cdc022eSdanielk1977 ** be used unless <column> is an INTEGER PRIMARY KEY or an index can 16070cdc022eSdanielk1977 ** be found with <column> as its left-most column. 16080cdc022eSdanielk1977 ** 1609bb53ecb1Sdrh ** If the IN_INDEX_NOOP_OK and IN_INDEX_MEMBERSHIP are both set and 1610bb53ecb1Sdrh ** if the RHS of the IN operator is a list (not a subquery) then this 1611bb53ecb1Sdrh ** routine might decide that creating an ephemeral b-tree for membership 1612bb53ecb1Sdrh ** testing is too expensive and return IN_INDEX_NOOP. In that case, the 1613bb53ecb1Sdrh ** calling routine should implement the IN operator using a sequence 1614bb53ecb1Sdrh ** of Eq or Ne comparison operations. 1615bb53ecb1Sdrh ** 1616b74b1017Sdrh ** When the b-tree is being used for membership tests, the calling function 16173a85625dSdrh ** might need to know whether or not the RHS side of the IN operator 1618e21a6e1dSdrh ** contains a NULL. If prRhsHasNull is not a NULL pointer and 16193a85625dSdrh ** if there is any chance that the (...) might contain a NULL value at 16200cdc022eSdanielk1977 ** runtime, then a register is allocated and the register number written 1621e21a6e1dSdrh ** to *prRhsHasNull. If there is no chance that the (...) contains a 1622e21a6e1dSdrh ** NULL value, then *prRhsHasNull is left unchanged. 16230cdc022eSdanielk1977 ** 1624e21a6e1dSdrh ** If a register is allocated and its location stored in *prRhsHasNull, then 16256be515ebSdrh ** the value in that register will be NULL if the b-tree contains one or more 16266be515ebSdrh ** NULL values, and it will be some non-NULL value if the b-tree contains no 16276be515ebSdrh ** NULL values. 16289a96b668Sdanielk1977 */ 1629284f4acaSdanielk1977 #ifndef SQLITE_OMIT_SUBQUERY 1630e21a6e1dSdrh int sqlite3FindInIndex(Parse *pParse, Expr *pX, u32 inFlags, int *prRhsHasNull){ 1631b74b1017Sdrh Select *p; /* SELECT to the right of IN operator */ 1632b74b1017Sdrh int eType = 0; /* Type of RHS table. IN_INDEX_* */ 1633b74b1017Sdrh int iTab = pParse->nTab++; /* Cursor of the RHS table */ 16343a85625dSdrh int mustBeUnique; /* True if RHS must be unique */ 1635b8475df8Sdrh Vdbe *v = sqlite3GetVdbe(pParse); /* Virtual machine being coded */ 16369a96b668Sdanielk1977 16371450bc6eSdrh assert( pX->op==TK_IN ); 16383a85625dSdrh mustBeUnique = (inFlags & IN_INDEX_LOOP)!=0; 16391450bc6eSdrh 1640b74b1017Sdrh /* Check to see if an existing table or index can be used to 1641b74b1017Sdrh ** satisfy the query. This is preferable to generating a new 1642b74b1017Sdrh ** ephemeral table. 16439a96b668Sdanielk1977 */ 16446ab3a2ecSdanielk1977 p = (ExprHasProperty(pX, EP_xIsSelect) ? pX->x.pSelect : 0); 1645fd773cf9Sdrh if( ALWAYS(pParse->nErr==0) && isCandidateForInOpt(p) ){ 1646e1fb65a0Sdanielk1977 sqlite3 *db = pParse->db; /* Database connection */ 1647b07028f7Sdrh Table *pTab; /* Table <table>. */ 1648b07028f7Sdrh Expr *pExpr; /* Expression <column> */ 1649bbbdc83bSdrh i16 iCol; /* Index of column <column> */ 1650bbbdc83bSdrh i16 iDb; /* Database idx for pTab */ 1651e1fb65a0Sdanielk1977 1652b07028f7Sdrh assert( p ); /* Because of isCandidateForInOpt(p) */ 1653b07028f7Sdrh assert( p->pEList!=0 ); /* Because of isCandidateForInOpt(p) */ 1654b07028f7Sdrh assert( p->pEList->a[0].pExpr!=0 ); /* Because of isCandidateForInOpt(p) */ 1655b07028f7Sdrh assert( p->pSrc!=0 ); /* Because of isCandidateForInOpt(p) */ 1656b07028f7Sdrh pTab = p->pSrc->a[0].pTab; 1657b07028f7Sdrh pExpr = p->pEList->a[0].pExpr; 1658bbbdc83bSdrh iCol = (i16)pExpr->iColumn; 1659b07028f7Sdrh 1660b22f7c83Sdrh /* Code an OP_Transaction and OP_TableLock for <table>. */ 1661e1fb65a0Sdanielk1977 iDb = sqlite3SchemaToIndex(db, pTab->pSchema); 1662e1fb65a0Sdanielk1977 sqlite3CodeVerifySchema(pParse, iDb); 1663e1fb65a0Sdanielk1977 sqlite3TableLock(pParse, iDb, pTab->tnum, 0, pTab->zName); 16649a96b668Sdanielk1977 16659a96b668Sdanielk1977 /* This function is only called from two places. In both cases the vdbe 16669a96b668Sdanielk1977 ** has already been allocated. So assume sqlite3GetVdbe() is always 16679a96b668Sdanielk1977 ** successful here. 16689a96b668Sdanielk1977 */ 16699a96b668Sdanielk1977 assert(v); 16709a96b668Sdanielk1977 if( iCol<0 ){ 16717d176105Sdrh int iAddr = sqlite3CodeOnce(pParse); 16727d176105Sdrh VdbeCoverage(v); 16739a96b668Sdanielk1977 16749a96b668Sdanielk1977 sqlite3OpenTable(pParse, iTab, iDb, pTab, OP_OpenRead); 16759a96b668Sdanielk1977 eType = IN_INDEX_ROWID; 16769a96b668Sdanielk1977 16779a96b668Sdanielk1977 sqlite3VdbeJumpHere(v, iAddr); 16789a96b668Sdanielk1977 }else{ 1679e1fb65a0Sdanielk1977 Index *pIdx; /* Iterator variable */ 1680e1fb65a0Sdanielk1977 16819a96b668Sdanielk1977 /* The collation sequence used by the comparison. If an index is to 16829a96b668Sdanielk1977 ** be used in place of a temp-table, it must be ordered according 1683e1fb65a0Sdanielk1977 ** to this collation sequence. */ 16849a96b668Sdanielk1977 CollSeq *pReq = sqlite3BinaryCompareCollSeq(pParse, pX->pLeft, pExpr); 16859a96b668Sdanielk1977 16869a96b668Sdanielk1977 /* Check that the affinity that will be used to perform the 16879a96b668Sdanielk1977 ** comparison is the same as the affinity of the column. If 16889a96b668Sdanielk1977 ** it is not, it is not possible to use any index. 16899a96b668Sdanielk1977 */ 1690dbaee5e3Sdrh int affinity_ok = sqlite3IndexAffinityOk(pX, pTab->aCol[iCol].affinity); 16919a96b668Sdanielk1977 16929a96b668Sdanielk1977 for(pIdx=pTab->pIndex; pIdx && eType==0 && affinity_ok; pIdx=pIdx->pNext){ 16939a96b668Sdanielk1977 if( (pIdx->aiColumn[0]==iCol) 1694b74b1017Sdrh && sqlite3FindCollSeq(db, ENC(db), pIdx->azColl[0], 0)==pReq 16955f1d1d9cSdrh && (!mustBeUnique || (pIdx->nKeyCol==1 && IsUniqueIndex(pIdx))) 16969a96b668Sdanielk1977 ){ 16977d176105Sdrh int iAddr = sqlite3CodeOnce(pParse); VdbeCoverage(v); 16982ec2fb22Sdrh sqlite3VdbeAddOp3(v, OP_OpenRead, iTab, pIdx->tnum, iDb); 16992ec2fb22Sdrh sqlite3VdbeSetP4KeyInfo(pParse, pIdx); 1700207872a4Sdanielk1977 VdbeComment((v, "%s", pIdx->zName)); 17011ccce449Sdrh assert( IN_INDEX_INDEX_DESC == IN_INDEX_INDEX_ASC+1 ); 17021ccce449Sdrh eType = IN_INDEX_INDEX_ASC + pIdx->aSortOrder[0]; 17039a96b668Sdanielk1977 1704e21a6e1dSdrh if( prRhsHasNull && !pTab->aCol[iCol].notNull ){ 1705e21a6e1dSdrh *prRhsHasNull = ++pParse->nMem; 17066be515ebSdrh sqlite3SetHasNullFlag(v, iTab, *prRhsHasNull); 17070cdc022eSdanielk1977 } 1708552fd454Sdrh sqlite3VdbeJumpHere(v, iAddr); 17099a96b668Sdanielk1977 } 17109a96b668Sdanielk1977 } 17119a96b668Sdanielk1977 } 17129a96b668Sdanielk1977 } 17139a96b668Sdanielk1977 1714bb53ecb1Sdrh /* If no preexisting index is available for the IN clause 1715bb53ecb1Sdrh ** and IN_INDEX_NOOP is an allowed reply 1716bb53ecb1Sdrh ** and the RHS of the IN operator is a list, not a subquery 1717bb53ecb1Sdrh ** and the RHS is not contant or has two or fewer terms, 171860ec914cSpeter.d.reid ** then it is not worth creating an ephemeral table to evaluate 1719bb53ecb1Sdrh ** the IN operator so return IN_INDEX_NOOP. 1720bb53ecb1Sdrh */ 1721bb53ecb1Sdrh if( eType==0 1722bb53ecb1Sdrh && (inFlags & IN_INDEX_NOOP_OK) 1723bb53ecb1Sdrh && !ExprHasProperty(pX, EP_xIsSelect) 1724bb53ecb1Sdrh && (!sqlite3InRhsIsConstant(pX) || pX->x.pList->nExpr<=2) 1725bb53ecb1Sdrh ){ 1726bb53ecb1Sdrh eType = IN_INDEX_NOOP; 1727bb53ecb1Sdrh } 1728bb53ecb1Sdrh 1729bb53ecb1Sdrh 17309a96b668Sdanielk1977 if( eType==0 ){ 17314387006cSdrh /* Could not find an existing table or index to use as the RHS b-tree. 1732b74b1017Sdrh ** We will have to generate an ephemeral table to do the job. 1733b74b1017Sdrh */ 17348e23daf3Sdrh u32 savedNQueryLoop = pParse->nQueryLoop; 17350cdc022eSdanielk1977 int rMayHaveNull = 0; 173641a05b7bSdanielk1977 eType = IN_INDEX_EPH; 17373a85625dSdrh if( inFlags & IN_INDEX_LOOP ){ 17384a5acf8eSdrh pParse->nQueryLoop = 0; 1739c5cd1249Sdrh if( pX->pLeft->iColumn<0 && !ExprHasProperty(pX, EP_xIsSelect) ){ 174041a05b7bSdanielk1977 eType = IN_INDEX_ROWID; 17410cdc022eSdanielk1977 } 1742e21a6e1dSdrh }else if( prRhsHasNull ){ 1743e21a6e1dSdrh *prRhsHasNull = rMayHaveNull = ++pParse->nMem; 1744cf4d38aaSdrh } 174541a05b7bSdanielk1977 sqlite3CodeSubselect(pParse, pX, rMayHaveNull, eType==IN_INDEX_ROWID); 1746cf4d38aaSdrh pParse->nQueryLoop = savedNQueryLoop; 17479a96b668Sdanielk1977 }else{ 17489a96b668Sdanielk1977 pX->iTable = iTab; 17499a96b668Sdanielk1977 } 17509a96b668Sdanielk1977 return eType; 17519a96b668Sdanielk1977 } 1752284f4acaSdanielk1977 #endif 1753626a879aSdrh 1754626a879aSdrh /* 1755d4187c71Sdrh ** Generate code for scalar subqueries used as a subquery expression, EXISTS, 1756d4187c71Sdrh ** or IN operators. Examples: 1757626a879aSdrh ** 17589cbe6352Sdrh ** (SELECT a FROM b) -- subquery 17599cbe6352Sdrh ** EXISTS (SELECT a FROM b) -- EXISTS subquery 17609cbe6352Sdrh ** x IN (4,5,11) -- IN operator with list on right-hand side 17619cbe6352Sdrh ** x IN (SELECT a FROM b) -- IN operator with subquery on the right 1762fef5208cSdrh ** 17639cbe6352Sdrh ** The pExpr parameter describes the expression that contains the IN 17649cbe6352Sdrh ** operator or subquery. 176541a05b7bSdanielk1977 ** 176641a05b7bSdanielk1977 ** If parameter isRowid is non-zero, then expression pExpr is guaranteed 176741a05b7bSdanielk1977 ** to be of the form "<rowid> IN (?, ?, ?)", where <rowid> is a reference 176841a05b7bSdanielk1977 ** to some integer key column of a table B-Tree. In this case, use an 176941a05b7bSdanielk1977 ** intkey B-Tree to store the set of IN(...) values instead of the usual 177041a05b7bSdanielk1977 ** (slower) variable length keys B-Tree. 1771fd773cf9Sdrh ** 1772fd773cf9Sdrh ** If rMayHaveNull is non-zero, that means that the operation is an IN 1773fd773cf9Sdrh ** (not a SELECT or EXISTS) and that the RHS might contains NULLs. 17743a85625dSdrh ** All this routine does is initialize the register given by rMayHaveNull 17753a85625dSdrh ** to NULL. Calling routines will take care of changing this register 17763a85625dSdrh ** value to non-NULL if the RHS is NULL-free. 17771450bc6eSdrh ** 17781450bc6eSdrh ** For a SELECT or EXISTS operator, return the register that holds the 17791450bc6eSdrh ** result. For IN operators or if an error occurs, the return value is 0. 1780cce7d176Sdrh */ 178151522cd3Sdrh #ifndef SQLITE_OMIT_SUBQUERY 17821450bc6eSdrh int sqlite3CodeSubselect( 1783fd773cf9Sdrh Parse *pParse, /* Parsing context */ 1784fd773cf9Sdrh Expr *pExpr, /* The IN, SELECT, or EXISTS operator */ 17856be515ebSdrh int rHasNullFlag, /* Register that records whether NULLs exist in RHS */ 1786fd773cf9Sdrh int isRowid /* If true, LHS of IN operator is a rowid */ 178741a05b7bSdanielk1977 ){ 17886be515ebSdrh int jmpIfDynamic = -1; /* One-time test address */ 17891450bc6eSdrh int rReg = 0; /* Register storing resulting */ 1790b3bce662Sdanielk1977 Vdbe *v = sqlite3GetVdbe(pParse); 17911450bc6eSdrh if( NEVER(v==0) ) return 0; 1792ceea3321Sdrh sqlite3ExprCachePush(pParse); 1793fc976065Sdanielk1977 179457dbd7b3Sdrh /* This code must be run in its entirety every time it is encountered 179557dbd7b3Sdrh ** if any of the following is true: 179657dbd7b3Sdrh ** 179757dbd7b3Sdrh ** * The right-hand side is a correlated subquery 179857dbd7b3Sdrh ** * The right-hand side is an expression list containing variables 179957dbd7b3Sdrh ** * We are inside a trigger 180057dbd7b3Sdrh ** 180157dbd7b3Sdrh ** If all of the above are false, then we can run this code just once 180257dbd7b3Sdrh ** save the results, and reuse the same result on subsequent invocations. 1803b3bce662Sdanielk1977 */ 1804c5cd1249Sdrh if( !ExprHasProperty(pExpr, EP_VarSelect) ){ 18056be515ebSdrh jmpIfDynamic = sqlite3CodeOnce(pParse); VdbeCoverage(v); 1806b3bce662Sdanielk1977 } 1807b3bce662Sdanielk1977 18084a07e3dbSdan #ifndef SQLITE_OMIT_EXPLAIN 18094a07e3dbSdan if( pParse->explain==2 ){ 18104a07e3dbSdan char *zMsg = sqlite3MPrintf( 18116be515ebSdrh pParse->db, "EXECUTE %s%s SUBQUERY %d", jmpIfDynamic>=0?"":"CORRELATED ", 18124a07e3dbSdan pExpr->op==TK_IN?"LIST":"SCALAR", pParse->iNextSelectId 18134a07e3dbSdan ); 18144a07e3dbSdan sqlite3VdbeAddOp4(v, OP_Explain, pParse->iSelectId, 0, 0, zMsg, P4_DYNAMIC); 18154a07e3dbSdan } 18164a07e3dbSdan #endif 18174a07e3dbSdan 1818cce7d176Sdrh switch( pExpr->op ){ 1819fef5208cSdrh case TK_IN: { 1820d4187c71Sdrh char affinity; /* Affinity of the LHS of the IN */ 1821b9bb7c18Sdrh int addr; /* Address of OP_OpenEphemeral instruction */ 1822d4187c71Sdrh Expr *pLeft = pExpr->pLeft; /* the LHS of the IN operator */ 1823323df790Sdrh KeyInfo *pKeyInfo = 0; /* Key information */ 1824d3d39e93Sdrh 182541a05b7bSdanielk1977 affinity = sqlite3ExprAffinity(pLeft); 1826e014a838Sdanielk1977 1827e014a838Sdanielk1977 /* Whether this is an 'x IN(SELECT...)' or an 'x IN(<exprlist>)' 18288cff69dfSdrh ** expression it is handled the same way. An ephemeral table is 1829e014a838Sdanielk1977 ** filled with single-field index keys representing the results 1830e014a838Sdanielk1977 ** from the SELECT or the <exprlist>. 1831fef5208cSdrh ** 1832e014a838Sdanielk1977 ** If the 'x' expression is a column value, or the SELECT... 1833e014a838Sdanielk1977 ** statement returns a column value, then the affinity of that 1834e014a838Sdanielk1977 ** column is used to build the index keys. If both 'x' and the 1835e014a838Sdanielk1977 ** SELECT... statement are columns, then numeric affinity is used 1836e014a838Sdanielk1977 ** if either column has NUMERIC or INTEGER affinity. If neither 1837e014a838Sdanielk1977 ** 'x' nor the SELECT... statement are columns, then numeric affinity 1838e014a838Sdanielk1977 ** is used. 1839fef5208cSdrh */ 1840832508b7Sdrh pExpr->iTable = pParse->nTab++; 184141a05b7bSdanielk1977 addr = sqlite3VdbeAddOp2(v, OP_OpenEphemeral, pExpr->iTable, !isRowid); 1842ad124329Sdrh pKeyInfo = isRowid ? 0 : sqlite3KeyInfoAlloc(pParse->db, 1, 1); 1843e014a838Sdanielk1977 18446ab3a2ecSdanielk1977 if( ExprHasProperty(pExpr, EP_xIsSelect) ){ 1845e014a838Sdanielk1977 /* Case 1: expr IN (SELECT ...) 1846e014a838Sdanielk1977 ** 1847e014a838Sdanielk1977 ** Generate code to write the results of the select into the temporary 1848e014a838Sdanielk1977 ** table allocated and opened above. 1849e014a838Sdanielk1977 */ 18504387006cSdrh Select *pSelect = pExpr->x.pSelect; 18511013c932Sdrh SelectDest dest; 1852be5c89acSdrh ExprList *pEList; 18531013c932Sdrh 185441a05b7bSdanielk1977 assert( !isRowid ); 18551013c932Sdrh sqlite3SelectDestInit(&dest, SRT_Set, pExpr->iTable); 18562b596da8Sdrh dest.affSdst = (u8)affinity; 1857e014a838Sdanielk1977 assert( (pExpr->iTable&0x0000FFFF)==pExpr->iTable ); 18584387006cSdrh pSelect->iLimit = 0; 18594387006cSdrh testcase( pSelect->selFlags & SF_Distinct ); 18604387006cSdrh pSelect->selFlags &= ~SF_Distinct; 1861812ea833Sdrh testcase( pKeyInfo==0 ); /* Caused by OOM in sqlite3KeyInfoAlloc() */ 18624387006cSdrh if( sqlite3Select(pParse, pSelect, &dest) ){ 18632ec2fb22Sdrh sqlite3KeyInfoUnref(pKeyInfo); 18641450bc6eSdrh return 0; 186594ccde58Sdrh } 18664387006cSdrh pEList = pSelect->pEList; 1867812ea833Sdrh assert( pKeyInfo!=0 ); /* OOM will cause exit after sqlite3Select() */ 18683535ec3eSdrh assert( pEList!=0 ); 18693535ec3eSdrh assert( pEList->nExpr>0 ); 18702ec2fb22Sdrh assert( sqlite3KeyInfoIsWriteable(pKeyInfo) ); 1871323df790Sdrh pKeyInfo->aColl[0] = sqlite3BinaryCompareCollSeq(pParse, pExpr->pLeft, 1872be5c89acSdrh pEList->a[0].pExpr); 1873a7d2db17Sdrh }else if( ALWAYS(pExpr->x.pList!=0) ){ 1874fef5208cSdrh /* Case 2: expr IN (exprlist) 1875fef5208cSdrh ** 1876e014a838Sdanielk1977 ** For each expression, build an index key from the evaluation and 1877e014a838Sdanielk1977 ** store it in the temporary table. If <expr> is a column, then use 1878e014a838Sdanielk1977 ** that columns affinity when building index keys. If <expr> is not 1879e014a838Sdanielk1977 ** a column, use numeric affinity. 1880fef5208cSdrh */ 1881e014a838Sdanielk1977 int i; 18826ab3a2ecSdanielk1977 ExprList *pList = pExpr->x.pList; 188357dbd7b3Sdrh struct ExprList_item *pItem; 1884ecc31805Sdrh int r1, r2, r3; 188557dbd7b3Sdrh 1886e014a838Sdanielk1977 if( !affinity ){ 18878159a35fSdrh affinity = SQLITE_AFF_NONE; 1888e014a838Sdanielk1977 } 1889323df790Sdrh if( pKeyInfo ){ 18902ec2fb22Sdrh assert( sqlite3KeyInfoIsWriteable(pKeyInfo) ); 1891323df790Sdrh pKeyInfo->aColl[0] = sqlite3ExprCollSeq(pParse, pExpr->pLeft); 1892323df790Sdrh } 1893e014a838Sdanielk1977 1894e014a838Sdanielk1977 /* Loop through each expression in <exprlist>. */ 18952d401ab8Sdrh r1 = sqlite3GetTempReg(pParse); 18962d401ab8Sdrh r2 = sqlite3GetTempReg(pParse); 189737e08081Sdrh if( isRowid ) sqlite3VdbeAddOp2(v, OP_Null, 0, r2); 189857dbd7b3Sdrh for(i=pList->nExpr, pItem=pList->a; i>0; i--, pItem++){ 189957dbd7b3Sdrh Expr *pE2 = pItem->pExpr; 1900e05c929bSdrh int iValToIns; 1901e014a838Sdanielk1977 190257dbd7b3Sdrh /* If the expression is not constant then we will need to 190357dbd7b3Sdrh ** disable the test that was generated above that makes sure 190457dbd7b3Sdrh ** this code only executes once. Because for a non-constant 190557dbd7b3Sdrh ** expression we need to rerun this code each time. 190657dbd7b3Sdrh */ 19076be515ebSdrh if( jmpIfDynamic>=0 && !sqlite3ExprIsConstant(pE2) ){ 19086be515ebSdrh sqlite3VdbeChangeToNoop(v, jmpIfDynamic); 19096be515ebSdrh jmpIfDynamic = -1; 19104794b980Sdrh } 1911e014a838Sdanielk1977 1912e014a838Sdanielk1977 /* Evaluate the expression and insert it into the temp table */ 1913e05c929bSdrh if( isRowid && sqlite3ExprIsInteger(pE2, &iValToIns) ){ 1914e05c929bSdrh sqlite3VdbeAddOp3(v, OP_InsertInt, pExpr->iTable, r2, iValToIns); 1915e05c929bSdrh }else{ 1916ecc31805Sdrh r3 = sqlite3ExprCodeTarget(pParse, pE2, r1); 191741a05b7bSdanielk1977 if( isRowid ){ 1918e05c929bSdrh sqlite3VdbeAddOp2(v, OP_MustBeInt, r3, 1919e05c929bSdrh sqlite3VdbeCurrentAddr(v)+2); 1920688852abSdrh VdbeCoverage(v); 192141a05b7bSdanielk1977 sqlite3VdbeAddOp3(v, OP_Insert, pExpr->iTable, r2, r3); 192241a05b7bSdanielk1977 }else{ 1923ecc31805Sdrh sqlite3VdbeAddOp4(v, OP_MakeRecord, r3, 1, r2, &affinity, 1); 19243c31fc23Sdrh sqlite3ExprCacheAffinityChange(pParse, r3, 1); 19252d401ab8Sdrh sqlite3VdbeAddOp2(v, OP_IdxInsert, pExpr->iTable, r2); 1926fef5208cSdrh } 192741a05b7bSdanielk1977 } 1928e05c929bSdrh } 19292d401ab8Sdrh sqlite3ReleaseTempReg(pParse, r1); 19302d401ab8Sdrh sqlite3ReleaseTempReg(pParse, r2); 1931fef5208cSdrh } 1932323df790Sdrh if( pKeyInfo ){ 19332ec2fb22Sdrh sqlite3VdbeChangeP4(v, addr, (void *)pKeyInfo, P4_KEYINFO); 193441a05b7bSdanielk1977 } 1935b3bce662Sdanielk1977 break; 1936fef5208cSdrh } 1937fef5208cSdrh 193851522cd3Sdrh case TK_EXISTS: 1939fd773cf9Sdrh case TK_SELECT: 1940fd773cf9Sdrh default: { 1941fd773cf9Sdrh /* If this has to be a scalar SELECT. Generate code to put the 1942fef5208cSdrh ** value of this select in a memory cell and record the number 1943fd773cf9Sdrh ** of the memory cell in iColumn. If this is an EXISTS, write 1944fd773cf9Sdrh ** an integer 0 (not exists) or 1 (exists) into a memory cell 1945fd773cf9Sdrh ** and record that memory cell in iColumn. 1946fef5208cSdrh */ 1947fd773cf9Sdrh Select *pSel; /* SELECT statement to encode */ 1948fd773cf9Sdrh SelectDest dest; /* How to deal with SELECt result */ 19491398ad36Sdrh 1950cf697396Sshane testcase( pExpr->op==TK_EXISTS ); 1951cf697396Sshane testcase( pExpr->op==TK_SELECT ); 1952cf697396Sshane assert( pExpr->op==TK_EXISTS || pExpr->op==TK_SELECT ); 1953cf697396Sshane 19546ab3a2ecSdanielk1977 assert( ExprHasProperty(pExpr, EP_xIsSelect) ); 19556ab3a2ecSdanielk1977 pSel = pExpr->x.pSelect; 19561013c932Sdrh sqlite3SelectDestInit(&dest, 0, ++pParse->nMem); 195751522cd3Sdrh if( pExpr->op==TK_SELECT ){ 19586c8c8ce0Sdanielk1977 dest.eDest = SRT_Mem; 195953932ce8Sdrh dest.iSdst = dest.iSDParm; 19602b596da8Sdrh sqlite3VdbeAddOp2(v, OP_Null, 0, dest.iSDParm); 1961d4e70ebdSdrh VdbeComment((v, "Init subquery result")); 196251522cd3Sdrh }else{ 19636c8c8ce0Sdanielk1977 dest.eDest = SRT_Exists; 19642b596da8Sdrh sqlite3VdbeAddOp2(v, OP_Integer, 0, dest.iSDParm); 1965d4e70ebdSdrh VdbeComment((v, "Init EXISTS result")); 196651522cd3Sdrh } 1967633e6d57Sdrh sqlite3ExprDelete(pParse->db, pSel->pLimit); 1968094430ebSdrh pSel->pLimit = sqlite3PExpr(pParse, TK_INTEGER, 0, 0, 1969094430ebSdrh &sqlite3IntTokens[1]); 197048b5b041Sdrh pSel->iLimit = 0; 19717d10d5a6Sdrh if( sqlite3Select(pParse, pSel, &dest) ){ 19721450bc6eSdrh return 0; 197394ccde58Sdrh } 19742b596da8Sdrh rReg = dest.iSDParm; 1975ebb6a65dSdrh ExprSetVVAProperty(pExpr, EP_NoReduce); 1976b3bce662Sdanielk1977 break; 197719a775c2Sdrh } 1978cce7d176Sdrh } 1979b3bce662Sdanielk1977 19806be515ebSdrh if( rHasNullFlag ){ 19816be515ebSdrh sqlite3SetHasNullFlag(v, pExpr->iTable, rHasNullFlag); 19826be515ebSdrh } 19836be515ebSdrh 19846be515ebSdrh if( jmpIfDynamic>=0 ){ 19856be515ebSdrh sqlite3VdbeJumpHere(v, jmpIfDynamic); 1986b3bce662Sdanielk1977 } 1987d2490904Sdrh sqlite3ExprCachePop(pParse); 1988fc976065Sdanielk1977 19891450bc6eSdrh return rReg; 1990cce7d176Sdrh } 199151522cd3Sdrh #endif /* SQLITE_OMIT_SUBQUERY */ 1992cce7d176Sdrh 1993e3365e6cSdrh #ifndef SQLITE_OMIT_SUBQUERY 1994e3365e6cSdrh /* 1995e3365e6cSdrh ** Generate code for an IN expression. 1996e3365e6cSdrh ** 1997e3365e6cSdrh ** x IN (SELECT ...) 1998e3365e6cSdrh ** x IN (value, value, ...) 1999e3365e6cSdrh ** 2000e3365e6cSdrh ** The left-hand side (LHS) is a scalar expression. The right-hand side (RHS) 2001e3365e6cSdrh ** is an array of zero or more values. The expression is true if the LHS is 2002e3365e6cSdrh ** contained within the RHS. The value of the expression is unknown (NULL) 2003e3365e6cSdrh ** if the LHS is NULL or if the LHS is not contained within the RHS and the 2004e3365e6cSdrh ** RHS contains one or more NULL values. 2005e3365e6cSdrh ** 20066be515ebSdrh ** This routine generates code that jumps to destIfFalse if the LHS is not 2007e3365e6cSdrh ** contained within the RHS. If due to NULLs we cannot determine if the LHS 2008e3365e6cSdrh ** is contained in the RHS then jump to destIfNull. If the LHS is contained 2009e3365e6cSdrh ** within the RHS then fall through. 2010e3365e6cSdrh */ 2011e3365e6cSdrh static void sqlite3ExprCodeIN( 2012e3365e6cSdrh Parse *pParse, /* Parsing and code generating context */ 2013e3365e6cSdrh Expr *pExpr, /* The IN expression */ 2014e3365e6cSdrh int destIfFalse, /* Jump here if LHS is not contained in the RHS */ 2015e3365e6cSdrh int destIfNull /* Jump here if the results are unknown due to NULLs */ 2016e3365e6cSdrh ){ 2017e3365e6cSdrh int rRhsHasNull = 0; /* Register that is true if RHS contains NULL values */ 2018e3365e6cSdrh char affinity; /* Comparison affinity to use */ 2019e3365e6cSdrh int eType; /* Type of the RHS */ 2020e3365e6cSdrh int r1; /* Temporary use register */ 2021e3365e6cSdrh Vdbe *v; /* Statement under construction */ 2022e3365e6cSdrh 2023e3365e6cSdrh /* Compute the RHS. After this step, the table with cursor 2024e3365e6cSdrh ** pExpr->iTable will contains the values that make up the RHS. 2025e3365e6cSdrh */ 2026e3365e6cSdrh v = pParse->pVdbe; 2027e3365e6cSdrh assert( v!=0 ); /* OOM detected prior to this routine */ 2028e3365e6cSdrh VdbeNoopComment((v, "begin IN expr")); 2029bb53ecb1Sdrh eType = sqlite3FindInIndex(pParse, pExpr, 2030bb53ecb1Sdrh IN_INDEX_MEMBERSHIP | IN_INDEX_NOOP_OK, 20313a85625dSdrh destIfFalse==destIfNull ? 0 : &rRhsHasNull); 2032e3365e6cSdrh 2033e3365e6cSdrh /* Figure out the affinity to use to create a key from the results 2034e3365e6cSdrh ** of the expression. affinityStr stores a static string suitable for 2035e3365e6cSdrh ** P4 of OP_MakeRecord. 2036e3365e6cSdrh */ 2037e3365e6cSdrh affinity = comparisonAffinity(pExpr); 2038e3365e6cSdrh 2039e3365e6cSdrh /* Code the LHS, the <expr> from "<expr> IN (...)". 2040e3365e6cSdrh */ 2041e3365e6cSdrh sqlite3ExprCachePush(pParse); 2042e3365e6cSdrh r1 = sqlite3GetTempReg(pParse); 2043e3365e6cSdrh sqlite3ExprCode(pParse, pExpr->pLeft, r1); 2044e3365e6cSdrh 2045bb53ecb1Sdrh /* If sqlite3FindInIndex() did not find or create an index that is 2046bb53ecb1Sdrh ** suitable for evaluating the IN operator, then evaluate using a 2047bb53ecb1Sdrh ** sequence of comparisons. 2048bb53ecb1Sdrh */ 2049bb53ecb1Sdrh if( eType==IN_INDEX_NOOP ){ 2050bb53ecb1Sdrh ExprList *pList = pExpr->x.pList; 2051bb53ecb1Sdrh CollSeq *pColl = sqlite3ExprCollSeq(pParse, pExpr->pLeft); 2052bb53ecb1Sdrh int labelOk = sqlite3VdbeMakeLabel(v); 2053bb53ecb1Sdrh int r2, regToFree; 2054bb53ecb1Sdrh int regCkNull = 0; 2055bb53ecb1Sdrh int ii; 2056bb53ecb1Sdrh assert( !ExprHasProperty(pExpr, EP_xIsSelect) ); 2057bb53ecb1Sdrh if( destIfNull!=destIfFalse ){ 2058bb53ecb1Sdrh regCkNull = sqlite3GetTempReg(pParse); 2059a976979bSdrh sqlite3VdbeAddOp3(v, OP_BitAnd, r1, r1, regCkNull); 2060bb53ecb1Sdrh } 2061bb53ecb1Sdrh for(ii=0; ii<pList->nExpr; ii++){ 2062bb53ecb1Sdrh r2 = sqlite3ExprCodeTemp(pParse, pList->a[ii].pExpr, ®ToFree); 2063a976979bSdrh if( regCkNull && sqlite3ExprCanBeNull(pList->a[ii].pExpr) ){ 2064bb53ecb1Sdrh sqlite3VdbeAddOp3(v, OP_BitAnd, regCkNull, r2, regCkNull); 2065bb53ecb1Sdrh } 2066bb53ecb1Sdrh if( ii<pList->nExpr-1 || destIfNull!=destIfFalse ){ 2067bb53ecb1Sdrh sqlite3VdbeAddOp4(v, OP_Eq, r1, labelOk, r2, 20684336b0e6Sdrh (void*)pColl, P4_COLLSEQ); 20694336b0e6Sdrh VdbeCoverageIf(v, ii<pList->nExpr-1); 20704336b0e6Sdrh VdbeCoverageIf(v, ii==pList->nExpr-1); 2071bb53ecb1Sdrh sqlite3VdbeChangeP5(v, affinity); 2072bb53ecb1Sdrh }else{ 2073bb53ecb1Sdrh assert( destIfNull==destIfFalse ); 2074bb53ecb1Sdrh sqlite3VdbeAddOp4(v, OP_Ne, r1, destIfFalse, r2, 2075bb53ecb1Sdrh (void*)pColl, P4_COLLSEQ); VdbeCoverage(v); 2076bb53ecb1Sdrh sqlite3VdbeChangeP5(v, affinity | SQLITE_JUMPIFNULL); 2077bb53ecb1Sdrh } 2078bb53ecb1Sdrh sqlite3ReleaseTempReg(pParse, regToFree); 2079bb53ecb1Sdrh } 2080bb53ecb1Sdrh if( regCkNull ){ 2081bb53ecb1Sdrh sqlite3VdbeAddOp2(v, OP_IsNull, regCkNull, destIfNull); VdbeCoverage(v); 2082bb53ecb1Sdrh sqlite3VdbeAddOp2(v, OP_Goto, 0, destIfFalse); 2083bb53ecb1Sdrh } 2084bb53ecb1Sdrh sqlite3VdbeResolveLabel(v, labelOk); 2085bb53ecb1Sdrh sqlite3ReleaseTempReg(pParse, regCkNull); 2086bb53ecb1Sdrh }else{ 2087bb53ecb1Sdrh 2088094430ebSdrh /* If the LHS is NULL, then the result is either false or NULL depending 2089094430ebSdrh ** on whether the RHS is empty or not, respectively. 2090094430ebSdrh */ 20917248a8b2Sdrh if( sqlite3ExprCanBeNull(pExpr->pLeft) ){ 2092094430ebSdrh if( destIfNull==destIfFalse ){ 2093094430ebSdrh /* Shortcut for the common case where the false and NULL outcomes are 2094094430ebSdrh ** the same. */ 2095688852abSdrh sqlite3VdbeAddOp2(v, OP_IsNull, r1, destIfNull); VdbeCoverage(v); 2096094430ebSdrh }else{ 2097688852abSdrh int addr1 = sqlite3VdbeAddOp1(v, OP_NotNull, r1); VdbeCoverage(v); 2098094430ebSdrh sqlite3VdbeAddOp2(v, OP_Rewind, pExpr->iTable, destIfFalse); 2099688852abSdrh VdbeCoverage(v); 2100094430ebSdrh sqlite3VdbeAddOp2(v, OP_Goto, 0, destIfNull); 2101094430ebSdrh sqlite3VdbeJumpHere(v, addr1); 2102094430ebSdrh } 21037248a8b2Sdrh } 2104e3365e6cSdrh 2105e3365e6cSdrh if( eType==IN_INDEX_ROWID ){ 2106e3365e6cSdrh /* In this case, the RHS is the ROWID of table b-tree 2107e3365e6cSdrh */ 2108688852abSdrh sqlite3VdbeAddOp2(v, OP_MustBeInt, r1, destIfFalse); VdbeCoverage(v); 2109e3365e6cSdrh sqlite3VdbeAddOp3(v, OP_NotExists, pExpr->iTable, destIfFalse, r1); 2110688852abSdrh VdbeCoverage(v); 2111e3365e6cSdrh }else{ 2112e3365e6cSdrh /* In this case, the RHS is an index b-tree. 2113e3365e6cSdrh */ 21148cff69dfSdrh sqlite3VdbeAddOp4(v, OP_Affinity, r1, 1, 0, &affinity, 1); 2115e3365e6cSdrh 2116e3365e6cSdrh /* If the set membership test fails, then the result of the 2117e3365e6cSdrh ** "x IN (...)" expression must be either 0 or NULL. If the set 2118e3365e6cSdrh ** contains no NULL values, then the result is 0. If the set 2119e3365e6cSdrh ** contains one or more NULL values, then the result of the 2120e3365e6cSdrh ** expression is also NULL. 2121e3365e6cSdrh */ 2122e80c9b9aSdrh assert( destIfFalse!=destIfNull || rRhsHasNull==0 ); 2123e80c9b9aSdrh if( rRhsHasNull==0 ){ 2124e3365e6cSdrh /* This branch runs if it is known at compile time that the RHS 2125e3365e6cSdrh ** cannot contain NULL values. This happens as the result 2126e3365e6cSdrh ** of a "NOT NULL" constraint in the database schema. 2127e3365e6cSdrh ** 2128e3365e6cSdrh ** Also run this branch if NULL is equivalent to FALSE 2129e3365e6cSdrh ** for this particular IN operator. 2130e3365e6cSdrh */ 21318cff69dfSdrh sqlite3VdbeAddOp4Int(v, OP_NotFound, pExpr->iTable, destIfFalse, r1, 1); 2132688852abSdrh VdbeCoverage(v); 2133e3365e6cSdrh }else{ 2134e3365e6cSdrh /* In this branch, the RHS of the IN might contain a NULL and 2135e3365e6cSdrh ** the presence of a NULL on the RHS makes a difference in the 2136e3365e6cSdrh ** outcome. 2137e3365e6cSdrh */ 21386be515ebSdrh int j1; 2139e3365e6cSdrh 2140e3365e6cSdrh /* First check to see if the LHS is contained in the RHS. If so, 21416be515ebSdrh ** then the answer is TRUE the presence of NULLs in the RHS does 21426be515ebSdrh ** not matter. If the LHS is not contained in the RHS, then the 21436be515ebSdrh ** answer is NULL if the RHS contains NULLs and the answer is 21446be515ebSdrh ** FALSE if the RHS is NULL-free. 2145e3365e6cSdrh */ 21468cff69dfSdrh j1 = sqlite3VdbeAddOp4Int(v, OP_Found, pExpr->iTable, 0, r1, 1); 2147688852abSdrh VdbeCoverage(v); 21486be515ebSdrh sqlite3VdbeAddOp2(v, OP_IsNull, rRhsHasNull, destIfNull); 2149552fd454Sdrh VdbeCoverage(v); 2150e3365e6cSdrh sqlite3VdbeAddOp2(v, OP_Goto, 0, destIfFalse); 2151e3365e6cSdrh sqlite3VdbeJumpHere(v, j1); 2152e3365e6cSdrh } 2153e3365e6cSdrh } 2154bb53ecb1Sdrh } 2155e3365e6cSdrh sqlite3ReleaseTempReg(pParse, r1); 2156d2490904Sdrh sqlite3ExprCachePop(pParse); 2157e3365e6cSdrh VdbeComment((v, "end IN expr")); 2158e3365e6cSdrh } 2159e3365e6cSdrh #endif /* SQLITE_OMIT_SUBQUERY */ 2160e3365e6cSdrh 2161cce7d176Sdrh /* 2162598f1340Sdrh ** Duplicate an 8-byte value 2163598f1340Sdrh */ 2164598f1340Sdrh static char *dup8bytes(Vdbe *v, const char *in){ 2165598f1340Sdrh char *out = sqlite3DbMallocRaw(sqlite3VdbeDb(v), 8); 2166598f1340Sdrh if( out ){ 2167598f1340Sdrh memcpy(out, in, 8); 2168598f1340Sdrh } 2169598f1340Sdrh return out; 2170598f1340Sdrh } 2171598f1340Sdrh 217213573c71Sdrh #ifndef SQLITE_OMIT_FLOATING_POINT 2173598f1340Sdrh /* 2174598f1340Sdrh ** Generate an instruction that will put the floating point 21759cbf3425Sdrh ** value described by z[0..n-1] into register iMem. 21760cf19ed8Sdrh ** 21770cf19ed8Sdrh ** The z[] string will probably not be zero-terminated. But the 21780cf19ed8Sdrh ** z[n] character is guaranteed to be something that does not look 21790cf19ed8Sdrh ** like the continuation of the number. 2180598f1340Sdrh */ 2181b7916a78Sdrh static void codeReal(Vdbe *v, const char *z, int negateFlag, int iMem){ 2182fd773cf9Sdrh if( ALWAYS(z!=0) ){ 2183598f1340Sdrh double value; 2184598f1340Sdrh char *zV; 21859339da1fSdrh sqlite3AtoF(z, &value, sqlite3Strlen30(z), SQLITE_UTF8); 2186d0015161Sdrh assert( !sqlite3IsNaN(value) ); /* The new AtoF never returns NaN */ 2187598f1340Sdrh if( negateFlag ) value = -value; 2188598f1340Sdrh zV = dup8bytes(v, (char*)&value); 21899de221dfSdrh sqlite3VdbeAddOp4(v, OP_Real, 0, iMem, 0, zV, P4_REAL); 2190598f1340Sdrh } 2191598f1340Sdrh } 219213573c71Sdrh #endif 2193598f1340Sdrh 2194598f1340Sdrh 2195598f1340Sdrh /* 2196fec19aadSdrh ** Generate an instruction that will put the integer describe by 21979cbf3425Sdrh ** text z[0..n-1] into register iMem. 21980cf19ed8Sdrh ** 21995f1d6b61Sshaneh ** Expr.u.zToken is always UTF8 and zero-terminated. 2200fec19aadSdrh */ 220113573c71Sdrh static void codeInteger(Parse *pParse, Expr *pExpr, int negFlag, int iMem){ 220213573c71Sdrh Vdbe *v = pParse->pVdbe; 220392b01d53Sdrh if( pExpr->flags & EP_IntValue ){ 220433e619fcSdrh int i = pExpr->u.iValue; 2205d50ffc41Sdrh assert( i>=0 ); 220692b01d53Sdrh if( negFlag ) i = -i; 220792b01d53Sdrh sqlite3VdbeAddOp2(v, OP_Integer, i, iMem); 2208fd773cf9Sdrh }else{ 22095f1d6b61Sshaneh int c; 22105f1d6b61Sshaneh i64 value; 2211fd773cf9Sdrh const char *z = pExpr->u.zToken; 2212fd773cf9Sdrh assert( z!=0 ); 22139296c18aSdrh c = sqlite3DecOrHexToI64(z, &value); 22145f1d6b61Sshaneh if( c==0 || (c==2 && negFlag) ){ 2215598f1340Sdrh char *zV; 2216158b9cb9Sdrh if( negFlag ){ value = c==2 ? SMALLEST_INT64 : -value; } 2217598f1340Sdrh zV = dup8bytes(v, (char*)&value); 22189de221dfSdrh sqlite3VdbeAddOp4(v, OP_Int64, 0, iMem, 0, zV, P4_INT64); 2219fec19aadSdrh }else{ 222013573c71Sdrh #ifdef SQLITE_OMIT_FLOATING_POINT 222113573c71Sdrh sqlite3ErrorMsg(pParse, "oversized integer: %s%s", negFlag ? "-" : "", z); 222213573c71Sdrh #else 22231b7ddc59Sdrh #ifndef SQLITE_OMIT_HEX_INTEGER 22249296c18aSdrh if( sqlite3_strnicmp(z,"0x",2)==0 ){ 22259296c18aSdrh sqlite3ErrorMsg(pParse, "hex literal too big: %s", z); 22261b7ddc59Sdrh }else 22271b7ddc59Sdrh #endif 22281b7ddc59Sdrh { 2229b7916a78Sdrh codeReal(v, z, negFlag, iMem); 22309296c18aSdrh } 223113573c71Sdrh #endif 2232fec19aadSdrh } 2233fec19aadSdrh } 2234c9cf901dSdanielk1977 } 2235fec19aadSdrh 2236ceea3321Sdrh /* 2237ceea3321Sdrh ** Clear a cache entry. 2238ceea3321Sdrh */ 2239ceea3321Sdrh static void cacheEntryClear(Parse *pParse, struct yColCache *p){ 2240ceea3321Sdrh if( p->tempReg ){ 2241ceea3321Sdrh if( pParse->nTempReg<ArraySize(pParse->aTempReg) ){ 2242ceea3321Sdrh pParse->aTempReg[pParse->nTempReg++] = p->iReg; 2243ceea3321Sdrh } 2244ceea3321Sdrh p->tempReg = 0; 2245ceea3321Sdrh } 2246ceea3321Sdrh } 2247ceea3321Sdrh 2248ceea3321Sdrh 2249ceea3321Sdrh /* 2250ceea3321Sdrh ** Record in the column cache that a particular column from a 2251ceea3321Sdrh ** particular table is stored in a particular register. 2252ceea3321Sdrh */ 2253ceea3321Sdrh void sqlite3ExprCacheStore(Parse *pParse, int iTab, int iCol, int iReg){ 2254ceea3321Sdrh int i; 2255ceea3321Sdrh int minLru; 2256ceea3321Sdrh int idxLru; 2257ceea3321Sdrh struct yColCache *p; 2258ceea3321Sdrh 225920411ea7Sdrh assert( iReg>0 ); /* Register numbers are always positive */ 226020411ea7Sdrh assert( iCol>=-1 && iCol<32768 ); /* Finite column numbers */ 226120411ea7Sdrh 2262b6da74ebSdrh /* The SQLITE_ColumnCache flag disables the column cache. This is used 2263b6da74ebSdrh ** for testing only - to verify that SQLite always gets the same answer 2264b6da74ebSdrh ** with and without the column cache. 2265b6da74ebSdrh */ 22667e5418e4Sdrh if( OptimizationDisabled(pParse->db, SQLITE_ColumnCache) ) return; 2267b6da74ebSdrh 226827ee406eSdrh /* First replace any existing entry. 226927ee406eSdrh ** 227027ee406eSdrh ** Actually, the way the column cache is currently used, we are guaranteed 227127ee406eSdrh ** that the object will never already be in cache. Verify this guarantee. 227227ee406eSdrh */ 227327ee406eSdrh #ifndef NDEBUG 2274ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 227527ee406eSdrh assert( p->iReg==0 || p->iTable!=iTab || p->iColumn!=iCol ); 2276ceea3321Sdrh } 227727ee406eSdrh #endif 2278ceea3321Sdrh 2279ceea3321Sdrh /* Find an empty slot and replace it */ 2280ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 2281ceea3321Sdrh if( p->iReg==0 ){ 2282ceea3321Sdrh p->iLevel = pParse->iCacheLevel; 2283ceea3321Sdrh p->iTable = iTab; 2284ceea3321Sdrh p->iColumn = iCol; 2285ceea3321Sdrh p->iReg = iReg; 2286ceea3321Sdrh p->tempReg = 0; 2287ceea3321Sdrh p->lru = pParse->iCacheCnt++; 2288ceea3321Sdrh return; 2289ceea3321Sdrh } 2290ceea3321Sdrh } 2291ceea3321Sdrh 2292ceea3321Sdrh /* Replace the last recently used */ 2293ceea3321Sdrh minLru = 0x7fffffff; 2294ceea3321Sdrh idxLru = -1; 2295ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 2296ceea3321Sdrh if( p->lru<minLru ){ 2297ceea3321Sdrh idxLru = i; 2298ceea3321Sdrh minLru = p->lru; 2299ceea3321Sdrh } 2300ceea3321Sdrh } 230120411ea7Sdrh if( ALWAYS(idxLru>=0) ){ 2302ceea3321Sdrh p = &pParse->aColCache[idxLru]; 2303ceea3321Sdrh p->iLevel = pParse->iCacheLevel; 2304ceea3321Sdrh p->iTable = iTab; 2305ceea3321Sdrh p->iColumn = iCol; 2306ceea3321Sdrh p->iReg = iReg; 2307ceea3321Sdrh p->tempReg = 0; 2308ceea3321Sdrh p->lru = pParse->iCacheCnt++; 2309ceea3321Sdrh return; 2310ceea3321Sdrh } 2311ceea3321Sdrh } 2312ceea3321Sdrh 2313ceea3321Sdrh /* 2314f49f3523Sdrh ** Indicate that registers between iReg..iReg+nReg-1 are being overwritten. 2315f49f3523Sdrh ** Purge the range of registers from the column cache. 2316ceea3321Sdrh */ 2317f49f3523Sdrh void sqlite3ExprCacheRemove(Parse *pParse, int iReg, int nReg){ 2318ceea3321Sdrh int i; 2319f49f3523Sdrh int iLast = iReg + nReg - 1; 2320ceea3321Sdrh struct yColCache *p; 2321ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 2322f49f3523Sdrh int r = p->iReg; 2323f49f3523Sdrh if( r>=iReg && r<=iLast ){ 2324ceea3321Sdrh cacheEntryClear(pParse, p); 2325ceea3321Sdrh p->iReg = 0; 2326ceea3321Sdrh } 2327ceea3321Sdrh } 2328ceea3321Sdrh } 2329ceea3321Sdrh 2330ceea3321Sdrh /* 2331ceea3321Sdrh ** Remember the current column cache context. Any new entries added 2332ceea3321Sdrh ** added to the column cache after this call are removed when the 2333ceea3321Sdrh ** corresponding pop occurs. 2334ceea3321Sdrh */ 2335ceea3321Sdrh void sqlite3ExprCachePush(Parse *pParse){ 2336ceea3321Sdrh pParse->iCacheLevel++; 23379ac7962aSdrh #ifdef SQLITE_DEBUG 23389ac7962aSdrh if( pParse->db->flags & SQLITE_VdbeAddopTrace ){ 23399ac7962aSdrh printf("PUSH to %d\n", pParse->iCacheLevel); 23409ac7962aSdrh } 23419ac7962aSdrh #endif 2342ceea3321Sdrh } 2343ceea3321Sdrh 2344ceea3321Sdrh /* 2345ceea3321Sdrh ** Remove from the column cache any entries that were added since the 2346d2490904Sdrh ** the previous sqlite3ExprCachePush operation. In other words, restore 2347d2490904Sdrh ** the cache to the state it was in prior the most recent Push. 2348ceea3321Sdrh */ 2349d2490904Sdrh void sqlite3ExprCachePop(Parse *pParse){ 2350ceea3321Sdrh int i; 2351ceea3321Sdrh struct yColCache *p; 2352d2490904Sdrh assert( pParse->iCacheLevel>=1 ); 2353d2490904Sdrh pParse->iCacheLevel--; 23549ac7962aSdrh #ifdef SQLITE_DEBUG 23559ac7962aSdrh if( pParse->db->flags & SQLITE_VdbeAddopTrace ){ 23569ac7962aSdrh printf("POP to %d\n", pParse->iCacheLevel); 23579ac7962aSdrh } 23589ac7962aSdrh #endif 2359ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 2360ceea3321Sdrh if( p->iReg && p->iLevel>pParse->iCacheLevel ){ 2361ceea3321Sdrh cacheEntryClear(pParse, p); 2362ceea3321Sdrh p->iReg = 0; 2363ceea3321Sdrh } 2364ceea3321Sdrh } 2365ceea3321Sdrh } 2366945498f3Sdrh 2367945498f3Sdrh /* 23685cd79239Sdrh ** When a cached column is reused, make sure that its register is 23695cd79239Sdrh ** no longer available as a temp register. ticket #3879: that same 23705cd79239Sdrh ** register might be in the cache in multiple places, so be sure to 23715cd79239Sdrh ** get them all. 23725cd79239Sdrh */ 23735cd79239Sdrh static void sqlite3ExprCachePinRegister(Parse *pParse, int iReg){ 23745cd79239Sdrh int i; 23755cd79239Sdrh struct yColCache *p; 23765cd79239Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 23775cd79239Sdrh if( p->iReg==iReg ){ 23785cd79239Sdrh p->tempReg = 0; 23795cd79239Sdrh } 23805cd79239Sdrh } 23815cd79239Sdrh } 23825cd79239Sdrh 23835cd79239Sdrh /* 23845c092e8aSdrh ** Generate code to extract the value of the iCol-th column of a table. 23855c092e8aSdrh */ 23865c092e8aSdrh void sqlite3ExprCodeGetColumnOfTable( 23875c092e8aSdrh Vdbe *v, /* The VDBE under construction */ 23885c092e8aSdrh Table *pTab, /* The table containing the value */ 2389313619f5Sdrh int iTabCur, /* The table cursor. Or the PK cursor for WITHOUT ROWID */ 23905c092e8aSdrh int iCol, /* Index of the column to extract */ 2391313619f5Sdrh int regOut /* Extract the value into this register */ 23925c092e8aSdrh ){ 23935c092e8aSdrh if( iCol<0 || iCol==pTab->iPKey ){ 23945c092e8aSdrh sqlite3VdbeAddOp2(v, OP_Rowid, iTabCur, regOut); 23955c092e8aSdrh }else{ 23965c092e8aSdrh int op = IsVirtual(pTab) ? OP_VColumn : OP_Column; 2397ee0ec8e1Sdrh int x = iCol; 2398ee0ec8e1Sdrh if( !HasRowid(pTab) ){ 2399ee0ec8e1Sdrh x = sqlite3ColumnOfIndex(sqlite3PrimaryKeyIndex(pTab), iCol); 2400ee0ec8e1Sdrh } 2401ee0ec8e1Sdrh sqlite3VdbeAddOp3(v, op, iTabCur, x, regOut); 24025c092e8aSdrh } 24035c092e8aSdrh if( iCol>=0 ){ 24045c092e8aSdrh sqlite3ColumnDefault(v, pTab, iCol, regOut); 24055c092e8aSdrh } 24065c092e8aSdrh } 24075c092e8aSdrh 24085c092e8aSdrh /* 2409945498f3Sdrh ** Generate code that will extract the iColumn-th column from 2410e55cbd72Sdrh ** table pTab and store the column value in a register. An effort 2411e55cbd72Sdrh ** is made to store the column value in register iReg, but this is 2412e55cbd72Sdrh ** not guaranteed. The location of the column value is returned. 2413e55cbd72Sdrh ** 2414e55cbd72Sdrh ** There must be an open cursor to pTab in iTable when this routine 2415e55cbd72Sdrh ** is called. If iColumn<0 then code is generated that extracts the rowid. 2416945498f3Sdrh */ 2417e55cbd72Sdrh int sqlite3ExprCodeGetColumn( 2418e55cbd72Sdrh Parse *pParse, /* Parsing and code generating context */ 24192133d822Sdrh Table *pTab, /* Description of the table we are reading from */ 24202133d822Sdrh int iColumn, /* Index of the table column */ 24212133d822Sdrh int iTable, /* The cursor pointing to the table */ 2422a748fdccSdrh int iReg, /* Store results here */ 2423a748fdccSdrh u8 p5 /* P5 value for OP_Column */ 24242133d822Sdrh ){ 2425e55cbd72Sdrh Vdbe *v = pParse->pVdbe; 2426e55cbd72Sdrh int i; 2427da250ea5Sdrh struct yColCache *p; 2428e55cbd72Sdrh 2429ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 2430b6da74ebSdrh if( p->iReg>0 && p->iTable==iTable && p->iColumn==iColumn ){ 2431ceea3321Sdrh p->lru = pParse->iCacheCnt++; 24325cd79239Sdrh sqlite3ExprCachePinRegister(pParse, p->iReg); 2433da250ea5Sdrh return p->iReg; 2434e55cbd72Sdrh } 2435e55cbd72Sdrh } 2436e55cbd72Sdrh assert( v!=0 ); 24375c092e8aSdrh sqlite3ExprCodeGetColumnOfTable(v, pTab, iTable, iColumn, iReg); 2438a748fdccSdrh if( p5 ){ 2439a748fdccSdrh sqlite3VdbeChangeP5(v, p5); 2440a748fdccSdrh }else{ 2441ceea3321Sdrh sqlite3ExprCacheStore(pParse, iTable, iColumn, iReg); 2442a748fdccSdrh } 2443e55cbd72Sdrh return iReg; 2444e55cbd72Sdrh } 2445e55cbd72Sdrh 2446e55cbd72Sdrh /* 2447ceea3321Sdrh ** Clear all column cache entries. 2448e55cbd72Sdrh */ 2449ceea3321Sdrh void sqlite3ExprCacheClear(Parse *pParse){ 2450e55cbd72Sdrh int i; 2451ceea3321Sdrh struct yColCache *p; 2452ceea3321Sdrh 24539ac7962aSdrh #if SQLITE_DEBUG 24549ac7962aSdrh if( pParse->db->flags & SQLITE_VdbeAddopTrace ){ 24559ac7962aSdrh printf("CLEAR\n"); 24569ac7962aSdrh } 24579ac7962aSdrh #endif 2458ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 2459ceea3321Sdrh if( p->iReg ){ 2460ceea3321Sdrh cacheEntryClear(pParse, p); 2461ceea3321Sdrh p->iReg = 0; 2462e55cbd72Sdrh } 2463da250ea5Sdrh } 2464da250ea5Sdrh } 2465e55cbd72Sdrh 2466e55cbd72Sdrh /* 2467da250ea5Sdrh ** Record the fact that an affinity change has occurred on iCount 2468da250ea5Sdrh ** registers starting with iStart. 2469e55cbd72Sdrh */ 2470da250ea5Sdrh void sqlite3ExprCacheAffinityChange(Parse *pParse, int iStart, int iCount){ 2471f49f3523Sdrh sqlite3ExprCacheRemove(pParse, iStart, iCount); 2472e55cbd72Sdrh } 2473e55cbd72Sdrh 2474e55cbd72Sdrh /* 2475b21e7c70Sdrh ** Generate code to move content from registers iFrom...iFrom+nReg-1 2476b21e7c70Sdrh ** over to iTo..iTo+nReg-1. Keep the column cache up-to-date. 2477e55cbd72Sdrh */ 2478b21e7c70Sdrh void sqlite3ExprCodeMove(Parse *pParse, int iFrom, int iTo, int nReg){ 2479e8e4af76Sdrh assert( iFrom>=iTo+nReg || iFrom+nReg<=iTo ); 2480079a3072Sdrh sqlite3VdbeAddOp3(pParse->pVdbe, OP_Move, iFrom, iTo, nReg); 2481236241aeSdrh sqlite3ExprCacheRemove(pParse, iFrom, nReg); 2482945498f3Sdrh } 2483945498f3Sdrh 2484f49f3523Sdrh #if defined(SQLITE_DEBUG) || defined(SQLITE_COVERAGE_TEST) 248592b01d53Sdrh /* 2486652fbf55Sdrh ** Return true if any register in the range iFrom..iTo (inclusive) 2487652fbf55Sdrh ** is used as part of the column cache. 2488f49f3523Sdrh ** 2489f49f3523Sdrh ** This routine is used within assert() and testcase() macros only 2490f49f3523Sdrh ** and does not appear in a normal build. 2491652fbf55Sdrh */ 2492652fbf55Sdrh static int usedAsColumnCache(Parse *pParse, int iFrom, int iTo){ 2493652fbf55Sdrh int i; 2494ceea3321Sdrh struct yColCache *p; 2495ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 2496ceea3321Sdrh int r = p->iReg; 2497f49f3523Sdrh if( r>=iFrom && r<=iTo ) return 1; /*NO_TEST*/ 2498652fbf55Sdrh } 2499652fbf55Sdrh return 0; 2500652fbf55Sdrh } 2501f49f3523Sdrh #endif /* SQLITE_DEBUG || SQLITE_COVERAGE_TEST */ 2502652fbf55Sdrh 2503652fbf55Sdrh /* 2504a4c3c87eSdrh ** Convert an expression node to a TK_REGISTER 2505a4c3c87eSdrh */ 2506a4c3c87eSdrh static void exprToRegister(Expr *p, int iReg){ 2507a4c3c87eSdrh p->op2 = p->op; 2508a4c3c87eSdrh p->op = TK_REGISTER; 2509a4c3c87eSdrh p->iTable = iReg; 2510a4c3c87eSdrh ExprClearProperty(p, EP_Skip); 2511a4c3c87eSdrh } 2512a4c3c87eSdrh 2513a4c3c87eSdrh /* 2514cce7d176Sdrh ** Generate code into the current Vdbe to evaluate the given 25152dcef11bSdrh ** expression. Attempt to store the results in register "target". 25162dcef11bSdrh ** Return the register where results are stored. 2517389a1adbSdrh ** 25188b213899Sdrh ** With this routine, there is no guarantee that results will 25192dcef11bSdrh ** be stored in target. The result might be stored in some other 25202dcef11bSdrh ** register if it is convenient to do so. The calling function 25212dcef11bSdrh ** must check the return code and move the results to the desired 25222dcef11bSdrh ** register. 2523cce7d176Sdrh */ 2524678ccce8Sdrh int sqlite3ExprCodeTarget(Parse *pParse, Expr *pExpr, int target){ 25252dcef11bSdrh Vdbe *v = pParse->pVdbe; /* The VM under construction */ 25262dcef11bSdrh int op; /* The opcode being coded */ 25272dcef11bSdrh int inReg = target; /* Results stored in register inReg */ 25282dcef11bSdrh int regFree1 = 0; /* If non-zero free this temporary register */ 25292dcef11bSdrh int regFree2 = 0; /* If non-zero free this temporary register */ 2530678ccce8Sdrh int r1, r2, r3, r4; /* Various register numbers */ 253120411ea7Sdrh sqlite3 *db = pParse->db; /* The database connection */ 253210d1edf0Sdrh Expr tempX; /* Temporary expression node */ 2533ffe07b2dSdrh 25349cbf3425Sdrh assert( target>0 && target<=pParse->nMem ); 253520411ea7Sdrh if( v==0 ){ 253620411ea7Sdrh assert( pParse->db->mallocFailed ); 253720411ea7Sdrh return 0; 253820411ea7Sdrh } 2539389a1adbSdrh 2540389a1adbSdrh if( pExpr==0 ){ 2541389a1adbSdrh op = TK_NULL; 2542389a1adbSdrh }else{ 2543f2bc013cSdrh op = pExpr->op; 2544389a1adbSdrh } 2545f2bc013cSdrh switch( op ){ 254613449892Sdrh case TK_AGG_COLUMN: { 254713449892Sdrh AggInfo *pAggInfo = pExpr->pAggInfo; 254813449892Sdrh struct AggInfo_col *pCol = &pAggInfo->aCol[pExpr->iAgg]; 254913449892Sdrh if( !pAggInfo->directMode ){ 25509de221dfSdrh assert( pCol->iMem>0 ); 25519de221dfSdrh inReg = pCol->iMem; 255213449892Sdrh break; 255313449892Sdrh }else if( pAggInfo->useSortingIdx ){ 25545134d135Sdan sqlite3VdbeAddOp3(v, OP_Column, pAggInfo->sortingIdxPTab, 2555389a1adbSdrh pCol->iSorterColumn, target); 255613449892Sdrh break; 255713449892Sdrh } 255813449892Sdrh /* Otherwise, fall thru into the TK_COLUMN case */ 255913449892Sdrh } 2560967e8b73Sdrh case TK_COLUMN: { 2561b2b9d3d7Sdrh int iTab = pExpr->iTable; 2562b2b9d3d7Sdrh if( iTab<0 ){ 2563b2b9d3d7Sdrh if( pParse->ckBase>0 ){ 2564b2b9d3d7Sdrh /* Generating CHECK constraints or inserting into partial index */ 2565aa9b8963Sdrh inReg = pExpr->iColumn + pParse->ckBase; 2566b2b9d3d7Sdrh break; 2567c4a3c779Sdrh }else{ 2568b2b9d3d7Sdrh /* Deleting from a partial index */ 2569b2b9d3d7Sdrh iTab = pParse->iPartIdxTab; 25702282792aSdrh } 2571b2b9d3d7Sdrh } 2572b2b9d3d7Sdrh inReg = sqlite3ExprCodeGetColumn(pParse, pExpr->pTab, 2573b2b9d3d7Sdrh pExpr->iColumn, iTab, target, 2574b2b9d3d7Sdrh pExpr->op2); 2575cce7d176Sdrh break; 2576cce7d176Sdrh } 2577cce7d176Sdrh case TK_INTEGER: { 257813573c71Sdrh codeInteger(pParse, pExpr, 0, target); 2579fec19aadSdrh break; 258051e9a445Sdrh } 258113573c71Sdrh #ifndef SQLITE_OMIT_FLOATING_POINT 2582598f1340Sdrh case TK_FLOAT: { 258333e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 258433e619fcSdrh codeReal(v, pExpr->u.zToken, 0, target); 2585598f1340Sdrh break; 2586598f1340Sdrh } 258713573c71Sdrh #endif 2588fec19aadSdrh case TK_STRING: { 258933e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 259033e619fcSdrh sqlite3VdbeAddOp4(v, OP_String8, 0, target, 0, pExpr->u.zToken, 0); 2591cce7d176Sdrh break; 2592cce7d176Sdrh } 2593f0863fe5Sdrh case TK_NULL: { 25949de221dfSdrh sqlite3VdbeAddOp2(v, OP_Null, 0, target); 2595f0863fe5Sdrh break; 2596f0863fe5Sdrh } 25975338a5f7Sdanielk1977 #ifndef SQLITE_OMIT_BLOB_LITERAL 2598c572ef7fSdanielk1977 case TK_BLOB: { 25996c8c6cecSdrh int n; 26006c8c6cecSdrh const char *z; 2601ca48c90fSdrh char *zBlob; 260233e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 260333e619fcSdrh assert( pExpr->u.zToken[0]=='x' || pExpr->u.zToken[0]=='X' ); 260433e619fcSdrh assert( pExpr->u.zToken[1]=='\'' ); 260533e619fcSdrh z = &pExpr->u.zToken[2]; 2606b7916a78Sdrh n = sqlite3Strlen30(z) - 1; 2607b7916a78Sdrh assert( z[n]=='\'' ); 2608ca48c90fSdrh zBlob = sqlite3HexToBlob(sqlite3VdbeDb(v), z, n); 2609ca48c90fSdrh sqlite3VdbeAddOp4(v, OP_Blob, n/2, target, 0, zBlob, P4_DYNAMIC); 2610c572ef7fSdanielk1977 break; 2611c572ef7fSdanielk1977 } 26125338a5f7Sdanielk1977 #endif 261350457896Sdrh case TK_VARIABLE: { 261433e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 261533e619fcSdrh assert( pExpr->u.zToken!=0 ); 261633e619fcSdrh assert( pExpr->u.zToken[0]!=0 ); 2617eaf52d88Sdrh sqlite3VdbeAddOp2(v, OP_Variable, pExpr->iColumn, target); 261833e619fcSdrh if( pExpr->u.zToken[1]!=0 ){ 261904e9eeadSdrh assert( pExpr->u.zToken[0]=='?' 262004e9eeadSdrh || strcmp(pExpr->u.zToken, pParse->azVar[pExpr->iColumn-1])==0 ); 262104e9eeadSdrh sqlite3VdbeChangeP4(v, -1, pParse->azVar[pExpr->iColumn-1], P4_STATIC); 2622895d7472Sdrh } 262350457896Sdrh break; 262450457896Sdrh } 26254e0cff60Sdrh case TK_REGISTER: { 26269de221dfSdrh inReg = pExpr->iTable; 26274e0cff60Sdrh break; 26284e0cff60Sdrh } 26298b213899Sdrh case TK_AS: { 26307445ffe2Sdrh inReg = sqlite3ExprCodeTarget(pParse, pExpr->pLeft, target); 26318b213899Sdrh break; 26328b213899Sdrh } 2633487e262fSdrh #ifndef SQLITE_OMIT_CAST 2634487e262fSdrh case TK_CAST: { 2635487e262fSdrh /* Expressions of the form: CAST(pLeft AS token) */ 26362dcef11bSdrh inReg = sqlite3ExprCodeTarget(pParse, pExpr->pLeft, target); 26371735fa88Sdrh if( inReg!=target ){ 26381735fa88Sdrh sqlite3VdbeAddOp2(v, OP_SCopy, inReg, target); 26391735fa88Sdrh inReg = target; 26401735fa88Sdrh } 26414169e430Sdrh sqlite3VdbeAddOp2(v, OP_Cast, target, 26424169e430Sdrh sqlite3AffinityType(pExpr->u.zToken, 0)); 2643c5499befSdrh testcase( usedAsColumnCache(pParse, inReg, inReg) ); 2644b3843a82Sdrh sqlite3ExprCacheAffinityChange(pParse, inReg, 1); 2645487e262fSdrh break; 2646487e262fSdrh } 2647487e262fSdrh #endif /* SQLITE_OMIT_CAST */ 2648c9b84a1fSdrh case TK_LT: 2649c9b84a1fSdrh case TK_LE: 2650c9b84a1fSdrh case TK_GT: 2651c9b84a1fSdrh case TK_GE: 2652c9b84a1fSdrh case TK_NE: 2653c9b84a1fSdrh case TK_EQ: { 2654b6da74ebSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 2655b6da74ebSdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); 265635573356Sdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, 26577d176105Sdrh r1, r2, inReg, SQLITE_STOREP2); 26587d176105Sdrh assert(TK_LT==OP_Lt); testcase(op==OP_Lt); VdbeCoverageIf(v,op==OP_Lt); 26597d176105Sdrh assert(TK_LE==OP_Le); testcase(op==OP_Le); VdbeCoverageIf(v,op==OP_Le); 26607d176105Sdrh assert(TK_GT==OP_Gt); testcase(op==OP_Gt); VdbeCoverageIf(v,op==OP_Gt); 26617d176105Sdrh assert(TK_GE==OP_Ge); testcase(op==OP_Ge); VdbeCoverageIf(v,op==OP_Ge); 26627d176105Sdrh assert(TK_EQ==OP_Eq); testcase(op==OP_Eq); VdbeCoverageIf(v,op==OP_Eq); 26637d176105Sdrh assert(TK_NE==OP_Ne); testcase(op==OP_Ne); VdbeCoverageIf(v,op==OP_Ne); 2664c5499befSdrh testcase( regFree1==0 ); 2665c5499befSdrh testcase( regFree2==0 ); 2666a37cdde0Sdanielk1977 break; 2667c9b84a1fSdrh } 26686a2fe093Sdrh case TK_IS: 26696a2fe093Sdrh case TK_ISNOT: { 26706a2fe093Sdrh testcase( op==TK_IS ); 26716a2fe093Sdrh testcase( op==TK_ISNOT ); 2672b6da74ebSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 2673b6da74ebSdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); 26746a2fe093Sdrh op = (op==TK_IS) ? TK_EQ : TK_NE; 26756a2fe093Sdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, 26766a2fe093Sdrh r1, r2, inReg, SQLITE_STOREP2 | SQLITE_NULLEQ); 26777d176105Sdrh VdbeCoverageIf(v, op==TK_EQ); 26787d176105Sdrh VdbeCoverageIf(v, op==TK_NE); 26796a2fe093Sdrh testcase( regFree1==0 ); 26806a2fe093Sdrh testcase( regFree2==0 ); 26816a2fe093Sdrh break; 26826a2fe093Sdrh } 2683cce7d176Sdrh case TK_AND: 2684cce7d176Sdrh case TK_OR: 2685cce7d176Sdrh case TK_PLUS: 2686cce7d176Sdrh case TK_STAR: 2687cce7d176Sdrh case TK_MINUS: 2688bf4133cbSdrh case TK_REM: 2689bf4133cbSdrh case TK_BITAND: 2690bf4133cbSdrh case TK_BITOR: 269117c40294Sdrh case TK_SLASH: 2692bf4133cbSdrh case TK_LSHIFT: 2693855eb1cfSdrh case TK_RSHIFT: 26940040077dSdrh case TK_CONCAT: { 26957d176105Sdrh assert( TK_AND==OP_And ); testcase( op==TK_AND ); 26967d176105Sdrh assert( TK_OR==OP_Or ); testcase( op==TK_OR ); 26977d176105Sdrh assert( TK_PLUS==OP_Add ); testcase( op==TK_PLUS ); 26987d176105Sdrh assert( TK_MINUS==OP_Subtract ); testcase( op==TK_MINUS ); 26997d176105Sdrh assert( TK_REM==OP_Remainder ); testcase( op==TK_REM ); 27007d176105Sdrh assert( TK_BITAND==OP_BitAnd ); testcase( op==TK_BITAND ); 27017d176105Sdrh assert( TK_BITOR==OP_BitOr ); testcase( op==TK_BITOR ); 27027d176105Sdrh assert( TK_SLASH==OP_Divide ); testcase( op==TK_SLASH ); 27037d176105Sdrh assert( TK_LSHIFT==OP_ShiftLeft ); testcase( op==TK_LSHIFT ); 27047d176105Sdrh assert( TK_RSHIFT==OP_ShiftRight ); testcase( op==TK_RSHIFT ); 27057d176105Sdrh assert( TK_CONCAT==OP_Concat ); testcase( op==TK_CONCAT ); 27062dcef11bSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 27072dcef11bSdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); 27085b6afba9Sdrh sqlite3VdbeAddOp3(v, op, r2, r1, target); 2709c5499befSdrh testcase( regFree1==0 ); 2710c5499befSdrh testcase( regFree2==0 ); 27110040077dSdrh break; 27120040077dSdrh } 2713cce7d176Sdrh case TK_UMINUS: { 2714fec19aadSdrh Expr *pLeft = pExpr->pLeft; 2715fec19aadSdrh assert( pLeft ); 271613573c71Sdrh if( pLeft->op==TK_INTEGER ){ 271713573c71Sdrh codeInteger(pParse, pLeft, 1, target); 271813573c71Sdrh #ifndef SQLITE_OMIT_FLOATING_POINT 271913573c71Sdrh }else if( pLeft->op==TK_FLOAT ){ 272033e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 272133e619fcSdrh codeReal(v, pLeft->u.zToken, 1, target); 272213573c71Sdrh #endif 27233c84ddffSdrh }else{ 272410d1edf0Sdrh tempX.op = TK_INTEGER; 272510d1edf0Sdrh tempX.flags = EP_IntValue|EP_TokenOnly; 272610d1edf0Sdrh tempX.u.iValue = 0; 272710d1edf0Sdrh r1 = sqlite3ExprCodeTemp(pParse, &tempX, ®Free1); 2728e55cbd72Sdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free2); 27292dcef11bSdrh sqlite3VdbeAddOp3(v, OP_Subtract, r2, r1, target); 2730c5499befSdrh testcase( regFree2==0 ); 27313c84ddffSdrh } 27329de221dfSdrh inReg = target; 27336e142f54Sdrh break; 27346e142f54Sdrh } 2735bf4133cbSdrh case TK_BITNOT: 27366e142f54Sdrh case TK_NOT: { 27377d176105Sdrh assert( TK_BITNOT==OP_BitNot ); testcase( op==TK_BITNOT ); 27387d176105Sdrh assert( TK_NOT==OP_Not ); testcase( op==TK_NOT ); 2739e99fa2afSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 2740e99fa2afSdrh testcase( regFree1==0 ); 2741e99fa2afSdrh inReg = target; 2742e99fa2afSdrh sqlite3VdbeAddOp2(v, op, r1, inReg); 2743cce7d176Sdrh break; 2744cce7d176Sdrh } 2745cce7d176Sdrh case TK_ISNULL: 2746cce7d176Sdrh case TK_NOTNULL: { 27476a288a33Sdrh int addr; 27487d176105Sdrh assert( TK_ISNULL==OP_IsNull ); testcase( op==TK_ISNULL ); 27497d176105Sdrh assert( TK_NOTNULL==OP_NotNull ); testcase( op==TK_NOTNULL ); 27509de221dfSdrh sqlite3VdbeAddOp2(v, OP_Integer, 1, target); 27512dcef11bSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 2752c5499befSdrh testcase( regFree1==0 ); 27537d176105Sdrh addr = sqlite3VdbeAddOp1(v, op, r1); 27547d176105Sdrh VdbeCoverageIf(v, op==TK_ISNULL); 27557d176105Sdrh VdbeCoverageIf(v, op==TK_NOTNULL); 2756a976979bSdrh sqlite3VdbeAddOp2(v, OP_Integer, 0, target); 27576a288a33Sdrh sqlite3VdbeJumpHere(v, addr); 2758a37cdde0Sdanielk1977 break; 2759f2bc013cSdrh } 27602282792aSdrh case TK_AGG_FUNCTION: { 276113449892Sdrh AggInfo *pInfo = pExpr->pAggInfo; 27627e56e711Sdrh if( pInfo==0 ){ 276333e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 276433e619fcSdrh sqlite3ErrorMsg(pParse, "misuse of aggregate: %s()", pExpr->u.zToken); 27657e56e711Sdrh }else{ 27669de221dfSdrh inReg = pInfo->aFunc[pExpr->iAgg].iMem; 27677e56e711Sdrh } 27682282792aSdrh break; 27692282792aSdrh } 2770cce7d176Sdrh case TK_FUNCTION: { 277112ffee8cSdrh ExprList *pFarg; /* List of function arguments */ 277212ffee8cSdrh int nFarg; /* Number of function arguments */ 277312ffee8cSdrh FuncDef *pDef; /* The function definition object */ 277412ffee8cSdrh int nId; /* Length of the function name in bytes */ 277512ffee8cSdrh const char *zId; /* The function name */ 2776693e6719Sdrh u32 constMask = 0; /* Mask of function arguments that are constant */ 277712ffee8cSdrh int i; /* Loop counter */ 277812ffee8cSdrh u8 enc = ENC(db); /* The text encoding used by this database */ 277912ffee8cSdrh CollSeq *pColl = 0; /* A collating sequence */ 278017435752Sdrh 27816ab3a2ecSdanielk1977 assert( !ExprHasProperty(pExpr, EP_xIsSelect) ); 2782c5cd1249Sdrh if( ExprHasProperty(pExpr, EP_TokenOnly) ){ 278312ffee8cSdrh pFarg = 0; 278412ffee8cSdrh }else{ 278512ffee8cSdrh pFarg = pExpr->x.pList; 278612ffee8cSdrh } 278712ffee8cSdrh nFarg = pFarg ? pFarg->nExpr : 0; 278833e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 278933e619fcSdrh zId = pExpr->u.zToken; 2790b7916a78Sdrh nId = sqlite3Strlen30(zId); 279112ffee8cSdrh pDef = sqlite3FindFunction(db, zId, nId, nFarg, enc, 0); 27920c4de2d9Sdrh if( pDef==0 || pDef->xFunc==0 ){ 2793feb306f5Sdrh sqlite3ErrorMsg(pParse, "unknown function: %.*s()", nId, zId); 2794feb306f5Sdrh break; 2795feb306f5Sdrh } 2796ae6bb957Sdrh 2797ae6bb957Sdrh /* Attempt a direct implementation of the built-in COALESCE() and 279860ec914cSpeter.d.reid ** IFNULL() functions. This avoids unnecessary evaluation of 2799ae6bb957Sdrh ** arguments past the first non-NULL argument. 2800ae6bb957Sdrh */ 2801d36e1041Sdrh if( pDef->funcFlags & SQLITE_FUNC_COALESCE ){ 2802ae6bb957Sdrh int endCoalesce = sqlite3VdbeMakeLabel(v); 2803ae6bb957Sdrh assert( nFarg>=2 ); 2804ae6bb957Sdrh sqlite3ExprCode(pParse, pFarg->a[0].pExpr, target); 2805ae6bb957Sdrh for(i=1; i<nFarg; i++){ 2806ae6bb957Sdrh sqlite3VdbeAddOp2(v, OP_NotNull, target, endCoalesce); 2807688852abSdrh VdbeCoverage(v); 2808f49f3523Sdrh sqlite3ExprCacheRemove(pParse, target, 1); 2809ae6bb957Sdrh sqlite3ExprCachePush(pParse); 2810ae6bb957Sdrh sqlite3ExprCode(pParse, pFarg->a[i].pExpr, target); 2811d2490904Sdrh sqlite3ExprCachePop(pParse); 2812ae6bb957Sdrh } 2813ae6bb957Sdrh sqlite3VdbeResolveLabel(v, endCoalesce); 2814ae6bb957Sdrh break; 2815ae6bb957Sdrh } 2816ae6bb957Sdrh 2817cca9f3d2Sdrh /* The UNLIKELY() function is a no-op. The result is the value 2818cca9f3d2Sdrh ** of the first argument. 2819cca9f3d2Sdrh */ 2820cca9f3d2Sdrh if( pDef->funcFlags & SQLITE_FUNC_UNLIKELY ){ 2821cca9f3d2Sdrh assert( nFarg>=1 ); 2822cca9f3d2Sdrh sqlite3ExprCode(pParse, pFarg->a[0].pExpr, target); 2823cca9f3d2Sdrh break; 2824cca9f3d2Sdrh } 2825ae6bb957Sdrh 2826d1a01edaSdrh for(i=0; i<nFarg; i++){ 2827d1a01edaSdrh if( i<32 && sqlite3ExprIsConstant(pFarg->a[i].pExpr) ){ 2828693e6719Sdrh testcase( i==31 ); 2829693e6719Sdrh constMask |= MASKBIT32(i); 2830d1a01edaSdrh } 2831d1a01edaSdrh if( (pDef->funcFlags & SQLITE_FUNC_NEEDCOLL)!=0 && !pColl ){ 2832d1a01edaSdrh pColl = sqlite3ExprCollSeq(pParse, pFarg->a[i].pExpr); 2833d1a01edaSdrh } 2834d1a01edaSdrh } 283512ffee8cSdrh if( pFarg ){ 2836d1a01edaSdrh if( constMask ){ 2837d1a01edaSdrh r1 = pParse->nMem+1; 2838d1a01edaSdrh pParse->nMem += nFarg; 2839d1a01edaSdrh }else{ 284012ffee8cSdrh r1 = sqlite3GetTempRange(pParse, nFarg); 2841d1a01edaSdrh } 2842a748fdccSdrh 2843a748fdccSdrh /* For length() and typeof() functions with a column argument, 2844a748fdccSdrh ** set the P5 parameter to the OP_Column opcode to OPFLAG_LENGTHARG 2845a748fdccSdrh ** or OPFLAG_TYPEOFARG respectively, to avoid unnecessary data 2846a748fdccSdrh ** loading. 2847a748fdccSdrh */ 2848d36e1041Sdrh if( (pDef->funcFlags & (SQLITE_FUNC_LENGTH|SQLITE_FUNC_TYPEOF))!=0 ){ 28494e245a4cSdrh u8 exprOp; 2850a748fdccSdrh assert( nFarg==1 ); 2851a748fdccSdrh assert( pFarg->a[0].pExpr!=0 ); 28524e245a4cSdrh exprOp = pFarg->a[0].pExpr->op; 28534e245a4cSdrh if( exprOp==TK_COLUMN || exprOp==TK_AGG_COLUMN ){ 2854a748fdccSdrh assert( SQLITE_FUNC_LENGTH==OPFLAG_LENGTHARG ); 2855a748fdccSdrh assert( SQLITE_FUNC_TYPEOF==OPFLAG_TYPEOFARG ); 2856b1fba286Sdrh testcase( pDef->funcFlags & OPFLAG_LENGTHARG ); 2857b1fba286Sdrh pFarg->a[0].pExpr->op2 = 2858b1fba286Sdrh pDef->funcFlags & (OPFLAG_LENGTHARG|OPFLAG_TYPEOFARG); 2859a748fdccSdrh } 2860a748fdccSdrh } 2861a748fdccSdrh 2862d7d385ddSdrh sqlite3ExprCachePush(pParse); /* Ticket 2ea2425d34be */ 2863d1a01edaSdrh sqlite3ExprCodeExprList(pParse, pFarg, r1, 2864d1a01edaSdrh SQLITE_ECEL_DUP|SQLITE_ECEL_FACTOR); 2865d2490904Sdrh sqlite3ExprCachePop(pParse); /* Ticket 2ea2425d34be */ 2866892d3179Sdrh }else{ 286712ffee8cSdrh r1 = 0; 2868892d3179Sdrh } 2869b7f6f68fSdrh #ifndef SQLITE_OMIT_VIRTUALTABLE 2870a43fa227Sdrh /* Possibly overload the function if the first argument is 2871a43fa227Sdrh ** a virtual table column. 2872a43fa227Sdrh ** 2873a43fa227Sdrh ** For infix functions (LIKE, GLOB, REGEXP, and MATCH) use the 2874a43fa227Sdrh ** second argument, not the first, as the argument to test to 2875a43fa227Sdrh ** see if it is a column in a virtual table. This is done because 2876a43fa227Sdrh ** the left operand of infix functions (the operand we want to 2877a43fa227Sdrh ** control overloading) ends up as the second argument to the 2878a43fa227Sdrh ** function. The expression "A glob B" is equivalent to 2879a43fa227Sdrh ** "glob(B,A). We want to use the A in "A glob B" to test 2880a43fa227Sdrh ** for function overloading. But we use the B term in "glob(B,A)". 2881a43fa227Sdrh */ 288212ffee8cSdrh if( nFarg>=2 && (pExpr->flags & EP_InfixFunc) ){ 288312ffee8cSdrh pDef = sqlite3VtabOverloadFunction(db, pDef, nFarg, pFarg->a[1].pExpr); 288412ffee8cSdrh }else if( nFarg>0 ){ 288512ffee8cSdrh pDef = sqlite3VtabOverloadFunction(db, pDef, nFarg, pFarg->a[0].pExpr); 2886b7f6f68fSdrh } 2887b7f6f68fSdrh #endif 2888d36e1041Sdrh if( pDef->funcFlags & SQLITE_FUNC_NEEDCOLL ){ 28898b213899Sdrh if( !pColl ) pColl = db->pDfltColl; 289066a5167bSdrh sqlite3VdbeAddOp4(v, OP_CollSeq, 0, 0, 0, (char *)pColl, P4_COLLSEQ); 2891682f68b0Sdanielk1977 } 28922dcef11bSdrh sqlite3VdbeAddOp4(v, OP_Function, constMask, r1, target, 289366a5167bSdrh (char*)pDef, P4_FUNCDEF); 289412ffee8cSdrh sqlite3VdbeChangeP5(v, (u8)nFarg); 2895d1a01edaSdrh if( nFarg && constMask==0 ){ 289612ffee8cSdrh sqlite3ReleaseTempRange(pParse, r1, nFarg); 28972dcef11bSdrh } 28986ec2733bSdrh break; 28996ec2733bSdrh } 2900fe2093d7Sdrh #ifndef SQLITE_OMIT_SUBQUERY 2901fe2093d7Sdrh case TK_EXISTS: 290219a775c2Sdrh case TK_SELECT: { 2903c5499befSdrh testcase( op==TK_EXISTS ); 2904c5499befSdrh testcase( op==TK_SELECT ); 29051450bc6eSdrh inReg = sqlite3CodeSubselect(pParse, pExpr, 0, 0); 290619a775c2Sdrh break; 290719a775c2Sdrh } 2908fef5208cSdrh case TK_IN: { 2909e3365e6cSdrh int destIfFalse = sqlite3VdbeMakeLabel(v); 2910e3365e6cSdrh int destIfNull = sqlite3VdbeMakeLabel(v); 2911e3365e6cSdrh sqlite3VdbeAddOp2(v, OP_Null, 0, target); 2912e3365e6cSdrh sqlite3ExprCodeIN(pParse, pExpr, destIfFalse, destIfNull); 291366ba23ceSdrh sqlite3VdbeAddOp2(v, OP_Integer, 1, target); 2914e3365e6cSdrh sqlite3VdbeResolveLabel(v, destIfFalse); 2915e3365e6cSdrh sqlite3VdbeAddOp2(v, OP_AddImm, target, 0); 2916e3365e6cSdrh sqlite3VdbeResolveLabel(v, destIfNull); 2917fef5208cSdrh break; 2918fef5208cSdrh } 2919e3365e6cSdrh #endif /* SQLITE_OMIT_SUBQUERY */ 2920e3365e6cSdrh 2921e3365e6cSdrh 29222dcef11bSdrh /* 29232dcef11bSdrh ** x BETWEEN y AND z 29242dcef11bSdrh ** 29252dcef11bSdrh ** This is equivalent to 29262dcef11bSdrh ** 29272dcef11bSdrh ** x>=y AND x<=z 29282dcef11bSdrh ** 29292dcef11bSdrh ** X is stored in pExpr->pLeft. 29302dcef11bSdrh ** Y is stored in pExpr->pList->a[0].pExpr. 29312dcef11bSdrh ** Z is stored in pExpr->pList->a[1].pExpr. 29322dcef11bSdrh */ 2933fef5208cSdrh case TK_BETWEEN: { 2934be5c89acSdrh Expr *pLeft = pExpr->pLeft; 29356ab3a2ecSdanielk1977 struct ExprList_item *pLItem = pExpr->x.pList->a; 2936be5c89acSdrh Expr *pRight = pLItem->pExpr; 293735573356Sdrh 2938b6da74ebSdrh r1 = sqlite3ExprCodeTemp(pParse, pLeft, ®Free1); 2939b6da74ebSdrh r2 = sqlite3ExprCodeTemp(pParse, pRight, ®Free2); 2940c5499befSdrh testcase( regFree1==0 ); 2941c5499befSdrh testcase( regFree2==0 ); 29422dcef11bSdrh r3 = sqlite3GetTempReg(pParse); 2943678ccce8Sdrh r4 = sqlite3GetTempReg(pParse); 294435573356Sdrh codeCompare(pParse, pLeft, pRight, OP_Ge, 29457d176105Sdrh r1, r2, r3, SQLITE_STOREP2); VdbeCoverage(v); 2946be5c89acSdrh pLItem++; 2947be5c89acSdrh pRight = pLItem->pExpr; 29482dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree2); 29492dcef11bSdrh r2 = sqlite3ExprCodeTemp(pParse, pRight, ®Free2); 2950c5499befSdrh testcase( regFree2==0 ); 2951678ccce8Sdrh codeCompare(pParse, pLeft, pRight, OP_Le, r1, r2, r4, SQLITE_STOREP2); 2952688852abSdrh VdbeCoverage(v); 2953678ccce8Sdrh sqlite3VdbeAddOp3(v, OP_And, r3, r4, target); 29542dcef11bSdrh sqlite3ReleaseTempReg(pParse, r3); 2955678ccce8Sdrh sqlite3ReleaseTempReg(pParse, r4); 2956fef5208cSdrh break; 2957fef5208cSdrh } 2958ae80ddeaSdrh case TK_COLLATE: 29594f07e5fbSdrh case TK_UPLUS: { 29602dcef11bSdrh inReg = sqlite3ExprCodeTarget(pParse, pExpr->pLeft, target); 2961a2e00042Sdrh break; 2962a2e00042Sdrh } 29632dcef11bSdrh 2964165921a7Sdan case TK_TRIGGER: { 296565a7cd16Sdan /* If the opcode is TK_TRIGGER, then the expression is a reference 296665a7cd16Sdan ** to a column in the new.* or old.* pseudo-tables available to 296765a7cd16Sdan ** trigger programs. In this case Expr.iTable is set to 1 for the 296865a7cd16Sdan ** new.* pseudo-table, or 0 for the old.* pseudo-table. Expr.iColumn 296965a7cd16Sdan ** is set to the column of the pseudo-table to read, or to -1 to 297065a7cd16Sdan ** read the rowid field. 297165a7cd16Sdan ** 297265a7cd16Sdan ** The expression is implemented using an OP_Param opcode. The p1 297365a7cd16Sdan ** parameter is set to 0 for an old.rowid reference, or to (i+1) 297465a7cd16Sdan ** to reference another column of the old.* pseudo-table, where 297565a7cd16Sdan ** i is the index of the column. For a new.rowid reference, p1 is 297665a7cd16Sdan ** set to (n+1), where n is the number of columns in each pseudo-table. 297765a7cd16Sdan ** For a reference to any other column in the new.* pseudo-table, p1 297865a7cd16Sdan ** is set to (n+2+i), where n and i are as defined previously. For 297965a7cd16Sdan ** example, if the table on which triggers are being fired is 298065a7cd16Sdan ** declared as: 298165a7cd16Sdan ** 298265a7cd16Sdan ** CREATE TABLE t1(a, b); 298365a7cd16Sdan ** 298465a7cd16Sdan ** Then p1 is interpreted as follows: 298565a7cd16Sdan ** 298665a7cd16Sdan ** p1==0 -> old.rowid p1==3 -> new.rowid 298765a7cd16Sdan ** p1==1 -> old.a p1==4 -> new.a 298865a7cd16Sdan ** p1==2 -> old.b p1==5 -> new.b 298965a7cd16Sdan */ 29902832ad42Sdan Table *pTab = pExpr->pTab; 299165a7cd16Sdan int p1 = pExpr->iTable * (pTab->nCol+1) + 1 + pExpr->iColumn; 299265a7cd16Sdan 299365a7cd16Sdan assert( pExpr->iTable==0 || pExpr->iTable==1 ); 299465a7cd16Sdan assert( pExpr->iColumn>=-1 && pExpr->iColumn<pTab->nCol ); 299565a7cd16Sdan assert( pTab->iPKey<0 || pExpr->iColumn!=pTab->iPKey ); 299665a7cd16Sdan assert( p1>=0 && p1<(pTab->nCol*2+2) ); 299765a7cd16Sdan 299865a7cd16Sdan sqlite3VdbeAddOp2(v, OP_Param, p1, target); 299976d462eeSdan VdbeComment((v, "%s.%s -> $%d", 3000165921a7Sdan (pExpr->iTable ? "new" : "old"), 300176d462eeSdan (pExpr->iColumn<0 ? "rowid" : pExpr->pTab->aCol[pExpr->iColumn].zName), 300276d462eeSdan target 3003165921a7Sdan )); 300465a7cd16Sdan 300544dbca83Sdrh #ifndef SQLITE_OMIT_FLOATING_POINT 300665a7cd16Sdan /* If the column has REAL affinity, it may currently be stored as an 300765a7cd16Sdan ** integer. Use OP_RealAffinity to make sure it is really real. */ 30082832ad42Sdan if( pExpr->iColumn>=0 30092832ad42Sdan && pTab->aCol[pExpr->iColumn].affinity==SQLITE_AFF_REAL 30102832ad42Sdan ){ 30112832ad42Sdan sqlite3VdbeAddOp1(v, OP_RealAffinity, target); 30122832ad42Sdan } 301344dbca83Sdrh #endif 3014165921a7Sdan break; 3015165921a7Sdan } 3016165921a7Sdan 3017165921a7Sdan 30182dcef11bSdrh /* 30192dcef11bSdrh ** Form A: 30202dcef11bSdrh ** CASE x WHEN e1 THEN r1 WHEN e2 THEN r2 ... WHEN eN THEN rN ELSE y END 30212dcef11bSdrh ** 30222dcef11bSdrh ** Form B: 30232dcef11bSdrh ** CASE WHEN e1 THEN r1 WHEN e2 THEN r2 ... WHEN eN THEN rN ELSE y END 30242dcef11bSdrh ** 30252dcef11bSdrh ** Form A is can be transformed into the equivalent form B as follows: 30262dcef11bSdrh ** CASE WHEN x=e1 THEN r1 WHEN x=e2 THEN r2 ... 30272dcef11bSdrh ** WHEN x=eN THEN rN ELSE y END 30282dcef11bSdrh ** 30292dcef11bSdrh ** X (if it exists) is in pExpr->pLeft. 3030c5cd1249Sdrh ** Y is in the last element of pExpr->x.pList if pExpr->x.pList->nExpr is 3031c5cd1249Sdrh ** odd. The Y is also optional. If the number of elements in x.pList 3032c5cd1249Sdrh ** is even, then Y is omitted and the "otherwise" result is NULL. 30332dcef11bSdrh ** Ei is in pExpr->pList->a[i*2] and Ri is pExpr->pList->a[i*2+1]. 30342dcef11bSdrh ** 30352dcef11bSdrh ** The result of the expression is the Ri for the first matching Ei, 30362dcef11bSdrh ** or if there is no matching Ei, the ELSE term Y, or if there is 30372dcef11bSdrh ** no ELSE term, NULL. 30382dcef11bSdrh */ 303933cd4909Sdrh default: assert( op==TK_CASE ); { 30402dcef11bSdrh int endLabel; /* GOTO label for end of CASE stmt */ 30412dcef11bSdrh int nextCase; /* GOTO label for next WHEN clause */ 30422dcef11bSdrh int nExpr; /* 2x number of WHEN terms */ 30432dcef11bSdrh int i; /* Loop counter */ 30442dcef11bSdrh ExprList *pEList; /* List of WHEN terms */ 30452dcef11bSdrh struct ExprList_item *aListelem; /* Array of WHEN terms */ 30462dcef11bSdrh Expr opCompare; /* The X==Ei expression */ 30472dcef11bSdrh Expr *pX; /* The X expression */ 30481bd10f8aSdrh Expr *pTest = 0; /* X==Ei (form A) or just Ei (form B) */ 3049ceea3321Sdrh VVA_ONLY( int iCacheLevel = pParse->iCacheLevel; ) 305017a7f8ddSdrh 30516ab3a2ecSdanielk1977 assert( !ExprHasProperty(pExpr, EP_xIsSelect) && pExpr->x.pList ); 30526ab3a2ecSdanielk1977 assert(pExpr->x.pList->nExpr > 0); 30536ab3a2ecSdanielk1977 pEList = pExpr->x.pList; 3054be5c89acSdrh aListelem = pEList->a; 3055be5c89acSdrh nExpr = pEList->nExpr; 30562dcef11bSdrh endLabel = sqlite3VdbeMakeLabel(v); 30572dcef11bSdrh if( (pX = pExpr->pLeft)!=0 ){ 305810d1edf0Sdrh tempX = *pX; 305933cd4909Sdrh testcase( pX->op==TK_COLUMN ); 306010d1edf0Sdrh exprToRegister(&tempX, sqlite3ExprCodeTemp(pParse, pX, ®Free1)); 3061c5499befSdrh testcase( regFree1==0 ); 30622dcef11bSdrh opCompare.op = TK_EQ; 306310d1edf0Sdrh opCompare.pLeft = &tempX; 30642dcef11bSdrh pTest = &opCompare; 30658b1db07fSdrh /* Ticket b351d95f9cd5ef17e9d9dbae18f5ca8611190001: 30668b1db07fSdrh ** The value in regFree1 might get SCopy-ed into the file result. 30678b1db07fSdrh ** So make sure that the regFree1 register is not reused for other 30688b1db07fSdrh ** purposes and possibly overwritten. */ 30698b1db07fSdrh regFree1 = 0; 3070cce7d176Sdrh } 3071c5cd1249Sdrh for(i=0; i<nExpr-1; i=i+2){ 3072ceea3321Sdrh sqlite3ExprCachePush(pParse); 30732dcef11bSdrh if( pX ){ 30741bd10f8aSdrh assert( pTest!=0 ); 30752dcef11bSdrh opCompare.pRight = aListelem[i].pExpr; 3076f5905aa7Sdrh }else{ 30772dcef11bSdrh pTest = aListelem[i].pExpr; 307817a7f8ddSdrh } 30792dcef11bSdrh nextCase = sqlite3VdbeMakeLabel(v); 308033cd4909Sdrh testcase( pTest->op==TK_COLUMN ); 30812dcef11bSdrh sqlite3ExprIfFalse(pParse, pTest, nextCase, SQLITE_JUMPIFNULL); 3082c5499befSdrh testcase( aListelem[i+1].pExpr->op==TK_COLUMN ); 30839de221dfSdrh sqlite3ExprCode(pParse, aListelem[i+1].pExpr, target); 30842dcef11bSdrh sqlite3VdbeAddOp2(v, OP_Goto, 0, endLabel); 3085d2490904Sdrh sqlite3ExprCachePop(pParse); 30862dcef11bSdrh sqlite3VdbeResolveLabel(v, nextCase); 3087f570f011Sdrh } 3088c5cd1249Sdrh if( (nExpr&1)!=0 ){ 3089ceea3321Sdrh sqlite3ExprCachePush(pParse); 3090c5cd1249Sdrh sqlite3ExprCode(pParse, pEList->a[nExpr-1].pExpr, target); 3091d2490904Sdrh sqlite3ExprCachePop(pParse); 309217a7f8ddSdrh }else{ 30939de221dfSdrh sqlite3VdbeAddOp2(v, OP_Null, 0, target); 309417a7f8ddSdrh } 3095c1f4a19bSdanielk1977 assert( db->mallocFailed || pParse->nErr>0 3096c1f4a19bSdanielk1977 || pParse->iCacheLevel==iCacheLevel ); 30972dcef11bSdrh sqlite3VdbeResolveLabel(v, endLabel); 30986f34903eSdanielk1977 break; 30996f34903eSdanielk1977 } 31005338a5f7Sdanielk1977 #ifndef SQLITE_OMIT_TRIGGER 31016f34903eSdanielk1977 case TK_RAISE: { 3102165921a7Sdan assert( pExpr->affinity==OE_Rollback 3103165921a7Sdan || pExpr->affinity==OE_Abort 3104165921a7Sdan || pExpr->affinity==OE_Fail 3105165921a7Sdan || pExpr->affinity==OE_Ignore 3106165921a7Sdan ); 3107e0af83acSdan if( !pParse->pTriggerTab ){ 3108e0af83acSdan sqlite3ErrorMsg(pParse, 3109e0af83acSdan "RAISE() may only be used within a trigger-program"); 3110e0af83acSdan return 0; 3111e0af83acSdan } 3112e0af83acSdan if( pExpr->affinity==OE_Abort ){ 3113e0af83acSdan sqlite3MayAbort(pParse); 3114e0af83acSdan } 311533e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 3116e0af83acSdan if( pExpr->affinity==OE_Ignore ){ 3117e0af83acSdan sqlite3VdbeAddOp4( 3118e0af83acSdan v, OP_Halt, SQLITE_OK, OE_Ignore, 0, pExpr->u.zToken,0); 3119688852abSdrh VdbeCoverage(v); 3120e0af83acSdan }else{ 3121433dccfbSdrh sqlite3HaltConstraint(pParse, SQLITE_CONSTRAINT_TRIGGER, 3122f9c8ce3cSdrh pExpr->affinity, pExpr->u.zToken, 0, 0); 3123e0af83acSdan } 3124e0af83acSdan 3125ffe07b2dSdrh break; 312617a7f8ddSdrh } 31275338a5f7Sdanielk1977 #endif 3128ffe07b2dSdrh } 31292dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree1); 31302dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree2); 31312dcef11bSdrh return inReg; 31325b6afba9Sdrh } 31332dcef11bSdrh 31342dcef11bSdrh /* 3135d1a01edaSdrh ** Factor out the code of the given expression to initialization time. 3136d1a01edaSdrh */ 3137d673cddaSdrh void sqlite3ExprCodeAtInit( 3138d673cddaSdrh Parse *pParse, /* Parsing context */ 3139d673cddaSdrh Expr *pExpr, /* The expression to code when the VDBE initializes */ 3140d673cddaSdrh int regDest, /* Store the value in this register */ 3141d673cddaSdrh u8 reusable /* True if this expression is reusable */ 3142d673cddaSdrh ){ 3143d1a01edaSdrh ExprList *p; 3144d9f158e7Sdrh assert( ConstFactorOk(pParse) ); 3145d1a01edaSdrh p = pParse->pConstExpr; 3146d1a01edaSdrh pExpr = sqlite3ExprDup(pParse->db, pExpr, 0); 3147d1a01edaSdrh p = sqlite3ExprListAppend(pParse, p, pExpr); 3148d673cddaSdrh if( p ){ 3149d673cddaSdrh struct ExprList_item *pItem = &p->a[p->nExpr-1]; 3150d673cddaSdrh pItem->u.iConstExprReg = regDest; 3151d673cddaSdrh pItem->reusable = reusable; 3152d673cddaSdrh } 3153d1a01edaSdrh pParse->pConstExpr = p; 3154d1a01edaSdrh } 3155d1a01edaSdrh 3156d1a01edaSdrh /* 31572dcef11bSdrh ** Generate code to evaluate an expression and store the results 31582dcef11bSdrh ** into a register. Return the register number where the results 31592dcef11bSdrh ** are stored. 31602dcef11bSdrh ** 31612dcef11bSdrh ** If the register is a temporary register that can be deallocated, 3162678ccce8Sdrh ** then write its number into *pReg. If the result register is not 31632dcef11bSdrh ** a temporary, then set *pReg to zero. 3164f30a969bSdrh ** 3165f30a969bSdrh ** If pExpr is a constant, then this routine might generate this 3166f30a969bSdrh ** code to fill the register in the initialization section of the 3167f30a969bSdrh ** VDBE program, in order to factor it out of the evaluation loop. 31682dcef11bSdrh */ 31692dcef11bSdrh int sqlite3ExprCodeTemp(Parse *pParse, Expr *pExpr, int *pReg){ 3170f30a969bSdrh int r2; 3171f30a969bSdrh pExpr = sqlite3ExprSkipCollate(pExpr); 3172d9f158e7Sdrh if( ConstFactorOk(pParse) 3173f30a969bSdrh && pExpr->op!=TK_REGISTER 3174f30a969bSdrh && sqlite3ExprIsConstantNotJoin(pExpr) 3175f30a969bSdrh ){ 3176f30a969bSdrh ExprList *p = pParse->pConstExpr; 3177f30a969bSdrh int i; 3178f30a969bSdrh *pReg = 0; 3179f30a969bSdrh if( p ){ 3180d673cddaSdrh struct ExprList_item *pItem; 3181d673cddaSdrh for(pItem=p->a, i=p->nExpr; i>0; pItem++, i--){ 3182d673cddaSdrh if( pItem->reusable && sqlite3ExprCompare(pItem->pExpr,pExpr,-1)==0 ){ 3183d673cddaSdrh return pItem->u.iConstExprReg; 3184f30a969bSdrh } 3185f30a969bSdrh } 3186f30a969bSdrh } 3187f30a969bSdrh r2 = ++pParse->nMem; 3188d673cddaSdrh sqlite3ExprCodeAtInit(pParse, pExpr, r2, 1); 3189f30a969bSdrh }else{ 31902dcef11bSdrh int r1 = sqlite3GetTempReg(pParse); 3191f30a969bSdrh r2 = sqlite3ExprCodeTarget(pParse, pExpr, r1); 31922dcef11bSdrh if( r2==r1 ){ 31932dcef11bSdrh *pReg = r1; 31942dcef11bSdrh }else{ 31952dcef11bSdrh sqlite3ReleaseTempReg(pParse, r1); 31962dcef11bSdrh *pReg = 0; 31972dcef11bSdrh } 3198f30a969bSdrh } 31992dcef11bSdrh return r2; 32002dcef11bSdrh } 32012dcef11bSdrh 32022dcef11bSdrh /* 32032dcef11bSdrh ** Generate code that will evaluate expression pExpr and store the 32042dcef11bSdrh ** results in register target. The results are guaranteed to appear 32052dcef11bSdrh ** in register target. 32062dcef11bSdrh */ 320705a86c5cSdrh void sqlite3ExprCode(Parse *pParse, Expr *pExpr, int target){ 32089cbf3425Sdrh int inReg; 32099cbf3425Sdrh 32109cbf3425Sdrh assert( target>0 && target<=pParse->nMem ); 3211ebc16717Sdrh if( pExpr && pExpr->op==TK_REGISTER ){ 3212ebc16717Sdrh sqlite3VdbeAddOp2(pParse->pVdbe, OP_Copy, pExpr->iTable, target); 3213ebc16717Sdrh }else{ 32149cbf3425Sdrh inReg = sqlite3ExprCodeTarget(pParse, pExpr, target); 32150e359b30Sdrh assert( pParse->pVdbe || pParse->db->mallocFailed ); 32160e359b30Sdrh if( inReg!=target && pParse->pVdbe ){ 32179cbf3425Sdrh sqlite3VdbeAddOp2(pParse->pVdbe, OP_SCopy, inReg, target); 321817a7f8ddSdrh } 3219ebc16717Sdrh } 322005a86c5cSdrh } 322105a86c5cSdrh 322205a86c5cSdrh /* 322305a86c5cSdrh ** Generate code that will evaluate expression pExpr and store the 322405a86c5cSdrh ** results in register target. The results are guaranteed to appear 322505a86c5cSdrh ** in register target. If the expression is constant, then this routine 322605a86c5cSdrh ** might choose to code the expression at initialization time. 322705a86c5cSdrh */ 322805a86c5cSdrh void sqlite3ExprCodeFactorable(Parse *pParse, Expr *pExpr, int target){ 322905a86c5cSdrh if( pParse->okConstFactor && sqlite3ExprIsConstant(pExpr) ){ 323005a86c5cSdrh sqlite3ExprCodeAtInit(pParse, pExpr, target, 0); 323105a86c5cSdrh }else{ 323205a86c5cSdrh sqlite3ExprCode(pParse, pExpr, target); 323305a86c5cSdrh } 3234cce7d176Sdrh } 3235cce7d176Sdrh 3236cce7d176Sdrh /* 323760ec914cSpeter.d.reid ** Generate code that evaluates the given expression and puts the result 3238de4fcfddSdrh ** in register target. 323925303780Sdrh ** 32402dcef11bSdrh ** Also make a copy of the expression results into another "cache" register 32412dcef11bSdrh ** and modify the expression so that the next time it is evaluated, 32422dcef11bSdrh ** the result is a copy of the cache register. 32432dcef11bSdrh ** 32442dcef11bSdrh ** This routine is used for expressions that are used multiple 32452dcef11bSdrh ** times. They are evaluated once and the results of the expression 32462dcef11bSdrh ** are reused. 324725303780Sdrh */ 324805a86c5cSdrh void sqlite3ExprCodeAndCache(Parse *pParse, Expr *pExpr, int target){ 324925303780Sdrh Vdbe *v = pParse->pVdbe; 325025303780Sdrh int iMem; 325105a86c5cSdrh 325205a86c5cSdrh assert( target>0 ); 325305a86c5cSdrh assert( pExpr->op!=TK_REGISTER ); 325405a86c5cSdrh sqlite3ExprCode(pParse, pExpr, target); 32552dcef11bSdrh iMem = ++pParse->nMem; 325605a86c5cSdrh sqlite3VdbeAddOp2(v, OP_Copy, target, iMem); 3257a4c3c87eSdrh exprToRegister(pExpr, iMem); 325825303780Sdrh } 32592dcef11bSdrh 32604fa4a54fSdrh #ifdef SQLITE_DEBUG 32617e02e5e6Sdrh /* 32627e02e5e6Sdrh ** Generate a human-readable explanation of an expression tree. 32637e02e5e6Sdrh */ 32644fa4a54fSdrh void sqlite3TreeViewExpr(TreeView *pView, const Expr *pExpr, u8 moreToFollow){ 3265a84203a0Sdrh const char *zBinOp = 0; /* Binary operator */ 3266a84203a0Sdrh const char *zUniOp = 0; /* Unary operator */ 32674fa4a54fSdrh pView = sqlite3TreeViewPush(pView, moreToFollow); 3268a84203a0Sdrh if( pExpr==0 ){ 32694fa4a54fSdrh sqlite3TreeViewLine(pView, "nil"); 32704fa4a54fSdrh sqlite3TreeViewPop(pView); 32714fa4a54fSdrh return; 32727e02e5e6Sdrh } 32734fa4a54fSdrh switch( pExpr->op ){ 3274a84203a0Sdrh case TK_AGG_COLUMN: { 32754fa4a54fSdrh sqlite3TreeViewLine(pView, "AGG{%d:%d}", 327604b8342bSdrh pExpr->iTable, pExpr->iColumn); 3277a84203a0Sdrh break; 32787e02e5e6Sdrh } 3279a84203a0Sdrh case TK_COLUMN: { 3280a84203a0Sdrh if( pExpr->iTable<0 ){ 3281a84203a0Sdrh /* This only happens when coding check constraints */ 32824fa4a54fSdrh sqlite3TreeViewLine(pView, "COLUMN(%d)", pExpr->iColumn); 3283a84203a0Sdrh }else{ 32844fa4a54fSdrh sqlite3TreeViewLine(pView, "{%d:%d}", 328504b8342bSdrh pExpr->iTable, pExpr->iColumn); 3286a84203a0Sdrh } 3287a84203a0Sdrh break; 3288a84203a0Sdrh } 3289a84203a0Sdrh case TK_INTEGER: { 3290a84203a0Sdrh if( pExpr->flags & EP_IntValue ){ 32914fa4a54fSdrh sqlite3TreeViewLine(pView, "%d", pExpr->u.iValue); 3292a84203a0Sdrh }else{ 32934fa4a54fSdrh sqlite3TreeViewLine(pView, "%s", pExpr->u.zToken); 3294a84203a0Sdrh } 3295a84203a0Sdrh break; 3296a84203a0Sdrh } 3297a84203a0Sdrh #ifndef SQLITE_OMIT_FLOATING_POINT 3298a84203a0Sdrh case TK_FLOAT: { 32994fa4a54fSdrh sqlite3TreeViewLine(pView,"%s", pExpr->u.zToken); 3300a84203a0Sdrh break; 3301a84203a0Sdrh } 3302a84203a0Sdrh #endif 3303a84203a0Sdrh case TK_STRING: { 33044fa4a54fSdrh sqlite3TreeViewLine(pView,"%Q", pExpr->u.zToken); 3305a84203a0Sdrh break; 3306a84203a0Sdrh } 3307a84203a0Sdrh case TK_NULL: { 33084fa4a54fSdrh sqlite3TreeViewLine(pView,"NULL"); 3309a84203a0Sdrh break; 3310a84203a0Sdrh } 3311a84203a0Sdrh #ifndef SQLITE_OMIT_BLOB_LITERAL 3312a84203a0Sdrh case TK_BLOB: { 33134fa4a54fSdrh sqlite3TreeViewLine(pView,"%s", pExpr->u.zToken); 3314a84203a0Sdrh break; 3315a84203a0Sdrh } 3316a84203a0Sdrh #endif 3317a84203a0Sdrh case TK_VARIABLE: { 33184fa4a54fSdrh sqlite3TreeViewLine(pView,"VARIABLE(%s,%d)", 3319a84203a0Sdrh pExpr->u.zToken, pExpr->iColumn); 3320a84203a0Sdrh break; 3321a84203a0Sdrh } 3322a84203a0Sdrh case TK_REGISTER: { 33234fa4a54fSdrh sqlite3TreeViewLine(pView,"REGISTER(%d)", pExpr->iTable); 3324a84203a0Sdrh break; 3325a84203a0Sdrh } 3326a84203a0Sdrh case TK_AS: { 33274fa4a54fSdrh sqlite3TreeViewLine(pView,"AS %Q", pExpr->u.zToken); 33284fa4a54fSdrh sqlite3TreeViewExpr(pView, pExpr->pLeft, 0); 33294fa4a54fSdrh break; 33304fa4a54fSdrh } 33314fa4a54fSdrh case TK_ID: { 33324fa4a54fSdrh sqlite3TreeViewLine(pView,"ID %Q", pExpr->u.zToken); 3333a84203a0Sdrh break; 3334a84203a0Sdrh } 3335a84203a0Sdrh #ifndef SQLITE_OMIT_CAST 3336a84203a0Sdrh case TK_CAST: { 3337a84203a0Sdrh /* Expressions of the form: CAST(pLeft AS token) */ 33384fa4a54fSdrh sqlite3TreeViewLine(pView,"CAST %Q", pExpr->u.zToken); 33394fa4a54fSdrh sqlite3TreeViewExpr(pView, pExpr->pLeft, 0); 3340a84203a0Sdrh break; 3341a84203a0Sdrh } 3342a84203a0Sdrh #endif /* SQLITE_OMIT_CAST */ 3343a84203a0Sdrh case TK_LT: zBinOp = "LT"; break; 3344a84203a0Sdrh case TK_LE: zBinOp = "LE"; break; 3345a84203a0Sdrh case TK_GT: zBinOp = "GT"; break; 3346a84203a0Sdrh case TK_GE: zBinOp = "GE"; break; 3347a84203a0Sdrh case TK_NE: zBinOp = "NE"; break; 3348a84203a0Sdrh case TK_EQ: zBinOp = "EQ"; break; 3349a84203a0Sdrh case TK_IS: zBinOp = "IS"; break; 3350a84203a0Sdrh case TK_ISNOT: zBinOp = "ISNOT"; break; 3351a84203a0Sdrh case TK_AND: zBinOp = "AND"; break; 3352a84203a0Sdrh case TK_OR: zBinOp = "OR"; break; 3353a84203a0Sdrh case TK_PLUS: zBinOp = "ADD"; break; 3354a84203a0Sdrh case TK_STAR: zBinOp = "MUL"; break; 3355a84203a0Sdrh case TK_MINUS: zBinOp = "SUB"; break; 3356a84203a0Sdrh case TK_REM: zBinOp = "REM"; break; 3357a84203a0Sdrh case TK_BITAND: zBinOp = "BITAND"; break; 3358a84203a0Sdrh case TK_BITOR: zBinOp = "BITOR"; break; 3359a84203a0Sdrh case TK_SLASH: zBinOp = "DIV"; break; 3360a84203a0Sdrh case TK_LSHIFT: zBinOp = "LSHIFT"; break; 3361a84203a0Sdrh case TK_RSHIFT: zBinOp = "RSHIFT"; break; 3362a84203a0Sdrh case TK_CONCAT: zBinOp = "CONCAT"; break; 3363ccaba81eSdrh case TK_DOT: zBinOp = "DOT"; break; 3364a84203a0Sdrh 3365a84203a0Sdrh case TK_UMINUS: zUniOp = "UMINUS"; break; 3366a84203a0Sdrh case TK_UPLUS: zUniOp = "UPLUS"; break; 3367a84203a0Sdrh case TK_BITNOT: zUniOp = "BITNOT"; break; 3368a84203a0Sdrh case TK_NOT: zUniOp = "NOT"; break; 3369a84203a0Sdrh case TK_ISNULL: zUniOp = "ISNULL"; break; 3370a84203a0Sdrh case TK_NOTNULL: zUniOp = "NOTNULL"; break; 3371a84203a0Sdrh 33727a66da13Sdrh case TK_COLLATE: { 33734fa4a54fSdrh sqlite3TreeViewLine(pView, "COLLATE %Q", pExpr->u.zToken); 33744fa4a54fSdrh sqlite3TreeViewExpr(pView, pExpr->pLeft, 0); 33757a66da13Sdrh break; 33767a66da13Sdrh } 33777a66da13Sdrh 3378a84203a0Sdrh case TK_AGG_FUNCTION: 3379a84203a0Sdrh case TK_FUNCTION: { 3380a84203a0Sdrh ExprList *pFarg; /* List of function arguments */ 3381c5cd1249Sdrh if( ExprHasProperty(pExpr, EP_TokenOnly) ){ 3382a84203a0Sdrh pFarg = 0; 3383a84203a0Sdrh }else{ 3384a84203a0Sdrh pFarg = pExpr->x.pList; 3385a84203a0Sdrh } 33864fa4a54fSdrh if( pExpr->op==TK_AGG_FUNCTION ){ 33874fa4a54fSdrh sqlite3TreeViewLine(pView, "AGG_FUNCTION%d %Q", 3388ed551b95Sdrh pExpr->op2, pExpr->u.zToken); 3389ed551b95Sdrh }else{ 33904fa4a54fSdrh sqlite3TreeViewLine(pView, "FUNCTION %Q", pExpr->u.zToken); 3391ed551b95Sdrh } 3392a84203a0Sdrh if( pFarg ){ 33934fa4a54fSdrh sqlite3TreeViewExprList(pView, pFarg, 0, 0); 33947e02e5e6Sdrh } 3395a84203a0Sdrh break; 3396a84203a0Sdrh } 3397a84203a0Sdrh #ifndef SQLITE_OMIT_SUBQUERY 3398a84203a0Sdrh case TK_EXISTS: { 33994fa4a54fSdrh sqlite3TreeViewLine(pView, "EXISTS-expr"); 34004fa4a54fSdrh sqlite3TreeViewSelect(pView, pExpr->x.pSelect, 0); 3401a84203a0Sdrh break; 3402a84203a0Sdrh } 3403a84203a0Sdrh case TK_SELECT: { 34044fa4a54fSdrh sqlite3TreeViewLine(pView, "SELECT-expr"); 34054fa4a54fSdrh sqlite3TreeViewSelect(pView, pExpr->x.pSelect, 0); 3406a84203a0Sdrh break; 3407a84203a0Sdrh } 3408a84203a0Sdrh case TK_IN: { 34094fa4a54fSdrh sqlite3TreeViewLine(pView, "IN"); 34104fa4a54fSdrh sqlite3TreeViewExpr(pView, pExpr->pLeft, 1); 3411a84203a0Sdrh if( ExprHasProperty(pExpr, EP_xIsSelect) ){ 34124fa4a54fSdrh sqlite3TreeViewSelect(pView, pExpr->x.pSelect, 0); 3413a84203a0Sdrh }else{ 34144fa4a54fSdrh sqlite3TreeViewExprList(pView, pExpr->x.pList, 0, 0); 3415a84203a0Sdrh } 3416a84203a0Sdrh break; 3417a84203a0Sdrh } 3418a84203a0Sdrh #endif /* SQLITE_OMIT_SUBQUERY */ 3419a84203a0Sdrh 3420a84203a0Sdrh /* 3421a84203a0Sdrh ** x BETWEEN y AND z 3422a84203a0Sdrh ** 3423a84203a0Sdrh ** This is equivalent to 3424a84203a0Sdrh ** 3425a84203a0Sdrh ** x>=y AND x<=z 3426a84203a0Sdrh ** 3427a84203a0Sdrh ** X is stored in pExpr->pLeft. 3428a84203a0Sdrh ** Y is stored in pExpr->pList->a[0].pExpr. 3429a84203a0Sdrh ** Z is stored in pExpr->pList->a[1].pExpr. 3430a84203a0Sdrh */ 3431a84203a0Sdrh case TK_BETWEEN: { 3432a84203a0Sdrh Expr *pX = pExpr->pLeft; 3433a84203a0Sdrh Expr *pY = pExpr->x.pList->a[0].pExpr; 3434a84203a0Sdrh Expr *pZ = pExpr->x.pList->a[1].pExpr; 34354fa4a54fSdrh sqlite3TreeViewLine(pView, "BETWEEN"); 34364fa4a54fSdrh sqlite3TreeViewExpr(pView, pX, 1); 34374fa4a54fSdrh sqlite3TreeViewExpr(pView, pY, 1); 34384fa4a54fSdrh sqlite3TreeViewExpr(pView, pZ, 0); 3439a84203a0Sdrh break; 3440a84203a0Sdrh } 3441a84203a0Sdrh case TK_TRIGGER: { 3442a84203a0Sdrh /* If the opcode is TK_TRIGGER, then the expression is a reference 3443a84203a0Sdrh ** to a column in the new.* or old.* pseudo-tables available to 3444a84203a0Sdrh ** trigger programs. In this case Expr.iTable is set to 1 for the 3445a84203a0Sdrh ** new.* pseudo-table, or 0 for the old.* pseudo-table. Expr.iColumn 3446a84203a0Sdrh ** is set to the column of the pseudo-table to read, or to -1 to 3447a84203a0Sdrh ** read the rowid field. 3448a84203a0Sdrh */ 34494fa4a54fSdrh sqlite3TreeViewLine(pView, "%s(%d)", 3450a84203a0Sdrh pExpr->iTable ? "NEW" : "OLD", pExpr->iColumn); 3451a84203a0Sdrh break; 3452a84203a0Sdrh } 3453a84203a0Sdrh case TK_CASE: { 34544fa4a54fSdrh sqlite3TreeViewLine(pView, "CASE"); 34554fa4a54fSdrh sqlite3TreeViewExpr(pView, pExpr->pLeft, 1); 34564fa4a54fSdrh sqlite3TreeViewExprList(pView, pExpr->x.pList, 0, 0); 3457a84203a0Sdrh break; 3458a84203a0Sdrh } 3459a84203a0Sdrh #ifndef SQLITE_OMIT_TRIGGER 3460a84203a0Sdrh case TK_RAISE: { 3461a84203a0Sdrh const char *zType = "unk"; 3462a84203a0Sdrh switch( pExpr->affinity ){ 3463a84203a0Sdrh case OE_Rollback: zType = "rollback"; break; 3464a84203a0Sdrh case OE_Abort: zType = "abort"; break; 3465a84203a0Sdrh case OE_Fail: zType = "fail"; break; 3466a84203a0Sdrh case OE_Ignore: zType = "ignore"; break; 3467a84203a0Sdrh } 34684fa4a54fSdrh sqlite3TreeViewLine(pView, "RAISE %s(%Q)", zType, pExpr->u.zToken); 3469a84203a0Sdrh break; 3470a84203a0Sdrh } 3471a84203a0Sdrh #endif 34724fa4a54fSdrh default: { 34734fa4a54fSdrh sqlite3TreeViewLine(pView, "op=%d", pExpr->op); 34744fa4a54fSdrh break; 34754fa4a54fSdrh } 3476a84203a0Sdrh } 3477a84203a0Sdrh if( zBinOp ){ 34784fa4a54fSdrh sqlite3TreeViewLine(pView, "%s", zBinOp); 34794fa4a54fSdrh sqlite3TreeViewExpr(pView, pExpr->pLeft, 1); 34804fa4a54fSdrh sqlite3TreeViewExpr(pView, pExpr->pRight, 0); 3481a84203a0Sdrh }else if( zUniOp ){ 34824fa4a54fSdrh sqlite3TreeViewLine(pView, "%s", zUniOp); 34834fa4a54fSdrh sqlite3TreeViewExpr(pView, pExpr->pLeft, 0); 3484a84203a0Sdrh } 34854fa4a54fSdrh sqlite3TreeViewPop(pView); 34867e02e5e6Sdrh } 34874fa4a54fSdrh #endif /* SQLITE_DEBUG */ 34887e02e5e6Sdrh 34894fa4a54fSdrh #ifdef SQLITE_DEBUG 34907e02e5e6Sdrh /* 34917e02e5e6Sdrh ** Generate a human-readable explanation of an expression list. 34927e02e5e6Sdrh */ 34934fa4a54fSdrh void sqlite3TreeViewExprList( 34944fa4a54fSdrh TreeView *pView, 34954fa4a54fSdrh const ExprList *pList, 34964fa4a54fSdrh u8 moreToFollow, 34974fa4a54fSdrh const char *zLabel 34984fa4a54fSdrh ){ 34997e02e5e6Sdrh int i; 35004fa4a54fSdrh pView = sqlite3TreeViewPush(pView, moreToFollow); 35014fa4a54fSdrh if( zLabel==0 || zLabel[0]==0 ) zLabel = "LIST"; 35024fa4a54fSdrh if( pList==0 ){ 35034fa4a54fSdrh sqlite3TreeViewLine(pView, "%s (empty)", zLabel); 3504a84203a0Sdrh }else{ 35054fa4a54fSdrh sqlite3TreeViewLine(pView, "%s", zLabel); 35067e02e5e6Sdrh for(i=0; i<pList->nExpr; i++){ 35074fa4a54fSdrh sqlite3TreeViewExpr(pView, pList->a[i].pExpr, i<pList->nExpr-1); 35084fa4a54fSdrh #if 0 35093e3f1a5bSdrh if( pList->a[i].zName ){ 35103e3f1a5bSdrh sqlite3ExplainPrintf(pOut, " AS %s", pList->a[i].zName); 35113e3f1a5bSdrh } 35123e3f1a5bSdrh if( pList->a[i].bSpanIsTab ){ 35133e3f1a5bSdrh sqlite3ExplainPrintf(pOut, " (%s)", pList->a[i].zSpan); 35143e3f1a5bSdrh } 35154fa4a54fSdrh #endif 35167e02e5e6Sdrh } 35177e02e5e6Sdrh } 35184fa4a54fSdrh sqlite3TreeViewPop(pView); 3519a84203a0Sdrh } 35207e02e5e6Sdrh #endif /* SQLITE_DEBUG */ 35217e02e5e6Sdrh 3522678ccce8Sdrh /* 3523268380caSdrh ** Generate code that pushes the value of every element of the given 35249cbf3425Sdrh ** expression list into a sequence of registers beginning at target. 3525268380caSdrh ** 3526892d3179Sdrh ** Return the number of elements evaluated. 3527d1a01edaSdrh ** 3528d1a01edaSdrh ** The SQLITE_ECEL_DUP flag prevents the arguments from being 3529d1a01edaSdrh ** filled using OP_SCopy. OP_Copy must be used instead. 3530d1a01edaSdrh ** 3531d1a01edaSdrh ** The SQLITE_ECEL_FACTOR argument allows constant arguments to be 3532d1a01edaSdrh ** factored out into initialization code. 3533268380caSdrh */ 35344adee20fSdanielk1977 int sqlite3ExprCodeExprList( 3535268380caSdrh Parse *pParse, /* Parsing context */ 3536389a1adbSdrh ExprList *pList, /* The expression list to be coded */ 3537191b54cbSdrh int target, /* Where to write results */ 3538d1a01edaSdrh u8 flags /* SQLITE_ECEL_* flags */ 3539268380caSdrh ){ 3540268380caSdrh struct ExprList_item *pItem; 35419cbf3425Sdrh int i, n; 3542d1a01edaSdrh u8 copyOp = (flags & SQLITE_ECEL_DUP) ? OP_Copy : OP_SCopy; 35439d8b3072Sdrh assert( pList!=0 ); 35449cbf3425Sdrh assert( target>0 ); 3545d81a142bSdrh assert( pParse->pVdbe!=0 ); /* Never gets this far otherwise */ 3546268380caSdrh n = pList->nExpr; 3547d9f158e7Sdrh if( !ConstFactorOk(pParse) ) flags &= ~SQLITE_ECEL_FACTOR; 3548191b54cbSdrh for(pItem=pList->a, i=0; i<n; i++, pItem++){ 35497445ffe2Sdrh Expr *pExpr = pItem->pExpr; 3550d1a01edaSdrh if( (flags & SQLITE_ECEL_FACTOR)!=0 && sqlite3ExprIsConstant(pExpr) ){ 3551d673cddaSdrh sqlite3ExprCodeAtInit(pParse, pExpr, target+i, 0); 3552d1a01edaSdrh }else{ 35537445ffe2Sdrh int inReg = sqlite3ExprCodeTarget(pParse, pExpr, target+i); 3554746fd9ccSdrh if( inReg!=target+i ){ 35554eded604Sdrh VdbeOp *pOp; 35564eded604Sdrh Vdbe *v = pParse->pVdbe; 35574eded604Sdrh if( copyOp==OP_Copy 35584eded604Sdrh && (pOp=sqlite3VdbeGetOp(v, -1))->opcode==OP_Copy 35594eded604Sdrh && pOp->p1+pOp->p3+1==inReg 35604eded604Sdrh && pOp->p2+pOp->p3+1==target+i 35614eded604Sdrh ){ 35624eded604Sdrh pOp->p3++; 35634eded604Sdrh }else{ 35644eded604Sdrh sqlite3VdbeAddOp2(v, copyOp, inReg, target+i); 35654eded604Sdrh } 3566d1a01edaSdrh } 3567d176611bSdrh } 3568268380caSdrh } 3569f9b596ebSdrh return n; 3570268380caSdrh } 3571268380caSdrh 3572268380caSdrh /* 357336c563a2Sdrh ** Generate code for a BETWEEN operator. 357436c563a2Sdrh ** 357536c563a2Sdrh ** x BETWEEN y AND z 357636c563a2Sdrh ** 357736c563a2Sdrh ** The above is equivalent to 357836c563a2Sdrh ** 357936c563a2Sdrh ** x>=y AND x<=z 358036c563a2Sdrh ** 358136c563a2Sdrh ** Code it as such, taking care to do the common subexpression 358260ec914cSpeter.d.reid ** elimination of x. 358336c563a2Sdrh */ 358436c563a2Sdrh static void exprCodeBetween( 358536c563a2Sdrh Parse *pParse, /* Parsing and code generating context */ 358636c563a2Sdrh Expr *pExpr, /* The BETWEEN expression */ 358736c563a2Sdrh int dest, /* Jump here if the jump is taken */ 358836c563a2Sdrh int jumpIfTrue, /* Take the jump if the BETWEEN is true */ 358936c563a2Sdrh int jumpIfNull /* Take the jump if the BETWEEN is NULL */ 359036c563a2Sdrh ){ 359136c563a2Sdrh Expr exprAnd; /* The AND operator in x>=y AND x<=z */ 359236c563a2Sdrh Expr compLeft; /* The x>=y term */ 359336c563a2Sdrh Expr compRight; /* The x<=z term */ 359436c563a2Sdrh Expr exprX; /* The x subexpression */ 359536c563a2Sdrh int regFree1 = 0; /* Temporary use register */ 359636c563a2Sdrh 359736c563a2Sdrh assert( !ExprHasProperty(pExpr, EP_xIsSelect) ); 359836c563a2Sdrh exprX = *pExpr->pLeft; 359936c563a2Sdrh exprAnd.op = TK_AND; 360036c563a2Sdrh exprAnd.pLeft = &compLeft; 360136c563a2Sdrh exprAnd.pRight = &compRight; 360236c563a2Sdrh compLeft.op = TK_GE; 360336c563a2Sdrh compLeft.pLeft = &exprX; 360436c563a2Sdrh compLeft.pRight = pExpr->x.pList->a[0].pExpr; 360536c563a2Sdrh compRight.op = TK_LE; 360636c563a2Sdrh compRight.pLeft = &exprX; 360736c563a2Sdrh compRight.pRight = pExpr->x.pList->a[1].pExpr; 3608a4c3c87eSdrh exprToRegister(&exprX, sqlite3ExprCodeTemp(pParse, &exprX, ®Free1)); 360936c563a2Sdrh if( jumpIfTrue ){ 361036c563a2Sdrh sqlite3ExprIfTrue(pParse, &exprAnd, dest, jumpIfNull); 361136c563a2Sdrh }else{ 361236c563a2Sdrh sqlite3ExprIfFalse(pParse, &exprAnd, dest, jumpIfNull); 361336c563a2Sdrh } 361436c563a2Sdrh sqlite3ReleaseTempReg(pParse, regFree1); 361536c563a2Sdrh 361636c563a2Sdrh /* Ensure adequate test coverage */ 361736c563a2Sdrh testcase( jumpIfTrue==0 && jumpIfNull==0 && regFree1==0 ); 361836c563a2Sdrh testcase( jumpIfTrue==0 && jumpIfNull==0 && regFree1!=0 ); 361936c563a2Sdrh testcase( jumpIfTrue==0 && jumpIfNull!=0 && regFree1==0 ); 362036c563a2Sdrh testcase( jumpIfTrue==0 && jumpIfNull!=0 && regFree1!=0 ); 362136c563a2Sdrh testcase( jumpIfTrue!=0 && jumpIfNull==0 && regFree1==0 ); 362236c563a2Sdrh testcase( jumpIfTrue!=0 && jumpIfNull==0 && regFree1!=0 ); 362336c563a2Sdrh testcase( jumpIfTrue!=0 && jumpIfNull!=0 && regFree1==0 ); 362436c563a2Sdrh testcase( jumpIfTrue!=0 && jumpIfNull!=0 && regFree1!=0 ); 362536c563a2Sdrh } 362636c563a2Sdrh 362736c563a2Sdrh /* 3628cce7d176Sdrh ** Generate code for a boolean expression such that a jump is made 3629cce7d176Sdrh ** to the label "dest" if the expression is true but execution 3630cce7d176Sdrh ** continues straight thru if the expression is false. 3631f5905aa7Sdrh ** 3632f5905aa7Sdrh ** If the expression evaluates to NULL (neither true nor false), then 363335573356Sdrh ** take the jump if the jumpIfNull flag is SQLITE_JUMPIFNULL. 3634f2bc013cSdrh ** 3635f2bc013cSdrh ** This code depends on the fact that certain token values (ex: TK_EQ) 3636f2bc013cSdrh ** are the same as opcode values (ex: OP_Eq) that implement the corresponding 3637f2bc013cSdrh ** operation. Special comments in vdbe.c and the mkopcodeh.awk script in 3638f2bc013cSdrh ** the make process cause these values to align. Assert()s in the code 3639f2bc013cSdrh ** below verify that the numbers are aligned correctly. 3640cce7d176Sdrh */ 36414adee20fSdanielk1977 void sqlite3ExprIfTrue(Parse *pParse, Expr *pExpr, int dest, int jumpIfNull){ 3642cce7d176Sdrh Vdbe *v = pParse->pVdbe; 3643cce7d176Sdrh int op = 0; 36442dcef11bSdrh int regFree1 = 0; 36452dcef11bSdrh int regFree2 = 0; 36462dcef11bSdrh int r1, r2; 36472dcef11bSdrh 364835573356Sdrh assert( jumpIfNull==SQLITE_JUMPIFNULL || jumpIfNull==0 ); 364948864df9Smistachkin if( NEVER(v==0) ) return; /* Existence of VDBE checked by caller */ 365033cd4909Sdrh if( NEVER(pExpr==0) ) return; /* No way this can happen */ 3651f2bc013cSdrh op = pExpr->op; 3652f2bc013cSdrh switch( op ){ 3653cce7d176Sdrh case TK_AND: { 36544adee20fSdanielk1977 int d2 = sqlite3VdbeMakeLabel(v); 3655c5499befSdrh testcase( jumpIfNull==0 ); 365635573356Sdrh sqlite3ExprIfFalse(pParse, pExpr->pLeft, d2,jumpIfNull^SQLITE_JUMPIFNULL); 365754e2adb5Sdrh sqlite3ExprCachePush(pParse); 36584adee20fSdanielk1977 sqlite3ExprIfTrue(pParse, pExpr->pRight, dest, jumpIfNull); 36594adee20fSdanielk1977 sqlite3VdbeResolveLabel(v, d2); 3660d2490904Sdrh sqlite3ExprCachePop(pParse); 3661cce7d176Sdrh break; 3662cce7d176Sdrh } 3663cce7d176Sdrh case TK_OR: { 3664c5499befSdrh testcase( jumpIfNull==0 ); 36654adee20fSdanielk1977 sqlite3ExprIfTrue(pParse, pExpr->pLeft, dest, jumpIfNull); 366654e2adb5Sdrh sqlite3ExprCachePush(pParse); 36674adee20fSdanielk1977 sqlite3ExprIfTrue(pParse, pExpr->pRight, dest, jumpIfNull); 3668d2490904Sdrh sqlite3ExprCachePop(pParse); 3669cce7d176Sdrh break; 3670cce7d176Sdrh } 3671cce7d176Sdrh case TK_NOT: { 3672c5499befSdrh testcase( jumpIfNull==0 ); 36734adee20fSdanielk1977 sqlite3ExprIfFalse(pParse, pExpr->pLeft, dest, jumpIfNull); 3674cce7d176Sdrh break; 3675cce7d176Sdrh } 3676cce7d176Sdrh case TK_LT: 3677cce7d176Sdrh case TK_LE: 3678cce7d176Sdrh case TK_GT: 3679cce7d176Sdrh case TK_GE: 3680cce7d176Sdrh case TK_NE: 36810ac65892Sdrh case TK_EQ: { 3682c5499befSdrh testcase( jumpIfNull==0 ); 3683b6da74ebSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 3684b6da74ebSdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); 368535573356Sdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, 36867d176105Sdrh r1, r2, dest, jumpIfNull); 36877d176105Sdrh assert(TK_LT==OP_Lt); testcase(op==OP_Lt); VdbeCoverageIf(v,op==OP_Lt); 36887d176105Sdrh assert(TK_LE==OP_Le); testcase(op==OP_Le); VdbeCoverageIf(v,op==OP_Le); 36897d176105Sdrh assert(TK_GT==OP_Gt); testcase(op==OP_Gt); VdbeCoverageIf(v,op==OP_Gt); 36907d176105Sdrh assert(TK_GE==OP_Ge); testcase(op==OP_Ge); VdbeCoverageIf(v,op==OP_Ge); 36917d176105Sdrh assert(TK_EQ==OP_Eq); testcase(op==OP_Eq); VdbeCoverageIf(v,op==OP_Eq); 36927d176105Sdrh assert(TK_NE==OP_Ne); testcase(op==OP_Ne); VdbeCoverageIf(v,op==OP_Ne); 3693c5499befSdrh testcase( regFree1==0 ); 3694c5499befSdrh testcase( regFree2==0 ); 3695cce7d176Sdrh break; 3696cce7d176Sdrh } 36976a2fe093Sdrh case TK_IS: 36986a2fe093Sdrh case TK_ISNOT: { 36996a2fe093Sdrh testcase( op==TK_IS ); 37006a2fe093Sdrh testcase( op==TK_ISNOT ); 3701b6da74ebSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 3702b6da74ebSdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); 37036a2fe093Sdrh op = (op==TK_IS) ? TK_EQ : TK_NE; 37046a2fe093Sdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, 37057d176105Sdrh r1, r2, dest, SQLITE_NULLEQ); 37067d176105Sdrh VdbeCoverageIf(v, op==TK_EQ); 37077d176105Sdrh VdbeCoverageIf(v, op==TK_NE); 37086a2fe093Sdrh testcase( regFree1==0 ); 37096a2fe093Sdrh testcase( regFree2==0 ); 37106a2fe093Sdrh break; 37116a2fe093Sdrh } 3712cce7d176Sdrh case TK_ISNULL: 3713cce7d176Sdrh case TK_NOTNULL: { 37147d176105Sdrh assert( TK_ISNULL==OP_IsNull ); testcase( op==TK_ISNULL ); 37157d176105Sdrh assert( TK_NOTNULL==OP_NotNull ); testcase( op==TK_NOTNULL ); 37162dcef11bSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 37177d176105Sdrh sqlite3VdbeAddOp2(v, op, r1, dest); 37187d176105Sdrh VdbeCoverageIf(v, op==TK_ISNULL); 37197d176105Sdrh VdbeCoverageIf(v, op==TK_NOTNULL); 3720c5499befSdrh testcase( regFree1==0 ); 3721cce7d176Sdrh break; 3722cce7d176Sdrh } 3723fef5208cSdrh case TK_BETWEEN: { 37245c03f30aSdrh testcase( jumpIfNull==0 ); 372536c563a2Sdrh exprCodeBetween(pParse, pExpr, dest, 1, jumpIfNull); 3726fef5208cSdrh break; 3727fef5208cSdrh } 3728bb201344Sshaneh #ifndef SQLITE_OMIT_SUBQUERY 3729e3365e6cSdrh case TK_IN: { 3730e3365e6cSdrh int destIfFalse = sqlite3VdbeMakeLabel(v); 3731e3365e6cSdrh int destIfNull = jumpIfNull ? dest : destIfFalse; 3732e3365e6cSdrh sqlite3ExprCodeIN(pParse, pExpr, destIfFalse, destIfNull); 3733e3365e6cSdrh sqlite3VdbeAddOp2(v, OP_Goto, 0, dest); 3734e3365e6cSdrh sqlite3VdbeResolveLabel(v, destIfFalse); 3735e3365e6cSdrh break; 3736e3365e6cSdrh } 3737bb201344Sshaneh #endif 3738cce7d176Sdrh default: { 3739991a1985Sdrh if( exprAlwaysTrue(pExpr) ){ 3740991a1985Sdrh sqlite3VdbeAddOp2(v, OP_Goto, 0, dest); 3741991a1985Sdrh }else if( exprAlwaysFalse(pExpr) ){ 3742991a1985Sdrh /* No-op */ 3743991a1985Sdrh }else{ 37442dcef11bSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr, ®Free1); 37452dcef11bSdrh sqlite3VdbeAddOp3(v, OP_If, r1, dest, jumpIfNull!=0); 3746688852abSdrh VdbeCoverage(v); 3747c5499befSdrh testcase( regFree1==0 ); 3748c5499befSdrh testcase( jumpIfNull==0 ); 3749991a1985Sdrh } 3750cce7d176Sdrh break; 3751cce7d176Sdrh } 3752cce7d176Sdrh } 37532dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree1); 37542dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree2); 3755cce7d176Sdrh } 3756cce7d176Sdrh 3757cce7d176Sdrh /* 375866b89c8fSdrh ** Generate code for a boolean expression such that a jump is made 3759cce7d176Sdrh ** to the label "dest" if the expression is false but execution 3760cce7d176Sdrh ** continues straight thru if the expression is true. 3761f5905aa7Sdrh ** 3762f5905aa7Sdrh ** If the expression evaluates to NULL (neither true nor false) then 376335573356Sdrh ** jump if jumpIfNull is SQLITE_JUMPIFNULL or fall through if jumpIfNull 376435573356Sdrh ** is 0. 3765cce7d176Sdrh */ 37664adee20fSdanielk1977 void sqlite3ExprIfFalse(Parse *pParse, Expr *pExpr, int dest, int jumpIfNull){ 3767cce7d176Sdrh Vdbe *v = pParse->pVdbe; 3768cce7d176Sdrh int op = 0; 37692dcef11bSdrh int regFree1 = 0; 37702dcef11bSdrh int regFree2 = 0; 37712dcef11bSdrh int r1, r2; 37722dcef11bSdrh 377335573356Sdrh assert( jumpIfNull==SQLITE_JUMPIFNULL || jumpIfNull==0 ); 377448864df9Smistachkin if( NEVER(v==0) ) return; /* Existence of VDBE checked by caller */ 377533cd4909Sdrh if( pExpr==0 ) return; 3776f2bc013cSdrh 3777f2bc013cSdrh /* The value of pExpr->op and op are related as follows: 3778f2bc013cSdrh ** 3779f2bc013cSdrh ** pExpr->op op 3780f2bc013cSdrh ** --------- ---------- 3781f2bc013cSdrh ** TK_ISNULL OP_NotNull 3782f2bc013cSdrh ** TK_NOTNULL OP_IsNull 3783f2bc013cSdrh ** TK_NE OP_Eq 3784f2bc013cSdrh ** TK_EQ OP_Ne 3785f2bc013cSdrh ** TK_GT OP_Le 3786f2bc013cSdrh ** TK_LE OP_Gt 3787f2bc013cSdrh ** TK_GE OP_Lt 3788f2bc013cSdrh ** TK_LT OP_Ge 3789f2bc013cSdrh ** 3790f2bc013cSdrh ** For other values of pExpr->op, op is undefined and unused. 3791f2bc013cSdrh ** The value of TK_ and OP_ constants are arranged such that we 3792f2bc013cSdrh ** can compute the mapping above using the following expression. 3793f2bc013cSdrh ** Assert()s verify that the computation is correct. 3794f2bc013cSdrh */ 3795f2bc013cSdrh op = ((pExpr->op+(TK_ISNULL&1))^1)-(TK_ISNULL&1); 3796f2bc013cSdrh 3797f2bc013cSdrh /* Verify correct alignment of TK_ and OP_ constants 3798f2bc013cSdrh */ 3799f2bc013cSdrh assert( pExpr->op!=TK_ISNULL || op==OP_NotNull ); 3800f2bc013cSdrh assert( pExpr->op!=TK_NOTNULL || op==OP_IsNull ); 3801f2bc013cSdrh assert( pExpr->op!=TK_NE || op==OP_Eq ); 3802f2bc013cSdrh assert( pExpr->op!=TK_EQ || op==OP_Ne ); 3803f2bc013cSdrh assert( pExpr->op!=TK_LT || op==OP_Ge ); 3804f2bc013cSdrh assert( pExpr->op!=TK_LE || op==OP_Gt ); 3805f2bc013cSdrh assert( pExpr->op!=TK_GT || op==OP_Le ); 3806f2bc013cSdrh assert( pExpr->op!=TK_GE || op==OP_Lt ); 3807f2bc013cSdrh 3808cce7d176Sdrh switch( pExpr->op ){ 3809cce7d176Sdrh case TK_AND: { 3810c5499befSdrh testcase( jumpIfNull==0 ); 38114adee20fSdanielk1977 sqlite3ExprIfFalse(pParse, pExpr->pLeft, dest, jumpIfNull); 381254e2adb5Sdrh sqlite3ExprCachePush(pParse); 38134adee20fSdanielk1977 sqlite3ExprIfFalse(pParse, pExpr->pRight, dest, jumpIfNull); 3814d2490904Sdrh sqlite3ExprCachePop(pParse); 3815cce7d176Sdrh break; 3816cce7d176Sdrh } 3817cce7d176Sdrh case TK_OR: { 38184adee20fSdanielk1977 int d2 = sqlite3VdbeMakeLabel(v); 3819c5499befSdrh testcase( jumpIfNull==0 ); 382035573356Sdrh sqlite3ExprIfTrue(pParse, pExpr->pLeft, d2, jumpIfNull^SQLITE_JUMPIFNULL); 382154e2adb5Sdrh sqlite3ExprCachePush(pParse); 38224adee20fSdanielk1977 sqlite3ExprIfFalse(pParse, pExpr->pRight, dest, jumpIfNull); 38234adee20fSdanielk1977 sqlite3VdbeResolveLabel(v, d2); 3824d2490904Sdrh sqlite3ExprCachePop(pParse); 3825cce7d176Sdrh break; 3826cce7d176Sdrh } 3827cce7d176Sdrh case TK_NOT: { 38285c03f30aSdrh testcase( jumpIfNull==0 ); 38294adee20fSdanielk1977 sqlite3ExprIfTrue(pParse, pExpr->pLeft, dest, jumpIfNull); 3830cce7d176Sdrh break; 3831cce7d176Sdrh } 3832cce7d176Sdrh case TK_LT: 3833cce7d176Sdrh case TK_LE: 3834cce7d176Sdrh case TK_GT: 3835cce7d176Sdrh case TK_GE: 3836cce7d176Sdrh case TK_NE: 3837cce7d176Sdrh case TK_EQ: { 3838c5499befSdrh testcase( jumpIfNull==0 ); 3839b6da74ebSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 3840b6da74ebSdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); 384135573356Sdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, 38427d176105Sdrh r1, r2, dest, jumpIfNull); 38437d176105Sdrh assert(TK_LT==OP_Lt); testcase(op==OP_Lt); VdbeCoverageIf(v,op==OP_Lt); 38447d176105Sdrh assert(TK_LE==OP_Le); testcase(op==OP_Le); VdbeCoverageIf(v,op==OP_Le); 38457d176105Sdrh assert(TK_GT==OP_Gt); testcase(op==OP_Gt); VdbeCoverageIf(v,op==OP_Gt); 38467d176105Sdrh assert(TK_GE==OP_Ge); testcase(op==OP_Ge); VdbeCoverageIf(v,op==OP_Ge); 38477d176105Sdrh assert(TK_EQ==OP_Eq); testcase(op==OP_Eq); VdbeCoverageIf(v,op==OP_Eq); 38487d176105Sdrh assert(TK_NE==OP_Ne); testcase(op==OP_Ne); VdbeCoverageIf(v,op==OP_Ne); 3849c5499befSdrh testcase( regFree1==0 ); 3850c5499befSdrh testcase( regFree2==0 ); 3851cce7d176Sdrh break; 3852cce7d176Sdrh } 38536a2fe093Sdrh case TK_IS: 38546a2fe093Sdrh case TK_ISNOT: { 38556d4486aeSdrh testcase( pExpr->op==TK_IS ); 38566d4486aeSdrh testcase( pExpr->op==TK_ISNOT ); 3857b6da74ebSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 3858b6da74ebSdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); 38596a2fe093Sdrh op = (pExpr->op==TK_IS) ? TK_NE : TK_EQ; 38606a2fe093Sdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, 38617d176105Sdrh r1, r2, dest, SQLITE_NULLEQ); 38627d176105Sdrh VdbeCoverageIf(v, op==TK_EQ); 38637d176105Sdrh VdbeCoverageIf(v, op==TK_NE); 38646a2fe093Sdrh testcase( regFree1==0 ); 38656a2fe093Sdrh testcase( regFree2==0 ); 38666a2fe093Sdrh break; 38676a2fe093Sdrh } 3868cce7d176Sdrh case TK_ISNULL: 3869cce7d176Sdrh case TK_NOTNULL: { 38702dcef11bSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 38717d176105Sdrh sqlite3VdbeAddOp2(v, op, r1, dest); 38727d176105Sdrh testcase( op==TK_ISNULL ); VdbeCoverageIf(v, op==TK_ISNULL); 38737d176105Sdrh testcase( op==TK_NOTNULL ); VdbeCoverageIf(v, op==TK_NOTNULL); 3874c5499befSdrh testcase( regFree1==0 ); 3875cce7d176Sdrh break; 3876cce7d176Sdrh } 3877fef5208cSdrh case TK_BETWEEN: { 38785c03f30aSdrh testcase( jumpIfNull==0 ); 387936c563a2Sdrh exprCodeBetween(pParse, pExpr, dest, 0, jumpIfNull); 3880fef5208cSdrh break; 3881fef5208cSdrh } 3882bb201344Sshaneh #ifndef SQLITE_OMIT_SUBQUERY 3883e3365e6cSdrh case TK_IN: { 3884e3365e6cSdrh if( jumpIfNull ){ 3885e3365e6cSdrh sqlite3ExprCodeIN(pParse, pExpr, dest, dest); 3886e3365e6cSdrh }else{ 3887e3365e6cSdrh int destIfNull = sqlite3VdbeMakeLabel(v); 3888e3365e6cSdrh sqlite3ExprCodeIN(pParse, pExpr, dest, destIfNull); 3889e3365e6cSdrh sqlite3VdbeResolveLabel(v, destIfNull); 3890e3365e6cSdrh } 3891e3365e6cSdrh break; 3892e3365e6cSdrh } 3893bb201344Sshaneh #endif 3894cce7d176Sdrh default: { 3895991a1985Sdrh if( exprAlwaysFalse(pExpr) ){ 3896991a1985Sdrh sqlite3VdbeAddOp2(v, OP_Goto, 0, dest); 3897991a1985Sdrh }else if( exprAlwaysTrue(pExpr) ){ 3898991a1985Sdrh /* no-op */ 3899991a1985Sdrh }else{ 39002dcef11bSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr, ®Free1); 39012dcef11bSdrh sqlite3VdbeAddOp3(v, OP_IfNot, r1, dest, jumpIfNull!=0); 3902688852abSdrh VdbeCoverage(v); 3903c5499befSdrh testcase( regFree1==0 ); 3904c5499befSdrh testcase( jumpIfNull==0 ); 3905991a1985Sdrh } 3906cce7d176Sdrh break; 3907cce7d176Sdrh } 3908cce7d176Sdrh } 39092dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree1); 39102dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree2); 3911cce7d176Sdrh } 39122282792aSdrh 39132282792aSdrh /* 39141d9da70aSdrh ** Do a deep comparison of two expression trees. Return 0 if the two 39151d9da70aSdrh ** expressions are completely identical. Return 1 if they differ only 39161d9da70aSdrh ** by a COLLATE operator at the top level. Return 2 if there are differences 39171d9da70aSdrh ** other than the top-level COLLATE operator. 3918d40aab0eSdrh ** 3919619a1305Sdrh ** If any subelement of pB has Expr.iTable==(-1) then it is allowed 3920619a1305Sdrh ** to compare equal to an equivalent element in pA with Expr.iTable==iTab. 3921619a1305Sdrh ** 392266518ca7Sdrh ** The pA side might be using TK_REGISTER. If that is the case and pB is 392366518ca7Sdrh ** not using TK_REGISTER but is otherwise equivalent, then still return 0. 392466518ca7Sdrh ** 39251d9da70aSdrh ** Sometimes this routine will return 2 even if the two expressions 3926d40aab0eSdrh ** really are equivalent. If we cannot prove that the expressions are 39271d9da70aSdrh ** identical, we return 2 just to be safe. So if this routine 39281d9da70aSdrh ** returns 2, then you do not really know for certain if the two 39291d9da70aSdrh ** expressions are the same. But if you get a 0 or 1 return, then you 3930d40aab0eSdrh ** can be sure the expressions are the same. In the places where 39311d9da70aSdrh ** this routine is used, it does not hurt to get an extra 2 - that 3932d40aab0eSdrh ** just might result in some slightly slower code. But returning 39331d9da70aSdrh ** an incorrect 0 or 1 could lead to a malfunction. 39342282792aSdrh */ 3935619a1305Sdrh int sqlite3ExprCompare(Expr *pA, Expr *pB, int iTab){ 393610d1edf0Sdrh u32 combinedFlags; 39374b202ae2Sdanielk1977 if( pA==0 || pB==0 ){ 39381d9da70aSdrh return pB==pA ? 0 : 2; 39392282792aSdrh } 394010d1edf0Sdrh combinedFlags = pA->flags | pB->flags; 394110d1edf0Sdrh if( combinedFlags & EP_IntValue ){ 394210d1edf0Sdrh if( (pA->flags&pB->flags&EP_IntValue)!=0 && pA->u.iValue==pB->u.iValue ){ 394310d1edf0Sdrh return 0; 394410d1edf0Sdrh } 39451d9da70aSdrh return 2; 39466ab3a2ecSdanielk1977 } 3947c2acc4e4Sdrh if( pA->op!=pB->op ){ 3948619a1305Sdrh if( pA->op==TK_COLLATE && sqlite3ExprCompare(pA->pLeft, pB, iTab)<2 ){ 3949ae80ddeaSdrh return 1; 3950ae80ddeaSdrh } 3951619a1305Sdrh if( pB->op==TK_COLLATE && sqlite3ExprCompare(pA, pB->pLeft, iTab)<2 ){ 3952ae80ddeaSdrh return 1; 3953ae80ddeaSdrh } 3954ae80ddeaSdrh return 2; 3955ae80ddeaSdrh } 395610d1edf0Sdrh if( pA->op!=TK_COLUMN && ALWAYS(pA->op!=TK_AGG_COLUMN) && pA->u.zToken ){ 395710d1edf0Sdrh if( strcmp(pA->u.zToken,pB->u.zToken)!=0 ){ 395810d1edf0Sdrh return pA->op==TK_COLLATE ? 1 : 2; 395910d1edf0Sdrh } 396010d1edf0Sdrh } 396110d1edf0Sdrh if( (pA->flags & EP_Distinct)!=(pB->flags & EP_Distinct) ) return 2; 396285f8aa79Sdrh if( ALWAYS((combinedFlags & EP_TokenOnly)==0) ){ 396310d1edf0Sdrh if( combinedFlags & EP_xIsSelect ) return 2; 3964619a1305Sdrh if( sqlite3ExprCompare(pA->pLeft, pB->pLeft, iTab) ) return 2; 3965619a1305Sdrh if( sqlite3ExprCompare(pA->pRight, pB->pRight, iTab) ) return 2; 3966619a1305Sdrh if( sqlite3ExprListCompare(pA->x.pList, pB->x.pList, iTab) ) return 2; 396785f8aa79Sdrh if( ALWAYS((combinedFlags & EP_Reduced)==0) ){ 3968619a1305Sdrh if( pA->iColumn!=pB->iColumn ) return 2; 396966518ca7Sdrh if( pA->iTable!=pB->iTable 397085f8aa79Sdrh && (pA->iTable!=iTab || NEVER(pB->iTable>=0)) ) return 2; 39711d9da70aSdrh } 39721d9da70aSdrh } 39732646da7eSdrh return 0; 39742646da7eSdrh } 39752282792aSdrh 39768c6f666bSdrh /* 39778c6f666bSdrh ** Compare two ExprList objects. Return 0 if they are identical and 39788c6f666bSdrh ** non-zero if they differ in any way. 39798c6f666bSdrh ** 3980619a1305Sdrh ** If any subelement of pB has Expr.iTable==(-1) then it is allowed 3981619a1305Sdrh ** to compare equal to an equivalent element in pA with Expr.iTable==iTab. 3982619a1305Sdrh ** 39838c6f666bSdrh ** This routine might return non-zero for equivalent ExprLists. The 39848c6f666bSdrh ** only consequence will be disabled optimizations. But this routine 39858c6f666bSdrh ** must never return 0 if the two ExprList objects are different, or 39868c6f666bSdrh ** a malfunction will result. 39878c6f666bSdrh ** 39888c6f666bSdrh ** Two NULL pointers are considered to be the same. But a NULL pointer 39898c6f666bSdrh ** always differs from a non-NULL pointer. 39908c6f666bSdrh */ 3991619a1305Sdrh int sqlite3ExprListCompare(ExprList *pA, ExprList *pB, int iTab){ 39928c6f666bSdrh int i; 39938c6f666bSdrh if( pA==0 && pB==0 ) return 0; 39948c6f666bSdrh if( pA==0 || pB==0 ) return 1; 39958c6f666bSdrh if( pA->nExpr!=pB->nExpr ) return 1; 39968c6f666bSdrh for(i=0; i<pA->nExpr; i++){ 39978c6f666bSdrh Expr *pExprA = pA->a[i].pExpr; 39988c6f666bSdrh Expr *pExprB = pB->a[i].pExpr; 39998c6f666bSdrh if( pA->a[i].sortOrder!=pB->a[i].sortOrder ) return 1; 4000619a1305Sdrh if( sqlite3ExprCompare(pExprA, pExprB, iTab) ) return 1; 40018c6f666bSdrh } 40028c6f666bSdrh return 0; 40038c6f666bSdrh } 400413449892Sdrh 40052282792aSdrh /* 40064bd5f73fSdrh ** Return true if we can prove the pE2 will always be true if pE1 is 40074bd5f73fSdrh ** true. Return false if we cannot complete the proof or if pE2 might 40084bd5f73fSdrh ** be false. Examples: 40094bd5f73fSdrh ** 4010619a1305Sdrh ** pE1: x==5 pE2: x==5 Result: true 40114bd5f73fSdrh ** pE1: x>0 pE2: x==5 Result: false 4012619a1305Sdrh ** pE1: x=21 pE2: x=21 OR y=43 Result: true 40134bd5f73fSdrh ** pE1: x!=123 pE2: x IS NOT NULL Result: true 4014619a1305Sdrh ** pE1: x!=?1 pE2: x IS NOT NULL Result: true 4015619a1305Sdrh ** pE1: x IS NULL pE2: x IS NOT NULL Result: false 4016619a1305Sdrh ** pE1: x IS ?2 pE2: x IS NOT NULL Reuslt: false 40174bd5f73fSdrh ** 40184bd5f73fSdrh ** When comparing TK_COLUMN nodes between pE1 and pE2, if pE2 has 40194bd5f73fSdrh ** Expr.iTable<0 then assume a table number given by iTab. 40204bd5f73fSdrh ** 40214bd5f73fSdrh ** When in doubt, return false. Returning true might give a performance 40224bd5f73fSdrh ** improvement. Returning false might cause a performance reduction, but 40234bd5f73fSdrh ** it will always give the correct answer and is hence always safe. 40244bd5f73fSdrh */ 40254bd5f73fSdrh int sqlite3ExprImpliesExpr(Expr *pE1, Expr *pE2, int iTab){ 4026619a1305Sdrh if( sqlite3ExprCompare(pE1, pE2, iTab)==0 ){ 4027619a1305Sdrh return 1; 4028619a1305Sdrh } 4029619a1305Sdrh if( pE2->op==TK_OR 4030619a1305Sdrh && (sqlite3ExprImpliesExpr(pE1, pE2->pLeft, iTab) 4031619a1305Sdrh || sqlite3ExprImpliesExpr(pE1, pE2->pRight, iTab) ) 4032619a1305Sdrh ){ 4033619a1305Sdrh return 1; 4034619a1305Sdrh } 4035619a1305Sdrh if( pE2->op==TK_NOTNULL 4036619a1305Sdrh && sqlite3ExprCompare(pE1->pLeft, pE2->pLeft, iTab)==0 4037619a1305Sdrh && (pE1->op!=TK_ISNULL && pE1->op!=TK_IS) 4038619a1305Sdrh ){ 4039619a1305Sdrh return 1; 4040619a1305Sdrh } 4041619a1305Sdrh return 0; 40424bd5f73fSdrh } 40434bd5f73fSdrh 40444bd5f73fSdrh /* 4045030796dfSdrh ** An instance of the following structure is used by the tree walker 4046030796dfSdrh ** to count references to table columns in the arguments of an 4047ed551b95Sdrh ** aggregate function, in order to implement the 4048ed551b95Sdrh ** sqlite3FunctionThisSrc() routine. 4049374fdce4Sdrh */ 4050030796dfSdrh struct SrcCount { 4051030796dfSdrh SrcList *pSrc; /* One particular FROM clause in a nested query */ 4052030796dfSdrh int nThis; /* Number of references to columns in pSrcList */ 4053030796dfSdrh int nOther; /* Number of references to columns in other FROM clauses */ 4054030796dfSdrh }; 4055030796dfSdrh 4056030796dfSdrh /* 4057030796dfSdrh ** Count the number of references to columns. 4058030796dfSdrh */ 4059030796dfSdrh static int exprSrcCount(Walker *pWalker, Expr *pExpr){ 4060fb0a6081Sdrh /* The NEVER() on the second term is because sqlite3FunctionUsesThisSrc() 4061fb0a6081Sdrh ** is always called before sqlite3ExprAnalyzeAggregates() and so the 4062fb0a6081Sdrh ** TK_COLUMNs have not yet been converted into TK_AGG_COLUMN. If 4063fb0a6081Sdrh ** sqlite3FunctionUsesThisSrc() is used differently in the future, the 4064fb0a6081Sdrh ** NEVER() will need to be removed. */ 4065fb0a6081Sdrh if( pExpr->op==TK_COLUMN || NEVER(pExpr->op==TK_AGG_COLUMN) ){ 4066374fdce4Sdrh int i; 4067030796dfSdrh struct SrcCount *p = pWalker->u.pSrcCount; 4068030796dfSdrh SrcList *pSrc = p->pSrc; 4069374fdce4Sdrh for(i=0; i<pSrc->nSrc; i++){ 4070030796dfSdrh if( pExpr->iTable==pSrc->a[i].iCursor ) break; 4071374fdce4Sdrh } 4072030796dfSdrh if( i<pSrc->nSrc ){ 4073030796dfSdrh p->nThis++; 4074374fdce4Sdrh }else{ 4075030796dfSdrh p->nOther++; 4076374fdce4Sdrh } 4077374fdce4Sdrh } 4078030796dfSdrh return WRC_Continue; 4079030796dfSdrh } 4080374fdce4Sdrh 4081374fdce4Sdrh /* 4082030796dfSdrh ** Determine if any of the arguments to the pExpr Function reference 4083030796dfSdrh ** pSrcList. Return true if they do. Also return true if the function 4084030796dfSdrh ** has no arguments or has only constant arguments. Return false if pExpr 4085030796dfSdrh ** references columns but not columns of tables found in pSrcList. 4086374fdce4Sdrh */ 4087030796dfSdrh int sqlite3FunctionUsesThisSrc(Expr *pExpr, SrcList *pSrcList){ 4088374fdce4Sdrh Walker w; 4089030796dfSdrh struct SrcCount cnt; 4090374fdce4Sdrh assert( pExpr->op==TK_AGG_FUNCTION ); 4091374fdce4Sdrh memset(&w, 0, sizeof(w)); 4092030796dfSdrh w.xExprCallback = exprSrcCount; 4093030796dfSdrh w.u.pSrcCount = &cnt; 4094030796dfSdrh cnt.pSrc = pSrcList; 4095030796dfSdrh cnt.nThis = 0; 4096030796dfSdrh cnt.nOther = 0; 4097030796dfSdrh sqlite3WalkExprList(&w, pExpr->x.pList); 4098030796dfSdrh return cnt.nThis>0 || cnt.nOther==0; 4099374fdce4Sdrh } 4100374fdce4Sdrh 4101374fdce4Sdrh /* 410213449892Sdrh ** Add a new element to the pAggInfo->aCol[] array. Return the index of 410313449892Sdrh ** the new element. Return a negative number if malloc fails. 41042282792aSdrh */ 410517435752Sdrh static int addAggInfoColumn(sqlite3 *db, AggInfo *pInfo){ 410613449892Sdrh int i; 4107cf643729Sdrh pInfo->aCol = sqlite3ArrayAllocate( 410817435752Sdrh db, 4109cf643729Sdrh pInfo->aCol, 4110cf643729Sdrh sizeof(pInfo->aCol[0]), 4111cf643729Sdrh &pInfo->nColumn, 4112cf643729Sdrh &i 4113cf643729Sdrh ); 411413449892Sdrh return i; 41152282792aSdrh } 411613449892Sdrh 411713449892Sdrh /* 411813449892Sdrh ** Add a new element to the pAggInfo->aFunc[] array. Return the index of 411913449892Sdrh ** the new element. Return a negative number if malloc fails. 412013449892Sdrh */ 412117435752Sdrh static int addAggInfoFunc(sqlite3 *db, AggInfo *pInfo){ 412213449892Sdrh int i; 4123cf643729Sdrh pInfo->aFunc = sqlite3ArrayAllocate( 412417435752Sdrh db, 4125cf643729Sdrh pInfo->aFunc, 4126cf643729Sdrh sizeof(pInfo->aFunc[0]), 4127cf643729Sdrh &pInfo->nFunc, 4128cf643729Sdrh &i 4129cf643729Sdrh ); 413013449892Sdrh return i; 41312282792aSdrh } 41322282792aSdrh 41332282792aSdrh /* 41347d10d5a6Sdrh ** This is the xExprCallback for a tree walker. It is used to 41357d10d5a6Sdrh ** implement sqlite3ExprAnalyzeAggregates(). See sqlite3ExprAnalyzeAggregates 4136626a879aSdrh ** for additional information. 41372282792aSdrh */ 41387d10d5a6Sdrh static int analyzeAggregate(Walker *pWalker, Expr *pExpr){ 41392282792aSdrh int i; 41407d10d5a6Sdrh NameContext *pNC = pWalker->u.pNC; 4141a58fdfb1Sdanielk1977 Parse *pParse = pNC->pParse; 4142a58fdfb1Sdanielk1977 SrcList *pSrcList = pNC->pSrcList; 414313449892Sdrh AggInfo *pAggInfo = pNC->pAggInfo; 414413449892Sdrh 41452282792aSdrh switch( pExpr->op ){ 414689c69d00Sdrh case TK_AGG_COLUMN: 4147967e8b73Sdrh case TK_COLUMN: { 41488b213899Sdrh testcase( pExpr->op==TK_AGG_COLUMN ); 41498b213899Sdrh testcase( pExpr->op==TK_COLUMN ); 415013449892Sdrh /* Check to see if the column is in one of the tables in the FROM 415113449892Sdrh ** clause of the aggregate query */ 415220bc393cSdrh if( ALWAYS(pSrcList!=0) ){ 415313449892Sdrh struct SrcList_item *pItem = pSrcList->a; 415413449892Sdrh for(i=0; i<pSrcList->nSrc; i++, pItem++){ 415513449892Sdrh struct AggInfo_col *pCol; 4156c5cd1249Sdrh assert( !ExprHasProperty(pExpr, EP_TokenOnly|EP_Reduced) ); 415713449892Sdrh if( pExpr->iTable==pItem->iCursor ){ 415813449892Sdrh /* If we reach this point, it means that pExpr refers to a table 415913449892Sdrh ** that is in the FROM clause of the aggregate query. 416013449892Sdrh ** 416113449892Sdrh ** Make an entry for the column in pAggInfo->aCol[] if there 416213449892Sdrh ** is not an entry there already. 416313449892Sdrh */ 41647f906d63Sdrh int k; 416513449892Sdrh pCol = pAggInfo->aCol; 41667f906d63Sdrh for(k=0; k<pAggInfo->nColumn; k++, pCol++){ 416713449892Sdrh if( pCol->iTable==pExpr->iTable && 416813449892Sdrh pCol->iColumn==pExpr->iColumn ){ 41692282792aSdrh break; 41702282792aSdrh } 41712282792aSdrh } 41721e536953Sdanielk1977 if( (k>=pAggInfo->nColumn) 41731e536953Sdanielk1977 && (k = addAggInfoColumn(pParse->db, pAggInfo))>=0 41741e536953Sdanielk1977 ){ 41757f906d63Sdrh pCol = &pAggInfo->aCol[k]; 41760817d0dfSdanielk1977 pCol->pTab = pExpr->pTab; 417713449892Sdrh pCol->iTable = pExpr->iTable; 417813449892Sdrh pCol->iColumn = pExpr->iColumn; 41790a07c107Sdrh pCol->iMem = ++pParse->nMem; 418013449892Sdrh pCol->iSorterColumn = -1; 41815774b806Sdrh pCol->pExpr = pExpr; 418213449892Sdrh if( pAggInfo->pGroupBy ){ 418313449892Sdrh int j, n; 418413449892Sdrh ExprList *pGB = pAggInfo->pGroupBy; 418513449892Sdrh struct ExprList_item *pTerm = pGB->a; 418613449892Sdrh n = pGB->nExpr; 418713449892Sdrh for(j=0; j<n; j++, pTerm++){ 418813449892Sdrh Expr *pE = pTerm->pExpr; 418913449892Sdrh if( pE->op==TK_COLUMN && pE->iTable==pExpr->iTable && 419013449892Sdrh pE->iColumn==pExpr->iColumn ){ 419113449892Sdrh pCol->iSorterColumn = j; 419213449892Sdrh break; 41932282792aSdrh } 419413449892Sdrh } 419513449892Sdrh } 419613449892Sdrh if( pCol->iSorterColumn<0 ){ 419713449892Sdrh pCol->iSorterColumn = pAggInfo->nSortingColumn++; 419813449892Sdrh } 419913449892Sdrh } 420013449892Sdrh /* There is now an entry for pExpr in pAggInfo->aCol[] (either 420113449892Sdrh ** because it was there before or because we just created it). 420213449892Sdrh ** Convert the pExpr to be a TK_AGG_COLUMN referring to that 420313449892Sdrh ** pAggInfo->aCol[] entry. 420413449892Sdrh */ 4205ebb6a65dSdrh ExprSetVVAProperty(pExpr, EP_NoReduce); 420613449892Sdrh pExpr->pAggInfo = pAggInfo; 420713449892Sdrh pExpr->op = TK_AGG_COLUMN; 4208cf697396Sshane pExpr->iAgg = (i16)k; 420913449892Sdrh break; 421013449892Sdrh } /* endif pExpr->iTable==pItem->iCursor */ 421113449892Sdrh } /* end loop over pSrcList */ 4212a58fdfb1Sdanielk1977 } 42137d10d5a6Sdrh return WRC_Prune; 42142282792aSdrh } 42152282792aSdrh case TK_AGG_FUNCTION: { 42163a8c4be7Sdrh if( (pNC->ncFlags & NC_InAggFunc)==0 4217ed551b95Sdrh && pWalker->walkerDepth==pExpr->op2 42183a8c4be7Sdrh ){ 421913449892Sdrh /* Check to see if pExpr is a duplicate of another aggregate 422013449892Sdrh ** function that is already in the pAggInfo structure 422113449892Sdrh */ 422213449892Sdrh struct AggInfo_func *pItem = pAggInfo->aFunc; 422313449892Sdrh for(i=0; i<pAggInfo->nFunc; i++, pItem++){ 4224619a1305Sdrh if( sqlite3ExprCompare(pItem->pExpr, pExpr, -1)==0 ){ 42252282792aSdrh break; 42262282792aSdrh } 42272282792aSdrh } 422813449892Sdrh if( i>=pAggInfo->nFunc ){ 422913449892Sdrh /* pExpr is original. Make a new entry in pAggInfo->aFunc[] 423013449892Sdrh */ 423114db2665Sdanielk1977 u8 enc = ENC(pParse->db); 42321e536953Sdanielk1977 i = addAggInfoFunc(pParse->db, pAggInfo); 423313449892Sdrh if( i>=0 ){ 42346ab3a2ecSdanielk1977 assert( !ExprHasProperty(pExpr, EP_xIsSelect) ); 423513449892Sdrh pItem = &pAggInfo->aFunc[i]; 423613449892Sdrh pItem->pExpr = pExpr; 42370a07c107Sdrh pItem->iMem = ++pParse->nMem; 423833e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 423913449892Sdrh pItem->pFunc = sqlite3FindFunction(pParse->db, 424033e619fcSdrh pExpr->u.zToken, sqlite3Strlen30(pExpr->u.zToken), 42416ab3a2ecSdanielk1977 pExpr->x.pList ? pExpr->x.pList->nExpr : 0, enc, 0); 4242fd357974Sdrh if( pExpr->flags & EP_Distinct ){ 4243fd357974Sdrh pItem->iDistinct = pParse->nTab++; 4244fd357974Sdrh }else{ 4245fd357974Sdrh pItem->iDistinct = -1; 4246fd357974Sdrh } 42472282792aSdrh } 424813449892Sdrh } 424913449892Sdrh /* Make pExpr point to the appropriate pAggInfo->aFunc[] entry 425013449892Sdrh */ 4251c5cd1249Sdrh assert( !ExprHasProperty(pExpr, EP_TokenOnly|EP_Reduced) ); 4252ebb6a65dSdrh ExprSetVVAProperty(pExpr, EP_NoReduce); 4253cf697396Sshane pExpr->iAgg = (i16)i; 425413449892Sdrh pExpr->pAggInfo = pAggInfo; 42553a8c4be7Sdrh return WRC_Prune; 42566e83a57fSdrh }else{ 42576e83a57fSdrh return WRC_Continue; 42586e83a57fSdrh } 42592282792aSdrh } 4260a58fdfb1Sdanielk1977 } 42617d10d5a6Sdrh return WRC_Continue; 42627d10d5a6Sdrh } 42637d10d5a6Sdrh static int analyzeAggregatesInSelect(Walker *pWalker, Select *pSelect){ 4264d5a336efSdrh UNUSED_PARAMETER(pWalker); 4265d5a336efSdrh UNUSED_PARAMETER(pSelect); 42667d10d5a6Sdrh return WRC_Continue; 4267a58fdfb1Sdanielk1977 } 4268626a879aSdrh 4269626a879aSdrh /* 4270e8abb4caSdrh ** Analyze the pExpr expression looking for aggregate functions and 4271e8abb4caSdrh ** for variables that need to be added to AggInfo object that pNC->pAggInfo 4272e8abb4caSdrh ** points to. Additional entries are made on the AggInfo object as 4273e8abb4caSdrh ** necessary. 4274626a879aSdrh ** 4275626a879aSdrh ** This routine should only be called after the expression has been 42767d10d5a6Sdrh ** analyzed by sqlite3ResolveExprNames(). 4277626a879aSdrh */ 4278d2b3e23bSdrh void sqlite3ExprAnalyzeAggregates(NameContext *pNC, Expr *pExpr){ 42797d10d5a6Sdrh Walker w; 4280374fdce4Sdrh memset(&w, 0, sizeof(w)); 42817d10d5a6Sdrh w.xExprCallback = analyzeAggregate; 42827d10d5a6Sdrh w.xSelectCallback = analyzeAggregatesInSelect; 42837d10d5a6Sdrh w.u.pNC = pNC; 428420bc393cSdrh assert( pNC->pSrcList!=0 ); 42857d10d5a6Sdrh sqlite3WalkExpr(&w, pExpr); 42862282792aSdrh } 42875d9a4af9Sdrh 42885d9a4af9Sdrh /* 42895d9a4af9Sdrh ** Call sqlite3ExprAnalyzeAggregates() for every expression in an 42905d9a4af9Sdrh ** expression list. Return the number of errors. 42915d9a4af9Sdrh ** 42925d9a4af9Sdrh ** If an error is found, the analysis is cut short. 42935d9a4af9Sdrh */ 4294d2b3e23bSdrh void sqlite3ExprAnalyzeAggList(NameContext *pNC, ExprList *pList){ 42955d9a4af9Sdrh struct ExprList_item *pItem; 42965d9a4af9Sdrh int i; 42975d9a4af9Sdrh if( pList ){ 4298d2b3e23bSdrh for(pItem=pList->a, i=0; i<pList->nExpr; i++, pItem++){ 4299d2b3e23bSdrh sqlite3ExprAnalyzeAggregates(pNC, pItem->pExpr); 43005d9a4af9Sdrh } 43015d9a4af9Sdrh } 43025d9a4af9Sdrh } 4303892d3179Sdrh 4304892d3179Sdrh /* 4305ceea3321Sdrh ** Allocate a single new register for use to hold some intermediate result. 4306892d3179Sdrh */ 4307892d3179Sdrh int sqlite3GetTempReg(Parse *pParse){ 4308e55cbd72Sdrh if( pParse->nTempReg==0 ){ 4309892d3179Sdrh return ++pParse->nMem; 4310892d3179Sdrh } 43112f425f6bSdanielk1977 return pParse->aTempReg[--pParse->nTempReg]; 4312892d3179Sdrh } 4313ceea3321Sdrh 4314ceea3321Sdrh /* 4315ceea3321Sdrh ** Deallocate a register, making available for reuse for some other 4316ceea3321Sdrh ** purpose. 4317ceea3321Sdrh ** 4318ceea3321Sdrh ** If a register is currently being used by the column cache, then 431960ec914cSpeter.d.reid ** the deallocation is deferred until the column cache line that uses 4320ceea3321Sdrh ** the register becomes stale. 4321ceea3321Sdrh */ 4322892d3179Sdrh void sqlite3ReleaseTempReg(Parse *pParse, int iReg){ 43232dcef11bSdrh if( iReg && pParse->nTempReg<ArraySize(pParse->aTempReg) ){ 4324ceea3321Sdrh int i; 4325ceea3321Sdrh struct yColCache *p; 4326ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 4327ceea3321Sdrh if( p->iReg==iReg ){ 4328ceea3321Sdrh p->tempReg = 1; 4329ceea3321Sdrh return; 4330ceea3321Sdrh } 4331ceea3321Sdrh } 4332892d3179Sdrh pParse->aTempReg[pParse->nTempReg++] = iReg; 4333892d3179Sdrh } 4334892d3179Sdrh } 4335892d3179Sdrh 4336892d3179Sdrh /* 4337892d3179Sdrh ** Allocate or deallocate a block of nReg consecutive registers 4338892d3179Sdrh */ 4339892d3179Sdrh int sqlite3GetTempRange(Parse *pParse, int nReg){ 4340e55cbd72Sdrh int i, n; 4341892d3179Sdrh i = pParse->iRangeReg; 4342e55cbd72Sdrh n = pParse->nRangeReg; 4343f49f3523Sdrh if( nReg<=n ){ 4344f49f3523Sdrh assert( !usedAsColumnCache(pParse, i, i+n-1) ); 4345892d3179Sdrh pParse->iRangeReg += nReg; 4346892d3179Sdrh pParse->nRangeReg -= nReg; 4347892d3179Sdrh }else{ 4348892d3179Sdrh i = pParse->nMem+1; 4349892d3179Sdrh pParse->nMem += nReg; 4350892d3179Sdrh } 4351892d3179Sdrh return i; 4352892d3179Sdrh } 4353892d3179Sdrh void sqlite3ReleaseTempRange(Parse *pParse, int iReg, int nReg){ 4354f49f3523Sdrh sqlite3ExprCacheRemove(pParse, iReg, nReg); 4355892d3179Sdrh if( nReg>pParse->nRangeReg ){ 4356892d3179Sdrh pParse->nRangeReg = nReg; 4357892d3179Sdrh pParse->iRangeReg = iReg; 4358892d3179Sdrh } 4359892d3179Sdrh } 4360cdc69557Sdrh 4361cdc69557Sdrh /* 4362cdc69557Sdrh ** Mark all temporary registers as being unavailable for reuse. 4363cdc69557Sdrh */ 4364cdc69557Sdrh void sqlite3ClearTempRegCache(Parse *pParse){ 4365cdc69557Sdrh pParse->nTempReg = 0; 4366cdc69557Sdrh pParse->nRangeReg = 0; 4367cdc69557Sdrh } 4368