xref: /sqlite-3.40.0/src/expr.c (revision f6963f99)
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){
34487e262fSdrh   int op = pExpr->op;
35487e262fSdrh   if( op==TK_SELECT ){
366ab3a2ecSdanielk1977     assert( pExpr->flags&EP_xIsSelect );
376ab3a2ecSdanielk1977     return sqlite3ExprAffinity(pExpr->x.pSelect->pEList->a[0].pExpr);
38a37cdde0Sdanielk1977   }
39487e262fSdrh #ifndef SQLITE_OMIT_CAST
40487e262fSdrh   if( op==TK_CAST ){
4133e619fcSdrh     assert( !ExprHasProperty(pExpr, EP_IntValue) );
4233e619fcSdrh     return sqlite3AffinityType(pExpr->u.zToken);
43487e262fSdrh   }
44487e262fSdrh #endif
45259a455fSdanielk1977   if( (op==TK_AGG_COLUMN || op==TK_COLUMN || op==TK_REGISTER)
46259a455fSdanielk1977    && pExpr->pTab!=0
47259a455fSdanielk1977   ){
487d10d5a6Sdrh     /* op==TK_REGISTER && pExpr->pTab!=0 happens when pExpr was originally
497d10d5a6Sdrh     ** a TK_COLUMN but was previously evaluated and cached in a register */
507d10d5a6Sdrh     int j = pExpr->iColumn;
517d10d5a6Sdrh     if( j<0 ) return SQLITE_AFF_INTEGER;
527d10d5a6Sdrh     assert( pExpr->pTab && j<pExpr->pTab->nCol );
537d10d5a6Sdrh     return pExpr->pTab->aCol[j].affinity;
547d10d5a6Sdrh   }
55a37cdde0Sdanielk1977   return pExpr->affinity;
56a37cdde0Sdanielk1977 }
57a37cdde0Sdanielk1977 
5853db1458Sdrh /*
598b4c40d8Sdrh ** Set the collating sequence for expression pExpr to be the collating
608b4c40d8Sdrh ** sequence named by pToken.   Return a pointer to the revised expression.
61a34001c9Sdrh ** The collating sequence is marked as "explicit" using the EP_ExpCollate
62a34001c9Sdrh ** flag.  An explicit collating sequence will override implicit
63a34001c9Sdrh ** collating sequences.
648b4c40d8Sdrh */
657d10d5a6Sdrh Expr *sqlite3ExprSetColl(Parse *pParse, Expr *pExpr, Token *pCollName){
6639002505Sdanielk1977   char *zColl = 0;            /* Dequoted name of collation sequence */
678b4c40d8Sdrh   CollSeq *pColl;
68633e6d57Sdrh   sqlite3 *db = pParse->db;
697d10d5a6Sdrh   zColl = sqlite3NameFromToken(db, pCollName);
7039002505Sdanielk1977   if( pExpr && zColl ){
71c4a64facSdrh     pColl = sqlite3LocateCollSeq(pParse, zColl);
728b4c40d8Sdrh     if( pColl ){
738b4c40d8Sdrh       pExpr->pColl = pColl;
748b4c40d8Sdrh       pExpr->flags |= EP_ExpCollate;
758b4c40d8Sdrh     }
7639002505Sdanielk1977   }
77633e6d57Sdrh   sqlite3DbFree(db, zColl);
788b4c40d8Sdrh   return pExpr;
798b4c40d8Sdrh }
808b4c40d8Sdrh 
818b4c40d8Sdrh /*
820202b29eSdanielk1977 ** Return the default collation sequence for the expression pExpr. If
830202b29eSdanielk1977 ** there is no default collation type, return 0.
840202b29eSdanielk1977 */
857cedc8d4Sdanielk1977 CollSeq *sqlite3ExprCollSeq(Parse *pParse, Expr *pExpr){
867cedc8d4Sdanielk1977   CollSeq *pColl = 0;
877d10d5a6Sdrh   Expr *p = pExpr;
8851f49f17Sdrh   while( ALWAYS(p) ){
897e09fe0bSdrh     int op;
907d10d5a6Sdrh     pColl = p->pColl;
917d10d5a6Sdrh     if( pColl ) break;
927d10d5a6Sdrh     op = p->op;
9376d462eeSdan     if( p->pTab!=0 && (
9476d462eeSdan         op==TK_AGG_COLUMN || op==TK_COLUMN || op==TK_REGISTER || op==TK_TRIGGER
9576d462eeSdan     )){
967d10d5a6Sdrh       /* op==TK_REGISTER && p->pTab!=0 happens when pExpr was originally
977d10d5a6Sdrh       ** a TK_COLUMN but was previously evaluated and cached in a register */
987d10d5a6Sdrh       const char *zColl;
997d10d5a6Sdrh       int j = p->iColumn;
1007d10d5a6Sdrh       if( j>=0 ){
1017d10d5a6Sdrh         sqlite3 *db = pParse->db;
1027d10d5a6Sdrh         zColl = p->pTab->aCol[j].zColl;
103c4a64facSdrh         pColl = sqlite3FindCollSeq(db, ENC(db), zColl, 0);
1047d10d5a6Sdrh         pExpr->pColl = pColl;
1050202b29eSdanielk1977       }
1067d10d5a6Sdrh       break;
1077d10d5a6Sdrh     }
1087d10d5a6Sdrh     if( op!=TK_CAST && op!=TK_UPLUS ){
1097d10d5a6Sdrh       break;
1107d10d5a6Sdrh     }
1117d10d5a6Sdrh     p = p->pLeft;
1120202b29eSdanielk1977   }
1137cedc8d4Sdanielk1977   if( sqlite3CheckCollSeq(pParse, pColl) ){
1147cedc8d4Sdanielk1977     pColl = 0;
1157cedc8d4Sdanielk1977   }
1167cedc8d4Sdanielk1977   return pColl;
1170202b29eSdanielk1977 }
1180202b29eSdanielk1977 
1190202b29eSdanielk1977 /*
120626a879aSdrh ** pExpr is an operand of a comparison operator.  aff2 is the
121626a879aSdrh ** type affinity of the other operand.  This routine returns the
12253db1458Sdrh ** type affinity that should be used for the comparison operator.
12353db1458Sdrh */
124e014a838Sdanielk1977 char sqlite3CompareAffinity(Expr *pExpr, char aff2){
125bf3b721fSdanielk1977   char aff1 = sqlite3ExprAffinity(pExpr);
126e014a838Sdanielk1977   if( aff1 && aff2 ){
1278df447f0Sdrh     /* Both sides of the comparison are columns. If one has numeric
1288df447f0Sdrh     ** affinity, use that. Otherwise use no affinity.
129e014a838Sdanielk1977     */
1308a51256cSdrh     if( sqlite3IsNumericAffinity(aff1) || sqlite3IsNumericAffinity(aff2) ){
131e014a838Sdanielk1977       return SQLITE_AFF_NUMERIC;
132e014a838Sdanielk1977     }else{
133e014a838Sdanielk1977       return SQLITE_AFF_NONE;
134e014a838Sdanielk1977     }
135e014a838Sdanielk1977   }else if( !aff1 && !aff2 ){
1365f6a87b3Sdrh     /* Neither side of the comparison is a column.  Compare the
1375f6a87b3Sdrh     ** results directly.
138e014a838Sdanielk1977     */
1395f6a87b3Sdrh     return SQLITE_AFF_NONE;
140e014a838Sdanielk1977   }else{
141e014a838Sdanielk1977     /* One side is a column, the other is not. Use the columns affinity. */
142fe05af87Sdrh     assert( aff1==0 || aff2==0 );
143e014a838Sdanielk1977     return (aff1 + aff2);
144e014a838Sdanielk1977   }
145e014a838Sdanielk1977 }
146e014a838Sdanielk1977 
14753db1458Sdrh /*
14853db1458Sdrh ** pExpr is a comparison operator.  Return the type affinity that should
14953db1458Sdrh ** be applied to both operands prior to doing the comparison.
15053db1458Sdrh */
151e014a838Sdanielk1977 static char comparisonAffinity(Expr *pExpr){
152e014a838Sdanielk1977   char aff;
153e014a838Sdanielk1977   assert( pExpr->op==TK_EQ || pExpr->op==TK_IN || pExpr->op==TK_LT ||
154e014a838Sdanielk1977           pExpr->op==TK_GT || pExpr->op==TK_GE || pExpr->op==TK_LE ||
1556a2fe093Sdrh           pExpr->op==TK_NE || pExpr->op==TK_IS || pExpr->op==TK_ISNOT );
156e014a838Sdanielk1977   assert( pExpr->pLeft );
157bf3b721fSdanielk1977   aff = sqlite3ExprAffinity(pExpr->pLeft);
158e014a838Sdanielk1977   if( pExpr->pRight ){
159e014a838Sdanielk1977     aff = sqlite3CompareAffinity(pExpr->pRight, aff);
1606ab3a2ecSdanielk1977   }else if( ExprHasProperty(pExpr, EP_xIsSelect) ){
1616ab3a2ecSdanielk1977     aff = sqlite3CompareAffinity(pExpr->x.pSelect->pEList->a[0].pExpr, aff);
1626ab3a2ecSdanielk1977   }else if( !aff ){
163de087bd5Sdrh     aff = SQLITE_AFF_NONE;
164e014a838Sdanielk1977   }
165e014a838Sdanielk1977   return aff;
166e014a838Sdanielk1977 }
167e014a838Sdanielk1977 
168e014a838Sdanielk1977 /*
169e014a838Sdanielk1977 ** pExpr is a comparison expression, eg. '=', '<', IN(...) etc.
170e014a838Sdanielk1977 ** idx_affinity is the affinity of an indexed column. Return true
171e014a838Sdanielk1977 ** if the index with affinity idx_affinity may be used to implement
172e014a838Sdanielk1977 ** the comparison in pExpr.
173e014a838Sdanielk1977 */
174e014a838Sdanielk1977 int sqlite3IndexAffinityOk(Expr *pExpr, char idx_affinity){
175e014a838Sdanielk1977   char aff = comparisonAffinity(pExpr);
1768a51256cSdrh   switch( aff ){
1778a51256cSdrh     case SQLITE_AFF_NONE:
1788a51256cSdrh       return 1;
1798a51256cSdrh     case SQLITE_AFF_TEXT:
1808a51256cSdrh       return idx_affinity==SQLITE_AFF_TEXT;
1818a51256cSdrh     default:
1828a51256cSdrh       return sqlite3IsNumericAffinity(idx_affinity);
1838a51256cSdrh   }
184e014a838Sdanielk1977 }
185e014a838Sdanielk1977 
186a37cdde0Sdanielk1977 /*
18735573356Sdrh ** Return the P5 value that should be used for a binary comparison
188a37cdde0Sdanielk1977 ** opcode (OP_Eq, OP_Ge etc.) used to compare pExpr1 and pExpr2.
189a37cdde0Sdanielk1977 */
19035573356Sdrh static u8 binaryCompareP5(Expr *pExpr1, Expr *pExpr2, int jumpIfNull){
19135573356Sdrh   u8 aff = (char)sqlite3ExprAffinity(pExpr2);
1921bd10f8aSdrh   aff = (u8)sqlite3CompareAffinity(pExpr1, aff) | (u8)jumpIfNull;
19335573356Sdrh   return aff;
194a37cdde0Sdanielk1977 }
195a37cdde0Sdanielk1977 
196a2e00042Sdrh /*
1970202b29eSdanielk1977 ** Return a pointer to the collation sequence that should be used by
1980202b29eSdanielk1977 ** a binary comparison operator comparing pLeft and pRight.
1990202b29eSdanielk1977 **
2000202b29eSdanielk1977 ** If the left hand expression has a collating sequence type, then it is
2010202b29eSdanielk1977 ** used. Otherwise the collation sequence for the right hand expression
2020202b29eSdanielk1977 ** is used, or the default (BINARY) if neither expression has a collating
2030202b29eSdanielk1977 ** type.
204bcbb04e5Sdanielk1977 **
205bcbb04e5Sdanielk1977 ** Argument pRight (but not pLeft) may be a null pointer. In this case,
206bcbb04e5Sdanielk1977 ** it is not considered.
2070202b29eSdanielk1977 */
208bcbb04e5Sdanielk1977 CollSeq *sqlite3BinaryCompareCollSeq(
209bcbb04e5Sdanielk1977   Parse *pParse,
210bcbb04e5Sdanielk1977   Expr *pLeft,
211bcbb04e5Sdanielk1977   Expr *pRight
212bcbb04e5Sdanielk1977 ){
213ec41ddacSdrh   CollSeq *pColl;
214ec41ddacSdrh   assert( pLeft );
215ec41ddacSdrh   if( pLeft->flags & EP_ExpCollate ){
216ec41ddacSdrh     assert( pLeft->pColl );
217ec41ddacSdrh     pColl = pLeft->pColl;
218bcbb04e5Sdanielk1977   }else if( pRight && pRight->flags & EP_ExpCollate ){
219ec41ddacSdrh     assert( pRight->pColl );
220ec41ddacSdrh     pColl = pRight->pColl;
221ec41ddacSdrh   }else{
222ec41ddacSdrh     pColl = sqlite3ExprCollSeq(pParse, pLeft);
2230202b29eSdanielk1977     if( !pColl ){
2247cedc8d4Sdanielk1977       pColl = sqlite3ExprCollSeq(pParse, pRight);
2250202b29eSdanielk1977     }
226ec41ddacSdrh   }
2270202b29eSdanielk1977   return pColl;
2280202b29eSdanielk1977 }
2290202b29eSdanielk1977 
2300202b29eSdanielk1977 /*
231da250ea5Sdrh ** Generate the operands for a comparison operation.  Before
232da250ea5Sdrh ** generating the code for each operand, set the EP_AnyAff
233da250ea5Sdrh ** flag on the expression so that it will be able to used a
234da250ea5Sdrh ** cached column value that has previously undergone an
235da250ea5Sdrh ** affinity change.
236da250ea5Sdrh */
237da250ea5Sdrh static void codeCompareOperands(
238da250ea5Sdrh   Parse *pParse,    /* Parsing and code generating context */
239da250ea5Sdrh   Expr *pLeft,      /* The left operand */
240da250ea5Sdrh   int *pRegLeft,    /* Register where left operand is stored */
241da250ea5Sdrh   int *pFreeLeft,   /* Free this register when done */
242da250ea5Sdrh   Expr *pRight,     /* The right operand */
243da250ea5Sdrh   int *pRegRight,   /* Register where right operand is stored */
244da250ea5Sdrh   int *pFreeRight   /* Write temp register for right operand there */
245da250ea5Sdrh ){
246da250ea5Sdrh   while( pLeft->op==TK_UPLUS ) pLeft = pLeft->pLeft;
247da250ea5Sdrh   pLeft->flags |= EP_AnyAff;
248da250ea5Sdrh   *pRegLeft = sqlite3ExprCodeTemp(pParse, pLeft, pFreeLeft);
249da250ea5Sdrh   while( pRight->op==TK_UPLUS ) pRight = pRight->pLeft;
250da250ea5Sdrh   pRight->flags |= EP_AnyAff;
251da250ea5Sdrh   *pRegRight = sqlite3ExprCodeTemp(pParse, pRight, pFreeRight);
252da250ea5Sdrh }
253da250ea5Sdrh 
254da250ea5Sdrh /*
255be5c89acSdrh ** Generate code for a comparison operator.
256be5c89acSdrh */
257be5c89acSdrh static int codeCompare(
258be5c89acSdrh   Parse *pParse,    /* The parsing (and code generating) context */
259be5c89acSdrh   Expr *pLeft,      /* The left operand */
260be5c89acSdrh   Expr *pRight,     /* The right operand */
261be5c89acSdrh   int opcode,       /* The comparison opcode */
26235573356Sdrh   int in1, int in2, /* Register holding operands */
263be5c89acSdrh   int dest,         /* Jump here if true.  */
264be5c89acSdrh   int jumpIfNull    /* If true, jump if either operand is NULL */
265be5c89acSdrh ){
26635573356Sdrh   int p5;
26735573356Sdrh   int addr;
26835573356Sdrh   CollSeq *p4;
26935573356Sdrh 
27035573356Sdrh   p4 = sqlite3BinaryCompareCollSeq(pParse, pLeft, pRight);
27135573356Sdrh   p5 = binaryCompareP5(pLeft, pRight, jumpIfNull);
27235573356Sdrh   addr = sqlite3VdbeAddOp4(pParse->pVdbe, opcode, in2, dest, in1,
27335573356Sdrh                            (void*)p4, P4_COLLSEQ);
2741bd10f8aSdrh   sqlite3VdbeChangeP5(pParse->pVdbe, (u8)p5);
275e49b146fSdrh   if( (p5 & SQLITE_AFF_MASK)!=SQLITE_AFF_NONE ){
276da250ea5Sdrh     sqlite3ExprCacheAffinityChange(pParse, in1, 1);
277da250ea5Sdrh     sqlite3ExprCacheAffinityChange(pParse, in2, 1);
2782f7794c1Sdrh   }
27935573356Sdrh   return addr;
280be5c89acSdrh }
281be5c89acSdrh 
2824b5255acSdanielk1977 #if SQLITE_MAX_EXPR_DEPTH>0
2834b5255acSdanielk1977 /*
2844b5255acSdanielk1977 ** Check that argument nHeight is less than or equal to the maximum
2854b5255acSdanielk1977 ** expression depth allowed. If it is not, leave an error message in
2864b5255acSdanielk1977 ** pParse.
2874b5255acSdanielk1977 */
2887d10d5a6Sdrh int sqlite3ExprCheckHeight(Parse *pParse, int nHeight){
2894b5255acSdanielk1977   int rc = SQLITE_OK;
2904b5255acSdanielk1977   int mxHeight = pParse->db->aLimit[SQLITE_LIMIT_EXPR_DEPTH];
2914b5255acSdanielk1977   if( nHeight>mxHeight ){
2924b5255acSdanielk1977     sqlite3ErrorMsg(pParse,
2934b5255acSdanielk1977        "Expression tree is too large (maximum depth %d)", mxHeight
2944b5255acSdanielk1977     );
2954b5255acSdanielk1977     rc = SQLITE_ERROR;
2964b5255acSdanielk1977   }
2974b5255acSdanielk1977   return rc;
2984b5255acSdanielk1977 }
2994b5255acSdanielk1977 
3004b5255acSdanielk1977 /* The following three functions, heightOfExpr(), heightOfExprList()
3014b5255acSdanielk1977 ** and heightOfSelect(), are used to determine the maximum height
3024b5255acSdanielk1977 ** of any expression tree referenced by the structure passed as the
3034b5255acSdanielk1977 ** first argument.
3044b5255acSdanielk1977 **
3054b5255acSdanielk1977 ** If this maximum height is greater than the current value pointed
3064b5255acSdanielk1977 ** to by pnHeight, the second parameter, then set *pnHeight to that
3074b5255acSdanielk1977 ** value.
3084b5255acSdanielk1977 */
3094b5255acSdanielk1977 static void heightOfExpr(Expr *p, int *pnHeight){
3104b5255acSdanielk1977   if( p ){
3114b5255acSdanielk1977     if( p->nHeight>*pnHeight ){
3124b5255acSdanielk1977       *pnHeight = p->nHeight;
3134b5255acSdanielk1977     }
3144b5255acSdanielk1977   }
3154b5255acSdanielk1977 }
3164b5255acSdanielk1977 static void heightOfExprList(ExprList *p, int *pnHeight){
3174b5255acSdanielk1977   if( p ){
3184b5255acSdanielk1977     int i;
3194b5255acSdanielk1977     for(i=0; i<p->nExpr; i++){
3204b5255acSdanielk1977       heightOfExpr(p->a[i].pExpr, pnHeight);
3214b5255acSdanielk1977     }
3224b5255acSdanielk1977   }
3234b5255acSdanielk1977 }
3244b5255acSdanielk1977 static void heightOfSelect(Select *p, int *pnHeight){
3254b5255acSdanielk1977   if( p ){
3264b5255acSdanielk1977     heightOfExpr(p->pWhere, pnHeight);
3274b5255acSdanielk1977     heightOfExpr(p->pHaving, pnHeight);
3284b5255acSdanielk1977     heightOfExpr(p->pLimit, pnHeight);
3294b5255acSdanielk1977     heightOfExpr(p->pOffset, pnHeight);
3304b5255acSdanielk1977     heightOfExprList(p->pEList, pnHeight);
3314b5255acSdanielk1977     heightOfExprList(p->pGroupBy, pnHeight);
3324b5255acSdanielk1977     heightOfExprList(p->pOrderBy, pnHeight);
3334b5255acSdanielk1977     heightOfSelect(p->pPrior, pnHeight);
3344b5255acSdanielk1977   }
3354b5255acSdanielk1977 }
3364b5255acSdanielk1977 
3374b5255acSdanielk1977 /*
3384b5255acSdanielk1977 ** Set the Expr.nHeight variable in the structure passed as an
3394b5255acSdanielk1977 ** argument. An expression with no children, Expr.pList or
3404b5255acSdanielk1977 ** Expr.pSelect member has a height of 1. Any other expression
3414b5255acSdanielk1977 ** has a height equal to the maximum height of any other
3424b5255acSdanielk1977 ** referenced Expr plus one.
3434b5255acSdanielk1977 */
3444b5255acSdanielk1977 static void exprSetHeight(Expr *p){
3454b5255acSdanielk1977   int nHeight = 0;
3464b5255acSdanielk1977   heightOfExpr(p->pLeft, &nHeight);
3474b5255acSdanielk1977   heightOfExpr(p->pRight, &nHeight);
3486ab3a2ecSdanielk1977   if( ExprHasProperty(p, EP_xIsSelect) ){
3496ab3a2ecSdanielk1977     heightOfSelect(p->x.pSelect, &nHeight);
3506ab3a2ecSdanielk1977   }else{
3516ab3a2ecSdanielk1977     heightOfExprList(p->x.pList, &nHeight);
3526ab3a2ecSdanielk1977   }
3534b5255acSdanielk1977   p->nHeight = nHeight + 1;
3544b5255acSdanielk1977 }
3554b5255acSdanielk1977 
3564b5255acSdanielk1977 /*
3574b5255acSdanielk1977 ** Set the Expr.nHeight variable using the exprSetHeight() function. If
3584b5255acSdanielk1977 ** the height is greater than the maximum allowed expression depth,
3594b5255acSdanielk1977 ** leave an error in pParse.
3604b5255acSdanielk1977 */
3614b5255acSdanielk1977 void sqlite3ExprSetHeight(Parse *pParse, Expr *p){
3624b5255acSdanielk1977   exprSetHeight(p);
3637d10d5a6Sdrh   sqlite3ExprCheckHeight(pParse, p->nHeight);
3644b5255acSdanielk1977 }
3654b5255acSdanielk1977 
3664b5255acSdanielk1977 /*
3674b5255acSdanielk1977 ** Return the maximum height of any expression tree referenced
3684b5255acSdanielk1977 ** by the select statement passed as an argument.
3694b5255acSdanielk1977 */
3704b5255acSdanielk1977 int sqlite3SelectExprHeight(Select *p){
3714b5255acSdanielk1977   int nHeight = 0;
3724b5255acSdanielk1977   heightOfSelect(p, &nHeight);
3734b5255acSdanielk1977   return nHeight;
3744b5255acSdanielk1977 }
3754b5255acSdanielk1977 #else
3764b5255acSdanielk1977   #define exprSetHeight(y)
3774b5255acSdanielk1977 #endif /* SQLITE_MAX_EXPR_DEPTH>0 */
3784b5255acSdanielk1977 
379be5c89acSdrh /*
380b7916a78Sdrh ** This routine is the core allocator for Expr nodes.
381b7916a78Sdrh **
382a76b5dfcSdrh ** Construct a new expression node and return a pointer to it.  Memory
383b7916a78Sdrh ** for this node and for the pToken argument is a single allocation
384b7916a78Sdrh ** obtained from sqlite3DbMalloc().  The calling function
385a76b5dfcSdrh ** is responsible for making sure the node eventually gets freed.
386b7916a78Sdrh **
387b7916a78Sdrh ** If dequote is true, then the token (if it exists) is dequoted.
388b7916a78Sdrh ** If dequote is false, no dequoting is performance.  The deQuote
389b7916a78Sdrh ** parameter is ignored if pToken is NULL or if the token does not
390b7916a78Sdrh ** appear to be quoted.  If the quotes were of the form "..." (double-quotes)
391b7916a78Sdrh ** then the EP_DblQuoted flag is set on the expression node.
39233e619fcSdrh **
39333e619fcSdrh ** Special case:  If op==TK_INTEGER and pToken points to a string that
39433e619fcSdrh ** can be translated into a 32-bit integer, then the token is not
39533e619fcSdrh ** stored in u.zToken.  Instead, the integer values is written
39633e619fcSdrh ** into u.iValue and the EP_IntValue flag is set.  No extra storage
39733e619fcSdrh ** is allocated to hold the integer text and the dequote flag is ignored.
398a76b5dfcSdrh */
399b7916a78Sdrh Expr *sqlite3ExprAlloc(
400a1644fd8Sdanielk1977   sqlite3 *db,            /* Handle for sqlite3DbMallocZero() (may be null) */
40117435752Sdrh   int op,                 /* Expression opcode */
402b7916a78Sdrh   const Token *pToken,    /* Token argument.  Might be NULL */
403b7916a78Sdrh   int dequote             /* True to dequote */
40417435752Sdrh ){
405a76b5dfcSdrh   Expr *pNew;
40633e619fcSdrh   int nExtra = 0;
407cf697396Sshane   int iValue = 0;
408b7916a78Sdrh 
409b7916a78Sdrh   if( pToken ){
41033e619fcSdrh     if( op!=TK_INTEGER || pToken->z==0
41133e619fcSdrh           || sqlite3GetInt32(pToken->z, &iValue)==0 ){
412b7916a78Sdrh       nExtra = pToken->n+1;
41333e619fcSdrh     }
414a76b5dfcSdrh   }
415b7916a78Sdrh   pNew = sqlite3DbMallocZero(db, sizeof(Expr)+nExtra);
416b7916a78Sdrh   if( pNew ){
4171bd10f8aSdrh     pNew->op = (u8)op;
418a58fdfb1Sdanielk1977     pNew->iAgg = -1;
419a76b5dfcSdrh     if( pToken ){
42033e619fcSdrh       if( nExtra==0 ){
42133e619fcSdrh         pNew->flags |= EP_IntValue;
42233e619fcSdrh         pNew->u.iValue = iValue;
42333e619fcSdrh       }else{
424d9da78a2Sdrh         int c;
42533e619fcSdrh         pNew->u.zToken = (char*)&pNew[1];
42633e619fcSdrh         memcpy(pNew->u.zToken, pToken->z, pToken->n);
42733e619fcSdrh         pNew->u.zToken[pToken->n] = 0;
428b7916a78Sdrh         if( dequote && nExtra>=3
429d9da78a2Sdrh              && ((c = pToken->z[0])=='\'' || c=='"' || c=='[' || c=='`') ){
43033e619fcSdrh           sqlite3Dequote(pNew->u.zToken);
43124fb627aSdrh           if( c=='"' ) pNew->flags |= EP_DblQuoted;
432a34001c9Sdrh         }
433a34001c9Sdrh       }
43433e619fcSdrh     }
435b7916a78Sdrh #if SQLITE_MAX_EXPR_DEPTH>0
436b7916a78Sdrh     pNew->nHeight = 1;
437b7916a78Sdrh #endif
438a34001c9Sdrh   }
439a76b5dfcSdrh   return pNew;
440a76b5dfcSdrh }
441a76b5dfcSdrh 
442a76b5dfcSdrh /*
443b7916a78Sdrh ** Allocate a new expression node from a zero-terminated token that has
444b7916a78Sdrh ** already been dequoted.
445b7916a78Sdrh */
446b7916a78Sdrh Expr *sqlite3Expr(
447b7916a78Sdrh   sqlite3 *db,            /* Handle for sqlite3DbMallocZero() (may be null) */
448b7916a78Sdrh   int op,                 /* Expression opcode */
449b7916a78Sdrh   const char *zToken      /* Token argument.  Might be NULL */
450b7916a78Sdrh ){
451b7916a78Sdrh   Token x;
452b7916a78Sdrh   x.z = zToken;
453b7916a78Sdrh   x.n = zToken ? sqlite3Strlen30(zToken) : 0;
454b7916a78Sdrh   return sqlite3ExprAlloc(db, op, &x, 0);
455b7916a78Sdrh }
456b7916a78Sdrh 
457b7916a78Sdrh /*
458b7916a78Sdrh ** Attach subtrees pLeft and pRight to the Expr node pRoot.
459b7916a78Sdrh **
460b7916a78Sdrh ** If pRoot==NULL that means that a memory allocation error has occurred.
461b7916a78Sdrh ** In that case, delete the subtrees pLeft and pRight.
462b7916a78Sdrh */
463b7916a78Sdrh void sqlite3ExprAttachSubtrees(
464b7916a78Sdrh   sqlite3 *db,
465b7916a78Sdrh   Expr *pRoot,
466b7916a78Sdrh   Expr *pLeft,
467b7916a78Sdrh   Expr *pRight
468b7916a78Sdrh ){
469b7916a78Sdrh   if( pRoot==0 ){
470b7916a78Sdrh     assert( db->mallocFailed );
471b7916a78Sdrh     sqlite3ExprDelete(db, pLeft);
472b7916a78Sdrh     sqlite3ExprDelete(db, pRight);
473b7916a78Sdrh   }else{
474b7916a78Sdrh     if( pRight ){
475b7916a78Sdrh       pRoot->pRight = pRight;
476b7916a78Sdrh       if( pRight->flags & EP_ExpCollate ){
477b7916a78Sdrh         pRoot->flags |= EP_ExpCollate;
478b7916a78Sdrh         pRoot->pColl = pRight->pColl;
479b7916a78Sdrh       }
480b7916a78Sdrh     }
481b7916a78Sdrh     if( pLeft ){
482b7916a78Sdrh       pRoot->pLeft = pLeft;
483b7916a78Sdrh       if( pLeft->flags & EP_ExpCollate ){
484b7916a78Sdrh         pRoot->flags |= EP_ExpCollate;
485b7916a78Sdrh         pRoot->pColl = pLeft->pColl;
486b7916a78Sdrh       }
487b7916a78Sdrh     }
488b7916a78Sdrh     exprSetHeight(pRoot);
489b7916a78Sdrh   }
490b7916a78Sdrh }
491b7916a78Sdrh 
492b7916a78Sdrh /*
493bf664469Sdrh ** Allocate a Expr node which joins as many as two subtrees.
494b7916a78Sdrh **
495bf664469Sdrh ** One or both of the subtrees can be NULL.  Return a pointer to the new
496bf664469Sdrh ** Expr node.  Or, if an OOM error occurs, set pParse->db->mallocFailed,
497bf664469Sdrh ** free the subtrees and return NULL.
498206f3d96Sdrh */
49917435752Sdrh Expr *sqlite3PExpr(
50017435752Sdrh   Parse *pParse,          /* Parsing context */
50117435752Sdrh   int op,                 /* Expression opcode */
50217435752Sdrh   Expr *pLeft,            /* Left operand */
50317435752Sdrh   Expr *pRight,           /* Right operand */
50417435752Sdrh   const Token *pToken     /* Argument token */
50517435752Sdrh ){
506b7916a78Sdrh   Expr *p = sqlite3ExprAlloc(pParse->db, op, pToken, 1);
507b7916a78Sdrh   sqlite3ExprAttachSubtrees(pParse->db, p, pLeft, pRight);
5084e0cff60Sdrh   return p;
5094e0cff60Sdrh }
5104e0cff60Sdrh 
5114e0cff60Sdrh /*
51291bb0eedSdrh ** Join two expressions using an AND operator.  If either expression is
51391bb0eedSdrh ** NULL, then just return the other expression.
51491bb0eedSdrh */
5151e536953Sdanielk1977 Expr *sqlite3ExprAnd(sqlite3 *db, Expr *pLeft, Expr *pRight){
51691bb0eedSdrh   if( pLeft==0 ){
51791bb0eedSdrh     return pRight;
51891bb0eedSdrh   }else if( pRight==0 ){
51991bb0eedSdrh     return pLeft;
52091bb0eedSdrh   }else{
521b7916a78Sdrh     Expr *pNew = sqlite3ExprAlloc(db, TK_AND, 0, 0);
522b7916a78Sdrh     sqlite3ExprAttachSubtrees(db, pNew, pLeft, pRight);
523b7916a78Sdrh     return pNew;
524a76b5dfcSdrh   }
525a76b5dfcSdrh }
526a76b5dfcSdrh 
527a76b5dfcSdrh /*
528a76b5dfcSdrh ** Construct a new expression node for a function with multiple
529a76b5dfcSdrh ** arguments.
530a76b5dfcSdrh */
53117435752Sdrh Expr *sqlite3ExprFunction(Parse *pParse, ExprList *pList, Token *pToken){
532a76b5dfcSdrh   Expr *pNew;
533633e6d57Sdrh   sqlite3 *db = pParse->db;
5344b202ae2Sdanielk1977   assert( pToken );
535b7916a78Sdrh   pNew = sqlite3ExprAlloc(db, TK_FUNCTION, pToken, 1);
536a76b5dfcSdrh   if( pNew==0 ){
537d9da78a2Sdrh     sqlite3ExprListDelete(db, pList); /* Avoid memory leak when malloc fails */
538a76b5dfcSdrh     return 0;
539a76b5dfcSdrh   }
5406ab3a2ecSdanielk1977   pNew->x.pList = pList;
5416ab3a2ecSdanielk1977   assert( !ExprHasProperty(pNew, EP_xIsSelect) );
5424b5255acSdanielk1977   sqlite3ExprSetHeight(pParse, pNew);
543a76b5dfcSdrh   return pNew;
544a76b5dfcSdrh }
545a76b5dfcSdrh 
546a76b5dfcSdrh /*
547fa6bc000Sdrh ** Assign a variable number to an expression that encodes a wildcard
548fa6bc000Sdrh ** in the original SQL statement.
549fa6bc000Sdrh **
550fa6bc000Sdrh ** Wildcards consisting of a single "?" are assigned the next sequential
551fa6bc000Sdrh ** variable number.
552fa6bc000Sdrh **
553fa6bc000Sdrh ** Wildcards of the form "?nnn" are assigned the number "nnn".  We make
554fa6bc000Sdrh ** sure "nnn" is not too be to avoid a denial of service attack when
555fa6bc000Sdrh ** the SQL statement comes from an external source.
556fa6bc000Sdrh **
55751f49f17Sdrh ** Wildcards of the form ":aaa", "@aaa", or "$aaa" are assigned the same number
558fa6bc000Sdrh ** as the previous instance of the same wildcard.  Or if this is the first
559fa6bc000Sdrh ** instance of the wildcard, the next sequenial variable number is
560fa6bc000Sdrh ** assigned.
561fa6bc000Sdrh */
562fa6bc000Sdrh void sqlite3ExprAssignVarNumber(Parse *pParse, Expr *pExpr){
56317435752Sdrh   sqlite3 *db = pParse->db;
564b7916a78Sdrh   const char *z;
56517435752Sdrh 
566fa6bc000Sdrh   if( pExpr==0 ) return;
56733e619fcSdrh   assert( !ExprHasAnyProperty(pExpr, EP_IntValue|EP_Reduced|EP_TokenOnly) );
56833e619fcSdrh   z = pExpr->u.zToken;
569b7916a78Sdrh   assert( z!=0 );
570b7916a78Sdrh   assert( z[0]!=0 );
571b7916a78Sdrh   if( z[1]==0 ){
572fa6bc000Sdrh     /* Wildcard of the form "?".  Assign the next variable number */
573b7916a78Sdrh     assert( z[0]=='?' );
5748677d308Sdrh     pExpr->iColumn = (ynVar)(++pParse->nVar);
575b7916a78Sdrh   }else if( z[0]=='?' ){
576fa6bc000Sdrh     /* Wildcard of the form "?nnn".  Convert "nnn" to an integer and
577fa6bc000Sdrh     ** use it as the variable number */
578f639c40fSshane     int i = atoi((char*)&z[1]);
5798677d308Sdrh     pExpr->iColumn = (ynVar)i;
580c5499befSdrh     testcase( i==0 );
581c5499befSdrh     testcase( i==1 );
582c5499befSdrh     testcase( i==db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER]-1 );
583c5499befSdrh     testcase( i==db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER] );
584bb4957f8Sdrh     if( i<1 || i>db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER] ){
585fa6bc000Sdrh       sqlite3ErrorMsg(pParse, "variable number must be between ?1 and ?%d",
586bb4957f8Sdrh           db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER]);
587fa6bc000Sdrh     }
588fa6bc000Sdrh     if( i>pParse->nVar ){
589fa6bc000Sdrh       pParse->nVar = i;
590fa6bc000Sdrh     }
591fa6bc000Sdrh   }else{
59251f49f17Sdrh     /* Wildcards like ":aaa", "$aaa" or "@aaa".  Reuse the same variable
593fa6bc000Sdrh     ** number as the prior appearance of the same name, or if the name
594fa6bc000Sdrh     ** has never appeared before, reuse the same variable number
595fa6bc000Sdrh     */
5961bd10f8aSdrh     int i;
5971bd10f8aSdrh     u32 n;
598b7916a78Sdrh     n = sqlite3Strlen30(z);
599fa6bc000Sdrh     for(i=0; i<pParse->nVarExpr; i++){
60051f49f17Sdrh       Expr *pE = pParse->apVarExpr[i];
60151f49f17Sdrh       assert( pE!=0 );
60233e619fcSdrh       if( memcmp(pE->u.zToken, z, n)==0 && pE->u.zToken[n]==0 ){
603937d0deaSdan         pExpr->iColumn = pE->iColumn;
604fa6bc000Sdrh         break;
605fa6bc000Sdrh       }
606fa6bc000Sdrh     }
607fa6bc000Sdrh     if( i>=pParse->nVarExpr ){
6088677d308Sdrh       pExpr->iColumn = (ynVar)(++pParse->nVar);
609fa6bc000Sdrh       if( pParse->nVarExpr>=pParse->nVarExprAlloc-1 ){
610fa6bc000Sdrh         pParse->nVarExprAlloc += pParse->nVarExprAlloc + 10;
61117435752Sdrh         pParse->apVarExpr =
61217435752Sdrh             sqlite3DbReallocOrFree(
61317435752Sdrh               db,
61417435752Sdrh               pParse->apVarExpr,
61517435752Sdrh               pParse->nVarExprAlloc*sizeof(pParse->apVarExpr[0])
61617435752Sdrh             );
617fa6bc000Sdrh       }
61817435752Sdrh       if( !db->mallocFailed ){
619fa6bc000Sdrh         assert( pParse->apVarExpr!=0 );
620fa6bc000Sdrh         pParse->apVarExpr[pParse->nVarExpr++] = pExpr;
621fa6bc000Sdrh       }
622fa6bc000Sdrh     }
623fa6bc000Sdrh   }
624bb4957f8Sdrh   if( !pParse->nErr && pParse->nVar>db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER] ){
625832b2664Sdanielk1977     sqlite3ErrorMsg(pParse, "too many SQL variables");
626832b2664Sdanielk1977   }
627fa6bc000Sdrh }
628fa6bc000Sdrh 
629fa6bc000Sdrh /*
630*f6963f99Sdan ** Recursively delete an expression tree.
631a2e00042Sdrh */
632*f6963f99Sdan void sqlite3ExprDelete(sqlite3 *db, Expr *p){
633*f6963f99Sdan   if( p==0 ) return;
634b7916a78Sdrh   if( !ExprHasAnyProperty(p, EP_TokenOnly) ){
635633e6d57Sdrh     sqlite3ExprDelete(db, p->pLeft);
636633e6d57Sdrh     sqlite3ExprDelete(db, p->pRight);
63733e619fcSdrh     if( !ExprHasProperty(p, EP_Reduced) && (p->flags2 & EP2_MallocedToken)!=0 ){
63833e619fcSdrh       sqlite3DbFree(db, p->u.zToken);
6396ab3a2ecSdanielk1977     }
6406ab3a2ecSdanielk1977     if( ExprHasProperty(p, EP_xIsSelect) ){
6416ab3a2ecSdanielk1977       sqlite3SelectDelete(db, p->x.pSelect);
6426ab3a2ecSdanielk1977     }else{
6436ab3a2ecSdanielk1977       sqlite3ExprListDelete(db, p->x.pList);
6446ab3a2ecSdanielk1977     }
6456ab3a2ecSdanielk1977   }
64633e619fcSdrh   if( !ExprHasProperty(p, EP_Static) ){
647633e6d57Sdrh     sqlite3DbFree(db, p);
648a2e00042Sdrh   }
64933e619fcSdrh }
650a2e00042Sdrh 
651d2687b77Sdrh /*
6526ab3a2ecSdanielk1977 ** Return the number of bytes allocated for the expression structure
6536ab3a2ecSdanielk1977 ** passed as the first argument. This is always one of EXPR_FULLSIZE,
6546ab3a2ecSdanielk1977 ** EXPR_REDUCEDSIZE or EXPR_TOKENONLYSIZE.
6556ab3a2ecSdanielk1977 */
6566ab3a2ecSdanielk1977 static int exprStructSize(Expr *p){
6576ab3a2ecSdanielk1977   if( ExprHasProperty(p, EP_TokenOnly) ) return EXPR_TOKENONLYSIZE;
6586ab3a2ecSdanielk1977   if( ExprHasProperty(p, EP_Reduced) ) return EXPR_REDUCEDSIZE;
6596ab3a2ecSdanielk1977   return EXPR_FULLSIZE;
6606ab3a2ecSdanielk1977 }
6616ab3a2ecSdanielk1977 
6626ab3a2ecSdanielk1977 /*
66333e619fcSdrh ** The dupedExpr*Size() routines each return the number of bytes required
66433e619fcSdrh ** to store a copy of an expression or expression tree.  They differ in
66533e619fcSdrh ** how much of the tree is measured.
66633e619fcSdrh **
66733e619fcSdrh **     dupedExprStructSize()     Size of only the Expr structure
66833e619fcSdrh **     dupedExprNodeSize()       Size of Expr + space for token
66933e619fcSdrh **     dupedExprSize()           Expr + token + subtree components
67033e619fcSdrh **
67133e619fcSdrh ***************************************************************************
67233e619fcSdrh **
67333e619fcSdrh ** The dupedExprStructSize() function returns two values OR-ed together:
67433e619fcSdrh ** (1) the space required for a copy of the Expr structure only and
67533e619fcSdrh ** (2) the EP_xxx flags that indicate what the structure size should be.
67633e619fcSdrh ** The return values is always one of:
67733e619fcSdrh **
67833e619fcSdrh **      EXPR_FULLSIZE
67933e619fcSdrh **      EXPR_REDUCEDSIZE   | EP_Reduced
68033e619fcSdrh **      EXPR_TOKENONLYSIZE | EP_TokenOnly
68133e619fcSdrh **
68233e619fcSdrh ** The size of the structure can be found by masking the return value
68333e619fcSdrh ** of this routine with 0xfff.  The flags can be found by masking the
68433e619fcSdrh ** return value with EP_Reduced|EP_TokenOnly.
68533e619fcSdrh **
68633e619fcSdrh ** Note that with flags==EXPRDUP_REDUCE, this routines works on full-size
68733e619fcSdrh ** (unreduced) Expr objects as they or originally constructed by the parser.
68833e619fcSdrh ** During expression analysis, extra information is computed and moved into
68933e619fcSdrh ** later parts of teh Expr object and that extra information might get chopped
69033e619fcSdrh ** off if the expression is reduced.  Note also that it does not work to
69133e619fcSdrh ** make a EXPRDUP_REDUCE copy of a reduced expression.  It is only legal
69233e619fcSdrh ** to reduce a pristine expression tree from the parser.  The implementation
69333e619fcSdrh ** of dupedExprStructSize() contain multiple assert() statements that attempt
69433e619fcSdrh ** to enforce this constraint.
6956ab3a2ecSdanielk1977 */
6966ab3a2ecSdanielk1977 static int dupedExprStructSize(Expr *p, int flags){
6976ab3a2ecSdanielk1977   int nSize;
69833e619fcSdrh   assert( flags==EXPRDUP_REDUCE || flags==0 ); /* Only one flag value allowed */
6996ab3a2ecSdanielk1977   if( 0==(flags&EXPRDUP_REDUCE) ){
7006ab3a2ecSdanielk1977     nSize = EXPR_FULLSIZE;
7016ab3a2ecSdanielk1977   }else{
70233e619fcSdrh     assert( !ExprHasAnyProperty(p, EP_TokenOnly|EP_Reduced) );
70333e619fcSdrh     assert( !ExprHasProperty(p, EP_FromJoin) );
70433e619fcSdrh     assert( (p->flags2 & EP2_MallocedToken)==0 );
70533e619fcSdrh     assert( (p->flags2 & EP2_Irreducible)==0 );
70633e619fcSdrh     if( p->pLeft || p->pRight || p->pColl || p->x.pList ){
70733e619fcSdrh       nSize = EXPR_REDUCEDSIZE | EP_Reduced;
70833e619fcSdrh     }else{
70933e619fcSdrh       nSize = EXPR_TOKENONLYSIZE | EP_TokenOnly;
71033e619fcSdrh     }
7116ab3a2ecSdanielk1977   }
7126ab3a2ecSdanielk1977   return nSize;
7136ab3a2ecSdanielk1977 }
7146ab3a2ecSdanielk1977 
7156ab3a2ecSdanielk1977 /*
71633e619fcSdrh ** This function returns the space in bytes required to store the copy
71733e619fcSdrh ** of the Expr structure and a copy of the Expr.u.zToken string (if that
71833e619fcSdrh ** string is defined.)
7196ab3a2ecSdanielk1977 */
7206ab3a2ecSdanielk1977 static int dupedExprNodeSize(Expr *p, int flags){
72133e619fcSdrh   int nByte = dupedExprStructSize(p, flags) & 0xfff;
72233e619fcSdrh   if( !ExprHasProperty(p, EP_IntValue) && p->u.zToken ){
72333e619fcSdrh     nByte += sqlite3Strlen30(p->u.zToken)+1;
7246ab3a2ecSdanielk1977   }
725bc73971dSdanielk1977   return ROUND8(nByte);
7266ab3a2ecSdanielk1977 }
7276ab3a2ecSdanielk1977 
7286ab3a2ecSdanielk1977 /*
7296ab3a2ecSdanielk1977 ** Return the number of bytes required to create a duplicate of the
7306ab3a2ecSdanielk1977 ** expression passed as the first argument. The second argument is a
7316ab3a2ecSdanielk1977 ** mask containing EXPRDUP_XXX flags.
7326ab3a2ecSdanielk1977 **
7336ab3a2ecSdanielk1977 ** The value returned includes space to create a copy of the Expr struct
73433e619fcSdrh ** itself and the buffer referred to by Expr.u.zToken, if any.
7356ab3a2ecSdanielk1977 **
7366ab3a2ecSdanielk1977 ** If the EXPRDUP_REDUCE flag is set, then the return value includes
7376ab3a2ecSdanielk1977 ** space to duplicate all Expr nodes in the tree formed by Expr.pLeft
7386ab3a2ecSdanielk1977 ** and Expr.pRight variables (but not for any structures pointed to or
7396ab3a2ecSdanielk1977 ** descended from the Expr.x.pList or Expr.x.pSelect variables).
7406ab3a2ecSdanielk1977 */
7416ab3a2ecSdanielk1977 static int dupedExprSize(Expr *p, int flags){
7426ab3a2ecSdanielk1977   int nByte = 0;
7436ab3a2ecSdanielk1977   if( p ){
7446ab3a2ecSdanielk1977     nByte = dupedExprNodeSize(p, flags);
7456ab3a2ecSdanielk1977     if( flags&EXPRDUP_REDUCE ){
746b7916a78Sdrh       nByte += dupedExprSize(p->pLeft, flags) + dupedExprSize(p->pRight, flags);
7476ab3a2ecSdanielk1977     }
7486ab3a2ecSdanielk1977   }
7496ab3a2ecSdanielk1977   return nByte;
7506ab3a2ecSdanielk1977 }
7516ab3a2ecSdanielk1977 
7526ab3a2ecSdanielk1977 /*
7536ab3a2ecSdanielk1977 ** This function is similar to sqlite3ExprDup(), except that if pzBuffer
7546ab3a2ecSdanielk1977 ** is not NULL then *pzBuffer is assumed to point to a buffer large enough
75533e619fcSdrh ** to store the copy of expression p, the copies of p->u.zToken
7566ab3a2ecSdanielk1977 ** (if applicable), and the copies of the p->pLeft and p->pRight expressions,
7576ab3a2ecSdanielk1977 ** if any. Before returning, *pzBuffer is set to the first byte passed the
7586ab3a2ecSdanielk1977 ** portion of the buffer copied into by this function.
7596ab3a2ecSdanielk1977 */
7606ab3a2ecSdanielk1977 static Expr *exprDup(sqlite3 *db, Expr *p, int flags, u8 **pzBuffer){
7616ab3a2ecSdanielk1977   Expr *pNew = 0;                      /* Value to return */
7626ab3a2ecSdanielk1977   if( p ){
7636ab3a2ecSdanielk1977     const int isReduced = (flags&EXPRDUP_REDUCE);
7646ab3a2ecSdanielk1977     u8 *zAlloc;
76533e619fcSdrh     u32 staticFlag = 0;
7666ab3a2ecSdanielk1977 
7676ab3a2ecSdanielk1977     assert( pzBuffer==0 || isReduced );
7686ab3a2ecSdanielk1977 
7696ab3a2ecSdanielk1977     /* Figure out where to write the new Expr structure. */
7706ab3a2ecSdanielk1977     if( pzBuffer ){
7716ab3a2ecSdanielk1977       zAlloc = *pzBuffer;
77233e619fcSdrh       staticFlag = EP_Static;
7736ab3a2ecSdanielk1977     }else{
7746ab3a2ecSdanielk1977       zAlloc = sqlite3DbMallocRaw(db, dupedExprSize(p, flags));
7756ab3a2ecSdanielk1977     }
7766ab3a2ecSdanielk1977     pNew = (Expr *)zAlloc;
7776ab3a2ecSdanielk1977 
7786ab3a2ecSdanielk1977     if( pNew ){
7796ab3a2ecSdanielk1977       /* Set nNewSize to the size allocated for the structure pointed to
7806ab3a2ecSdanielk1977       ** by pNew. This is either EXPR_FULLSIZE, EXPR_REDUCEDSIZE or
7816ab3a2ecSdanielk1977       ** EXPR_TOKENONLYSIZE. nToken is set to the number of bytes consumed
78233e619fcSdrh       ** by the copy of the p->u.zToken string (if any).
7836ab3a2ecSdanielk1977       */
78433e619fcSdrh       const unsigned nStructSize = dupedExprStructSize(p, flags);
78533e619fcSdrh       const int nNewSize = nStructSize & 0xfff;
78633e619fcSdrh       int nToken;
78733e619fcSdrh       if( !ExprHasProperty(p, EP_IntValue) && p->u.zToken ){
78833e619fcSdrh         nToken = sqlite3Strlen30(p->u.zToken) + 1;
78933e619fcSdrh       }else{
79033e619fcSdrh         nToken = 0;
79133e619fcSdrh       }
7926ab3a2ecSdanielk1977       if( isReduced ){
7936ab3a2ecSdanielk1977         assert( ExprHasProperty(p, EP_Reduced)==0 );
7946ab3a2ecSdanielk1977         memcpy(zAlloc, p, nNewSize);
7956ab3a2ecSdanielk1977       }else{
7966ab3a2ecSdanielk1977         int nSize = exprStructSize(p);
7976ab3a2ecSdanielk1977         memcpy(zAlloc, p, nSize);
7986ab3a2ecSdanielk1977         memset(&zAlloc[nSize], 0, EXPR_FULLSIZE-nSize);
7996ab3a2ecSdanielk1977       }
8006ab3a2ecSdanielk1977 
80133e619fcSdrh       /* Set the EP_Reduced, EP_TokenOnly, and EP_Static flags appropriately. */
80233e619fcSdrh       pNew->flags &= ~(EP_Reduced|EP_TokenOnly|EP_Static);
80333e619fcSdrh       pNew->flags |= nStructSize & (EP_Reduced|EP_TokenOnly);
80433e619fcSdrh       pNew->flags |= staticFlag;
8056ab3a2ecSdanielk1977 
80633e619fcSdrh       /* Copy the p->u.zToken string, if any. */
8076ab3a2ecSdanielk1977       if( nToken ){
80833e619fcSdrh         char *zToken = pNew->u.zToken = (char*)&zAlloc[nNewSize];
80933e619fcSdrh         memcpy(zToken, p->u.zToken, nToken);
8106ab3a2ecSdanielk1977       }
8116ab3a2ecSdanielk1977 
8126ab3a2ecSdanielk1977       if( 0==((p->flags|pNew->flags) & EP_TokenOnly) ){
8136ab3a2ecSdanielk1977         /* Fill in the pNew->x.pSelect or pNew->x.pList member. */
8146ab3a2ecSdanielk1977         if( ExprHasProperty(p, EP_xIsSelect) ){
8156ab3a2ecSdanielk1977           pNew->x.pSelect = sqlite3SelectDup(db, p->x.pSelect, isReduced);
8166ab3a2ecSdanielk1977         }else{
8176ab3a2ecSdanielk1977           pNew->x.pList = sqlite3ExprListDup(db, p->x.pList, isReduced);
8186ab3a2ecSdanielk1977         }
8196ab3a2ecSdanielk1977       }
8206ab3a2ecSdanielk1977 
8216ab3a2ecSdanielk1977       /* Fill in pNew->pLeft and pNew->pRight. */
822b7916a78Sdrh       if( ExprHasAnyProperty(pNew, EP_Reduced|EP_TokenOnly) ){
8236ab3a2ecSdanielk1977         zAlloc += dupedExprNodeSize(p, flags);
8246ab3a2ecSdanielk1977         if( ExprHasProperty(pNew, EP_Reduced) ){
8256ab3a2ecSdanielk1977           pNew->pLeft = exprDup(db, p->pLeft, EXPRDUP_REDUCE, &zAlloc);
8266ab3a2ecSdanielk1977           pNew->pRight = exprDup(db, p->pRight, EXPRDUP_REDUCE, &zAlloc);
8276ab3a2ecSdanielk1977         }
8286ab3a2ecSdanielk1977         if( pzBuffer ){
8296ab3a2ecSdanielk1977           *pzBuffer = zAlloc;
8306ab3a2ecSdanielk1977         }
831b7916a78Sdrh       }else{
832b7916a78Sdrh         pNew->flags2 = 0;
833b7916a78Sdrh         if( !ExprHasAnyProperty(p, EP_TokenOnly) ){
8346ab3a2ecSdanielk1977           pNew->pLeft = sqlite3ExprDup(db, p->pLeft, 0);
8356ab3a2ecSdanielk1977           pNew->pRight = sqlite3ExprDup(db, p->pRight, 0);
8366ab3a2ecSdanielk1977         }
8376ab3a2ecSdanielk1977       }
838b7916a78Sdrh 
839b7916a78Sdrh     }
8406ab3a2ecSdanielk1977   }
8416ab3a2ecSdanielk1977   return pNew;
8426ab3a2ecSdanielk1977 }
8436ab3a2ecSdanielk1977 
8446ab3a2ecSdanielk1977 /*
845ff78bd2fSdrh ** The following group of routines make deep copies of expressions,
846ff78bd2fSdrh ** expression lists, ID lists, and select statements.  The copies can
847ff78bd2fSdrh ** be deleted (by being passed to their respective ...Delete() routines)
848ff78bd2fSdrh ** without effecting the originals.
849ff78bd2fSdrh **
8504adee20fSdanielk1977 ** The expression list, ID, and source lists return by sqlite3ExprListDup(),
8514adee20fSdanielk1977 ** sqlite3IdListDup(), and sqlite3SrcListDup() can not be further expanded
852ad3cab52Sdrh ** by subsequent calls to sqlite*ListAppend() routines.
853ff78bd2fSdrh **
854ad3cab52Sdrh ** Any tables that the SrcList might point to are not duplicated.
8556ab3a2ecSdanielk1977 **
856b7916a78Sdrh ** The flags parameter contains a combination of the EXPRDUP_XXX flags.
8576ab3a2ecSdanielk1977 ** If the EXPRDUP_REDUCE flag is set, then the structure returned is a
8586ab3a2ecSdanielk1977 ** truncated version of the usual Expr structure that will be stored as
8596ab3a2ecSdanielk1977 ** part of the in-memory representation of the database schema.
860ff78bd2fSdrh */
8616ab3a2ecSdanielk1977 Expr *sqlite3ExprDup(sqlite3 *db, Expr *p, int flags){
8626ab3a2ecSdanielk1977   return exprDup(db, p, flags, 0);
863ff78bd2fSdrh }
8646ab3a2ecSdanielk1977 ExprList *sqlite3ExprListDup(sqlite3 *db, ExprList *p, int flags){
865ff78bd2fSdrh   ExprList *pNew;
866145716b3Sdrh   struct ExprList_item *pItem, *pOldItem;
867ff78bd2fSdrh   int i;
868ff78bd2fSdrh   if( p==0 ) return 0;
86917435752Sdrh   pNew = sqlite3DbMallocRaw(db, sizeof(*pNew) );
870ff78bd2fSdrh   if( pNew==0 ) return 0;
87131dad9daSdanielk1977   pNew->iECursor = 0;
8724305d103Sdrh   pNew->nExpr = pNew->nAlloc = p->nExpr;
87317435752Sdrh   pNew->a = pItem = sqlite3DbMallocRaw(db,  p->nExpr*sizeof(p->a[0]) );
874e0048400Sdanielk1977   if( pItem==0 ){
875633e6d57Sdrh     sqlite3DbFree(db, pNew);
876e0048400Sdanielk1977     return 0;
877e0048400Sdanielk1977   }
878145716b3Sdrh   pOldItem = p->a;
879145716b3Sdrh   for(i=0; i<p->nExpr; i++, pItem++, pOldItem++){
8806ab3a2ecSdanielk1977     Expr *pOldExpr = pOldItem->pExpr;
881b5526ea6Sdrh     pItem->pExpr = sqlite3ExprDup(db, pOldExpr, flags);
88217435752Sdrh     pItem->zName = sqlite3DbStrDup(db, pOldItem->zName);
883b7916a78Sdrh     pItem->zSpan = sqlite3DbStrDup(db, pOldItem->zSpan);
884145716b3Sdrh     pItem->sortOrder = pOldItem->sortOrder;
8853e7bc9caSdrh     pItem->done = 0;
8867d10d5a6Sdrh     pItem->iCol = pOldItem->iCol;
8878b213899Sdrh     pItem->iAlias = pOldItem->iAlias;
888ff78bd2fSdrh   }
889ff78bd2fSdrh   return pNew;
890ff78bd2fSdrh }
89193758c8dSdanielk1977 
89293758c8dSdanielk1977 /*
89393758c8dSdanielk1977 ** If cursors, triggers, views and subqueries are all omitted from
89493758c8dSdanielk1977 ** the build, then none of the following routines, except for
89593758c8dSdanielk1977 ** sqlite3SelectDup(), can be called. sqlite3SelectDup() is sometimes
89693758c8dSdanielk1977 ** called with a NULL argument.
89793758c8dSdanielk1977 */
8986a67fe8eSdanielk1977 #if !defined(SQLITE_OMIT_VIEW) || !defined(SQLITE_OMIT_TRIGGER) \
8996a67fe8eSdanielk1977  || !defined(SQLITE_OMIT_SUBQUERY)
9006ab3a2ecSdanielk1977 SrcList *sqlite3SrcListDup(sqlite3 *db, SrcList *p, int flags){
901ad3cab52Sdrh   SrcList *pNew;
902ad3cab52Sdrh   int i;
903113088ecSdrh   int nByte;
904ad3cab52Sdrh   if( p==0 ) return 0;
905113088ecSdrh   nByte = sizeof(*p) + (p->nSrc>0 ? sizeof(p->a[0]) * (p->nSrc-1) : 0);
90617435752Sdrh   pNew = sqlite3DbMallocRaw(db, nByte );
907ad3cab52Sdrh   if( pNew==0 ) return 0;
9084305d103Sdrh   pNew->nSrc = pNew->nAlloc = p->nSrc;
909ad3cab52Sdrh   for(i=0; i<p->nSrc; i++){
9104efc4754Sdrh     struct SrcList_item *pNewItem = &pNew->a[i];
9114efc4754Sdrh     struct SrcList_item *pOldItem = &p->a[i];
912ed8a3bb1Sdrh     Table *pTab;
91317435752Sdrh     pNewItem->zDatabase = sqlite3DbStrDup(db, pOldItem->zDatabase);
91417435752Sdrh     pNewItem->zName = sqlite3DbStrDup(db, pOldItem->zName);
91517435752Sdrh     pNewItem->zAlias = sqlite3DbStrDup(db, pOldItem->zAlias);
9164efc4754Sdrh     pNewItem->jointype = pOldItem->jointype;
9174efc4754Sdrh     pNewItem->iCursor = pOldItem->iCursor;
9181787ccabSdanielk1977     pNewItem->isPopulated = pOldItem->isPopulated;
91985574e31Sdanielk1977     pNewItem->zIndex = sqlite3DbStrDup(db, pOldItem->zIndex);
92085574e31Sdanielk1977     pNewItem->notIndexed = pOldItem->notIndexed;
92185574e31Sdanielk1977     pNewItem->pIndex = pOldItem->pIndex;
922ed8a3bb1Sdrh     pTab = pNewItem->pTab = pOldItem->pTab;
923ed8a3bb1Sdrh     if( pTab ){
924ed8a3bb1Sdrh       pTab->nRef++;
925a1cb183dSdanielk1977     }
9266ab3a2ecSdanielk1977     pNewItem->pSelect = sqlite3SelectDup(db, pOldItem->pSelect, flags);
9276ab3a2ecSdanielk1977     pNewItem->pOn = sqlite3ExprDup(db, pOldItem->pOn, flags);
92817435752Sdrh     pNewItem->pUsing = sqlite3IdListDup(db, pOldItem->pUsing);
9296c18b6e0Sdanielk1977     pNewItem->colUsed = pOldItem->colUsed;
930ad3cab52Sdrh   }
931ad3cab52Sdrh   return pNew;
932ad3cab52Sdrh }
93317435752Sdrh IdList *sqlite3IdListDup(sqlite3 *db, IdList *p){
934ff78bd2fSdrh   IdList *pNew;
935ff78bd2fSdrh   int i;
936ff78bd2fSdrh   if( p==0 ) return 0;
93717435752Sdrh   pNew = sqlite3DbMallocRaw(db, sizeof(*pNew) );
938ff78bd2fSdrh   if( pNew==0 ) return 0;
9394305d103Sdrh   pNew->nId = pNew->nAlloc = p->nId;
94017435752Sdrh   pNew->a = sqlite3DbMallocRaw(db, p->nId*sizeof(p->a[0]) );
941d5d56523Sdanielk1977   if( pNew->a==0 ){
942633e6d57Sdrh     sqlite3DbFree(db, pNew);
943d5d56523Sdanielk1977     return 0;
944d5d56523Sdanielk1977   }
945ff78bd2fSdrh   for(i=0; i<p->nId; i++){
9464efc4754Sdrh     struct IdList_item *pNewItem = &pNew->a[i];
9474efc4754Sdrh     struct IdList_item *pOldItem = &p->a[i];
94817435752Sdrh     pNewItem->zName = sqlite3DbStrDup(db, pOldItem->zName);
9494efc4754Sdrh     pNewItem->idx = pOldItem->idx;
950ff78bd2fSdrh   }
951ff78bd2fSdrh   return pNew;
952ff78bd2fSdrh }
9536ab3a2ecSdanielk1977 Select *sqlite3SelectDup(sqlite3 *db, Select *p, int flags){
954ff78bd2fSdrh   Select *pNew;
955ff78bd2fSdrh   if( p==0 ) return 0;
95617435752Sdrh   pNew = sqlite3DbMallocRaw(db, sizeof(*p) );
957ff78bd2fSdrh   if( pNew==0 ) return 0;
958b7916a78Sdrh   pNew->pEList = sqlite3ExprListDup(db, p->pEList, flags);
9596ab3a2ecSdanielk1977   pNew->pSrc = sqlite3SrcListDup(db, p->pSrc, flags);
9606ab3a2ecSdanielk1977   pNew->pWhere = sqlite3ExprDup(db, p->pWhere, flags);
9616ab3a2ecSdanielk1977   pNew->pGroupBy = sqlite3ExprListDup(db, p->pGroupBy, flags);
9626ab3a2ecSdanielk1977   pNew->pHaving = sqlite3ExprDup(db, p->pHaving, flags);
9636ab3a2ecSdanielk1977   pNew->pOrderBy = sqlite3ExprListDup(db, p->pOrderBy, flags);
964ff78bd2fSdrh   pNew->op = p->op;
9656ab3a2ecSdanielk1977   pNew->pPrior = sqlite3SelectDup(db, p->pPrior, flags);
9666ab3a2ecSdanielk1977   pNew->pLimit = sqlite3ExprDup(db, p->pLimit, flags);
9676ab3a2ecSdanielk1977   pNew->pOffset = sqlite3ExprDup(db, p->pOffset, flags);
96892b01d53Sdrh   pNew->iLimit = 0;
96992b01d53Sdrh   pNew->iOffset = 0;
9707d10d5a6Sdrh   pNew->selFlags = p->selFlags & ~SF_UsesEphemeral;
9710342b1f5Sdrh   pNew->pRightmost = 0;
972b9bb7c18Sdrh   pNew->addrOpenEphm[0] = -1;
973b9bb7c18Sdrh   pNew->addrOpenEphm[1] = -1;
974b9bb7c18Sdrh   pNew->addrOpenEphm[2] = -1;
975ff78bd2fSdrh   return pNew;
976ff78bd2fSdrh }
97793758c8dSdanielk1977 #else
9786ab3a2ecSdanielk1977 Select *sqlite3SelectDup(sqlite3 *db, Select *p, int flags){
97993758c8dSdanielk1977   assert( p==0 );
98093758c8dSdanielk1977   return 0;
98193758c8dSdanielk1977 }
98293758c8dSdanielk1977 #endif
983ff78bd2fSdrh 
984ff78bd2fSdrh 
985ff78bd2fSdrh /*
986a76b5dfcSdrh ** Add a new element to the end of an expression list.  If pList is
987a76b5dfcSdrh ** initially NULL, then create a new expression list.
988b7916a78Sdrh **
989b7916a78Sdrh ** If a memory allocation error occurs, the entire list is freed and
990b7916a78Sdrh ** NULL is returned.  If non-NULL is returned, then it is guaranteed
991b7916a78Sdrh ** that the new entry was successfully appended.
992a76b5dfcSdrh */
99317435752Sdrh ExprList *sqlite3ExprListAppend(
99417435752Sdrh   Parse *pParse,          /* Parsing context */
99517435752Sdrh   ExprList *pList,        /* List to which to append. Might be NULL */
996b7916a78Sdrh   Expr *pExpr             /* Expression to be appended. Might be NULL */
99717435752Sdrh ){
99817435752Sdrh   sqlite3 *db = pParse->db;
999a76b5dfcSdrh   if( pList==0 ){
100017435752Sdrh     pList = sqlite3DbMallocZero(db, sizeof(ExprList) );
1001a76b5dfcSdrh     if( pList==0 ){
1002d5d56523Sdanielk1977       goto no_mem;
1003a76b5dfcSdrh     }
10044efc4754Sdrh     assert( pList->nAlloc==0 );
1005a76b5dfcSdrh   }
10064305d103Sdrh   if( pList->nAlloc<=pList->nExpr ){
1007d5d56523Sdanielk1977     struct ExprList_item *a;
1008d5d56523Sdanielk1977     int n = pList->nAlloc*2 + 4;
100926783a58Sdanielk1977     a = sqlite3DbRealloc(db, pList->a, n*sizeof(pList->a[0]));
1010d5d56523Sdanielk1977     if( a==0 ){
1011d5d56523Sdanielk1977       goto no_mem;
1012a76b5dfcSdrh     }
1013d5d56523Sdanielk1977     pList->a = a;
10146a1e071fSdrh     pList->nAlloc = sqlite3DbMallocSize(db, a)/sizeof(a[0]);
1015a76b5dfcSdrh   }
10164efc4754Sdrh   assert( pList->a!=0 );
1017b7916a78Sdrh   if( 1 ){
10184efc4754Sdrh     struct ExprList_item *pItem = &pList->a[pList->nExpr++];
10194efc4754Sdrh     memset(pItem, 0, sizeof(*pItem));
1020e94ddc9eSdanielk1977     pItem->pExpr = pExpr;
1021a76b5dfcSdrh   }
1022a76b5dfcSdrh   return pList;
1023d5d56523Sdanielk1977 
1024d5d56523Sdanielk1977 no_mem:
1025d5d56523Sdanielk1977   /* Avoid leaking memory if malloc has failed. */
1026633e6d57Sdrh   sqlite3ExprDelete(db, pExpr);
1027633e6d57Sdrh   sqlite3ExprListDelete(db, pList);
1028d5d56523Sdanielk1977   return 0;
1029a76b5dfcSdrh }
1030a76b5dfcSdrh 
1031a76b5dfcSdrh /*
1032b7916a78Sdrh ** Set the ExprList.a[].zName element of the most recently added item
1033b7916a78Sdrh ** on the expression list.
1034b7916a78Sdrh **
1035b7916a78Sdrh ** pList might be NULL following an OOM error.  But pName should never be
1036b7916a78Sdrh ** NULL.  If a memory allocation fails, the pParse->db->mallocFailed flag
1037b7916a78Sdrh ** is set.
1038b7916a78Sdrh */
1039b7916a78Sdrh void sqlite3ExprListSetName(
1040b7916a78Sdrh   Parse *pParse,          /* Parsing context */
1041b7916a78Sdrh   ExprList *pList,        /* List to which to add the span. */
1042b7916a78Sdrh   Token *pName,           /* Name to be added */
1043b7916a78Sdrh   int dequote             /* True to cause the name to be dequoted */
1044b7916a78Sdrh ){
1045b7916a78Sdrh   assert( pList!=0 || pParse->db->mallocFailed!=0 );
1046b7916a78Sdrh   if( pList ){
1047b7916a78Sdrh     struct ExprList_item *pItem;
1048b7916a78Sdrh     assert( pList->nExpr>0 );
1049b7916a78Sdrh     pItem = &pList->a[pList->nExpr-1];
1050b7916a78Sdrh     assert( pItem->zName==0 );
1051b7916a78Sdrh     pItem->zName = sqlite3DbStrNDup(pParse->db, pName->z, pName->n);
1052b7916a78Sdrh     if( dequote && pItem->zName ) sqlite3Dequote(pItem->zName);
1053b7916a78Sdrh   }
1054b7916a78Sdrh }
1055b7916a78Sdrh 
1056b7916a78Sdrh /*
1057b7916a78Sdrh ** Set the ExprList.a[].zSpan element of the most recently added item
1058b7916a78Sdrh ** on the expression list.
1059b7916a78Sdrh **
1060b7916a78Sdrh ** pList might be NULL following an OOM error.  But pSpan should never be
1061b7916a78Sdrh ** NULL.  If a memory allocation fails, the pParse->db->mallocFailed flag
1062b7916a78Sdrh ** is set.
1063b7916a78Sdrh */
1064b7916a78Sdrh void sqlite3ExprListSetSpan(
1065b7916a78Sdrh   Parse *pParse,          /* Parsing context */
1066b7916a78Sdrh   ExprList *pList,        /* List to which to add the span. */
1067b7916a78Sdrh   ExprSpan *pSpan         /* The span to be added */
1068b7916a78Sdrh ){
1069b7916a78Sdrh   sqlite3 *db = pParse->db;
1070b7916a78Sdrh   assert( pList!=0 || db->mallocFailed!=0 );
1071b7916a78Sdrh   if( pList ){
1072b7916a78Sdrh     struct ExprList_item *pItem = &pList->a[pList->nExpr-1];
1073b7916a78Sdrh     assert( pList->nExpr>0 );
1074b7916a78Sdrh     assert( db->mallocFailed || pItem->pExpr==pSpan->pExpr );
1075b7916a78Sdrh     sqlite3DbFree(db, pItem->zSpan);
1076b7916a78Sdrh     pItem->zSpan = sqlite3DbStrNDup(db, (char*)pSpan->zStart,
1077cf697396Sshane                                     (int)(pSpan->zEnd - pSpan->zStart));
1078b7916a78Sdrh   }
1079b7916a78Sdrh }
1080b7916a78Sdrh 
1081b7916a78Sdrh /*
10827a15a4beSdanielk1977 ** If the expression list pEList contains more than iLimit elements,
10837a15a4beSdanielk1977 ** leave an error message in pParse.
10847a15a4beSdanielk1977 */
10857a15a4beSdanielk1977 void sqlite3ExprListCheckLength(
10867a15a4beSdanielk1977   Parse *pParse,
10877a15a4beSdanielk1977   ExprList *pEList,
10887a15a4beSdanielk1977   const char *zObject
10897a15a4beSdanielk1977 ){
1090b1a6c3c1Sdrh   int mx = pParse->db->aLimit[SQLITE_LIMIT_COLUMN];
1091c5499befSdrh   testcase( pEList && pEList->nExpr==mx );
1092c5499befSdrh   testcase( pEList && pEList->nExpr==mx+1 );
1093b1a6c3c1Sdrh   if( pEList && pEList->nExpr>mx ){
10947a15a4beSdanielk1977     sqlite3ErrorMsg(pParse, "too many columns in %s", zObject);
10957a15a4beSdanielk1977   }
10967a15a4beSdanielk1977 }
10977a15a4beSdanielk1977 
10987a15a4beSdanielk1977 /*
1099a76b5dfcSdrh ** Delete an entire expression list.
1100a76b5dfcSdrh */
1101633e6d57Sdrh void sqlite3ExprListDelete(sqlite3 *db, ExprList *pList){
1102a76b5dfcSdrh   int i;
1103be5c89acSdrh   struct ExprList_item *pItem;
1104a76b5dfcSdrh   if( pList==0 ) return;
11051bdd9b57Sdrh   assert( pList->a!=0 || (pList->nExpr==0 && pList->nAlloc==0) );
11061bdd9b57Sdrh   assert( pList->nExpr<=pList->nAlloc );
1107be5c89acSdrh   for(pItem=pList->a, i=0; i<pList->nExpr; i++, pItem++){
1108633e6d57Sdrh     sqlite3ExprDelete(db, pItem->pExpr);
1109633e6d57Sdrh     sqlite3DbFree(db, pItem->zName);
1110b7916a78Sdrh     sqlite3DbFree(db, pItem->zSpan);
1111a76b5dfcSdrh   }
1112633e6d57Sdrh   sqlite3DbFree(db, pList->a);
1113633e6d57Sdrh   sqlite3DbFree(db, pList);
1114a76b5dfcSdrh }
1115a76b5dfcSdrh 
1116a76b5dfcSdrh /*
11177d10d5a6Sdrh ** These routines are Walker callbacks.  Walker.u.pi is a pointer
11187d10d5a6Sdrh ** to an integer.  These routines are checking an expression to see
11197d10d5a6Sdrh ** if it is a constant.  Set *Walker.u.pi to 0 if the expression is
11207d10d5a6Sdrh ** not constant.
112173b211abSdrh **
11227d10d5a6Sdrh ** These callback routines are used to implement the following:
1123626a879aSdrh **
11247d10d5a6Sdrh **     sqlite3ExprIsConstant()
11257d10d5a6Sdrh **     sqlite3ExprIsConstantNotJoin()
11267d10d5a6Sdrh **     sqlite3ExprIsConstantOrFunction()
112787abf5c0Sdrh **
1128626a879aSdrh */
11297d10d5a6Sdrh static int exprNodeIsConstant(Walker *pWalker, Expr *pExpr){
1130626a879aSdrh 
11317d10d5a6Sdrh   /* If pWalker->u.i is 3 then any term of the expression that comes from
11320a168377Sdrh   ** the ON or USING clauses of a join disqualifies the expression
11330a168377Sdrh   ** from being considered constant. */
11347d10d5a6Sdrh   if( pWalker->u.i==3 && ExprHasAnyProperty(pExpr, EP_FromJoin) ){
11357d10d5a6Sdrh     pWalker->u.i = 0;
11367d10d5a6Sdrh     return WRC_Abort;
11370a168377Sdrh   }
11380a168377Sdrh 
1139626a879aSdrh   switch( pExpr->op ){
1140eb55bd2fSdrh     /* Consider functions to be constant if all their arguments are constant
11417d10d5a6Sdrh     ** and pWalker->u.i==2 */
1142eb55bd2fSdrh     case TK_FUNCTION:
11437d10d5a6Sdrh       if( pWalker->u.i==2 ) return 0;
1144eb55bd2fSdrh       /* Fall through */
1145626a879aSdrh     case TK_ID:
1146626a879aSdrh     case TK_COLUMN:
1147626a879aSdrh     case TK_AGG_FUNCTION:
114813449892Sdrh     case TK_AGG_COLUMN:
1149c5499befSdrh       testcase( pExpr->op==TK_ID );
1150c5499befSdrh       testcase( pExpr->op==TK_COLUMN );
1151c5499befSdrh       testcase( pExpr->op==TK_AGG_FUNCTION );
1152c5499befSdrh       testcase( pExpr->op==TK_AGG_COLUMN );
11537d10d5a6Sdrh       pWalker->u.i = 0;
11547d10d5a6Sdrh       return WRC_Abort;
1155626a879aSdrh     default:
1156b74b1017Sdrh       testcase( pExpr->op==TK_SELECT ); /* selectNodeIsConstant will disallow */
1157b74b1017Sdrh       testcase( pExpr->op==TK_EXISTS ); /* selectNodeIsConstant will disallow */
11587d10d5a6Sdrh       return WRC_Continue;
1159626a879aSdrh   }
1160626a879aSdrh }
116162c14b34Sdanielk1977 static int selectNodeIsConstant(Walker *pWalker, Select *NotUsed){
116262c14b34Sdanielk1977   UNUSED_PARAMETER(NotUsed);
11637d10d5a6Sdrh   pWalker->u.i = 0;
11647d10d5a6Sdrh   return WRC_Abort;
11657d10d5a6Sdrh }
11667d10d5a6Sdrh static int exprIsConst(Expr *p, int initFlag){
11677d10d5a6Sdrh   Walker w;
11687d10d5a6Sdrh   w.u.i = initFlag;
11697d10d5a6Sdrh   w.xExprCallback = exprNodeIsConstant;
11707d10d5a6Sdrh   w.xSelectCallback = selectNodeIsConstant;
11717d10d5a6Sdrh   sqlite3WalkExpr(&w, p);
11727d10d5a6Sdrh   return w.u.i;
11737d10d5a6Sdrh }
1174626a879aSdrh 
1175626a879aSdrh /*
1176fef5208cSdrh ** Walk an expression tree.  Return 1 if the expression is constant
1177eb55bd2fSdrh ** and 0 if it involves variables or function calls.
11782398937bSdrh **
11792398937bSdrh ** For the purposes of this function, a double-quoted string (ex: "abc")
11802398937bSdrh ** is considered a variable but a single-quoted string (ex: 'abc') is
11812398937bSdrh ** a constant.
1182fef5208cSdrh */
11834adee20fSdanielk1977 int sqlite3ExprIsConstant(Expr *p){
11847d10d5a6Sdrh   return exprIsConst(p, 1);
1185fef5208cSdrh }
1186fef5208cSdrh 
1187fef5208cSdrh /*
1188eb55bd2fSdrh ** Walk an expression tree.  Return 1 if the expression is constant
11890a168377Sdrh ** that does no originate from the ON or USING clauses of a join.
11900a168377Sdrh ** Return 0 if it involves variables or function calls or terms from
11910a168377Sdrh ** an ON or USING clause.
11920a168377Sdrh */
11930a168377Sdrh int sqlite3ExprIsConstantNotJoin(Expr *p){
11947d10d5a6Sdrh   return exprIsConst(p, 3);
11950a168377Sdrh }
11960a168377Sdrh 
11970a168377Sdrh /*
11980a168377Sdrh ** Walk an expression tree.  Return 1 if the expression is constant
1199eb55bd2fSdrh ** or a function call with constant arguments.  Return and 0 if there
1200eb55bd2fSdrh ** are any variables.
1201eb55bd2fSdrh **
1202eb55bd2fSdrh ** For the purposes of this function, a double-quoted string (ex: "abc")
1203eb55bd2fSdrh ** is considered a variable but a single-quoted string (ex: 'abc') is
1204eb55bd2fSdrh ** a constant.
1205eb55bd2fSdrh */
1206eb55bd2fSdrh int sqlite3ExprIsConstantOrFunction(Expr *p){
12077d10d5a6Sdrh   return exprIsConst(p, 2);
1208eb55bd2fSdrh }
1209eb55bd2fSdrh 
1210eb55bd2fSdrh /*
121173b211abSdrh ** If the expression p codes a constant integer that is small enough
1212202b2df7Sdrh ** to fit in a 32-bit integer, return 1 and put the value of the integer
1213202b2df7Sdrh ** in *pValue.  If the expression is not an integer or if it is too big
1214202b2df7Sdrh ** to fit in a signed 32-bit integer, return 0 and leave *pValue unchanged.
1215e4de1febSdrh */
12164adee20fSdanielk1977 int sqlite3ExprIsInteger(Expr *p, int *pValue){
121792b01d53Sdrh   int rc = 0;
121892b01d53Sdrh   if( p->flags & EP_IntValue ){
121933e619fcSdrh     *pValue = p->u.iValue;
1220e4de1febSdrh     return 1;
1221e4de1febSdrh   }
122292b01d53Sdrh   switch( p->op ){
122392b01d53Sdrh     case TK_INTEGER: {
122433e619fcSdrh       rc = sqlite3GetInt32(p->u.zToken, pValue);
122533e619fcSdrh       assert( rc==0 );
1226202b2df7Sdrh       break;
1227202b2df7Sdrh     }
12284b59ab5eSdrh     case TK_UPLUS: {
122992b01d53Sdrh       rc = sqlite3ExprIsInteger(p->pLeft, pValue);
1230f6e369a1Sdrh       break;
12314b59ab5eSdrh     }
1232e4de1febSdrh     case TK_UMINUS: {
1233e4de1febSdrh       int v;
12344adee20fSdanielk1977       if( sqlite3ExprIsInteger(p->pLeft, &v) ){
1235e4de1febSdrh         *pValue = -v;
123692b01d53Sdrh         rc = 1;
1237e4de1febSdrh       }
1238e4de1febSdrh       break;
1239e4de1febSdrh     }
1240e4de1febSdrh     default: break;
1241e4de1febSdrh   }
124292b01d53Sdrh   if( rc ){
124333e619fcSdrh     assert( ExprHasAnyProperty(p, EP_Reduced|EP_TokenOnly)
124433e619fcSdrh                || (p->flags2 & EP2_MallocedToken)==0 );
124592b01d53Sdrh     p->op = TK_INTEGER;
124692b01d53Sdrh     p->flags |= EP_IntValue;
124733e619fcSdrh     p->u.iValue = *pValue;
124892b01d53Sdrh   }
124992b01d53Sdrh   return rc;
1250e4de1febSdrh }
1251e4de1febSdrh 
1252e4de1febSdrh /*
1253039fc32eSdrh ** Return FALSE if there is no chance that the expression can be NULL.
1254039fc32eSdrh **
1255039fc32eSdrh ** If the expression might be NULL or if the expression is too complex
1256039fc32eSdrh ** to tell return TRUE.
1257039fc32eSdrh **
1258039fc32eSdrh ** This routine is used as an optimization, to skip OP_IsNull opcodes
1259039fc32eSdrh ** when we know that a value cannot be NULL.  Hence, a false positive
1260039fc32eSdrh ** (returning TRUE when in fact the expression can never be NULL) might
1261039fc32eSdrh ** be a small performance hit but is otherwise harmless.  On the other
1262039fc32eSdrh ** hand, a false negative (returning FALSE when the result could be NULL)
1263039fc32eSdrh ** will likely result in an incorrect answer.  So when in doubt, return
1264039fc32eSdrh ** TRUE.
1265039fc32eSdrh */
1266039fc32eSdrh int sqlite3ExprCanBeNull(const Expr *p){
1267039fc32eSdrh   u8 op;
1268cd7f457eSdrh   while( p->op==TK_UPLUS || p->op==TK_UMINUS ){ p = p->pLeft; }
1269039fc32eSdrh   op = p->op;
1270039fc32eSdrh   if( op==TK_REGISTER ) op = p->op2;
1271039fc32eSdrh   switch( op ){
1272039fc32eSdrh     case TK_INTEGER:
1273039fc32eSdrh     case TK_STRING:
1274039fc32eSdrh     case TK_FLOAT:
1275039fc32eSdrh     case TK_BLOB:
1276039fc32eSdrh       return 0;
1277039fc32eSdrh     default:
1278039fc32eSdrh       return 1;
1279039fc32eSdrh   }
1280039fc32eSdrh }
1281039fc32eSdrh 
1282039fc32eSdrh /*
12832f2855b6Sdrh ** Generate an OP_IsNull instruction that tests register iReg and jumps
12842f2855b6Sdrh ** to location iDest if the value in iReg is NULL.  The value in iReg
12852f2855b6Sdrh ** was computed by pExpr.  If we can look at pExpr at compile-time and
12862f2855b6Sdrh ** determine that it can never generate a NULL, then the OP_IsNull operation
12872f2855b6Sdrh ** can be omitted.
12882f2855b6Sdrh */
12892f2855b6Sdrh void sqlite3ExprCodeIsNullJump(
12902f2855b6Sdrh   Vdbe *v,            /* The VDBE under construction */
12912f2855b6Sdrh   const Expr *pExpr,  /* Only generate OP_IsNull if this expr can be NULL */
12922f2855b6Sdrh   int iReg,           /* Test the value in this register for NULL */
12932f2855b6Sdrh   int iDest           /* Jump here if the value is null */
12942f2855b6Sdrh ){
12952f2855b6Sdrh   if( sqlite3ExprCanBeNull(pExpr) ){
12962f2855b6Sdrh     sqlite3VdbeAddOp2(v, OP_IsNull, iReg, iDest);
12972f2855b6Sdrh   }
12982f2855b6Sdrh }
12992f2855b6Sdrh 
13002f2855b6Sdrh /*
1301039fc32eSdrh ** Return TRUE if the given expression is a constant which would be
1302039fc32eSdrh ** unchanged by OP_Affinity with the affinity given in the second
1303039fc32eSdrh ** argument.
1304039fc32eSdrh **
1305039fc32eSdrh ** This routine is used to determine if the OP_Affinity operation
1306039fc32eSdrh ** can be omitted.  When in doubt return FALSE.  A false negative
1307039fc32eSdrh ** is harmless.  A false positive, however, can result in the wrong
1308039fc32eSdrh ** answer.
1309039fc32eSdrh */
1310039fc32eSdrh int sqlite3ExprNeedsNoAffinityChange(const Expr *p, char aff){
1311039fc32eSdrh   u8 op;
1312039fc32eSdrh   if( aff==SQLITE_AFF_NONE ) return 1;
1313cd7f457eSdrh   while( p->op==TK_UPLUS || p->op==TK_UMINUS ){ p = p->pLeft; }
1314039fc32eSdrh   op = p->op;
1315039fc32eSdrh   if( op==TK_REGISTER ) op = p->op2;
1316039fc32eSdrh   switch( op ){
1317039fc32eSdrh     case TK_INTEGER: {
1318039fc32eSdrh       return aff==SQLITE_AFF_INTEGER || aff==SQLITE_AFF_NUMERIC;
1319039fc32eSdrh     }
1320039fc32eSdrh     case TK_FLOAT: {
1321039fc32eSdrh       return aff==SQLITE_AFF_REAL || aff==SQLITE_AFF_NUMERIC;
1322039fc32eSdrh     }
1323039fc32eSdrh     case TK_STRING: {
1324039fc32eSdrh       return aff==SQLITE_AFF_TEXT;
1325039fc32eSdrh     }
1326039fc32eSdrh     case TK_BLOB: {
1327039fc32eSdrh       return 1;
1328039fc32eSdrh     }
13292f2855b6Sdrh     case TK_COLUMN: {
133088376ca7Sdrh       assert( p->iTable>=0 );  /* p cannot be part of a CHECK constraint */
133188376ca7Sdrh       return p->iColumn<0
13322f2855b6Sdrh           && (aff==SQLITE_AFF_INTEGER || aff==SQLITE_AFF_NUMERIC);
13332f2855b6Sdrh     }
1334039fc32eSdrh     default: {
1335039fc32eSdrh       return 0;
1336039fc32eSdrh     }
1337039fc32eSdrh   }
1338039fc32eSdrh }
1339039fc32eSdrh 
1340039fc32eSdrh /*
1341c4a3c779Sdrh ** Return TRUE if the given string is a row-id column name.
1342c4a3c779Sdrh */
13434adee20fSdanielk1977 int sqlite3IsRowid(const char *z){
13444adee20fSdanielk1977   if( sqlite3StrICmp(z, "_ROWID_")==0 ) return 1;
13454adee20fSdanielk1977   if( sqlite3StrICmp(z, "ROWID")==0 ) return 1;
13464adee20fSdanielk1977   if( sqlite3StrICmp(z, "OID")==0 ) return 1;
1347c4a3c779Sdrh   return 0;
1348c4a3c779Sdrh }
1349c4a3c779Sdrh 
13509a96b668Sdanielk1977 /*
1351b74b1017Sdrh ** Return true if we are able to the IN operator optimization on a
1352b74b1017Sdrh ** query of the form
1353b287f4b6Sdrh **
1354b74b1017Sdrh **       x IN (SELECT ...)
1355b287f4b6Sdrh **
1356b74b1017Sdrh ** Where the SELECT... clause is as specified by the parameter to this
1357b74b1017Sdrh ** routine.
1358b74b1017Sdrh **
1359b74b1017Sdrh ** The Select object passed in has already been preprocessed and no
1360b74b1017Sdrh ** errors have been found.
1361b287f4b6Sdrh */
1362b287f4b6Sdrh #ifndef SQLITE_OMIT_SUBQUERY
1363b287f4b6Sdrh static int isCandidateForInOpt(Select *p){
1364b287f4b6Sdrh   SrcList *pSrc;
1365b287f4b6Sdrh   ExprList *pEList;
1366b287f4b6Sdrh   Table *pTab;
1367b287f4b6Sdrh   if( p==0 ) return 0;                   /* right-hand side of IN is SELECT */
1368b287f4b6Sdrh   if( p->pPrior ) return 0;              /* Not a compound SELECT */
13697d10d5a6Sdrh   if( p->selFlags & (SF_Distinct|SF_Aggregate) ){
1370b74b1017Sdrh     testcase( (p->selFlags & (SF_Distinct|SF_Aggregate))==SF_Distinct );
1371b74b1017Sdrh     testcase( (p->selFlags & (SF_Distinct|SF_Aggregate))==SF_Aggregate );
13727d10d5a6Sdrh     return 0; /* No DISTINCT keyword and no aggregate functions */
13737d10d5a6Sdrh   }
1374b74b1017Sdrh   assert( p->pGroupBy==0 );              /* Has no GROUP BY clause */
1375b287f4b6Sdrh   if( p->pLimit ) return 0;              /* Has no LIMIT clause */
1376b74b1017Sdrh   assert( p->pOffset==0 );               /* No LIMIT means no OFFSET */
1377b287f4b6Sdrh   if( p->pWhere ) return 0;              /* Has no WHERE clause */
1378b287f4b6Sdrh   pSrc = p->pSrc;
1379d1fa7bcaSdrh   assert( pSrc!=0 );
1380d1fa7bcaSdrh   if( pSrc->nSrc!=1 ) return 0;          /* Single term in FROM clause */
1381b74b1017Sdrh   if( pSrc->a[0].pSelect ) return 0;     /* FROM is not a subquery or view */
1382b287f4b6Sdrh   pTab = pSrc->a[0].pTab;
1383b74b1017Sdrh   if( NEVER(pTab==0) ) return 0;
1384b74b1017Sdrh   assert( pTab->pSelect==0 );            /* FROM clause is not a view */
1385b287f4b6Sdrh   if( IsVirtual(pTab) ) return 0;        /* FROM clause not a virtual table */
1386b287f4b6Sdrh   pEList = p->pEList;
1387b287f4b6Sdrh   if( pEList->nExpr!=1 ) return 0;       /* One column in the result set */
1388b287f4b6Sdrh   if( pEList->a[0].pExpr->op!=TK_COLUMN ) return 0; /* Result is a column */
1389b287f4b6Sdrh   return 1;
1390b287f4b6Sdrh }
1391b287f4b6Sdrh #endif /* SQLITE_OMIT_SUBQUERY */
1392b287f4b6Sdrh 
1393b287f4b6Sdrh /*
13949a96b668Sdanielk1977 ** This function is used by the implementation of the IN (...) operator.
13959a96b668Sdanielk1977 ** It's job is to find or create a b-tree structure that may be used
13969a96b668Sdanielk1977 ** either to test for membership of the (...) set or to iterate through
139785b623f2Sdrh ** its members, skipping duplicates.
13989a96b668Sdanielk1977 **
1399b74b1017Sdrh ** The index of the cursor opened on the b-tree (database table, database index
14009a96b668Sdanielk1977 ** or ephermal table) is stored in pX->iTable before this function returns.
1401b74b1017Sdrh ** The returned value of this function indicates the b-tree type, as follows:
14029a96b668Sdanielk1977 **
14039a96b668Sdanielk1977 **   IN_INDEX_ROWID - The cursor was opened on a database table.
14042d401ab8Sdrh **   IN_INDEX_INDEX - The cursor was opened on a database index.
14059a96b668Sdanielk1977 **   IN_INDEX_EPH -   The cursor was opened on a specially created and
14069a96b668Sdanielk1977 **                    populated epheremal table.
14079a96b668Sdanielk1977 **
1408b74b1017Sdrh ** An existing b-tree may only be used if the SELECT is of the simple
14099a96b668Sdanielk1977 ** form:
14109a96b668Sdanielk1977 **
14119a96b668Sdanielk1977 **     SELECT <column> FROM <table>
14129a96b668Sdanielk1977 **
1413b74b1017Sdrh ** If the prNotFound parameter is 0, then the b-tree will be used to iterate
14149a96b668Sdanielk1977 ** through the set members, skipping any duplicates. In this case an
14159a96b668Sdanielk1977 ** epheremal table must be used unless the selected <column> is guaranteed
14169a96b668Sdanielk1977 ** to be unique - either because it is an INTEGER PRIMARY KEY or it
1417b74b1017Sdrh ** has a UNIQUE constraint or UNIQUE index.
14180cdc022eSdanielk1977 **
1419b74b1017Sdrh ** If the prNotFound parameter is not 0, then the b-tree will be used
14200cdc022eSdanielk1977 ** for fast set membership tests. In this case an epheremal table must
14210cdc022eSdanielk1977 ** be used unless <column> is an INTEGER PRIMARY KEY or an index can
14220cdc022eSdanielk1977 ** be found with <column> as its left-most column.
14230cdc022eSdanielk1977 **
1424b74b1017Sdrh ** When the b-tree is being used for membership tests, the calling function
14250cdc022eSdanielk1977 ** needs to know whether or not the structure contains an SQL NULL
14260cdc022eSdanielk1977 ** value in order to correctly evaluate expressions like "X IN (Y, Z)".
1427e3365e6cSdrh ** If there is any chance that the (...) might contain a NULL value at
14280cdc022eSdanielk1977 ** runtime, then a register is allocated and the register number written
1429e3365e6cSdrh ** to *prNotFound. If there is no chance that the (...) contains a
14300cdc022eSdanielk1977 ** NULL value, then *prNotFound is left unchanged.
14310cdc022eSdanielk1977 **
14320cdc022eSdanielk1977 ** If a register is allocated and its location stored in *prNotFound, then
1433e3365e6cSdrh ** its initial value is NULL.  If the (...) does not remain constant
1434e3365e6cSdrh ** for the duration of the query (i.e. the SELECT within the (...)
1435b74b1017Sdrh ** is a correlated subquery) then the value of the allocated register is
1436e3365e6cSdrh ** reset to NULL each time the subquery is rerun. This allows the
1437b74b1017Sdrh ** caller to use vdbe code equivalent to the following:
14380cdc022eSdanielk1977 **
14390cdc022eSdanielk1977 **   if( register==NULL ){
14400cdc022eSdanielk1977 **     has_null = <test if data structure contains null>
14410cdc022eSdanielk1977 **     register = 1
14420cdc022eSdanielk1977 **   }
14430cdc022eSdanielk1977 **
14440cdc022eSdanielk1977 ** in order to avoid running the <test if data structure contains null>
14450cdc022eSdanielk1977 ** test more often than is necessary.
14469a96b668Sdanielk1977 */
1447284f4acaSdanielk1977 #ifndef SQLITE_OMIT_SUBQUERY
14480cdc022eSdanielk1977 int sqlite3FindInIndex(Parse *pParse, Expr *pX, int *prNotFound){
1449b74b1017Sdrh   Select *p;                            /* SELECT to the right of IN operator */
1450b74b1017Sdrh   int eType = 0;                        /* Type of RHS table. IN_INDEX_* */
1451b74b1017Sdrh   int iTab = pParse->nTab++;            /* Cursor of the RHS table */
1452b74b1017Sdrh   int mustBeUnique = (prNotFound==0);   /* True if RHS must be unique */
14539a96b668Sdanielk1977 
14541450bc6eSdrh   assert( pX->op==TK_IN );
14551450bc6eSdrh 
1456b74b1017Sdrh   /* Check to see if an existing table or index can be used to
1457b74b1017Sdrh   ** satisfy the query.  This is preferable to generating a new
1458b74b1017Sdrh   ** ephemeral table.
14599a96b668Sdanielk1977   */
14606ab3a2ecSdanielk1977   p = (ExprHasProperty(pX, EP_xIsSelect) ? pX->x.pSelect : 0);
1461fd773cf9Sdrh   if( ALWAYS(pParse->nErr==0) && isCandidateForInOpt(p) ){
1462e1fb65a0Sdanielk1977     sqlite3 *db = pParse->db;              /* Database connection */
1463e1fb65a0Sdanielk1977     Expr *pExpr = p->pEList->a[0].pExpr;   /* Expression <column> */
1464e1fb65a0Sdanielk1977     int iCol = pExpr->iColumn;             /* Index of column <column> */
1465e1fb65a0Sdanielk1977     Vdbe *v = sqlite3GetVdbe(pParse);      /* Virtual machine being coded */
1466e1fb65a0Sdanielk1977     Table *pTab = p->pSrc->a[0].pTab;      /* Table <table>. */
1467e1fb65a0Sdanielk1977     int iDb;                               /* Database idx for pTab */
1468e1fb65a0Sdanielk1977 
1469e1fb65a0Sdanielk1977     /* Code an OP_VerifyCookie and OP_TableLock for <table>. */
1470e1fb65a0Sdanielk1977     iDb = sqlite3SchemaToIndex(db, pTab->pSchema);
1471e1fb65a0Sdanielk1977     sqlite3CodeVerifySchema(pParse, iDb);
1472e1fb65a0Sdanielk1977     sqlite3TableLock(pParse, iDb, pTab->tnum, 0, pTab->zName);
14739a96b668Sdanielk1977 
14749a96b668Sdanielk1977     /* This function is only called from two places. In both cases the vdbe
14759a96b668Sdanielk1977     ** has already been allocated. So assume sqlite3GetVdbe() is always
14769a96b668Sdanielk1977     ** successful here.
14779a96b668Sdanielk1977     */
14789a96b668Sdanielk1977     assert(v);
14799a96b668Sdanielk1977     if( iCol<0 ){
14800a07c107Sdrh       int iMem = ++pParse->nMem;
14819a96b668Sdanielk1977       int iAddr;
14829a96b668Sdanielk1977 
1483892d3179Sdrh       iAddr = sqlite3VdbeAddOp1(v, OP_If, iMem);
14844c583128Sdrh       sqlite3VdbeAddOp2(v, OP_Integer, 1, iMem);
14859a96b668Sdanielk1977 
14869a96b668Sdanielk1977       sqlite3OpenTable(pParse, iTab, iDb, pTab, OP_OpenRead);
14879a96b668Sdanielk1977       eType = IN_INDEX_ROWID;
14889a96b668Sdanielk1977 
14899a96b668Sdanielk1977       sqlite3VdbeJumpHere(v, iAddr);
14909a96b668Sdanielk1977     }else{
1491e1fb65a0Sdanielk1977       Index *pIdx;                         /* Iterator variable */
1492e1fb65a0Sdanielk1977 
14939a96b668Sdanielk1977       /* The collation sequence used by the comparison. If an index is to
14949a96b668Sdanielk1977       ** be used in place of a temp-table, it must be ordered according
1495e1fb65a0Sdanielk1977       ** to this collation sequence.  */
14969a96b668Sdanielk1977       CollSeq *pReq = sqlite3BinaryCompareCollSeq(pParse, pX->pLeft, pExpr);
14979a96b668Sdanielk1977 
14989a96b668Sdanielk1977       /* Check that the affinity that will be used to perform the
14999a96b668Sdanielk1977       ** comparison is the same as the affinity of the column. If
15009a96b668Sdanielk1977       ** it is not, it is not possible to use any index.
15019a96b668Sdanielk1977       */
15029a96b668Sdanielk1977       char aff = comparisonAffinity(pX);
15039a96b668Sdanielk1977       int affinity_ok = (pTab->aCol[iCol].affinity==aff||aff==SQLITE_AFF_NONE);
15049a96b668Sdanielk1977 
15059a96b668Sdanielk1977       for(pIdx=pTab->pIndex; pIdx && eType==0 && affinity_ok; pIdx=pIdx->pNext){
15069a96b668Sdanielk1977         if( (pIdx->aiColumn[0]==iCol)
1507b74b1017Sdrh          && sqlite3FindCollSeq(db, ENC(db), pIdx->azColl[0], 0)==pReq
15089a96b668Sdanielk1977          && (!mustBeUnique || (pIdx->nColumn==1 && pIdx->onError!=OE_None))
15099a96b668Sdanielk1977         ){
15100a07c107Sdrh           int iMem = ++pParse->nMem;
15119a96b668Sdanielk1977           int iAddr;
15129a96b668Sdanielk1977           char *pKey;
15139a96b668Sdanielk1977 
15149a96b668Sdanielk1977           pKey = (char *)sqlite3IndexKeyinfo(pParse, pIdx);
1515892d3179Sdrh           iAddr = sqlite3VdbeAddOp1(v, OP_If, iMem);
15164c583128Sdrh           sqlite3VdbeAddOp2(v, OP_Integer, 1, iMem);
15179a96b668Sdanielk1977 
1518207872a4Sdanielk1977           sqlite3VdbeAddOp4(v, OP_OpenRead, iTab, pIdx->tnum, iDb,
151966a5167bSdrh                                pKey,P4_KEYINFO_HANDOFF);
1520207872a4Sdanielk1977           VdbeComment((v, "%s", pIdx->zName));
15219a96b668Sdanielk1977           eType = IN_INDEX_INDEX;
15229a96b668Sdanielk1977 
15239a96b668Sdanielk1977           sqlite3VdbeJumpHere(v, iAddr);
15240cdc022eSdanielk1977           if( prNotFound && !pTab->aCol[iCol].notNull ){
15250cdc022eSdanielk1977             *prNotFound = ++pParse->nMem;
15260cdc022eSdanielk1977           }
15279a96b668Sdanielk1977         }
15289a96b668Sdanielk1977       }
15299a96b668Sdanielk1977     }
15309a96b668Sdanielk1977   }
15319a96b668Sdanielk1977 
15329a96b668Sdanielk1977   if( eType==0 ){
15331450bc6eSdrh     /* Could not found an existing table or index to use as the RHS b-tree.
1534b74b1017Sdrh     ** We will have to generate an ephemeral table to do the job.
1535b74b1017Sdrh     */
15360cdc022eSdanielk1977     int rMayHaveNull = 0;
153741a05b7bSdanielk1977     eType = IN_INDEX_EPH;
15380cdc022eSdanielk1977     if( prNotFound ){
15390cdc022eSdanielk1977       *prNotFound = rMayHaveNull = ++pParse->nMem;
15406ab3a2ecSdanielk1977     }else if( pX->pLeft->iColumn<0 && !ExprHasAnyProperty(pX, EP_xIsSelect) ){
154141a05b7bSdanielk1977       eType = IN_INDEX_ROWID;
15420cdc022eSdanielk1977     }
154341a05b7bSdanielk1977     sqlite3CodeSubselect(pParse, pX, rMayHaveNull, eType==IN_INDEX_ROWID);
15449a96b668Sdanielk1977   }else{
15459a96b668Sdanielk1977     pX->iTable = iTab;
15469a96b668Sdanielk1977   }
15479a96b668Sdanielk1977   return eType;
15489a96b668Sdanielk1977 }
1549284f4acaSdanielk1977 #endif
1550626a879aSdrh 
1551626a879aSdrh /*
15529cbe6352Sdrh ** Generate code for scalar subqueries used as an expression
15539cbe6352Sdrh ** and IN operators.  Examples:
1554626a879aSdrh **
15559cbe6352Sdrh **     (SELECT a FROM b)          -- subquery
15569cbe6352Sdrh **     EXISTS (SELECT a FROM b)   -- EXISTS subquery
15579cbe6352Sdrh **     x IN (4,5,11)              -- IN operator with list on right-hand side
15589cbe6352Sdrh **     x IN (SELECT a FROM b)     -- IN operator with subquery on the right
1559fef5208cSdrh **
15609cbe6352Sdrh ** The pExpr parameter describes the expression that contains the IN
15619cbe6352Sdrh ** operator or subquery.
156241a05b7bSdanielk1977 **
156341a05b7bSdanielk1977 ** If parameter isRowid is non-zero, then expression pExpr is guaranteed
156441a05b7bSdanielk1977 ** to be of the form "<rowid> IN (?, ?, ?)", where <rowid> is a reference
156541a05b7bSdanielk1977 ** to some integer key column of a table B-Tree. In this case, use an
156641a05b7bSdanielk1977 ** intkey B-Tree to store the set of IN(...) values instead of the usual
156741a05b7bSdanielk1977 ** (slower) variable length keys B-Tree.
1568fd773cf9Sdrh **
1569fd773cf9Sdrh ** If rMayHaveNull is non-zero, that means that the operation is an IN
1570fd773cf9Sdrh ** (not a SELECT or EXISTS) and that the RHS might contains NULLs.
1571fd773cf9Sdrh ** Furthermore, the IN is in a WHERE clause and that we really want
1572fd773cf9Sdrh ** to iterate over the RHS of the IN operator in order to quickly locate
1573fd773cf9Sdrh ** all corresponding LHS elements.  All this routine does is initialize
1574fd773cf9Sdrh ** the register given by rMayHaveNull to NULL.  Calling routines will take
1575fd773cf9Sdrh ** care of changing this register value to non-NULL if the RHS is NULL-free.
1576fd773cf9Sdrh **
1577fd773cf9Sdrh ** If rMayHaveNull is zero, that means that the subquery is being used
1578fd773cf9Sdrh ** for membership testing only.  There is no need to initialize any
1579fd773cf9Sdrh ** registers to indicate the presense or absence of NULLs on the RHS.
15801450bc6eSdrh **
15811450bc6eSdrh ** For a SELECT or EXISTS operator, return the register that holds the
15821450bc6eSdrh ** result.  For IN operators or if an error occurs, the return value is 0.
1583cce7d176Sdrh */
158451522cd3Sdrh #ifndef SQLITE_OMIT_SUBQUERY
15851450bc6eSdrh int sqlite3CodeSubselect(
1586fd773cf9Sdrh   Parse *pParse,          /* Parsing context */
1587fd773cf9Sdrh   Expr *pExpr,            /* The IN, SELECT, or EXISTS operator */
1588fd773cf9Sdrh   int rMayHaveNull,       /* Register that records whether NULLs exist in RHS */
1589fd773cf9Sdrh   int isRowid             /* If true, LHS of IN operator is a rowid */
159041a05b7bSdanielk1977 ){
159157dbd7b3Sdrh   int testAddr = 0;                       /* One-time test address */
15921450bc6eSdrh   int rReg = 0;                           /* Register storing resulting */
1593b3bce662Sdanielk1977   Vdbe *v = sqlite3GetVdbe(pParse);
15941450bc6eSdrh   if( NEVER(v==0) ) return 0;
1595ceea3321Sdrh   sqlite3ExprCachePush(pParse);
1596fc976065Sdanielk1977 
159757dbd7b3Sdrh   /* This code must be run in its entirety every time it is encountered
159857dbd7b3Sdrh   ** if any of the following is true:
159957dbd7b3Sdrh   **
160057dbd7b3Sdrh   **    *  The right-hand side is a correlated subquery
160157dbd7b3Sdrh   **    *  The right-hand side is an expression list containing variables
160257dbd7b3Sdrh   **    *  We are inside a trigger
160357dbd7b3Sdrh   **
160457dbd7b3Sdrh   ** If all of the above are false, then we can run this code just once
160557dbd7b3Sdrh   ** save the results, and reuse the same result on subsequent invocations.
1606b3bce662Sdanielk1977   */
1607165921a7Sdan   if( !ExprHasAnyProperty(pExpr, EP_VarSelect) && !pParse->pTriggerTab ){
16080a07c107Sdrh     int mem = ++pParse->nMem;
1609892d3179Sdrh     sqlite3VdbeAddOp1(v, OP_If, mem);
1610892d3179Sdrh     testAddr = sqlite3VdbeAddOp2(v, OP_Integer, 1, mem);
161117435752Sdrh     assert( testAddr>0 || pParse->db->mallocFailed );
1612b3bce662Sdanielk1977   }
1613b3bce662Sdanielk1977 
1614cce7d176Sdrh   switch( pExpr->op ){
1615fef5208cSdrh     case TK_IN: {
1616e014a838Sdanielk1977       char affinity;
1617d3d39e93Sdrh       KeyInfo keyInfo;
1618b9bb7c18Sdrh       int addr;        /* Address of OP_OpenEphemeral instruction */
161941a05b7bSdanielk1977       Expr *pLeft = pExpr->pLeft;
1620d3d39e93Sdrh 
16210cdc022eSdanielk1977       if( rMayHaveNull ){
16220cdc022eSdanielk1977         sqlite3VdbeAddOp2(v, OP_Null, 0, rMayHaveNull);
16230cdc022eSdanielk1977       }
16240cdc022eSdanielk1977 
162541a05b7bSdanielk1977       affinity = sqlite3ExprAffinity(pLeft);
1626e014a838Sdanielk1977 
1627e014a838Sdanielk1977       /* Whether this is an 'x IN(SELECT...)' or an 'x IN(<exprlist>)'
16288cff69dfSdrh       ** expression it is handled the same way.  An ephemeral table is
1629e014a838Sdanielk1977       ** filled with single-field index keys representing the results
1630e014a838Sdanielk1977       ** from the SELECT or the <exprlist>.
1631fef5208cSdrh       **
1632e014a838Sdanielk1977       ** If the 'x' expression is a column value, or the SELECT...
1633e014a838Sdanielk1977       ** statement returns a column value, then the affinity of that
1634e014a838Sdanielk1977       ** column is used to build the index keys. If both 'x' and the
1635e014a838Sdanielk1977       ** SELECT... statement are columns, then numeric affinity is used
1636e014a838Sdanielk1977       ** if either column has NUMERIC or INTEGER affinity. If neither
1637e014a838Sdanielk1977       ** 'x' nor the SELECT... statement are columns, then numeric affinity
1638e014a838Sdanielk1977       ** is used.
1639fef5208cSdrh       */
1640832508b7Sdrh       pExpr->iTable = pParse->nTab++;
164141a05b7bSdanielk1977       addr = sqlite3VdbeAddOp2(v, OP_OpenEphemeral, pExpr->iTable, !isRowid);
1642d3d39e93Sdrh       memset(&keyInfo, 0, sizeof(keyInfo));
1643d3d39e93Sdrh       keyInfo.nField = 1;
1644e014a838Sdanielk1977 
16456ab3a2ecSdanielk1977       if( ExprHasProperty(pExpr, EP_xIsSelect) ){
1646e014a838Sdanielk1977         /* Case 1:     expr IN (SELECT ...)
1647e014a838Sdanielk1977         **
1648e014a838Sdanielk1977         ** Generate code to write the results of the select into the temporary
1649e014a838Sdanielk1977         ** table allocated and opened above.
1650e014a838Sdanielk1977         */
16511013c932Sdrh         SelectDest dest;
1652be5c89acSdrh         ExprList *pEList;
16531013c932Sdrh 
165441a05b7bSdanielk1977         assert( !isRowid );
16551013c932Sdrh         sqlite3SelectDestInit(&dest, SRT_Set, pExpr->iTable);
16561bd10f8aSdrh         dest.affinity = (u8)affinity;
1657e014a838Sdanielk1977         assert( (pExpr->iTable&0x0000FFFF)==pExpr->iTable );
16586ab3a2ecSdanielk1977         if( sqlite3Select(pParse, pExpr->x.pSelect, &dest) ){
16591450bc6eSdrh           return 0;
166094ccde58Sdrh         }
16616ab3a2ecSdanielk1977         pEList = pExpr->x.pSelect->pEList;
1662fd773cf9Sdrh         if( ALWAYS(pEList!=0 && pEList->nExpr>0) ){
1663bcbb04e5Sdanielk1977           keyInfo.aColl[0] = sqlite3BinaryCompareCollSeq(pParse, pExpr->pLeft,
1664be5c89acSdrh               pEList->a[0].pExpr);
16650202b29eSdanielk1977         }
1666fd773cf9Sdrh       }else if( pExpr->x.pList!=0 ){
1667fef5208cSdrh         /* Case 2:     expr IN (exprlist)
1668fef5208cSdrh         **
1669e014a838Sdanielk1977         ** For each expression, build an index key from the evaluation and
1670e014a838Sdanielk1977         ** store it in the temporary table. If <expr> is a column, then use
1671e014a838Sdanielk1977         ** that columns affinity when building index keys. If <expr> is not
1672e014a838Sdanielk1977         ** a column, use numeric affinity.
1673fef5208cSdrh         */
1674e014a838Sdanielk1977         int i;
16756ab3a2ecSdanielk1977         ExprList *pList = pExpr->x.pList;
167657dbd7b3Sdrh         struct ExprList_item *pItem;
1677ecc31805Sdrh         int r1, r2, r3;
167857dbd7b3Sdrh 
1679e014a838Sdanielk1977         if( !affinity ){
16808159a35fSdrh           affinity = SQLITE_AFF_NONE;
1681e014a838Sdanielk1977         }
16827d10d5a6Sdrh         keyInfo.aColl[0] = sqlite3ExprCollSeq(pParse, pExpr->pLeft);
1683e014a838Sdanielk1977 
1684e014a838Sdanielk1977         /* Loop through each expression in <exprlist>. */
16852d401ab8Sdrh         r1 = sqlite3GetTempReg(pParse);
16862d401ab8Sdrh         r2 = sqlite3GetTempReg(pParse);
16874e7f36a2Sdanielk1977         sqlite3VdbeAddOp2(v, OP_Null, 0, r2);
168857dbd7b3Sdrh         for(i=pList->nExpr, pItem=pList->a; i>0; i--, pItem++){
168957dbd7b3Sdrh           Expr *pE2 = pItem->pExpr;
1690e05c929bSdrh           int iValToIns;
1691e014a838Sdanielk1977 
169257dbd7b3Sdrh           /* If the expression is not constant then we will need to
169357dbd7b3Sdrh           ** disable the test that was generated above that makes sure
169457dbd7b3Sdrh           ** this code only executes once.  Because for a non-constant
169557dbd7b3Sdrh           ** expression we need to rerun this code each time.
169657dbd7b3Sdrh           */
1697892d3179Sdrh           if( testAddr && !sqlite3ExprIsConstant(pE2) ){
1698892d3179Sdrh             sqlite3VdbeChangeToNoop(v, testAddr-1, 2);
169957dbd7b3Sdrh             testAddr = 0;
17004794b980Sdrh           }
1701e014a838Sdanielk1977 
1702e014a838Sdanielk1977           /* Evaluate the expression and insert it into the temp table */
1703e05c929bSdrh           if( isRowid && sqlite3ExprIsInteger(pE2, &iValToIns) ){
1704e05c929bSdrh             sqlite3VdbeAddOp3(v, OP_InsertInt, pExpr->iTable, r2, iValToIns);
1705e05c929bSdrh           }else{
1706ecc31805Sdrh             r3 = sqlite3ExprCodeTarget(pParse, pE2, r1);
170741a05b7bSdanielk1977             if( isRowid ){
1708e05c929bSdrh               sqlite3VdbeAddOp2(v, OP_MustBeInt, r3,
1709e05c929bSdrh                                 sqlite3VdbeCurrentAddr(v)+2);
171041a05b7bSdanielk1977               sqlite3VdbeAddOp3(v, OP_Insert, pExpr->iTable, r2, r3);
171141a05b7bSdanielk1977             }else{
1712ecc31805Sdrh               sqlite3VdbeAddOp4(v, OP_MakeRecord, r3, 1, r2, &affinity, 1);
17133c31fc23Sdrh               sqlite3ExprCacheAffinityChange(pParse, r3, 1);
17142d401ab8Sdrh               sqlite3VdbeAddOp2(v, OP_IdxInsert, pExpr->iTable, r2);
1715fef5208cSdrh             }
171641a05b7bSdanielk1977           }
1717e05c929bSdrh         }
17182d401ab8Sdrh         sqlite3ReleaseTempReg(pParse, r1);
17192d401ab8Sdrh         sqlite3ReleaseTempReg(pParse, r2);
1720fef5208cSdrh       }
172141a05b7bSdanielk1977       if( !isRowid ){
172266a5167bSdrh         sqlite3VdbeChangeP4(v, addr, (void *)&keyInfo, P4_KEYINFO);
172341a05b7bSdanielk1977       }
1724b3bce662Sdanielk1977       break;
1725fef5208cSdrh     }
1726fef5208cSdrh 
172751522cd3Sdrh     case TK_EXISTS:
1728fd773cf9Sdrh     case TK_SELECT:
1729fd773cf9Sdrh     default: {
1730fd773cf9Sdrh       /* If this has to be a scalar SELECT.  Generate code to put the
1731fef5208cSdrh       ** value of this select in a memory cell and record the number
1732fd773cf9Sdrh       ** of the memory cell in iColumn.  If this is an EXISTS, write
1733fd773cf9Sdrh       ** an integer 0 (not exists) or 1 (exists) into a memory cell
1734fd773cf9Sdrh       ** and record that memory cell in iColumn.
1735fef5208cSdrh       */
1736fd773cf9Sdrh       static const Token one = { "1", 1 };  /* Token for literal value 1 */
1737fd773cf9Sdrh       Select *pSel;                         /* SELECT statement to encode */
1738fd773cf9Sdrh       SelectDest dest;                      /* How to deal with SELECt result */
17391398ad36Sdrh 
1740cf697396Sshane       testcase( pExpr->op==TK_EXISTS );
1741cf697396Sshane       testcase( pExpr->op==TK_SELECT );
1742cf697396Sshane       assert( pExpr->op==TK_EXISTS || pExpr->op==TK_SELECT );
1743cf697396Sshane 
17446ab3a2ecSdanielk1977       assert( ExprHasProperty(pExpr, EP_xIsSelect) );
17456ab3a2ecSdanielk1977       pSel = pExpr->x.pSelect;
17461013c932Sdrh       sqlite3SelectDestInit(&dest, 0, ++pParse->nMem);
174751522cd3Sdrh       if( pExpr->op==TK_SELECT ){
17486c8c8ce0Sdanielk1977         dest.eDest = SRT_Mem;
17494c583128Sdrh         sqlite3VdbeAddOp2(v, OP_Null, 0, dest.iParm);
1750d4e70ebdSdrh         VdbeComment((v, "Init subquery result"));
175151522cd3Sdrh       }else{
17526c8c8ce0Sdanielk1977         dest.eDest = SRT_Exists;
17534c583128Sdrh         sqlite3VdbeAddOp2(v, OP_Integer, 0, dest.iParm);
1754d4e70ebdSdrh         VdbeComment((v, "Init EXISTS result"));
175551522cd3Sdrh       }
1756633e6d57Sdrh       sqlite3ExprDelete(pParse->db, pSel->pLimit);
1757a1644fd8Sdanielk1977       pSel->pLimit = sqlite3PExpr(pParse, TK_INTEGER, 0, 0, &one);
17587d10d5a6Sdrh       if( sqlite3Select(pParse, pSel, &dest) ){
17591450bc6eSdrh         return 0;
176094ccde58Sdrh       }
17611450bc6eSdrh       rReg = dest.iParm;
176233e619fcSdrh       ExprSetIrreducible(pExpr);
1763b3bce662Sdanielk1977       break;
176419a775c2Sdrh     }
1765cce7d176Sdrh   }
1766b3bce662Sdanielk1977 
176757dbd7b3Sdrh   if( testAddr ){
1768892d3179Sdrh     sqlite3VdbeJumpHere(v, testAddr-1);
1769b3bce662Sdanielk1977   }
1770ceea3321Sdrh   sqlite3ExprCachePop(pParse, 1);
1771fc976065Sdanielk1977 
17721450bc6eSdrh   return rReg;
1773cce7d176Sdrh }
177451522cd3Sdrh #endif /* SQLITE_OMIT_SUBQUERY */
1775cce7d176Sdrh 
1776e3365e6cSdrh #ifndef SQLITE_OMIT_SUBQUERY
1777e3365e6cSdrh /*
1778e3365e6cSdrh ** Generate code for an IN expression.
1779e3365e6cSdrh **
1780e3365e6cSdrh **      x IN (SELECT ...)
1781e3365e6cSdrh **      x IN (value, value, ...)
1782e3365e6cSdrh **
1783e3365e6cSdrh ** The left-hand side (LHS) is a scalar expression.  The right-hand side (RHS)
1784e3365e6cSdrh ** is an array of zero or more values.  The expression is true if the LHS is
1785e3365e6cSdrh ** contained within the RHS.  The value of the expression is unknown (NULL)
1786e3365e6cSdrh ** if the LHS is NULL or if the LHS is not contained within the RHS and the
1787e3365e6cSdrh ** RHS contains one or more NULL values.
1788e3365e6cSdrh **
1789e3365e6cSdrh ** This routine generates code will jump to destIfFalse if the LHS is not
1790e3365e6cSdrh ** contained within the RHS.  If due to NULLs we cannot determine if the LHS
1791e3365e6cSdrh ** is contained in the RHS then jump to destIfNull.  If the LHS is contained
1792e3365e6cSdrh ** within the RHS then fall through.
1793e3365e6cSdrh */
1794e3365e6cSdrh static void sqlite3ExprCodeIN(
1795e3365e6cSdrh   Parse *pParse,        /* Parsing and code generating context */
1796e3365e6cSdrh   Expr *pExpr,          /* The IN expression */
1797e3365e6cSdrh   int destIfFalse,      /* Jump here if LHS is not contained in the RHS */
1798e3365e6cSdrh   int destIfNull        /* Jump here if the results are unknown due to NULLs */
1799e3365e6cSdrh ){
1800e3365e6cSdrh   int rRhsHasNull = 0;  /* Register that is true if RHS contains NULL values */
1801e3365e6cSdrh   char affinity;        /* Comparison affinity to use */
1802e3365e6cSdrh   int eType;            /* Type of the RHS */
1803e3365e6cSdrh   int r1;               /* Temporary use register */
1804e3365e6cSdrh   Vdbe *v;              /* Statement under construction */
1805e3365e6cSdrh 
1806e3365e6cSdrh   /* Compute the RHS.   After this step, the table with cursor
1807e3365e6cSdrh   ** pExpr->iTable will contains the values that make up the RHS.
1808e3365e6cSdrh   */
1809e3365e6cSdrh   v = pParse->pVdbe;
1810e3365e6cSdrh   assert( v!=0 );       /* OOM detected prior to this routine */
1811e3365e6cSdrh   VdbeNoopComment((v, "begin IN expr"));
1812e3365e6cSdrh   eType = sqlite3FindInIndex(pParse, pExpr, &rRhsHasNull);
1813e3365e6cSdrh 
1814e3365e6cSdrh   /* Figure out the affinity to use to create a key from the results
1815e3365e6cSdrh   ** of the expression. affinityStr stores a static string suitable for
1816e3365e6cSdrh   ** P4 of OP_MakeRecord.
1817e3365e6cSdrh   */
1818e3365e6cSdrh   affinity = comparisonAffinity(pExpr);
1819e3365e6cSdrh 
1820e3365e6cSdrh   /* Code the LHS, the <expr> from "<expr> IN (...)".
1821e3365e6cSdrh   */
1822e3365e6cSdrh   sqlite3ExprCachePush(pParse);
1823e3365e6cSdrh   r1 = sqlite3GetTempReg(pParse);
1824e3365e6cSdrh   sqlite3ExprCode(pParse, pExpr->pLeft, r1);
1825e3365e6cSdrh   sqlite3VdbeAddOp2(v, OP_IsNull, r1, destIfNull);
1826e3365e6cSdrh 
1827e3365e6cSdrh 
1828e3365e6cSdrh   if( eType==IN_INDEX_ROWID ){
1829e3365e6cSdrh     /* In this case, the RHS is the ROWID of table b-tree
1830e3365e6cSdrh     */
1831e3365e6cSdrh     sqlite3VdbeAddOp2(v, OP_MustBeInt, r1, destIfFalse);
1832e3365e6cSdrh     sqlite3VdbeAddOp3(v, OP_NotExists, pExpr->iTable, destIfFalse, r1);
1833e3365e6cSdrh   }else{
1834e3365e6cSdrh     /* In this case, the RHS is an index b-tree.
1835e3365e6cSdrh     */
18368cff69dfSdrh     sqlite3VdbeAddOp4(v, OP_Affinity, r1, 1, 0, &affinity, 1);
1837e3365e6cSdrh 
1838e3365e6cSdrh     /* If the set membership test fails, then the result of the
1839e3365e6cSdrh     ** "x IN (...)" expression must be either 0 or NULL. If the set
1840e3365e6cSdrh     ** contains no NULL values, then the result is 0. If the set
1841e3365e6cSdrh     ** contains one or more NULL values, then the result of the
1842e3365e6cSdrh     ** expression is also NULL.
1843e3365e6cSdrh     */
1844e3365e6cSdrh     if( rRhsHasNull==0 || destIfFalse==destIfNull ){
1845e3365e6cSdrh       /* This branch runs if it is known at compile time that the RHS
1846e3365e6cSdrh       ** cannot contain NULL values. This happens as the result
1847e3365e6cSdrh       ** of a "NOT NULL" constraint in the database schema.
1848e3365e6cSdrh       **
1849e3365e6cSdrh       ** Also run this branch if NULL is equivalent to FALSE
1850e3365e6cSdrh       ** for this particular IN operator.
1851e3365e6cSdrh       */
18528cff69dfSdrh       sqlite3VdbeAddOp4Int(v, OP_NotFound, pExpr->iTable, destIfFalse, r1, 1);
1853e3365e6cSdrh 
1854e3365e6cSdrh     }else{
1855e3365e6cSdrh       /* In this branch, the RHS of the IN might contain a NULL and
1856e3365e6cSdrh       ** the presence of a NULL on the RHS makes a difference in the
1857e3365e6cSdrh       ** outcome.
1858e3365e6cSdrh       */
1859e3365e6cSdrh       int j1, j2, j3;
1860e3365e6cSdrh 
1861e3365e6cSdrh       /* First check to see if the LHS is contained in the RHS.  If so,
1862e3365e6cSdrh       ** then the presence of NULLs in the RHS does not matter, so jump
1863e3365e6cSdrh       ** over all of the code that follows.
1864e3365e6cSdrh       */
18658cff69dfSdrh       j1 = sqlite3VdbeAddOp4Int(v, OP_Found, pExpr->iTable, 0, r1, 1);
1866e3365e6cSdrh 
1867e3365e6cSdrh       /* Here we begin generating code that runs if the LHS is not
1868e3365e6cSdrh       ** contained within the RHS.  Generate additional code that
1869e3365e6cSdrh       ** tests the RHS for NULLs.  If the RHS contains a NULL then
1870e3365e6cSdrh       ** jump to destIfNull.  If there are no NULLs in the RHS then
1871e3365e6cSdrh       ** jump to destIfFalse.
1872e3365e6cSdrh       */
1873e3365e6cSdrh       j2 = sqlite3VdbeAddOp1(v, OP_NotNull, rRhsHasNull);
18748cff69dfSdrh       j3 = sqlite3VdbeAddOp4Int(v, OP_Found, pExpr->iTable, 0, rRhsHasNull, 1);
1875e3365e6cSdrh       sqlite3VdbeAddOp2(v, OP_Integer, -1, rRhsHasNull);
1876e3365e6cSdrh       sqlite3VdbeJumpHere(v, j3);
1877e3365e6cSdrh       sqlite3VdbeAddOp2(v, OP_AddImm, rRhsHasNull, 1);
1878e3365e6cSdrh       sqlite3VdbeJumpHere(v, j2);
1879e3365e6cSdrh 
1880e3365e6cSdrh       /* Jump to the appropriate target depending on whether or not
1881e3365e6cSdrh       ** the RHS contains a NULL
1882e3365e6cSdrh       */
1883e3365e6cSdrh       sqlite3VdbeAddOp2(v, OP_If, rRhsHasNull, destIfNull);
1884e3365e6cSdrh       sqlite3VdbeAddOp2(v, OP_Goto, 0, destIfFalse);
1885e3365e6cSdrh 
1886e3365e6cSdrh       /* The OP_Found at the top of this branch jumps here when true,
1887e3365e6cSdrh       ** causing the overall IN expression evaluation to fall through.
1888e3365e6cSdrh       */
1889e3365e6cSdrh       sqlite3VdbeJumpHere(v, j1);
1890e3365e6cSdrh     }
1891e3365e6cSdrh   }
1892e3365e6cSdrh   sqlite3ReleaseTempReg(pParse, r1);
1893e3365e6cSdrh   sqlite3ExprCachePop(pParse, 1);
1894e3365e6cSdrh   VdbeComment((v, "end IN expr"));
1895e3365e6cSdrh }
1896e3365e6cSdrh #endif /* SQLITE_OMIT_SUBQUERY */
1897e3365e6cSdrh 
1898cce7d176Sdrh /*
1899598f1340Sdrh ** Duplicate an 8-byte value
1900598f1340Sdrh */
1901598f1340Sdrh static char *dup8bytes(Vdbe *v, const char *in){
1902598f1340Sdrh   char *out = sqlite3DbMallocRaw(sqlite3VdbeDb(v), 8);
1903598f1340Sdrh   if( out ){
1904598f1340Sdrh     memcpy(out, in, 8);
1905598f1340Sdrh   }
1906598f1340Sdrh   return out;
1907598f1340Sdrh }
1908598f1340Sdrh 
1909598f1340Sdrh /*
1910598f1340Sdrh ** Generate an instruction that will put the floating point
19119cbf3425Sdrh ** value described by z[0..n-1] into register iMem.
19120cf19ed8Sdrh **
19130cf19ed8Sdrh ** The z[] string will probably not be zero-terminated.  But the
19140cf19ed8Sdrh ** z[n] character is guaranteed to be something that does not look
19150cf19ed8Sdrh ** like the continuation of the number.
1916598f1340Sdrh */
1917b7916a78Sdrh static void codeReal(Vdbe *v, const char *z, int negateFlag, int iMem){
1918fd773cf9Sdrh   if( ALWAYS(z!=0) ){
1919598f1340Sdrh     double value;
1920598f1340Sdrh     char *zV;
1921598f1340Sdrh     sqlite3AtoF(z, &value);
1922d0015161Sdrh     assert( !sqlite3IsNaN(value) ); /* The new AtoF never returns NaN */
1923598f1340Sdrh     if( negateFlag ) value = -value;
1924598f1340Sdrh     zV = dup8bytes(v, (char*)&value);
19259de221dfSdrh     sqlite3VdbeAddOp4(v, OP_Real, 0, iMem, 0, zV, P4_REAL);
1926598f1340Sdrh   }
1927598f1340Sdrh }
1928598f1340Sdrh 
1929598f1340Sdrh 
1930598f1340Sdrh /*
1931fec19aadSdrh ** Generate an instruction that will put the integer describe by
19329cbf3425Sdrh ** text z[0..n-1] into register iMem.
19330cf19ed8Sdrh **
19340cf19ed8Sdrh ** The z[] string will probably not be zero-terminated.  But the
19350cf19ed8Sdrh ** z[n] character is guaranteed to be something that does not look
19360cf19ed8Sdrh ** like the continuation of the number.
1937fec19aadSdrh */
193892b01d53Sdrh static void codeInteger(Vdbe *v, Expr *pExpr, int negFlag, int iMem){
193992b01d53Sdrh   if( pExpr->flags & EP_IntValue ){
194033e619fcSdrh     int i = pExpr->u.iValue;
194192b01d53Sdrh     if( negFlag ) i = -i;
194292b01d53Sdrh     sqlite3VdbeAddOp2(v, OP_Integer, i, iMem);
1943fd773cf9Sdrh   }else{
1944fd773cf9Sdrh     const char *z = pExpr->u.zToken;
1945fd773cf9Sdrh     assert( z!=0 );
1946fd773cf9Sdrh     if( sqlite3FitsIn64Bits(z, negFlag) ){
1947598f1340Sdrh       i64 value;
1948598f1340Sdrh       char *zV;
1949598f1340Sdrh       sqlite3Atoi64(z, &value);
19509de221dfSdrh       if( negFlag ) value = -value;
1951598f1340Sdrh       zV = dup8bytes(v, (char*)&value);
19529de221dfSdrh       sqlite3VdbeAddOp4(v, OP_Int64, 0, iMem, 0, zV, P4_INT64);
1953fec19aadSdrh     }else{
1954b7916a78Sdrh       codeReal(v, z, negFlag, iMem);
1955fec19aadSdrh     }
1956fec19aadSdrh   }
1957c9cf901dSdanielk1977 }
1958fec19aadSdrh 
1959ceea3321Sdrh /*
1960ceea3321Sdrh ** Clear a cache entry.
1961ceea3321Sdrh */
1962ceea3321Sdrh static void cacheEntryClear(Parse *pParse, struct yColCache *p){
1963ceea3321Sdrh   if( p->tempReg ){
1964ceea3321Sdrh     if( pParse->nTempReg<ArraySize(pParse->aTempReg) ){
1965ceea3321Sdrh       pParse->aTempReg[pParse->nTempReg++] = p->iReg;
1966ceea3321Sdrh     }
1967ceea3321Sdrh     p->tempReg = 0;
1968ceea3321Sdrh   }
1969ceea3321Sdrh }
1970ceea3321Sdrh 
1971ceea3321Sdrh 
1972ceea3321Sdrh /*
1973ceea3321Sdrh ** Record in the column cache that a particular column from a
1974ceea3321Sdrh ** particular table is stored in a particular register.
1975ceea3321Sdrh */
1976ceea3321Sdrh void sqlite3ExprCacheStore(Parse *pParse, int iTab, int iCol, int iReg){
1977ceea3321Sdrh   int i;
1978ceea3321Sdrh   int minLru;
1979ceea3321Sdrh   int idxLru;
1980ceea3321Sdrh   struct yColCache *p;
1981ceea3321Sdrh 
198220411ea7Sdrh   assert( iReg>0 );  /* Register numbers are always positive */
198320411ea7Sdrh   assert( iCol>=-1 && iCol<32768 );  /* Finite column numbers */
198420411ea7Sdrh 
1985ceea3321Sdrh   /* First replace any existing entry */
1986ceea3321Sdrh   for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){
1987ceea3321Sdrh     if( p->iReg && p->iTable==iTab && p->iColumn==iCol ){
1988ceea3321Sdrh       cacheEntryClear(pParse, p);
1989ceea3321Sdrh       p->iLevel = pParse->iCacheLevel;
1990ceea3321Sdrh       p->iReg = iReg;
1991ceea3321Sdrh       p->affChange = 0;
1992ceea3321Sdrh       p->lru = pParse->iCacheCnt++;
1993ceea3321Sdrh       return;
1994ceea3321Sdrh     }
1995ceea3321Sdrh   }
1996ceea3321Sdrh 
1997ceea3321Sdrh   /* Find an empty slot and replace it */
1998ceea3321Sdrh   for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){
1999ceea3321Sdrh     if( p->iReg==0 ){
2000ceea3321Sdrh       p->iLevel = pParse->iCacheLevel;
2001ceea3321Sdrh       p->iTable = iTab;
2002ceea3321Sdrh       p->iColumn = iCol;
2003ceea3321Sdrh       p->iReg = iReg;
2004ceea3321Sdrh       p->affChange = 0;
2005ceea3321Sdrh       p->tempReg = 0;
2006ceea3321Sdrh       p->lru = pParse->iCacheCnt++;
2007ceea3321Sdrh       return;
2008ceea3321Sdrh     }
2009ceea3321Sdrh   }
2010ceea3321Sdrh 
2011ceea3321Sdrh   /* Replace the last recently used */
2012ceea3321Sdrh   minLru = 0x7fffffff;
2013ceea3321Sdrh   idxLru = -1;
2014ceea3321Sdrh   for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){
2015ceea3321Sdrh     if( p->lru<minLru ){
2016ceea3321Sdrh       idxLru = i;
2017ceea3321Sdrh       minLru = p->lru;
2018ceea3321Sdrh     }
2019ceea3321Sdrh   }
202020411ea7Sdrh   if( ALWAYS(idxLru>=0) ){
2021ceea3321Sdrh     p = &pParse->aColCache[idxLru];
2022ceea3321Sdrh     p->iLevel = pParse->iCacheLevel;
2023ceea3321Sdrh     p->iTable = iTab;
2024ceea3321Sdrh     p->iColumn = iCol;
2025ceea3321Sdrh     p->iReg = iReg;
2026ceea3321Sdrh     p->affChange = 0;
2027ceea3321Sdrh     p->tempReg = 0;
2028ceea3321Sdrh     p->lru = pParse->iCacheCnt++;
2029ceea3321Sdrh     return;
2030ceea3321Sdrh   }
2031ceea3321Sdrh }
2032ceea3321Sdrh 
2033ceea3321Sdrh /*
2034ceea3321Sdrh ** Indicate that a register is being overwritten.  Purge the register
2035ceea3321Sdrh ** from the column cache.
2036ceea3321Sdrh */
2037ceea3321Sdrh void sqlite3ExprCacheRemove(Parse *pParse, int iReg){
2038ceea3321Sdrh   int i;
2039ceea3321Sdrh   struct yColCache *p;
2040ceea3321Sdrh   for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){
2041ceea3321Sdrh     if( p->iReg==iReg ){
2042ceea3321Sdrh       cacheEntryClear(pParse, p);
2043ceea3321Sdrh       p->iReg = 0;
2044ceea3321Sdrh     }
2045ceea3321Sdrh   }
2046ceea3321Sdrh }
2047ceea3321Sdrh 
2048ceea3321Sdrh /*
2049ceea3321Sdrh ** Remember the current column cache context.  Any new entries added
2050ceea3321Sdrh ** added to the column cache after this call are removed when the
2051ceea3321Sdrh ** corresponding pop occurs.
2052ceea3321Sdrh */
2053ceea3321Sdrh void sqlite3ExprCachePush(Parse *pParse){
2054ceea3321Sdrh   pParse->iCacheLevel++;
2055ceea3321Sdrh }
2056ceea3321Sdrh 
2057ceea3321Sdrh /*
2058ceea3321Sdrh ** Remove from the column cache any entries that were added since the
2059ceea3321Sdrh ** the previous N Push operations.  In other words, restore the cache
2060ceea3321Sdrh ** to the state it was in N Pushes ago.
2061ceea3321Sdrh */
2062ceea3321Sdrh void sqlite3ExprCachePop(Parse *pParse, int N){
2063ceea3321Sdrh   int i;
2064ceea3321Sdrh   struct yColCache *p;
2065ceea3321Sdrh   assert( N>0 );
2066ceea3321Sdrh   assert( pParse->iCacheLevel>=N );
2067ceea3321Sdrh   pParse->iCacheLevel -= N;
2068ceea3321Sdrh   for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){
2069ceea3321Sdrh     if( p->iReg && p->iLevel>pParse->iCacheLevel ){
2070ceea3321Sdrh       cacheEntryClear(pParse, p);
2071ceea3321Sdrh       p->iReg = 0;
2072ceea3321Sdrh     }
2073ceea3321Sdrh   }
2074ceea3321Sdrh }
2075945498f3Sdrh 
2076945498f3Sdrh /*
20775cd79239Sdrh ** When a cached column is reused, make sure that its register is
20785cd79239Sdrh ** no longer available as a temp register.  ticket #3879:  that same
20795cd79239Sdrh ** register might be in the cache in multiple places, so be sure to
20805cd79239Sdrh ** get them all.
20815cd79239Sdrh */
20825cd79239Sdrh static void sqlite3ExprCachePinRegister(Parse *pParse, int iReg){
20835cd79239Sdrh   int i;
20845cd79239Sdrh   struct yColCache *p;
20855cd79239Sdrh   for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){
20865cd79239Sdrh     if( p->iReg==iReg ){
20875cd79239Sdrh       p->tempReg = 0;
20885cd79239Sdrh     }
20895cd79239Sdrh   }
20905cd79239Sdrh }
20915cd79239Sdrh 
20925cd79239Sdrh /*
2093945498f3Sdrh ** Generate code that will extract the iColumn-th column from
2094e55cbd72Sdrh ** table pTab and store the column value in a register.  An effort
2095e55cbd72Sdrh ** is made to store the column value in register iReg, but this is
2096e55cbd72Sdrh ** not guaranteed.  The location of the column value is returned.
2097e55cbd72Sdrh **
2098e55cbd72Sdrh ** There must be an open cursor to pTab in iTable when this routine
2099e55cbd72Sdrh ** is called.  If iColumn<0 then code is generated that extracts the rowid.
2100da250ea5Sdrh **
2101da250ea5Sdrh ** This routine might attempt to reuse the value of the column that
2102da250ea5Sdrh ** has already been loaded into a register.  The value will always
2103da250ea5Sdrh ** be used if it has not undergone any affinity changes.  But if
2104da250ea5Sdrh ** an affinity change has occurred, then the cached value will only be
2105da250ea5Sdrh ** used if allowAffChng is true.
2106945498f3Sdrh */
2107e55cbd72Sdrh int sqlite3ExprCodeGetColumn(
2108e55cbd72Sdrh   Parse *pParse,   /* Parsing and code generating context */
21092133d822Sdrh   Table *pTab,     /* Description of the table we are reading from */
21102133d822Sdrh   int iColumn,     /* Index of the table column */
21112133d822Sdrh   int iTable,      /* The cursor pointing to the table */
2112da250ea5Sdrh   int iReg,        /* Store results here */
2113da250ea5Sdrh   int allowAffChng /* True if prior affinity changes are OK */
21142133d822Sdrh ){
2115e55cbd72Sdrh   Vdbe *v = pParse->pVdbe;
2116e55cbd72Sdrh   int i;
2117da250ea5Sdrh   struct yColCache *p;
2118e55cbd72Sdrh 
2119ceea3321Sdrh   for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){
2120ceea3321Sdrh     if( p->iReg>0 && p->iTable==iTable && p->iColumn==iColumn
2121da250ea5Sdrh            && (!p->affChange || allowAffChng) ){
2122ceea3321Sdrh       p->lru = pParse->iCacheCnt++;
21235cd79239Sdrh       sqlite3ExprCachePinRegister(pParse, p->iReg);
2124da250ea5Sdrh       return p->iReg;
2125e55cbd72Sdrh     }
2126e55cbd72Sdrh   }
2127e55cbd72Sdrh   assert( v!=0 );
2128945498f3Sdrh   if( iColumn<0 ){
2129044925beSdrh     sqlite3VdbeAddOp2(v, OP_Rowid, iTable, iReg);
213020411ea7Sdrh   }else if( ALWAYS(pTab!=0) ){
2131945498f3Sdrh     int op = IsVirtual(pTab) ? OP_VColumn : OP_Column;
21322133d822Sdrh     sqlite3VdbeAddOp3(v, op, iTable, iColumn, iReg);
2133c7538b5fSdanielk1977     sqlite3ColumnDefault(v, pTab, iColumn, iReg);
2134945498f3Sdrh   }
2135ceea3321Sdrh   sqlite3ExprCacheStore(pParse, iTable, iColumn, iReg);
2136e55cbd72Sdrh   return iReg;
2137e55cbd72Sdrh }
2138e55cbd72Sdrh 
2139e55cbd72Sdrh /*
2140ceea3321Sdrh ** Clear all column cache entries.
2141e55cbd72Sdrh */
2142ceea3321Sdrh void sqlite3ExprCacheClear(Parse *pParse){
2143e55cbd72Sdrh   int i;
2144ceea3321Sdrh   struct yColCache *p;
2145ceea3321Sdrh 
2146ceea3321Sdrh   for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){
2147ceea3321Sdrh     if( p->iReg ){
2148ceea3321Sdrh       cacheEntryClear(pParse, p);
2149ceea3321Sdrh       p->iReg = 0;
2150e55cbd72Sdrh     }
2151da250ea5Sdrh   }
2152da250ea5Sdrh }
2153e55cbd72Sdrh 
2154e55cbd72Sdrh /*
2155da250ea5Sdrh ** Record the fact that an affinity change has occurred on iCount
2156da250ea5Sdrh ** registers starting with iStart.
2157e55cbd72Sdrh */
2158da250ea5Sdrh void sqlite3ExprCacheAffinityChange(Parse *pParse, int iStart, int iCount){
2159da250ea5Sdrh   int iEnd = iStart + iCount - 1;
2160e55cbd72Sdrh   int i;
2161ceea3321Sdrh   struct yColCache *p;
2162ceea3321Sdrh   for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){
2163ceea3321Sdrh     int r = p->iReg;
2164da250ea5Sdrh     if( r>=iStart && r<=iEnd ){
2165ceea3321Sdrh       p->affChange = 1;
2166e55cbd72Sdrh     }
2167e55cbd72Sdrh   }
2168e55cbd72Sdrh }
2169e55cbd72Sdrh 
2170e55cbd72Sdrh /*
2171b21e7c70Sdrh ** Generate code to move content from registers iFrom...iFrom+nReg-1
2172b21e7c70Sdrh ** over to iTo..iTo+nReg-1. Keep the column cache up-to-date.
2173e55cbd72Sdrh */
2174b21e7c70Sdrh void sqlite3ExprCodeMove(Parse *pParse, int iFrom, int iTo, int nReg){
2175e55cbd72Sdrh   int i;
2176ceea3321Sdrh   struct yColCache *p;
217720411ea7Sdrh   if( NEVER(iFrom==iTo) ) return;
2178b21e7c70Sdrh   sqlite3VdbeAddOp3(pParse->pVdbe, OP_Move, iFrom, iTo, nReg);
2179ceea3321Sdrh   for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){
2180ceea3321Sdrh     int x = p->iReg;
2181b21e7c70Sdrh     if( x>=iFrom && x<iFrom+nReg ){
2182ceea3321Sdrh       p->iReg += iTo-iFrom;
2183e55cbd72Sdrh     }
2184e55cbd72Sdrh   }
2185945498f3Sdrh }
2186945498f3Sdrh 
2187fec19aadSdrh /*
218892b01d53Sdrh ** Generate code to copy content from registers iFrom...iFrom+nReg-1
218992b01d53Sdrh ** over to iTo..iTo+nReg-1.
219092b01d53Sdrh */
219192b01d53Sdrh void sqlite3ExprCodeCopy(Parse *pParse, int iFrom, int iTo, int nReg){
219292b01d53Sdrh   int i;
219320411ea7Sdrh   if( NEVER(iFrom==iTo) ) return;
219492b01d53Sdrh   for(i=0; i<nReg; i++){
219592b01d53Sdrh     sqlite3VdbeAddOp2(pParse->pVdbe, OP_Copy, iFrom+i, iTo+i);
219692b01d53Sdrh   }
219792b01d53Sdrh }
219892b01d53Sdrh 
219992b01d53Sdrh /*
2200652fbf55Sdrh ** Return true if any register in the range iFrom..iTo (inclusive)
2201652fbf55Sdrh ** is used as part of the column cache.
2202652fbf55Sdrh */
2203652fbf55Sdrh static int usedAsColumnCache(Parse *pParse, int iFrom, int iTo){
2204652fbf55Sdrh   int i;
2205ceea3321Sdrh   struct yColCache *p;
2206ceea3321Sdrh   for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){
2207ceea3321Sdrh     int r = p->iReg;
2208652fbf55Sdrh     if( r>=iFrom && r<=iTo ) return 1;
2209652fbf55Sdrh   }
2210652fbf55Sdrh   return 0;
2211652fbf55Sdrh }
2212652fbf55Sdrh 
2213652fbf55Sdrh /*
2214191b54cbSdrh ** If the last instruction coded is an ephemeral copy of any of
2215191b54cbSdrh ** the registers in the nReg registers beginning with iReg, then
2216191b54cbSdrh ** convert the last instruction from OP_SCopy to OP_Copy.
2217191b54cbSdrh */
2218191b54cbSdrh void sqlite3ExprHardCopy(Parse *pParse, int iReg, int nReg){
2219191b54cbSdrh   VdbeOp *pOp;
2220191b54cbSdrh   Vdbe *v;
2221191b54cbSdrh 
222220411ea7Sdrh   assert( pParse->db->mallocFailed==0 );
2223191b54cbSdrh   v = pParse->pVdbe;
222420411ea7Sdrh   assert( v!=0 );
222520411ea7Sdrh   pOp = sqlite3VdbeGetOp(v, -1);
222620411ea7Sdrh   assert( pOp!=0 );
222720411ea7Sdrh   if( pOp->opcode==OP_SCopy && pOp->p1>=iReg && pOp->p1<iReg+nReg ){
2228191b54cbSdrh     pOp->opcode = OP_Copy;
2229191b54cbSdrh   }
2230191b54cbSdrh }
2231191b54cbSdrh 
2232191b54cbSdrh /*
22338b213899Sdrh ** Generate code to store the value of the iAlias-th alias in register
22348b213899Sdrh ** target.  The first time this is called, pExpr is evaluated to compute
22358b213899Sdrh ** the value of the alias.  The value is stored in an auxiliary register
22368b213899Sdrh ** and the number of that register is returned.  On subsequent calls,
22378b213899Sdrh ** the register number is returned without generating any code.
22388b213899Sdrh **
22398b213899Sdrh ** Note that in order for this to work, code must be generated in the
22408b213899Sdrh ** same order that it is executed.
22418b213899Sdrh **
22428b213899Sdrh ** Aliases are numbered starting with 1.  So iAlias is in the range
22438b213899Sdrh ** of 1 to pParse->nAlias inclusive.
22448b213899Sdrh **
22458b213899Sdrh ** pParse->aAlias[iAlias-1] records the register number where the value
22468b213899Sdrh ** of the iAlias-th alias is stored.  If zero, that means that the
22478b213899Sdrh ** alias has not yet been computed.
22488b213899Sdrh */
224931daa63fSdrh static int codeAlias(Parse *pParse, int iAlias, Expr *pExpr, int target){
2250ceea3321Sdrh #if 0
22518b213899Sdrh   sqlite3 *db = pParse->db;
22528b213899Sdrh   int iReg;
2253555f8de7Sdrh   if( pParse->nAliasAlloc<pParse->nAlias ){
2254555f8de7Sdrh     pParse->aAlias = sqlite3DbReallocOrFree(db, pParse->aAlias,
22558b213899Sdrh                                  sizeof(pParse->aAlias[0])*pParse->nAlias );
2256555f8de7Sdrh     testcase( db->mallocFailed && pParse->nAliasAlloc>0 );
22578b213899Sdrh     if( db->mallocFailed ) return 0;
2258555f8de7Sdrh     memset(&pParse->aAlias[pParse->nAliasAlloc], 0,
2259555f8de7Sdrh            (pParse->nAlias-pParse->nAliasAlloc)*sizeof(pParse->aAlias[0]));
2260555f8de7Sdrh     pParse->nAliasAlloc = pParse->nAlias;
22618b213899Sdrh   }
22628b213899Sdrh   assert( iAlias>0 && iAlias<=pParse->nAlias );
22638b213899Sdrh   iReg = pParse->aAlias[iAlias-1];
22648b213899Sdrh   if( iReg==0 ){
2265ceea3321Sdrh     if( pParse->iCacheLevel>0 ){
226631daa63fSdrh       iReg = sqlite3ExprCodeTarget(pParse, pExpr, target);
226731daa63fSdrh     }else{
22688b213899Sdrh       iReg = ++pParse->nMem;
22698b213899Sdrh       sqlite3ExprCode(pParse, pExpr, iReg);
22708b213899Sdrh       pParse->aAlias[iAlias-1] = iReg;
22718b213899Sdrh     }
227231daa63fSdrh   }
22738b213899Sdrh   return iReg;
2274ceea3321Sdrh #else
227560a4b538Sshane   UNUSED_PARAMETER(iAlias);
2276ceea3321Sdrh   return sqlite3ExprCodeTarget(pParse, pExpr, target);
2277ceea3321Sdrh #endif
22788b213899Sdrh }
22798b213899Sdrh 
22808b213899Sdrh /*
2281cce7d176Sdrh ** Generate code into the current Vdbe to evaluate the given
22822dcef11bSdrh ** expression.  Attempt to store the results in register "target".
22832dcef11bSdrh ** Return the register where results are stored.
2284389a1adbSdrh **
22858b213899Sdrh ** With this routine, there is no guarantee that results will
22862dcef11bSdrh ** be stored in target.  The result might be stored in some other
22872dcef11bSdrh ** register if it is convenient to do so.  The calling function
22882dcef11bSdrh ** must check the return code and move the results to the desired
22892dcef11bSdrh ** register.
2290cce7d176Sdrh */
2291678ccce8Sdrh int sqlite3ExprCodeTarget(Parse *pParse, Expr *pExpr, int target){
22922dcef11bSdrh   Vdbe *v = pParse->pVdbe;  /* The VM under construction */
22932dcef11bSdrh   int op;                   /* The opcode being coded */
22942dcef11bSdrh   int inReg = target;       /* Results stored in register inReg */
22952dcef11bSdrh   int regFree1 = 0;         /* If non-zero free this temporary register */
22962dcef11bSdrh   int regFree2 = 0;         /* If non-zero free this temporary register */
2297678ccce8Sdrh   int r1, r2, r3, r4;       /* Various register numbers */
229820411ea7Sdrh   sqlite3 *db = pParse->db; /* The database connection */
2299ffe07b2dSdrh 
23009cbf3425Sdrh   assert( target>0 && target<=pParse->nMem );
230120411ea7Sdrh   if( v==0 ){
230220411ea7Sdrh     assert( pParse->db->mallocFailed );
230320411ea7Sdrh     return 0;
230420411ea7Sdrh   }
2305389a1adbSdrh 
2306389a1adbSdrh   if( pExpr==0 ){
2307389a1adbSdrh     op = TK_NULL;
2308389a1adbSdrh   }else{
2309f2bc013cSdrh     op = pExpr->op;
2310389a1adbSdrh   }
2311f2bc013cSdrh   switch( op ){
231213449892Sdrh     case TK_AGG_COLUMN: {
231313449892Sdrh       AggInfo *pAggInfo = pExpr->pAggInfo;
231413449892Sdrh       struct AggInfo_col *pCol = &pAggInfo->aCol[pExpr->iAgg];
231513449892Sdrh       if( !pAggInfo->directMode ){
23169de221dfSdrh         assert( pCol->iMem>0 );
23179de221dfSdrh         inReg = pCol->iMem;
231813449892Sdrh         break;
231913449892Sdrh       }else if( pAggInfo->useSortingIdx ){
2320389a1adbSdrh         sqlite3VdbeAddOp3(v, OP_Column, pAggInfo->sortingIdx,
2321389a1adbSdrh                               pCol->iSorterColumn, target);
232213449892Sdrh         break;
232313449892Sdrh       }
232413449892Sdrh       /* Otherwise, fall thru into the TK_COLUMN case */
232513449892Sdrh     }
2326967e8b73Sdrh     case TK_COLUMN: {
2327ffe07b2dSdrh       if( pExpr->iTable<0 ){
2328ffe07b2dSdrh         /* This only happens when coding check constraints */
2329aa9b8963Sdrh         assert( pParse->ckBase>0 );
2330aa9b8963Sdrh         inReg = pExpr->iColumn + pParse->ckBase;
2331c4a3c779Sdrh       }else{
2332c5499befSdrh         testcase( (pExpr->flags & EP_AnyAff)!=0 );
2333e55cbd72Sdrh         inReg = sqlite3ExprCodeGetColumn(pParse, pExpr->pTab,
2334da250ea5Sdrh                                  pExpr->iColumn, pExpr->iTable, target,
2335da250ea5Sdrh                                  pExpr->flags & EP_AnyAff);
23362282792aSdrh       }
2337cce7d176Sdrh       break;
2338cce7d176Sdrh     }
2339cce7d176Sdrh     case TK_INTEGER: {
234092b01d53Sdrh       codeInteger(v, pExpr, 0, target);
2341fec19aadSdrh       break;
234251e9a445Sdrh     }
2343598f1340Sdrh     case TK_FLOAT: {
234433e619fcSdrh       assert( !ExprHasProperty(pExpr, EP_IntValue) );
234533e619fcSdrh       codeReal(v, pExpr->u.zToken, 0, target);
2346598f1340Sdrh       break;
2347598f1340Sdrh     }
2348fec19aadSdrh     case TK_STRING: {
234933e619fcSdrh       assert( !ExprHasProperty(pExpr, EP_IntValue) );
235033e619fcSdrh       sqlite3VdbeAddOp4(v, OP_String8, 0, target, 0, pExpr->u.zToken, 0);
2351cce7d176Sdrh       break;
2352cce7d176Sdrh     }
2353f0863fe5Sdrh     case TK_NULL: {
23549de221dfSdrh       sqlite3VdbeAddOp2(v, OP_Null, 0, target);
2355f0863fe5Sdrh       break;
2356f0863fe5Sdrh     }
23575338a5f7Sdanielk1977 #ifndef SQLITE_OMIT_BLOB_LITERAL
2358c572ef7fSdanielk1977     case TK_BLOB: {
23596c8c6cecSdrh       int n;
23606c8c6cecSdrh       const char *z;
2361ca48c90fSdrh       char *zBlob;
236233e619fcSdrh       assert( !ExprHasProperty(pExpr, EP_IntValue) );
236333e619fcSdrh       assert( pExpr->u.zToken[0]=='x' || pExpr->u.zToken[0]=='X' );
236433e619fcSdrh       assert( pExpr->u.zToken[1]=='\'' );
236533e619fcSdrh       z = &pExpr->u.zToken[2];
2366b7916a78Sdrh       n = sqlite3Strlen30(z) - 1;
2367b7916a78Sdrh       assert( z[n]=='\'' );
2368ca48c90fSdrh       zBlob = sqlite3HexToBlob(sqlite3VdbeDb(v), z, n);
2369ca48c90fSdrh       sqlite3VdbeAddOp4(v, OP_Blob, n/2, target, 0, zBlob, P4_DYNAMIC);
2370c572ef7fSdanielk1977       break;
2371c572ef7fSdanielk1977     }
23725338a5f7Sdanielk1977 #endif
237350457896Sdrh     case TK_VARIABLE: {
237408de1490Sdrh       VdbeOp *pOp;
237533e619fcSdrh       assert( !ExprHasProperty(pExpr, EP_IntValue) );
237633e619fcSdrh       assert( pExpr->u.zToken!=0 );
237733e619fcSdrh       assert( pExpr->u.zToken[0]!=0 );
237833e619fcSdrh       if( pExpr->u.zToken[1]==0
237920411ea7Sdrh          && (pOp = sqlite3VdbeGetOp(v, -1))->opcode==OP_Variable
2380937d0deaSdan          && pOp->p1+pOp->p3==pExpr->iColumn
238108de1490Sdrh          && pOp->p2+pOp->p3==target
238208de1490Sdrh          && pOp->p4.z==0
238308de1490Sdrh       ){
238408de1490Sdrh         /* If the previous instruction was a copy of the previous unnamed
238508de1490Sdrh         ** parameter into the previous register, then simply increment the
238608de1490Sdrh         ** repeat count on the prior instruction rather than making a new
238708de1490Sdrh         ** instruction.
238808de1490Sdrh         */
238908de1490Sdrh         pOp->p3++;
239008de1490Sdrh       }else{
2391937d0deaSdan         sqlite3VdbeAddOp3(v, OP_Variable, pExpr->iColumn, target, 1);
239233e619fcSdrh         if( pExpr->u.zToken[1]!=0 ){
239333e619fcSdrh           sqlite3VdbeChangeP4(v, -1, pExpr->u.zToken, 0);
2394895d7472Sdrh         }
239508de1490Sdrh       }
239650457896Sdrh       break;
239750457896Sdrh     }
23984e0cff60Sdrh     case TK_REGISTER: {
23999de221dfSdrh       inReg = pExpr->iTable;
24004e0cff60Sdrh       break;
24014e0cff60Sdrh     }
24028b213899Sdrh     case TK_AS: {
240331daa63fSdrh       inReg = codeAlias(pParse, pExpr->iTable, pExpr->pLeft, target);
24048b213899Sdrh       break;
24058b213899Sdrh     }
2406487e262fSdrh #ifndef SQLITE_OMIT_CAST
2407487e262fSdrh     case TK_CAST: {
2408487e262fSdrh       /* Expressions of the form:   CAST(pLeft AS token) */
2409f0113000Sdanielk1977       int aff, to_op;
24102dcef11bSdrh       inReg = sqlite3ExprCodeTarget(pParse, pExpr->pLeft, target);
241133e619fcSdrh       assert( !ExprHasProperty(pExpr, EP_IntValue) );
241233e619fcSdrh       aff = sqlite3AffinityType(pExpr->u.zToken);
2413f0113000Sdanielk1977       to_op = aff - SQLITE_AFF_TEXT + OP_ToText;
2414f0113000Sdanielk1977       assert( to_op==OP_ToText    || aff!=SQLITE_AFF_TEXT    );
2415f0113000Sdanielk1977       assert( to_op==OP_ToBlob    || aff!=SQLITE_AFF_NONE    );
2416f0113000Sdanielk1977       assert( to_op==OP_ToNumeric || aff!=SQLITE_AFF_NUMERIC );
2417f0113000Sdanielk1977       assert( to_op==OP_ToInt     || aff!=SQLITE_AFF_INTEGER );
2418f0113000Sdanielk1977       assert( to_op==OP_ToReal    || aff!=SQLITE_AFF_REAL    );
2419c5499befSdrh       testcase( to_op==OP_ToText );
2420c5499befSdrh       testcase( to_op==OP_ToBlob );
2421c5499befSdrh       testcase( to_op==OP_ToNumeric );
2422c5499befSdrh       testcase( to_op==OP_ToInt );
2423c5499befSdrh       testcase( to_op==OP_ToReal );
24241735fa88Sdrh       if( inReg!=target ){
24251735fa88Sdrh         sqlite3VdbeAddOp2(v, OP_SCopy, inReg, target);
24261735fa88Sdrh         inReg = target;
24271735fa88Sdrh       }
24282dcef11bSdrh       sqlite3VdbeAddOp1(v, to_op, inReg);
2429c5499befSdrh       testcase( usedAsColumnCache(pParse, inReg, inReg) );
2430b3843a82Sdrh       sqlite3ExprCacheAffinityChange(pParse, inReg, 1);
2431487e262fSdrh       break;
2432487e262fSdrh     }
2433487e262fSdrh #endif /* SQLITE_OMIT_CAST */
2434c9b84a1fSdrh     case TK_LT:
2435c9b84a1fSdrh     case TK_LE:
2436c9b84a1fSdrh     case TK_GT:
2437c9b84a1fSdrh     case TK_GE:
2438c9b84a1fSdrh     case TK_NE:
2439c9b84a1fSdrh     case TK_EQ: {
2440f2bc013cSdrh       assert( TK_LT==OP_Lt );
2441f2bc013cSdrh       assert( TK_LE==OP_Le );
2442f2bc013cSdrh       assert( TK_GT==OP_Gt );
2443f2bc013cSdrh       assert( TK_GE==OP_Ge );
2444f2bc013cSdrh       assert( TK_EQ==OP_Eq );
2445f2bc013cSdrh       assert( TK_NE==OP_Ne );
2446c5499befSdrh       testcase( op==TK_LT );
2447c5499befSdrh       testcase( op==TK_LE );
2448c5499befSdrh       testcase( op==TK_GT );
2449c5499befSdrh       testcase( op==TK_GE );
2450c5499befSdrh       testcase( op==TK_EQ );
2451c5499befSdrh       testcase( op==TK_NE );
2452da250ea5Sdrh       codeCompareOperands(pParse, pExpr->pLeft, &r1, &regFree1,
2453da250ea5Sdrh                                   pExpr->pRight, &r2, &regFree2);
245435573356Sdrh       codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op,
245535573356Sdrh                   r1, r2, inReg, SQLITE_STOREP2);
2456c5499befSdrh       testcase( regFree1==0 );
2457c5499befSdrh       testcase( regFree2==0 );
2458a37cdde0Sdanielk1977       break;
2459c9b84a1fSdrh     }
24606a2fe093Sdrh     case TK_IS:
24616a2fe093Sdrh     case TK_ISNOT: {
24626a2fe093Sdrh       testcase( op==TK_IS );
24636a2fe093Sdrh       testcase( op==TK_ISNOT );
24646a2fe093Sdrh       codeCompareOperands(pParse, pExpr->pLeft, &r1, &regFree1,
24656a2fe093Sdrh                                   pExpr->pRight, &r2, &regFree2);
24666a2fe093Sdrh       op = (op==TK_IS) ? TK_EQ : TK_NE;
24676a2fe093Sdrh       codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op,
24686a2fe093Sdrh                   r1, r2, inReg, SQLITE_STOREP2 | SQLITE_NULLEQ);
24696a2fe093Sdrh       testcase( regFree1==0 );
24706a2fe093Sdrh       testcase( regFree2==0 );
24716a2fe093Sdrh       break;
24726a2fe093Sdrh     }
2473cce7d176Sdrh     case TK_AND:
2474cce7d176Sdrh     case TK_OR:
2475cce7d176Sdrh     case TK_PLUS:
2476cce7d176Sdrh     case TK_STAR:
2477cce7d176Sdrh     case TK_MINUS:
2478bf4133cbSdrh     case TK_REM:
2479bf4133cbSdrh     case TK_BITAND:
2480bf4133cbSdrh     case TK_BITOR:
248117c40294Sdrh     case TK_SLASH:
2482bf4133cbSdrh     case TK_LSHIFT:
2483855eb1cfSdrh     case TK_RSHIFT:
24840040077dSdrh     case TK_CONCAT: {
2485f2bc013cSdrh       assert( TK_AND==OP_And );
2486f2bc013cSdrh       assert( TK_OR==OP_Or );
2487f2bc013cSdrh       assert( TK_PLUS==OP_Add );
2488f2bc013cSdrh       assert( TK_MINUS==OP_Subtract );
2489f2bc013cSdrh       assert( TK_REM==OP_Remainder );
2490f2bc013cSdrh       assert( TK_BITAND==OP_BitAnd );
2491f2bc013cSdrh       assert( TK_BITOR==OP_BitOr );
2492f2bc013cSdrh       assert( TK_SLASH==OP_Divide );
2493f2bc013cSdrh       assert( TK_LSHIFT==OP_ShiftLeft );
2494f2bc013cSdrh       assert( TK_RSHIFT==OP_ShiftRight );
2495f2bc013cSdrh       assert( TK_CONCAT==OP_Concat );
2496c5499befSdrh       testcase( op==TK_AND );
2497c5499befSdrh       testcase( op==TK_OR );
2498c5499befSdrh       testcase( op==TK_PLUS );
2499c5499befSdrh       testcase( op==TK_MINUS );
2500c5499befSdrh       testcase( op==TK_REM );
2501c5499befSdrh       testcase( op==TK_BITAND );
2502c5499befSdrh       testcase( op==TK_BITOR );
2503c5499befSdrh       testcase( op==TK_SLASH );
2504c5499befSdrh       testcase( op==TK_LSHIFT );
2505c5499befSdrh       testcase( op==TK_RSHIFT );
2506c5499befSdrh       testcase( op==TK_CONCAT );
25072dcef11bSdrh       r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, &regFree1);
25082dcef11bSdrh       r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, &regFree2);
25095b6afba9Sdrh       sqlite3VdbeAddOp3(v, op, r2, r1, target);
2510c5499befSdrh       testcase( regFree1==0 );
2511c5499befSdrh       testcase( regFree2==0 );
25120040077dSdrh       break;
25130040077dSdrh     }
2514cce7d176Sdrh     case TK_UMINUS: {
2515fec19aadSdrh       Expr *pLeft = pExpr->pLeft;
2516fec19aadSdrh       assert( pLeft );
2517fec19aadSdrh       if( pLeft->op==TK_FLOAT ){
251833e619fcSdrh         assert( !ExprHasProperty(pExpr, EP_IntValue) );
251933e619fcSdrh         codeReal(v, pLeft->u.zToken, 1, target);
2520fbd60f82Sshane       }else if( pLeft->op==TK_INTEGER ){
252192b01d53Sdrh         codeInteger(v, pLeft, 1, target);
25223c84ddffSdrh       }else{
25232dcef11bSdrh         regFree1 = r1 = sqlite3GetTempReg(pParse);
25243c84ddffSdrh         sqlite3VdbeAddOp2(v, OP_Integer, 0, r1);
2525e55cbd72Sdrh         r2 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, &regFree2);
25262dcef11bSdrh         sqlite3VdbeAddOp3(v, OP_Subtract, r2, r1, target);
2527c5499befSdrh         testcase( regFree2==0 );
25283c84ddffSdrh       }
25299de221dfSdrh       inReg = target;
25306e142f54Sdrh       break;
25316e142f54Sdrh     }
2532bf4133cbSdrh     case TK_BITNOT:
25336e142f54Sdrh     case TK_NOT: {
2534f2bc013cSdrh       assert( TK_BITNOT==OP_BitNot );
2535f2bc013cSdrh       assert( TK_NOT==OP_Not );
2536c5499befSdrh       testcase( op==TK_BITNOT );
2537c5499befSdrh       testcase( op==TK_NOT );
2538e99fa2afSdrh       r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, &regFree1);
2539e99fa2afSdrh       testcase( regFree1==0 );
2540e99fa2afSdrh       inReg = target;
2541e99fa2afSdrh       sqlite3VdbeAddOp2(v, op, r1, inReg);
2542cce7d176Sdrh       break;
2543cce7d176Sdrh     }
2544cce7d176Sdrh     case TK_ISNULL:
2545cce7d176Sdrh     case TK_NOTNULL: {
25466a288a33Sdrh       int addr;
2547f2bc013cSdrh       assert( TK_ISNULL==OP_IsNull );
2548f2bc013cSdrh       assert( TK_NOTNULL==OP_NotNull );
2549c5499befSdrh       testcase( op==TK_ISNULL );
2550c5499befSdrh       testcase( op==TK_NOTNULL );
25519de221dfSdrh       sqlite3VdbeAddOp2(v, OP_Integer, 1, target);
25522dcef11bSdrh       r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, &regFree1);
2553c5499befSdrh       testcase( regFree1==0 );
25542dcef11bSdrh       addr = sqlite3VdbeAddOp1(v, op, r1);
25559de221dfSdrh       sqlite3VdbeAddOp2(v, OP_AddImm, target, -1);
25566a288a33Sdrh       sqlite3VdbeJumpHere(v, addr);
2557a37cdde0Sdanielk1977       break;
2558f2bc013cSdrh     }
25592282792aSdrh     case TK_AGG_FUNCTION: {
256013449892Sdrh       AggInfo *pInfo = pExpr->pAggInfo;
25617e56e711Sdrh       if( pInfo==0 ){
256233e619fcSdrh         assert( !ExprHasProperty(pExpr, EP_IntValue) );
256333e619fcSdrh         sqlite3ErrorMsg(pParse, "misuse of aggregate: %s()", pExpr->u.zToken);
25647e56e711Sdrh       }else{
25659de221dfSdrh         inReg = pInfo->aFunc[pExpr->iAgg].iMem;
25667e56e711Sdrh       }
25672282792aSdrh       break;
25682282792aSdrh     }
2569b71090fdSdrh     case TK_CONST_FUNC:
2570cce7d176Sdrh     case TK_FUNCTION: {
257112ffee8cSdrh       ExprList *pFarg;       /* List of function arguments */
257212ffee8cSdrh       int nFarg;             /* Number of function arguments */
257312ffee8cSdrh       FuncDef *pDef;         /* The function definition object */
257412ffee8cSdrh       int nId;               /* Length of the function name in bytes */
257512ffee8cSdrh       const char *zId;       /* The function name */
257612ffee8cSdrh       int constMask = 0;     /* Mask of function arguments that are constant */
257712ffee8cSdrh       int i;                 /* Loop counter */
257812ffee8cSdrh       u8 enc = ENC(db);      /* The text encoding used by this database */
257912ffee8cSdrh       CollSeq *pColl = 0;    /* A collating sequence */
258017435752Sdrh 
25816ab3a2ecSdanielk1977       assert( !ExprHasProperty(pExpr, EP_xIsSelect) );
2582c5499befSdrh       testcase( op==TK_CONST_FUNC );
2583c5499befSdrh       testcase( op==TK_FUNCTION );
2584b7916a78Sdrh       if( ExprHasAnyProperty(pExpr, EP_TokenOnly) ){
258512ffee8cSdrh         pFarg = 0;
258612ffee8cSdrh       }else{
258712ffee8cSdrh         pFarg = pExpr->x.pList;
258812ffee8cSdrh       }
258912ffee8cSdrh       nFarg = pFarg ? pFarg->nExpr : 0;
259033e619fcSdrh       assert( !ExprHasProperty(pExpr, EP_IntValue) );
259133e619fcSdrh       zId = pExpr->u.zToken;
2592b7916a78Sdrh       nId = sqlite3Strlen30(zId);
259312ffee8cSdrh       pDef = sqlite3FindFunction(db, zId, nId, nFarg, enc, 0);
2594feb306f5Sdrh       if( pDef==0 ){
2595feb306f5Sdrh         sqlite3ErrorMsg(pParse, "unknown function: %.*s()", nId, zId);
2596feb306f5Sdrh         break;
2597feb306f5Sdrh       }
2598ae6bb957Sdrh 
2599ae6bb957Sdrh       /* Attempt a direct implementation of the built-in COALESCE() and
2600ae6bb957Sdrh       ** IFNULL() functions.  This avoids unnecessary evalation of
2601ae6bb957Sdrh       ** arguments past the first non-NULL argument.
2602ae6bb957Sdrh       */
2603ae6bb957Sdrh       if( pDef->flags & SQLITE_FUNC_COALESCE ){
2604ae6bb957Sdrh         int endCoalesce = sqlite3VdbeMakeLabel(v);
2605ae6bb957Sdrh         assert( nFarg>=2 );
2606ae6bb957Sdrh         sqlite3ExprCode(pParse, pFarg->a[0].pExpr, target);
2607ae6bb957Sdrh         for(i=1; i<nFarg; i++){
2608ae6bb957Sdrh           sqlite3VdbeAddOp2(v, OP_NotNull, target, endCoalesce);
2609ae6bb957Sdrh           sqlite3ExprCacheRemove(pParse, target);
2610ae6bb957Sdrh           sqlite3ExprCachePush(pParse);
2611ae6bb957Sdrh           sqlite3ExprCode(pParse, pFarg->a[i].pExpr, target);
2612ae6bb957Sdrh           sqlite3ExprCachePop(pParse, 1);
2613ae6bb957Sdrh         }
2614ae6bb957Sdrh         sqlite3VdbeResolveLabel(v, endCoalesce);
2615ae6bb957Sdrh         break;
2616ae6bb957Sdrh       }
2617ae6bb957Sdrh 
2618ae6bb957Sdrh 
261912ffee8cSdrh       if( pFarg ){
262012ffee8cSdrh         r1 = sqlite3GetTempRange(pParse, nFarg);
2621d7d385ddSdrh         sqlite3ExprCachePush(pParse);     /* Ticket 2ea2425d34be */
262212ffee8cSdrh         sqlite3ExprCodeExprList(pParse, pFarg, r1, 1);
2623d7d385ddSdrh         sqlite3ExprCachePop(pParse, 1);   /* Ticket 2ea2425d34be */
2624892d3179Sdrh       }else{
262512ffee8cSdrh         r1 = 0;
2626892d3179Sdrh       }
2627b7f6f68fSdrh #ifndef SQLITE_OMIT_VIRTUALTABLE
2628a43fa227Sdrh       /* Possibly overload the function if the first argument is
2629a43fa227Sdrh       ** a virtual table column.
2630a43fa227Sdrh       **
2631a43fa227Sdrh       ** For infix functions (LIKE, GLOB, REGEXP, and MATCH) use the
2632a43fa227Sdrh       ** second argument, not the first, as the argument to test to
2633a43fa227Sdrh       ** see if it is a column in a virtual table.  This is done because
2634a43fa227Sdrh       ** the left operand of infix functions (the operand we want to
2635a43fa227Sdrh       ** control overloading) ends up as the second argument to the
2636a43fa227Sdrh       ** function.  The expression "A glob B" is equivalent to
2637a43fa227Sdrh       ** "glob(B,A).  We want to use the A in "A glob B" to test
2638a43fa227Sdrh       ** for function overloading.  But we use the B term in "glob(B,A)".
2639a43fa227Sdrh       */
264012ffee8cSdrh       if( nFarg>=2 && (pExpr->flags & EP_InfixFunc) ){
264112ffee8cSdrh         pDef = sqlite3VtabOverloadFunction(db, pDef, nFarg, pFarg->a[1].pExpr);
264212ffee8cSdrh       }else if( nFarg>0 ){
264312ffee8cSdrh         pDef = sqlite3VtabOverloadFunction(db, pDef, nFarg, pFarg->a[0].pExpr);
2644b7f6f68fSdrh       }
2645b7f6f68fSdrh #endif
2646f7bca574Sdrh       for(i=0; i<nFarg; i++){
2647f7bca574Sdrh         if( i<32 && sqlite3ExprIsConstant(pFarg->a[i].pExpr) ){
264813449892Sdrh           constMask |= (1<<i);
2649d02eb1fdSdanielk1977         }
2650e82f5d04Sdrh         if( (pDef->flags & SQLITE_FUNC_NEEDCOLL)!=0 && !pColl ){
265112ffee8cSdrh           pColl = sqlite3ExprCollSeq(pParse, pFarg->a[i].pExpr);
2652dc1bdc4fSdanielk1977         }
2653dc1bdc4fSdanielk1977       }
2654e82f5d04Sdrh       if( pDef->flags & SQLITE_FUNC_NEEDCOLL ){
26558b213899Sdrh         if( !pColl ) pColl = db->pDfltColl;
265666a5167bSdrh         sqlite3VdbeAddOp4(v, OP_CollSeq, 0, 0, 0, (char *)pColl, P4_COLLSEQ);
2657682f68b0Sdanielk1977       }
26582dcef11bSdrh       sqlite3VdbeAddOp4(v, OP_Function, constMask, r1, target,
265966a5167bSdrh                         (char*)pDef, P4_FUNCDEF);
266012ffee8cSdrh       sqlite3VdbeChangeP5(v, (u8)nFarg);
266112ffee8cSdrh       if( nFarg ){
266212ffee8cSdrh         sqlite3ReleaseTempRange(pParse, r1, nFarg);
26632dcef11bSdrh       }
266412ffee8cSdrh       sqlite3ExprCacheAffinityChange(pParse, r1, nFarg);
26656ec2733bSdrh       break;
26666ec2733bSdrh     }
2667fe2093d7Sdrh #ifndef SQLITE_OMIT_SUBQUERY
2668fe2093d7Sdrh     case TK_EXISTS:
266919a775c2Sdrh     case TK_SELECT: {
2670c5499befSdrh       testcase( op==TK_EXISTS );
2671c5499befSdrh       testcase( op==TK_SELECT );
26721450bc6eSdrh       inReg = sqlite3CodeSubselect(pParse, pExpr, 0, 0);
267319a775c2Sdrh       break;
267419a775c2Sdrh     }
2675fef5208cSdrh     case TK_IN: {
2676e3365e6cSdrh       int destIfFalse = sqlite3VdbeMakeLabel(v);
2677e3365e6cSdrh       int destIfNull = sqlite3VdbeMakeLabel(v);
2678e3365e6cSdrh       sqlite3VdbeAddOp2(v, OP_Null, 0, target);
2679e3365e6cSdrh       sqlite3ExprCodeIN(pParse, pExpr, destIfFalse, destIfNull);
268066ba23ceSdrh       sqlite3VdbeAddOp2(v, OP_Integer, 1, target);
2681e3365e6cSdrh       sqlite3VdbeResolveLabel(v, destIfFalse);
2682e3365e6cSdrh       sqlite3VdbeAddOp2(v, OP_AddImm, target, 0);
2683e3365e6cSdrh       sqlite3VdbeResolveLabel(v, destIfNull);
2684fef5208cSdrh       break;
2685fef5208cSdrh     }
2686e3365e6cSdrh #endif /* SQLITE_OMIT_SUBQUERY */
2687e3365e6cSdrh 
2688e3365e6cSdrh 
26892dcef11bSdrh     /*
26902dcef11bSdrh     **    x BETWEEN y AND z
26912dcef11bSdrh     **
26922dcef11bSdrh     ** This is equivalent to
26932dcef11bSdrh     **
26942dcef11bSdrh     **    x>=y AND x<=z
26952dcef11bSdrh     **
26962dcef11bSdrh     ** X is stored in pExpr->pLeft.
26972dcef11bSdrh     ** Y is stored in pExpr->pList->a[0].pExpr.
26982dcef11bSdrh     ** Z is stored in pExpr->pList->a[1].pExpr.
26992dcef11bSdrh     */
2700fef5208cSdrh     case TK_BETWEEN: {
2701be5c89acSdrh       Expr *pLeft = pExpr->pLeft;
27026ab3a2ecSdanielk1977       struct ExprList_item *pLItem = pExpr->x.pList->a;
2703be5c89acSdrh       Expr *pRight = pLItem->pExpr;
270435573356Sdrh 
2705da250ea5Sdrh       codeCompareOperands(pParse, pLeft, &r1, &regFree1,
2706da250ea5Sdrh                                   pRight, &r2, &regFree2);
2707c5499befSdrh       testcase( regFree1==0 );
2708c5499befSdrh       testcase( regFree2==0 );
27092dcef11bSdrh       r3 = sqlite3GetTempReg(pParse);
2710678ccce8Sdrh       r4 = sqlite3GetTempReg(pParse);
271135573356Sdrh       codeCompare(pParse, pLeft, pRight, OP_Ge,
271235573356Sdrh                   r1, r2, r3, SQLITE_STOREP2);
2713be5c89acSdrh       pLItem++;
2714be5c89acSdrh       pRight = pLItem->pExpr;
27152dcef11bSdrh       sqlite3ReleaseTempReg(pParse, regFree2);
27162dcef11bSdrh       r2 = sqlite3ExprCodeTemp(pParse, pRight, &regFree2);
2717c5499befSdrh       testcase( regFree2==0 );
2718678ccce8Sdrh       codeCompare(pParse, pLeft, pRight, OP_Le, r1, r2, r4, SQLITE_STOREP2);
2719678ccce8Sdrh       sqlite3VdbeAddOp3(v, OP_And, r3, r4, target);
27202dcef11bSdrh       sqlite3ReleaseTempReg(pParse, r3);
2721678ccce8Sdrh       sqlite3ReleaseTempReg(pParse, r4);
2722fef5208cSdrh       break;
2723fef5208cSdrh     }
27244f07e5fbSdrh     case TK_UPLUS: {
27252dcef11bSdrh       inReg = sqlite3ExprCodeTarget(pParse, pExpr->pLeft, target);
2726a2e00042Sdrh       break;
2727a2e00042Sdrh     }
27282dcef11bSdrh 
2729165921a7Sdan     case TK_TRIGGER: {
273065a7cd16Sdan       /* If the opcode is TK_TRIGGER, then the expression is a reference
273165a7cd16Sdan       ** to a column in the new.* or old.* pseudo-tables available to
273265a7cd16Sdan       ** trigger programs. In this case Expr.iTable is set to 1 for the
273365a7cd16Sdan       ** new.* pseudo-table, or 0 for the old.* pseudo-table. Expr.iColumn
273465a7cd16Sdan       ** is set to the column of the pseudo-table to read, or to -1 to
273565a7cd16Sdan       ** read the rowid field.
273665a7cd16Sdan       **
273765a7cd16Sdan       ** The expression is implemented using an OP_Param opcode. The p1
273865a7cd16Sdan       ** parameter is set to 0 for an old.rowid reference, or to (i+1)
273965a7cd16Sdan       ** to reference another column of the old.* pseudo-table, where
274065a7cd16Sdan       ** i is the index of the column. For a new.rowid reference, p1 is
274165a7cd16Sdan       ** set to (n+1), where n is the number of columns in each pseudo-table.
274265a7cd16Sdan       ** For a reference to any other column in the new.* pseudo-table, p1
274365a7cd16Sdan       ** is set to (n+2+i), where n and i are as defined previously. For
274465a7cd16Sdan       ** example, if the table on which triggers are being fired is
274565a7cd16Sdan       ** declared as:
274665a7cd16Sdan       **
274765a7cd16Sdan       **   CREATE TABLE t1(a, b);
274865a7cd16Sdan       **
274965a7cd16Sdan       ** Then p1 is interpreted as follows:
275065a7cd16Sdan       **
275165a7cd16Sdan       **   p1==0   ->    old.rowid     p1==3   ->    new.rowid
275265a7cd16Sdan       **   p1==1   ->    old.a         p1==4   ->    new.a
275365a7cd16Sdan       **   p1==2   ->    old.b         p1==5   ->    new.b
275465a7cd16Sdan       */
27552832ad42Sdan       Table *pTab = pExpr->pTab;
275665a7cd16Sdan       int p1 = pExpr->iTable * (pTab->nCol+1) + 1 + pExpr->iColumn;
275765a7cd16Sdan 
275865a7cd16Sdan       assert( pExpr->iTable==0 || pExpr->iTable==1 );
275965a7cd16Sdan       assert( pExpr->iColumn>=-1 && pExpr->iColumn<pTab->nCol );
276065a7cd16Sdan       assert( pTab->iPKey<0 || pExpr->iColumn!=pTab->iPKey );
276165a7cd16Sdan       assert( p1>=0 && p1<(pTab->nCol*2+2) );
276265a7cd16Sdan 
276365a7cd16Sdan       sqlite3VdbeAddOp2(v, OP_Param, p1, target);
276476d462eeSdan       VdbeComment((v, "%s.%s -> $%d",
2765165921a7Sdan         (pExpr->iTable ? "new" : "old"),
276676d462eeSdan         (pExpr->iColumn<0 ? "rowid" : pExpr->pTab->aCol[pExpr->iColumn].zName),
276776d462eeSdan         target
2768165921a7Sdan       ));
276965a7cd16Sdan 
277065a7cd16Sdan       /* If the column has REAL affinity, it may currently be stored as an
277165a7cd16Sdan       ** integer. Use OP_RealAffinity to make sure it is really real.  */
27722832ad42Sdan       if( pExpr->iColumn>=0
27732832ad42Sdan        && pTab->aCol[pExpr->iColumn].affinity==SQLITE_AFF_REAL
27742832ad42Sdan       ){
27752832ad42Sdan         sqlite3VdbeAddOp1(v, OP_RealAffinity, target);
27762832ad42Sdan       }
2777165921a7Sdan       break;
2778165921a7Sdan     }
2779165921a7Sdan 
2780165921a7Sdan 
27812dcef11bSdrh     /*
27822dcef11bSdrh     ** Form A:
27832dcef11bSdrh     **   CASE x WHEN e1 THEN r1 WHEN e2 THEN r2 ... WHEN eN THEN rN ELSE y END
27842dcef11bSdrh     **
27852dcef11bSdrh     ** Form B:
27862dcef11bSdrh     **   CASE WHEN e1 THEN r1 WHEN e2 THEN r2 ... WHEN eN THEN rN ELSE y END
27872dcef11bSdrh     **
27882dcef11bSdrh     ** Form A is can be transformed into the equivalent form B as follows:
27892dcef11bSdrh     **   CASE WHEN x=e1 THEN r1 WHEN x=e2 THEN r2 ...
27902dcef11bSdrh     **        WHEN x=eN THEN rN ELSE y END
27912dcef11bSdrh     **
27922dcef11bSdrh     ** X (if it exists) is in pExpr->pLeft.
27932dcef11bSdrh     ** Y is in pExpr->pRight.  The Y is also optional.  If there is no
27942dcef11bSdrh     ** ELSE clause and no other term matches, then the result of the
27952dcef11bSdrh     ** exprssion is NULL.
27962dcef11bSdrh     ** Ei is in pExpr->pList->a[i*2] and Ri is pExpr->pList->a[i*2+1].
27972dcef11bSdrh     **
27982dcef11bSdrh     ** The result of the expression is the Ri for the first matching Ei,
27992dcef11bSdrh     ** or if there is no matching Ei, the ELSE term Y, or if there is
28002dcef11bSdrh     ** no ELSE term, NULL.
28012dcef11bSdrh     */
280233cd4909Sdrh     default: assert( op==TK_CASE ); {
28032dcef11bSdrh       int endLabel;                     /* GOTO label for end of CASE stmt */
28042dcef11bSdrh       int nextCase;                     /* GOTO label for next WHEN clause */
28052dcef11bSdrh       int nExpr;                        /* 2x number of WHEN terms */
28062dcef11bSdrh       int i;                            /* Loop counter */
28072dcef11bSdrh       ExprList *pEList;                 /* List of WHEN terms */
28082dcef11bSdrh       struct ExprList_item *aListelem;  /* Array of WHEN terms */
28092dcef11bSdrh       Expr opCompare;                   /* The X==Ei expression */
28102dcef11bSdrh       Expr cacheX;                      /* Cached expression X */
28112dcef11bSdrh       Expr *pX;                         /* The X expression */
28121bd10f8aSdrh       Expr *pTest = 0;                  /* X==Ei (form A) or just Ei (form B) */
2813ceea3321Sdrh       VVA_ONLY( int iCacheLevel = pParse->iCacheLevel; )
281417a7f8ddSdrh 
28156ab3a2ecSdanielk1977       assert( !ExprHasProperty(pExpr, EP_xIsSelect) && pExpr->x.pList );
28166ab3a2ecSdanielk1977       assert((pExpr->x.pList->nExpr % 2) == 0);
28176ab3a2ecSdanielk1977       assert(pExpr->x.pList->nExpr > 0);
28186ab3a2ecSdanielk1977       pEList = pExpr->x.pList;
2819be5c89acSdrh       aListelem = pEList->a;
2820be5c89acSdrh       nExpr = pEList->nExpr;
28212dcef11bSdrh       endLabel = sqlite3VdbeMakeLabel(v);
28222dcef11bSdrh       if( (pX = pExpr->pLeft)!=0 ){
28232dcef11bSdrh         cacheX = *pX;
282433cd4909Sdrh         testcase( pX->op==TK_COLUMN );
282533cd4909Sdrh         testcase( pX->op==TK_REGISTER );
28262dcef11bSdrh         cacheX.iTable = sqlite3ExprCodeTemp(pParse, pX, &regFree1);
2827c5499befSdrh         testcase( regFree1==0 );
28282dcef11bSdrh         cacheX.op = TK_REGISTER;
28292dcef11bSdrh         opCompare.op = TK_EQ;
28302dcef11bSdrh         opCompare.pLeft = &cacheX;
28312dcef11bSdrh         pTest = &opCompare;
2832cce7d176Sdrh       }
2833f5905aa7Sdrh       for(i=0; i<nExpr; i=i+2){
2834ceea3321Sdrh         sqlite3ExprCachePush(pParse);
28352dcef11bSdrh         if( pX ){
28361bd10f8aSdrh           assert( pTest!=0 );
28372dcef11bSdrh           opCompare.pRight = aListelem[i].pExpr;
2838f5905aa7Sdrh         }else{
28392dcef11bSdrh           pTest = aListelem[i].pExpr;
284017a7f8ddSdrh         }
28412dcef11bSdrh         nextCase = sqlite3VdbeMakeLabel(v);
284233cd4909Sdrh         testcase( pTest->op==TK_COLUMN );
28432dcef11bSdrh         sqlite3ExprIfFalse(pParse, pTest, nextCase, SQLITE_JUMPIFNULL);
2844c5499befSdrh         testcase( aListelem[i+1].pExpr->op==TK_COLUMN );
2845c5499befSdrh         testcase( aListelem[i+1].pExpr->op==TK_REGISTER );
28469de221dfSdrh         sqlite3ExprCode(pParse, aListelem[i+1].pExpr, target);
28472dcef11bSdrh         sqlite3VdbeAddOp2(v, OP_Goto, 0, endLabel);
2848ceea3321Sdrh         sqlite3ExprCachePop(pParse, 1);
28492dcef11bSdrh         sqlite3VdbeResolveLabel(v, nextCase);
2850f570f011Sdrh       }
285117a7f8ddSdrh       if( pExpr->pRight ){
2852ceea3321Sdrh         sqlite3ExprCachePush(pParse);
28539de221dfSdrh         sqlite3ExprCode(pParse, pExpr->pRight, target);
2854ceea3321Sdrh         sqlite3ExprCachePop(pParse, 1);
285517a7f8ddSdrh       }else{
28569de221dfSdrh         sqlite3VdbeAddOp2(v, OP_Null, 0, target);
285717a7f8ddSdrh       }
2858c1f4a19bSdanielk1977       assert( db->mallocFailed || pParse->nErr>0
2859c1f4a19bSdanielk1977            || pParse->iCacheLevel==iCacheLevel );
28602dcef11bSdrh       sqlite3VdbeResolveLabel(v, endLabel);
28616f34903eSdanielk1977       break;
28626f34903eSdanielk1977     }
28635338a5f7Sdanielk1977 #ifndef SQLITE_OMIT_TRIGGER
28646f34903eSdanielk1977     case TK_RAISE: {
2865165921a7Sdan       assert( pExpr->affinity==OE_Rollback
2866165921a7Sdan            || pExpr->affinity==OE_Abort
2867165921a7Sdan            || pExpr->affinity==OE_Fail
2868165921a7Sdan            || pExpr->affinity==OE_Ignore
2869165921a7Sdan       );
2870e0af83acSdan       if( !pParse->pTriggerTab ){
2871e0af83acSdan         sqlite3ErrorMsg(pParse,
2872e0af83acSdan                        "RAISE() may only be used within a trigger-program");
2873e0af83acSdan         return 0;
2874e0af83acSdan       }
2875e0af83acSdan       if( pExpr->affinity==OE_Abort ){
2876e0af83acSdan         sqlite3MayAbort(pParse);
2877e0af83acSdan       }
287833e619fcSdrh       assert( !ExprHasProperty(pExpr, EP_IntValue) );
2879e0af83acSdan       if( pExpr->affinity==OE_Ignore ){
2880e0af83acSdan         sqlite3VdbeAddOp4(
2881e0af83acSdan             v, OP_Halt, SQLITE_OK, OE_Ignore, 0, pExpr->u.zToken,0);
2882e0af83acSdan       }else{
2883e0af83acSdan         sqlite3HaltConstraint(pParse, pExpr->affinity, pExpr->u.zToken, 0);
2884e0af83acSdan       }
2885e0af83acSdan 
2886ffe07b2dSdrh       break;
288717a7f8ddSdrh     }
28885338a5f7Sdanielk1977 #endif
2889ffe07b2dSdrh   }
28902dcef11bSdrh   sqlite3ReleaseTempReg(pParse, regFree1);
28912dcef11bSdrh   sqlite3ReleaseTempReg(pParse, regFree2);
28922dcef11bSdrh   return inReg;
28935b6afba9Sdrh }
28942dcef11bSdrh 
28952dcef11bSdrh /*
28962dcef11bSdrh ** Generate code to evaluate an expression and store the results
28972dcef11bSdrh ** into a register.  Return the register number where the results
28982dcef11bSdrh ** are stored.
28992dcef11bSdrh **
29002dcef11bSdrh ** If the register is a temporary register that can be deallocated,
2901678ccce8Sdrh ** then write its number into *pReg.  If the result register is not
29022dcef11bSdrh ** a temporary, then set *pReg to zero.
29032dcef11bSdrh */
29042dcef11bSdrh int sqlite3ExprCodeTemp(Parse *pParse, Expr *pExpr, int *pReg){
29052dcef11bSdrh   int r1 = sqlite3GetTempReg(pParse);
29062dcef11bSdrh   int r2 = sqlite3ExprCodeTarget(pParse, pExpr, r1);
29072dcef11bSdrh   if( r2==r1 ){
29082dcef11bSdrh     *pReg = r1;
29092dcef11bSdrh   }else{
29102dcef11bSdrh     sqlite3ReleaseTempReg(pParse, r1);
29112dcef11bSdrh     *pReg = 0;
29122dcef11bSdrh   }
29132dcef11bSdrh   return r2;
29142dcef11bSdrh }
29152dcef11bSdrh 
29162dcef11bSdrh /*
29172dcef11bSdrh ** Generate code that will evaluate expression pExpr and store the
29182dcef11bSdrh ** results in register target.  The results are guaranteed to appear
29192dcef11bSdrh ** in register target.
29202dcef11bSdrh */
29212dcef11bSdrh int sqlite3ExprCode(Parse *pParse, Expr *pExpr, int target){
29229cbf3425Sdrh   int inReg;
29239cbf3425Sdrh 
29249cbf3425Sdrh   assert( target>0 && target<=pParse->nMem );
29259cbf3425Sdrh   inReg = sqlite3ExprCodeTarget(pParse, pExpr, target);
29260e359b30Sdrh   assert( pParse->pVdbe || pParse->db->mallocFailed );
29270e359b30Sdrh   if( inReg!=target && pParse->pVdbe ){
29289cbf3425Sdrh     sqlite3VdbeAddOp2(pParse->pVdbe, OP_SCopy, inReg, target);
292917a7f8ddSdrh   }
2930389a1adbSdrh   return target;
2931cce7d176Sdrh }
2932cce7d176Sdrh 
2933cce7d176Sdrh /*
29342dcef11bSdrh ** Generate code that evalutes the given expression and puts the result
2935de4fcfddSdrh ** in register target.
293625303780Sdrh **
29372dcef11bSdrh ** Also make a copy of the expression results into another "cache" register
29382dcef11bSdrh ** and modify the expression so that the next time it is evaluated,
29392dcef11bSdrh ** the result is a copy of the cache register.
29402dcef11bSdrh **
29412dcef11bSdrh ** This routine is used for expressions that are used multiple
29422dcef11bSdrh ** times.  They are evaluated once and the results of the expression
29432dcef11bSdrh ** are reused.
294425303780Sdrh */
29452dcef11bSdrh int sqlite3ExprCodeAndCache(Parse *pParse, Expr *pExpr, int target){
294625303780Sdrh   Vdbe *v = pParse->pVdbe;
29472dcef11bSdrh   int inReg;
29482dcef11bSdrh   inReg = sqlite3ExprCode(pParse, pExpr, target);
2949de4fcfddSdrh   assert( target>0 );
295020bc393cSdrh   /* This routine is called for terms to INSERT or UPDATE.  And the only
295120bc393cSdrh   ** other place where expressions can be converted into TK_REGISTER is
295220bc393cSdrh   ** in WHERE clause processing.  So as currently implemented, there is
295320bc393cSdrh   ** no way for a TK_REGISTER to exist here.  But it seems prudent to
295420bc393cSdrh   ** keep the ALWAYS() in case the conditions above change with future
295520bc393cSdrh   ** modifications or enhancements. */
295620bc393cSdrh   if( ALWAYS(pExpr->op!=TK_REGISTER) ){
295725303780Sdrh     int iMem;
29582dcef11bSdrh     iMem = ++pParse->nMem;
29592dcef11bSdrh     sqlite3VdbeAddOp2(v, OP_Copy, inReg, iMem);
29602dcef11bSdrh     pExpr->iTable = iMem;
2961937d0deaSdan     pExpr->op2 = pExpr->op;
296225303780Sdrh     pExpr->op = TK_REGISTER;
296325303780Sdrh   }
29642dcef11bSdrh   return inReg;
296525303780Sdrh }
29662dcef11bSdrh 
2967678ccce8Sdrh /*
296847de955eSdrh ** Return TRUE if pExpr is an constant expression that is appropriate
296947de955eSdrh ** for factoring out of a loop.  Appropriate expressions are:
297047de955eSdrh **
297147de955eSdrh **    *  Any expression that evaluates to two or more opcodes.
297247de955eSdrh **
297347de955eSdrh **    *  Any OP_Integer, OP_Real, OP_String, OP_Blob, OP_Null,
297447de955eSdrh **       or OP_Variable that does not need to be placed in a
297547de955eSdrh **       specific register.
297647de955eSdrh **
297747de955eSdrh ** There is no point in factoring out single-instruction constant
297847de955eSdrh ** expressions that need to be placed in a particular register.
297947de955eSdrh ** We could factor them out, but then we would end up adding an
298047de955eSdrh ** OP_SCopy instruction to move the value into the correct register
298147de955eSdrh ** later.  We might as well just use the original instruction and
298247de955eSdrh ** avoid the OP_SCopy.
298347de955eSdrh */
298447de955eSdrh static int isAppropriateForFactoring(Expr *p){
298547de955eSdrh   if( !sqlite3ExprIsConstantNotJoin(p) ){
298647de955eSdrh     return 0;  /* Only constant expressions are appropriate for factoring */
298747de955eSdrh   }
298847de955eSdrh   if( (p->flags & EP_FixedDest)==0 ){
298947de955eSdrh     return 1;  /* Any constant without a fixed destination is appropriate */
299047de955eSdrh   }
299147de955eSdrh   while( p->op==TK_UPLUS ) p = p->pLeft;
299247de955eSdrh   switch( p->op ){
299347de955eSdrh #ifndef SQLITE_OMIT_BLOB_LITERAL
299447de955eSdrh     case TK_BLOB:
299547de955eSdrh #endif
299647de955eSdrh     case TK_VARIABLE:
299747de955eSdrh     case TK_INTEGER:
299847de955eSdrh     case TK_FLOAT:
299947de955eSdrh     case TK_NULL:
300047de955eSdrh     case TK_STRING: {
300147de955eSdrh       testcase( p->op==TK_BLOB );
300247de955eSdrh       testcase( p->op==TK_VARIABLE );
300347de955eSdrh       testcase( p->op==TK_INTEGER );
300447de955eSdrh       testcase( p->op==TK_FLOAT );
300547de955eSdrh       testcase( p->op==TK_NULL );
300647de955eSdrh       testcase( p->op==TK_STRING );
300747de955eSdrh       /* Single-instruction constants with a fixed destination are
300847de955eSdrh       ** better done in-line.  If we factor them, they will just end
300947de955eSdrh       ** up generating an OP_SCopy to move the value to the destination
301047de955eSdrh       ** register. */
301147de955eSdrh       return 0;
301247de955eSdrh     }
301347de955eSdrh     case TK_UMINUS: {
301447de955eSdrh       if( p->pLeft->op==TK_FLOAT || p->pLeft->op==TK_INTEGER ){
301547de955eSdrh         return 0;
301647de955eSdrh       }
301747de955eSdrh       break;
301847de955eSdrh     }
301947de955eSdrh     default: {
302047de955eSdrh       break;
302147de955eSdrh     }
302247de955eSdrh   }
302347de955eSdrh   return 1;
302447de955eSdrh }
302547de955eSdrh 
302647de955eSdrh /*
302747de955eSdrh ** If pExpr is a constant expression that is appropriate for
302847de955eSdrh ** factoring out of a loop, then evaluate the expression
3029678ccce8Sdrh ** into a register and convert the expression into a TK_REGISTER
3030678ccce8Sdrh ** expression.
3031678ccce8Sdrh */
30327d10d5a6Sdrh static int evalConstExpr(Walker *pWalker, Expr *pExpr){
30337d10d5a6Sdrh   Parse *pParse = pWalker->pParse;
303447de955eSdrh   switch( pExpr->op ){
3035e05c929bSdrh     case TK_IN:
303647de955eSdrh     case TK_REGISTER: {
303733cd4909Sdrh       return WRC_Prune;
3038678ccce8Sdrh     }
303947de955eSdrh     case TK_FUNCTION:
304047de955eSdrh     case TK_AGG_FUNCTION:
304147de955eSdrh     case TK_CONST_FUNC: {
304247de955eSdrh       /* The arguments to a function have a fixed destination.
304347de955eSdrh       ** Mark them this way to avoid generated unneeded OP_SCopy
304447de955eSdrh       ** instructions.
304547de955eSdrh       */
30466ab3a2ecSdanielk1977       ExprList *pList = pExpr->x.pList;
30476ab3a2ecSdanielk1977       assert( !ExprHasProperty(pExpr, EP_xIsSelect) );
304847de955eSdrh       if( pList ){
304947de955eSdrh         int i = pList->nExpr;
305047de955eSdrh         struct ExprList_item *pItem = pList->a;
305147de955eSdrh         for(; i>0; i--, pItem++){
305233cd4909Sdrh           if( ALWAYS(pItem->pExpr) ) pItem->pExpr->flags |= EP_FixedDest;
305347de955eSdrh         }
305447de955eSdrh       }
305547de955eSdrh       break;
305647de955eSdrh     }
305747de955eSdrh   }
305847de955eSdrh   if( isAppropriateForFactoring(pExpr) ){
3059678ccce8Sdrh     int r1 = ++pParse->nMem;
3060678ccce8Sdrh     int r2;
3061678ccce8Sdrh     r2 = sqlite3ExprCodeTarget(pParse, pExpr, r1);
306233cd4909Sdrh     if( NEVER(r1!=r2) ) sqlite3ReleaseTempReg(pParse, r1);
3063fcd4a150Sdan     pExpr->op2 = pExpr->op;
3064678ccce8Sdrh     pExpr->op = TK_REGISTER;
3065678ccce8Sdrh     pExpr->iTable = r2;
30667d10d5a6Sdrh     return WRC_Prune;
3067678ccce8Sdrh   }
30687d10d5a6Sdrh   return WRC_Continue;
3069678ccce8Sdrh }
3070678ccce8Sdrh 
3071678ccce8Sdrh /*
3072678ccce8Sdrh ** Preevaluate constant subexpressions within pExpr and store the
3073678ccce8Sdrh ** results in registers.  Modify pExpr so that the constant subexpresions
3074678ccce8Sdrh ** are TK_REGISTER opcodes that refer to the precomputed values.
3075678ccce8Sdrh */
3076678ccce8Sdrh void sqlite3ExprCodeConstants(Parse *pParse, Expr *pExpr){
30777d10d5a6Sdrh   Walker w;
30787d10d5a6Sdrh   w.xExprCallback = evalConstExpr;
30797d10d5a6Sdrh   w.xSelectCallback = 0;
30807d10d5a6Sdrh   w.pParse = pParse;
30817d10d5a6Sdrh   sqlite3WalkExpr(&w, pExpr);
3082678ccce8Sdrh }
3083678ccce8Sdrh 
308425303780Sdrh 
308525303780Sdrh /*
3086268380caSdrh ** Generate code that pushes the value of every element of the given
30879cbf3425Sdrh ** expression list into a sequence of registers beginning at target.
3088268380caSdrh **
3089892d3179Sdrh ** Return the number of elements evaluated.
3090268380caSdrh */
30914adee20fSdanielk1977 int sqlite3ExprCodeExprList(
3092268380caSdrh   Parse *pParse,     /* Parsing context */
3093389a1adbSdrh   ExprList *pList,   /* The expression list to be coded */
3094191b54cbSdrh   int target,        /* Where to write results */
3095d176611bSdrh   int doHardCopy     /* Make a hard copy of every element */
3096268380caSdrh ){
3097268380caSdrh   struct ExprList_item *pItem;
30989cbf3425Sdrh   int i, n;
30999d8b3072Sdrh   assert( pList!=0 );
31009cbf3425Sdrh   assert( target>0 );
3101268380caSdrh   n = pList->nExpr;
3102191b54cbSdrh   for(pItem=pList->a, i=0; i<n; i++, pItem++){
31038b213899Sdrh     if( pItem->iAlias ){
310431daa63fSdrh       int iReg = codeAlias(pParse, pItem->iAlias, pItem->pExpr, target+i);
31058b213899Sdrh       Vdbe *v = sqlite3GetVdbe(pParse);
310631daa63fSdrh       if( iReg!=target+i ){
31078b213899Sdrh         sqlite3VdbeAddOp2(v, OP_SCopy, iReg, target+i);
310831daa63fSdrh       }
3109d176611bSdrh     }else{
3110191b54cbSdrh       sqlite3ExprCode(pParse, pItem->pExpr, target+i);
31118b213899Sdrh     }
311220411ea7Sdrh     if( doHardCopy && !pParse->db->mallocFailed ){
3113d176611bSdrh       sqlite3ExprHardCopy(pParse, target, n);
3114d176611bSdrh     }
3115268380caSdrh   }
3116f9b596ebSdrh   return n;
3117268380caSdrh }
3118268380caSdrh 
3119268380caSdrh /*
312036c563a2Sdrh ** Generate code for a BETWEEN operator.
312136c563a2Sdrh **
312236c563a2Sdrh **    x BETWEEN y AND z
312336c563a2Sdrh **
312436c563a2Sdrh ** The above is equivalent to
312536c563a2Sdrh **
312636c563a2Sdrh **    x>=y AND x<=z
312736c563a2Sdrh **
312836c563a2Sdrh ** Code it as such, taking care to do the common subexpression
312936c563a2Sdrh ** elementation of x.
313036c563a2Sdrh */
313136c563a2Sdrh static void exprCodeBetween(
313236c563a2Sdrh   Parse *pParse,    /* Parsing and code generating context */
313336c563a2Sdrh   Expr *pExpr,      /* The BETWEEN expression */
313436c563a2Sdrh   int dest,         /* Jump here if the jump is taken */
313536c563a2Sdrh   int jumpIfTrue,   /* Take the jump if the BETWEEN is true */
313636c563a2Sdrh   int jumpIfNull    /* Take the jump if the BETWEEN is NULL */
313736c563a2Sdrh ){
313836c563a2Sdrh   Expr exprAnd;     /* The AND operator in  x>=y AND x<=z  */
313936c563a2Sdrh   Expr compLeft;    /* The  x>=y  term */
314036c563a2Sdrh   Expr compRight;   /* The  x<=z  term */
314136c563a2Sdrh   Expr exprX;       /* The  x  subexpression */
314236c563a2Sdrh   int regFree1 = 0; /* Temporary use register */
314336c563a2Sdrh 
314436c563a2Sdrh   assert( !ExprHasProperty(pExpr, EP_xIsSelect) );
314536c563a2Sdrh   exprX = *pExpr->pLeft;
314636c563a2Sdrh   exprAnd.op = TK_AND;
314736c563a2Sdrh   exprAnd.pLeft = &compLeft;
314836c563a2Sdrh   exprAnd.pRight = &compRight;
314936c563a2Sdrh   compLeft.op = TK_GE;
315036c563a2Sdrh   compLeft.pLeft = &exprX;
315136c563a2Sdrh   compLeft.pRight = pExpr->x.pList->a[0].pExpr;
315236c563a2Sdrh   compRight.op = TK_LE;
315336c563a2Sdrh   compRight.pLeft = &exprX;
315436c563a2Sdrh   compRight.pRight = pExpr->x.pList->a[1].pExpr;
315536c563a2Sdrh   exprX.iTable = sqlite3ExprCodeTemp(pParse, &exprX, &regFree1);
315636c563a2Sdrh   exprX.op = TK_REGISTER;
315736c563a2Sdrh   if( jumpIfTrue ){
315836c563a2Sdrh     sqlite3ExprIfTrue(pParse, &exprAnd, dest, jumpIfNull);
315936c563a2Sdrh   }else{
316036c563a2Sdrh     sqlite3ExprIfFalse(pParse, &exprAnd, dest, jumpIfNull);
316136c563a2Sdrh   }
316236c563a2Sdrh   sqlite3ReleaseTempReg(pParse, regFree1);
316336c563a2Sdrh 
316436c563a2Sdrh   /* Ensure adequate test coverage */
316536c563a2Sdrh   testcase( jumpIfTrue==0 && jumpIfNull==0 && regFree1==0 );
316636c563a2Sdrh   testcase( jumpIfTrue==0 && jumpIfNull==0 && regFree1!=0 );
316736c563a2Sdrh   testcase( jumpIfTrue==0 && jumpIfNull!=0 && regFree1==0 );
316836c563a2Sdrh   testcase( jumpIfTrue==0 && jumpIfNull!=0 && regFree1!=0 );
316936c563a2Sdrh   testcase( jumpIfTrue!=0 && jumpIfNull==0 && regFree1==0 );
317036c563a2Sdrh   testcase( jumpIfTrue!=0 && jumpIfNull==0 && regFree1!=0 );
317136c563a2Sdrh   testcase( jumpIfTrue!=0 && jumpIfNull!=0 && regFree1==0 );
317236c563a2Sdrh   testcase( jumpIfTrue!=0 && jumpIfNull!=0 && regFree1!=0 );
317336c563a2Sdrh }
317436c563a2Sdrh 
317536c563a2Sdrh /*
3176cce7d176Sdrh ** Generate code for a boolean expression such that a jump is made
3177cce7d176Sdrh ** to the label "dest" if the expression is true but execution
3178cce7d176Sdrh ** continues straight thru if the expression is false.
3179f5905aa7Sdrh **
3180f5905aa7Sdrh ** If the expression evaluates to NULL (neither true nor false), then
318135573356Sdrh ** take the jump if the jumpIfNull flag is SQLITE_JUMPIFNULL.
3182f2bc013cSdrh **
3183f2bc013cSdrh ** This code depends on the fact that certain token values (ex: TK_EQ)
3184f2bc013cSdrh ** are the same as opcode values (ex: OP_Eq) that implement the corresponding
3185f2bc013cSdrh ** operation.  Special comments in vdbe.c and the mkopcodeh.awk script in
3186f2bc013cSdrh ** the make process cause these values to align.  Assert()s in the code
3187f2bc013cSdrh ** below verify that the numbers are aligned correctly.
3188cce7d176Sdrh */
31894adee20fSdanielk1977 void sqlite3ExprIfTrue(Parse *pParse, Expr *pExpr, int dest, int jumpIfNull){
3190cce7d176Sdrh   Vdbe *v = pParse->pVdbe;
3191cce7d176Sdrh   int op = 0;
31922dcef11bSdrh   int regFree1 = 0;
31932dcef11bSdrh   int regFree2 = 0;
31942dcef11bSdrh   int r1, r2;
31952dcef11bSdrh 
319635573356Sdrh   assert( jumpIfNull==SQLITE_JUMPIFNULL || jumpIfNull==0 );
319733cd4909Sdrh   if( NEVER(v==0) )     return;  /* Existance of VDBE checked by caller */
319833cd4909Sdrh   if( NEVER(pExpr==0) ) return;  /* No way this can happen */
3199f2bc013cSdrh   op = pExpr->op;
3200f2bc013cSdrh   switch( op ){
3201cce7d176Sdrh     case TK_AND: {
32024adee20fSdanielk1977       int d2 = sqlite3VdbeMakeLabel(v);
3203c5499befSdrh       testcase( jumpIfNull==0 );
3204ceea3321Sdrh       sqlite3ExprCachePush(pParse);
320535573356Sdrh       sqlite3ExprIfFalse(pParse, pExpr->pLeft, d2,jumpIfNull^SQLITE_JUMPIFNULL);
32064adee20fSdanielk1977       sqlite3ExprIfTrue(pParse, pExpr->pRight, dest, jumpIfNull);
32074adee20fSdanielk1977       sqlite3VdbeResolveLabel(v, d2);
3208ceea3321Sdrh       sqlite3ExprCachePop(pParse, 1);
3209cce7d176Sdrh       break;
3210cce7d176Sdrh     }
3211cce7d176Sdrh     case TK_OR: {
3212c5499befSdrh       testcase( jumpIfNull==0 );
32134adee20fSdanielk1977       sqlite3ExprIfTrue(pParse, pExpr->pLeft, dest, jumpIfNull);
32144adee20fSdanielk1977       sqlite3ExprIfTrue(pParse, pExpr->pRight, dest, jumpIfNull);
3215cce7d176Sdrh       break;
3216cce7d176Sdrh     }
3217cce7d176Sdrh     case TK_NOT: {
3218c5499befSdrh       testcase( jumpIfNull==0 );
32194adee20fSdanielk1977       sqlite3ExprIfFalse(pParse, pExpr->pLeft, dest, jumpIfNull);
3220cce7d176Sdrh       break;
3221cce7d176Sdrh     }
3222cce7d176Sdrh     case TK_LT:
3223cce7d176Sdrh     case TK_LE:
3224cce7d176Sdrh     case TK_GT:
3225cce7d176Sdrh     case TK_GE:
3226cce7d176Sdrh     case TK_NE:
32270ac65892Sdrh     case TK_EQ: {
3228f2bc013cSdrh       assert( TK_LT==OP_Lt );
3229f2bc013cSdrh       assert( TK_LE==OP_Le );
3230f2bc013cSdrh       assert( TK_GT==OP_Gt );
3231f2bc013cSdrh       assert( TK_GE==OP_Ge );
3232f2bc013cSdrh       assert( TK_EQ==OP_Eq );
3233f2bc013cSdrh       assert( TK_NE==OP_Ne );
3234c5499befSdrh       testcase( op==TK_LT );
3235c5499befSdrh       testcase( op==TK_LE );
3236c5499befSdrh       testcase( op==TK_GT );
3237c5499befSdrh       testcase( op==TK_GE );
3238c5499befSdrh       testcase( op==TK_EQ );
3239c5499befSdrh       testcase( op==TK_NE );
3240c5499befSdrh       testcase( jumpIfNull==0 );
3241da250ea5Sdrh       codeCompareOperands(pParse, pExpr->pLeft, &r1, &regFree1,
3242da250ea5Sdrh                                   pExpr->pRight, &r2, &regFree2);
324335573356Sdrh       codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op,
32442dcef11bSdrh                   r1, r2, dest, jumpIfNull);
3245c5499befSdrh       testcase( regFree1==0 );
3246c5499befSdrh       testcase( regFree2==0 );
3247cce7d176Sdrh       break;
3248cce7d176Sdrh     }
32496a2fe093Sdrh     case TK_IS:
32506a2fe093Sdrh     case TK_ISNOT: {
32516a2fe093Sdrh       testcase( op==TK_IS );
32526a2fe093Sdrh       testcase( op==TK_ISNOT );
32536a2fe093Sdrh       codeCompareOperands(pParse, pExpr->pLeft, &r1, &regFree1,
32546a2fe093Sdrh                                   pExpr->pRight, &r2, &regFree2);
32556a2fe093Sdrh       op = (op==TK_IS) ? TK_EQ : TK_NE;
32566a2fe093Sdrh       codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op,
32576a2fe093Sdrh                   r1, r2, dest, SQLITE_NULLEQ);
32586a2fe093Sdrh       testcase( regFree1==0 );
32596a2fe093Sdrh       testcase( regFree2==0 );
32606a2fe093Sdrh       break;
32616a2fe093Sdrh     }
3262cce7d176Sdrh     case TK_ISNULL:
3263cce7d176Sdrh     case TK_NOTNULL: {
3264f2bc013cSdrh       assert( TK_ISNULL==OP_IsNull );
3265f2bc013cSdrh       assert( TK_NOTNULL==OP_NotNull );
3266c5499befSdrh       testcase( op==TK_ISNULL );
3267c5499befSdrh       testcase( op==TK_NOTNULL );
32682dcef11bSdrh       r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, &regFree1);
32692dcef11bSdrh       sqlite3VdbeAddOp2(v, op, r1, dest);
3270c5499befSdrh       testcase( regFree1==0 );
3271cce7d176Sdrh       break;
3272cce7d176Sdrh     }
3273fef5208cSdrh     case TK_BETWEEN: {
32745c03f30aSdrh       testcase( jumpIfNull==0 );
327536c563a2Sdrh       exprCodeBetween(pParse, pExpr, dest, 1, jumpIfNull);
3276fef5208cSdrh       break;
3277fef5208cSdrh     }
3278e3365e6cSdrh     case TK_IN: {
3279e3365e6cSdrh       int destIfFalse = sqlite3VdbeMakeLabel(v);
3280e3365e6cSdrh       int destIfNull = jumpIfNull ? dest : destIfFalse;
3281e3365e6cSdrh       sqlite3ExprCodeIN(pParse, pExpr, destIfFalse, destIfNull);
3282e3365e6cSdrh       sqlite3VdbeAddOp2(v, OP_Goto, 0, dest);
3283e3365e6cSdrh       sqlite3VdbeResolveLabel(v, destIfFalse);
3284e3365e6cSdrh       break;
3285e3365e6cSdrh     }
3286cce7d176Sdrh     default: {
32872dcef11bSdrh       r1 = sqlite3ExprCodeTemp(pParse, pExpr, &regFree1);
32882dcef11bSdrh       sqlite3VdbeAddOp3(v, OP_If, r1, dest, jumpIfNull!=0);
3289c5499befSdrh       testcase( regFree1==0 );
3290c5499befSdrh       testcase( jumpIfNull==0 );
3291cce7d176Sdrh       break;
3292cce7d176Sdrh     }
3293cce7d176Sdrh   }
32942dcef11bSdrh   sqlite3ReleaseTempReg(pParse, regFree1);
32952dcef11bSdrh   sqlite3ReleaseTempReg(pParse, regFree2);
3296cce7d176Sdrh }
3297cce7d176Sdrh 
3298cce7d176Sdrh /*
329966b89c8fSdrh ** Generate code for a boolean expression such that a jump is made
3300cce7d176Sdrh ** to the label "dest" if the expression is false but execution
3301cce7d176Sdrh ** continues straight thru if the expression is true.
3302f5905aa7Sdrh **
3303f5905aa7Sdrh ** If the expression evaluates to NULL (neither true nor false) then
330435573356Sdrh ** jump if jumpIfNull is SQLITE_JUMPIFNULL or fall through if jumpIfNull
330535573356Sdrh ** is 0.
3306cce7d176Sdrh */
33074adee20fSdanielk1977 void sqlite3ExprIfFalse(Parse *pParse, Expr *pExpr, int dest, int jumpIfNull){
3308cce7d176Sdrh   Vdbe *v = pParse->pVdbe;
3309cce7d176Sdrh   int op = 0;
33102dcef11bSdrh   int regFree1 = 0;
33112dcef11bSdrh   int regFree2 = 0;
33122dcef11bSdrh   int r1, r2;
33132dcef11bSdrh 
331435573356Sdrh   assert( jumpIfNull==SQLITE_JUMPIFNULL || jumpIfNull==0 );
331533cd4909Sdrh   if( NEVER(v==0) ) return; /* Existance of VDBE checked by caller */
331633cd4909Sdrh   if( pExpr==0 )    return;
3317f2bc013cSdrh 
3318f2bc013cSdrh   /* The value of pExpr->op and op are related as follows:
3319f2bc013cSdrh   **
3320f2bc013cSdrh   **       pExpr->op            op
3321f2bc013cSdrh   **       ---------          ----------
3322f2bc013cSdrh   **       TK_ISNULL          OP_NotNull
3323f2bc013cSdrh   **       TK_NOTNULL         OP_IsNull
3324f2bc013cSdrh   **       TK_NE              OP_Eq
3325f2bc013cSdrh   **       TK_EQ              OP_Ne
3326f2bc013cSdrh   **       TK_GT              OP_Le
3327f2bc013cSdrh   **       TK_LE              OP_Gt
3328f2bc013cSdrh   **       TK_GE              OP_Lt
3329f2bc013cSdrh   **       TK_LT              OP_Ge
3330f2bc013cSdrh   **
3331f2bc013cSdrh   ** For other values of pExpr->op, op is undefined and unused.
3332f2bc013cSdrh   ** The value of TK_ and OP_ constants are arranged such that we
3333f2bc013cSdrh   ** can compute the mapping above using the following expression.
3334f2bc013cSdrh   ** Assert()s verify that the computation is correct.
3335f2bc013cSdrh   */
3336f2bc013cSdrh   op = ((pExpr->op+(TK_ISNULL&1))^1)-(TK_ISNULL&1);
3337f2bc013cSdrh 
3338f2bc013cSdrh   /* Verify correct alignment of TK_ and OP_ constants
3339f2bc013cSdrh   */
3340f2bc013cSdrh   assert( pExpr->op!=TK_ISNULL || op==OP_NotNull );
3341f2bc013cSdrh   assert( pExpr->op!=TK_NOTNULL || op==OP_IsNull );
3342f2bc013cSdrh   assert( pExpr->op!=TK_NE || op==OP_Eq );
3343f2bc013cSdrh   assert( pExpr->op!=TK_EQ || op==OP_Ne );
3344f2bc013cSdrh   assert( pExpr->op!=TK_LT || op==OP_Ge );
3345f2bc013cSdrh   assert( pExpr->op!=TK_LE || op==OP_Gt );
3346f2bc013cSdrh   assert( pExpr->op!=TK_GT || op==OP_Le );
3347f2bc013cSdrh   assert( pExpr->op!=TK_GE || op==OP_Lt );
3348f2bc013cSdrh 
3349cce7d176Sdrh   switch( pExpr->op ){
3350cce7d176Sdrh     case TK_AND: {
3351c5499befSdrh       testcase( jumpIfNull==0 );
33524adee20fSdanielk1977       sqlite3ExprIfFalse(pParse, pExpr->pLeft, dest, jumpIfNull);
33534adee20fSdanielk1977       sqlite3ExprIfFalse(pParse, pExpr->pRight, dest, jumpIfNull);
3354cce7d176Sdrh       break;
3355cce7d176Sdrh     }
3356cce7d176Sdrh     case TK_OR: {
33574adee20fSdanielk1977       int d2 = sqlite3VdbeMakeLabel(v);
3358c5499befSdrh       testcase( jumpIfNull==0 );
3359ceea3321Sdrh       sqlite3ExprCachePush(pParse);
336035573356Sdrh       sqlite3ExprIfTrue(pParse, pExpr->pLeft, d2, jumpIfNull^SQLITE_JUMPIFNULL);
33614adee20fSdanielk1977       sqlite3ExprIfFalse(pParse, pExpr->pRight, dest, jumpIfNull);
33624adee20fSdanielk1977       sqlite3VdbeResolveLabel(v, d2);
3363ceea3321Sdrh       sqlite3ExprCachePop(pParse, 1);
3364cce7d176Sdrh       break;
3365cce7d176Sdrh     }
3366cce7d176Sdrh     case TK_NOT: {
33675c03f30aSdrh       testcase( jumpIfNull==0 );
33684adee20fSdanielk1977       sqlite3ExprIfTrue(pParse, pExpr->pLeft, dest, jumpIfNull);
3369cce7d176Sdrh       break;
3370cce7d176Sdrh     }
3371cce7d176Sdrh     case TK_LT:
3372cce7d176Sdrh     case TK_LE:
3373cce7d176Sdrh     case TK_GT:
3374cce7d176Sdrh     case TK_GE:
3375cce7d176Sdrh     case TK_NE:
3376cce7d176Sdrh     case TK_EQ: {
3377c5499befSdrh       testcase( op==TK_LT );
3378c5499befSdrh       testcase( op==TK_LE );
3379c5499befSdrh       testcase( op==TK_GT );
3380c5499befSdrh       testcase( op==TK_GE );
3381c5499befSdrh       testcase( op==TK_EQ );
3382c5499befSdrh       testcase( op==TK_NE );
3383c5499befSdrh       testcase( jumpIfNull==0 );
3384da250ea5Sdrh       codeCompareOperands(pParse, pExpr->pLeft, &r1, &regFree1,
3385da250ea5Sdrh                                   pExpr->pRight, &r2, &regFree2);
338635573356Sdrh       codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op,
33872dcef11bSdrh                   r1, r2, dest, jumpIfNull);
3388c5499befSdrh       testcase( regFree1==0 );
3389c5499befSdrh       testcase( regFree2==0 );
3390cce7d176Sdrh       break;
3391cce7d176Sdrh     }
33926a2fe093Sdrh     case TK_IS:
33936a2fe093Sdrh     case TK_ISNOT: {
33946d4486aeSdrh       testcase( pExpr->op==TK_IS );
33956d4486aeSdrh       testcase( pExpr->op==TK_ISNOT );
33966a2fe093Sdrh       codeCompareOperands(pParse, pExpr->pLeft, &r1, &regFree1,
33976a2fe093Sdrh                                   pExpr->pRight, &r2, &regFree2);
33986a2fe093Sdrh       op = (pExpr->op==TK_IS) ? TK_NE : TK_EQ;
33996a2fe093Sdrh       codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op,
34006a2fe093Sdrh                   r1, r2, dest, SQLITE_NULLEQ);
34016a2fe093Sdrh       testcase( regFree1==0 );
34026a2fe093Sdrh       testcase( regFree2==0 );
34036a2fe093Sdrh       break;
34046a2fe093Sdrh     }
3405cce7d176Sdrh     case TK_ISNULL:
3406cce7d176Sdrh     case TK_NOTNULL: {
3407c5499befSdrh       testcase( op==TK_ISNULL );
3408c5499befSdrh       testcase( op==TK_NOTNULL );
34092dcef11bSdrh       r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, &regFree1);
34102dcef11bSdrh       sqlite3VdbeAddOp2(v, op, r1, dest);
3411c5499befSdrh       testcase( regFree1==0 );
3412cce7d176Sdrh       break;
3413cce7d176Sdrh     }
3414fef5208cSdrh     case TK_BETWEEN: {
34155c03f30aSdrh       testcase( jumpIfNull==0 );
341636c563a2Sdrh       exprCodeBetween(pParse, pExpr, dest, 0, jumpIfNull);
3417fef5208cSdrh       break;
3418fef5208cSdrh     }
3419e3365e6cSdrh     case TK_IN: {
3420e3365e6cSdrh       if( jumpIfNull ){
3421e3365e6cSdrh         sqlite3ExprCodeIN(pParse, pExpr, dest, dest);
3422e3365e6cSdrh       }else{
3423e3365e6cSdrh         int destIfNull = sqlite3VdbeMakeLabel(v);
3424e3365e6cSdrh         sqlite3ExprCodeIN(pParse, pExpr, dest, destIfNull);
3425e3365e6cSdrh         sqlite3VdbeResolveLabel(v, destIfNull);
3426e3365e6cSdrh       }
3427e3365e6cSdrh       break;
3428e3365e6cSdrh     }
3429cce7d176Sdrh     default: {
34302dcef11bSdrh       r1 = sqlite3ExprCodeTemp(pParse, pExpr, &regFree1);
34312dcef11bSdrh       sqlite3VdbeAddOp3(v, OP_IfNot, r1, dest, jumpIfNull!=0);
3432c5499befSdrh       testcase( regFree1==0 );
3433c5499befSdrh       testcase( jumpIfNull==0 );
3434cce7d176Sdrh       break;
3435cce7d176Sdrh     }
3436cce7d176Sdrh   }
34372dcef11bSdrh   sqlite3ReleaseTempReg(pParse, regFree1);
34382dcef11bSdrh   sqlite3ReleaseTempReg(pParse, regFree2);
3439cce7d176Sdrh }
34402282792aSdrh 
34412282792aSdrh /*
34422282792aSdrh ** Do a deep comparison of two expression trees.  Return TRUE (non-zero)
34432282792aSdrh ** if they are identical and return FALSE if they differ in any way.
3444d40aab0eSdrh **
3445d40aab0eSdrh ** Sometimes this routine will return FALSE even if the two expressions
3446d40aab0eSdrh ** really are equivalent.  If we cannot prove that the expressions are
3447d40aab0eSdrh ** identical, we return FALSE just to be safe.  So if this routine
3448d40aab0eSdrh ** returns false, then you do not really know for certain if the two
3449d40aab0eSdrh ** expressions are the same.  But if you get a TRUE return, then you
3450d40aab0eSdrh ** can be sure the expressions are the same.  In the places where
3451d40aab0eSdrh ** this routine is used, it does not hurt to get an extra FALSE - that
3452d40aab0eSdrh ** just might result in some slightly slower code.  But returning
3453d40aab0eSdrh ** an incorrect TRUE could lead to a malfunction.
34542282792aSdrh */
34554adee20fSdanielk1977 int sqlite3ExprCompare(Expr *pA, Expr *pB){
34562282792aSdrh   int i;
34574b202ae2Sdanielk1977   if( pA==0||pB==0 ){
34584b202ae2Sdanielk1977     return pB==pA;
34592282792aSdrh   }
346033e619fcSdrh   assert( !ExprHasAnyProperty(pA, EP_TokenOnly|EP_Reduced) );
346133e619fcSdrh   assert( !ExprHasAnyProperty(pB, EP_TokenOnly|EP_Reduced) );
34626ab3a2ecSdanielk1977   if( ExprHasProperty(pA, EP_xIsSelect) || ExprHasProperty(pB, EP_xIsSelect) ){
34636ab3a2ecSdanielk1977     return 0;
34646ab3a2ecSdanielk1977   }
3465fd357974Sdrh   if( (pA->flags & EP_Distinct)!=(pB->flags & EP_Distinct) ) return 0;
34666ab3a2ecSdanielk1977   if( pA->op!=pB->op ) return 0;
34674adee20fSdanielk1977   if( !sqlite3ExprCompare(pA->pLeft, pB->pLeft) ) return 0;
34684adee20fSdanielk1977   if( !sqlite3ExprCompare(pA->pRight, pB->pRight) ) return 0;
34696ab3a2ecSdanielk1977 
34706ab3a2ecSdanielk1977   if( pA->x.pList && pB->x.pList ){
34716ab3a2ecSdanielk1977     if( pA->x.pList->nExpr!=pB->x.pList->nExpr ) return 0;
34726ab3a2ecSdanielk1977     for(i=0; i<pA->x.pList->nExpr; i++){
34736ab3a2ecSdanielk1977       Expr *pExprA = pA->x.pList->a[i].pExpr;
34746ab3a2ecSdanielk1977       Expr *pExprB = pB->x.pList->a[i].pExpr;
34756ab3a2ecSdanielk1977       if( !sqlite3ExprCompare(pExprA, pExprB) ) return 0;
34766ab3a2ecSdanielk1977     }
34776ab3a2ecSdanielk1977   }else if( pA->x.pList || pB->x.pList ){
34782282792aSdrh     return 0;
34792282792aSdrh   }
34806ab3a2ecSdanielk1977 
34812f2c01e5Sdrh   if( pA->iTable!=pB->iTable || pA->iColumn!=pB->iColumn ) return 0;
348233e619fcSdrh   if( ExprHasProperty(pA, EP_IntValue) ){
348333e619fcSdrh     if( !ExprHasProperty(pB, EP_IntValue) || pA->u.iValue!=pB->u.iValue ){
348433e619fcSdrh       return 0;
348533e619fcSdrh     }
348633e619fcSdrh   }else if( pA->op!=TK_COLUMN && pA->u.zToken ){
348720bc393cSdrh     if( ExprHasProperty(pB, EP_IntValue) || NEVER(pB->u.zToken==0) ) return 0;
348833e619fcSdrh     if( sqlite3StrICmp(pA->u.zToken,pB->u.zToken)!=0 ){
34892646da7eSdrh       return 0;
34902646da7eSdrh     }
34912282792aSdrh   }
34922282792aSdrh   return 1;
34932282792aSdrh }
34942282792aSdrh 
349513449892Sdrh 
34962282792aSdrh /*
349713449892Sdrh ** Add a new element to the pAggInfo->aCol[] array.  Return the index of
349813449892Sdrh ** the new element.  Return a negative number if malloc fails.
34992282792aSdrh */
350017435752Sdrh static int addAggInfoColumn(sqlite3 *db, AggInfo *pInfo){
350113449892Sdrh   int i;
3502cf643729Sdrh   pInfo->aCol = sqlite3ArrayAllocate(
350317435752Sdrh        db,
3504cf643729Sdrh        pInfo->aCol,
3505cf643729Sdrh        sizeof(pInfo->aCol[0]),
3506cf643729Sdrh        3,
3507cf643729Sdrh        &pInfo->nColumn,
3508cf643729Sdrh        &pInfo->nColumnAlloc,
3509cf643729Sdrh        &i
3510cf643729Sdrh   );
351113449892Sdrh   return i;
35122282792aSdrh }
351313449892Sdrh 
351413449892Sdrh /*
351513449892Sdrh ** Add a new element to the pAggInfo->aFunc[] array.  Return the index of
351613449892Sdrh ** the new element.  Return a negative number if malloc fails.
351713449892Sdrh */
351817435752Sdrh static int addAggInfoFunc(sqlite3 *db, AggInfo *pInfo){
351913449892Sdrh   int i;
3520cf643729Sdrh   pInfo->aFunc = sqlite3ArrayAllocate(
352117435752Sdrh        db,
3522cf643729Sdrh        pInfo->aFunc,
3523cf643729Sdrh        sizeof(pInfo->aFunc[0]),
3524cf643729Sdrh        3,
3525cf643729Sdrh        &pInfo->nFunc,
3526cf643729Sdrh        &pInfo->nFuncAlloc,
3527cf643729Sdrh        &i
3528cf643729Sdrh   );
352913449892Sdrh   return i;
35302282792aSdrh }
35312282792aSdrh 
35322282792aSdrh /*
35337d10d5a6Sdrh ** This is the xExprCallback for a tree walker.  It is used to
35347d10d5a6Sdrh ** implement sqlite3ExprAnalyzeAggregates().  See sqlite3ExprAnalyzeAggregates
3535626a879aSdrh ** for additional information.
35362282792aSdrh */
35377d10d5a6Sdrh static int analyzeAggregate(Walker *pWalker, Expr *pExpr){
35382282792aSdrh   int i;
35397d10d5a6Sdrh   NameContext *pNC = pWalker->u.pNC;
3540a58fdfb1Sdanielk1977   Parse *pParse = pNC->pParse;
3541a58fdfb1Sdanielk1977   SrcList *pSrcList = pNC->pSrcList;
354213449892Sdrh   AggInfo *pAggInfo = pNC->pAggInfo;
354313449892Sdrh 
35442282792aSdrh   switch( pExpr->op ){
354589c69d00Sdrh     case TK_AGG_COLUMN:
3546967e8b73Sdrh     case TK_COLUMN: {
35478b213899Sdrh       testcase( pExpr->op==TK_AGG_COLUMN );
35488b213899Sdrh       testcase( pExpr->op==TK_COLUMN );
354913449892Sdrh       /* Check to see if the column is in one of the tables in the FROM
355013449892Sdrh       ** clause of the aggregate query */
355120bc393cSdrh       if( ALWAYS(pSrcList!=0) ){
355213449892Sdrh         struct SrcList_item *pItem = pSrcList->a;
355313449892Sdrh         for(i=0; i<pSrcList->nSrc; i++, pItem++){
355413449892Sdrh           struct AggInfo_col *pCol;
355533e619fcSdrh           assert( !ExprHasAnyProperty(pExpr, EP_TokenOnly|EP_Reduced) );
355613449892Sdrh           if( pExpr->iTable==pItem->iCursor ){
355713449892Sdrh             /* If we reach this point, it means that pExpr refers to a table
355813449892Sdrh             ** that is in the FROM clause of the aggregate query.
355913449892Sdrh             **
356013449892Sdrh             ** Make an entry for the column in pAggInfo->aCol[] if there
356113449892Sdrh             ** is not an entry there already.
356213449892Sdrh             */
35637f906d63Sdrh             int k;
356413449892Sdrh             pCol = pAggInfo->aCol;
35657f906d63Sdrh             for(k=0; k<pAggInfo->nColumn; k++, pCol++){
356613449892Sdrh               if( pCol->iTable==pExpr->iTable &&
356713449892Sdrh                   pCol->iColumn==pExpr->iColumn ){
35682282792aSdrh                 break;
35692282792aSdrh               }
35702282792aSdrh             }
35711e536953Sdanielk1977             if( (k>=pAggInfo->nColumn)
35721e536953Sdanielk1977              && (k = addAggInfoColumn(pParse->db, pAggInfo))>=0
35731e536953Sdanielk1977             ){
35747f906d63Sdrh               pCol = &pAggInfo->aCol[k];
35750817d0dfSdanielk1977               pCol->pTab = pExpr->pTab;
357613449892Sdrh               pCol->iTable = pExpr->iTable;
357713449892Sdrh               pCol->iColumn = pExpr->iColumn;
35780a07c107Sdrh               pCol->iMem = ++pParse->nMem;
357913449892Sdrh               pCol->iSorterColumn = -1;
35805774b806Sdrh               pCol->pExpr = pExpr;
358113449892Sdrh               if( pAggInfo->pGroupBy ){
358213449892Sdrh                 int j, n;
358313449892Sdrh                 ExprList *pGB = pAggInfo->pGroupBy;
358413449892Sdrh                 struct ExprList_item *pTerm = pGB->a;
358513449892Sdrh                 n = pGB->nExpr;
358613449892Sdrh                 for(j=0; j<n; j++, pTerm++){
358713449892Sdrh                   Expr *pE = pTerm->pExpr;
358813449892Sdrh                   if( pE->op==TK_COLUMN && pE->iTable==pExpr->iTable &&
358913449892Sdrh                       pE->iColumn==pExpr->iColumn ){
359013449892Sdrh                     pCol->iSorterColumn = j;
359113449892Sdrh                     break;
35922282792aSdrh                   }
359313449892Sdrh                 }
359413449892Sdrh               }
359513449892Sdrh               if( pCol->iSorterColumn<0 ){
359613449892Sdrh                 pCol->iSorterColumn = pAggInfo->nSortingColumn++;
359713449892Sdrh               }
359813449892Sdrh             }
359913449892Sdrh             /* There is now an entry for pExpr in pAggInfo->aCol[] (either
360013449892Sdrh             ** because it was there before or because we just created it).
360113449892Sdrh             ** Convert the pExpr to be a TK_AGG_COLUMN referring to that
360213449892Sdrh             ** pAggInfo->aCol[] entry.
360313449892Sdrh             */
360433e619fcSdrh             ExprSetIrreducible(pExpr);
360513449892Sdrh             pExpr->pAggInfo = pAggInfo;
360613449892Sdrh             pExpr->op = TK_AGG_COLUMN;
3607cf697396Sshane             pExpr->iAgg = (i16)k;
360813449892Sdrh             break;
360913449892Sdrh           } /* endif pExpr->iTable==pItem->iCursor */
361013449892Sdrh         } /* end loop over pSrcList */
3611a58fdfb1Sdanielk1977       }
36127d10d5a6Sdrh       return WRC_Prune;
36132282792aSdrh     }
36142282792aSdrh     case TK_AGG_FUNCTION: {
361513449892Sdrh       /* The pNC->nDepth==0 test causes aggregate functions in subqueries
361613449892Sdrh       ** to be ignored */
3617a58fdfb1Sdanielk1977       if( pNC->nDepth==0 ){
361813449892Sdrh         /* Check to see if pExpr is a duplicate of another aggregate
361913449892Sdrh         ** function that is already in the pAggInfo structure
362013449892Sdrh         */
362113449892Sdrh         struct AggInfo_func *pItem = pAggInfo->aFunc;
362213449892Sdrh         for(i=0; i<pAggInfo->nFunc; i++, pItem++){
362313449892Sdrh           if( sqlite3ExprCompare(pItem->pExpr, pExpr) ){
36242282792aSdrh             break;
36252282792aSdrh           }
36262282792aSdrh         }
362713449892Sdrh         if( i>=pAggInfo->nFunc ){
362813449892Sdrh           /* pExpr is original.  Make a new entry in pAggInfo->aFunc[]
362913449892Sdrh           */
363014db2665Sdanielk1977           u8 enc = ENC(pParse->db);
36311e536953Sdanielk1977           i = addAggInfoFunc(pParse->db, pAggInfo);
363213449892Sdrh           if( i>=0 ){
36336ab3a2ecSdanielk1977             assert( !ExprHasProperty(pExpr, EP_xIsSelect) );
363413449892Sdrh             pItem = &pAggInfo->aFunc[i];
363513449892Sdrh             pItem->pExpr = pExpr;
36360a07c107Sdrh             pItem->iMem = ++pParse->nMem;
363733e619fcSdrh             assert( !ExprHasProperty(pExpr, EP_IntValue) );
363813449892Sdrh             pItem->pFunc = sqlite3FindFunction(pParse->db,
363933e619fcSdrh                    pExpr->u.zToken, sqlite3Strlen30(pExpr->u.zToken),
36406ab3a2ecSdanielk1977                    pExpr->x.pList ? pExpr->x.pList->nExpr : 0, enc, 0);
3641fd357974Sdrh             if( pExpr->flags & EP_Distinct ){
3642fd357974Sdrh               pItem->iDistinct = pParse->nTab++;
3643fd357974Sdrh             }else{
3644fd357974Sdrh               pItem->iDistinct = -1;
3645fd357974Sdrh             }
36462282792aSdrh           }
364713449892Sdrh         }
364813449892Sdrh         /* Make pExpr point to the appropriate pAggInfo->aFunc[] entry
364913449892Sdrh         */
365033e619fcSdrh         assert( !ExprHasAnyProperty(pExpr, EP_TokenOnly|EP_Reduced) );
365133e619fcSdrh         ExprSetIrreducible(pExpr);
3652cf697396Sshane         pExpr->iAgg = (i16)i;
365313449892Sdrh         pExpr->pAggInfo = pAggInfo;
36547d10d5a6Sdrh         return WRC_Prune;
36552282792aSdrh       }
36562282792aSdrh     }
3657a58fdfb1Sdanielk1977   }
36587d10d5a6Sdrh   return WRC_Continue;
36597d10d5a6Sdrh }
36607d10d5a6Sdrh static int analyzeAggregatesInSelect(Walker *pWalker, Select *pSelect){
36617d10d5a6Sdrh   NameContext *pNC = pWalker->u.pNC;
36627d10d5a6Sdrh   if( pNC->nDepth==0 ){
3663a58fdfb1Sdanielk1977     pNC->nDepth++;
36647d10d5a6Sdrh     sqlite3WalkSelect(pWalker, pSelect);
3665a58fdfb1Sdanielk1977     pNC->nDepth--;
36667d10d5a6Sdrh     return WRC_Prune;
36677d10d5a6Sdrh   }else{
36687d10d5a6Sdrh     return WRC_Continue;
3669a58fdfb1Sdanielk1977   }
36702282792aSdrh }
3671626a879aSdrh 
3672626a879aSdrh /*
3673626a879aSdrh ** Analyze the given expression looking for aggregate functions and
3674626a879aSdrh ** for variables that need to be added to the pParse->aAgg[] array.
3675626a879aSdrh ** Make additional entries to the pParse->aAgg[] array as necessary.
3676626a879aSdrh **
3677626a879aSdrh ** This routine should only be called after the expression has been
36787d10d5a6Sdrh ** analyzed by sqlite3ResolveExprNames().
3679626a879aSdrh */
3680d2b3e23bSdrh void sqlite3ExprAnalyzeAggregates(NameContext *pNC, Expr *pExpr){
36817d10d5a6Sdrh   Walker w;
36827d10d5a6Sdrh   w.xExprCallback = analyzeAggregate;
36837d10d5a6Sdrh   w.xSelectCallback = analyzeAggregatesInSelect;
36847d10d5a6Sdrh   w.u.pNC = pNC;
368520bc393cSdrh   assert( pNC->pSrcList!=0 );
36867d10d5a6Sdrh   sqlite3WalkExpr(&w, pExpr);
36872282792aSdrh }
36885d9a4af9Sdrh 
36895d9a4af9Sdrh /*
36905d9a4af9Sdrh ** Call sqlite3ExprAnalyzeAggregates() for every expression in an
36915d9a4af9Sdrh ** expression list.  Return the number of errors.
36925d9a4af9Sdrh **
36935d9a4af9Sdrh ** If an error is found, the analysis is cut short.
36945d9a4af9Sdrh */
3695d2b3e23bSdrh void sqlite3ExprAnalyzeAggList(NameContext *pNC, ExprList *pList){
36965d9a4af9Sdrh   struct ExprList_item *pItem;
36975d9a4af9Sdrh   int i;
36985d9a4af9Sdrh   if( pList ){
3699d2b3e23bSdrh     for(pItem=pList->a, i=0; i<pList->nExpr; i++, pItem++){
3700d2b3e23bSdrh       sqlite3ExprAnalyzeAggregates(pNC, pItem->pExpr);
37015d9a4af9Sdrh     }
37025d9a4af9Sdrh   }
37035d9a4af9Sdrh }
3704892d3179Sdrh 
3705892d3179Sdrh /*
3706ceea3321Sdrh ** Allocate a single new register for use to hold some intermediate result.
3707892d3179Sdrh */
3708892d3179Sdrh int sqlite3GetTempReg(Parse *pParse){
3709e55cbd72Sdrh   if( pParse->nTempReg==0 ){
3710892d3179Sdrh     return ++pParse->nMem;
3711892d3179Sdrh   }
37122f425f6bSdanielk1977   return pParse->aTempReg[--pParse->nTempReg];
3713892d3179Sdrh }
3714ceea3321Sdrh 
3715ceea3321Sdrh /*
3716ceea3321Sdrh ** Deallocate a register, making available for reuse for some other
3717ceea3321Sdrh ** purpose.
3718ceea3321Sdrh **
3719ceea3321Sdrh ** If a register is currently being used by the column cache, then
3720ceea3321Sdrh ** the dallocation is deferred until the column cache line that uses
3721ceea3321Sdrh ** the register becomes stale.
3722ceea3321Sdrh */
3723892d3179Sdrh void sqlite3ReleaseTempReg(Parse *pParse, int iReg){
37242dcef11bSdrh   if( iReg && pParse->nTempReg<ArraySize(pParse->aTempReg) ){
3725ceea3321Sdrh     int i;
3726ceea3321Sdrh     struct yColCache *p;
3727ceea3321Sdrh     for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){
3728ceea3321Sdrh       if( p->iReg==iReg ){
3729ceea3321Sdrh         p->tempReg = 1;
3730ceea3321Sdrh         return;
3731ceea3321Sdrh       }
3732ceea3321Sdrh     }
3733892d3179Sdrh     pParse->aTempReg[pParse->nTempReg++] = iReg;
3734892d3179Sdrh   }
3735892d3179Sdrh }
3736892d3179Sdrh 
3737892d3179Sdrh /*
3738892d3179Sdrh ** Allocate or deallocate a block of nReg consecutive registers
3739892d3179Sdrh */
3740892d3179Sdrh int sqlite3GetTempRange(Parse *pParse, int nReg){
3741e55cbd72Sdrh   int i, n;
3742892d3179Sdrh   i = pParse->iRangeReg;
3743e55cbd72Sdrh   n = pParse->nRangeReg;
3744e55cbd72Sdrh   if( nReg<=n && !usedAsColumnCache(pParse, i, i+n-1) ){
3745892d3179Sdrh     pParse->iRangeReg += nReg;
3746892d3179Sdrh     pParse->nRangeReg -= nReg;
3747892d3179Sdrh   }else{
3748892d3179Sdrh     i = pParse->nMem+1;
3749892d3179Sdrh     pParse->nMem += nReg;
3750892d3179Sdrh   }
3751892d3179Sdrh   return i;
3752892d3179Sdrh }
3753892d3179Sdrh void sqlite3ReleaseTempRange(Parse *pParse, int iReg, int nReg){
3754892d3179Sdrh   if( nReg>pParse->nRangeReg ){
3755892d3179Sdrh     pParse->nRangeReg = nReg;
3756892d3179Sdrh     pParse->iRangeReg = iReg;
3757892d3179Sdrh   }
3758892d3179Sdrh }
3759