1cce7d176Sdrh /* 2b19a2bc6Sdrh ** 2001 September 15 3cce7d176Sdrh ** 4b19a2bc6Sdrh ** The author disclaims copyright to this source code. In place of 5b19a2bc6Sdrh ** a legal notice, here is a blessing: 6cce7d176Sdrh ** 7b19a2bc6Sdrh ** May you do good and not evil. 8b19a2bc6Sdrh ** May you find forgiveness for yourself and forgive others. 9b19a2bc6Sdrh ** May you share freely, never taking more than you give. 10cce7d176Sdrh ** 11cce7d176Sdrh ************************************************************************* 121ccde15dSdrh ** This file contains routines used for analyzing expressions and 13b19a2bc6Sdrh ** for generating VDBE code that evaluates expressions in SQLite. 14cce7d176Sdrh */ 15cce7d176Sdrh #include "sqliteInt.h" 16a2e00042Sdrh 17e014a838Sdanielk1977 /* 18e014a838Sdanielk1977 ** Return the 'affinity' of the expression pExpr if any. 19e014a838Sdanielk1977 ** 20e014a838Sdanielk1977 ** If pExpr is a column, a reference to a column via an 'AS' alias, 21e014a838Sdanielk1977 ** or a sub-select with a column as the return value, then the 22e014a838Sdanielk1977 ** affinity of that column is returned. Otherwise, 0x00 is returned, 23e014a838Sdanielk1977 ** indicating no affinity for the expression. 24e014a838Sdanielk1977 ** 25e014a838Sdanielk1977 ** i.e. the WHERE clause expresssions in the following statements all 26e014a838Sdanielk1977 ** have an affinity: 27e014a838Sdanielk1977 ** 28e014a838Sdanielk1977 ** CREATE TABLE t1(a); 29e014a838Sdanielk1977 ** SELECT * FROM t1 WHERE a; 30e014a838Sdanielk1977 ** SELECT a AS b FROM t1 WHERE b; 31e014a838Sdanielk1977 ** SELECT * FROM t1 WHERE (select a from t1); 32e014a838Sdanielk1977 */ 33bf3b721fSdanielk1977 char sqlite3ExprAffinity(Expr *pExpr){ 34580c8c18Sdrh int op; 35580c8c18Sdrh pExpr = sqlite3ExprSkipCollate(pExpr); 36580c8c18Sdrh op = pExpr->op; 37487e262fSdrh if( op==TK_SELECT ){ 386ab3a2ecSdanielk1977 assert( pExpr->flags&EP_xIsSelect ); 396ab3a2ecSdanielk1977 return sqlite3ExprAffinity(pExpr->x.pSelect->pEList->a[0].pExpr); 40a37cdde0Sdanielk1977 } 41487e262fSdrh #ifndef SQLITE_OMIT_CAST 42487e262fSdrh if( op==TK_CAST ){ 4333e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 44fdaac671Sdrh return sqlite3AffinityType(pExpr->u.zToken, 0); 45487e262fSdrh } 46487e262fSdrh #endif 47259a455fSdanielk1977 if( (op==TK_AGG_COLUMN || op==TK_COLUMN || op==TK_REGISTER) 48259a455fSdanielk1977 && pExpr->pTab!=0 49259a455fSdanielk1977 ){ 507d10d5a6Sdrh /* op==TK_REGISTER && pExpr->pTab!=0 happens when pExpr was originally 517d10d5a6Sdrh ** a TK_COLUMN but was previously evaluated and cached in a register */ 527d10d5a6Sdrh int j = pExpr->iColumn; 537d10d5a6Sdrh if( j<0 ) return SQLITE_AFF_INTEGER; 547d10d5a6Sdrh assert( pExpr->pTab && j<pExpr->pTab->nCol ); 557d10d5a6Sdrh return pExpr->pTab->aCol[j].affinity; 567d10d5a6Sdrh } 57a37cdde0Sdanielk1977 return pExpr->affinity; 58a37cdde0Sdanielk1977 } 59a37cdde0Sdanielk1977 6053db1458Sdrh /* 618b4c40d8Sdrh ** Set the collating sequence for expression pExpr to be the collating 62ae80ddeaSdrh ** sequence named by pToken. Return a pointer to a new Expr node that 63ae80ddeaSdrh ** implements the COLLATE operator. 640a8a406eSdrh ** 650a8a406eSdrh ** If a memory allocation error occurs, that fact is recorded in pParse->db 660a8a406eSdrh ** and the pExpr parameter is returned unchanged. 678b4c40d8Sdrh */ 680a8a406eSdrh Expr *sqlite3ExprAddCollateToken(Parse *pParse, Expr *pExpr, Token *pCollName){ 690a8a406eSdrh if( pCollName->n>0 ){ 70ae80ddeaSdrh Expr *pNew = sqlite3ExprAlloc(pParse->db, TK_COLLATE, pCollName, 1); 71ae80ddeaSdrh if( pNew ){ 72ae80ddeaSdrh pNew->pLeft = pExpr; 73a4c3c87eSdrh pNew->flags |= EP_Collate|EP_Skip; 740a8a406eSdrh pExpr = pNew; 75ae80ddeaSdrh } 760a8a406eSdrh } 770a8a406eSdrh return pExpr; 780a8a406eSdrh } 790a8a406eSdrh Expr *sqlite3ExprAddCollateString(Parse *pParse, Expr *pExpr, const char *zC){ 800a8a406eSdrh Token s; 81261d8a51Sdrh assert( zC!=0 ); 820a8a406eSdrh s.z = zC; 830a8a406eSdrh s.n = sqlite3Strlen30(s.z); 84261d8a51Sdrh return sqlite3ExprAddCollateToken(pParse, pExpr, &s); 850a8a406eSdrh } 860a8a406eSdrh 870a8a406eSdrh /* 88a4c3c87eSdrh ** Skip over any TK_COLLATE or TK_AS operators and any unlikely() 89a4c3c87eSdrh ** or likelihood() function at the root of an expression. 900a8a406eSdrh */ 910a8a406eSdrh Expr *sqlite3ExprSkipCollate(Expr *pExpr){ 92a4c3c87eSdrh while( pExpr && ExprHasProperty(pExpr, EP_Skip) ){ 93a4c3c87eSdrh if( ExprHasProperty(pExpr, EP_Unlikely) ){ 94cca9f3d2Sdrh assert( !ExprHasProperty(pExpr, EP_xIsSelect) ); 95cca9f3d2Sdrh assert( pExpr->x.pList->nExpr>0 ); 96a4c3c87eSdrh assert( pExpr->op==TK_FUNCTION ); 97cca9f3d2Sdrh pExpr = pExpr->x.pList->a[0].pExpr; 98cca9f3d2Sdrh }else{ 99a4c3c87eSdrh assert( pExpr->op==TK_COLLATE || pExpr->op==TK_AS ); 100d91eba96Sdrh pExpr = pExpr->pLeft; 101cca9f3d2Sdrh } 102d91eba96Sdrh } 1030a8a406eSdrh return pExpr; 1048b4c40d8Sdrh } 1058b4c40d8Sdrh 1068b4c40d8Sdrh /* 107ae80ddeaSdrh ** Return the collation sequence for the expression pExpr. If 108ae80ddeaSdrh ** there is no defined collating sequence, return NULL. 109ae80ddeaSdrh ** 110ae80ddeaSdrh ** The collating sequence might be determined by a COLLATE operator 111ae80ddeaSdrh ** or by the presence of a column with a defined collating sequence. 112ae80ddeaSdrh ** COLLATE operators take first precedence. Left operands take 113ae80ddeaSdrh ** precedence over right operands. 1140202b29eSdanielk1977 */ 1157cedc8d4Sdanielk1977 CollSeq *sqlite3ExprCollSeq(Parse *pParse, Expr *pExpr){ 116ae80ddeaSdrh sqlite3 *db = pParse->db; 1177cedc8d4Sdanielk1977 CollSeq *pColl = 0; 1187d10d5a6Sdrh Expr *p = pExpr; 119261d8a51Sdrh while( p ){ 120ae80ddeaSdrh int op = p->op; 121ae80ddeaSdrh if( op==TK_CAST || op==TK_UPLUS ){ 122ae80ddeaSdrh p = p->pLeft; 123ae80ddeaSdrh continue; 124ae80ddeaSdrh } 12536e78309Sdan if( op==TK_COLLATE || (op==TK_REGISTER && p->op2==TK_COLLATE) ){ 1267a66da13Sdrh pColl = sqlite3GetCollSeq(pParse, ENC(db), 0, p->u.zToken); 127ae80ddeaSdrh break; 128ae80ddeaSdrh } 129ae80ddeaSdrh if( p->pTab!=0 130ae80ddeaSdrh && (op==TK_AGG_COLUMN || op==TK_COLUMN 131ae80ddeaSdrh || op==TK_REGISTER || op==TK_TRIGGER) 132ae80ddeaSdrh ){ 1337d10d5a6Sdrh /* op==TK_REGISTER && p->pTab!=0 happens when pExpr was originally 1347d10d5a6Sdrh ** a TK_COLUMN but was previously evaluated and cached in a register */ 1357d10d5a6Sdrh int j = p->iColumn; 1367d10d5a6Sdrh if( j>=0 ){ 137ae80ddeaSdrh const char *zColl = p->pTab->aCol[j].zColl; 138c4a64facSdrh pColl = sqlite3FindCollSeq(db, ENC(db), zColl, 0); 1390202b29eSdanielk1977 } 1407d10d5a6Sdrh break; 1417d10d5a6Sdrh } 142ae80ddeaSdrh if( p->flags & EP_Collate ){ 143261d8a51Sdrh if( ALWAYS(p->pLeft) && (p->pLeft->flags & EP_Collate)!=0 ){ 1447d10d5a6Sdrh p = p->pLeft; 145ae80ddeaSdrh }else{ 146ae80ddeaSdrh p = p->pRight; 147ae80ddeaSdrh } 148ae80ddeaSdrh }else{ 149ae80ddeaSdrh break; 150ae80ddeaSdrh } 1510202b29eSdanielk1977 } 1527cedc8d4Sdanielk1977 if( sqlite3CheckCollSeq(pParse, pColl) ){ 1537cedc8d4Sdanielk1977 pColl = 0; 1547cedc8d4Sdanielk1977 } 1557cedc8d4Sdanielk1977 return pColl; 1560202b29eSdanielk1977 } 1570202b29eSdanielk1977 1580202b29eSdanielk1977 /* 159626a879aSdrh ** pExpr is an operand of a comparison operator. aff2 is the 160626a879aSdrh ** type affinity of the other operand. This routine returns the 16153db1458Sdrh ** type affinity that should be used for the comparison operator. 16253db1458Sdrh */ 163e014a838Sdanielk1977 char sqlite3CompareAffinity(Expr *pExpr, char aff2){ 164bf3b721fSdanielk1977 char aff1 = sqlite3ExprAffinity(pExpr); 165e014a838Sdanielk1977 if( aff1 && aff2 ){ 1668df447f0Sdrh /* Both sides of the comparison are columns. If one has numeric 1678df447f0Sdrh ** affinity, use that. Otherwise use no affinity. 168e014a838Sdanielk1977 */ 1698a51256cSdrh if( sqlite3IsNumericAffinity(aff1) || sqlite3IsNumericAffinity(aff2) ){ 170e014a838Sdanielk1977 return SQLITE_AFF_NUMERIC; 171e014a838Sdanielk1977 }else{ 172e014a838Sdanielk1977 return SQLITE_AFF_NONE; 173e014a838Sdanielk1977 } 174e014a838Sdanielk1977 }else if( !aff1 && !aff2 ){ 1755f6a87b3Sdrh /* Neither side of the comparison is a column. Compare the 1765f6a87b3Sdrh ** results directly. 177e014a838Sdanielk1977 */ 1785f6a87b3Sdrh return SQLITE_AFF_NONE; 179e014a838Sdanielk1977 }else{ 180e014a838Sdanielk1977 /* One side is a column, the other is not. Use the columns affinity. */ 181fe05af87Sdrh assert( aff1==0 || aff2==0 ); 182e014a838Sdanielk1977 return (aff1 + aff2); 183e014a838Sdanielk1977 } 184e014a838Sdanielk1977 } 185e014a838Sdanielk1977 18653db1458Sdrh /* 18753db1458Sdrh ** pExpr is a comparison operator. Return the type affinity that should 18853db1458Sdrh ** be applied to both operands prior to doing the comparison. 18953db1458Sdrh */ 190e014a838Sdanielk1977 static char comparisonAffinity(Expr *pExpr){ 191e014a838Sdanielk1977 char aff; 192e014a838Sdanielk1977 assert( pExpr->op==TK_EQ || pExpr->op==TK_IN || pExpr->op==TK_LT || 193e014a838Sdanielk1977 pExpr->op==TK_GT || pExpr->op==TK_GE || pExpr->op==TK_LE || 1946a2fe093Sdrh pExpr->op==TK_NE || pExpr->op==TK_IS || pExpr->op==TK_ISNOT ); 195e014a838Sdanielk1977 assert( pExpr->pLeft ); 196bf3b721fSdanielk1977 aff = sqlite3ExprAffinity(pExpr->pLeft); 197e014a838Sdanielk1977 if( pExpr->pRight ){ 198e014a838Sdanielk1977 aff = sqlite3CompareAffinity(pExpr->pRight, aff); 1996ab3a2ecSdanielk1977 }else if( ExprHasProperty(pExpr, EP_xIsSelect) ){ 2006ab3a2ecSdanielk1977 aff = sqlite3CompareAffinity(pExpr->x.pSelect->pEList->a[0].pExpr, aff); 2016ab3a2ecSdanielk1977 }else if( !aff ){ 202de087bd5Sdrh aff = SQLITE_AFF_NONE; 203e014a838Sdanielk1977 } 204e014a838Sdanielk1977 return aff; 205e014a838Sdanielk1977 } 206e014a838Sdanielk1977 207e014a838Sdanielk1977 /* 208e014a838Sdanielk1977 ** pExpr is a comparison expression, eg. '=', '<', IN(...) etc. 209e014a838Sdanielk1977 ** idx_affinity is the affinity of an indexed column. Return true 210e014a838Sdanielk1977 ** if the index with affinity idx_affinity may be used to implement 211e014a838Sdanielk1977 ** the comparison in pExpr. 212e014a838Sdanielk1977 */ 213e014a838Sdanielk1977 int sqlite3IndexAffinityOk(Expr *pExpr, char idx_affinity){ 214e014a838Sdanielk1977 char aff = comparisonAffinity(pExpr); 2158a51256cSdrh switch( aff ){ 2168a51256cSdrh case SQLITE_AFF_NONE: 2178a51256cSdrh return 1; 2188a51256cSdrh case SQLITE_AFF_TEXT: 2198a51256cSdrh return idx_affinity==SQLITE_AFF_TEXT; 2208a51256cSdrh default: 2218a51256cSdrh return sqlite3IsNumericAffinity(idx_affinity); 2228a51256cSdrh } 223e014a838Sdanielk1977 } 224e014a838Sdanielk1977 225a37cdde0Sdanielk1977 /* 22635573356Sdrh ** Return the P5 value that should be used for a binary comparison 227a37cdde0Sdanielk1977 ** opcode (OP_Eq, OP_Ge etc.) used to compare pExpr1 and pExpr2. 228a37cdde0Sdanielk1977 */ 22935573356Sdrh static u8 binaryCompareP5(Expr *pExpr1, Expr *pExpr2, int jumpIfNull){ 23035573356Sdrh u8 aff = (char)sqlite3ExprAffinity(pExpr2); 2311bd10f8aSdrh aff = (u8)sqlite3CompareAffinity(pExpr1, aff) | (u8)jumpIfNull; 23235573356Sdrh return aff; 233a37cdde0Sdanielk1977 } 234a37cdde0Sdanielk1977 235a2e00042Sdrh /* 2360202b29eSdanielk1977 ** Return a pointer to the collation sequence that should be used by 2370202b29eSdanielk1977 ** a binary comparison operator comparing pLeft and pRight. 2380202b29eSdanielk1977 ** 2390202b29eSdanielk1977 ** If the left hand expression has a collating sequence type, then it is 2400202b29eSdanielk1977 ** used. Otherwise the collation sequence for the right hand expression 2410202b29eSdanielk1977 ** is used, or the default (BINARY) if neither expression has a collating 2420202b29eSdanielk1977 ** type. 243bcbb04e5Sdanielk1977 ** 244bcbb04e5Sdanielk1977 ** Argument pRight (but not pLeft) may be a null pointer. In this case, 245bcbb04e5Sdanielk1977 ** it is not considered. 2460202b29eSdanielk1977 */ 247bcbb04e5Sdanielk1977 CollSeq *sqlite3BinaryCompareCollSeq( 248bcbb04e5Sdanielk1977 Parse *pParse, 249bcbb04e5Sdanielk1977 Expr *pLeft, 250bcbb04e5Sdanielk1977 Expr *pRight 251bcbb04e5Sdanielk1977 ){ 252ec41ddacSdrh CollSeq *pColl; 253ec41ddacSdrh assert( pLeft ); 254ae80ddeaSdrh if( pLeft->flags & EP_Collate ){ 255ae80ddeaSdrh pColl = sqlite3ExprCollSeq(pParse, pLeft); 256ae80ddeaSdrh }else if( pRight && (pRight->flags & EP_Collate)!=0 ){ 257ae80ddeaSdrh pColl = sqlite3ExprCollSeq(pParse, pRight); 258ec41ddacSdrh }else{ 259ec41ddacSdrh pColl = sqlite3ExprCollSeq(pParse, pLeft); 2600202b29eSdanielk1977 if( !pColl ){ 2617cedc8d4Sdanielk1977 pColl = sqlite3ExprCollSeq(pParse, pRight); 2620202b29eSdanielk1977 } 263ec41ddacSdrh } 2640202b29eSdanielk1977 return pColl; 2650202b29eSdanielk1977 } 2660202b29eSdanielk1977 2670202b29eSdanielk1977 /* 268be5c89acSdrh ** Generate code for a comparison operator. 269be5c89acSdrh */ 270be5c89acSdrh static int codeCompare( 271be5c89acSdrh Parse *pParse, /* The parsing (and code generating) context */ 272be5c89acSdrh Expr *pLeft, /* The left operand */ 273be5c89acSdrh Expr *pRight, /* The right operand */ 274be5c89acSdrh int opcode, /* The comparison opcode */ 27535573356Sdrh int in1, int in2, /* Register holding operands */ 276be5c89acSdrh int dest, /* Jump here if true. */ 277be5c89acSdrh int jumpIfNull /* If true, jump if either operand is NULL */ 278be5c89acSdrh ){ 27935573356Sdrh int p5; 28035573356Sdrh int addr; 28135573356Sdrh CollSeq *p4; 28235573356Sdrh 28335573356Sdrh p4 = sqlite3BinaryCompareCollSeq(pParse, pLeft, pRight); 28435573356Sdrh p5 = binaryCompareP5(pLeft, pRight, jumpIfNull); 28535573356Sdrh addr = sqlite3VdbeAddOp4(pParse->pVdbe, opcode, in2, dest, in1, 28635573356Sdrh (void*)p4, P4_COLLSEQ); 2871bd10f8aSdrh sqlite3VdbeChangeP5(pParse->pVdbe, (u8)p5); 28835573356Sdrh return addr; 289be5c89acSdrh } 290be5c89acSdrh 2914b5255acSdanielk1977 #if SQLITE_MAX_EXPR_DEPTH>0 2924b5255acSdanielk1977 /* 2934b5255acSdanielk1977 ** Check that argument nHeight is less than or equal to the maximum 2944b5255acSdanielk1977 ** expression depth allowed. If it is not, leave an error message in 2954b5255acSdanielk1977 ** pParse. 2964b5255acSdanielk1977 */ 2977d10d5a6Sdrh int sqlite3ExprCheckHeight(Parse *pParse, int nHeight){ 2984b5255acSdanielk1977 int rc = SQLITE_OK; 2994b5255acSdanielk1977 int mxHeight = pParse->db->aLimit[SQLITE_LIMIT_EXPR_DEPTH]; 3004b5255acSdanielk1977 if( nHeight>mxHeight ){ 3014b5255acSdanielk1977 sqlite3ErrorMsg(pParse, 3024b5255acSdanielk1977 "Expression tree is too large (maximum depth %d)", mxHeight 3034b5255acSdanielk1977 ); 3044b5255acSdanielk1977 rc = SQLITE_ERROR; 3054b5255acSdanielk1977 } 3064b5255acSdanielk1977 return rc; 3074b5255acSdanielk1977 } 3084b5255acSdanielk1977 3094b5255acSdanielk1977 /* The following three functions, heightOfExpr(), heightOfExprList() 3104b5255acSdanielk1977 ** and heightOfSelect(), are used to determine the maximum height 3114b5255acSdanielk1977 ** of any expression tree referenced by the structure passed as the 3124b5255acSdanielk1977 ** first argument. 3134b5255acSdanielk1977 ** 3144b5255acSdanielk1977 ** If this maximum height is greater than the current value pointed 3154b5255acSdanielk1977 ** to by pnHeight, the second parameter, then set *pnHeight to that 3164b5255acSdanielk1977 ** value. 3174b5255acSdanielk1977 */ 3184b5255acSdanielk1977 static void heightOfExpr(Expr *p, int *pnHeight){ 3194b5255acSdanielk1977 if( p ){ 3204b5255acSdanielk1977 if( p->nHeight>*pnHeight ){ 3214b5255acSdanielk1977 *pnHeight = p->nHeight; 3224b5255acSdanielk1977 } 3234b5255acSdanielk1977 } 3244b5255acSdanielk1977 } 3254b5255acSdanielk1977 static void heightOfExprList(ExprList *p, int *pnHeight){ 3264b5255acSdanielk1977 if( p ){ 3274b5255acSdanielk1977 int i; 3284b5255acSdanielk1977 for(i=0; i<p->nExpr; i++){ 3294b5255acSdanielk1977 heightOfExpr(p->a[i].pExpr, pnHeight); 3304b5255acSdanielk1977 } 3314b5255acSdanielk1977 } 3324b5255acSdanielk1977 } 3334b5255acSdanielk1977 static void heightOfSelect(Select *p, int *pnHeight){ 3344b5255acSdanielk1977 if( p ){ 3354b5255acSdanielk1977 heightOfExpr(p->pWhere, pnHeight); 3364b5255acSdanielk1977 heightOfExpr(p->pHaving, pnHeight); 3374b5255acSdanielk1977 heightOfExpr(p->pLimit, pnHeight); 3384b5255acSdanielk1977 heightOfExpr(p->pOffset, pnHeight); 3394b5255acSdanielk1977 heightOfExprList(p->pEList, pnHeight); 3404b5255acSdanielk1977 heightOfExprList(p->pGroupBy, pnHeight); 3414b5255acSdanielk1977 heightOfExprList(p->pOrderBy, pnHeight); 3424b5255acSdanielk1977 heightOfSelect(p->pPrior, pnHeight); 3434b5255acSdanielk1977 } 3444b5255acSdanielk1977 } 3454b5255acSdanielk1977 3464b5255acSdanielk1977 /* 3474b5255acSdanielk1977 ** Set the Expr.nHeight variable in the structure passed as an 3484b5255acSdanielk1977 ** argument. An expression with no children, Expr.pList or 3494b5255acSdanielk1977 ** Expr.pSelect member has a height of 1. Any other expression 3504b5255acSdanielk1977 ** has a height equal to the maximum height of any other 3514b5255acSdanielk1977 ** referenced Expr plus one. 3524b5255acSdanielk1977 */ 3534b5255acSdanielk1977 static void exprSetHeight(Expr *p){ 3544b5255acSdanielk1977 int nHeight = 0; 3554b5255acSdanielk1977 heightOfExpr(p->pLeft, &nHeight); 3564b5255acSdanielk1977 heightOfExpr(p->pRight, &nHeight); 3576ab3a2ecSdanielk1977 if( ExprHasProperty(p, EP_xIsSelect) ){ 3586ab3a2ecSdanielk1977 heightOfSelect(p->x.pSelect, &nHeight); 3596ab3a2ecSdanielk1977 }else{ 3606ab3a2ecSdanielk1977 heightOfExprList(p->x.pList, &nHeight); 3616ab3a2ecSdanielk1977 } 3624b5255acSdanielk1977 p->nHeight = nHeight + 1; 3634b5255acSdanielk1977 } 3644b5255acSdanielk1977 3654b5255acSdanielk1977 /* 3664b5255acSdanielk1977 ** Set the Expr.nHeight variable using the exprSetHeight() function. If 3674b5255acSdanielk1977 ** the height is greater than the maximum allowed expression depth, 3684b5255acSdanielk1977 ** leave an error in pParse. 3694b5255acSdanielk1977 */ 3704b5255acSdanielk1977 void sqlite3ExprSetHeight(Parse *pParse, Expr *p){ 3714b5255acSdanielk1977 exprSetHeight(p); 3727d10d5a6Sdrh sqlite3ExprCheckHeight(pParse, p->nHeight); 3734b5255acSdanielk1977 } 3744b5255acSdanielk1977 3754b5255acSdanielk1977 /* 3764b5255acSdanielk1977 ** Return the maximum height of any expression tree referenced 3774b5255acSdanielk1977 ** by the select statement passed as an argument. 3784b5255acSdanielk1977 */ 3794b5255acSdanielk1977 int sqlite3SelectExprHeight(Select *p){ 3804b5255acSdanielk1977 int nHeight = 0; 3814b5255acSdanielk1977 heightOfSelect(p, &nHeight); 3824b5255acSdanielk1977 return nHeight; 3834b5255acSdanielk1977 } 3844b5255acSdanielk1977 #else 3854b5255acSdanielk1977 #define exprSetHeight(y) 3864b5255acSdanielk1977 #endif /* SQLITE_MAX_EXPR_DEPTH>0 */ 3874b5255acSdanielk1977 388be5c89acSdrh /* 389b7916a78Sdrh ** This routine is the core allocator for Expr nodes. 390b7916a78Sdrh ** 391a76b5dfcSdrh ** Construct a new expression node and return a pointer to it. Memory 392b7916a78Sdrh ** for this node and for the pToken argument is a single allocation 393b7916a78Sdrh ** obtained from sqlite3DbMalloc(). The calling function 394a76b5dfcSdrh ** is responsible for making sure the node eventually gets freed. 395b7916a78Sdrh ** 396b7916a78Sdrh ** If dequote is true, then the token (if it exists) is dequoted. 397b7916a78Sdrh ** If dequote is false, no dequoting is performance. The deQuote 398b7916a78Sdrh ** parameter is ignored if pToken is NULL or if the token does not 399b7916a78Sdrh ** appear to be quoted. If the quotes were of the form "..." (double-quotes) 400b7916a78Sdrh ** then the EP_DblQuoted flag is set on the expression node. 40133e619fcSdrh ** 40233e619fcSdrh ** Special case: If op==TK_INTEGER and pToken points to a string that 40333e619fcSdrh ** can be translated into a 32-bit integer, then the token is not 40433e619fcSdrh ** stored in u.zToken. Instead, the integer values is written 40533e619fcSdrh ** into u.iValue and the EP_IntValue flag is set. No extra storage 40633e619fcSdrh ** is allocated to hold the integer text and the dequote flag is ignored. 407a76b5dfcSdrh */ 408b7916a78Sdrh Expr *sqlite3ExprAlloc( 409a1644fd8Sdanielk1977 sqlite3 *db, /* Handle for sqlite3DbMallocZero() (may be null) */ 41017435752Sdrh int op, /* Expression opcode */ 411b7916a78Sdrh const Token *pToken, /* Token argument. Might be NULL */ 412b7916a78Sdrh int dequote /* True to dequote */ 41317435752Sdrh ){ 414a76b5dfcSdrh Expr *pNew; 41533e619fcSdrh int nExtra = 0; 416cf697396Sshane int iValue = 0; 417b7916a78Sdrh 418b7916a78Sdrh if( pToken ){ 41933e619fcSdrh if( op!=TK_INTEGER || pToken->z==0 42033e619fcSdrh || sqlite3GetInt32(pToken->z, &iValue)==0 ){ 421b7916a78Sdrh nExtra = pToken->n+1; 422d50ffc41Sdrh assert( iValue>=0 ); 42333e619fcSdrh } 424a76b5dfcSdrh } 425b7916a78Sdrh pNew = sqlite3DbMallocZero(db, sizeof(Expr)+nExtra); 426b7916a78Sdrh if( pNew ){ 4271bd10f8aSdrh pNew->op = (u8)op; 428a58fdfb1Sdanielk1977 pNew->iAgg = -1; 429a76b5dfcSdrh if( pToken ){ 43033e619fcSdrh if( nExtra==0 ){ 43133e619fcSdrh pNew->flags |= EP_IntValue; 43233e619fcSdrh pNew->u.iValue = iValue; 43333e619fcSdrh }else{ 434d9da78a2Sdrh int c; 43533e619fcSdrh pNew->u.zToken = (char*)&pNew[1]; 436b07028f7Sdrh assert( pToken->z!=0 || pToken->n==0 ); 437b07028f7Sdrh if( pToken->n ) memcpy(pNew->u.zToken, pToken->z, pToken->n); 43833e619fcSdrh pNew->u.zToken[pToken->n] = 0; 439b7916a78Sdrh if( dequote && nExtra>=3 440d9da78a2Sdrh && ((c = pToken->z[0])=='\'' || c=='"' || c=='[' || c=='`') ){ 44133e619fcSdrh sqlite3Dequote(pNew->u.zToken); 44224fb627aSdrh if( c=='"' ) pNew->flags |= EP_DblQuoted; 443a34001c9Sdrh } 444a34001c9Sdrh } 44533e619fcSdrh } 446b7916a78Sdrh #if SQLITE_MAX_EXPR_DEPTH>0 447b7916a78Sdrh pNew->nHeight = 1; 448b7916a78Sdrh #endif 449a34001c9Sdrh } 450a76b5dfcSdrh return pNew; 451a76b5dfcSdrh } 452a76b5dfcSdrh 453a76b5dfcSdrh /* 454b7916a78Sdrh ** Allocate a new expression node from a zero-terminated token that has 455b7916a78Sdrh ** already been dequoted. 456b7916a78Sdrh */ 457b7916a78Sdrh Expr *sqlite3Expr( 458b7916a78Sdrh sqlite3 *db, /* Handle for sqlite3DbMallocZero() (may be null) */ 459b7916a78Sdrh int op, /* Expression opcode */ 460b7916a78Sdrh const char *zToken /* Token argument. Might be NULL */ 461b7916a78Sdrh ){ 462b7916a78Sdrh Token x; 463b7916a78Sdrh x.z = zToken; 464b7916a78Sdrh x.n = zToken ? sqlite3Strlen30(zToken) : 0; 465b7916a78Sdrh return sqlite3ExprAlloc(db, op, &x, 0); 466b7916a78Sdrh } 467b7916a78Sdrh 468b7916a78Sdrh /* 469b7916a78Sdrh ** Attach subtrees pLeft and pRight to the Expr node pRoot. 470b7916a78Sdrh ** 471b7916a78Sdrh ** If pRoot==NULL that means that a memory allocation error has occurred. 472b7916a78Sdrh ** In that case, delete the subtrees pLeft and pRight. 473b7916a78Sdrh */ 474b7916a78Sdrh void sqlite3ExprAttachSubtrees( 475b7916a78Sdrh sqlite3 *db, 476b7916a78Sdrh Expr *pRoot, 477b7916a78Sdrh Expr *pLeft, 478b7916a78Sdrh Expr *pRight 479b7916a78Sdrh ){ 480b7916a78Sdrh if( pRoot==0 ){ 481b7916a78Sdrh assert( db->mallocFailed ); 482b7916a78Sdrh sqlite3ExprDelete(db, pLeft); 483b7916a78Sdrh sqlite3ExprDelete(db, pRight); 484b7916a78Sdrh }else{ 485b7916a78Sdrh if( pRight ){ 486b7916a78Sdrh pRoot->pRight = pRight; 487ae80ddeaSdrh pRoot->flags |= EP_Collate & pRight->flags; 488b7916a78Sdrh } 489b7916a78Sdrh if( pLeft ){ 490b7916a78Sdrh pRoot->pLeft = pLeft; 491ae80ddeaSdrh pRoot->flags |= EP_Collate & pLeft->flags; 492b7916a78Sdrh } 493b7916a78Sdrh exprSetHeight(pRoot); 494b7916a78Sdrh } 495b7916a78Sdrh } 496b7916a78Sdrh 497b7916a78Sdrh /* 498bf664469Sdrh ** Allocate a Expr node which joins as many as two subtrees. 499b7916a78Sdrh ** 500bf664469Sdrh ** One or both of the subtrees can be NULL. Return a pointer to the new 501bf664469Sdrh ** Expr node. Or, if an OOM error occurs, set pParse->db->mallocFailed, 502bf664469Sdrh ** free the subtrees and return NULL. 503206f3d96Sdrh */ 50417435752Sdrh Expr *sqlite3PExpr( 50517435752Sdrh Parse *pParse, /* Parsing context */ 50617435752Sdrh int op, /* Expression opcode */ 50717435752Sdrh Expr *pLeft, /* Left operand */ 50817435752Sdrh Expr *pRight, /* Right operand */ 50917435752Sdrh const Token *pToken /* Argument token */ 51017435752Sdrh ){ 5115fb52caaSdrh Expr *p; 5125fb52caaSdrh if( op==TK_AND && pLeft && pRight ){ 5135fb52caaSdrh /* Take advantage of short-circuit false optimization for AND */ 5145fb52caaSdrh p = sqlite3ExprAnd(pParse->db, pLeft, pRight); 5155fb52caaSdrh }else{ 5165fb52caaSdrh p = sqlite3ExprAlloc(pParse->db, op, pToken, 1); 517b7916a78Sdrh sqlite3ExprAttachSubtrees(pParse->db, p, pLeft, pRight); 5185fb52caaSdrh } 5192b359bdbSdan if( p ) { 5202b359bdbSdan sqlite3ExprCheckHeight(pParse, p->nHeight); 5212b359bdbSdan } 5224e0cff60Sdrh return p; 5234e0cff60Sdrh } 5244e0cff60Sdrh 5254e0cff60Sdrh /* 526991a1985Sdrh ** If the expression is always either TRUE or FALSE (respectively), 527991a1985Sdrh ** then return 1. If one cannot determine the truth value of the 528991a1985Sdrh ** expression at compile-time return 0. 529991a1985Sdrh ** 530991a1985Sdrh ** This is an optimization. If is OK to return 0 here even if 531991a1985Sdrh ** the expression really is always false or false (a false negative). 532991a1985Sdrh ** But it is a bug to return 1 if the expression might have different 533991a1985Sdrh ** boolean values in different circumstances (a false positive.) 5345fb52caaSdrh ** 5355fb52caaSdrh ** Note that if the expression is part of conditional for a 5365fb52caaSdrh ** LEFT JOIN, then we cannot determine at compile-time whether or not 5375fb52caaSdrh ** is it true or false, so always return 0. 5385fb52caaSdrh */ 539991a1985Sdrh static int exprAlwaysTrue(Expr *p){ 540991a1985Sdrh int v = 0; 541991a1985Sdrh if( ExprHasProperty(p, EP_FromJoin) ) return 0; 542991a1985Sdrh if( !sqlite3ExprIsInteger(p, &v) ) return 0; 543991a1985Sdrh return v!=0; 544991a1985Sdrh } 5455fb52caaSdrh static int exprAlwaysFalse(Expr *p){ 5465fb52caaSdrh int v = 0; 5475fb52caaSdrh if( ExprHasProperty(p, EP_FromJoin) ) return 0; 5485fb52caaSdrh if( !sqlite3ExprIsInteger(p, &v) ) return 0; 5495fb52caaSdrh return v==0; 5505fb52caaSdrh } 5515fb52caaSdrh 5525fb52caaSdrh /* 55391bb0eedSdrh ** Join two expressions using an AND operator. If either expression is 55491bb0eedSdrh ** NULL, then just return the other expression. 5555fb52caaSdrh ** 5565fb52caaSdrh ** If one side or the other of the AND is known to be false, then instead 5575fb52caaSdrh ** of returning an AND expression, just return a constant expression with 5585fb52caaSdrh ** a value of false. 55991bb0eedSdrh */ 5601e536953Sdanielk1977 Expr *sqlite3ExprAnd(sqlite3 *db, Expr *pLeft, Expr *pRight){ 56191bb0eedSdrh if( pLeft==0 ){ 56291bb0eedSdrh return pRight; 56391bb0eedSdrh }else if( pRight==0 ){ 56491bb0eedSdrh return pLeft; 5655fb52caaSdrh }else if( exprAlwaysFalse(pLeft) || exprAlwaysFalse(pRight) ){ 5665fb52caaSdrh sqlite3ExprDelete(db, pLeft); 5675fb52caaSdrh sqlite3ExprDelete(db, pRight); 5685fb52caaSdrh return sqlite3ExprAlloc(db, TK_INTEGER, &sqlite3IntTokens[0], 0); 56991bb0eedSdrh }else{ 570b7916a78Sdrh Expr *pNew = sqlite3ExprAlloc(db, TK_AND, 0, 0); 571b7916a78Sdrh sqlite3ExprAttachSubtrees(db, pNew, pLeft, pRight); 572b7916a78Sdrh return pNew; 573a76b5dfcSdrh } 574a76b5dfcSdrh } 575a76b5dfcSdrh 576a76b5dfcSdrh /* 577a76b5dfcSdrh ** Construct a new expression node for a function with multiple 578a76b5dfcSdrh ** arguments. 579a76b5dfcSdrh */ 58017435752Sdrh Expr *sqlite3ExprFunction(Parse *pParse, ExprList *pList, Token *pToken){ 581a76b5dfcSdrh Expr *pNew; 582633e6d57Sdrh sqlite3 *db = pParse->db; 5834b202ae2Sdanielk1977 assert( pToken ); 584b7916a78Sdrh pNew = sqlite3ExprAlloc(db, TK_FUNCTION, pToken, 1); 585a76b5dfcSdrh if( pNew==0 ){ 586d9da78a2Sdrh sqlite3ExprListDelete(db, pList); /* Avoid memory leak when malloc fails */ 587a76b5dfcSdrh return 0; 588a76b5dfcSdrh } 5896ab3a2ecSdanielk1977 pNew->x.pList = pList; 5906ab3a2ecSdanielk1977 assert( !ExprHasProperty(pNew, EP_xIsSelect) ); 5914b5255acSdanielk1977 sqlite3ExprSetHeight(pParse, pNew); 592a76b5dfcSdrh return pNew; 593a76b5dfcSdrh } 594a76b5dfcSdrh 595a76b5dfcSdrh /* 596fa6bc000Sdrh ** Assign a variable number to an expression that encodes a wildcard 597fa6bc000Sdrh ** in the original SQL statement. 598fa6bc000Sdrh ** 599fa6bc000Sdrh ** Wildcards consisting of a single "?" are assigned the next sequential 600fa6bc000Sdrh ** variable number. 601fa6bc000Sdrh ** 602fa6bc000Sdrh ** Wildcards of the form "?nnn" are assigned the number "nnn". We make 603fa6bc000Sdrh ** sure "nnn" is not too be to avoid a denial of service attack when 604fa6bc000Sdrh ** the SQL statement comes from an external source. 605fa6bc000Sdrh ** 60651f49f17Sdrh ** Wildcards of the form ":aaa", "@aaa", or "$aaa" are assigned the same number 607fa6bc000Sdrh ** as the previous instance of the same wildcard. Or if this is the first 608fa6bc000Sdrh ** instance of the wildcard, the next sequenial variable number is 609fa6bc000Sdrh ** assigned. 610fa6bc000Sdrh */ 611fa6bc000Sdrh void sqlite3ExprAssignVarNumber(Parse *pParse, Expr *pExpr){ 61217435752Sdrh sqlite3 *db = pParse->db; 613b7916a78Sdrh const char *z; 61417435752Sdrh 615fa6bc000Sdrh if( pExpr==0 ) return; 616c5cd1249Sdrh assert( !ExprHasProperty(pExpr, EP_IntValue|EP_Reduced|EP_TokenOnly) ); 61733e619fcSdrh z = pExpr->u.zToken; 618b7916a78Sdrh assert( z!=0 ); 619b7916a78Sdrh assert( z[0]!=0 ); 620b7916a78Sdrh if( z[1]==0 ){ 621fa6bc000Sdrh /* Wildcard of the form "?". Assign the next variable number */ 622b7916a78Sdrh assert( z[0]=='?' ); 6238677d308Sdrh pExpr->iColumn = (ynVar)(++pParse->nVar); 624124c0b49Sdrh }else{ 625124c0b49Sdrh ynVar x = 0; 626124c0b49Sdrh u32 n = sqlite3Strlen30(z); 627124c0b49Sdrh if( z[0]=='?' ){ 628fa6bc000Sdrh /* Wildcard of the form "?nnn". Convert "nnn" to an integer and 629fa6bc000Sdrh ** use it as the variable number */ 630c8d735aeSdan i64 i; 631124c0b49Sdrh int bOk = 0==sqlite3Atoi64(&z[1], &i, n-1, SQLITE_UTF8); 632124c0b49Sdrh pExpr->iColumn = x = (ynVar)i; 633c5499befSdrh testcase( i==0 ); 634c5499befSdrh testcase( i==1 ); 635c5499befSdrh testcase( i==db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER]-1 ); 636c5499befSdrh testcase( i==db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER] ); 637c8d735aeSdan if( bOk==0 || i<1 || i>db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER] ){ 638fa6bc000Sdrh sqlite3ErrorMsg(pParse, "variable number must be between ?1 and ?%d", 639bb4957f8Sdrh db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER]); 640124c0b49Sdrh x = 0; 641fa6bc000Sdrh } 642fa6bc000Sdrh if( i>pParse->nVar ){ 6431df2db7fSshaneh pParse->nVar = (int)i; 644fa6bc000Sdrh } 645fa6bc000Sdrh }else{ 64651f49f17Sdrh /* Wildcards like ":aaa", "$aaa" or "@aaa". Reuse the same variable 647fa6bc000Sdrh ** number as the prior appearance of the same name, or if the name 648fa6bc000Sdrh ** has never appeared before, reuse the same variable number 649fa6bc000Sdrh */ 650124c0b49Sdrh ynVar i; 651124c0b49Sdrh for(i=0; i<pParse->nzVar; i++){ 652503a686eSdrh if( pParse->azVar[i] && strcmp(pParse->azVar[i],z)==0 ){ 653124c0b49Sdrh pExpr->iColumn = x = (ynVar)i+1; 654fa6bc000Sdrh break; 655fa6bc000Sdrh } 656fa6bc000Sdrh } 657124c0b49Sdrh if( x==0 ) x = pExpr->iColumn = (ynVar)(++pParse->nVar); 658fa6bc000Sdrh } 659124c0b49Sdrh if( x>0 ){ 660124c0b49Sdrh if( x>pParse->nzVar ){ 661124c0b49Sdrh char **a; 662124c0b49Sdrh a = sqlite3DbRealloc(db, pParse->azVar, x*sizeof(a[0])); 663124c0b49Sdrh if( a==0 ) return; /* Error reported through db->mallocFailed */ 664124c0b49Sdrh pParse->azVar = a; 665124c0b49Sdrh memset(&a[pParse->nzVar], 0, (x-pParse->nzVar)*sizeof(a[0])); 666124c0b49Sdrh pParse->nzVar = x; 667124c0b49Sdrh } 668124c0b49Sdrh if( z[0]!='?' || pParse->azVar[x-1]==0 ){ 669124c0b49Sdrh sqlite3DbFree(db, pParse->azVar[x-1]); 670124c0b49Sdrh pParse->azVar[x-1] = sqlite3DbStrNDup(db, z, n); 671fa6bc000Sdrh } 672fa6bc000Sdrh } 673fa6bc000Sdrh } 674bb4957f8Sdrh if( !pParse->nErr && pParse->nVar>db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER] ){ 675832b2664Sdanielk1977 sqlite3ErrorMsg(pParse, "too many SQL variables"); 676832b2664Sdanielk1977 } 677fa6bc000Sdrh } 678fa6bc000Sdrh 679fa6bc000Sdrh /* 680f6963f99Sdan ** Recursively delete an expression tree. 681a2e00042Sdrh */ 682f6963f99Sdan void sqlite3ExprDelete(sqlite3 *db, Expr *p){ 683f6963f99Sdan if( p==0 ) return; 684d50ffc41Sdrh /* Sanity check: Assert that the IntValue is non-negative if it exists */ 685d50ffc41Sdrh assert( !ExprHasProperty(p, EP_IntValue) || p->u.iValue>=0 ); 686c5cd1249Sdrh if( !ExprHasProperty(p, EP_TokenOnly) ){ 687c5cd1249Sdrh /* The Expr.x union is never used at the same time as Expr.pRight */ 688c5cd1249Sdrh assert( p->x.pList==0 || p->pRight==0 ); 689633e6d57Sdrh sqlite3ExprDelete(db, p->pLeft); 690633e6d57Sdrh sqlite3ExprDelete(db, p->pRight); 691c5cd1249Sdrh if( ExprHasProperty(p, EP_MemToken) ) sqlite3DbFree(db, p->u.zToken); 6926ab3a2ecSdanielk1977 if( ExprHasProperty(p, EP_xIsSelect) ){ 6936ab3a2ecSdanielk1977 sqlite3SelectDelete(db, p->x.pSelect); 6946ab3a2ecSdanielk1977 }else{ 6956ab3a2ecSdanielk1977 sqlite3ExprListDelete(db, p->x.pList); 6966ab3a2ecSdanielk1977 } 6976ab3a2ecSdanielk1977 } 69833e619fcSdrh if( !ExprHasProperty(p, EP_Static) ){ 699633e6d57Sdrh sqlite3DbFree(db, p); 700a2e00042Sdrh } 70133e619fcSdrh } 702a2e00042Sdrh 703d2687b77Sdrh /* 7046ab3a2ecSdanielk1977 ** Return the number of bytes allocated for the expression structure 7056ab3a2ecSdanielk1977 ** passed as the first argument. This is always one of EXPR_FULLSIZE, 7066ab3a2ecSdanielk1977 ** EXPR_REDUCEDSIZE or EXPR_TOKENONLYSIZE. 7076ab3a2ecSdanielk1977 */ 7086ab3a2ecSdanielk1977 static int exprStructSize(Expr *p){ 7096ab3a2ecSdanielk1977 if( ExprHasProperty(p, EP_TokenOnly) ) return EXPR_TOKENONLYSIZE; 7106ab3a2ecSdanielk1977 if( ExprHasProperty(p, EP_Reduced) ) return EXPR_REDUCEDSIZE; 7116ab3a2ecSdanielk1977 return EXPR_FULLSIZE; 7126ab3a2ecSdanielk1977 } 7136ab3a2ecSdanielk1977 7146ab3a2ecSdanielk1977 /* 71533e619fcSdrh ** The dupedExpr*Size() routines each return the number of bytes required 71633e619fcSdrh ** to store a copy of an expression or expression tree. They differ in 71733e619fcSdrh ** how much of the tree is measured. 71833e619fcSdrh ** 71933e619fcSdrh ** dupedExprStructSize() Size of only the Expr structure 72033e619fcSdrh ** dupedExprNodeSize() Size of Expr + space for token 72133e619fcSdrh ** dupedExprSize() Expr + token + subtree components 72233e619fcSdrh ** 72333e619fcSdrh *************************************************************************** 72433e619fcSdrh ** 72533e619fcSdrh ** The dupedExprStructSize() function returns two values OR-ed together: 72633e619fcSdrh ** (1) the space required for a copy of the Expr structure only and 72733e619fcSdrh ** (2) the EP_xxx flags that indicate what the structure size should be. 72833e619fcSdrh ** The return values is always one of: 72933e619fcSdrh ** 73033e619fcSdrh ** EXPR_FULLSIZE 73133e619fcSdrh ** EXPR_REDUCEDSIZE | EP_Reduced 73233e619fcSdrh ** EXPR_TOKENONLYSIZE | EP_TokenOnly 73333e619fcSdrh ** 73433e619fcSdrh ** The size of the structure can be found by masking the return value 73533e619fcSdrh ** of this routine with 0xfff. The flags can be found by masking the 73633e619fcSdrh ** return value with EP_Reduced|EP_TokenOnly. 73733e619fcSdrh ** 73833e619fcSdrh ** Note that with flags==EXPRDUP_REDUCE, this routines works on full-size 73933e619fcSdrh ** (unreduced) Expr objects as they or originally constructed by the parser. 74033e619fcSdrh ** During expression analysis, extra information is computed and moved into 74133e619fcSdrh ** later parts of teh Expr object and that extra information might get chopped 74233e619fcSdrh ** off if the expression is reduced. Note also that it does not work to 74333e619fcSdrh ** make a EXPRDUP_REDUCE copy of a reduced expression. It is only legal 74433e619fcSdrh ** to reduce a pristine expression tree from the parser. The implementation 74533e619fcSdrh ** of dupedExprStructSize() contain multiple assert() statements that attempt 74633e619fcSdrh ** to enforce this constraint. 7476ab3a2ecSdanielk1977 */ 7486ab3a2ecSdanielk1977 static int dupedExprStructSize(Expr *p, int flags){ 7496ab3a2ecSdanielk1977 int nSize; 75033e619fcSdrh assert( flags==EXPRDUP_REDUCE || flags==0 ); /* Only one flag value allowed */ 751aecd8021Sdrh assert( EXPR_FULLSIZE<=0xfff ); 752aecd8021Sdrh assert( (0xfff & (EP_Reduced|EP_TokenOnly))==0 ); 7536ab3a2ecSdanielk1977 if( 0==(flags&EXPRDUP_REDUCE) ){ 7546ab3a2ecSdanielk1977 nSize = EXPR_FULLSIZE; 7556ab3a2ecSdanielk1977 }else{ 756c5cd1249Sdrh assert( !ExprHasProperty(p, EP_TokenOnly|EP_Reduced) ); 75733e619fcSdrh assert( !ExprHasProperty(p, EP_FromJoin) ); 758c5cd1249Sdrh assert( !ExprHasProperty(p, EP_MemToken) ); 759ebb6a65dSdrh assert( !ExprHasProperty(p, EP_NoReduce) ); 760aecd8021Sdrh if( p->pLeft || p->x.pList ){ 76133e619fcSdrh nSize = EXPR_REDUCEDSIZE | EP_Reduced; 76233e619fcSdrh }else{ 763aecd8021Sdrh assert( p->pRight==0 ); 76433e619fcSdrh nSize = EXPR_TOKENONLYSIZE | EP_TokenOnly; 76533e619fcSdrh } 7666ab3a2ecSdanielk1977 } 7676ab3a2ecSdanielk1977 return nSize; 7686ab3a2ecSdanielk1977 } 7696ab3a2ecSdanielk1977 7706ab3a2ecSdanielk1977 /* 77133e619fcSdrh ** This function returns the space in bytes required to store the copy 77233e619fcSdrh ** of the Expr structure and a copy of the Expr.u.zToken string (if that 77333e619fcSdrh ** string is defined.) 7746ab3a2ecSdanielk1977 */ 7756ab3a2ecSdanielk1977 static int dupedExprNodeSize(Expr *p, int flags){ 77633e619fcSdrh int nByte = dupedExprStructSize(p, flags) & 0xfff; 77733e619fcSdrh if( !ExprHasProperty(p, EP_IntValue) && p->u.zToken ){ 77833e619fcSdrh nByte += sqlite3Strlen30(p->u.zToken)+1; 7796ab3a2ecSdanielk1977 } 780bc73971dSdanielk1977 return ROUND8(nByte); 7816ab3a2ecSdanielk1977 } 7826ab3a2ecSdanielk1977 7836ab3a2ecSdanielk1977 /* 7846ab3a2ecSdanielk1977 ** Return the number of bytes required to create a duplicate of the 7856ab3a2ecSdanielk1977 ** expression passed as the first argument. The second argument is a 7866ab3a2ecSdanielk1977 ** mask containing EXPRDUP_XXX flags. 7876ab3a2ecSdanielk1977 ** 7886ab3a2ecSdanielk1977 ** The value returned includes space to create a copy of the Expr struct 78933e619fcSdrh ** itself and the buffer referred to by Expr.u.zToken, if any. 7906ab3a2ecSdanielk1977 ** 7916ab3a2ecSdanielk1977 ** If the EXPRDUP_REDUCE flag is set, then the return value includes 7926ab3a2ecSdanielk1977 ** space to duplicate all Expr nodes in the tree formed by Expr.pLeft 7936ab3a2ecSdanielk1977 ** and Expr.pRight variables (but not for any structures pointed to or 7946ab3a2ecSdanielk1977 ** descended from the Expr.x.pList or Expr.x.pSelect variables). 7956ab3a2ecSdanielk1977 */ 7966ab3a2ecSdanielk1977 static int dupedExprSize(Expr *p, int flags){ 7976ab3a2ecSdanielk1977 int nByte = 0; 7986ab3a2ecSdanielk1977 if( p ){ 7996ab3a2ecSdanielk1977 nByte = dupedExprNodeSize(p, flags); 8006ab3a2ecSdanielk1977 if( flags&EXPRDUP_REDUCE ){ 801b7916a78Sdrh nByte += dupedExprSize(p->pLeft, flags) + dupedExprSize(p->pRight, flags); 8026ab3a2ecSdanielk1977 } 8036ab3a2ecSdanielk1977 } 8046ab3a2ecSdanielk1977 return nByte; 8056ab3a2ecSdanielk1977 } 8066ab3a2ecSdanielk1977 8076ab3a2ecSdanielk1977 /* 8086ab3a2ecSdanielk1977 ** This function is similar to sqlite3ExprDup(), except that if pzBuffer 8096ab3a2ecSdanielk1977 ** is not NULL then *pzBuffer is assumed to point to a buffer large enough 81033e619fcSdrh ** to store the copy of expression p, the copies of p->u.zToken 8116ab3a2ecSdanielk1977 ** (if applicable), and the copies of the p->pLeft and p->pRight expressions, 8126ab3a2ecSdanielk1977 ** if any. Before returning, *pzBuffer is set to the first byte passed the 8136ab3a2ecSdanielk1977 ** portion of the buffer copied into by this function. 8146ab3a2ecSdanielk1977 */ 8156ab3a2ecSdanielk1977 static Expr *exprDup(sqlite3 *db, Expr *p, int flags, u8 **pzBuffer){ 8166ab3a2ecSdanielk1977 Expr *pNew = 0; /* Value to return */ 8176ab3a2ecSdanielk1977 if( p ){ 8186ab3a2ecSdanielk1977 const int isReduced = (flags&EXPRDUP_REDUCE); 8196ab3a2ecSdanielk1977 u8 *zAlloc; 82033e619fcSdrh u32 staticFlag = 0; 8216ab3a2ecSdanielk1977 8226ab3a2ecSdanielk1977 assert( pzBuffer==0 || isReduced ); 8236ab3a2ecSdanielk1977 8246ab3a2ecSdanielk1977 /* Figure out where to write the new Expr structure. */ 8256ab3a2ecSdanielk1977 if( pzBuffer ){ 8266ab3a2ecSdanielk1977 zAlloc = *pzBuffer; 82733e619fcSdrh staticFlag = EP_Static; 8286ab3a2ecSdanielk1977 }else{ 8296ab3a2ecSdanielk1977 zAlloc = sqlite3DbMallocRaw(db, dupedExprSize(p, flags)); 8306ab3a2ecSdanielk1977 } 8316ab3a2ecSdanielk1977 pNew = (Expr *)zAlloc; 8326ab3a2ecSdanielk1977 8336ab3a2ecSdanielk1977 if( pNew ){ 8346ab3a2ecSdanielk1977 /* Set nNewSize to the size allocated for the structure pointed to 8356ab3a2ecSdanielk1977 ** by pNew. This is either EXPR_FULLSIZE, EXPR_REDUCEDSIZE or 8366ab3a2ecSdanielk1977 ** EXPR_TOKENONLYSIZE. nToken is set to the number of bytes consumed 83733e619fcSdrh ** by the copy of the p->u.zToken string (if any). 8386ab3a2ecSdanielk1977 */ 83933e619fcSdrh const unsigned nStructSize = dupedExprStructSize(p, flags); 84033e619fcSdrh const int nNewSize = nStructSize & 0xfff; 84133e619fcSdrh int nToken; 84233e619fcSdrh if( !ExprHasProperty(p, EP_IntValue) && p->u.zToken ){ 84333e619fcSdrh nToken = sqlite3Strlen30(p->u.zToken) + 1; 84433e619fcSdrh }else{ 84533e619fcSdrh nToken = 0; 84633e619fcSdrh } 8476ab3a2ecSdanielk1977 if( isReduced ){ 8486ab3a2ecSdanielk1977 assert( ExprHasProperty(p, EP_Reduced)==0 ); 8496ab3a2ecSdanielk1977 memcpy(zAlloc, p, nNewSize); 8506ab3a2ecSdanielk1977 }else{ 8516ab3a2ecSdanielk1977 int nSize = exprStructSize(p); 8526ab3a2ecSdanielk1977 memcpy(zAlloc, p, nSize); 8536ab3a2ecSdanielk1977 memset(&zAlloc[nSize], 0, EXPR_FULLSIZE-nSize); 8546ab3a2ecSdanielk1977 } 8556ab3a2ecSdanielk1977 85633e619fcSdrh /* Set the EP_Reduced, EP_TokenOnly, and EP_Static flags appropriately. */ 857c5cd1249Sdrh pNew->flags &= ~(EP_Reduced|EP_TokenOnly|EP_Static|EP_MemToken); 85833e619fcSdrh pNew->flags |= nStructSize & (EP_Reduced|EP_TokenOnly); 85933e619fcSdrh pNew->flags |= staticFlag; 8606ab3a2ecSdanielk1977 86133e619fcSdrh /* Copy the p->u.zToken string, if any. */ 8626ab3a2ecSdanielk1977 if( nToken ){ 86333e619fcSdrh char *zToken = pNew->u.zToken = (char*)&zAlloc[nNewSize]; 86433e619fcSdrh memcpy(zToken, p->u.zToken, nToken); 8656ab3a2ecSdanielk1977 } 8666ab3a2ecSdanielk1977 8676ab3a2ecSdanielk1977 if( 0==((p->flags|pNew->flags) & EP_TokenOnly) ){ 8686ab3a2ecSdanielk1977 /* Fill in the pNew->x.pSelect or pNew->x.pList member. */ 8696ab3a2ecSdanielk1977 if( ExprHasProperty(p, EP_xIsSelect) ){ 8706ab3a2ecSdanielk1977 pNew->x.pSelect = sqlite3SelectDup(db, p->x.pSelect, isReduced); 8716ab3a2ecSdanielk1977 }else{ 8726ab3a2ecSdanielk1977 pNew->x.pList = sqlite3ExprListDup(db, p->x.pList, isReduced); 8736ab3a2ecSdanielk1977 } 8746ab3a2ecSdanielk1977 } 8756ab3a2ecSdanielk1977 8766ab3a2ecSdanielk1977 /* Fill in pNew->pLeft and pNew->pRight. */ 877c5cd1249Sdrh if( ExprHasProperty(pNew, EP_Reduced|EP_TokenOnly) ){ 8786ab3a2ecSdanielk1977 zAlloc += dupedExprNodeSize(p, flags); 8796ab3a2ecSdanielk1977 if( ExprHasProperty(pNew, EP_Reduced) ){ 8806ab3a2ecSdanielk1977 pNew->pLeft = exprDup(db, p->pLeft, EXPRDUP_REDUCE, &zAlloc); 8816ab3a2ecSdanielk1977 pNew->pRight = exprDup(db, p->pRight, EXPRDUP_REDUCE, &zAlloc); 8826ab3a2ecSdanielk1977 } 8836ab3a2ecSdanielk1977 if( pzBuffer ){ 8846ab3a2ecSdanielk1977 *pzBuffer = zAlloc; 8856ab3a2ecSdanielk1977 } 886b7916a78Sdrh }else{ 887c5cd1249Sdrh if( !ExprHasProperty(p, EP_TokenOnly) ){ 8886ab3a2ecSdanielk1977 pNew->pLeft = sqlite3ExprDup(db, p->pLeft, 0); 8896ab3a2ecSdanielk1977 pNew->pRight = sqlite3ExprDup(db, p->pRight, 0); 8906ab3a2ecSdanielk1977 } 8916ab3a2ecSdanielk1977 } 892b7916a78Sdrh 893b7916a78Sdrh } 8946ab3a2ecSdanielk1977 } 8956ab3a2ecSdanielk1977 return pNew; 8966ab3a2ecSdanielk1977 } 8976ab3a2ecSdanielk1977 898bfe31e7fSdan /* 899bfe31e7fSdan ** Create and return a deep copy of the object passed as the second 900bfe31e7fSdan ** argument. If an OOM condition is encountered, NULL is returned 901bfe31e7fSdan ** and the db->mallocFailed flag set. 902bfe31e7fSdan */ 903eede6a53Sdan #ifndef SQLITE_OMIT_CTE 904bfe31e7fSdan static With *withDup(sqlite3 *db, With *p){ 9054e9119d9Sdan With *pRet = 0; 9064e9119d9Sdan if( p ){ 9074e9119d9Sdan int nByte = sizeof(*p) + sizeof(p->a[0]) * (p->nCte-1); 9084e9119d9Sdan pRet = sqlite3DbMallocZero(db, nByte); 9094e9119d9Sdan if( pRet ){ 9104e9119d9Sdan int i; 9114e9119d9Sdan pRet->nCte = p->nCte; 9124e9119d9Sdan for(i=0; i<p->nCte; i++){ 9134e9119d9Sdan pRet->a[i].pSelect = sqlite3SelectDup(db, p->a[i].pSelect, 0); 9144e9119d9Sdan pRet->a[i].pCols = sqlite3ExprListDup(db, p->a[i].pCols, 0); 9154e9119d9Sdan pRet->a[i].zName = sqlite3DbStrDup(db, p->a[i].zName); 9164e9119d9Sdan } 9174e9119d9Sdan } 9184e9119d9Sdan } 9194e9119d9Sdan return pRet; 9204e9119d9Sdan } 921eede6a53Sdan #else 922eede6a53Sdan # define withDup(x,y) 0 923eede6a53Sdan #endif 9244e9119d9Sdan 9256ab3a2ecSdanielk1977 /* 926ff78bd2fSdrh ** The following group of routines make deep copies of expressions, 927ff78bd2fSdrh ** expression lists, ID lists, and select statements. The copies can 928ff78bd2fSdrh ** be deleted (by being passed to their respective ...Delete() routines) 929ff78bd2fSdrh ** without effecting the originals. 930ff78bd2fSdrh ** 9314adee20fSdanielk1977 ** The expression list, ID, and source lists return by sqlite3ExprListDup(), 9324adee20fSdanielk1977 ** sqlite3IdListDup(), and sqlite3SrcListDup() can not be further expanded 933ad3cab52Sdrh ** by subsequent calls to sqlite*ListAppend() routines. 934ff78bd2fSdrh ** 935ad3cab52Sdrh ** Any tables that the SrcList might point to are not duplicated. 9366ab3a2ecSdanielk1977 ** 937b7916a78Sdrh ** The flags parameter contains a combination of the EXPRDUP_XXX flags. 9386ab3a2ecSdanielk1977 ** If the EXPRDUP_REDUCE flag is set, then the structure returned is a 9396ab3a2ecSdanielk1977 ** truncated version of the usual Expr structure that will be stored as 9406ab3a2ecSdanielk1977 ** part of the in-memory representation of the database schema. 941ff78bd2fSdrh */ 9426ab3a2ecSdanielk1977 Expr *sqlite3ExprDup(sqlite3 *db, Expr *p, int flags){ 9436ab3a2ecSdanielk1977 return exprDup(db, p, flags, 0); 944ff78bd2fSdrh } 9456ab3a2ecSdanielk1977 ExprList *sqlite3ExprListDup(sqlite3 *db, ExprList *p, int flags){ 946ff78bd2fSdrh ExprList *pNew; 947145716b3Sdrh struct ExprList_item *pItem, *pOldItem; 948ff78bd2fSdrh int i; 949ff78bd2fSdrh if( p==0 ) return 0; 95017435752Sdrh pNew = sqlite3DbMallocRaw(db, sizeof(*pNew) ); 951ff78bd2fSdrh if( pNew==0 ) return 0; 95231dad9daSdanielk1977 pNew->iECursor = 0; 953d872bb18Sdrh pNew->nExpr = i = p->nExpr; 954d872bb18Sdrh if( (flags & EXPRDUP_REDUCE)==0 ) for(i=1; i<p->nExpr; i+=i){} 955d872bb18Sdrh pNew->a = pItem = sqlite3DbMallocRaw(db, i*sizeof(p->a[0]) ); 956e0048400Sdanielk1977 if( pItem==0 ){ 957633e6d57Sdrh sqlite3DbFree(db, pNew); 958e0048400Sdanielk1977 return 0; 959e0048400Sdanielk1977 } 960145716b3Sdrh pOldItem = p->a; 961145716b3Sdrh for(i=0; i<p->nExpr; i++, pItem++, pOldItem++){ 9626ab3a2ecSdanielk1977 Expr *pOldExpr = pOldItem->pExpr; 963b5526ea6Sdrh pItem->pExpr = sqlite3ExprDup(db, pOldExpr, flags); 96417435752Sdrh pItem->zName = sqlite3DbStrDup(db, pOldItem->zName); 965b7916a78Sdrh pItem->zSpan = sqlite3DbStrDup(db, pOldItem->zSpan); 966145716b3Sdrh pItem->sortOrder = pOldItem->sortOrder; 9673e7bc9caSdrh pItem->done = 0; 9682c036cffSdrh pItem->bSpanIsTab = pOldItem->bSpanIsTab; 969c2acc4e4Sdrh pItem->u = pOldItem->u; 970ff78bd2fSdrh } 971ff78bd2fSdrh return pNew; 972ff78bd2fSdrh } 97393758c8dSdanielk1977 97493758c8dSdanielk1977 /* 97593758c8dSdanielk1977 ** If cursors, triggers, views and subqueries are all omitted from 97693758c8dSdanielk1977 ** the build, then none of the following routines, except for 97793758c8dSdanielk1977 ** sqlite3SelectDup(), can be called. sqlite3SelectDup() is sometimes 97893758c8dSdanielk1977 ** called with a NULL argument. 97993758c8dSdanielk1977 */ 9806a67fe8eSdanielk1977 #if !defined(SQLITE_OMIT_VIEW) || !defined(SQLITE_OMIT_TRIGGER) \ 9816a67fe8eSdanielk1977 || !defined(SQLITE_OMIT_SUBQUERY) 9826ab3a2ecSdanielk1977 SrcList *sqlite3SrcListDup(sqlite3 *db, SrcList *p, int flags){ 983ad3cab52Sdrh SrcList *pNew; 984ad3cab52Sdrh int i; 985113088ecSdrh int nByte; 986ad3cab52Sdrh if( p==0 ) return 0; 987113088ecSdrh nByte = sizeof(*p) + (p->nSrc>0 ? sizeof(p->a[0]) * (p->nSrc-1) : 0); 98817435752Sdrh pNew = sqlite3DbMallocRaw(db, nByte ); 989ad3cab52Sdrh if( pNew==0 ) return 0; 9904305d103Sdrh pNew->nSrc = pNew->nAlloc = p->nSrc; 991ad3cab52Sdrh for(i=0; i<p->nSrc; i++){ 9924efc4754Sdrh struct SrcList_item *pNewItem = &pNew->a[i]; 9934efc4754Sdrh struct SrcList_item *pOldItem = &p->a[i]; 994ed8a3bb1Sdrh Table *pTab; 99541fb5cd1Sdan pNewItem->pSchema = pOldItem->pSchema; 99617435752Sdrh pNewItem->zDatabase = sqlite3DbStrDup(db, pOldItem->zDatabase); 99717435752Sdrh pNewItem->zName = sqlite3DbStrDup(db, pOldItem->zName); 99817435752Sdrh pNewItem->zAlias = sqlite3DbStrDup(db, pOldItem->zAlias); 9994efc4754Sdrh pNewItem->jointype = pOldItem->jointype; 10004efc4754Sdrh pNewItem->iCursor = pOldItem->iCursor; 10015b6a9ed4Sdrh pNewItem->addrFillSub = pOldItem->addrFillSub; 10025b6a9ed4Sdrh pNewItem->regReturn = pOldItem->regReturn; 1003da79cf0cSdan pNewItem->isCorrelated = pOldItem->isCorrelated; 100421172c4cSdrh pNewItem->viaCoroutine = pOldItem->viaCoroutine; 1005f43fe6e9Sdan pNewItem->isRecursive = pOldItem->isRecursive; 100685574e31Sdanielk1977 pNewItem->zIndex = sqlite3DbStrDup(db, pOldItem->zIndex); 100785574e31Sdanielk1977 pNewItem->notIndexed = pOldItem->notIndexed; 100885574e31Sdanielk1977 pNewItem->pIndex = pOldItem->pIndex; 1009ed8a3bb1Sdrh pTab = pNewItem->pTab = pOldItem->pTab; 1010ed8a3bb1Sdrh if( pTab ){ 1011ed8a3bb1Sdrh pTab->nRef++; 1012a1cb183dSdanielk1977 } 10136ab3a2ecSdanielk1977 pNewItem->pSelect = sqlite3SelectDup(db, pOldItem->pSelect, flags); 10146ab3a2ecSdanielk1977 pNewItem->pOn = sqlite3ExprDup(db, pOldItem->pOn, flags); 101517435752Sdrh pNewItem->pUsing = sqlite3IdListDup(db, pOldItem->pUsing); 10166c18b6e0Sdanielk1977 pNewItem->colUsed = pOldItem->colUsed; 1017ad3cab52Sdrh } 1018ad3cab52Sdrh return pNew; 1019ad3cab52Sdrh } 102017435752Sdrh IdList *sqlite3IdListDup(sqlite3 *db, IdList *p){ 1021ff78bd2fSdrh IdList *pNew; 1022ff78bd2fSdrh int i; 1023ff78bd2fSdrh if( p==0 ) return 0; 102417435752Sdrh pNew = sqlite3DbMallocRaw(db, sizeof(*pNew) ); 1025ff78bd2fSdrh if( pNew==0 ) return 0; 10266c535158Sdrh pNew->nId = p->nId; 102717435752Sdrh pNew->a = sqlite3DbMallocRaw(db, p->nId*sizeof(p->a[0]) ); 1028d5d56523Sdanielk1977 if( pNew->a==0 ){ 1029633e6d57Sdrh sqlite3DbFree(db, pNew); 1030d5d56523Sdanielk1977 return 0; 1031d5d56523Sdanielk1977 } 10326c535158Sdrh /* Note that because the size of the allocation for p->a[] is not 10336c535158Sdrh ** necessarily a power of two, sqlite3IdListAppend() may not be called 10346c535158Sdrh ** on the duplicate created by this function. */ 1035ff78bd2fSdrh for(i=0; i<p->nId; i++){ 10364efc4754Sdrh struct IdList_item *pNewItem = &pNew->a[i]; 10374efc4754Sdrh struct IdList_item *pOldItem = &p->a[i]; 103817435752Sdrh pNewItem->zName = sqlite3DbStrDup(db, pOldItem->zName); 10394efc4754Sdrh pNewItem->idx = pOldItem->idx; 1040ff78bd2fSdrh } 1041ff78bd2fSdrh return pNew; 1042ff78bd2fSdrh } 10436ab3a2ecSdanielk1977 Select *sqlite3SelectDup(sqlite3 *db, Select *p, int flags){ 104423b1b372Sdrh Select *pNew, *pPrior; 1045ff78bd2fSdrh if( p==0 ) return 0; 104617435752Sdrh pNew = sqlite3DbMallocRaw(db, sizeof(*p) ); 1047ff78bd2fSdrh if( pNew==0 ) return 0; 1048b7916a78Sdrh pNew->pEList = sqlite3ExprListDup(db, p->pEList, flags); 10496ab3a2ecSdanielk1977 pNew->pSrc = sqlite3SrcListDup(db, p->pSrc, flags); 10506ab3a2ecSdanielk1977 pNew->pWhere = sqlite3ExprDup(db, p->pWhere, flags); 10516ab3a2ecSdanielk1977 pNew->pGroupBy = sqlite3ExprListDup(db, p->pGroupBy, flags); 10526ab3a2ecSdanielk1977 pNew->pHaving = sqlite3ExprDup(db, p->pHaving, flags); 10536ab3a2ecSdanielk1977 pNew->pOrderBy = sqlite3ExprListDup(db, p->pOrderBy, flags); 1054ff78bd2fSdrh pNew->op = p->op; 105523b1b372Sdrh pNew->pPrior = pPrior = sqlite3SelectDup(db, p->pPrior, flags); 105623b1b372Sdrh if( pPrior ) pPrior->pNext = pNew; 105723b1b372Sdrh pNew->pNext = 0; 10586ab3a2ecSdanielk1977 pNew->pLimit = sqlite3ExprDup(db, p->pLimit, flags); 10596ab3a2ecSdanielk1977 pNew->pOffset = sqlite3ExprDup(db, p->pOffset, flags); 106092b01d53Sdrh pNew->iLimit = 0; 106192b01d53Sdrh pNew->iOffset = 0; 10627d10d5a6Sdrh pNew->selFlags = p->selFlags & ~SF_UsesEphemeral; 10630342b1f5Sdrh pNew->pRightmost = 0; 1064b9bb7c18Sdrh pNew->addrOpenEphm[0] = -1; 1065b9bb7c18Sdrh pNew->addrOpenEphm[1] = -1; 1066b9bb7c18Sdrh pNew->addrOpenEphm[2] = -1; 1067*ec2da854Sdrh pNew->nSelectRow = p->nSelectRow; 10684e9119d9Sdan pNew->pWith = withDup(db, p->pWith); 1069ff78bd2fSdrh return pNew; 1070ff78bd2fSdrh } 107193758c8dSdanielk1977 #else 10726ab3a2ecSdanielk1977 Select *sqlite3SelectDup(sqlite3 *db, Select *p, int flags){ 107393758c8dSdanielk1977 assert( p==0 ); 107493758c8dSdanielk1977 return 0; 107593758c8dSdanielk1977 } 107693758c8dSdanielk1977 #endif 1077ff78bd2fSdrh 1078ff78bd2fSdrh 1079ff78bd2fSdrh /* 1080a76b5dfcSdrh ** Add a new element to the end of an expression list. If pList is 1081a76b5dfcSdrh ** initially NULL, then create a new expression list. 1082b7916a78Sdrh ** 1083b7916a78Sdrh ** If a memory allocation error occurs, the entire list is freed and 1084b7916a78Sdrh ** NULL is returned. If non-NULL is returned, then it is guaranteed 1085b7916a78Sdrh ** that the new entry was successfully appended. 1086a76b5dfcSdrh */ 108717435752Sdrh ExprList *sqlite3ExprListAppend( 108817435752Sdrh Parse *pParse, /* Parsing context */ 108917435752Sdrh ExprList *pList, /* List to which to append. Might be NULL */ 1090b7916a78Sdrh Expr *pExpr /* Expression to be appended. Might be NULL */ 109117435752Sdrh ){ 109217435752Sdrh sqlite3 *db = pParse->db; 1093a76b5dfcSdrh if( pList==0 ){ 109417435752Sdrh pList = sqlite3DbMallocZero(db, sizeof(ExprList) ); 1095a76b5dfcSdrh if( pList==0 ){ 1096d5d56523Sdanielk1977 goto no_mem; 1097a76b5dfcSdrh } 1098d872bb18Sdrh pList->a = sqlite3DbMallocRaw(db, sizeof(pList->a[0])); 1099d872bb18Sdrh if( pList->a==0 ) goto no_mem; 1100d872bb18Sdrh }else if( (pList->nExpr & (pList->nExpr-1))==0 ){ 1101d5d56523Sdanielk1977 struct ExprList_item *a; 1102d872bb18Sdrh assert( pList->nExpr>0 ); 1103d872bb18Sdrh a = sqlite3DbRealloc(db, pList->a, pList->nExpr*2*sizeof(pList->a[0])); 1104d5d56523Sdanielk1977 if( a==0 ){ 1105d5d56523Sdanielk1977 goto no_mem; 1106a76b5dfcSdrh } 1107d5d56523Sdanielk1977 pList->a = a; 1108a76b5dfcSdrh } 11094efc4754Sdrh assert( pList->a!=0 ); 1110b7916a78Sdrh if( 1 ){ 11114efc4754Sdrh struct ExprList_item *pItem = &pList->a[pList->nExpr++]; 11124efc4754Sdrh memset(pItem, 0, sizeof(*pItem)); 1113e94ddc9eSdanielk1977 pItem->pExpr = pExpr; 1114a76b5dfcSdrh } 1115a76b5dfcSdrh return pList; 1116d5d56523Sdanielk1977 1117d5d56523Sdanielk1977 no_mem: 1118d5d56523Sdanielk1977 /* Avoid leaking memory if malloc has failed. */ 1119633e6d57Sdrh sqlite3ExprDelete(db, pExpr); 1120633e6d57Sdrh sqlite3ExprListDelete(db, pList); 1121d5d56523Sdanielk1977 return 0; 1122a76b5dfcSdrh } 1123a76b5dfcSdrh 1124a76b5dfcSdrh /* 1125b7916a78Sdrh ** Set the ExprList.a[].zName element of the most recently added item 1126b7916a78Sdrh ** on the expression list. 1127b7916a78Sdrh ** 1128b7916a78Sdrh ** pList might be NULL following an OOM error. But pName should never be 1129b7916a78Sdrh ** NULL. If a memory allocation fails, the pParse->db->mallocFailed flag 1130b7916a78Sdrh ** is set. 1131b7916a78Sdrh */ 1132b7916a78Sdrh void sqlite3ExprListSetName( 1133b7916a78Sdrh Parse *pParse, /* Parsing context */ 1134b7916a78Sdrh ExprList *pList, /* List to which to add the span. */ 1135b7916a78Sdrh Token *pName, /* Name to be added */ 1136b7916a78Sdrh int dequote /* True to cause the name to be dequoted */ 1137b7916a78Sdrh ){ 1138b7916a78Sdrh assert( pList!=0 || pParse->db->mallocFailed!=0 ); 1139b7916a78Sdrh if( pList ){ 1140b7916a78Sdrh struct ExprList_item *pItem; 1141b7916a78Sdrh assert( pList->nExpr>0 ); 1142b7916a78Sdrh pItem = &pList->a[pList->nExpr-1]; 1143b7916a78Sdrh assert( pItem->zName==0 ); 1144b7916a78Sdrh pItem->zName = sqlite3DbStrNDup(pParse->db, pName->z, pName->n); 1145b7916a78Sdrh if( dequote && pItem->zName ) sqlite3Dequote(pItem->zName); 1146b7916a78Sdrh } 1147b7916a78Sdrh } 1148b7916a78Sdrh 1149b7916a78Sdrh /* 1150b7916a78Sdrh ** Set the ExprList.a[].zSpan element of the most recently added item 1151b7916a78Sdrh ** on the expression list. 1152b7916a78Sdrh ** 1153b7916a78Sdrh ** pList might be NULL following an OOM error. But pSpan should never be 1154b7916a78Sdrh ** NULL. If a memory allocation fails, the pParse->db->mallocFailed flag 1155b7916a78Sdrh ** is set. 1156b7916a78Sdrh */ 1157b7916a78Sdrh void sqlite3ExprListSetSpan( 1158b7916a78Sdrh Parse *pParse, /* Parsing context */ 1159b7916a78Sdrh ExprList *pList, /* List to which to add the span. */ 1160b7916a78Sdrh ExprSpan *pSpan /* The span to be added */ 1161b7916a78Sdrh ){ 1162b7916a78Sdrh sqlite3 *db = pParse->db; 1163b7916a78Sdrh assert( pList!=0 || db->mallocFailed!=0 ); 1164b7916a78Sdrh if( pList ){ 1165b7916a78Sdrh struct ExprList_item *pItem = &pList->a[pList->nExpr-1]; 1166b7916a78Sdrh assert( pList->nExpr>0 ); 1167b7916a78Sdrh assert( db->mallocFailed || pItem->pExpr==pSpan->pExpr ); 1168b7916a78Sdrh sqlite3DbFree(db, pItem->zSpan); 1169b7916a78Sdrh pItem->zSpan = sqlite3DbStrNDup(db, (char*)pSpan->zStart, 1170cf697396Sshane (int)(pSpan->zEnd - pSpan->zStart)); 1171b7916a78Sdrh } 1172b7916a78Sdrh } 1173b7916a78Sdrh 1174b7916a78Sdrh /* 11757a15a4beSdanielk1977 ** If the expression list pEList contains more than iLimit elements, 11767a15a4beSdanielk1977 ** leave an error message in pParse. 11777a15a4beSdanielk1977 */ 11787a15a4beSdanielk1977 void sqlite3ExprListCheckLength( 11797a15a4beSdanielk1977 Parse *pParse, 11807a15a4beSdanielk1977 ExprList *pEList, 11817a15a4beSdanielk1977 const char *zObject 11827a15a4beSdanielk1977 ){ 1183b1a6c3c1Sdrh int mx = pParse->db->aLimit[SQLITE_LIMIT_COLUMN]; 1184c5499befSdrh testcase( pEList && pEList->nExpr==mx ); 1185c5499befSdrh testcase( pEList && pEList->nExpr==mx+1 ); 1186b1a6c3c1Sdrh if( pEList && pEList->nExpr>mx ){ 11877a15a4beSdanielk1977 sqlite3ErrorMsg(pParse, "too many columns in %s", zObject); 11887a15a4beSdanielk1977 } 11897a15a4beSdanielk1977 } 11907a15a4beSdanielk1977 11917a15a4beSdanielk1977 /* 1192a76b5dfcSdrh ** Delete an entire expression list. 1193a76b5dfcSdrh */ 1194633e6d57Sdrh void sqlite3ExprListDelete(sqlite3 *db, ExprList *pList){ 1195a76b5dfcSdrh int i; 1196be5c89acSdrh struct ExprList_item *pItem; 1197a76b5dfcSdrh if( pList==0 ) return; 1198d872bb18Sdrh assert( pList->a!=0 || pList->nExpr==0 ); 1199be5c89acSdrh for(pItem=pList->a, i=0; i<pList->nExpr; i++, pItem++){ 1200633e6d57Sdrh sqlite3ExprDelete(db, pItem->pExpr); 1201633e6d57Sdrh sqlite3DbFree(db, pItem->zName); 1202b7916a78Sdrh sqlite3DbFree(db, pItem->zSpan); 1203a76b5dfcSdrh } 1204633e6d57Sdrh sqlite3DbFree(db, pList->a); 1205633e6d57Sdrh sqlite3DbFree(db, pList); 1206a76b5dfcSdrh } 1207a76b5dfcSdrh 1208a76b5dfcSdrh /* 12097d10d5a6Sdrh ** These routines are Walker callbacks. Walker.u.pi is a pointer 12107d10d5a6Sdrh ** to an integer. These routines are checking an expression to see 12117d10d5a6Sdrh ** if it is a constant. Set *Walker.u.pi to 0 if the expression is 12127d10d5a6Sdrh ** not constant. 121373b211abSdrh ** 12147d10d5a6Sdrh ** These callback routines are used to implement the following: 1215626a879aSdrh ** 12167d10d5a6Sdrh ** sqlite3ExprIsConstant() 12177d10d5a6Sdrh ** sqlite3ExprIsConstantNotJoin() 12187d10d5a6Sdrh ** sqlite3ExprIsConstantOrFunction() 121987abf5c0Sdrh ** 1220626a879aSdrh */ 12217d10d5a6Sdrh static int exprNodeIsConstant(Walker *pWalker, Expr *pExpr){ 1222626a879aSdrh 12237d10d5a6Sdrh /* If pWalker->u.i is 3 then any term of the expression that comes from 12240a168377Sdrh ** the ON or USING clauses of a join disqualifies the expression 12250a168377Sdrh ** from being considered constant. */ 1226c5cd1249Sdrh if( pWalker->u.i==3 && ExprHasProperty(pExpr, EP_FromJoin) ){ 12277d10d5a6Sdrh pWalker->u.i = 0; 12287d10d5a6Sdrh return WRC_Abort; 12290a168377Sdrh } 12300a168377Sdrh 1231626a879aSdrh switch( pExpr->op ){ 1232eb55bd2fSdrh /* Consider functions to be constant if all their arguments are constant 1233b1fba286Sdrh ** and either pWalker->u.i==2 or the function as the SQLITE_FUNC_CONST 1234b1fba286Sdrh ** flag. */ 1235eb55bd2fSdrh case TK_FUNCTION: 1236b1fba286Sdrh if( pWalker->u.i==2 || ExprHasProperty(pExpr,EP_Constant) ){ 1237b1fba286Sdrh return WRC_Continue; 1238b1fba286Sdrh } 1239eb55bd2fSdrh /* Fall through */ 1240626a879aSdrh case TK_ID: 1241626a879aSdrh case TK_COLUMN: 1242626a879aSdrh case TK_AGG_FUNCTION: 124313449892Sdrh case TK_AGG_COLUMN: 1244c5499befSdrh testcase( pExpr->op==TK_ID ); 1245c5499befSdrh testcase( pExpr->op==TK_COLUMN ); 1246c5499befSdrh testcase( pExpr->op==TK_AGG_FUNCTION ); 1247c5499befSdrh testcase( pExpr->op==TK_AGG_COLUMN ); 12487d10d5a6Sdrh pWalker->u.i = 0; 12497d10d5a6Sdrh return WRC_Abort; 1250626a879aSdrh default: 1251b74b1017Sdrh testcase( pExpr->op==TK_SELECT ); /* selectNodeIsConstant will disallow */ 1252b74b1017Sdrh testcase( pExpr->op==TK_EXISTS ); /* selectNodeIsConstant will disallow */ 12537d10d5a6Sdrh return WRC_Continue; 1254626a879aSdrh } 1255626a879aSdrh } 125662c14b34Sdanielk1977 static int selectNodeIsConstant(Walker *pWalker, Select *NotUsed){ 125762c14b34Sdanielk1977 UNUSED_PARAMETER(NotUsed); 12587d10d5a6Sdrh pWalker->u.i = 0; 12597d10d5a6Sdrh return WRC_Abort; 12607d10d5a6Sdrh } 12617d10d5a6Sdrh static int exprIsConst(Expr *p, int initFlag){ 12627d10d5a6Sdrh Walker w; 1263aa87f9a6Sdrh memset(&w, 0, sizeof(w)); 12647d10d5a6Sdrh w.u.i = initFlag; 12657d10d5a6Sdrh w.xExprCallback = exprNodeIsConstant; 12667d10d5a6Sdrh w.xSelectCallback = selectNodeIsConstant; 12677d10d5a6Sdrh sqlite3WalkExpr(&w, p); 12687d10d5a6Sdrh return w.u.i; 12697d10d5a6Sdrh } 1270626a879aSdrh 1271626a879aSdrh /* 1272fef5208cSdrh ** Walk an expression tree. Return 1 if the expression is constant 1273eb55bd2fSdrh ** and 0 if it involves variables or function calls. 12742398937bSdrh ** 12752398937bSdrh ** For the purposes of this function, a double-quoted string (ex: "abc") 12762398937bSdrh ** is considered a variable but a single-quoted string (ex: 'abc') is 12772398937bSdrh ** a constant. 1278fef5208cSdrh */ 12794adee20fSdanielk1977 int sqlite3ExprIsConstant(Expr *p){ 12807d10d5a6Sdrh return exprIsConst(p, 1); 1281fef5208cSdrh } 1282fef5208cSdrh 1283fef5208cSdrh /* 1284eb55bd2fSdrh ** Walk an expression tree. Return 1 if the expression is constant 12850a168377Sdrh ** that does no originate from the ON or USING clauses of a join. 12860a168377Sdrh ** Return 0 if it involves variables or function calls or terms from 12870a168377Sdrh ** an ON or USING clause. 12880a168377Sdrh */ 12890a168377Sdrh int sqlite3ExprIsConstantNotJoin(Expr *p){ 12907d10d5a6Sdrh return exprIsConst(p, 3); 12910a168377Sdrh } 12920a168377Sdrh 12930a168377Sdrh /* 12940a168377Sdrh ** Walk an expression tree. Return 1 if the expression is constant 1295eb55bd2fSdrh ** or a function call with constant arguments. Return and 0 if there 1296eb55bd2fSdrh ** are any variables. 1297eb55bd2fSdrh ** 1298eb55bd2fSdrh ** For the purposes of this function, a double-quoted string (ex: "abc") 1299eb55bd2fSdrh ** is considered a variable but a single-quoted string (ex: 'abc') is 1300eb55bd2fSdrh ** a constant. 1301eb55bd2fSdrh */ 1302eb55bd2fSdrh int sqlite3ExprIsConstantOrFunction(Expr *p){ 13037d10d5a6Sdrh return exprIsConst(p, 2); 1304eb55bd2fSdrh } 1305eb55bd2fSdrh 1306eb55bd2fSdrh /* 130773b211abSdrh ** If the expression p codes a constant integer that is small enough 1308202b2df7Sdrh ** to fit in a 32-bit integer, return 1 and put the value of the integer 1309202b2df7Sdrh ** in *pValue. If the expression is not an integer or if it is too big 1310202b2df7Sdrh ** to fit in a signed 32-bit integer, return 0 and leave *pValue unchanged. 1311e4de1febSdrh */ 13124adee20fSdanielk1977 int sqlite3ExprIsInteger(Expr *p, int *pValue){ 131392b01d53Sdrh int rc = 0; 1314cd92e84dSdrh 1315cd92e84dSdrh /* If an expression is an integer literal that fits in a signed 32-bit 1316cd92e84dSdrh ** integer, then the EP_IntValue flag will have already been set */ 1317cd92e84dSdrh assert( p->op!=TK_INTEGER || (p->flags & EP_IntValue)!=0 1318cd92e84dSdrh || sqlite3GetInt32(p->u.zToken, &rc)==0 ); 1319cd92e84dSdrh 132092b01d53Sdrh if( p->flags & EP_IntValue ){ 132133e619fcSdrh *pValue = p->u.iValue; 1322e4de1febSdrh return 1; 1323e4de1febSdrh } 132492b01d53Sdrh switch( p->op ){ 13254b59ab5eSdrh case TK_UPLUS: { 132692b01d53Sdrh rc = sqlite3ExprIsInteger(p->pLeft, pValue); 1327f6e369a1Sdrh break; 13284b59ab5eSdrh } 1329e4de1febSdrh case TK_UMINUS: { 1330e4de1febSdrh int v; 13314adee20fSdanielk1977 if( sqlite3ExprIsInteger(p->pLeft, &v) ){ 1332f6418891Smistachkin assert( v!=(-2147483647-1) ); 1333e4de1febSdrh *pValue = -v; 133492b01d53Sdrh rc = 1; 1335e4de1febSdrh } 1336e4de1febSdrh break; 1337e4de1febSdrh } 1338e4de1febSdrh default: break; 1339e4de1febSdrh } 134092b01d53Sdrh return rc; 1341e4de1febSdrh } 1342e4de1febSdrh 1343e4de1febSdrh /* 1344039fc32eSdrh ** Return FALSE if there is no chance that the expression can be NULL. 1345039fc32eSdrh ** 1346039fc32eSdrh ** If the expression might be NULL or if the expression is too complex 1347039fc32eSdrh ** to tell return TRUE. 1348039fc32eSdrh ** 1349039fc32eSdrh ** This routine is used as an optimization, to skip OP_IsNull opcodes 1350039fc32eSdrh ** when we know that a value cannot be NULL. Hence, a false positive 1351039fc32eSdrh ** (returning TRUE when in fact the expression can never be NULL) might 1352039fc32eSdrh ** be a small performance hit but is otherwise harmless. On the other 1353039fc32eSdrh ** hand, a false negative (returning FALSE when the result could be NULL) 1354039fc32eSdrh ** will likely result in an incorrect answer. So when in doubt, return 1355039fc32eSdrh ** TRUE. 1356039fc32eSdrh */ 1357039fc32eSdrh int sqlite3ExprCanBeNull(const Expr *p){ 1358039fc32eSdrh u8 op; 1359cd7f457eSdrh while( p->op==TK_UPLUS || p->op==TK_UMINUS ){ p = p->pLeft; } 1360039fc32eSdrh op = p->op; 1361039fc32eSdrh if( op==TK_REGISTER ) op = p->op2; 1362039fc32eSdrh switch( op ){ 1363039fc32eSdrh case TK_INTEGER: 1364039fc32eSdrh case TK_STRING: 1365039fc32eSdrh case TK_FLOAT: 1366039fc32eSdrh case TK_BLOB: 1367039fc32eSdrh return 0; 1368039fc32eSdrh default: 1369039fc32eSdrh return 1; 1370039fc32eSdrh } 1371039fc32eSdrh } 1372039fc32eSdrh 1373039fc32eSdrh /* 13742f2855b6Sdrh ** Generate an OP_IsNull instruction that tests register iReg and jumps 13752f2855b6Sdrh ** to location iDest if the value in iReg is NULL. The value in iReg 13762f2855b6Sdrh ** was computed by pExpr. If we can look at pExpr at compile-time and 13772f2855b6Sdrh ** determine that it can never generate a NULL, then the OP_IsNull operation 13782f2855b6Sdrh ** can be omitted. 13792f2855b6Sdrh */ 13802f2855b6Sdrh void sqlite3ExprCodeIsNullJump( 13812f2855b6Sdrh Vdbe *v, /* The VDBE under construction */ 13822f2855b6Sdrh const Expr *pExpr, /* Only generate OP_IsNull if this expr can be NULL */ 13832f2855b6Sdrh int iReg, /* Test the value in this register for NULL */ 13842f2855b6Sdrh int iDest /* Jump here if the value is null */ 13852f2855b6Sdrh ){ 13862f2855b6Sdrh if( sqlite3ExprCanBeNull(pExpr) ){ 13872f2855b6Sdrh sqlite3VdbeAddOp2(v, OP_IsNull, iReg, iDest); 13882f2855b6Sdrh } 13892f2855b6Sdrh } 13902f2855b6Sdrh 13912f2855b6Sdrh /* 1392039fc32eSdrh ** Return TRUE if the given expression is a constant which would be 1393039fc32eSdrh ** unchanged by OP_Affinity with the affinity given in the second 1394039fc32eSdrh ** argument. 1395039fc32eSdrh ** 1396039fc32eSdrh ** This routine is used to determine if the OP_Affinity operation 1397039fc32eSdrh ** can be omitted. When in doubt return FALSE. A false negative 1398039fc32eSdrh ** is harmless. A false positive, however, can result in the wrong 1399039fc32eSdrh ** answer. 1400039fc32eSdrh */ 1401039fc32eSdrh int sqlite3ExprNeedsNoAffinityChange(const Expr *p, char aff){ 1402039fc32eSdrh u8 op; 1403039fc32eSdrh if( aff==SQLITE_AFF_NONE ) return 1; 1404cd7f457eSdrh while( p->op==TK_UPLUS || p->op==TK_UMINUS ){ p = p->pLeft; } 1405039fc32eSdrh op = p->op; 1406039fc32eSdrh if( op==TK_REGISTER ) op = p->op2; 1407039fc32eSdrh switch( op ){ 1408039fc32eSdrh case TK_INTEGER: { 1409039fc32eSdrh return aff==SQLITE_AFF_INTEGER || aff==SQLITE_AFF_NUMERIC; 1410039fc32eSdrh } 1411039fc32eSdrh case TK_FLOAT: { 1412039fc32eSdrh return aff==SQLITE_AFF_REAL || aff==SQLITE_AFF_NUMERIC; 1413039fc32eSdrh } 1414039fc32eSdrh case TK_STRING: { 1415039fc32eSdrh return aff==SQLITE_AFF_TEXT; 1416039fc32eSdrh } 1417039fc32eSdrh case TK_BLOB: { 1418039fc32eSdrh return 1; 1419039fc32eSdrh } 14202f2855b6Sdrh case TK_COLUMN: { 142188376ca7Sdrh assert( p->iTable>=0 ); /* p cannot be part of a CHECK constraint */ 142288376ca7Sdrh return p->iColumn<0 14232f2855b6Sdrh && (aff==SQLITE_AFF_INTEGER || aff==SQLITE_AFF_NUMERIC); 14242f2855b6Sdrh } 1425039fc32eSdrh default: { 1426039fc32eSdrh return 0; 1427039fc32eSdrh } 1428039fc32eSdrh } 1429039fc32eSdrh } 1430039fc32eSdrh 1431039fc32eSdrh /* 1432c4a3c779Sdrh ** Return TRUE if the given string is a row-id column name. 1433c4a3c779Sdrh */ 14344adee20fSdanielk1977 int sqlite3IsRowid(const char *z){ 14354adee20fSdanielk1977 if( sqlite3StrICmp(z, "_ROWID_")==0 ) return 1; 14364adee20fSdanielk1977 if( sqlite3StrICmp(z, "ROWID")==0 ) return 1; 14374adee20fSdanielk1977 if( sqlite3StrICmp(z, "OID")==0 ) return 1; 1438c4a3c779Sdrh return 0; 1439c4a3c779Sdrh } 1440c4a3c779Sdrh 14419a96b668Sdanielk1977 /* 1442b74b1017Sdrh ** Return true if we are able to the IN operator optimization on a 1443b74b1017Sdrh ** query of the form 1444b287f4b6Sdrh ** 1445b74b1017Sdrh ** x IN (SELECT ...) 1446b287f4b6Sdrh ** 1447b74b1017Sdrh ** Where the SELECT... clause is as specified by the parameter to this 1448b74b1017Sdrh ** routine. 1449b74b1017Sdrh ** 1450b74b1017Sdrh ** The Select object passed in has already been preprocessed and no 1451b74b1017Sdrh ** errors have been found. 1452b287f4b6Sdrh */ 1453b287f4b6Sdrh #ifndef SQLITE_OMIT_SUBQUERY 1454b287f4b6Sdrh static int isCandidateForInOpt(Select *p){ 1455b287f4b6Sdrh SrcList *pSrc; 1456b287f4b6Sdrh ExprList *pEList; 1457b287f4b6Sdrh Table *pTab; 1458b287f4b6Sdrh if( p==0 ) return 0; /* right-hand side of IN is SELECT */ 1459b287f4b6Sdrh if( p->pPrior ) return 0; /* Not a compound SELECT */ 14607d10d5a6Sdrh if( p->selFlags & (SF_Distinct|SF_Aggregate) ){ 1461b74b1017Sdrh testcase( (p->selFlags & (SF_Distinct|SF_Aggregate))==SF_Distinct ); 1462b74b1017Sdrh testcase( (p->selFlags & (SF_Distinct|SF_Aggregate))==SF_Aggregate ); 14637d10d5a6Sdrh return 0; /* No DISTINCT keyword and no aggregate functions */ 14647d10d5a6Sdrh } 1465b74b1017Sdrh assert( p->pGroupBy==0 ); /* Has no GROUP BY clause */ 1466b287f4b6Sdrh if( p->pLimit ) return 0; /* Has no LIMIT clause */ 1467b74b1017Sdrh assert( p->pOffset==0 ); /* No LIMIT means no OFFSET */ 1468b287f4b6Sdrh if( p->pWhere ) return 0; /* Has no WHERE clause */ 1469b287f4b6Sdrh pSrc = p->pSrc; 1470d1fa7bcaSdrh assert( pSrc!=0 ); 1471d1fa7bcaSdrh if( pSrc->nSrc!=1 ) return 0; /* Single term in FROM clause */ 1472b74b1017Sdrh if( pSrc->a[0].pSelect ) return 0; /* FROM is not a subquery or view */ 1473b287f4b6Sdrh pTab = pSrc->a[0].pTab; 1474b74b1017Sdrh if( NEVER(pTab==0) ) return 0; 1475b74b1017Sdrh assert( pTab->pSelect==0 ); /* FROM clause is not a view */ 1476b287f4b6Sdrh if( IsVirtual(pTab) ) return 0; /* FROM clause not a virtual table */ 1477b287f4b6Sdrh pEList = p->pEList; 1478b287f4b6Sdrh if( pEList->nExpr!=1 ) return 0; /* One column in the result set */ 1479b287f4b6Sdrh if( pEList->a[0].pExpr->op!=TK_COLUMN ) return 0; /* Result is a column */ 1480b287f4b6Sdrh return 1; 1481b287f4b6Sdrh } 1482b287f4b6Sdrh #endif /* SQLITE_OMIT_SUBQUERY */ 1483b287f4b6Sdrh 1484b287f4b6Sdrh /* 14851d8cb21fSdan ** Code an OP_Once instruction and allocate space for its flag. Return the 14861d8cb21fSdan ** address of the new instruction. 14871d8cb21fSdan */ 14881d8cb21fSdan int sqlite3CodeOnce(Parse *pParse){ 14891d8cb21fSdan Vdbe *v = sqlite3GetVdbe(pParse); /* Virtual machine being coded */ 14901d8cb21fSdan return sqlite3VdbeAddOp1(v, OP_Once, pParse->nOnce++); 14911d8cb21fSdan } 14921d8cb21fSdan 14931d8cb21fSdan /* 14949a96b668Sdanielk1977 ** This function is used by the implementation of the IN (...) operator. 1495d4305ca6Sdrh ** The pX parameter is the expression on the RHS of the IN operator, which 1496d4305ca6Sdrh ** might be either a list of expressions or a subquery. 14979a96b668Sdanielk1977 ** 1498d4305ca6Sdrh ** The job of this routine is to find or create a b-tree object that can 1499d4305ca6Sdrh ** be used either to test for membership in the RHS set or to iterate through 1500d4305ca6Sdrh ** all members of the RHS set, skipping duplicates. 1501d4305ca6Sdrh ** 1502d4305ca6Sdrh ** A cursor is opened on the b-tree object that the RHS of the IN operator 1503d4305ca6Sdrh ** and pX->iTable is set to the index of that cursor. 1504d4305ca6Sdrh ** 1505b74b1017Sdrh ** The returned value of this function indicates the b-tree type, as follows: 15069a96b668Sdanielk1977 ** 15079a96b668Sdanielk1977 ** IN_INDEX_ROWID - The cursor was opened on a database table. 15081ccce449Sdrh ** IN_INDEX_INDEX_ASC - The cursor was opened on an ascending index. 15091ccce449Sdrh ** IN_INDEX_INDEX_DESC - The cursor was opened on a descending index. 15109a96b668Sdanielk1977 ** IN_INDEX_EPH - The cursor was opened on a specially created and 15119a96b668Sdanielk1977 ** populated epheremal table. 15129a96b668Sdanielk1977 ** 1513d4305ca6Sdrh ** An existing b-tree might be used if the RHS expression pX is a simple 1514d4305ca6Sdrh ** subquery such as: 15159a96b668Sdanielk1977 ** 15169a96b668Sdanielk1977 ** SELECT <column> FROM <table> 15179a96b668Sdanielk1977 ** 1518d4305ca6Sdrh ** If the RHS of the IN operator is a list or a more complex subquery, then 1519d4305ca6Sdrh ** an ephemeral table might need to be generated from the RHS and then 1520d4305ca6Sdrh ** pX->iTable made to point to the ephermeral table instead of an 1521d4305ca6Sdrh ** existing table. 1522d4305ca6Sdrh ** 1523b74b1017Sdrh ** If the prNotFound parameter is 0, then the b-tree will be used to iterate 15249a96b668Sdanielk1977 ** through the set members, skipping any duplicates. In this case an 15259a96b668Sdanielk1977 ** epheremal table must be used unless the selected <column> is guaranteed 15269a96b668Sdanielk1977 ** to be unique - either because it is an INTEGER PRIMARY KEY or it 1527b74b1017Sdrh ** has a UNIQUE constraint or UNIQUE index. 15280cdc022eSdanielk1977 ** 1529b74b1017Sdrh ** If the prNotFound parameter is not 0, then the b-tree will be used 15300cdc022eSdanielk1977 ** for fast set membership tests. In this case an epheremal table must 15310cdc022eSdanielk1977 ** be used unless <column> is an INTEGER PRIMARY KEY or an index can 15320cdc022eSdanielk1977 ** be found with <column> as its left-most column. 15330cdc022eSdanielk1977 ** 1534b74b1017Sdrh ** When the b-tree is being used for membership tests, the calling function 15350cdc022eSdanielk1977 ** needs to know whether or not the structure contains an SQL NULL 15360cdc022eSdanielk1977 ** value in order to correctly evaluate expressions like "X IN (Y, Z)". 1537e3365e6cSdrh ** If there is any chance that the (...) might contain a NULL value at 15380cdc022eSdanielk1977 ** runtime, then a register is allocated and the register number written 1539e3365e6cSdrh ** to *prNotFound. If there is no chance that the (...) contains a 15400cdc022eSdanielk1977 ** NULL value, then *prNotFound is left unchanged. 15410cdc022eSdanielk1977 ** 15420cdc022eSdanielk1977 ** If a register is allocated and its location stored in *prNotFound, then 1543e3365e6cSdrh ** its initial value is NULL. If the (...) does not remain constant 1544e3365e6cSdrh ** for the duration of the query (i.e. the SELECT within the (...) 1545b74b1017Sdrh ** is a correlated subquery) then the value of the allocated register is 1546e3365e6cSdrh ** reset to NULL each time the subquery is rerun. This allows the 1547b74b1017Sdrh ** caller to use vdbe code equivalent to the following: 15480cdc022eSdanielk1977 ** 15490cdc022eSdanielk1977 ** if( register==NULL ){ 15500cdc022eSdanielk1977 ** has_null = <test if data structure contains null> 15510cdc022eSdanielk1977 ** register = 1 15520cdc022eSdanielk1977 ** } 15530cdc022eSdanielk1977 ** 15540cdc022eSdanielk1977 ** in order to avoid running the <test if data structure contains null> 15550cdc022eSdanielk1977 ** test more often than is necessary. 15569a96b668Sdanielk1977 */ 1557284f4acaSdanielk1977 #ifndef SQLITE_OMIT_SUBQUERY 15580cdc022eSdanielk1977 int sqlite3FindInIndex(Parse *pParse, Expr *pX, int *prNotFound){ 1559b74b1017Sdrh Select *p; /* SELECT to the right of IN operator */ 1560b74b1017Sdrh int eType = 0; /* Type of RHS table. IN_INDEX_* */ 1561b74b1017Sdrh int iTab = pParse->nTab++; /* Cursor of the RHS table */ 1562b74b1017Sdrh int mustBeUnique = (prNotFound==0); /* True if RHS must be unique */ 1563b8475df8Sdrh Vdbe *v = sqlite3GetVdbe(pParse); /* Virtual machine being coded */ 15649a96b668Sdanielk1977 15651450bc6eSdrh assert( pX->op==TK_IN ); 15661450bc6eSdrh 1567b74b1017Sdrh /* Check to see if an existing table or index can be used to 1568b74b1017Sdrh ** satisfy the query. This is preferable to generating a new 1569b74b1017Sdrh ** ephemeral table. 15709a96b668Sdanielk1977 */ 15716ab3a2ecSdanielk1977 p = (ExprHasProperty(pX, EP_xIsSelect) ? pX->x.pSelect : 0); 1572fd773cf9Sdrh if( ALWAYS(pParse->nErr==0) && isCandidateForInOpt(p) ){ 1573e1fb65a0Sdanielk1977 sqlite3 *db = pParse->db; /* Database connection */ 1574b07028f7Sdrh Table *pTab; /* Table <table>. */ 1575b07028f7Sdrh Expr *pExpr; /* Expression <column> */ 1576bbbdc83bSdrh i16 iCol; /* Index of column <column> */ 1577bbbdc83bSdrh i16 iDb; /* Database idx for pTab */ 1578e1fb65a0Sdanielk1977 1579b07028f7Sdrh assert( p ); /* Because of isCandidateForInOpt(p) */ 1580b07028f7Sdrh assert( p->pEList!=0 ); /* Because of isCandidateForInOpt(p) */ 1581b07028f7Sdrh assert( p->pEList->a[0].pExpr!=0 ); /* Because of isCandidateForInOpt(p) */ 1582b07028f7Sdrh assert( p->pSrc!=0 ); /* Because of isCandidateForInOpt(p) */ 1583b07028f7Sdrh pTab = p->pSrc->a[0].pTab; 1584b07028f7Sdrh pExpr = p->pEList->a[0].pExpr; 1585bbbdc83bSdrh iCol = (i16)pExpr->iColumn; 1586b07028f7Sdrh 1587e1fb65a0Sdanielk1977 /* Code an OP_VerifyCookie and OP_TableLock for <table>. */ 1588e1fb65a0Sdanielk1977 iDb = sqlite3SchemaToIndex(db, pTab->pSchema); 1589e1fb65a0Sdanielk1977 sqlite3CodeVerifySchema(pParse, iDb); 1590e1fb65a0Sdanielk1977 sqlite3TableLock(pParse, iDb, pTab->tnum, 0, pTab->zName); 15919a96b668Sdanielk1977 15929a96b668Sdanielk1977 /* This function is only called from two places. In both cases the vdbe 15939a96b668Sdanielk1977 ** has already been allocated. So assume sqlite3GetVdbe() is always 15949a96b668Sdanielk1977 ** successful here. 15959a96b668Sdanielk1977 */ 15969a96b668Sdanielk1977 assert(v); 15979a96b668Sdanielk1977 if( iCol<0 ){ 15989a96b668Sdanielk1977 int iAddr; 15999a96b668Sdanielk1977 16001d8cb21fSdan iAddr = sqlite3CodeOnce(pParse); 16019a96b668Sdanielk1977 16029a96b668Sdanielk1977 sqlite3OpenTable(pParse, iTab, iDb, pTab, OP_OpenRead); 16039a96b668Sdanielk1977 eType = IN_INDEX_ROWID; 16049a96b668Sdanielk1977 16059a96b668Sdanielk1977 sqlite3VdbeJumpHere(v, iAddr); 16069a96b668Sdanielk1977 }else{ 1607e1fb65a0Sdanielk1977 Index *pIdx; /* Iterator variable */ 1608e1fb65a0Sdanielk1977 16099a96b668Sdanielk1977 /* The collation sequence used by the comparison. If an index is to 16109a96b668Sdanielk1977 ** be used in place of a temp-table, it must be ordered according 1611e1fb65a0Sdanielk1977 ** to this collation sequence. */ 16129a96b668Sdanielk1977 CollSeq *pReq = sqlite3BinaryCompareCollSeq(pParse, pX->pLeft, pExpr); 16139a96b668Sdanielk1977 16149a96b668Sdanielk1977 /* Check that the affinity that will be used to perform the 16159a96b668Sdanielk1977 ** comparison is the same as the affinity of the column. If 16169a96b668Sdanielk1977 ** it is not, it is not possible to use any index. 16179a96b668Sdanielk1977 */ 1618dbaee5e3Sdrh int affinity_ok = sqlite3IndexAffinityOk(pX, pTab->aCol[iCol].affinity); 16199a96b668Sdanielk1977 16209a96b668Sdanielk1977 for(pIdx=pTab->pIndex; pIdx && eType==0 && affinity_ok; pIdx=pIdx->pNext){ 16219a96b668Sdanielk1977 if( (pIdx->aiColumn[0]==iCol) 1622b74b1017Sdrh && sqlite3FindCollSeq(db, ENC(db), pIdx->azColl[0], 0)==pReq 1623bbbdc83bSdrh && (!mustBeUnique || (pIdx->nKeyCol==1 && pIdx->onError!=OE_None)) 16249a96b668Sdanielk1977 ){ 16252ec2fb22Sdrh int iAddr = sqlite3CodeOnce(pParse); 16262ec2fb22Sdrh sqlite3VdbeAddOp3(v, OP_OpenRead, iTab, pIdx->tnum, iDb); 16272ec2fb22Sdrh sqlite3VdbeSetP4KeyInfo(pParse, pIdx); 1628207872a4Sdanielk1977 VdbeComment((v, "%s", pIdx->zName)); 16291ccce449Sdrh assert( IN_INDEX_INDEX_DESC == IN_INDEX_INDEX_ASC+1 ); 16301ccce449Sdrh eType = IN_INDEX_INDEX_ASC + pIdx->aSortOrder[0]; 16319a96b668Sdanielk1977 16329a96b668Sdanielk1977 sqlite3VdbeJumpHere(v, iAddr); 16330cdc022eSdanielk1977 if( prNotFound && !pTab->aCol[iCol].notNull ){ 16340cdc022eSdanielk1977 *prNotFound = ++pParse->nMem; 1635b8475df8Sdrh sqlite3VdbeAddOp2(v, OP_Null, 0, *prNotFound); 16360cdc022eSdanielk1977 } 16379a96b668Sdanielk1977 } 16389a96b668Sdanielk1977 } 16399a96b668Sdanielk1977 } 16409a96b668Sdanielk1977 } 16419a96b668Sdanielk1977 16429a96b668Sdanielk1977 if( eType==0 ){ 16431450bc6eSdrh /* Could not found an existing table or index to use as the RHS b-tree. 1644b74b1017Sdrh ** We will have to generate an ephemeral table to do the job. 1645b74b1017Sdrh */ 16468e23daf3Sdrh u32 savedNQueryLoop = pParse->nQueryLoop; 16470cdc022eSdanielk1977 int rMayHaveNull = 0; 164841a05b7bSdanielk1977 eType = IN_INDEX_EPH; 16490cdc022eSdanielk1977 if( prNotFound ){ 16500cdc022eSdanielk1977 *prNotFound = rMayHaveNull = ++pParse->nMem; 1651b8475df8Sdrh sqlite3VdbeAddOp2(v, OP_Null, 0, *prNotFound); 1652cf4d38aaSdrh }else{ 16534a5acf8eSdrh testcase( pParse->nQueryLoop>0 ); 16544a5acf8eSdrh pParse->nQueryLoop = 0; 1655c5cd1249Sdrh if( pX->pLeft->iColumn<0 && !ExprHasProperty(pX, EP_xIsSelect) ){ 165641a05b7bSdanielk1977 eType = IN_INDEX_ROWID; 16570cdc022eSdanielk1977 } 1658cf4d38aaSdrh } 165941a05b7bSdanielk1977 sqlite3CodeSubselect(pParse, pX, rMayHaveNull, eType==IN_INDEX_ROWID); 1660cf4d38aaSdrh pParse->nQueryLoop = savedNQueryLoop; 16619a96b668Sdanielk1977 }else{ 16629a96b668Sdanielk1977 pX->iTable = iTab; 16639a96b668Sdanielk1977 } 16649a96b668Sdanielk1977 return eType; 16659a96b668Sdanielk1977 } 1666284f4acaSdanielk1977 #endif 1667626a879aSdrh 1668626a879aSdrh /* 1669d4187c71Sdrh ** Generate code for scalar subqueries used as a subquery expression, EXISTS, 1670d4187c71Sdrh ** or IN operators. Examples: 1671626a879aSdrh ** 16729cbe6352Sdrh ** (SELECT a FROM b) -- subquery 16739cbe6352Sdrh ** EXISTS (SELECT a FROM b) -- EXISTS subquery 16749cbe6352Sdrh ** x IN (4,5,11) -- IN operator with list on right-hand side 16759cbe6352Sdrh ** x IN (SELECT a FROM b) -- IN operator with subquery on the right 1676fef5208cSdrh ** 16779cbe6352Sdrh ** The pExpr parameter describes the expression that contains the IN 16789cbe6352Sdrh ** operator or subquery. 167941a05b7bSdanielk1977 ** 168041a05b7bSdanielk1977 ** If parameter isRowid is non-zero, then expression pExpr is guaranteed 168141a05b7bSdanielk1977 ** to be of the form "<rowid> IN (?, ?, ?)", where <rowid> is a reference 168241a05b7bSdanielk1977 ** to some integer key column of a table B-Tree. In this case, use an 168341a05b7bSdanielk1977 ** intkey B-Tree to store the set of IN(...) values instead of the usual 168441a05b7bSdanielk1977 ** (slower) variable length keys B-Tree. 1685fd773cf9Sdrh ** 1686fd773cf9Sdrh ** If rMayHaveNull is non-zero, that means that the operation is an IN 1687fd773cf9Sdrh ** (not a SELECT or EXISTS) and that the RHS might contains NULLs. 1688fd773cf9Sdrh ** Furthermore, the IN is in a WHERE clause and that we really want 1689fd773cf9Sdrh ** to iterate over the RHS of the IN operator in order to quickly locate 1690fd773cf9Sdrh ** all corresponding LHS elements. All this routine does is initialize 1691fd773cf9Sdrh ** the register given by rMayHaveNull to NULL. Calling routines will take 1692fd773cf9Sdrh ** care of changing this register value to non-NULL if the RHS is NULL-free. 1693fd773cf9Sdrh ** 1694fd773cf9Sdrh ** If rMayHaveNull is zero, that means that the subquery is being used 1695fd773cf9Sdrh ** for membership testing only. There is no need to initialize any 1696f7b5496eSdrh ** registers to indicate the presence or absence of NULLs on the RHS. 16971450bc6eSdrh ** 16981450bc6eSdrh ** For a SELECT or EXISTS operator, return the register that holds the 16991450bc6eSdrh ** result. For IN operators or if an error occurs, the return value is 0. 1700cce7d176Sdrh */ 170151522cd3Sdrh #ifndef SQLITE_OMIT_SUBQUERY 17021450bc6eSdrh int sqlite3CodeSubselect( 1703fd773cf9Sdrh Parse *pParse, /* Parsing context */ 1704fd773cf9Sdrh Expr *pExpr, /* The IN, SELECT, or EXISTS operator */ 1705fd773cf9Sdrh int rMayHaveNull, /* Register that records whether NULLs exist in RHS */ 1706fd773cf9Sdrh int isRowid /* If true, LHS of IN operator is a rowid */ 170741a05b7bSdanielk1977 ){ 1708dfd2d9f6Sdrh int testAddr = -1; /* One-time test address */ 17091450bc6eSdrh int rReg = 0; /* Register storing resulting */ 1710b3bce662Sdanielk1977 Vdbe *v = sqlite3GetVdbe(pParse); 17111450bc6eSdrh if( NEVER(v==0) ) return 0; 1712ceea3321Sdrh sqlite3ExprCachePush(pParse); 1713fc976065Sdanielk1977 171457dbd7b3Sdrh /* This code must be run in its entirety every time it is encountered 171557dbd7b3Sdrh ** if any of the following is true: 171657dbd7b3Sdrh ** 171757dbd7b3Sdrh ** * The right-hand side is a correlated subquery 171857dbd7b3Sdrh ** * The right-hand side is an expression list containing variables 171957dbd7b3Sdrh ** * We are inside a trigger 172057dbd7b3Sdrh ** 172157dbd7b3Sdrh ** If all of the above are false, then we can run this code just once 172257dbd7b3Sdrh ** save the results, and reuse the same result on subsequent invocations. 1723b3bce662Sdanielk1977 */ 1724c5cd1249Sdrh if( !ExprHasProperty(pExpr, EP_VarSelect) ){ 17251d8cb21fSdan testAddr = sqlite3CodeOnce(pParse); 1726b3bce662Sdanielk1977 } 1727b3bce662Sdanielk1977 17284a07e3dbSdan #ifndef SQLITE_OMIT_EXPLAIN 17294a07e3dbSdan if( pParse->explain==2 ){ 17304a07e3dbSdan char *zMsg = sqlite3MPrintf( 1731dfd2d9f6Sdrh pParse->db, "EXECUTE %s%s SUBQUERY %d", testAddr>=0?"":"CORRELATED ", 17324a07e3dbSdan pExpr->op==TK_IN?"LIST":"SCALAR", pParse->iNextSelectId 17334a07e3dbSdan ); 17344a07e3dbSdan sqlite3VdbeAddOp4(v, OP_Explain, pParse->iSelectId, 0, 0, zMsg, P4_DYNAMIC); 17354a07e3dbSdan } 17364a07e3dbSdan #endif 17374a07e3dbSdan 1738cce7d176Sdrh switch( pExpr->op ){ 1739fef5208cSdrh case TK_IN: { 1740d4187c71Sdrh char affinity; /* Affinity of the LHS of the IN */ 1741b9bb7c18Sdrh int addr; /* Address of OP_OpenEphemeral instruction */ 1742d4187c71Sdrh Expr *pLeft = pExpr->pLeft; /* the LHS of the IN operator */ 1743323df790Sdrh KeyInfo *pKeyInfo = 0; /* Key information */ 1744d3d39e93Sdrh 17450cdc022eSdanielk1977 if( rMayHaveNull ){ 17460cdc022eSdanielk1977 sqlite3VdbeAddOp2(v, OP_Null, 0, rMayHaveNull); 17470cdc022eSdanielk1977 } 17480cdc022eSdanielk1977 174941a05b7bSdanielk1977 affinity = sqlite3ExprAffinity(pLeft); 1750e014a838Sdanielk1977 1751e014a838Sdanielk1977 /* Whether this is an 'x IN(SELECT...)' or an 'x IN(<exprlist>)' 17528cff69dfSdrh ** expression it is handled the same way. An ephemeral table is 1753e014a838Sdanielk1977 ** filled with single-field index keys representing the results 1754e014a838Sdanielk1977 ** from the SELECT or the <exprlist>. 1755fef5208cSdrh ** 1756e014a838Sdanielk1977 ** If the 'x' expression is a column value, or the SELECT... 1757e014a838Sdanielk1977 ** statement returns a column value, then the affinity of that 1758e014a838Sdanielk1977 ** column is used to build the index keys. If both 'x' and the 1759e014a838Sdanielk1977 ** SELECT... statement are columns, then numeric affinity is used 1760e014a838Sdanielk1977 ** if either column has NUMERIC or INTEGER affinity. If neither 1761e014a838Sdanielk1977 ** 'x' nor the SELECT... statement are columns, then numeric affinity 1762e014a838Sdanielk1977 ** is used. 1763fef5208cSdrh */ 1764832508b7Sdrh pExpr->iTable = pParse->nTab++; 176541a05b7bSdanielk1977 addr = sqlite3VdbeAddOp2(v, OP_OpenEphemeral, pExpr->iTable, !isRowid); 1766d4187c71Sdrh if( rMayHaveNull==0 ) sqlite3VdbeChangeP5(v, BTREE_UNORDERED); 1767ad124329Sdrh pKeyInfo = isRowid ? 0 : sqlite3KeyInfoAlloc(pParse->db, 1, 1); 1768e014a838Sdanielk1977 17696ab3a2ecSdanielk1977 if( ExprHasProperty(pExpr, EP_xIsSelect) ){ 1770e014a838Sdanielk1977 /* Case 1: expr IN (SELECT ...) 1771e014a838Sdanielk1977 ** 1772e014a838Sdanielk1977 ** Generate code to write the results of the select into the temporary 1773e014a838Sdanielk1977 ** table allocated and opened above. 1774e014a838Sdanielk1977 */ 17751013c932Sdrh SelectDest dest; 1776be5c89acSdrh ExprList *pEList; 17771013c932Sdrh 177841a05b7bSdanielk1977 assert( !isRowid ); 17791013c932Sdrh sqlite3SelectDestInit(&dest, SRT_Set, pExpr->iTable); 17802b596da8Sdrh dest.affSdst = (u8)affinity; 1781e014a838Sdanielk1977 assert( (pExpr->iTable&0x0000FFFF)==pExpr->iTable ); 178248b5b041Sdrh pExpr->x.pSelect->iLimit = 0; 1783812ea833Sdrh testcase( pKeyInfo==0 ); /* Caused by OOM in sqlite3KeyInfoAlloc() */ 17846ab3a2ecSdanielk1977 if( sqlite3Select(pParse, pExpr->x.pSelect, &dest) ){ 17852ec2fb22Sdrh sqlite3KeyInfoUnref(pKeyInfo); 17861450bc6eSdrh return 0; 178794ccde58Sdrh } 17886ab3a2ecSdanielk1977 pEList = pExpr->x.pSelect->pEList; 1789812ea833Sdrh assert( pKeyInfo!=0 ); /* OOM will cause exit after sqlite3Select() */ 17903535ec3eSdrh assert( pEList!=0 ); 17913535ec3eSdrh assert( pEList->nExpr>0 ); 17922ec2fb22Sdrh assert( sqlite3KeyInfoIsWriteable(pKeyInfo) ); 1793323df790Sdrh pKeyInfo->aColl[0] = sqlite3BinaryCompareCollSeq(pParse, pExpr->pLeft, 1794be5c89acSdrh pEList->a[0].pExpr); 1795a7d2db17Sdrh }else if( ALWAYS(pExpr->x.pList!=0) ){ 1796fef5208cSdrh /* Case 2: expr IN (exprlist) 1797fef5208cSdrh ** 1798e014a838Sdanielk1977 ** For each expression, build an index key from the evaluation and 1799e014a838Sdanielk1977 ** store it in the temporary table. If <expr> is a column, then use 1800e014a838Sdanielk1977 ** that columns affinity when building index keys. If <expr> is not 1801e014a838Sdanielk1977 ** a column, use numeric affinity. 1802fef5208cSdrh */ 1803e014a838Sdanielk1977 int i; 18046ab3a2ecSdanielk1977 ExprList *pList = pExpr->x.pList; 180557dbd7b3Sdrh struct ExprList_item *pItem; 1806ecc31805Sdrh int r1, r2, r3; 180757dbd7b3Sdrh 1808e014a838Sdanielk1977 if( !affinity ){ 18098159a35fSdrh affinity = SQLITE_AFF_NONE; 1810e014a838Sdanielk1977 } 1811323df790Sdrh if( pKeyInfo ){ 18122ec2fb22Sdrh assert( sqlite3KeyInfoIsWriteable(pKeyInfo) ); 1813323df790Sdrh pKeyInfo->aColl[0] = sqlite3ExprCollSeq(pParse, pExpr->pLeft); 1814323df790Sdrh } 1815e014a838Sdanielk1977 1816e014a838Sdanielk1977 /* Loop through each expression in <exprlist>. */ 18172d401ab8Sdrh r1 = sqlite3GetTempReg(pParse); 18182d401ab8Sdrh r2 = sqlite3GetTempReg(pParse); 18194e7f36a2Sdanielk1977 sqlite3VdbeAddOp2(v, OP_Null, 0, r2); 182057dbd7b3Sdrh for(i=pList->nExpr, pItem=pList->a; i>0; i--, pItem++){ 182157dbd7b3Sdrh Expr *pE2 = pItem->pExpr; 1822e05c929bSdrh int iValToIns; 1823e014a838Sdanielk1977 182457dbd7b3Sdrh /* If the expression is not constant then we will need to 182557dbd7b3Sdrh ** disable the test that was generated above that makes sure 182657dbd7b3Sdrh ** this code only executes once. Because for a non-constant 182757dbd7b3Sdrh ** expression we need to rerun this code each time. 182857dbd7b3Sdrh */ 1829dfd2d9f6Sdrh if( testAddr>=0 && !sqlite3ExprIsConstant(pE2) ){ 183048f2d3b1Sdrh sqlite3VdbeChangeToNoop(v, testAddr); 1831dfd2d9f6Sdrh testAddr = -1; 18324794b980Sdrh } 1833e014a838Sdanielk1977 1834e014a838Sdanielk1977 /* Evaluate the expression and insert it into the temp table */ 1835e05c929bSdrh if( isRowid && sqlite3ExprIsInteger(pE2, &iValToIns) ){ 1836e05c929bSdrh sqlite3VdbeAddOp3(v, OP_InsertInt, pExpr->iTable, r2, iValToIns); 1837e05c929bSdrh }else{ 1838ecc31805Sdrh r3 = sqlite3ExprCodeTarget(pParse, pE2, r1); 183941a05b7bSdanielk1977 if( isRowid ){ 1840e05c929bSdrh sqlite3VdbeAddOp2(v, OP_MustBeInt, r3, 1841e05c929bSdrh sqlite3VdbeCurrentAddr(v)+2); 184241a05b7bSdanielk1977 sqlite3VdbeAddOp3(v, OP_Insert, pExpr->iTable, r2, r3); 184341a05b7bSdanielk1977 }else{ 1844ecc31805Sdrh sqlite3VdbeAddOp4(v, OP_MakeRecord, r3, 1, r2, &affinity, 1); 18453c31fc23Sdrh sqlite3ExprCacheAffinityChange(pParse, r3, 1); 18462d401ab8Sdrh sqlite3VdbeAddOp2(v, OP_IdxInsert, pExpr->iTable, r2); 1847fef5208cSdrh } 184841a05b7bSdanielk1977 } 1849e05c929bSdrh } 18502d401ab8Sdrh sqlite3ReleaseTempReg(pParse, r1); 18512d401ab8Sdrh sqlite3ReleaseTempReg(pParse, r2); 1852fef5208cSdrh } 1853323df790Sdrh if( pKeyInfo ){ 18542ec2fb22Sdrh sqlite3VdbeChangeP4(v, addr, (void *)pKeyInfo, P4_KEYINFO); 185541a05b7bSdanielk1977 } 1856b3bce662Sdanielk1977 break; 1857fef5208cSdrh } 1858fef5208cSdrh 185951522cd3Sdrh case TK_EXISTS: 1860fd773cf9Sdrh case TK_SELECT: 1861fd773cf9Sdrh default: { 1862fd773cf9Sdrh /* If this has to be a scalar SELECT. Generate code to put the 1863fef5208cSdrh ** value of this select in a memory cell and record the number 1864fd773cf9Sdrh ** of the memory cell in iColumn. If this is an EXISTS, write 1865fd773cf9Sdrh ** an integer 0 (not exists) or 1 (exists) into a memory cell 1866fd773cf9Sdrh ** and record that memory cell in iColumn. 1867fef5208cSdrh */ 1868fd773cf9Sdrh Select *pSel; /* SELECT statement to encode */ 1869fd773cf9Sdrh SelectDest dest; /* How to deal with SELECt result */ 18701398ad36Sdrh 1871cf697396Sshane testcase( pExpr->op==TK_EXISTS ); 1872cf697396Sshane testcase( pExpr->op==TK_SELECT ); 1873cf697396Sshane assert( pExpr->op==TK_EXISTS || pExpr->op==TK_SELECT ); 1874cf697396Sshane 18756ab3a2ecSdanielk1977 assert( ExprHasProperty(pExpr, EP_xIsSelect) ); 18766ab3a2ecSdanielk1977 pSel = pExpr->x.pSelect; 18771013c932Sdrh sqlite3SelectDestInit(&dest, 0, ++pParse->nMem); 187851522cd3Sdrh if( pExpr->op==TK_SELECT ){ 18796c8c8ce0Sdanielk1977 dest.eDest = SRT_Mem; 18802b596da8Sdrh sqlite3VdbeAddOp2(v, OP_Null, 0, dest.iSDParm); 1881d4e70ebdSdrh VdbeComment((v, "Init subquery result")); 188251522cd3Sdrh }else{ 18836c8c8ce0Sdanielk1977 dest.eDest = SRT_Exists; 18842b596da8Sdrh sqlite3VdbeAddOp2(v, OP_Integer, 0, dest.iSDParm); 1885d4e70ebdSdrh VdbeComment((v, "Init EXISTS result")); 188651522cd3Sdrh } 1887633e6d57Sdrh sqlite3ExprDelete(pParse->db, pSel->pLimit); 1888094430ebSdrh pSel->pLimit = sqlite3PExpr(pParse, TK_INTEGER, 0, 0, 1889094430ebSdrh &sqlite3IntTokens[1]); 189048b5b041Sdrh pSel->iLimit = 0; 18917d10d5a6Sdrh if( sqlite3Select(pParse, pSel, &dest) ){ 18921450bc6eSdrh return 0; 189394ccde58Sdrh } 18942b596da8Sdrh rReg = dest.iSDParm; 1895ebb6a65dSdrh ExprSetVVAProperty(pExpr, EP_NoReduce); 1896b3bce662Sdanielk1977 break; 189719a775c2Sdrh } 1898cce7d176Sdrh } 1899b3bce662Sdanielk1977 1900dfd2d9f6Sdrh if( testAddr>=0 ){ 190148f2d3b1Sdrh sqlite3VdbeJumpHere(v, testAddr); 1902b3bce662Sdanielk1977 } 1903ceea3321Sdrh sqlite3ExprCachePop(pParse, 1); 1904fc976065Sdanielk1977 19051450bc6eSdrh return rReg; 1906cce7d176Sdrh } 190751522cd3Sdrh #endif /* SQLITE_OMIT_SUBQUERY */ 1908cce7d176Sdrh 1909e3365e6cSdrh #ifndef SQLITE_OMIT_SUBQUERY 1910e3365e6cSdrh /* 1911e3365e6cSdrh ** Generate code for an IN expression. 1912e3365e6cSdrh ** 1913e3365e6cSdrh ** x IN (SELECT ...) 1914e3365e6cSdrh ** x IN (value, value, ...) 1915e3365e6cSdrh ** 1916e3365e6cSdrh ** The left-hand side (LHS) is a scalar expression. The right-hand side (RHS) 1917e3365e6cSdrh ** is an array of zero or more values. The expression is true if the LHS is 1918e3365e6cSdrh ** contained within the RHS. The value of the expression is unknown (NULL) 1919e3365e6cSdrh ** if the LHS is NULL or if the LHS is not contained within the RHS and the 1920e3365e6cSdrh ** RHS contains one or more NULL values. 1921e3365e6cSdrh ** 1922e3365e6cSdrh ** This routine generates code will jump to destIfFalse if the LHS is not 1923e3365e6cSdrh ** contained within the RHS. If due to NULLs we cannot determine if the LHS 1924e3365e6cSdrh ** is contained in the RHS then jump to destIfNull. If the LHS is contained 1925e3365e6cSdrh ** within the RHS then fall through. 1926e3365e6cSdrh */ 1927e3365e6cSdrh static void sqlite3ExprCodeIN( 1928e3365e6cSdrh Parse *pParse, /* Parsing and code generating context */ 1929e3365e6cSdrh Expr *pExpr, /* The IN expression */ 1930e3365e6cSdrh int destIfFalse, /* Jump here if LHS is not contained in the RHS */ 1931e3365e6cSdrh int destIfNull /* Jump here if the results are unknown due to NULLs */ 1932e3365e6cSdrh ){ 1933e3365e6cSdrh int rRhsHasNull = 0; /* Register that is true if RHS contains NULL values */ 1934e3365e6cSdrh char affinity; /* Comparison affinity to use */ 1935e3365e6cSdrh int eType; /* Type of the RHS */ 1936e3365e6cSdrh int r1; /* Temporary use register */ 1937e3365e6cSdrh Vdbe *v; /* Statement under construction */ 1938e3365e6cSdrh 1939e3365e6cSdrh /* Compute the RHS. After this step, the table with cursor 1940e3365e6cSdrh ** pExpr->iTable will contains the values that make up the RHS. 1941e3365e6cSdrh */ 1942e3365e6cSdrh v = pParse->pVdbe; 1943e3365e6cSdrh assert( v!=0 ); /* OOM detected prior to this routine */ 1944e3365e6cSdrh VdbeNoopComment((v, "begin IN expr")); 1945e3365e6cSdrh eType = sqlite3FindInIndex(pParse, pExpr, &rRhsHasNull); 1946e3365e6cSdrh 1947e3365e6cSdrh /* Figure out the affinity to use to create a key from the results 1948e3365e6cSdrh ** of the expression. affinityStr stores a static string suitable for 1949e3365e6cSdrh ** P4 of OP_MakeRecord. 1950e3365e6cSdrh */ 1951e3365e6cSdrh affinity = comparisonAffinity(pExpr); 1952e3365e6cSdrh 1953e3365e6cSdrh /* Code the LHS, the <expr> from "<expr> IN (...)". 1954e3365e6cSdrh */ 1955e3365e6cSdrh sqlite3ExprCachePush(pParse); 1956e3365e6cSdrh r1 = sqlite3GetTempReg(pParse); 1957e3365e6cSdrh sqlite3ExprCode(pParse, pExpr->pLeft, r1); 1958e3365e6cSdrh 1959094430ebSdrh /* If the LHS is NULL, then the result is either false or NULL depending 1960094430ebSdrh ** on whether the RHS is empty or not, respectively. 1961094430ebSdrh */ 1962094430ebSdrh if( destIfNull==destIfFalse ){ 1963094430ebSdrh /* Shortcut for the common case where the false and NULL outcomes are 1964094430ebSdrh ** the same. */ 1965094430ebSdrh sqlite3VdbeAddOp2(v, OP_IsNull, r1, destIfNull); 1966094430ebSdrh }else{ 1967094430ebSdrh int addr1 = sqlite3VdbeAddOp1(v, OP_NotNull, r1); 1968094430ebSdrh sqlite3VdbeAddOp2(v, OP_Rewind, pExpr->iTable, destIfFalse); 1969094430ebSdrh sqlite3VdbeAddOp2(v, OP_Goto, 0, destIfNull); 1970094430ebSdrh sqlite3VdbeJumpHere(v, addr1); 1971094430ebSdrh } 1972e3365e6cSdrh 1973e3365e6cSdrh if( eType==IN_INDEX_ROWID ){ 1974e3365e6cSdrh /* In this case, the RHS is the ROWID of table b-tree 1975e3365e6cSdrh */ 1976e3365e6cSdrh sqlite3VdbeAddOp2(v, OP_MustBeInt, r1, destIfFalse); 1977e3365e6cSdrh sqlite3VdbeAddOp3(v, OP_NotExists, pExpr->iTable, destIfFalse, r1); 1978e3365e6cSdrh }else{ 1979e3365e6cSdrh /* In this case, the RHS is an index b-tree. 1980e3365e6cSdrh */ 19818cff69dfSdrh sqlite3VdbeAddOp4(v, OP_Affinity, r1, 1, 0, &affinity, 1); 1982e3365e6cSdrh 1983e3365e6cSdrh /* If the set membership test fails, then the result of the 1984e3365e6cSdrh ** "x IN (...)" expression must be either 0 or NULL. If the set 1985e3365e6cSdrh ** contains no NULL values, then the result is 0. If the set 1986e3365e6cSdrh ** contains one or more NULL values, then the result of the 1987e3365e6cSdrh ** expression is also NULL. 1988e3365e6cSdrh */ 1989e3365e6cSdrh if( rRhsHasNull==0 || destIfFalse==destIfNull ){ 1990e3365e6cSdrh /* This branch runs if it is known at compile time that the RHS 1991e3365e6cSdrh ** cannot contain NULL values. This happens as the result 1992e3365e6cSdrh ** of a "NOT NULL" constraint in the database schema. 1993e3365e6cSdrh ** 1994e3365e6cSdrh ** Also run this branch if NULL is equivalent to FALSE 1995e3365e6cSdrh ** for this particular IN operator. 1996e3365e6cSdrh */ 19978cff69dfSdrh sqlite3VdbeAddOp4Int(v, OP_NotFound, pExpr->iTable, destIfFalse, r1, 1); 1998e3365e6cSdrh 1999e3365e6cSdrh }else{ 2000e3365e6cSdrh /* In this branch, the RHS of the IN might contain a NULL and 2001e3365e6cSdrh ** the presence of a NULL on the RHS makes a difference in the 2002e3365e6cSdrh ** outcome. 2003e3365e6cSdrh */ 2004e3365e6cSdrh int j1, j2, j3; 2005e3365e6cSdrh 2006e3365e6cSdrh /* First check to see if the LHS is contained in the RHS. If so, 2007e3365e6cSdrh ** then the presence of NULLs in the RHS does not matter, so jump 2008e3365e6cSdrh ** over all of the code that follows. 2009e3365e6cSdrh */ 20108cff69dfSdrh j1 = sqlite3VdbeAddOp4Int(v, OP_Found, pExpr->iTable, 0, r1, 1); 2011e3365e6cSdrh 2012e3365e6cSdrh /* Here we begin generating code that runs if the LHS is not 2013e3365e6cSdrh ** contained within the RHS. Generate additional code that 2014e3365e6cSdrh ** tests the RHS for NULLs. If the RHS contains a NULL then 2015e3365e6cSdrh ** jump to destIfNull. If there are no NULLs in the RHS then 2016e3365e6cSdrh ** jump to destIfFalse. 2017e3365e6cSdrh */ 2018e3365e6cSdrh j2 = sqlite3VdbeAddOp1(v, OP_NotNull, rRhsHasNull); 20198cff69dfSdrh j3 = sqlite3VdbeAddOp4Int(v, OP_Found, pExpr->iTable, 0, rRhsHasNull, 1); 2020e3365e6cSdrh sqlite3VdbeAddOp2(v, OP_Integer, -1, rRhsHasNull); 2021e3365e6cSdrh sqlite3VdbeJumpHere(v, j3); 2022e3365e6cSdrh sqlite3VdbeAddOp2(v, OP_AddImm, rRhsHasNull, 1); 2023e3365e6cSdrh sqlite3VdbeJumpHere(v, j2); 2024e3365e6cSdrh 2025e3365e6cSdrh /* Jump to the appropriate target depending on whether or not 2026e3365e6cSdrh ** the RHS contains a NULL 2027e3365e6cSdrh */ 2028e3365e6cSdrh sqlite3VdbeAddOp2(v, OP_If, rRhsHasNull, destIfNull); 2029e3365e6cSdrh sqlite3VdbeAddOp2(v, OP_Goto, 0, destIfFalse); 2030e3365e6cSdrh 2031e3365e6cSdrh /* The OP_Found at the top of this branch jumps here when true, 2032e3365e6cSdrh ** causing the overall IN expression evaluation to fall through. 2033e3365e6cSdrh */ 2034e3365e6cSdrh sqlite3VdbeJumpHere(v, j1); 2035e3365e6cSdrh } 2036e3365e6cSdrh } 2037e3365e6cSdrh sqlite3ReleaseTempReg(pParse, r1); 2038e3365e6cSdrh sqlite3ExprCachePop(pParse, 1); 2039e3365e6cSdrh VdbeComment((v, "end IN expr")); 2040e3365e6cSdrh } 2041e3365e6cSdrh #endif /* SQLITE_OMIT_SUBQUERY */ 2042e3365e6cSdrh 2043cce7d176Sdrh /* 2044598f1340Sdrh ** Duplicate an 8-byte value 2045598f1340Sdrh */ 2046598f1340Sdrh static char *dup8bytes(Vdbe *v, const char *in){ 2047598f1340Sdrh char *out = sqlite3DbMallocRaw(sqlite3VdbeDb(v), 8); 2048598f1340Sdrh if( out ){ 2049598f1340Sdrh memcpy(out, in, 8); 2050598f1340Sdrh } 2051598f1340Sdrh return out; 2052598f1340Sdrh } 2053598f1340Sdrh 205413573c71Sdrh #ifndef SQLITE_OMIT_FLOATING_POINT 2055598f1340Sdrh /* 2056598f1340Sdrh ** Generate an instruction that will put the floating point 20579cbf3425Sdrh ** value described by z[0..n-1] into register iMem. 20580cf19ed8Sdrh ** 20590cf19ed8Sdrh ** The z[] string will probably not be zero-terminated. But the 20600cf19ed8Sdrh ** z[n] character is guaranteed to be something that does not look 20610cf19ed8Sdrh ** like the continuation of the number. 2062598f1340Sdrh */ 2063b7916a78Sdrh static void codeReal(Vdbe *v, const char *z, int negateFlag, int iMem){ 2064fd773cf9Sdrh if( ALWAYS(z!=0) ){ 2065598f1340Sdrh double value; 2066598f1340Sdrh char *zV; 20679339da1fSdrh sqlite3AtoF(z, &value, sqlite3Strlen30(z), SQLITE_UTF8); 2068d0015161Sdrh assert( !sqlite3IsNaN(value) ); /* The new AtoF never returns NaN */ 2069598f1340Sdrh if( negateFlag ) value = -value; 2070598f1340Sdrh zV = dup8bytes(v, (char*)&value); 20719de221dfSdrh sqlite3VdbeAddOp4(v, OP_Real, 0, iMem, 0, zV, P4_REAL); 2072598f1340Sdrh } 2073598f1340Sdrh } 207413573c71Sdrh #endif 2075598f1340Sdrh 2076598f1340Sdrh 2077598f1340Sdrh /* 2078fec19aadSdrh ** Generate an instruction that will put the integer describe by 20799cbf3425Sdrh ** text z[0..n-1] into register iMem. 20800cf19ed8Sdrh ** 20815f1d6b61Sshaneh ** Expr.u.zToken is always UTF8 and zero-terminated. 2082fec19aadSdrh */ 208313573c71Sdrh static void codeInteger(Parse *pParse, Expr *pExpr, int negFlag, int iMem){ 208413573c71Sdrh Vdbe *v = pParse->pVdbe; 208592b01d53Sdrh if( pExpr->flags & EP_IntValue ){ 208633e619fcSdrh int i = pExpr->u.iValue; 2087d50ffc41Sdrh assert( i>=0 ); 208892b01d53Sdrh if( negFlag ) i = -i; 208992b01d53Sdrh sqlite3VdbeAddOp2(v, OP_Integer, i, iMem); 2090fd773cf9Sdrh }else{ 20915f1d6b61Sshaneh int c; 20925f1d6b61Sshaneh i64 value; 2093fd773cf9Sdrh const char *z = pExpr->u.zToken; 2094fd773cf9Sdrh assert( z!=0 ); 20955f1d6b61Sshaneh c = sqlite3Atoi64(z, &value, sqlite3Strlen30(z), SQLITE_UTF8); 20965f1d6b61Sshaneh if( c==0 || (c==2 && negFlag) ){ 2097598f1340Sdrh char *zV; 2098158b9cb9Sdrh if( negFlag ){ value = c==2 ? SMALLEST_INT64 : -value; } 2099598f1340Sdrh zV = dup8bytes(v, (char*)&value); 21009de221dfSdrh sqlite3VdbeAddOp4(v, OP_Int64, 0, iMem, 0, zV, P4_INT64); 2101fec19aadSdrh }else{ 210213573c71Sdrh #ifdef SQLITE_OMIT_FLOATING_POINT 210313573c71Sdrh sqlite3ErrorMsg(pParse, "oversized integer: %s%s", negFlag ? "-" : "", z); 210413573c71Sdrh #else 2105b7916a78Sdrh codeReal(v, z, negFlag, iMem); 210613573c71Sdrh #endif 2107fec19aadSdrh } 2108fec19aadSdrh } 2109c9cf901dSdanielk1977 } 2110fec19aadSdrh 2111ceea3321Sdrh /* 2112ceea3321Sdrh ** Clear a cache entry. 2113ceea3321Sdrh */ 2114ceea3321Sdrh static void cacheEntryClear(Parse *pParse, struct yColCache *p){ 2115ceea3321Sdrh if( p->tempReg ){ 2116ceea3321Sdrh if( pParse->nTempReg<ArraySize(pParse->aTempReg) ){ 2117ceea3321Sdrh pParse->aTempReg[pParse->nTempReg++] = p->iReg; 2118ceea3321Sdrh } 2119ceea3321Sdrh p->tempReg = 0; 2120ceea3321Sdrh } 2121ceea3321Sdrh } 2122ceea3321Sdrh 2123ceea3321Sdrh 2124ceea3321Sdrh /* 2125ceea3321Sdrh ** Record in the column cache that a particular column from a 2126ceea3321Sdrh ** particular table is stored in a particular register. 2127ceea3321Sdrh */ 2128ceea3321Sdrh void sqlite3ExprCacheStore(Parse *pParse, int iTab, int iCol, int iReg){ 2129ceea3321Sdrh int i; 2130ceea3321Sdrh int minLru; 2131ceea3321Sdrh int idxLru; 2132ceea3321Sdrh struct yColCache *p; 2133ceea3321Sdrh 213420411ea7Sdrh assert( iReg>0 ); /* Register numbers are always positive */ 213520411ea7Sdrh assert( iCol>=-1 && iCol<32768 ); /* Finite column numbers */ 213620411ea7Sdrh 2137b6da74ebSdrh /* The SQLITE_ColumnCache flag disables the column cache. This is used 2138b6da74ebSdrh ** for testing only - to verify that SQLite always gets the same answer 2139b6da74ebSdrh ** with and without the column cache. 2140b6da74ebSdrh */ 21417e5418e4Sdrh if( OptimizationDisabled(pParse->db, SQLITE_ColumnCache) ) return; 2142b6da74ebSdrh 214327ee406eSdrh /* First replace any existing entry. 214427ee406eSdrh ** 214527ee406eSdrh ** Actually, the way the column cache is currently used, we are guaranteed 214627ee406eSdrh ** that the object will never already be in cache. Verify this guarantee. 214727ee406eSdrh */ 214827ee406eSdrh #ifndef NDEBUG 2149ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 215027ee406eSdrh assert( p->iReg==0 || p->iTable!=iTab || p->iColumn!=iCol ); 2151ceea3321Sdrh } 215227ee406eSdrh #endif 2153ceea3321Sdrh 2154ceea3321Sdrh /* Find an empty slot and replace it */ 2155ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 2156ceea3321Sdrh if( p->iReg==0 ){ 2157ceea3321Sdrh p->iLevel = pParse->iCacheLevel; 2158ceea3321Sdrh p->iTable = iTab; 2159ceea3321Sdrh p->iColumn = iCol; 2160ceea3321Sdrh p->iReg = iReg; 2161ceea3321Sdrh p->tempReg = 0; 2162ceea3321Sdrh p->lru = pParse->iCacheCnt++; 2163ceea3321Sdrh return; 2164ceea3321Sdrh } 2165ceea3321Sdrh } 2166ceea3321Sdrh 2167ceea3321Sdrh /* Replace the last recently used */ 2168ceea3321Sdrh minLru = 0x7fffffff; 2169ceea3321Sdrh idxLru = -1; 2170ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 2171ceea3321Sdrh if( p->lru<minLru ){ 2172ceea3321Sdrh idxLru = i; 2173ceea3321Sdrh minLru = p->lru; 2174ceea3321Sdrh } 2175ceea3321Sdrh } 217620411ea7Sdrh if( ALWAYS(idxLru>=0) ){ 2177ceea3321Sdrh p = &pParse->aColCache[idxLru]; 2178ceea3321Sdrh p->iLevel = pParse->iCacheLevel; 2179ceea3321Sdrh p->iTable = iTab; 2180ceea3321Sdrh p->iColumn = iCol; 2181ceea3321Sdrh p->iReg = iReg; 2182ceea3321Sdrh p->tempReg = 0; 2183ceea3321Sdrh p->lru = pParse->iCacheCnt++; 2184ceea3321Sdrh return; 2185ceea3321Sdrh } 2186ceea3321Sdrh } 2187ceea3321Sdrh 2188ceea3321Sdrh /* 2189f49f3523Sdrh ** Indicate that registers between iReg..iReg+nReg-1 are being overwritten. 2190f49f3523Sdrh ** Purge the range of registers from the column cache. 2191ceea3321Sdrh */ 2192f49f3523Sdrh void sqlite3ExprCacheRemove(Parse *pParse, int iReg, int nReg){ 2193ceea3321Sdrh int i; 2194f49f3523Sdrh int iLast = iReg + nReg - 1; 2195ceea3321Sdrh struct yColCache *p; 2196ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 2197f49f3523Sdrh int r = p->iReg; 2198f49f3523Sdrh if( r>=iReg && r<=iLast ){ 2199ceea3321Sdrh cacheEntryClear(pParse, p); 2200ceea3321Sdrh p->iReg = 0; 2201ceea3321Sdrh } 2202ceea3321Sdrh } 2203ceea3321Sdrh } 2204ceea3321Sdrh 2205ceea3321Sdrh /* 2206ceea3321Sdrh ** Remember the current column cache context. Any new entries added 2207ceea3321Sdrh ** added to the column cache after this call are removed when the 2208ceea3321Sdrh ** corresponding pop occurs. 2209ceea3321Sdrh */ 2210ceea3321Sdrh void sqlite3ExprCachePush(Parse *pParse){ 2211ceea3321Sdrh pParse->iCacheLevel++; 22129ac7962aSdrh #ifdef SQLITE_DEBUG 22139ac7962aSdrh if( pParse->db->flags & SQLITE_VdbeAddopTrace ){ 22149ac7962aSdrh printf("PUSH to %d\n", pParse->iCacheLevel); 22159ac7962aSdrh } 22169ac7962aSdrh #endif 2217ceea3321Sdrh } 2218ceea3321Sdrh 2219ceea3321Sdrh /* 2220ceea3321Sdrh ** Remove from the column cache any entries that were added since the 2221ceea3321Sdrh ** the previous N Push operations. In other words, restore the cache 2222ceea3321Sdrh ** to the state it was in N Pushes ago. 2223ceea3321Sdrh */ 2224ceea3321Sdrh void sqlite3ExprCachePop(Parse *pParse, int N){ 2225ceea3321Sdrh int i; 2226ceea3321Sdrh struct yColCache *p; 2227ceea3321Sdrh assert( N>0 ); 2228ceea3321Sdrh assert( pParse->iCacheLevel>=N ); 2229ceea3321Sdrh pParse->iCacheLevel -= N; 22309ac7962aSdrh #ifdef SQLITE_DEBUG 22319ac7962aSdrh if( pParse->db->flags & SQLITE_VdbeAddopTrace ){ 22329ac7962aSdrh printf("POP to %d\n", pParse->iCacheLevel); 22339ac7962aSdrh } 22349ac7962aSdrh #endif 2235ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 2236ceea3321Sdrh if( p->iReg && p->iLevel>pParse->iCacheLevel ){ 2237ceea3321Sdrh cacheEntryClear(pParse, p); 2238ceea3321Sdrh p->iReg = 0; 2239ceea3321Sdrh } 2240ceea3321Sdrh } 2241ceea3321Sdrh } 2242945498f3Sdrh 2243945498f3Sdrh /* 22445cd79239Sdrh ** When a cached column is reused, make sure that its register is 22455cd79239Sdrh ** no longer available as a temp register. ticket #3879: that same 22465cd79239Sdrh ** register might be in the cache in multiple places, so be sure to 22475cd79239Sdrh ** get them all. 22485cd79239Sdrh */ 22495cd79239Sdrh static void sqlite3ExprCachePinRegister(Parse *pParse, int iReg){ 22505cd79239Sdrh int i; 22515cd79239Sdrh struct yColCache *p; 22525cd79239Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 22535cd79239Sdrh if( p->iReg==iReg ){ 22545cd79239Sdrh p->tempReg = 0; 22555cd79239Sdrh } 22565cd79239Sdrh } 22575cd79239Sdrh } 22585cd79239Sdrh 22595cd79239Sdrh /* 22605c092e8aSdrh ** Generate code to extract the value of the iCol-th column of a table. 22615c092e8aSdrh */ 22625c092e8aSdrh void sqlite3ExprCodeGetColumnOfTable( 22635c092e8aSdrh Vdbe *v, /* The VDBE under construction */ 22645c092e8aSdrh Table *pTab, /* The table containing the value */ 2265313619f5Sdrh int iTabCur, /* The table cursor. Or the PK cursor for WITHOUT ROWID */ 22665c092e8aSdrh int iCol, /* Index of the column to extract */ 2267313619f5Sdrh int regOut /* Extract the value into this register */ 22685c092e8aSdrh ){ 22695c092e8aSdrh if( iCol<0 || iCol==pTab->iPKey ){ 22705c092e8aSdrh sqlite3VdbeAddOp2(v, OP_Rowid, iTabCur, regOut); 22715c092e8aSdrh }else{ 22725c092e8aSdrh int op = IsVirtual(pTab) ? OP_VColumn : OP_Column; 2273ee0ec8e1Sdrh int x = iCol; 2274ee0ec8e1Sdrh if( !HasRowid(pTab) ){ 2275ee0ec8e1Sdrh x = sqlite3ColumnOfIndex(sqlite3PrimaryKeyIndex(pTab), iCol); 2276ee0ec8e1Sdrh } 2277ee0ec8e1Sdrh sqlite3VdbeAddOp3(v, op, iTabCur, x, regOut); 22785c092e8aSdrh } 22795c092e8aSdrh if( iCol>=0 ){ 22805c092e8aSdrh sqlite3ColumnDefault(v, pTab, iCol, regOut); 22815c092e8aSdrh } 22825c092e8aSdrh } 22835c092e8aSdrh 22845c092e8aSdrh /* 2285945498f3Sdrh ** Generate code that will extract the iColumn-th column from 2286e55cbd72Sdrh ** table pTab and store the column value in a register. An effort 2287e55cbd72Sdrh ** is made to store the column value in register iReg, but this is 2288e55cbd72Sdrh ** not guaranteed. The location of the column value is returned. 2289e55cbd72Sdrh ** 2290e55cbd72Sdrh ** There must be an open cursor to pTab in iTable when this routine 2291e55cbd72Sdrh ** is called. If iColumn<0 then code is generated that extracts the rowid. 2292945498f3Sdrh */ 2293e55cbd72Sdrh int sqlite3ExprCodeGetColumn( 2294e55cbd72Sdrh Parse *pParse, /* Parsing and code generating context */ 22952133d822Sdrh Table *pTab, /* Description of the table we are reading from */ 22962133d822Sdrh int iColumn, /* Index of the table column */ 22972133d822Sdrh int iTable, /* The cursor pointing to the table */ 2298a748fdccSdrh int iReg, /* Store results here */ 2299a748fdccSdrh u8 p5 /* P5 value for OP_Column */ 23002133d822Sdrh ){ 2301e55cbd72Sdrh Vdbe *v = pParse->pVdbe; 2302e55cbd72Sdrh int i; 2303da250ea5Sdrh struct yColCache *p; 2304e55cbd72Sdrh 2305ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 2306b6da74ebSdrh if( p->iReg>0 && p->iTable==iTable && p->iColumn==iColumn ){ 2307ceea3321Sdrh p->lru = pParse->iCacheCnt++; 23085cd79239Sdrh sqlite3ExprCachePinRegister(pParse, p->iReg); 2309da250ea5Sdrh return p->iReg; 2310e55cbd72Sdrh } 2311e55cbd72Sdrh } 2312e55cbd72Sdrh assert( v!=0 ); 23135c092e8aSdrh sqlite3ExprCodeGetColumnOfTable(v, pTab, iTable, iColumn, iReg); 2314a748fdccSdrh if( p5 ){ 2315a748fdccSdrh sqlite3VdbeChangeP5(v, p5); 2316a748fdccSdrh }else{ 2317ceea3321Sdrh sqlite3ExprCacheStore(pParse, iTable, iColumn, iReg); 2318a748fdccSdrh } 2319e55cbd72Sdrh return iReg; 2320e55cbd72Sdrh } 2321e55cbd72Sdrh 2322e55cbd72Sdrh /* 2323ceea3321Sdrh ** Clear all column cache entries. 2324e55cbd72Sdrh */ 2325ceea3321Sdrh void sqlite3ExprCacheClear(Parse *pParse){ 2326e55cbd72Sdrh int i; 2327ceea3321Sdrh struct yColCache *p; 2328ceea3321Sdrh 23299ac7962aSdrh #if SQLITE_DEBUG 23309ac7962aSdrh if( pParse->db->flags & SQLITE_VdbeAddopTrace ){ 23319ac7962aSdrh printf("CLEAR\n"); 23329ac7962aSdrh } 23339ac7962aSdrh #endif 2334ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 2335ceea3321Sdrh if( p->iReg ){ 2336ceea3321Sdrh cacheEntryClear(pParse, p); 2337ceea3321Sdrh p->iReg = 0; 2338e55cbd72Sdrh } 2339da250ea5Sdrh } 2340da250ea5Sdrh } 2341e55cbd72Sdrh 2342e55cbd72Sdrh /* 2343da250ea5Sdrh ** Record the fact that an affinity change has occurred on iCount 2344da250ea5Sdrh ** registers starting with iStart. 2345e55cbd72Sdrh */ 2346da250ea5Sdrh void sqlite3ExprCacheAffinityChange(Parse *pParse, int iStart, int iCount){ 2347f49f3523Sdrh sqlite3ExprCacheRemove(pParse, iStart, iCount); 2348e55cbd72Sdrh } 2349e55cbd72Sdrh 2350e55cbd72Sdrh /* 2351b21e7c70Sdrh ** Generate code to move content from registers iFrom...iFrom+nReg-1 2352b21e7c70Sdrh ** over to iTo..iTo+nReg-1. Keep the column cache up-to-date. 2353e55cbd72Sdrh */ 2354b21e7c70Sdrh void sqlite3ExprCodeMove(Parse *pParse, int iFrom, int iTo, int nReg){ 2355e55cbd72Sdrh int i; 2356ceea3321Sdrh struct yColCache *p; 2357e8e4af76Sdrh assert( iFrom>=iTo+nReg || iFrom+nReg<=iTo ); 2358e8e4af76Sdrh sqlite3VdbeAddOp3(pParse->pVdbe, OP_Move, iFrom, iTo, nReg-1); 2359ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 2360ceea3321Sdrh int x = p->iReg; 2361b21e7c70Sdrh if( x>=iFrom && x<iFrom+nReg ){ 2362ceea3321Sdrh p->iReg += iTo-iFrom; 2363e55cbd72Sdrh } 2364e55cbd72Sdrh } 2365945498f3Sdrh } 2366945498f3Sdrh 2367f49f3523Sdrh #if defined(SQLITE_DEBUG) || defined(SQLITE_COVERAGE_TEST) 236892b01d53Sdrh /* 2369652fbf55Sdrh ** Return true if any register in the range iFrom..iTo (inclusive) 2370652fbf55Sdrh ** is used as part of the column cache. 2371f49f3523Sdrh ** 2372f49f3523Sdrh ** This routine is used within assert() and testcase() macros only 2373f49f3523Sdrh ** and does not appear in a normal build. 2374652fbf55Sdrh */ 2375652fbf55Sdrh static int usedAsColumnCache(Parse *pParse, int iFrom, int iTo){ 2376652fbf55Sdrh int i; 2377ceea3321Sdrh struct yColCache *p; 2378ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 2379ceea3321Sdrh int r = p->iReg; 2380f49f3523Sdrh if( r>=iFrom && r<=iTo ) return 1; /*NO_TEST*/ 2381652fbf55Sdrh } 2382652fbf55Sdrh return 0; 2383652fbf55Sdrh } 2384f49f3523Sdrh #endif /* SQLITE_DEBUG || SQLITE_COVERAGE_TEST */ 2385652fbf55Sdrh 2386652fbf55Sdrh /* 2387a4c3c87eSdrh ** Convert an expression node to a TK_REGISTER 2388a4c3c87eSdrh */ 2389a4c3c87eSdrh static void exprToRegister(Expr *p, int iReg){ 2390a4c3c87eSdrh p->op2 = p->op; 2391a4c3c87eSdrh p->op = TK_REGISTER; 2392a4c3c87eSdrh p->iTable = iReg; 2393a4c3c87eSdrh ExprClearProperty(p, EP_Skip); 2394a4c3c87eSdrh } 2395a4c3c87eSdrh 2396a4c3c87eSdrh /* 2397cce7d176Sdrh ** Generate code into the current Vdbe to evaluate the given 23982dcef11bSdrh ** expression. Attempt to store the results in register "target". 23992dcef11bSdrh ** Return the register where results are stored. 2400389a1adbSdrh ** 24018b213899Sdrh ** With this routine, there is no guarantee that results will 24022dcef11bSdrh ** be stored in target. The result might be stored in some other 24032dcef11bSdrh ** register if it is convenient to do so. The calling function 24042dcef11bSdrh ** must check the return code and move the results to the desired 24052dcef11bSdrh ** register. 2406cce7d176Sdrh */ 2407678ccce8Sdrh int sqlite3ExprCodeTarget(Parse *pParse, Expr *pExpr, int target){ 24082dcef11bSdrh Vdbe *v = pParse->pVdbe; /* The VM under construction */ 24092dcef11bSdrh int op; /* The opcode being coded */ 24102dcef11bSdrh int inReg = target; /* Results stored in register inReg */ 24112dcef11bSdrh int regFree1 = 0; /* If non-zero free this temporary register */ 24122dcef11bSdrh int regFree2 = 0; /* If non-zero free this temporary register */ 2413678ccce8Sdrh int r1, r2, r3, r4; /* Various register numbers */ 241420411ea7Sdrh sqlite3 *db = pParse->db; /* The database connection */ 241510d1edf0Sdrh Expr tempX; /* Temporary expression node */ 2416ffe07b2dSdrh 24179cbf3425Sdrh assert( target>0 && target<=pParse->nMem ); 241820411ea7Sdrh if( v==0 ){ 241920411ea7Sdrh assert( pParse->db->mallocFailed ); 242020411ea7Sdrh return 0; 242120411ea7Sdrh } 2422389a1adbSdrh 2423389a1adbSdrh if( pExpr==0 ){ 2424389a1adbSdrh op = TK_NULL; 2425389a1adbSdrh }else{ 2426f2bc013cSdrh op = pExpr->op; 2427389a1adbSdrh } 2428f2bc013cSdrh switch( op ){ 242913449892Sdrh case TK_AGG_COLUMN: { 243013449892Sdrh AggInfo *pAggInfo = pExpr->pAggInfo; 243113449892Sdrh struct AggInfo_col *pCol = &pAggInfo->aCol[pExpr->iAgg]; 243213449892Sdrh if( !pAggInfo->directMode ){ 24339de221dfSdrh assert( pCol->iMem>0 ); 24349de221dfSdrh inReg = pCol->iMem; 243513449892Sdrh break; 243613449892Sdrh }else if( pAggInfo->useSortingIdx ){ 24375134d135Sdan sqlite3VdbeAddOp3(v, OP_Column, pAggInfo->sortingIdxPTab, 2438389a1adbSdrh pCol->iSorterColumn, target); 243913449892Sdrh break; 244013449892Sdrh } 244113449892Sdrh /* Otherwise, fall thru into the TK_COLUMN case */ 244213449892Sdrh } 2443967e8b73Sdrh case TK_COLUMN: { 2444b2b9d3d7Sdrh int iTab = pExpr->iTable; 2445b2b9d3d7Sdrh if( iTab<0 ){ 2446b2b9d3d7Sdrh if( pParse->ckBase>0 ){ 2447b2b9d3d7Sdrh /* Generating CHECK constraints or inserting into partial index */ 2448aa9b8963Sdrh inReg = pExpr->iColumn + pParse->ckBase; 2449b2b9d3d7Sdrh break; 2450c4a3c779Sdrh }else{ 2451b2b9d3d7Sdrh /* Deleting from a partial index */ 2452b2b9d3d7Sdrh iTab = pParse->iPartIdxTab; 24532282792aSdrh } 2454b2b9d3d7Sdrh } 2455b2b9d3d7Sdrh inReg = sqlite3ExprCodeGetColumn(pParse, pExpr->pTab, 2456b2b9d3d7Sdrh pExpr->iColumn, iTab, target, 2457b2b9d3d7Sdrh pExpr->op2); 2458cce7d176Sdrh break; 2459cce7d176Sdrh } 2460cce7d176Sdrh case TK_INTEGER: { 246113573c71Sdrh codeInteger(pParse, pExpr, 0, target); 2462fec19aadSdrh break; 246351e9a445Sdrh } 246413573c71Sdrh #ifndef SQLITE_OMIT_FLOATING_POINT 2465598f1340Sdrh case TK_FLOAT: { 246633e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 246733e619fcSdrh codeReal(v, pExpr->u.zToken, 0, target); 2468598f1340Sdrh break; 2469598f1340Sdrh } 247013573c71Sdrh #endif 2471fec19aadSdrh case TK_STRING: { 247233e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 247333e619fcSdrh sqlite3VdbeAddOp4(v, OP_String8, 0, target, 0, pExpr->u.zToken, 0); 2474cce7d176Sdrh break; 2475cce7d176Sdrh } 2476f0863fe5Sdrh case TK_NULL: { 24779de221dfSdrh sqlite3VdbeAddOp2(v, OP_Null, 0, target); 2478f0863fe5Sdrh break; 2479f0863fe5Sdrh } 24805338a5f7Sdanielk1977 #ifndef SQLITE_OMIT_BLOB_LITERAL 2481c572ef7fSdanielk1977 case TK_BLOB: { 24826c8c6cecSdrh int n; 24836c8c6cecSdrh const char *z; 2484ca48c90fSdrh char *zBlob; 248533e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 248633e619fcSdrh assert( pExpr->u.zToken[0]=='x' || pExpr->u.zToken[0]=='X' ); 248733e619fcSdrh assert( pExpr->u.zToken[1]=='\'' ); 248833e619fcSdrh z = &pExpr->u.zToken[2]; 2489b7916a78Sdrh n = sqlite3Strlen30(z) - 1; 2490b7916a78Sdrh assert( z[n]=='\'' ); 2491ca48c90fSdrh zBlob = sqlite3HexToBlob(sqlite3VdbeDb(v), z, n); 2492ca48c90fSdrh sqlite3VdbeAddOp4(v, OP_Blob, n/2, target, 0, zBlob, P4_DYNAMIC); 2493c572ef7fSdanielk1977 break; 2494c572ef7fSdanielk1977 } 24955338a5f7Sdanielk1977 #endif 249650457896Sdrh case TK_VARIABLE: { 249733e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 249833e619fcSdrh assert( pExpr->u.zToken!=0 ); 249933e619fcSdrh assert( pExpr->u.zToken[0]!=0 ); 2500eaf52d88Sdrh sqlite3VdbeAddOp2(v, OP_Variable, pExpr->iColumn, target); 250133e619fcSdrh if( pExpr->u.zToken[1]!=0 ){ 250204e9eeadSdrh assert( pExpr->u.zToken[0]=='?' 250304e9eeadSdrh || strcmp(pExpr->u.zToken, pParse->azVar[pExpr->iColumn-1])==0 ); 250404e9eeadSdrh sqlite3VdbeChangeP4(v, -1, pParse->azVar[pExpr->iColumn-1], P4_STATIC); 2505895d7472Sdrh } 250650457896Sdrh break; 250750457896Sdrh } 25084e0cff60Sdrh case TK_REGISTER: { 25099de221dfSdrh inReg = pExpr->iTable; 25104e0cff60Sdrh break; 25114e0cff60Sdrh } 25128b213899Sdrh case TK_AS: { 25137445ffe2Sdrh inReg = sqlite3ExprCodeTarget(pParse, pExpr->pLeft, target); 25148b213899Sdrh break; 25158b213899Sdrh } 2516487e262fSdrh #ifndef SQLITE_OMIT_CAST 2517487e262fSdrh case TK_CAST: { 2518487e262fSdrh /* Expressions of the form: CAST(pLeft AS token) */ 2519f0113000Sdanielk1977 int aff, to_op; 25202dcef11bSdrh inReg = sqlite3ExprCodeTarget(pParse, pExpr->pLeft, target); 252133e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 2522fdaac671Sdrh aff = sqlite3AffinityType(pExpr->u.zToken, 0); 2523f0113000Sdanielk1977 to_op = aff - SQLITE_AFF_TEXT + OP_ToText; 2524f0113000Sdanielk1977 assert( to_op==OP_ToText || aff!=SQLITE_AFF_TEXT ); 2525f0113000Sdanielk1977 assert( to_op==OP_ToBlob || aff!=SQLITE_AFF_NONE ); 2526f0113000Sdanielk1977 assert( to_op==OP_ToNumeric || aff!=SQLITE_AFF_NUMERIC ); 2527f0113000Sdanielk1977 assert( to_op==OP_ToInt || aff!=SQLITE_AFF_INTEGER ); 2528f0113000Sdanielk1977 assert( to_op==OP_ToReal || aff!=SQLITE_AFF_REAL ); 2529c5499befSdrh testcase( to_op==OP_ToText ); 2530c5499befSdrh testcase( to_op==OP_ToBlob ); 2531c5499befSdrh testcase( to_op==OP_ToNumeric ); 2532c5499befSdrh testcase( to_op==OP_ToInt ); 2533c5499befSdrh testcase( to_op==OP_ToReal ); 25341735fa88Sdrh if( inReg!=target ){ 25351735fa88Sdrh sqlite3VdbeAddOp2(v, OP_SCopy, inReg, target); 25361735fa88Sdrh inReg = target; 25371735fa88Sdrh } 25382dcef11bSdrh sqlite3VdbeAddOp1(v, to_op, inReg); 2539c5499befSdrh testcase( usedAsColumnCache(pParse, inReg, inReg) ); 2540b3843a82Sdrh sqlite3ExprCacheAffinityChange(pParse, inReg, 1); 2541487e262fSdrh break; 2542487e262fSdrh } 2543487e262fSdrh #endif /* SQLITE_OMIT_CAST */ 2544c9b84a1fSdrh case TK_LT: 2545c9b84a1fSdrh case TK_LE: 2546c9b84a1fSdrh case TK_GT: 2547c9b84a1fSdrh case TK_GE: 2548c9b84a1fSdrh case TK_NE: 2549c9b84a1fSdrh case TK_EQ: { 2550f2bc013cSdrh assert( TK_LT==OP_Lt ); 2551f2bc013cSdrh assert( TK_LE==OP_Le ); 2552f2bc013cSdrh assert( TK_GT==OP_Gt ); 2553f2bc013cSdrh assert( TK_GE==OP_Ge ); 2554f2bc013cSdrh assert( TK_EQ==OP_Eq ); 2555f2bc013cSdrh assert( TK_NE==OP_Ne ); 2556c5499befSdrh testcase( op==TK_LT ); 2557c5499befSdrh testcase( op==TK_LE ); 2558c5499befSdrh testcase( op==TK_GT ); 2559c5499befSdrh testcase( op==TK_GE ); 2560c5499befSdrh testcase( op==TK_EQ ); 2561c5499befSdrh testcase( op==TK_NE ); 2562b6da74ebSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 2563b6da74ebSdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); 256435573356Sdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, 256535573356Sdrh r1, r2, inReg, SQLITE_STOREP2); 2566c5499befSdrh testcase( regFree1==0 ); 2567c5499befSdrh testcase( regFree2==0 ); 2568a37cdde0Sdanielk1977 break; 2569c9b84a1fSdrh } 25706a2fe093Sdrh case TK_IS: 25716a2fe093Sdrh case TK_ISNOT: { 25726a2fe093Sdrh testcase( op==TK_IS ); 25736a2fe093Sdrh testcase( op==TK_ISNOT ); 2574b6da74ebSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 2575b6da74ebSdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); 25766a2fe093Sdrh op = (op==TK_IS) ? TK_EQ : TK_NE; 25776a2fe093Sdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, 25786a2fe093Sdrh r1, r2, inReg, SQLITE_STOREP2 | SQLITE_NULLEQ); 25796a2fe093Sdrh testcase( regFree1==0 ); 25806a2fe093Sdrh testcase( regFree2==0 ); 25816a2fe093Sdrh break; 25826a2fe093Sdrh } 2583cce7d176Sdrh case TK_AND: 2584cce7d176Sdrh case TK_OR: 2585cce7d176Sdrh case TK_PLUS: 2586cce7d176Sdrh case TK_STAR: 2587cce7d176Sdrh case TK_MINUS: 2588bf4133cbSdrh case TK_REM: 2589bf4133cbSdrh case TK_BITAND: 2590bf4133cbSdrh case TK_BITOR: 259117c40294Sdrh case TK_SLASH: 2592bf4133cbSdrh case TK_LSHIFT: 2593855eb1cfSdrh case TK_RSHIFT: 25940040077dSdrh case TK_CONCAT: { 2595f2bc013cSdrh assert( TK_AND==OP_And ); 2596f2bc013cSdrh assert( TK_OR==OP_Or ); 2597f2bc013cSdrh assert( TK_PLUS==OP_Add ); 2598f2bc013cSdrh assert( TK_MINUS==OP_Subtract ); 2599f2bc013cSdrh assert( TK_REM==OP_Remainder ); 2600f2bc013cSdrh assert( TK_BITAND==OP_BitAnd ); 2601f2bc013cSdrh assert( TK_BITOR==OP_BitOr ); 2602f2bc013cSdrh assert( TK_SLASH==OP_Divide ); 2603f2bc013cSdrh assert( TK_LSHIFT==OP_ShiftLeft ); 2604f2bc013cSdrh assert( TK_RSHIFT==OP_ShiftRight ); 2605f2bc013cSdrh assert( TK_CONCAT==OP_Concat ); 2606c5499befSdrh testcase( op==TK_AND ); 2607c5499befSdrh testcase( op==TK_OR ); 2608c5499befSdrh testcase( op==TK_PLUS ); 2609c5499befSdrh testcase( op==TK_MINUS ); 2610c5499befSdrh testcase( op==TK_REM ); 2611c5499befSdrh testcase( op==TK_BITAND ); 2612c5499befSdrh testcase( op==TK_BITOR ); 2613c5499befSdrh testcase( op==TK_SLASH ); 2614c5499befSdrh testcase( op==TK_LSHIFT ); 2615c5499befSdrh testcase( op==TK_RSHIFT ); 2616c5499befSdrh testcase( op==TK_CONCAT ); 26172dcef11bSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 26182dcef11bSdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); 26195b6afba9Sdrh sqlite3VdbeAddOp3(v, op, r2, r1, target); 2620c5499befSdrh testcase( regFree1==0 ); 2621c5499befSdrh testcase( regFree2==0 ); 26220040077dSdrh break; 26230040077dSdrh } 2624cce7d176Sdrh case TK_UMINUS: { 2625fec19aadSdrh Expr *pLeft = pExpr->pLeft; 2626fec19aadSdrh assert( pLeft ); 262713573c71Sdrh if( pLeft->op==TK_INTEGER ){ 262813573c71Sdrh codeInteger(pParse, pLeft, 1, target); 262913573c71Sdrh #ifndef SQLITE_OMIT_FLOATING_POINT 263013573c71Sdrh }else if( pLeft->op==TK_FLOAT ){ 263133e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 263233e619fcSdrh codeReal(v, pLeft->u.zToken, 1, target); 263313573c71Sdrh #endif 26343c84ddffSdrh }else{ 263510d1edf0Sdrh tempX.op = TK_INTEGER; 263610d1edf0Sdrh tempX.flags = EP_IntValue|EP_TokenOnly; 263710d1edf0Sdrh tempX.u.iValue = 0; 263810d1edf0Sdrh r1 = sqlite3ExprCodeTemp(pParse, &tempX, ®Free1); 2639e55cbd72Sdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free2); 26402dcef11bSdrh sqlite3VdbeAddOp3(v, OP_Subtract, r2, r1, target); 2641c5499befSdrh testcase( regFree2==0 ); 26423c84ddffSdrh } 26439de221dfSdrh inReg = target; 26446e142f54Sdrh break; 26456e142f54Sdrh } 2646bf4133cbSdrh case TK_BITNOT: 26476e142f54Sdrh case TK_NOT: { 2648f2bc013cSdrh assert( TK_BITNOT==OP_BitNot ); 2649f2bc013cSdrh assert( TK_NOT==OP_Not ); 2650c5499befSdrh testcase( op==TK_BITNOT ); 2651c5499befSdrh testcase( op==TK_NOT ); 2652e99fa2afSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 2653e99fa2afSdrh testcase( regFree1==0 ); 2654e99fa2afSdrh inReg = target; 2655e99fa2afSdrh sqlite3VdbeAddOp2(v, op, r1, inReg); 2656cce7d176Sdrh break; 2657cce7d176Sdrh } 2658cce7d176Sdrh case TK_ISNULL: 2659cce7d176Sdrh case TK_NOTNULL: { 26606a288a33Sdrh int addr; 2661f2bc013cSdrh assert( TK_ISNULL==OP_IsNull ); 2662f2bc013cSdrh assert( TK_NOTNULL==OP_NotNull ); 2663c5499befSdrh testcase( op==TK_ISNULL ); 2664c5499befSdrh testcase( op==TK_NOTNULL ); 26659de221dfSdrh sqlite3VdbeAddOp2(v, OP_Integer, 1, target); 26662dcef11bSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 2667c5499befSdrh testcase( regFree1==0 ); 26682dcef11bSdrh addr = sqlite3VdbeAddOp1(v, op, r1); 26699de221dfSdrh sqlite3VdbeAddOp2(v, OP_AddImm, target, -1); 26706a288a33Sdrh sqlite3VdbeJumpHere(v, addr); 2671a37cdde0Sdanielk1977 break; 2672f2bc013cSdrh } 26732282792aSdrh case TK_AGG_FUNCTION: { 267413449892Sdrh AggInfo *pInfo = pExpr->pAggInfo; 26757e56e711Sdrh if( pInfo==0 ){ 267633e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 267733e619fcSdrh sqlite3ErrorMsg(pParse, "misuse of aggregate: %s()", pExpr->u.zToken); 26787e56e711Sdrh }else{ 26799de221dfSdrh inReg = pInfo->aFunc[pExpr->iAgg].iMem; 26807e56e711Sdrh } 26812282792aSdrh break; 26822282792aSdrh } 2683cce7d176Sdrh case TK_FUNCTION: { 268412ffee8cSdrh ExprList *pFarg; /* List of function arguments */ 268512ffee8cSdrh int nFarg; /* Number of function arguments */ 268612ffee8cSdrh FuncDef *pDef; /* The function definition object */ 268712ffee8cSdrh int nId; /* Length of the function name in bytes */ 268812ffee8cSdrh const char *zId; /* The function name */ 2689693e6719Sdrh u32 constMask = 0; /* Mask of function arguments that are constant */ 269012ffee8cSdrh int i; /* Loop counter */ 269112ffee8cSdrh u8 enc = ENC(db); /* The text encoding used by this database */ 269212ffee8cSdrh CollSeq *pColl = 0; /* A collating sequence */ 269317435752Sdrh 26946ab3a2ecSdanielk1977 assert( !ExprHasProperty(pExpr, EP_xIsSelect) ); 2695c5cd1249Sdrh if( ExprHasProperty(pExpr, EP_TokenOnly) ){ 269612ffee8cSdrh pFarg = 0; 269712ffee8cSdrh }else{ 269812ffee8cSdrh pFarg = pExpr->x.pList; 269912ffee8cSdrh } 270012ffee8cSdrh nFarg = pFarg ? pFarg->nExpr : 0; 270133e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 270233e619fcSdrh zId = pExpr->u.zToken; 2703b7916a78Sdrh nId = sqlite3Strlen30(zId); 270412ffee8cSdrh pDef = sqlite3FindFunction(db, zId, nId, nFarg, enc, 0); 2705feb306f5Sdrh if( pDef==0 ){ 2706feb306f5Sdrh sqlite3ErrorMsg(pParse, "unknown function: %.*s()", nId, zId); 2707feb306f5Sdrh break; 2708feb306f5Sdrh } 2709ae6bb957Sdrh 2710ae6bb957Sdrh /* Attempt a direct implementation of the built-in COALESCE() and 2711ae6bb957Sdrh ** IFNULL() functions. This avoids unnecessary evalation of 2712ae6bb957Sdrh ** arguments past the first non-NULL argument. 2713ae6bb957Sdrh */ 2714d36e1041Sdrh if( pDef->funcFlags & SQLITE_FUNC_COALESCE ){ 2715ae6bb957Sdrh int endCoalesce = sqlite3VdbeMakeLabel(v); 2716ae6bb957Sdrh assert( nFarg>=2 ); 2717ae6bb957Sdrh sqlite3ExprCode(pParse, pFarg->a[0].pExpr, target); 2718ae6bb957Sdrh for(i=1; i<nFarg; i++){ 2719ae6bb957Sdrh sqlite3VdbeAddOp2(v, OP_NotNull, target, endCoalesce); 2720f49f3523Sdrh sqlite3ExprCacheRemove(pParse, target, 1); 2721ae6bb957Sdrh sqlite3ExprCachePush(pParse); 2722ae6bb957Sdrh sqlite3ExprCode(pParse, pFarg->a[i].pExpr, target); 2723ae6bb957Sdrh sqlite3ExprCachePop(pParse, 1); 2724ae6bb957Sdrh } 2725ae6bb957Sdrh sqlite3VdbeResolveLabel(v, endCoalesce); 2726ae6bb957Sdrh break; 2727ae6bb957Sdrh } 2728ae6bb957Sdrh 2729cca9f3d2Sdrh /* The UNLIKELY() function is a no-op. The result is the value 2730cca9f3d2Sdrh ** of the first argument. 2731cca9f3d2Sdrh */ 2732cca9f3d2Sdrh if( pDef->funcFlags & SQLITE_FUNC_UNLIKELY ){ 2733cca9f3d2Sdrh assert( nFarg>=1 ); 2734cca9f3d2Sdrh sqlite3ExprCode(pParse, pFarg->a[0].pExpr, target); 2735cca9f3d2Sdrh break; 2736cca9f3d2Sdrh } 2737ae6bb957Sdrh 2738d1a01edaSdrh for(i=0; i<nFarg; i++){ 2739d1a01edaSdrh if( i<32 && sqlite3ExprIsConstant(pFarg->a[i].pExpr) ){ 2740693e6719Sdrh testcase( i==31 ); 2741693e6719Sdrh constMask |= MASKBIT32(i); 2742d1a01edaSdrh } 2743d1a01edaSdrh if( (pDef->funcFlags & SQLITE_FUNC_NEEDCOLL)!=0 && !pColl ){ 2744d1a01edaSdrh pColl = sqlite3ExprCollSeq(pParse, pFarg->a[i].pExpr); 2745d1a01edaSdrh } 2746d1a01edaSdrh } 274712ffee8cSdrh if( pFarg ){ 2748d1a01edaSdrh if( constMask ){ 2749d1a01edaSdrh r1 = pParse->nMem+1; 2750d1a01edaSdrh pParse->nMem += nFarg; 2751d1a01edaSdrh }else{ 275212ffee8cSdrh r1 = sqlite3GetTempRange(pParse, nFarg); 2753d1a01edaSdrh } 2754a748fdccSdrh 2755a748fdccSdrh /* For length() and typeof() functions with a column argument, 2756a748fdccSdrh ** set the P5 parameter to the OP_Column opcode to OPFLAG_LENGTHARG 2757a748fdccSdrh ** or OPFLAG_TYPEOFARG respectively, to avoid unnecessary data 2758a748fdccSdrh ** loading. 2759a748fdccSdrh */ 2760d36e1041Sdrh if( (pDef->funcFlags & (SQLITE_FUNC_LENGTH|SQLITE_FUNC_TYPEOF))!=0 ){ 27614e245a4cSdrh u8 exprOp; 2762a748fdccSdrh assert( nFarg==1 ); 2763a748fdccSdrh assert( pFarg->a[0].pExpr!=0 ); 27644e245a4cSdrh exprOp = pFarg->a[0].pExpr->op; 27654e245a4cSdrh if( exprOp==TK_COLUMN || exprOp==TK_AGG_COLUMN ){ 2766a748fdccSdrh assert( SQLITE_FUNC_LENGTH==OPFLAG_LENGTHARG ); 2767a748fdccSdrh assert( SQLITE_FUNC_TYPEOF==OPFLAG_TYPEOFARG ); 2768b1fba286Sdrh testcase( pDef->funcFlags & OPFLAG_LENGTHARG ); 2769b1fba286Sdrh pFarg->a[0].pExpr->op2 = 2770b1fba286Sdrh pDef->funcFlags & (OPFLAG_LENGTHARG|OPFLAG_TYPEOFARG); 2771a748fdccSdrh } 2772a748fdccSdrh } 2773a748fdccSdrh 2774d7d385ddSdrh sqlite3ExprCachePush(pParse); /* Ticket 2ea2425d34be */ 2775d1a01edaSdrh sqlite3ExprCodeExprList(pParse, pFarg, r1, 2776d1a01edaSdrh SQLITE_ECEL_DUP|SQLITE_ECEL_FACTOR); 2777d7d385ddSdrh sqlite3ExprCachePop(pParse, 1); /* Ticket 2ea2425d34be */ 2778892d3179Sdrh }else{ 277912ffee8cSdrh r1 = 0; 2780892d3179Sdrh } 2781b7f6f68fSdrh #ifndef SQLITE_OMIT_VIRTUALTABLE 2782a43fa227Sdrh /* Possibly overload the function if the first argument is 2783a43fa227Sdrh ** a virtual table column. 2784a43fa227Sdrh ** 2785a43fa227Sdrh ** For infix functions (LIKE, GLOB, REGEXP, and MATCH) use the 2786a43fa227Sdrh ** second argument, not the first, as the argument to test to 2787a43fa227Sdrh ** see if it is a column in a virtual table. This is done because 2788a43fa227Sdrh ** the left operand of infix functions (the operand we want to 2789a43fa227Sdrh ** control overloading) ends up as the second argument to the 2790a43fa227Sdrh ** function. The expression "A glob B" is equivalent to 2791a43fa227Sdrh ** "glob(B,A). We want to use the A in "A glob B" to test 2792a43fa227Sdrh ** for function overloading. But we use the B term in "glob(B,A)". 2793a43fa227Sdrh */ 279412ffee8cSdrh if( nFarg>=2 && (pExpr->flags & EP_InfixFunc) ){ 279512ffee8cSdrh pDef = sqlite3VtabOverloadFunction(db, pDef, nFarg, pFarg->a[1].pExpr); 279612ffee8cSdrh }else if( nFarg>0 ){ 279712ffee8cSdrh pDef = sqlite3VtabOverloadFunction(db, pDef, nFarg, pFarg->a[0].pExpr); 2798b7f6f68fSdrh } 2799b7f6f68fSdrh #endif 2800d36e1041Sdrh if( pDef->funcFlags & SQLITE_FUNC_NEEDCOLL ){ 28018b213899Sdrh if( !pColl ) pColl = db->pDfltColl; 280266a5167bSdrh sqlite3VdbeAddOp4(v, OP_CollSeq, 0, 0, 0, (char *)pColl, P4_COLLSEQ); 2803682f68b0Sdanielk1977 } 28042dcef11bSdrh sqlite3VdbeAddOp4(v, OP_Function, constMask, r1, target, 280566a5167bSdrh (char*)pDef, P4_FUNCDEF); 280612ffee8cSdrh sqlite3VdbeChangeP5(v, (u8)nFarg); 2807d1a01edaSdrh if( nFarg && constMask==0 ){ 280812ffee8cSdrh sqlite3ReleaseTempRange(pParse, r1, nFarg); 28092dcef11bSdrh } 28106ec2733bSdrh break; 28116ec2733bSdrh } 2812fe2093d7Sdrh #ifndef SQLITE_OMIT_SUBQUERY 2813fe2093d7Sdrh case TK_EXISTS: 281419a775c2Sdrh case TK_SELECT: { 2815c5499befSdrh testcase( op==TK_EXISTS ); 2816c5499befSdrh testcase( op==TK_SELECT ); 28171450bc6eSdrh inReg = sqlite3CodeSubselect(pParse, pExpr, 0, 0); 281819a775c2Sdrh break; 281919a775c2Sdrh } 2820fef5208cSdrh case TK_IN: { 2821e3365e6cSdrh int destIfFalse = sqlite3VdbeMakeLabel(v); 2822e3365e6cSdrh int destIfNull = sqlite3VdbeMakeLabel(v); 2823e3365e6cSdrh sqlite3VdbeAddOp2(v, OP_Null, 0, target); 2824e3365e6cSdrh sqlite3ExprCodeIN(pParse, pExpr, destIfFalse, destIfNull); 282566ba23ceSdrh sqlite3VdbeAddOp2(v, OP_Integer, 1, target); 2826e3365e6cSdrh sqlite3VdbeResolveLabel(v, destIfFalse); 2827e3365e6cSdrh sqlite3VdbeAddOp2(v, OP_AddImm, target, 0); 2828e3365e6cSdrh sqlite3VdbeResolveLabel(v, destIfNull); 2829fef5208cSdrh break; 2830fef5208cSdrh } 2831e3365e6cSdrh #endif /* SQLITE_OMIT_SUBQUERY */ 2832e3365e6cSdrh 2833e3365e6cSdrh 28342dcef11bSdrh /* 28352dcef11bSdrh ** x BETWEEN y AND z 28362dcef11bSdrh ** 28372dcef11bSdrh ** This is equivalent to 28382dcef11bSdrh ** 28392dcef11bSdrh ** x>=y AND x<=z 28402dcef11bSdrh ** 28412dcef11bSdrh ** X is stored in pExpr->pLeft. 28422dcef11bSdrh ** Y is stored in pExpr->pList->a[0].pExpr. 28432dcef11bSdrh ** Z is stored in pExpr->pList->a[1].pExpr. 28442dcef11bSdrh */ 2845fef5208cSdrh case TK_BETWEEN: { 2846be5c89acSdrh Expr *pLeft = pExpr->pLeft; 28476ab3a2ecSdanielk1977 struct ExprList_item *pLItem = pExpr->x.pList->a; 2848be5c89acSdrh Expr *pRight = pLItem->pExpr; 284935573356Sdrh 2850b6da74ebSdrh r1 = sqlite3ExprCodeTemp(pParse, pLeft, ®Free1); 2851b6da74ebSdrh r2 = sqlite3ExprCodeTemp(pParse, pRight, ®Free2); 2852c5499befSdrh testcase( regFree1==0 ); 2853c5499befSdrh testcase( regFree2==0 ); 28542dcef11bSdrh r3 = sqlite3GetTempReg(pParse); 2855678ccce8Sdrh r4 = sqlite3GetTempReg(pParse); 285635573356Sdrh codeCompare(pParse, pLeft, pRight, OP_Ge, 285735573356Sdrh r1, r2, r3, SQLITE_STOREP2); 2858be5c89acSdrh pLItem++; 2859be5c89acSdrh pRight = pLItem->pExpr; 28602dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree2); 28612dcef11bSdrh r2 = sqlite3ExprCodeTemp(pParse, pRight, ®Free2); 2862c5499befSdrh testcase( regFree2==0 ); 2863678ccce8Sdrh codeCompare(pParse, pLeft, pRight, OP_Le, r1, r2, r4, SQLITE_STOREP2); 2864678ccce8Sdrh sqlite3VdbeAddOp3(v, OP_And, r3, r4, target); 28652dcef11bSdrh sqlite3ReleaseTempReg(pParse, r3); 2866678ccce8Sdrh sqlite3ReleaseTempReg(pParse, r4); 2867fef5208cSdrh break; 2868fef5208cSdrh } 2869ae80ddeaSdrh case TK_COLLATE: 28704f07e5fbSdrh case TK_UPLUS: { 28712dcef11bSdrh inReg = sqlite3ExprCodeTarget(pParse, pExpr->pLeft, target); 2872a2e00042Sdrh break; 2873a2e00042Sdrh } 28742dcef11bSdrh 2875165921a7Sdan case TK_TRIGGER: { 287665a7cd16Sdan /* If the opcode is TK_TRIGGER, then the expression is a reference 287765a7cd16Sdan ** to a column in the new.* or old.* pseudo-tables available to 287865a7cd16Sdan ** trigger programs. In this case Expr.iTable is set to 1 for the 287965a7cd16Sdan ** new.* pseudo-table, or 0 for the old.* pseudo-table. Expr.iColumn 288065a7cd16Sdan ** is set to the column of the pseudo-table to read, or to -1 to 288165a7cd16Sdan ** read the rowid field. 288265a7cd16Sdan ** 288365a7cd16Sdan ** The expression is implemented using an OP_Param opcode. The p1 288465a7cd16Sdan ** parameter is set to 0 for an old.rowid reference, or to (i+1) 288565a7cd16Sdan ** to reference another column of the old.* pseudo-table, where 288665a7cd16Sdan ** i is the index of the column. For a new.rowid reference, p1 is 288765a7cd16Sdan ** set to (n+1), where n is the number of columns in each pseudo-table. 288865a7cd16Sdan ** For a reference to any other column in the new.* pseudo-table, p1 288965a7cd16Sdan ** is set to (n+2+i), where n and i are as defined previously. For 289065a7cd16Sdan ** example, if the table on which triggers are being fired is 289165a7cd16Sdan ** declared as: 289265a7cd16Sdan ** 289365a7cd16Sdan ** CREATE TABLE t1(a, b); 289465a7cd16Sdan ** 289565a7cd16Sdan ** Then p1 is interpreted as follows: 289665a7cd16Sdan ** 289765a7cd16Sdan ** p1==0 -> old.rowid p1==3 -> new.rowid 289865a7cd16Sdan ** p1==1 -> old.a p1==4 -> new.a 289965a7cd16Sdan ** p1==2 -> old.b p1==5 -> new.b 290065a7cd16Sdan */ 29012832ad42Sdan Table *pTab = pExpr->pTab; 290265a7cd16Sdan int p1 = pExpr->iTable * (pTab->nCol+1) + 1 + pExpr->iColumn; 290365a7cd16Sdan 290465a7cd16Sdan assert( pExpr->iTable==0 || pExpr->iTable==1 ); 290565a7cd16Sdan assert( pExpr->iColumn>=-1 && pExpr->iColumn<pTab->nCol ); 290665a7cd16Sdan assert( pTab->iPKey<0 || pExpr->iColumn!=pTab->iPKey ); 290765a7cd16Sdan assert( p1>=0 && p1<(pTab->nCol*2+2) ); 290865a7cd16Sdan 290965a7cd16Sdan sqlite3VdbeAddOp2(v, OP_Param, p1, target); 291076d462eeSdan VdbeComment((v, "%s.%s -> $%d", 2911165921a7Sdan (pExpr->iTable ? "new" : "old"), 291276d462eeSdan (pExpr->iColumn<0 ? "rowid" : pExpr->pTab->aCol[pExpr->iColumn].zName), 291376d462eeSdan target 2914165921a7Sdan )); 291565a7cd16Sdan 291644dbca83Sdrh #ifndef SQLITE_OMIT_FLOATING_POINT 291765a7cd16Sdan /* If the column has REAL affinity, it may currently be stored as an 291865a7cd16Sdan ** integer. Use OP_RealAffinity to make sure it is really real. */ 29192832ad42Sdan if( pExpr->iColumn>=0 29202832ad42Sdan && pTab->aCol[pExpr->iColumn].affinity==SQLITE_AFF_REAL 29212832ad42Sdan ){ 29222832ad42Sdan sqlite3VdbeAddOp1(v, OP_RealAffinity, target); 29232832ad42Sdan } 292444dbca83Sdrh #endif 2925165921a7Sdan break; 2926165921a7Sdan } 2927165921a7Sdan 2928165921a7Sdan 29292dcef11bSdrh /* 29302dcef11bSdrh ** Form A: 29312dcef11bSdrh ** CASE x WHEN e1 THEN r1 WHEN e2 THEN r2 ... WHEN eN THEN rN ELSE y END 29322dcef11bSdrh ** 29332dcef11bSdrh ** Form B: 29342dcef11bSdrh ** CASE WHEN e1 THEN r1 WHEN e2 THEN r2 ... WHEN eN THEN rN ELSE y END 29352dcef11bSdrh ** 29362dcef11bSdrh ** Form A is can be transformed into the equivalent form B as follows: 29372dcef11bSdrh ** CASE WHEN x=e1 THEN r1 WHEN x=e2 THEN r2 ... 29382dcef11bSdrh ** WHEN x=eN THEN rN ELSE y END 29392dcef11bSdrh ** 29402dcef11bSdrh ** X (if it exists) is in pExpr->pLeft. 2941c5cd1249Sdrh ** Y is in the last element of pExpr->x.pList if pExpr->x.pList->nExpr is 2942c5cd1249Sdrh ** odd. The Y is also optional. If the number of elements in x.pList 2943c5cd1249Sdrh ** is even, then Y is omitted and the "otherwise" result is NULL. 29442dcef11bSdrh ** Ei is in pExpr->pList->a[i*2] and Ri is pExpr->pList->a[i*2+1]. 29452dcef11bSdrh ** 29462dcef11bSdrh ** The result of the expression is the Ri for the first matching Ei, 29472dcef11bSdrh ** or if there is no matching Ei, the ELSE term Y, or if there is 29482dcef11bSdrh ** no ELSE term, NULL. 29492dcef11bSdrh */ 295033cd4909Sdrh default: assert( op==TK_CASE ); { 29512dcef11bSdrh int endLabel; /* GOTO label for end of CASE stmt */ 29522dcef11bSdrh int nextCase; /* GOTO label for next WHEN clause */ 29532dcef11bSdrh int nExpr; /* 2x number of WHEN terms */ 29542dcef11bSdrh int i; /* Loop counter */ 29552dcef11bSdrh ExprList *pEList; /* List of WHEN terms */ 29562dcef11bSdrh struct ExprList_item *aListelem; /* Array of WHEN terms */ 29572dcef11bSdrh Expr opCompare; /* The X==Ei expression */ 29582dcef11bSdrh Expr *pX; /* The X expression */ 29591bd10f8aSdrh Expr *pTest = 0; /* X==Ei (form A) or just Ei (form B) */ 2960ceea3321Sdrh VVA_ONLY( int iCacheLevel = pParse->iCacheLevel; ) 296117a7f8ddSdrh 29626ab3a2ecSdanielk1977 assert( !ExprHasProperty(pExpr, EP_xIsSelect) && pExpr->x.pList ); 29636ab3a2ecSdanielk1977 assert(pExpr->x.pList->nExpr > 0); 29646ab3a2ecSdanielk1977 pEList = pExpr->x.pList; 2965be5c89acSdrh aListelem = pEList->a; 2966be5c89acSdrh nExpr = pEList->nExpr; 29672dcef11bSdrh endLabel = sqlite3VdbeMakeLabel(v); 29682dcef11bSdrh if( (pX = pExpr->pLeft)!=0 ){ 296910d1edf0Sdrh tempX = *pX; 297033cd4909Sdrh testcase( pX->op==TK_COLUMN ); 297110d1edf0Sdrh exprToRegister(&tempX, sqlite3ExprCodeTemp(pParse, pX, ®Free1)); 2972c5499befSdrh testcase( regFree1==0 ); 29732dcef11bSdrh opCompare.op = TK_EQ; 297410d1edf0Sdrh opCompare.pLeft = &tempX; 29752dcef11bSdrh pTest = &opCompare; 29768b1db07fSdrh /* Ticket b351d95f9cd5ef17e9d9dbae18f5ca8611190001: 29778b1db07fSdrh ** The value in regFree1 might get SCopy-ed into the file result. 29788b1db07fSdrh ** So make sure that the regFree1 register is not reused for other 29798b1db07fSdrh ** purposes and possibly overwritten. */ 29808b1db07fSdrh regFree1 = 0; 2981cce7d176Sdrh } 2982c5cd1249Sdrh for(i=0; i<nExpr-1; i=i+2){ 2983ceea3321Sdrh sqlite3ExprCachePush(pParse); 29842dcef11bSdrh if( pX ){ 29851bd10f8aSdrh assert( pTest!=0 ); 29862dcef11bSdrh opCompare.pRight = aListelem[i].pExpr; 2987f5905aa7Sdrh }else{ 29882dcef11bSdrh pTest = aListelem[i].pExpr; 298917a7f8ddSdrh } 29902dcef11bSdrh nextCase = sqlite3VdbeMakeLabel(v); 299133cd4909Sdrh testcase( pTest->op==TK_COLUMN ); 29922dcef11bSdrh sqlite3ExprIfFalse(pParse, pTest, nextCase, SQLITE_JUMPIFNULL); 2993c5499befSdrh testcase( aListelem[i+1].pExpr->op==TK_COLUMN ); 29949de221dfSdrh sqlite3ExprCode(pParse, aListelem[i+1].pExpr, target); 29952dcef11bSdrh sqlite3VdbeAddOp2(v, OP_Goto, 0, endLabel); 2996ceea3321Sdrh sqlite3ExprCachePop(pParse, 1); 29972dcef11bSdrh sqlite3VdbeResolveLabel(v, nextCase); 2998f570f011Sdrh } 2999c5cd1249Sdrh if( (nExpr&1)!=0 ){ 3000ceea3321Sdrh sqlite3ExprCachePush(pParse); 3001c5cd1249Sdrh sqlite3ExprCode(pParse, pEList->a[nExpr-1].pExpr, target); 3002ceea3321Sdrh sqlite3ExprCachePop(pParse, 1); 300317a7f8ddSdrh }else{ 30049de221dfSdrh sqlite3VdbeAddOp2(v, OP_Null, 0, target); 300517a7f8ddSdrh } 3006c1f4a19bSdanielk1977 assert( db->mallocFailed || pParse->nErr>0 3007c1f4a19bSdanielk1977 || pParse->iCacheLevel==iCacheLevel ); 30082dcef11bSdrh sqlite3VdbeResolveLabel(v, endLabel); 30096f34903eSdanielk1977 break; 30106f34903eSdanielk1977 } 30115338a5f7Sdanielk1977 #ifndef SQLITE_OMIT_TRIGGER 30126f34903eSdanielk1977 case TK_RAISE: { 3013165921a7Sdan assert( pExpr->affinity==OE_Rollback 3014165921a7Sdan || pExpr->affinity==OE_Abort 3015165921a7Sdan || pExpr->affinity==OE_Fail 3016165921a7Sdan || pExpr->affinity==OE_Ignore 3017165921a7Sdan ); 3018e0af83acSdan if( !pParse->pTriggerTab ){ 3019e0af83acSdan sqlite3ErrorMsg(pParse, 3020e0af83acSdan "RAISE() may only be used within a trigger-program"); 3021e0af83acSdan return 0; 3022e0af83acSdan } 3023e0af83acSdan if( pExpr->affinity==OE_Abort ){ 3024e0af83acSdan sqlite3MayAbort(pParse); 3025e0af83acSdan } 302633e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 3027e0af83acSdan if( pExpr->affinity==OE_Ignore ){ 3028e0af83acSdan sqlite3VdbeAddOp4( 3029e0af83acSdan v, OP_Halt, SQLITE_OK, OE_Ignore, 0, pExpr->u.zToken,0); 3030e0af83acSdan }else{ 3031433dccfbSdrh sqlite3HaltConstraint(pParse, SQLITE_CONSTRAINT_TRIGGER, 3032f9c8ce3cSdrh pExpr->affinity, pExpr->u.zToken, 0, 0); 3033e0af83acSdan } 3034e0af83acSdan 3035ffe07b2dSdrh break; 303617a7f8ddSdrh } 30375338a5f7Sdanielk1977 #endif 3038ffe07b2dSdrh } 30392dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree1); 30402dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree2); 30412dcef11bSdrh return inReg; 30425b6afba9Sdrh } 30432dcef11bSdrh 30442dcef11bSdrh /* 3045d1a01edaSdrh ** Factor out the code of the given expression to initialization time. 3046d1a01edaSdrh */ 3047d673cddaSdrh void sqlite3ExprCodeAtInit( 3048d673cddaSdrh Parse *pParse, /* Parsing context */ 3049d673cddaSdrh Expr *pExpr, /* The expression to code when the VDBE initializes */ 3050d673cddaSdrh int regDest, /* Store the value in this register */ 3051d673cddaSdrh u8 reusable /* True if this expression is reusable */ 3052d673cddaSdrh ){ 3053d1a01edaSdrh ExprList *p; 3054d9f158e7Sdrh assert( ConstFactorOk(pParse) ); 3055d1a01edaSdrh p = pParse->pConstExpr; 3056d1a01edaSdrh pExpr = sqlite3ExprDup(pParse->db, pExpr, 0); 3057d1a01edaSdrh p = sqlite3ExprListAppend(pParse, p, pExpr); 3058d673cddaSdrh if( p ){ 3059d673cddaSdrh struct ExprList_item *pItem = &p->a[p->nExpr-1]; 3060d673cddaSdrh pItem->u.iConstExprReg = regDest; 3061d673cddaSdrh pItem->reusable = reusable; 3062d673cddaSdrh } 3063d1a01edaSdrh pParse->pConstExpr = p; 3064d1a01edaSdrh } 3065d1a01edaSdrh 3066d1a01edaSdrh /* 30672dcef11bSdrh ** Generate code to evaluate an expression and store the results 30682dcef11bSdrh ** into a register. Return the register number where the results 30692dcef11bSdrh ** are stored. 30702dcef11bSdrh ** 30712dcef11bSdrh ** If the register is a temporary register that can be deallocated, 3072678ccce8Sdrh ** then write its number into *pReg. If the result register is not 30732dcef11bSdrh ** a temporary, then set *pReg to zero. 3074f30a969bSdrh ** 3075f30a969bSdrh ** If pExpr is a constant, then this routine might generate this 3076f30a969bSdrh ** code to fill the register in the initialization section of the 3077f30a969bSdrh ** VDBE program, in order to factor it out of the evaluation loop. 30782dcef11bSdrh */ 30792dcef11bSdrh int sqlite3ExprCodeTemp(Parse *pParse, Expr *pExpr, int *pReg){ 3080f30a969bSdrh int r2; 3081f30a969bSdrh pExpr = sqlite3ExprSkipCollate(pExpr); 3082d9f158e7Sdrh if( ConstFactorOk(pParse) 3083f30a969bSdrh && pExpr->op!=TK_REGISTER 3084f30a969bSdrh && sqlite3ExprIsConstantNotJoin(pExpr) 3085f30a969bSdrh ){ 3086f30a969bSdrh ExprList *p = pParse->pConstExpr; 3087f30a969bSdrh int i; 3088f30a969bSdrh *pReg = 0; 3089f30a969bSdrh if( p ){ 3090d673cddaSdrh struct ExprList_item *pItem; 3091d673cddaSdrh for(pItem=p->a, i=p->nExpr; i>0; pItem++, i--){ 3092d673cddaSdrh if( pItem->reusable && sqlite3ExprCompare(pItem->pExpr,pExpr,-1)==0 ){ 3093d673cddaSdrh return pItem->u.iConstExprReg; 3094f30a969bSdrh } 3095f30a969bSdrh } 3096f30a969bSdrh } 3097f30a969bSdrh r2 = ++pParse->nMem; 3098d673cddaSdrh sqlite3ExprCodeAtInit(pParse, pExpr, r2, 1); 3099f30a969bSdrh }else{ 31002dcef11bSdrh int r1 = sqlite3GetTempReg(pParse); 3101f30a969bSdrh r2 = sqlite3ExprCodeTarget(pParse, pExpr, r1); 31022dcef11bSdrh if( r2==r1 ){ 31032dcef11bSdrh *pReg = r1; 31042dcef11bSdrh }else{ 31052dcef11bSdrh sqlite3ReleaseTempReg(pParse, r1); 31062dcef11bSdrh *pReg = 0; 31072dcef11bSdrh } 3108f30a969bSdrh } 31092dcef11bSdrh return r2; 31102dcef11bSdrh } 31112dcef11bSdrh 31122dcef11bSdrh /* 31132dcef11bSdrh ** Generate code that will evaluate expression pExpr and store the 31142dcef11bSdrh ** results in register target. The results are guaranteed to appear 31152dcef11bSdrh ** in register target. 31162dcef11bSdrh */ 31172dcef11bSdrh int sqlite3ExprCode(Parse *pParse, Expr *pExpr, int target){ 31189cbf3425Sdrh int inReg; 31199cbf3425Sdrh 31209cbf3425Sdrh assert( target>0 && target<=pParse->nMem ); 3121ebc16717Sdrh if( pExpr && pExpr->op==TK_REGISTER ){ 3122ebc16717Sdrh sqlite3VdbeAddOp2(pParse->pVdbe, OP_Copy, pExpr->iTable, target); 3123ebc16717Sdrh }else{ 31249cbf3425Sdrh inReg = sqlite3ExprCodeTarget(pParse, pExpr, target); 31250e359b30Sdrh assert( pParse->pVdbe || pParse->db->mallocFailed ); 31260e359b30Sdrh if( inReg!=target && pParse->pVdbe ){ 31279cbf3425Sdrh sqlite3VdbeAddOp2(pParse->pVdbe, OP_SCopy, inReg, target); 312817a7f8ddSdrh } 3129ebc16717Sdrh } 3130389a1adbSdrh return target; 3131cce7d176Sdrh } 3132cce7d176Sdrh 3133cce7d176Sdrh /* 31342dcef11bSdrh ** Generate code that evalutes the given expression and puts the result 3135de4fcfddSdrh ** in register target. 313625303780Sdrh ** 31372dcef11bSdrh ** Also make a copy of the expression results into another "cache" register 31382dcef11bSdrh ** and modify the expression so that the next time it is evaluated, 31392dcef11bSdrh ** the result is a copy of the cache register. 31402dcef11bSdrh ** 31412dcef11bSdrh ** This routine is used for expressions that are used multiple 31422dcef11bSdrh ** times. They are evaluated once and the results of the expression 31432dcef11bSdrh ** are reused. 314425303780Sdrh */ 31452dcef11bSdrh int sqlite3ExprCodeAndCache(Parse *pParse, Expr *pExpr, int target){ 314625303780Sdrh Vdbe *v = pParse->pVdbe; 31472dcef11bSdrh int inReg; 31482dcef11bSdrh inReg = sqlite3ExprCode(pParse, pExpr, target); 3149de4fcfddSdrh assert( target>0 ); 3150c2acc4e4Sdrh /* The only place, other than this routine, where expressions can be 3151c2acc4e4Sdrh ** converted to TK_REGISTER is internal subexpressions in BETWEEN and 3152c2acc4e4Sdrh ** CASE operators. Neither ever calls this routine. And this routine 3153c2acc4e4Sdrh ** is never called twice on the same expression. Hence it is impossible 3154c2acc4e4Sdrh ** for the input to this routine to already be a register. Nevertheless, 3155c2acc4e4Sdrh ** it seems prudent to keep the ALWAYS() in case the conditions above 3156c2acc4e4Sdrh ** change with future modifications or enhancements. */ 315720bc393cSdrh if( ALWAYS(pExpr->op!=TK_REGISTER) ){ 315825303780Sdrh int iMem; 31592dcef11bSdrh iMem = ++pParse->nMem; 31602dcef11bSdrh sqlite3VdbeAddOp2(v, OP_Copy, inReg, iMem); 3161a4c3c87eSdrh exprToRegister(pExpr, iMem); 316225303780Sdrh } 31632dcef11bSdrh return inReg; 316425303780Sdrh } 31652dcef11bSdrh 3166678a9aa7Sdrh #if defined(SQLITE_ENABLE_TREE_EXPLAIN) 31677e02e5e6Sdrh /* 31687e02e5e6Sdrh ** Generate a human-readable explanation of an expression tree. 31697e02e5e6Sdrh */ 3170a84203a0Sdrh void sqlite3ExplainExpr(Vdbe *pOut, Expr *pExpr){ 3171a84203a0Sdrh int op; /* The opcode being coded */ 3172a84203a0Sdrh const char *zBinOp = 0; /* Binary operator */ 3173a84203a0Sdrh const char *zUniOp = 0; /* Unary operator */ 3174a84203a0Sdrh if( pExpr==0 ){ 3175a84203a0Sdrh op = TK_NULL; 31767e02e5e6Sdrh }else{ 3177a84203a0Sdrh op = pExpr->op; 31787e02e5e6Sdrh } 3179a84203a0Sdrh switch( op ){ 3180a84203a0Sdrh case TK_AGG_COLUMN: { 318104b8342bSdrh sqlite3ExplainPrintf(pOut, "AGG{%d:%d}", 318204b8342bSdrh pExpr->iTable, pExpr->iColumn); 3183a84203a0Sdrh break; 31847e02e5e6Sdrh } 3185a84203a0Sdrh case TK_COLUMN: { 3186a84203a0Sdrh if( pExpr->iTable<0 ){ 3187a84203a0Sdrh /* This only happens when coding check constraints */ 3188a84203a0Sdrh sqlite3ExplainPrintf(pOut, "COLUMN(%d)", pExpr->iColumn); 3189a84203a0Sdrh }else{ 319004b8342bSdrh sqlite3ExplainPrintf(pOut, "{%d:%d}", 319104b8342bSdrh pExpr->iTable, pExpr->iColumn); 3192a84203a0Sdrh } 3193a84203a0Sdrh break; 3194a84203a0Sdrh } 3195a84203a0Sdrh case TK_INTEGER: { 3196a84203a0Sdrh if( pExpr->flags & EP_IntValue ){ 319704b8342bSdrh sqlite3ExplainPrintf(pOut, "%d", pExpr->u.iValue); 3198a84203a0Sdrh }else{ 319904b8342bSdrh sqlite3ExplainPrintf(pOut, "%s", pExpr->u.zToken); 3200a84203a0Sdrh } 3201a84203a0Sdrh break; 3202a84203a0Sdrh } 3203a84203a0Sdrh #ifndef SQLITE_OMIT_FLOATING_POINT 3204a84203a0Sdrh case TK_FLOAT: { 320504b8342bSdrh sqlite3ExplainPrintf(pOut,"%s", pExpr->u.zToken); 3206a84203a0Sdrh break; 3207a84203a0Sdrh } 3208a84203a0Sdrh #endif 3209a84203a0Sdrh case TK_STRING: { 321004b8342bSdrh sqlite3ExplainPrintf(pOut,"%Q", pExpr->u.zToken); 3211a84203a0Sdrh break; 3212a84203a0Sdrh } 3213a84203a0Sdrh case TK_NULL: { 3214a84203a0Sdrh sqlite3ExplainPrintf(pOut,"NULL"); 3215a84203a0Sdrh break; 3216a84203a0Sdrh } 3217a84203a0Sdrh #ifndef SQLITE_OMIT_BLOB_LITERAL 3218a84203a0Sdrh case TK_BLOB: { 321904b8342bSdrh sqlite3ExplainPrintf(pOut,"%s", pExpr->u.zToken); 3220a84203a0Sdrh break; 3221a84203a0Sdrh } 3222a84203a0Sdrh #endif 3223a84203a0Sdrh case TK_VARIABLE: { 3224a84203a0Sdrh sqlite3ExplainPrintf(pOut,"VARIABLE(%s,%d)", 3225a84203a0Sdrh pExpr->u.zToken, pExpr->iColumn); 3226a84203a0Sdrh break; 3227a84203a0Sdrh } 3228a84203a0Sdrh case TK_REGISTER: { 3229a84203a0Sdrh sqlite3ExplainPrintf(pOut,"REGISTER(%d)", pExpr->iTable); 3230a84203a0Sdrh break; 3231a84203a0Sdrh } 3232a84203a0Sdrh case TK_AS: { 3233a84203a0Sdrh sqlite3ExplainExpr(pOut, pExpr->pLeft); 3234a84203a0Sdrh break; 3235a84203a0Sdrh } 3236a84203a0Sdrh #ifndef SQLITE_OMIT_CAST 3237a84203a0Sdrh case TK_CAST: { 3238a84203a0Sdrh /* Expressions of the form: CAST(pLeft AS token) */ 3239a84203a0Sdrh const char *zAff = "unk"; 3240fdaac671Sdrh switch( sqlite3AffinityType(pExpr->u.zToken, 0) ){ 3241a84203a0Sdrh case SQLITE_AFF_TEXT: zAff = "TEXT"; break; 3242a84203a0Sdrh case SQLITE_AFF_NONE: zAff = "NONE"; break; 3243a84203a0Sdrh case SQLITE_AFF_NUMERIC: zAff = "NUMERIC"; break; 3244a84203a0Sdrh case SQLITE_AFF_INTEGER: zAff = "INTEGER"; break; 3245a84203a0Sdrh case SQLITE_AFF_REAL: zAff = "REAL"; break; 3246a84203a0Sdrh } 3247a84203a0Sdrh sqlite3ExplainPrintf(pOut, "CAST-%s(", zAff); 3248a84203a0Sdrh sqlite3ExplainExpr(pOut, pExpr->pLeft); 3249a84203a0Sdrh sqlite3ExplainPrintf(pOut, ")"); 3250a84203a0Sdrh break; 3251a84203a0Sdrh } 3252a84203a0Sdrh #endif /* SQLITE_OMIT_CAST */ 3253a84203a0Sdrh case TK_LT: zBinOp = "LT"; break; 3254a84203a0Sdrh case TK_LE: zBinOp = "LE"; break; 3255a84203a0Sdrh case TK_GT: zBinOp = "GT"; break; 3256a84203a0Sdrh case TK_GE: zBinOp = "GE"; break; 3257a84203a0Sdrh case TK_NE: zBinOp = "NE"; break; 3258a84203a0Sdrh case TK_EQ: zBinOp = "EQ"; break; 3259a84203a0Sdrh case TK_IS: zBinOp = "IS"; break; 3260a84203a0Sdrh case TK_ISNOT: zBinOp = "ISNOT"; break; 3261a84203a0Sdrh case TK_AND: zBinOp = "AND"; break; 3262a84203a0Sdrh case TK_OR: zBinOp = "OR"; break; 3263a84203a0Sdrh case TK_PLUS: zBinOp = "ADD"; break; 3264a84203a0Sdrh case TK_STAR: zBinOp = "MUL"; break; 3265a84203a0Sdrh case TK_MINUS: zBinOp = "SUB"; break; 3266a84203a0Sdrh case TK_REM: zBinOp = "REM"; break; 3267a84203a0Sdrh case TK_BITAND: zBinOp = "BITAND"; break; 3268a84203a0Sdrh case TK_BITOR: zBinOp = "BITOR"; break; 3269a84203a0Sdrh case TK_SLASH: zBinOp = "DIV"; break; 3270a84203a0Sdrh case TK_LSHIFT: zBinOp = "LSHIFT"; break; 3271a84203a0Sdrh case TK_RSHIFT: zBinOp = "RSHIFT"; break; 3272a84203a0Sdrh case TK_CONCAT: zBinOp = "CONCAT"; break; 3273a84203a0Sdrh 3274a84203a0Sdrh case TK_UMINUS: zUniOp = "UMINUS"; break; 3275a84203a0Sdrh case TK_UPLUS: zUniOp = "UPLUS"; break; 3276a84203a0Sdrh case TK_BITNOT: zUniOp = "BITNOT"; break; 3277a84203a0Sdrh case TK_NOT: zUniOp = "NOT"; break; 3278a84203a0Sdrh case TK_ISNULL: zUniOp = "ISNULL"; break; 3279a84203a0Sdrh case TK_NOTNULL: zUniOp = "NOTNULL"; break; 3280a84203a0Sdrh 32817a66da13Sdrh case TK_COLLATE: { 32827a66da13Sdrh sqlite3ExplainExpr(pOut, pExpr->pLeft); 32837a66da13Sdrh sqlite3ExplainPrintf(pOut,".COLLATE(%s)",pExpr->u.zToken); 32847a66da13Sdrh break; 32857a66da13Sdrh } 32867a66da13Sdrh 3287a84203a0Sdrh case TK_AGG_FUNCTION: 3288a84203a0Sdrh case TK_FUNCTION: { 3289a84203a0Sdrh ExprList *pFarg; /* List of function arguments */ 3290c5cd1249Sdrh if( ExprHasProperty(pExpr, EP_TokenOnly) ){ 3291a84203a0Sdrh pFarg = 0; 3292a84203a0Sdrh }else{ 3293a84203a0Sdrh pFarg = pExpr->x.pList; 3294a84203a0Sdrh } 3295ed551b95Sdrh if( op==TK_AGG_FUNCTION ){ 3296ed551b95Sdrh sqlite3ExplainPrintf(pOut, "AGG_FUNCTION%d:%s(", 3297ed551b95Sdrh pExpr->op2, pExpr->u.zToken); 3298ed551b95Sdrh }else{ 3299ed551b95Sdrh sqlite3ExplainPrintf(pOut, "FUNCTION:%s(", pExpr->u.zToken); 3300ed551b95Sdrh } 3301a84203a0Sdrh if( pFarg ){ 3302a84203a0Sdrh sqlite3ExplainExprList(pOut, pFarg); 33037e02e5e6Sdrh } 33047e02e5e6Sdrh sqlite3ExplainPrintf(pOut, ")"); 3305a84203a0Sdrh break; 3306a84203a0Sdrh } 3307a84203a0Sdrh #ifndef SQLITE_OMIT_SUBQUERY 3308a84203a0Sdrh case TK_EXISTS: { 3309a84203a0Sdrh sqlite3ExplainPrintf(pOut, "EXISTS("); 3310a84203a0Sdrh sqlite3ExplainSelect(pOut, pExpr->x.pSelect); 3311a84203a0Sdrh sqlite3ExplainPrintf(pOut,")"); 3312a84203a0Sdrh break; 3313a84203a0Sdrh } 3314a84203a0Sdrh case TK_SELECT: { 3315a84203a0Sdrh sqlite3ExplainPrintf(pOut, "("); 3316a84203a0Sdrh sqlite3ExplainSelect(pOut, pExpr->x.pSelect); 3317a84203a0Sdrh sqlite3ExplainPrintf(pOut, ")"); 3318a84203a0Sdrh break; 3319a84203a0Sdrh } 3320a84203a0Sdrh case TK_IN: { 3321a84203a0Sdrh sqlite3ExplainPrintf(pOut, "IN("); 3322a84203a0Sdrh sqlite3ExplainExpr(pOut, pExpr->pLeft); 3323a84203a0Sdrh sqlite3ExplainPrintf(pOut, ","); 3324a84203a0Sdrh if( ExprHasProperty(pExpr, EP_xIsSelect) ){ 3325a84203a0Sdrh sqlite3ExplainSelect(pOut, pExpr->x.pSelect); 3326a84203a0Sdrh }else{ 3327a84203a0Sdrh sqlite3ExplainExprList(pOut, pExpr->x.pList); 3328a84203a0Sdrh } 3329a84203a0Sdrh sqlite3ExplainPrintf(pOut, ")"); 3330a84203a0Sdrh break; 3331a84203a0Sdrh } 3332a84203a0Sdrh #endif /* SQLITE_OMIT_SUBQUERY */ 3333a84203a0Sdrh 3334a84203a0Sdrh /* 3335a84203a0Sdrh ** x BETWEEN y AND z 3336a84203a0Sdrh ** 3337a84203a0Sdrh ** This is equivalent to 3338a84203a0Sdrh ** 3339a84203a0Sdrh ** x>=y AND x<=z 3340a84203a0Sdrh ** 3341a84203a0Sdrh ** X is stored in pExpr->pLeft. 3342a84203a0Sdrh ** Y is stored in pExpr->pList->a[0].pExpr. 3343a84203a0Sdrh ** Z is stored in pExpr->pList->a[1].pExpr. 3344a84203a0Sdrh */ 3345a84203a0Sdrh case TK_BETWEEN: { 3346a84203a0Sdrh Expr *pX = pExpr->pLeft; 3347a84203a0Sdrh Expr *pY = pExpr->x.pList->a[0].pExpr; 3348a84203a0Sdrh Expr *pZ = pExpr->x.pList->a[1].pExpr; 3349a84203a0Sdrh sqlite3ExplainPrintf(pOut, "BETWEEN("); 3350a84203a0Sdrh sqlite3ExplainExpr(pOut, pX); 3351a84203a0Sdrh sqlite3ExplainPrintf(pOut, ","); 3352a84203a0Sdrh sqlite3ExplainExpr(pOut, pY); 3353a84203a0Sdrh sqlite3ExplainPrintf(pOut, ","); 3354a84203a0Sdrh sqlite3ExplainExpr(pOut, pZ); 3355a84203a0Sdrh sqlite3ExplainPrintf(pOut, ")"); 3356a84203a0Sdrh break; 3357a84203a0Sdrh } 3358a84203a0Sdrh case TK_TRIGGER: { 3359a84203a0Sdrh /* If the opcode is TK_TRIGGER, then the expression is a reference 3360a84203a0Sdrh ** to a column in the new.* or old.* pseudo-tables available to 3361a84203a0Sdrh ** trigger programs. In this case Expr.iTable is set to 1 for the 3362a84203a0Sdrh ** new.* pseudo-table, or 0 for the old.* pseudo-table. Expr.iColumn 3363a84203a0Sdrh ** is set to the column of the pseudo-table to read, or to -1 to 3364a84203a0Sdrh ** read the rowid field. 3365a84203a0Sdrh */ 3366a84203a0Sdrh sqlite3ExplainPrintf(pOut, "%s(%d)", 3367a84203a0Sdrh pExpr->iTable ? "NEW" : "OLD", pExpr->iColumn); 3368a84203a0Sdrh break; 3369a84203a0Sdrh } 3370a84203a0Sdrh case TK_CASE: { 3371a84203a0Sdrh sqlite3ExplainPrintf(pOut, "CASE("); 3372a84203a0Sdrh sqlite3ExplainExpr(pOut, pExpr->pLeft); 3373a84203a0Sdrh sqlite3ExplainPrintf(pOut, ","); 3374a84203a0Sdrh sqlite3ExplainExprList(pOut, pExpr->x.pList); 3375a84203a0Sdrh break; 3376a84203a0Sdrh } 3377a84203a0Sdrh #ifndef SQLITE_OMIT_TRIGGER 3378a84203a0Sdrh case TK_RAISE: { 3379a84203a0Sdrh const char *zType = "unk"; 3380a84203a0Sdrh switch( pExpr->affinity ){ 3381a84203a0Sdrh case OE_Rollback: zType = "rollback"; break; 3382a84203a0Sdrh case OE_Abort: zType = "abort"; break; 3383a84203a0Sdrh case OE_Fail: zType = "fail"; break; 3384a84203a0Sdrh case OE_Ignore: zType = "ignore"; break; 3385a84203a0Sdrh } 3386a84203a0Sdrh sqlite3ExplainPrintf(pOut, "RAISE-%s(%s)", zType, pExpr->u.zToken); 3387a84203a0Sdrh break; 3388a84203a0Sdrh } 3389a84203a0Sdrh #endif 3390a84203a0Sdrh } 3391a84203a0Sdrh if( zBinOp ){ 3392a84203a0Sdrh sqlite3ExplainPrintf(pOut,"%s(", zBinOp); 3393a84203a0Sdrh sqlite3ExplainExpr(pOut, pExpr->pLeft); 3394a84203a0Sdrh sqlite3ExplainPrintf(pOut,","); 3395a84203a0Sdrh sqlite3ExplainExpr(pOut, pExpr->pRight); 3396a84203a0Sdrh sqlite3ExplainPrintf(pOut,")"); 3397a84203a0Sdrh }else if( zUniOp ){ 3398a84203a0Sdrh sqlite3ExplainPrintf(pOut,"%s(", zUniOp); 3399a84203a0Sdrh sqlite3ExplainExpr(pOut, pExpr->pLeft); 3400a84203a0Sdrh sqlite3ExplainPrintf(pOut,")"); 3401a84203a0Sdrh } 34027e02e5e6Sdrh } 3403678a9aa7Sdrh #endif /* defined(SQLITE_ENABLE_TREE_EXPLAIN) */ 34047e02e5e6Sdrh 3405678a9aa7Sdrh #if defined(SQLITE_ENABLE_TREE_EXPLAIN) 34067e02e5e6Sdrh /* 34077e02e5e6Sdrh ** Generate a human-readable explanation of an expression list. 34087e02e5e6Sdrh */ 34097e02e5e6Sdrh void sqlite3ExplainExprList(Vdbe *pOut, ExprList *pList){ 34107e02e5e6Sdrh int i; 3411a84203a0Sdrh if( pList==0 || pList->nExpr==0 ){ 34127e02e5e6Sdrh sqlite3ExplainPrintf(pOut, "(empty-list)"); 34137e02e5e6Sdrh return; 3414a84203a0Sdrh }else if( pList->nExpr==1 ){ 3415a84203a0Sdrh sqlite3ExplainExpr(pOut, pList->a[0].pExpr); 3416a84203a0Sdrh }else{ 34177e02e5e6Sdrh sqlite3ExplainPush(pOut); 34187e02e5e6Sdrh for(i=0; i<pList->nExpr; i++){ 3419a84203a0Sdrh sqlite3ExplainPrintf(pOut, "item[%d] = ", i); 34207e02e5e6Sdrh sqlite3ExplainPush(pOut); 34217e02e5e6Sdrh sqlite3ExplainExpr(pOut, pList->a[i].pExpr); 3422b66e21fdSdrh sqlite3ExplainPop(pOut); 34233e3f1a5bSdrh if( pList->a[i].zName ){ 34243e3f1a5bSdrh sqlite3ExplainPrintf(pOut, " AS %s", pList->a[i].zName); 34253e3f1a5bSdrh } 34263e3f1a5bSdrh if( pList->a[i].bSpanIsTab ){ 34273e3f1a5bSdrh sqlite3ExplainPrintf(pOut, " (%s)", pList->a[i].zSpan); 34283e3f1a5bSdrh } 34297e02e5e6Sdrh if( i<pList->nExpr-1 ){ 34307e02e5e6Sdrh sqlite3ExplainNL(pOut); 34317e02e5e6Sdrh } 34327e02e5e6Sdrh } 34337e02e5e6Sdrh sqlite3ExplainPop(pOut); 34347e02e5e6Sdrh } 3435a84203a0Sdrh } 34367e02e5e6Sdrh #endif /* SQLITE_DEBUG */ 34377e02e5e6Sdrh 3438678ccce8Sdrh /* 3439268380caSdrh ** Generate code that pushes the value of every element of the given 34409cbf3425Sdrh ** expression list into a sequence of registers beginning at target. 3441268380caSdrh ** 3442892d3179Sdrh ** Return the number of elements evaluated. 3443d1a01edaSdrh ** 3444d1a01edaSdrh ** The SQLITE_ECEL_DUP flag prevents the arguments from being 3445d1a01edaSdrh ** filled using OP_SCopy. OP_Copy must be used instead. 3446d1a01edaSdrh ** 3447d1a01edaSdrh ** The SQLITE_ECEL_FACTOR argument allows constant arguments to be 3448d1a01edaSdrh ** factored out into initialization code. 3449268380caSdrh */ 34504adee20fSdanielk1977 int sqlite3ExprCodeExprList( 3451268380caSdrh Parse *pParse, /* Parsing context */ 3452389a1adbSdrh ExprList *pList, /* The expression list to be coded */ 3453191b54cbSdrh int target, /* Where to write results */ 3454d1a01edaSdrh u8 flags /* SQLITE_ECEL_* flags */ 3455268380caSdrh ){ 3456268380caSdrh struct ExprList_item *pItem; 34579cbf3425Sdrh int i, n; 3458d1a01edaSdrh u8 copyOp = (flags & SQLITE_ECEL_DUP) ? OP_Copy : OP_SCopy; 34599d8b3072Sdrh assert( pList!=0 ); 34609cbf3425Sdrh assert( target>0 ); 3461d81a142bSdrh assert( pParse->pVdbe!=0 ); /* Never gets this far otherwise */ 3462268380caSdrh n = pList->nExpr; 3463d9f158e7Sdrh if( !ConstFactorOk(pParse) ) flags &= ~SQLITE_ECEL_FACTOR; 3464191b54cbSdrh for(pItem=pList->a, i=0; i<n; i++, pItem++){ 34657445ffe2Sdrh Expr *pExpr = pItem->pExpr; 3466d1a01edaSdrh if( (flags & SQLITE_ECEL_FACTOR)!=0 && sqlite3ExprIsConstant(pExpr) ){ 3467d673cddaSdrh sqlite3ExprCodeAtInit(pParse, pExpr, target+i, 0); 3468d1a01edaSdrh }else{ 34697445ffe2Sdrh int inReg = sqlite3ExprCodeTarget(pParse, pExpr, target+i); 3470746fd9ccSdrh if( inReg!=target+i ){ 34714eded604Sdrh VdbeOp *pOp; 34724eded604Sdrh Vdbe *v = pParse->pVdbe; 34734eded604Sdrh if( copyOp==OP_Copy 34744eded604Sdrh && (pOp=sqlite3VdbeGetOp(v, -1))->opcode==OP_Copy 34754eded604Sdrh && pOp->p1+pOp->p3+1==inReg 34764eded604Sdrh && pOp->p2+pOp->p3+1==target+i 34774eded604Sdrh ){ 34784eded604Sdrh pOp->p3++; 34794eded604Sdrh }else{ 34804eded604Sdrh sqlite3VdbeAddOp2(v, copyOp, inReg, target+i); 34814eded604Sdrh } 3482d1a01edaSdrh } 3483d176611bSdrh } 3484268380caSdrh } 3485f9b596ebSdrh return n; 3486268380caSdrh } 3487268380caSdrh 3488268380caSdrh /* 348936c563a2Sdrh ** Generate code for a BETWEEN operator. 349036c563a2Sdrh ** 349136c563a2Sdrh ** x BETWEEN y AND z 349236c563a2Sdrh ** 349336c563a2Sdrh ** The above is equivalent to 349436c563a2Sdrh ** 349536c563a2Sdrh ** x>=y AND x<=z 349636c563a2Sdrh ** 349736c563a2Sdrh ** Code it as such, taking care to do the common subexpression 349836c563a2Sdrh ** elementation of x. 349936c563a2Sdrh */ 350036c563a2Sdrh static void exprCodeBetween( 350136c563a2Sdrh Parse *pParse, /* Parsing and code generating context */ 350236c563a2Sdrh Expr *pExpr, /* The BETWEEN expression */ 350336c563a2Sdrh int dest, /* Jump here if the jump is taken */ 350436c563a2Sdrh int jumpIfTrue, /* Take the jump if the BETWEEN is true */ 350536c563a2Sdrh int jumpIfNull /* Take the jump if the BETWEEN is NULL */ 350636c563a2Sdrh ){ 350736c563a2Sdrh Expr exprAnd; /* The AND operator in x>=y AND x<=z */ 350836c563a2Sdrh Expr compLeft; /* The x>=y term */ 350936c563a2Sdrh Expr compRight; /* The x<=z term */ 351036c563a2Sdrh Expr exprX; /* The x subexpression */ 351136c563a2Sdrh int regFree1 = 0; /* Temporary use register */ 351236c563a2Sdrh 351336c563a2Sdrh assert( !ExprHasProperty(pExpr, EP_xIsSelect) ); 351436c563a2Sdrh exprX = *pExpr->pLeft; 351536c563a2Sdrh exprAnd.op = TK_AND; 351636c563a2Sdrh exprAnd.pLeft = &compLeft; 351736c563a2Sdrh exprAnd.pRight = &compRight; 351836c563a2Sdrh compLeft.op = TK_GE; 351936c563a2Sdrh compLeft.pLeft = &exprX; 352036c563a2Sdrh compLeft.pRight = pExpr->x.pList->a[0].pExpr; 352136c563a2Sdrh compRight.op = TK_LE; 352236c563a2Sdrh compRight.pLeft = &exprX; 352336c563a2Sdrh compRight.pRight = pExpr->x.pList->a[1].pExpr; 3524a4c3c87eSdrh exprToRegister(&exprX, sqlite3ExprCodeTemp(pParse, &exprX, ®Free1)); 352536c563a2Sdrh if( jumpIfTrue ){ 352636c563a2Sdrh sqlite3ExprIfTrue(pParse, &exprAnd, dest, jumpIfNull); 352736c563a2Sdrh }else{ 352836c563a2Sdrh sqlite3ExprIfFalse(pParse, &exprAnd, dest, jumpIfNull); 352936c563a2Sdrh } 353036c563a2Sdrh sqlite3ReleaseTempReg(pParse, regFree1); 353136c563a2Sdrh 353236c563a2Sdrh /* Ensure adequate test coverage */ 353336c563a2Sdrh testcase( jumpIfTrue==0 && jumpIfNull==0 && regFree1==0 ); 353436c563a2Sdrh testcase( jumpIfTrue==0 && jumpIfNull==0 && regFree1!=0 ); 353536c563a2Sdrh testcase( jumpIfTrue==0 && jumpIfNull!=0 && regFree1==0 ); 353636c563a2Sdrh testcase( jumpIfTrue==0 && jumpIfNull!=0 && regFree1!=0 ); 353736c563a2Sdrh testcase( jumpIfTrue!=0 && jumpIfNull==0 && regFree1==0 ); 353836c563a2Sdrh testcase( jumpIfTrue!=0 && jumpIfNull==0 && regFree1!=0 ); 353936c563a2Sdrh testcase( jumpIfTrue!=0 && jumpIfNull!=0 && regFree1==0 ); 354036c563a2Sdrh testcase( jumpIfTrue!=0 && jumpIfNull!=0 && regFree1!=0 ); 354136c563a2Sdrh } 354236c563a2Sdrh 354336c563a2Sdrh /* 3544cce7d176Sdrh ** Generate code for a boolean expression such that a jump is made 3545cce7d176Sdrh ** to the label "dest" if the expression is true but execution 3546cce7d176Sdrh ** continues straight thru if the expression is false. 3547f5905aa7Sdrh ** 3548f5905aa7Sdrh ** If the expression evaluates to NULL (neither true nor false), then 354935573356Sdrh ** take the jump if the jumpIfNull flag is SQLITE_JUMPIFNULL. 3550f2bc013cSdrh ** 3551f2bc013cSdrh ** This code depends on the fact that certain token values (ex: TK_EQ) 3552f2bc013cSdrh ** are the same as opcode values (ex: OP_Eq) that implement the corresponding 3553f2bc013cSdrh ** operation. Special comments in vdbe.c and the mkopcodeh.awk script in 3554f2bc013cSdrh ** the make process cause these values to align. Assert()s in the code 3555f2bc013cSdrh ** below verify that the numbers are aligned correctly. 3556cce7d176Sdrh */ 35574adee20fSdanielk1977 void sqlite3ExprIfTrue(Parse *pParse, Expr *pExpr, int dest, int jumpIfNull){ 3558cce7d176Sdrh Vdbe *v = pParse->pVdbe; 3559cce7d176Sdrh int op = 0; 35602dcef11bSdrh int regFree1 = 0; 35612dcef11bSdrh int regFree2 = 0; 35622dcef11bSdrh int r1, r2; 35632dcef11bSdrh 356435573356Sdrh assert( jumpIfNull==SQLITE_JUMPIFNULL || jumpIfNull==0 ); 356548864df9Smistachkin if( NEVER(v==0) ) return; /* Existence of VDBE checked by caller */ 356633cd4909Sdrh if( NEVER(pExpr==0) ) return; /* No way this can happen */ 3567f2bc013cSdrh op = pExpr->op; 3568f2bc013cSdrh switch( op ){ 3569cce7d176Sdrh case TK_AND: { 35704adee20fSdanielk1977 int d2 = sqlite3VdbeMakeLabel(v); 3571c5499befSdrh testcase( jumpIfNull==0 ); 357235573356Sdrh sqlite3ExprIfFalse(pParse, pExpr->pLeft, d2,jumpIfNull^SQLITE_JUMPIFNULL); 357354e2adb5Sdrh sqlite3ExprCachePush(pParse); 35744adee20fSdanielk1977 sqlite3ExprIfTrue(pParse, pExpr->pRight, dest, jumpIfNull); 35754adee20fSdanielk1977 sqlite3VdbeResolveLabel(v, d2); 3576ceea3321Sdrh sqlite3ExprCachePop(pParse, 1); 3577cce7d176Sdrh break; 3578cce7d176Sdrh } 3579cce7d176Sdrh case TK_OR: { 3580c5499befSdrh testcase( jumpIfNull==0 ); 35814adee20fSdanielk1977 sqlite3ExprIfTrue(pParse, pExpr->pLeft, dest, jumpIfNull); 358254e2adb5Sdrh sqlite3ExprCachePush(pParse); 35834adee20fSdanielk1977 sqlite3ExprIfTrue(pParse, pExpr->pRight, dest, jumpIfNull); 358454e2adb5Sdrh sqlite3ExprCachePop(pParse, 1); 3585cce7d176Sdrh break; 3586cce7d176Sdrh } 3587cce7d176Sdrh case TK_NOT: { 3588c5499befSdrh testcase( jumpIfNull==0 ); 35894adee20fSdanielk1977 sqlite3ExprIfFalse(pParse, pExpr->pLeft, dest, jumpIfNull); 3590cce7d176Sdrh break; 3591cce7d176Sdrh } 3592cce7d176Sdrh case TK_LT: 3593cce7d176Sdrh case TK_LE: 3594cce7d176Sdrh case TK_GT: 3595cce7d176Sdrh case TK_GE: 3596cce7d176Sdrh case TK_NE: 35970ac65892Sdrh case TK_EQ: { 3598f2bc013cSdrh assert( TK_LT==OP_Lt ); 3599f2bc013cSdrh assert( TK_LE==OP_Le ); 3600f2bc013cSdrh assert( TK_GT==OP_Gt ); 3601f2bc013cSdrh assert( TK_GE==OP_Ge ); 3602f2bc013cSdrh assert( TK_EQ==OP_Eq ); 3603f2bc013cSdrh assert( TK_NE==OP_Ne ); 3604c5499befSdrh testcase( op==TK_LT ); 3605c5499befSdrh testcase( op==TK_LE ); 3606c5499befSdrh testcase( op==TK_GT ); 3607c5499befSdrh testcase( op==TK_GE ); 3608c5499befSdrh testcase( op==TK_EQ ); 3609c5499befSdrh testcase( op==TK_NE ); 3610c5499befSdrh testcase( jumpIfNull==0 ); 3611b6da74ebSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 3612b6da74ebSdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); 361335573356Sdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, 36142dcef11bSdrh r1, r2, dest, jumpIfNull); 3615c5499befSdrh testcase( regFree1==0 ); 3616c5499befSdrh testcase( regFree2==0 ); 3617cce7d176Sdrh break; 3618cce7d176Sdrh } 36196a2fe093Sdrh case TK_IS: 36206a2fe093Sdrh case TK_ISNOT: { 36216a2fe093Sdrh testcase( op==TK_IS ); 36226a2fe093Sdrh testcase( op==TK_ISNOT ); 3623b6da74ebSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 3624b6da74ebSdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); 36256a2fe093Sdrh op = (op==TK_IS) ? TK_EQ : TK_NE; 36266a2fe093Sdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, 36276a2fe093Sdrh r1, r2, dest, SQLITE_NULLEQ); 36286a2fe093Sdrh testcase( regFree1==0 ); 36296a2fe093Sdrh testcase( regFree2==0 ); 36306a2fe093Sdrh break; 36316a2fe093Sdrh } 3632cce7d176Sdrh case TK_ISNULL: 3633cce7d176Sdrh case TK_NOTNULL: { 3634f2bc013cSdrh assert( TK_ISNULL==OP_IsNull ); 3635f2bc013cSdrh assert( TK_NOTNULL==OP_NotNull ); 3636c5499befSdrh testcase( op==TK_ISNULL ); 3637c5499befSdrh testcase( op==TK_NOTNULL ); 36382dcef11bSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 36392dcef11bSdrh sqlite3VdbeAddOp2(v, op, r1, dest); 3640c5499befSdrh testcase( regFree1==0 ); 3641cce7d176Sdrh break; 3642cce7d176Sdrh } 3643fef5208cSdrh case TK_BETWEEN: { 36445c03f30aSdrh testcase( jumpIfNull==0 ); 364536c563a2Sdrh exprCodeBetween(pParse, pExpr, dest, 1, jumpIfNull); 3646fef5208cSdrh break; 3647fef5208cSdrh } 3648bb201344Sshaneh #ifndef SQLITE_OMIT_SUBQUERY 3649e3365e6cSdrh case TK_IN: { 3650e3365e6cSdrh int destIfFalse = sqlite3VdbeMakeLabel(v); 3651e3365e6cSdrh int destIfNull = jumpIfNull ? dest : destIfFalse; 3652e3365e6cSdrh sqlite3ExprCodeIN(pParse, pExpr, destIfFalse, destIfNull); 3653e3365e6cSdrh sqlite3VdbeAddOp2(v, OP_Goto, 0, dest); 3654e3365e6cSdrh sqlite3VdbeResolveLabel(v, destIfFalse); 3655e3365e6cSdrh break; 3656e3365e6cSdrh } 3657bb201344Sshaneh #endif 3658cce7d176Sdrh default: { 3659991a1985Sdrh if( exprAlwaysTrue(pExpr) ){ 3660991a1985Sdrh sqlite3VdbeAddOp2(v, OP_Goto, 0, dest); 3661991a1985Sdrh }else if( exprAlwaysFalse(pExpr) ){ 3662991a1985Sdrh /* No-op */ 3663991a1985Sdrh }else{ 36642dcef11bSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr, ®Free1); 36652dcef11bSdrh sqlite3VdbeAddOp3(v, OP_If, r1, dest, jumpIfNull!=0); 3666c5499befSdrh testcase( regFree1==0 ); 3667c5499befSdrh testcase( jumpIfNull==0 ); 3668991a1985Sdrh } 3669cce7d176Sdrh break; 3670cce7d176Sdrh } 3671cce7d176Sdrh } 36722dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree1); 36732dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree2); 3674cce7d176Sdrh } 3675cce7d176Sdrh 3676cce7d176Sdrh /* 367766b89c8fSdrh ** Generate code for a boolean expression such that a jump is made 3678cce7d176Sdrh ** to the label "dest" if the expression is false but execution 3679cce7d176Sdrh ** continues straight thru if the expression is true. 3680f5905aa7Sdrh ** 3681f5905aa7Sdrh ** If the expression evaluates to NULL (neither true nor false) then 368235573356Sdrh ** jump if jumpIfNull is SQLITE_JUMPIFNULL or fall through if jumpIfNull 368335573356Sdrh ** is 0. 3684cce7d176Sdrh */ 36854adee20fSdanielk1977 void sqlite3ExprIfFalse(Parse *pParse, Expr *pExpr, int dest, int jumpIfNull){ 3686cce7d176Sdrh Vdbe *v = pParse->pVdbe; 3687cce7d176Sdrh int op = 0; 36882dcef11bSdrh int regFree1 = 0; 36892dcef11bSdrh int regFree2 = 0; 36902dcef11bSdrh int r1, r2; 36912dcef11bSdrh 369235573356Sdrh assert( jumpIfNull==SQLITE_JUMPIFNULL || jumpIfNull==0 ); 369348864df9Smistachkin if( NEVER(v==0) ) return; /* Existence of VDBE checked by caller */ 369433cd4909Sdrh if( pExpr==0 ) return; 3695f2bc013cSdrh 3696f2bc013cSdrh /* The value of pExpr->op and op are related as follows: 3697f2bc013cSdrh ** 3698f2bc013cSdrh ** pExpr->op op 3699f2bc013cSdrh ** --------- ---------- 3700f2bc013cSdrh ** TK_ISNULL OP_NotNull 3701f2bc013cSdrh ** TK_NOTNULL OP_IsNull 3702f2bc013cSdrh ** TK_NE OP_Eq 3703f2bc013cSdrh ** TK_EQ OP_Ne 3704f2bc013cSdrh ** TK_GT OP_Le 3705f2bc013cSdrh ** TK_LE OP_Gt 3706f2bc013cSdrh ** TK_GE OP_Lt 3707f2bc013cSdrh ** TK_LT OP_Ge 3708f2bc013cSdrh ** 3709f2bc013cSdrh ** For other values of pExpr->op, op is undefined and unused. 3710f2bc013cSdrh ** The value of TK_ and OP_ constants are arranged such that we 3711f2bc013cSdrh ** can compute the mapping above using the following expression. 3712f2bc013cSdrh ** Assert()s verify that the computation is correct. 3713f2bc013cSdrh */ 3714f2bc013cSdrh op = ((pExpr->op+(TK_ISNULL&1))^1)-(TK_ISNULL&1); 3715f2bc013cSdrh 3716f2bc013cSdrh /* Verify correct alignment of TK_ and OP_ constants 3717f2bc013cSdrh */ 3718f2bc013cSdrh assert( pExpr->op!=TK_ISNULL || op==OP_NotNull ); 3719f2bc013cSdrh assert( pExpr->op!=TK_NOTNULL || op==OP_IsNull ); 3720f2bc013cSdrh assert( pExpr->op!=TK_NE || op==OP_Eq ); 3721f2bc013cSdrh assert( pExpr->op!=TK_EQ || op==OP_Ne ); 3722f2bc013cSdrh assert( pExpr->op!=TK_LT || op==OP_Ge ); 3723f2bc013cSdrh assert( pExpr->op!=TK_LE || op==OP_Gt ); 3724f2bc013cSdrh assert( pExpr->op!=TK_GT || op==OP_Le ); 3725f2bc013cSdrh assert( pExpr->op!=TK_GE || op==OP_Lt ); 3726f2bc013cSdrh 3727cce7d176Sdrh switch( pExpr->op ){ 3728cce7d176Sdrh case TK_AND: { 3729c5499befSdrh testcase( jumpIfNull==0 ); 37304adee20fSdanielk1977 sqlite3ExprIfFalse(pParse, pExpr->pLeft, dest, jumpIfNull); 373154e2adb5Sdrh sqlite3ExprCachePush(pParse); 37324adee20fSdanielk1977 sqlite3ExprIfFalse(pParse, pExpr->pRight, dest, jumpIfNull); 373354e2adb5Sdrh sqlite3ExprCachePop(pParse, 1); 3734cce7d176Sdrh break; 3735cce7d176Sdrh } 3736cce7d176Sdrh case TK_OR: { 37374adee20fSdanielk1977 int d2 = sqlite3VdbeMakeLabel(v); 3738c5499befSdrh testcase( jumpIfNull==0 ); 373935573356Sdrh sqlite3ExprIfTrue(pParse, pExpr->pLeft, d2, jumpIfNull^SQLITE_JUMPIFNULL); 374054e2adb5Sdrh sqlite3ExprCachePush(pParse); 37414adee20fSdanielk1977 sqlite3ExprIfFalse(pParse, pExpr->pRight, dest, jumpIfNull); 37424adee20fSdanielk1977 sqlite3VdbeResolveLabel(v, d2); 3743ceea3321Sdrh sqlite3ExprCachePop(pParse, 1); 3744cce7d176Sdrh break; 3745cce7d176Sdrh } 3746cce7d176Sdrh case TK_NOT: { 37475c03f30aSdrh testcase( jumpIfNull==0 ); 37484adee20fSdanielk1977 sqlite3ExprIfTrue(pParse, pExpr->pLeft, dest, jumpIfNull); 3749cce7d176Sdrh break; 3750cce7d176Sdrh } 3751cce7d176Sdrh case TK_LT: 3752cce7d176Sdrh case TK_LE: 3753cce7d176Sdrh case TK_GT: 3754cce7d176Sdrh case TK_GE: 3755cce7d176Sdrh case TK_NE: 3756cce7d176Sdrh case TK_EQ: { 3757c5499befSdrh testcase( op==TK_LT ); 3758c5499befSdrh testcase( op==TK_LE ); 3759c5499befSdrh testcase( op==TK_GT ); 3760c5499befSdrh testcase( op==TK_GE ); 3761c5499befSdrh testcase( op==TK_EQ ); 3762c5499befSdrh testcase( op==TK_NE ); 3763c5499befSdrh testcase( jumpIfNull==0 ); 3764b6da74ebSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 3765b6da74ebSdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); 376635573356Sdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, 37672dcef11bSdrh r1, r2, dest, jumpIfNull); 3768c5499befSdrh testcase( regFree1==0 ); 3769c5499befSdrh testcase( regFree2==0 ); 3770cce7d176Sdrh break; 3771cce7d176Sdrh } 37726a2fe093Sdrh case TK_IS: 37736a2fe093Sdrh case TK_ISNOT: { 37746d4486aeSdrh testcase( pExpr->op==TK_IS ); 37756d4486aeSdrh testcase( pExpr->op==TK_ISNOT ); 3776b6da74ebSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 3777b6da74ebSdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); 37786a2fe093Sdrh op = (pExpr->op==TK_IS) ? TK_NE : TK_EQ; 37796a2fe093Sdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, 37806a2fe093Sdrh r1, r2, dest, SQLITE_NULLEQ); 37816a2fe093Sdrh testcase( regFree1==0 ); 37826a2fe093Sdrh testcase( regFree2==0 ); 37836a2fe093Sdrh break; 37846a2fe093Sdrh } 3785cce7d176Sdrh case TK_ISNULL: 3786cce7d176Sdrh case TK_NOTNULL: { 3787c5499befSdrh testcase( op==TK_ISNULL ); 3788c5499befSdrh testcase( op==TK_NOTNULL ); 37892dcef11bSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 37902dcef11bSdrh sqlite3VdbeAddOp2(v, op, r1, dest); 3791c5499befSdrh testcase( regFree1==0 ); 3792cce7d176Sdrh break; 3793cce7d176Sdrh } 3794fef5208cSdrh case TK_BETWEEN: { 37955c03f30aSdrh testcase( jumpIfNull==0 ); 379636c563a2Sdrh exprCodeBetween(pParse, pExpr, dest, 0, jumpIfNull); 3797fef5208cSdrh break; 3798fef5208cSdrh } 3799bb201344Sshaneh #ifndef SQLITE_OMIT_SUBQUERY 3800e3365e6cSdrh case TK_IN: { 3801e3365e6cSdrh if( jumpIfNull ){ 3802e3365e6cSdrh sqlite3ExprCodeIN(pParse, pExpr, dest, dest); 3803e3365e6cSdrh }else{ 3804e3365e6cSdrh int destIfNull = sqlite3VdbeMakeLabel(v); 3805e3365e6cSdrh sqlite3ExprCodeIN(pParse, pExpr, dest, destIfNull); 3806e3365e6cSdrh sqlite3VdbeResolveLabel(v, destIfNull); 3807e3365e6cSdrh } 3808e3365e6cSdrh break; 3809e3365e6cSdrh } 3810bb201344Sshaneh #endif 3811cce7d176Sdrh default: { 3812991a1985Sdrh if( exprAlwaysFalse(pExpr) ){ 3813991a1985Sdrh sqlite3VdbeAddOp2(v, OP_Goto, 0, dest); 3814991a1985Sdrh }else if( exprAlwaysTrue(pExpr) ){ 3815991a1985Sdrh /* no-op */ 3816991a1985Sdrh }else{ 38172dcef11bSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr, ®Free1); 38182dcef11bSdrh sqlite3VdbeAddOp3(v, OP_IfNot, r1, dest, jumpIfNull!=0); 3819c5499befSdrh testcase( regFree1==0 ); 3820c5499befSdrh testcase( jumpIfNull==0 ); 3821991a1985Sdrh } 3822cce7d176Sdrh break; 3823cce7d176Sdrh } 3824cce7d176Sdrh } 38252dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree1); 38262dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree2); 3827cce7d176Sdrh } 38282282792aSdrh 38292282792aSdrh /* 38301d9da70aSdrh ** Do a deep comparison of two expression trees. Return 0 if the two 38311d9da70aSdrh ** expressions are completely identical. Return 1 if they differ only 38321d9da70aSdrh ** by a COLLATE operator at the top level. Return 2 if there are differences 38331d9da70aSdrh ** other than the top-level COLLATE operator. 3834d40aab0eSdrh ** 3835619a1305Sdrh ** If any subelement of pB has Expr.iTable==(-1) then it is allowed 3836619a1305Sdrh ** to compare equal to an equivalent element in pA with Expr.iTable==iTab. 3837619a1305Sdrh ** 383866518ca7Sdrh ** The pA side might be using TK_REGISTER. If that is the case and pB is 383966518ca7Sdrh ** not using TK_REGISTER but is otherwise equivalent, then still return 0. 384066518ca7Sdrh ** 38411d9da70aSdrh ** Sometimes this routine will return 2 even if the two expressions 3842d40aab0eSdrh ** really are equivalent. If we cannot prove that the expressions are 38431d9da70aSdrh ** identical, we return 2 just to be safe. So if this routine 38441d9da70aSdrh ** returns 2, then you do not really know for certain if the two 38451d9da70aSdrh ** expressions are the same. But if you get a 0 or 1 return, then you 3846d40aab0eSdrh ** can be sure the expressions are the same. In the places where 38471d9da70aSdrh ** this routine is used, it does not hurt to get an extra 2 - that 3848d40aab0eSdrh ** just might result in some slightly slower code. But returning 38491d9da70aSdrh ** an incorrect 0 or 1 could lead to a malfunction. 38502282792aSdrh */ 3851619a1305Sdrh int sqlite3ExprCompare(Expr *pA, Expr *pB, int iTab){ 385210d1edf0Sdrh u32 combinedFlags; 38534b202ae2Sdanielk1977 if( pA==0 || pB==0 ){ 38541d9da70aSdrh return pB==pA ? 0 : 2; 38552282792aSdrh } 385610d1edf0Sdrh combinedFlags = pA->flags | pB->flags; 385710d1edf0Sdrh if( combinedFlags & EP_IntValue ){ 385810d1edf0Sdrh if( (pA->flags&pB->flags&EP_IntValue)!=0 && pA->u.iValue==pB->u.iValue ){ 385910d1edf0Sdrh return 0; 386010d1edf0Sdrh } 38611d9da70aSdrh return 2; 38626ab3a2ecSdanielk1977 } 3863c2acc4e4Sdrh if( pA->op!=pB->op ){ 3864619a1305Sdrh if( pA->op==TK_COLLATE && sqlite3ExprCompare(pA->pLeft, pB, iTab)<2 ){ 3865ae80ddeaSdrh return 1; 3866ae80ddeaSdrh } 3867619a1305Sdrh if( pB->op==TK_COLLATE && sqlite3ExprCompare(pA, pB->pLeft, iTab)<2 ){ 3868ae80ddeaSdrh return 1; 3869ae80ddeaSdrh } 3870ae80ddeaSdrh return 2; 3871ae80ddeaSdrh } 387210d1edf0Sdrh if( pA->op!=TK_COLUMN && ALWAYS(pA->op!=TK_AGG_COLUMN) && pA->u.zToken ){ 387310d1edf0Sdrh if( strcmp(pA->u.zToken,pB->u.zToken)!=0 ){ 387410d1edf0Sdrh return pA->op==TK_COLLATE ? 1 : 2; 387510d1edf0Sdrh } 387610d1edf0Sdrh } 387710d1edf0Sdrh if( (pA->flags & EP_Distinct)!=(pB->flags & EP_Distinct) ) return 2; 387885f8aa79Sdrh if( ALWAYS((combinedFlags & EP_TokenOnly)==0) ){ 387910d1edf0Sdrh if( combinedFlags & EP_xIsSelect ) return 2; 3880619a1305Sdrh if( sqlite3ExprCompare(pA->pLeft, pB->pLeft, iTab) ) return 2; 3881619a1305Sdrh if( sqlite3ExprCompare(pA->pRight, pB->pRight, iTab) ) return 2; 3882619a1305Sdrh if( sqlite3ExprListCompare(pA->x.pList, pB->x.pList, iTab) ) return 2; 388385f8aa79Sdrh if( ALWAYS((combinedFlags & EP_Reduced)==0) ){ 3884619a1305Sdrh if( pA->iColumn!=pB->iColumn ) return 2; 388566518ca7Sdrh if( pA->iTable!=pB->iTable 388685f8aa79Sdrh && (pA->iTable!=iTab || NEVER(pB->iTable>=0)) ) return 2; 38871d9da70aSdrh } 38881d9da70aSdrh } 38892646da7eSdrh return 0; 38902646da7eSdrh } 38912282792aSdrh 38928c6f666bSdrh /* 38938c6f666bSdrh ** Compare two ExprList objects. Return 0 if they are identical and 38948c6f666bSdrh ** non-zero if they differ in any way. 38958c6f666bSdrh ** 3896619a1305Sdrh ** If any subelement of pB has Expr.iTable==(-1) then it is allowed 3897619a1305Sdrh ** to compare equal to an equivalent element in pA with Expr.iTable==iTab. 3898619a1305Sdrh ** 38998c6f666bSdrh ** This routine might return non-zero for equivalent ExprLists. The 39008c6f666bSdrh ** only consequence will be disabled optimizations. But this routine 39018c6f666bSdrh ** must never return 0 if the two ExprList objects are different, or 39028c6f666bSdrh ** a malfunction will result. 39038c6f666bSdrh ** 39048c6f666bSdrh ** Two NULL pointers are considered to be the same. But a NULL pointer 39058c6f666bSdrh ** always differs from a non-NULL pointer. 39068c6f666bSdrh */ 3907619a1305Sdrh int sqlite3ExprListCompare(ExprList *pA, ExprList *pB, int iTab){ 39088c6f666bSdrh int i; 39098c6f666bSdrh if( pA==0 && pB==0 ) return 0; 39108c6f666bSdrh if( pA==0 || pB==0 ) return 1; 39118c6f666bSdrh if( pA->nExpr!=pB->nExpr ) return 1; 39128c6f666bSdrh for(i=0; i<pA->nExpr; i++){ 39138c6f666bSdrh Expr *pExprA = pA->a[i].pExpr; 39148c6f666bSdrh Expr *pExprB = pB->a[i].pExpr; 39158c6f666bSdrh if( pA->a[i].sortOrder!=pB->a[i].sortOrder ) return 1; 3916619a1305Sdrh if( sqlite3ExprCompare(pExprA, pExprB, iTab) ) return 1; 39178c6f666bSdrh } 39188c6f666bSdrh return 0; 39198c6f666bSdrh } 392013449892Sdrh 39212282792aSdrh /* 39224bd5f73fSdrh ** Return true if we can prove the pE2 will always be true if pE1 is 39234bd5f73fSdrh ** true. Return false if we cannot complete the proof or if pE2 might 39244bd5f73fSdrh ** be false. Examples: 39254bd5f73fSdrh ** 3926619a1305Sdrh ** pE1: x==5 pE2: x==5 Result: true 39274bd5f73fSdrh ** pE1: x>0 pE2: x==5 Result: false 3928619a1305Sdrh ** pE1: x=21 pE2: x=21 OR y=43 Result: true 39294bd5f73fSdrh ** pE1: x!=123 pE2: x IS NOT NULL Result: true 3930619a1305Sdrh ** pE1: x!=?1 pE2: x IS NOT NULL Result: true 3931619a1305Sdrh ** pE1: x IS NULL pE2: x IS NOT NULL Result: false 3932619a1305Sdrh ** pE1: x IS ?2 pE2: x IS NOT NULL Reuslt: false 39334bd5f73fSdrh ** 39344bd5f73fSdrh ** When comparing TK_COLUMN nodes between pE1 and pE2, if pE2 has 39354bd5f73fSdrh ** Expr.iTable<0 then assume a table number given by iTab. 39364bd5f73fSdrh ** 39374bd5f73fSdrh ** When in doubt, return false. Returning true might give a performance 39384bd5f73fSdrh ** improvement. Returning false might cause a performance reduction, but 39394bd5f73fSdrh ** it will always give the correct answer and is hence always safe. 39404bd5f73fSdrh */ 39414bd5f73fSdrh int sqlite3ExprImpliesExpr(Expr *pE1, Expr *pE2, int iTab){ 3942619a1305Sdrh if( sqlite3ExprCompare(pE1, pE2, iTab)==0 ){ 3943619a1305Sdrh return 1; 3944619a1305Sdrh } 3945619a1305Sdrh if( pE2->op==TK_OR 3946619a1305Sdrh && (sqlite3ExprImpliesExpr(pE1, pE2->pLeft, iTab) 3947619a1305Sdrh || sqlite3ExprImpliesExpr(pE1, pE2->pRight, iTab) ) 3948619a1305Sdrh ){ 3949619a1305Sdrh return 1; 3950619a1305Sdrh } 3951619a1305Sdrh if( pE2->op==TK_NOTNULL 3952619a1305Sdrh && sqlite3ExprCompare(pE1->pLeft, pE2->pLeft, iTab)==0 3953619a1305Sdrh && (pE1->op!=TK_ISNULL && pE1->op!=TK_IS) 3954619a1305Sdrh ){ 3955619a1305Sdrh return 1; 3956619a1305Sdrh } 3957619a1305Sdrh return 0; 39584bd5f73fSdrh } 39594bd5f73fSdrh 39604bd5f73fSdrh /* 3961030796dfSdrh ** An instance of the following structure is used by the tree walker 3962030796dfSdrh ** to count references to table columns in the arguments of an 3963ed551b95Sdrh ** aggregate function, in order to implement the 3964ed551b95Sdrh ** sqlite3FunctionThisSrc() routine. 3965374fdce4Sdrh */ 3966030796dfSdrh struct SrcCount { 3967030796dfSdrh SrcList *pSrc; /* One particular FROM clause in a nested query */ 3968030796dfSdrh int nThis; /* Number of references to columns in pSrcList */ 3969030796dfSdrh int nOther; /* Number of references to columns in other FROM clauses */ 3970030796dfSdrh }; 3971030796dfSdrh 3972030796dfSdrh /* 3973030796dfSdrh ** Count the number of references to columns. 3974030796dfSdrh */ 3975030796dfSdrh static int exprSrcCount(Walker *pWalker, Expr *pExpr){ 3976fb0a6081Sdrh /* The NEVER() on the second term is because sqlite3FunctionUsesThisSrc() 3977fb0a6081Sdrh ** is always called before sqlite3ExprAnalyzeAggregates() and so the 3978fb0a6081Sdrh ** TK_COLUMNs have not yet been converted into TK_AGG_COLUMN. If 3979fb0a6081Sdrh ** sqlite3FunctionUsesThisSrc() is used differently in the future, the 3980fb0a6081Sdrh ** NEVER() will need to be removed. */ 3981fb0a6081Sdrh if( pExpr->op==TK_COLUMN || NEVER(pExpr->op==TK_AGG_COLUMN) ){ 3982374fdce4Sdrh int i; 3983030796dfSdrh struct SrcCount *p = pWalker->u.pSrcCount; 3984030796dfSdrh SrcList *pSrc = p->pSrc; 3985374fdce4Sdrh for(i=0; i<pSrc->nSrc; i++){ 3986030796dfSdrh if( pExpr->iTable==pSrc->a[i].iCursor ) break; 3987374fdce4Sdrh } 3988030796dfSdrh if( i<pSrc->nSrc ){ 3989030796dfSdrh p->nThis++; 3990374fdce4Sdrh }else{ 3991030796dfSdrh p->nOther++; 3992374fdce4Sdrh } 3993374fdce4Sdrh } 3994030796dfSdrh return WRC_Continue; 3995030796dfSdrh } 3996374fdce4Sdrh 3997374fdce4Sdrh /* 3998030796dfSdrh ** Determine if any of the arguments to the pExpr Function reference 3999030796dfSdrh ** pSrcList. Return true if they do. Also return true if the function 4000030796dfSdrh ** has no arguments or has only constant arguments. Return false if pExpr 4001030796dfSdrh ** references columns but not columns of tables found in pSrcList. 4002374fdce4Sdrh */ 4003030796dfSdrh int sqlite3FunctionUsesThisSrc(Expr *pExpr, SrcList *pSrcList){ 4004374fdce4Sdrh Walker w; 4005030796dfSdrh struct SrcCount cnt; 4006374fdce4Sdrh assert( pExpr->op==TK_AGG_FUNCTION ); 4007374fdce4Sdrh memset(&w, 0, sizeof(w)); 4008030796dfSdrh w.xExprCallback = exprSrcCount; 4009030796dfSdrh w.u.pSrcCount = &cnt; 4010030796dfSdrh cnt.pSrc = pSrcList; 4011030796dfSdrh cnt.nThis = 0; 4012030796dfSdrh cnt.nOther = 0; 4013030796dfSdrh sqlite3WalkExprList(&w, pExpr->x.pList); 4014030796dfSdrh return cnt.nThis>0 || cnt.nOther==0; 4015374fdce4Sdrh } 4016374fdce4Sdrh 4017374fdce4Sdrh /* 401813449892Sdrh ** Add a new element to the pAggInfo->aCol[] array. Return the index of 401913449892Sdrh ** the new element. Return a negative number if malloc fails. 40202282792aSdrh */ 402117435752Sdrh static int addAggInfoColumn(sqlite3 *db, AggInfo *pInfo){ 402213449892Sdrh int i; 4023cf643729Sdrh pInfo->aCol = sqlite3ArrayAllocate( 402417435752Sdrh db, 4025cf643729Sdrh pInfo->aCol, 4026cf643729Sdrh sizeof(pInfo->aCol[0]), 4027cf643729Sdrh &pInfo->nColumn, 4028cf643729Sdrh &i 4029cf643729Sdrh ); 403013449892Sdrh return i; 40312282792aSdrh } 403213449892Sdrh 403313449892Sdrh /* 403413449892Sdrh ** Add a new element to the pAggInfo->aFunc[] array. Return the index of 403513449892Sdrh ** the new element. Return a negative number if malloc fails. 403613449892Sdrh */ 403717435752Sdrh static int addAggInfoFunc(sqlite3 *db, AggInfo *pInfo){ 403813449892Sdrh int i; 4039cf643729Sdrh pInfo->aFunc = sqlite3ArrayAllocate( 404017435752Sdrh db, 4041cf643729Sdrh pInfo->aFunc, 4042cf643729Sdrh sizeof(pInfo->aFunc[0]), 4043cf643729Sdrh &pInfo->nFunc, 4044cf643729Sdrh &i 4045cf643729Sdrh ); 404613449892Sdrh return i; 40472282792aSdrh } 40482282792aSdrh 40492282792aSdrh /* 40507d10d5a6Sdrh ** This is the xExprCallback for a tree walker. It is used to 40517d10d5a6Sdrh ** implement sqlite3ExprAnalyzeAggregates(). See sqlite3ExprAnalyzeAggregates 4052626a879aSdrh ** for additional information. 40532282792aSdrh */ 40547d10d5a6Sdrh static int analyzeAggregate(Walker *pWalker, Expr *pExpr){ 40552282792aSdrh int i; 40567d10d5a6Sdrh NameContext *pNC = pWalker->u.pNC; 4057a58fdfb1Sdanielk1977 Parse *pParse = pNC->pParse; 4058a58fdfb1Sdanielk1977 SrcList *pSrcList = pNC->pSrcList; 405913449892Sdrh AggInfo *pAggInfo = pNC->pAggInfo; 406013449892Sdrh 40612282792aSdrh switch( pExpr->op ){ 406289c69d00Sdrh case TK_AGG_COLUMN: 4063967e8b73Sdrh case TK_COLUMN: { 40648b213899Sdrh testcase( pExpr->op==TK_AGG_COLUMN ); 40658b213899Sdrh testcase( pExpr->op==TK_COLUMN ); 406613449892Sdrh /* Check to see if the column is in one of the tables in the FROM 406713449892Sdrh ** clause of the aggregate query */ 406820bc393cSdrh if( ALWAYS(pSrcList!=0) ){ 406913449892Sdrh struct SrcList_item *pItem = pSrcList->a; 407013449892Sdrh for(i=0; i<pSrcList->nSrc; i++, pItem++){ 407113449892Sdrh struct AggInfo_col *pCol; 4072c5cd1249Sdrh assert( !ExprHasProperty(pExpr, EP_TokenOnly|EP_Reduced) ); 407313449892Sdrh if( pExpr->iTable==pItem->iCursor ){ 407413449892Sdrh /* If we reach this point, it means that pExpr refers to a table 407513449892Sdrh ** that is in the FROM clause of the aggregate query. 407613449892Sdrh ** 407713449892Sdrh ** Make an entry for the column in pAggInfo->aCol[] if there 407813449892Sdrh ** is not an entry there already. 407913449892Sdrh */ 40807f906d63Sdrh int k; 408113449892Sdrh pCol = pAggInfo->aCol; 40827f906d63Sdrh for(k=0; k<pAggInfo->nColumn; k++, pCol++){ 408313449892Sdrh if( pCol->iTable==pExpr->iTable && 408413449892Sdrh pCol->iColumn==pExpr->iColumn ){ 40852282792aSdrh break; 40862282792aSdrh } 40872282792aSdrh } 40881e536953Sdanielk1977 if( (k>=pAggInfo->nColumn) 40891e536953Sdanielk1977 && (k = addAggInfoColumn(pParse->db, pAggInfo))>=0 40901e536953Sdanielk1977 ){ 40917f906d63Sdrh pCol = &pAggInfo->aCol[k]; 40920817d0dfSdanielk1977 pCol->pTab = pExpr->pTab; 409313449892Sdrh pCol->iTable = pExpr->iTable; 409413449892Sdrh pCol->iColumn = pExpr->iColumn; 40950a07c107Sdrh pCol->iMem = ++pParse->nMem; 409613449892Sdrh pCol->iSorterColumn = -1; 40975774b806Sdrh pCol->pExpr = pExpr; 409813449892Sdrh if( pAggInfo->pGroupBy ){ 409913449892Sdrh int j, n; 410013449892Sdrh ExprList *pGB = pAggInfo->pGroupBy; 410113449892Sdrh struct ExprList_item *pTerm = pGB->a; 410213449892Sdrh n = pGB->nExpr; 410313449892Sdrh for(j=0; j<n; j++, pTerm++){ 410413449892Sdrh Expr *pE = pTerm->pExpr; 410513449892Sdrh if( pE->op==TK_COLUMN && pE->iTable==pExpr->iTable && 410613449892Sdrh pE->iColumn==pExpr->iColumn ){ 410713449892Sdrh pCol->iSorterColumn = j; 410813449892Sdrh break; 41092282792aSdrh } 411013449892Sdrh } 411113449892Sdrh } 411213449892Sdrh if( pCol->iSorterColumn<0 ){ 411313449892Sdrh pCol->iSorterColumn = pAggInfo->nSortingColumn++; 411413449892Sdrh } 411513449892Sdrh } 411613449892Sdrh /* There is now an entry for pExpr in pAggInfo->aCol[] (either 411713449892Sdrh ** because it was there before or because we just created it). 411813449892Sdrh ** Convert the pExpr to be a TK_AGG_COLUMN referring to that 411913449892Sdrh ** pAggInfo->aCol[] entry. 412013449892Sdrh */ 4121ebb6a65dSdrh ExprSetVVAProperty(pExpr, EP_NoReduce); 412213449892Sdrh pExpr->pAggInfo = pAggInfo; 412313449892Sdrh pExpr->op = TK_AGG_COLUMN; 4124cf697396Sshane pExpr->iAgg = (i16)k; 412513449892Sdrh break; 412613449892Sdrh } /* endif pExpr->iTable==pItem->iCursor */ 412713449892Sdrh } /* end loop over pSrcList */ 4128a58fdfb1Sdanielk1977 } 41297d10d5a6Sdrh return WRC_Prune; 41302282792aSdrh } 41312282792aSdrh case TK_AGG_FUNCTION: { 41323a8c4be7Sdrh if( (pNC->ncFlags & NC_InAggFunc)==0 4133ed551b95Sdrh && pWalker->walkerDepth==pExpr->op2 41343a8c4be7Sdrh ){ 413513449892Sdrh /* Check to see if pExpr is a duplicate of another aggregate 413613449892Sdrh ** function that is already in the pAggInfo structure 413713449892Sdrh */ 413813449892Sdrh struct AggInfo_func *pItem = pAggInfo->aFunc; 413913449892Sdrh for(i=0; i<pAggInfo->nFunc; i++, pItem++){ 4140619a1305Sdrh if( sqlite3ExprCompare(pItem->pExpr, pExpr, -1)==0 ){ 41412282792aSdrh break; 41422282792aSdrh } 41432282792aSdrh } 414413449892Sdrh if( i>=pAggInfo->nFunc ){ 414513449892Sdrh /* pExpr is original. Make a new entry in pAggInfo->aFunc[] 414613449892Sdrh */ 414714db2665Sdanielk1977 u8 enc = ENC(pParse->db); 41481e536953Sdanielk1977 i = addAggInfoFunc(pParse->db, pAggInfo); 414913449892Sdrh if( i>=0 ){ 41506ab3a2ecSdanielk1977 assert( !ExprHasProperty(pExpr, EP_xIsSelect) ); 415113449892Sdrh pItem = &pAggInfo->aFunc[i]; 415213449892Sdrh pItem->pExpr = pExpr; 41530a07c107Sdrh pItem->iMem = ++pParse->nMem; 415433e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 415513449892Sdrh pItem->pFunc = sqlite3FindFunction(pParse->db, 415633e619fcSdrh pExpr->u.zToken, sqlite3Strlen30(pExpr->u.zToken), 41576ab3a2ecSdanielk1977 pExpr->x.pList ? pExpr->x.pList->nExpr : 0, enc, 0); 4158fd357974Sdrh if( pExpr->flags & EP_Distinct ){ 4159fd357974Sdrh pItem->iDistinct = pParse->nTab++; 4160fd357974Sdrh }else{ 4161fd357974Sdrh pItem->iDistinct = -1; 4162fd357974Sdrh } 41632282792aSdrh } 416413449892Sdrh } 416513449892Sdrh /* Make pExpr point to the appropriate pAggInfo->aFunc[] entry 416613449892Sdrh */ 4167c5cd1249Sdrh assert( !ExprHasProperty(pExpr, EP_TokenOnly|EP_Reduced) ); 4168ebb6a65dSdrh ExprSetVVAProperty(pExpr, EP_NoReduce); 4169cf697396Sshane pExpr->iAgg = (i16)i; 417013449892Sdrh pExpr->pAggInfo = pAggInfo; 41713a8c4be7Sdrh return WRC_Prune; 41726e83a57fSdrh }else{ 41736e83a57fSdrh return WRC_Continue; 41746e83a57fSdrh } 41752282792aSdrh } 4176a58fdfb1Sdanielk1977 } 41777d10d5a6Sdrh return WRC_Continue; 41787d10d5a6Sdrh } 41797d10d5a6Sdrh static int analyzeAggregatesInSelect(Walker *pWalker, Select *pSelect){ 4180d5a336efSdrh UNUSED_PARAMETER(pWalker); 4181d5a336efSdrh UNUSED_PARAMETER(pSelect); 41827d10d5a6Sdrh return WRC_Continue; 4183a58fdfb1Sdanielk1977 } 4184626a879aSdrh 4185626a879aSdrh /* 4186e8abb4caSdrh ** Analyze the pExpr expression looking for aggregate functions and 4187e8abb4caSdrh ** for variables that need to be added to AggInfo object that pNC->pAggInfo 4188e8abb4caSdrh ** points to. Additional entries are made on the AggInfo object as 4189e8abb4caSdrh ** necessary. 4190626a879aSdrh ** 4191626a879aSdrh ** This routine should only be called after the expression has been 41927d10d5a6Sdrh ** analyzed by sqlite3ResolveExprNames(). 4193626a879aSdrh */ 4194d2b3e23bSdrh void sqlite3ExprAnalyzeAggregates(NameContext *pNC, Expr *pExpr){ 41957d10d5a6Sdrh Walker w; 4196374fdce4Sdrh memset(&w, 0, sizeof(w)); 41977d10d5a6Sdrh w.xExprCallback = analyzeAggregate; 41987d10d5a6Sdrh w.xSelectCallback = analyzeAggregatesInSelect; 41997d10d5a6Sdrh w.u.pNC = pNC; 420020bc393cSdrh assert( pNC->pSrcList!=0 ); 42017d10d5a6Sdrh sqlite3WalkExpr(&w, pExpr); 42022282792aSdrh } 42035d9a4af9Sdrh 42045d9a4af9Sdrh /* 42055d9a4af9Sdrh ** Call sqlite3ExprAnalyzeAggregates() for every expression in an 42065d9a4af9Sdrh ** expression list. Return the number of errors. 42075d9a4af9Sdrh ** 42085d9a4af9Sdrh ** If an error is found, the analysis is cut short. 42095d9a4af9Sdrh */ 4210d2b3e23bSdrh void sqlite3ExprAnalyzeAggList(NameContext *pNC, ExprList *pList){ 42115d9a4af9Sdrh struct ExprList_item *pItem; 42125d9a4af9Sdrh int i; 42135d9a4af9Sdrh if( pList ){ 4214d2b3e23bSdrh for(pItem=pList->a, i=0; i<pList->nExpr; i++, pItem++){ 4215d2b3e23bSdrh sqlite3ExprAnalyzeAggregates(pNC, pItem->pExpr); 42165d9a4af9Sdrh } 42175d9a4af9Sdrh } 42185d9a4af9Sdrh } 4219892d3179Sdrh 4220892d3179Sdrh /* 4221ceea3321Sdrh ** Allocate a single new register for use to hold some intermediate result. 4222892d3179Sdrh */ 4223892d3179Sdrh int sqlite3GetTempReg(Parse *pParse){ 4224e55cbd72Sdrh if( pParse->nTempReg==0 ){ 4225892d3179Sdrh return ++pParse->nMem; 4226892d3179Sdrh } 42272f425f6bSdanielk1977 return pParse->aTempReg[--pParse->nTempReg]; 4228892d3179Sdrh } 4229ceea3321Sdrh 4230ceea3321Sdrh /* 4231ceea3321Sdrh ** Deallocate a register, making available for reuse for some other 4232ceea3321Sdrh ** purpose. 4233ceea3321Sdrh ** 4234ceea3321Sdrh ** If a register is currently being used by the column cache, then 4235ceea3321Sdrh ** the dallocation is deferred until the column cache line that uses 4236ceea3321Sdrh ** the register becomes stale. 4237ceea3321Sdrh */ 4238892d3179Sdrh void sqlite3ReleaseTempReg(Parse *pParse, int iReg){ 42392dcef11bSdrh if( iReg && pParse->nTempReg<ArraySize(pParse->aTempReg) ){ 4240ceea3321Sdrh int i; 4241ceea3321Sdrh struct yColCache *p; 4242ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 4243ceea3321Sdrh if( p->iReg==iReg ){ 4244ceea3321Sdrh p->tempReg = 1; 4245ceea3321Sdrh return; 4246ceea3321Sdrh } 4247ceea3321Sdrh } 4248892d3179Sdrh pParse->aTempReg[pParse->nTempReg++] = iReg; 4249892d3179Sdrh } 4250892d3179Sdrh } 4251892d3179Sdrh 4252892d3179Sdrh /* 4253892d3179Sdrh ** Allocate or deallocate a block of nReg consecutive registers 4254892d3179Sdrh */ 4255892d3179Sdrh int sqlite3GetTempRange(Parse *pParse, int nReg){ 4256e55cbd72Sdrh int i, n; 4257892d3179Sdrh i = pParse->iRangeReg; 4258e55cbd72Sdrh n = pParse->nRangeReg; 4259f49f3523Sdrh if( nReg<=n ){ 4260f49f3523Sdrh assert( !usedAsColumnCache(pParse, i, i+n-1) ); 4261892d3179Sdrh pParse->iRangeReg += nReg; 4262892d3179Sdrh pParse->nRangeReg -= nReg; 4263892d3179Sdrh }else{ 4264892d3179Sdrh i = pParse->nMem+1; 4265892d3179Sdrh pParse->nMem += nReg; 4266892d3179Sdrh } 4267892d3179Sdrh return i; 4268892d3179Sdrh } 4269892d3179Sdrh void sqlite3ReleaseTempRange(Parse *pParse, int iReg, int nReg){ 4270f49f3523Sdrh sqlite3ExprCacheRemove(pParse, iReg, nReg); 4271892d3179Sdrh if( nReg>pParse->nRangeReg ){ 4272892d3179Sdrh pParse->nRangeReg = nReg; 4273892d3179Sdrh pParse->iRangeReg = iReg; 4274892d3179Sdrh } 4275892d3179Sdrh } 4276cdc69557Sdrh 4277cdc69557Sdrh /* 4278cdc69557Sdrh ** Mark all temporary registers as being unavailable for reuse. 4279cdc69557Sdrh */ 4280cdc69557Sdrh void sqlite3ClearTempRegCache(Parse *pParse){ 4281cdc69557Sdrh pParse->nTempReg = 0; 4282cdc69557Sdrh pParse->nRangeReg = 0; 4283cdc69557Sdrh } 4284