xref: /sqlite-3.40.0/src/expr.c (revision feb306f5)
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;
93259a455fSdanielk1977     if( (op==TK_AGG_COLUMN || op==TK_COLUMN || op==TK_REGISTER) && p->pTab!=0 ){
947d10d5a6Sdrh       /* op==TK_REGISTER && p->pTab!=0 happens when pExpr was originally
957d10d5a6Sdrh       ** a TK_COLUMN but was previously evaluated and cached in a register */
967d10d5a6Sdrh       const char *zColl;
977d10d5a6Sdrh       int j = p->iColumn;
987d10d5a6Sdrh       if( j>=0 ){
997d10d5a6Sdrh         sqlite3 *db = pParse->db;
1007d10d5a6Sdrh         zColl = p->pTab->aCol[j].zColl;
101c4a64facSdrh         pColl = sqlite3FindCollSeq(db, ENC(db), zColl, 0);
1027d10d5a6Sdrh         pExpr->pColl = pColl;
1030202b29eSdanielk1977       }
1047d10d5a6Sdrh       break;
1057d10d5a6Sdrh     }
1067d10d5a6Sdrh     if( op!=TK_CAST && op!=TK_UPLUS ){
1077d10d5a6Sdrh       break;
1087d10d5a6Sdrh     }
1097d10d5a6Sdrh     p = p->pLeft;
1100202b29eSdanielk1977   }
1117cedc8d4Sdanielk1977   if( sqlite3CheckCollSeq(pParse, pColl) ){
1127cedc8d4Sdanielk1977     pColl = 0;
1137cedc8d4Sdanielk1977   }
1147cedc8d4Sdanielk1977   return pColl;
1150202b29eSdanielk1977 }
1160202b29eSdanielk1977 
1170202b29eSdanielk1977 /*
118626a879aSdrh ** pExpr is an operand of a comparison operator.  aff2 is the
119626a879aSdrh ** type affinity of the other operand.  This routine returns the
12053db1458Sdrh ** type affinity that should be used for the comparison operator.
12153db1458Sdrh */
122e014a838Sdanielk1977 char sqlite3CompareAffinity(Expr *pExpr, char aff2){
123bf3b721fSdanielk1977   char aff1 = sqlite3ExprAffinity(pExpr);
124e014a838Sdanielk1977   if( aff1 && aff2 ){
1258df447f0Sdrh     /* Both sides of the comparison are columns. If one has numeric
1268df447f0Sdrh     ** affinity, use that. Otherwise use no affinity.
127e014a838Sdanielk1977     */
1288a51256cSdrh     if( sqlite3IsNumericAffinity(aff1) || sqlite3IsNumericAffinity(aff2) ){
129e014a838Sdanielk1977       return SQLITE_AFF_NUMERIC;
130e014a838Sdanielk1977     }else{
131e014a838Sdanielk1977       return SQLITE_AFF_NONE;
132e014a838Sdanielk1977     }
133e014a838Sdanielk1977   }else if( !aff1 && !aff2 ){
1345f6a87b3Sdrh     /* Neither side of the comparison is a column.  Compare the
1355f6a87b3Sdrh     ** results directly.
136e014a838Sdanielk1977     */
1375f6a87b3Sdrh     return SQLITE_AFF_NONE;
138e014a838Sdanielk1977   }else{
139e014a838Sdanielk1977     /* One side is a column, the other is not. Use the columns affinity. */
140fe05af87Sdrh     assert( aff1==0 || aff2==0 );
141e014a838Sdanielk1977     return (aff1 + aff2);
142e014a838Sdanielk1977   }
143e014a838Sdanielk1977 }
144e014a838Sdanielk1977 
14553db1458Sdrh /*
14653db1458Sdrh ** pExpr is a comparison operator.  Return the type affinity that should
14753db1458Sdrh ** be applied to both operands prior to doing the comparison.
14853db1458Sdrh */
149e014a838Sdanielk1977 static char comparisonAffinity(Expr *pExpr){
150e014a838Sdanielk1977   char aff;
151e014a838Sdanielk1977   assert( pExpr->op==TK_EQ || pExpr->op==TK_IN || pExpr->op==TK_LT ||
152e014a838Sdanielk1977           pExpr->op==TK_GT || pExpr->op==TK_GE || pExpr->op==TK_LE ||
153e014a838Sdanielk1977           pExpr->op==TK_NE );
154e014a838Sdanielk1977   assert( pExpr->pLeft );
155bf3b721fSdanielk1977   aff = sqlite3ExprAffinity(pExpr->pLeft);
156e014a838Sdanielk1977   if( pExpr->pRight ){
157e014a838Sdanielk1977     aff = sqlite3CompareAffinity(pExpr->pRight, aff);
1586ab3a2ecSdanielk1977   }else if( ExprHasProperty(pExpr, EP_xIsSelect) ){
1596ab3a2ecSdanielk1977     aff = sqlite3CompareAffinity(pExpr->x.pSelect->pEList->a[0].pExpr, aff);
1606ab3a2ecSdanielk1977   }else if( !aff ){
161de087bd5Sdrh     aff = SQLITE_AFF_NONE;
162e014a838Sdanielk1977   }
163e014a838Sdanielk1977   return aff;
164e014a838Sdanielk1977 }
165e014a838Sdanielk1977 
166e014a838Sdanielk1977 /*
167e014a838Sdanielk1977 ** pExpr is a comparison expression, eg. '=', '<', IN(...) etc.
168e014a838Sdanielk1977 ** idx_affinity is the affinity of an indexed column. Return true
169e014a838Sdanielk1977 ** if the index with affinity idx_affinity may be used to implement
170e014a838Sdanielk1977 ** the comparison in pExpr.
171e014a838Sdanielk1977 */
172e014a838Sdanielk1977 int sqlite3IndexAffinityOk(Expr *pExpr, char idx_affinity){
173e014a838Sdanielk1977   char aff = comparisonAffinity(pExpr);
1748a51256cSdrh   switch( aff ){
1758a51256cSdrh     case SQLITE_AFF_NONE:
1768a51256cSdrh       return 1;
1778a51256cSdrh     case SQLITE_AFF_TEXT:
1788a51256cSdrh       return idx_affinity==SQLITE_AFF_TEXT;
1798a51256cSdrh     default:
1808a51256cSdrh       return sqlite3IsNumericAffinity(idx_affinity);
1818a51256cSdrh   }
182e014a838Sdanielk1977 }
183e014a838Sdanielk1977 
184a37cdde0Sdanielk1977 /*
18535573356Sdrh ** Return the P5 value that should be used for a binary comparison
186a37cdde0Sdanielk1977 ** opcode (OP_Eq, OP_Ge etc.) used to compare pExpr1 and pExpr2.
187a37cdde0Sdanielk1977 */
18835573356Sdrh static u8 binaryCompareP5(Expr *pExpr1, Expr *pExpr2, int jumpIfNull){
18935573356Sdrh   u8 aff = (char)sqlite3ExprAffinity(pExpr2);
1901bd10f8aSdrh   aff = (u8)sqlite3CompareAffinity(pExpr1, aff) | (u8)jumpIfNull;
19135573356Sdrh   return aff;
192a37cdde0Sdanielk1977 }
193a37cdde0Sdanielk1977 
194a2e00042Sdrh /*
1950202b29eSdanielk1977 ** Return a pointer to the collation sequence that should be used by
1960202b29eSdanielk1977 ** a binary comparison operator comparing pLeft and pRight.
1970202b29eSdanielk1977 **
1980202b29eSdanielk1977 ** If the left hand expression has a collating sequence type, then it is
1990202b29eSdanielk1977 ** used. Otherwise the collation sequence for the right hand expression
2000202b29eSdanielk1977 ** is used, or the default (BINARY) if neither expression has a collating
2010202b29eSdanielk1977 ** type.
202bcbb04e5Sdanielk1977 **
203bcbb04e5Sdanielk1977 ** Argument pRight (but not pLeft) may be a null pointer. In this case,
204bcbb04e5Sdanielk1977 ** it is not considered.
2050202b29eSdanielk1977 */
206bcbb04e5Sdanielk1977 CollSeq *sqlite3BinaryCompareCollSeq(
207bcbb04e5Sdanielk1977   Parse *pParse,
208bcbb04e5Sdanielk1977   Expr *pLeft,
209bcbb04e5Sdanielk1977   Expr *pRight
210bcbb04e5Sdanielk1977 ){
211ec41ddacSdrh   CollSeq *pColl;
212ec41ddacSdrh   assert( pLeft );
213ec41ddacSdrh   if( pLeft->flags & EP_ExpCollate ){
214ec41ddacSdrh     assert( pLeft->pColl );
215ec41ddacSdrh     pColl = pLeft->pColl;
216bcbb04e5Sdanielk1977   }else if( pRight && pRight->flags & EP_ExpCollate ){
217ec41ddacSdrh     assert( pRight->pColl );
218ec41ddacSdrh     pColl = pRight->pColl;
219ec41ddacSdrh   }else{
220ec41ddacSdrh     pColl = sqlite3ExprCollSeq(pParse, pLeft);
2210202b29eSdanielk1977     if( !pColl ){
2227cedc8d4Sdanielk1977       pColl = sqlite3ExprCollSeq(pParse, pRight);
2230202b29eSdanielk1977     }
224ec41ddacSdrh   }
2250202b29eSdanielk1977   return pColl;
2260202b29eSdanielk1977 }
2270202b29eSdanielk1977 
2280202b29eSdanielk1977 /*
229da250ea5Sdrh ** Generate the operands for a comparison operation.  Before
230da250ea5Sdrh ** generating the code for each operand, set the EP_AnyAff
231da250ea5Sdrh ** flag on the expression so that it will be able to used a
232da250ea5Sdrh ** cached column value that has previously undergone an
233da250ea5Sdrh ** affinity change.
234da250ea5Sdrh */
235da250ea5Sdrh static void codeCompareOperands(
236da250ea5Sdrh   Parse *pParse,    /* Parsing and code generating context */
237da250ea5Sdrh   Expr *pLeft,      /* The left operand */
238da250ea5Sdrh   int *pRegLeft,    /* Register where left operand is stored */
239da250ea5Sdrh   int *pFreeLeft,   /* Free this register when done */
240da250ea5Sdrh   Expr *pRight,     /* The right operand */
241da250ea5Sdrh   int *pRegRight,   /* Register where right operand is stored */
242da250ea5Sdrh   int *pFreeRight   /* Write temp register for right operand there */
243da250ea5Sdrh ){
244da250ea5Sdrh   while( pLeft->op==TK_UPLUS ) pLeft = pLeft->pLeft;
245da250ea5Sdrh   pLeft->flags |= EP_AnyAff;
246da250ea5Sdrh   *pRegLeft = sqlite3ExprCodeTemp(pParse, pLeft, pFreeLeft);
247da250ea5Sdrh   while( pRight->op==TK_UPLUS ) pRight = pRight->pLeft;
248da250ea5Sdrh   pRight->flags |= EP_AnyAff;
249da250ea5Sdrh   *pRegRight = sqlite3ExprCodeTemp(pParse, pRight, pFreeRight);
250da250ea5Sdrh }
251da250ea5Sdrh 
252da250ea5Sdrh /*
253be5c89acSdrh ** Generate code for a comparison operator.
254be5c89acSdrh */
255be5c89acSdrh static int codeCompare(
256be5c89acSdrh   Parse *pParse,    /* The parsing (and code generating) context */
257be5c89acSdrh   Expr *pLeft,      /* The left operand */
258be5c89acSdrh   Expr *pRight,     /* The right operand */
259be5c89acSdrh   int opcode,       /* The comparison opcode */
26035573356Sdrh   int in1, int in2, /* Register holding operands */
261be5c89acSdrh   int dest,         /* Jump here if true.  */
262be5c89acSdrh   int jumpIfNull    /* If true, jump if either operand is NULL */
263be5c89acSdrh ){
26435573356Sdrh   int p5;
26535573356Sdrh   int addr;
26635573356Sdrh   CollSeq *p4;
26735573356Sdrh 
26835573356Sdrh   p4 = sqlite3BinaryCompareCollSeq(pParse, pLeft, pRight);
26935573356Sdrh   p5 = binaryCompareP5(pLeft, pRight, jumpIfNull);
27035573356Sdrh   addr = sqlite3VdbeAddOp4(pParse->pVdbe, opcode, in2, dest, in1,
27135573356Sdrh                            (void*)p4, P4_COLLSEQ);
2721bd10f8aSdrh   sqlite3VdbeChangeP5(pParse->pVdbe, (u8)p5);
273e49b146fSdrh   if( (p5 & SQLITE_AFF_MASK)!=SQLITE_AFF_NONE ){
274da250ea5Sdrh     sqlite3ExprCacheAffinityChange(pParse, in1, 1);
275da250ea5Sdrh     sqlite3ExprCacheAffinityChange(pParse, in2, 1);
2762f7794c1Sdrh   }
27735573356Sdrh   return addr;
278be5c89acSdrh }
279be5c89acSdrh 
2804b5255acSdanielk1977 #if SQLITE_MAX_EXPR_DEPTH>0
2814b5255acSdanielk1977 /*
2824b5255acSdanielk1977 ** Check that argument nHeight is less than or equal to the maximum
2834b5255acSdanielk1977 ** expression depth allowed. If it is not, leave an error message in
2844b5255acSdanielk1977 ** pParse.
2854b5255acSdanielk1977 */
2867d10d5a6Sdrh int sqlite3ExprCheckHeight(Parse *pParse, int nHeight){
2874b5255acSdanielk1977   int rc = SQLITE_OK;
2884b5255acSdanielk1977   int mxHeight = pParse->db->aLimit[SQLITE_LIMIT_EXPR_DEPTH];
2894b5255acSdanielk1977   if( nHeight>mxHeight ){
2904b5255acSdanielk1977     sqlite3ErrorMsg(pParse,
2914b5255acSdanielk1977        "Expression tree is too large (maximum depth %d)", mxHeight
2924b5255acSdanielk1977     );
2934b5255acSdanielk1977     rc = SQLITE_ERROR;
2944b5255acSdanielk1977   }
2954b5255acSdanielk1977   return rc;
2964b5255acSdanielk1977 }
2974b5255acSdanielk1977 
2984b5255acSdanielk1977 /* The following three functions, heightOfExpr(), heightOfExprList()
2994b5255acSdanielk1977 ** and heightOfSelect(), are used to determine the maximum height
3004b5255acSdanielk1977 ** of any expression tree referenced by the structure passed as the
3014b5255acSdanielk1977 ** first argument.
3024b5255acSdanielk1977 **
3034b5255acSdanielk1977 ** If this maximum height is greater than the current value pointed
3044b5255acSdanielk1977 ** to by pnHeight, the second parameter, then set *pnHeight to that
3054b5255acSdanielk1977 ** value.
3064b5255acSdanielk1977 */
3074b5255acSdanielk1977 static void heightOfExpr(Expr *p, int *pnHeight){
3084b5255acSdanielk1977   if( p ){
3094b5255acSdanielk1977     if( p->nHeight>*pnHeight ){
3104b5255acSdanielk1977       *pnHeight = p->nHeight;
3114b5255acSdanielk1977     }
3124b5255acSdanielk1977   }
3134b5255acSdanielk1977 }
3144b5255acSdanielk1977 static void heightOfExprList(ExprList *p, int *pnHeight){
3154b5255acSdanielk1977   if( p ){
3164b5255acSdanielk1977     int i;
3174b5255acSdanielk1977     for(i=0; i<p->nExpr; i++){
3184b5255acSdanielk1977       heightOfExpr(p->a[i].pExpr, pnHeight);
3194b5255acSdanielk1977     }
3204b5255acSdanielk1977   }
3214b5255acSdanielk1977 }
3224b5255acSdanielk1977 static void heightOfSelect(Select *p, int *pnHeight){
3234b5255acSdanielk1977   if( p ){
3244b5255acSdanielk1977     heightOfExpr(p->pWhere, pnHeight);
3254b5255acSdanielk1977     heightOfExpr(p->pHaving, pnHeight);
3264b5255acSdanielk1977     heightOfExpr(p->pLimit, pnHeight);
3274b5255acSdanielk1977     heightOfExpr(p->pOffset, pnHeight);
3284b5255acSdanielk1977     heightOfExprList(p->pEList, pnHeight);
3294b5255acSdanielk1977     heightOfExprList(p->pGroupBy, pnHeight);
3304b5255acSdanielk1977     heightOfExprList(p->pOrderBy, pnHeight);
3314b5255acSdanielk1977     heightOfSelect(p->pPrior, pnHeight);
3324b5255acSdanielk1977   }
3334b5255acSdanielk1977 }
3344b5255acSdanielk1977 
3354b5255acSdanielk1977 /*
3364b5255acSdanielk1977 ** Set the Expr.nHeight variable in the structure passed as an
3374b5255acSdanielk1977 ** argument. An expression with no children, Expr.pList or
3384b5255acSdanielk1977 ** Expr.pSelect member has a height of 1. Any other expression
3394b5255acSdanielk1977 ** has a height equal to the maximum height of any other
3404b5255acSdanielk1977 ** referenced Expr plus one.
3414b5255acSdanielk1977 */
3424b5255acSdanielk1977 static void exprSetHeight(Expr *p){
3434b5255acSdanielk1977   int nHeight = 0;
3444b5255acSdanielk1977   heightOfExpr(p->pLeft, &nHeight);
3454b5255acSdanielk1977   heightOfExpr(p->pRight, &nHeight);
3466ab3a2ecSdanielk1977   if( ExprHasProperty(p, EP_xIsSelect) ){
3476ab3a2ecSdanielk1977     heightOfSelect(p->x.pSelect, &nHeight);
3486ab3a2ecSdanielk1977   }else{
3496ab3a2ecSdanielk1977     heightOfExprList(p->x.pList, &nHeight);
3506ab3a2ecSdanielk1977   }
3514b5255acSdanielk1977   p->nHeight = nHeight + 1;
3524b5255acSdanielk1977 }
3534b5255acSdanielk1977 
3544b5255acSdanielk1977 /*
3554b5255acSdanielk1977 ** Set the Expr.nHeight variable using the exprSetHeight() function. If
3564b5255acSdanielk1977 ** the height is greater than the maximum allowed expression depth,
3574b5255acSdanielk1977 ** leave an error in pParse.
3584b5255acSdanielk1977 */
3594b5255acSdanielk1977 void sqlite3ExprSetHeight(Parse *pParse, Expr *p){
3604b5255acSdanielk1977   exprSetHeight(p);
3617d10d5a6Sdrh   sqlite3ExprCheckHeight(pParse, p->nHeight);
3624b5255acSdanielk1977 }
3634b5255acSdanielk1977 
3644b5255acSdanielk1977 /*
3654b5255acSdanielk1977 ** Return the maximum height of any expression tree referenced
3664b5255acSdanielk1977 ** by the select statement passed as an argument.
3674b5255acSdanielk1977 */
3684b5255acSdanielk1977 int sqlite3SelectExprHeight(Select *p){
3694b5255acSdanielk1977   int nHeight = 0;
3704b5255acSdanielk1977   heightOfSelect(p, &nHeight);
3714b5255acSdanielk1977   return nHeight;
3724b5255acSdanielk1977 }
3734b5255acSdanielk1977 #else
3744b5255acSdanielk1977   #define exprSetHeight(y)
3754b5255acSdanielk1977 #endif /* SQLITE_MAX_EXPR_DEPTH>0 */
3764b5255acSdanielk1977 
377be5c89acSdrh /*
378b7916a78Sdrh ** This routine is the core allocator for Expr nodes.
379b7916a78Sdrh **
380a76b5dfcSdrh ** Construct a new expression node and return a pointer to it.  Memory
381b7916a78Sdrh ** for this node and for the pToken argument is a single allocation
382b7916a78Sdrh ** obtained from sqlite3DbMalloc().  The calling function
383a76b5dfcSdrh ** is responsible for making sure the node eventually gets freed.
384b7916a78Sdrh **
385b7916a78Sdrh ** If dequote is true, then the token (if it exists) is dequoted.
386b7916a78Sdrh ** If dequote is false, no dequoting is performance.  The deQuote
387b7916a78Sdrh ** parameter is ignored if pToken is NULL or if the token does not
388b7916a78Sdrh ** appear to be quoted.  If the quotes were of the form "..." (double-quotes)
389b7916a78Sdrh ** then the EP_DblQuoted flag is set on the expression node.
39033e619fcSdrh **
39133e619fcSdrh ** Special case:  If op==TK_INTEGER and pToken points to a string that
39233e619fcSdrh ** can be translated into a 32-bit integer, then the token is not
39333e619fcSdrh ** stored in u.zToken.  Instead, the integer values is written
39433e619fcSdrh ** into u.iValue and the EP_IntValue flag is set.  No extra storage
39533e619fcSdrh ** is allocated to hold the integer text and the dequote flag is ignored.
396a76b5dfcSdrh */
397b7916a78Sdrh Expr *sqlite3ExprAlloc(
398a1644fd8Sdanielk1977   sqlite3 *db,            /* Handle for sqlite3DbMallocZero() (may be null) */
39917435752Sdrh   int op,                 /* Expression opcode */
400b7916a78Sdrh   const Token *pToken,    /* Token argument.  Might be NULL */
401b7916a78Sdrh   int dequote             /* True to dequote */
40217435752Sdrh ){
403a76b5dfcSdrh   Expr *pNew;
40433e619fcSdrh   int nExtra = 0;
405cf697396Sshane   int iValue = 0;
406b7916a78Sdrh 
407b7916a78Sdrh   if( pToken ){
40833e619fcSdrh     if( op!=TK_INTEGER || pToken->z==0
40933e619fcSdrh           || sqlite3GetInt32(pToken->z, &iValue)==0 ){
410b7916a78Sdrh       nExtra = pToken->n+1;
41133e619fcSdrh     }
412a76b5dfcSdrh   }
413b7916a78Sdrh   pNew = sqlite3DbMallocZero(db, sizeof(Expr)+nExtra);
414b7916a78Sdrh   if( pNew ){
4151bd10f8aSdrh     pNew->op = (u8)op;
416a58fdfb1Sdanielk1977     pNew->iAgg = -1;
417a76b5dfcSdrh     if( pToken ){
41833e619fcSdrh       if( nExtra==0 ){
41933e619fcSdrh         pNew->flags |= EP_IntValue;
42033e619fcSdrh         pNew->u.iValue = iValue;
42133e619fcSdrh       }else{
422d9da78a2Sdrh         int c;
42333e619fcSdrh         pNew->u.zToken = (char*)&pNew[1];
42433e619fcSdrh         memcpy(pNew->u.zToken, pToken->z, pToken->n);
42533e619fcSdrh         pNew->u.zToken[pToken->n] = 0;
426b7916a78Sdrh         if( dequote && nExtra>=3
427d9da78a2Sdrh              && ((c = pToken->z[0])=='\'' || c=='"' || c=='[' || c=='`') ){
42833e619fcSdrh           sqlite3Dequote(pNew->u.zToken);
42924fb627aSdrh           if( c=='"' ) pNew->flags |= EP_DblQuoted;
430a34001c9Sdrh         }
431a34001c9Sdrh       }
43233e619fcSdrh     }
433b7916a78Sdrh #if SQLITE_MAX_EXPR_DEPTH>0
434b7916a78Sdrh     pNew->nHeight = 1;
435b7916a78Sdrh #endif
436a34001c9Sdrh   }
437a76b5dfcSdrh   return pNew;
438a76b5dfcSdrh }
439a76b5dfcSdrh 
440a76b5dfcSdrh /*
441b7916a78Sdrh ** Allocate a new expression node from a zero-terminated token that has
442b7916a78Sdrh ** already been dequoted.
443b7916a78Sdrh */
444b7916a78Sdrh Expr *sqlite3Expr(
445b7916a78Sdrh   sqlite3 *db,            /* Handle for sqlite3DbMallocZero() (may be null) */
446b7916a78Sdrh   int op,                 /* Expression opcode */
447b7916a78Sdrh   const char *zToken      /* Token argument.  Might be NULL */
448b7916a78Sdrh ){
449b7916a78Sdrh   Token x;
450b7916a78Sdrh   x.z = zToken;
451b7916a78Sdrh   x.n = zToken ? sqlite3Strlen30(zToken) : 0;
452b7916a78Sdrh   return sqlite3ExprAlloc(db, op, &x, 0);
453b7916a78Sdrh }
454b7916a78Sdrh 
455b7916a78Sdrh /*
456b7916a78Sdrh ** Attach subtrees pLeft and pRight to the Expr node pRoot.
457b7916a78Sdrh **
458b7916a78Sdrh ** If pRoot==NULL that means that a memory allocation error has occurred.
459b7916a78Sdrh ** In that case, delete the subtrees pLeft and pRight.
460b7916a78Sdrh */
461b7916a78Sdrh void sqlite3ExprAttachSubtrees(
462b7916a78Sdrh   sqlite3 *db,
463b7916a78Sdrh   Expr *pRoot,
464b7916a78Sdrh   Expr *pLeft,
465b7916a78Sdrh   Expr *pRight
466b7916a78Sdrh ){
467b7916a78Sdrh   if( pRoot==0 ){
468b7916a78Sdrh     assert( db->mallocFailed );
469b7916a78Sdrh     sqlite3ExprDelete(db, pLeft);
470b7916a78Sdrh     sqlite3ExprDelete(db, pRight);
471b7916a78Sdrh   }else{
472b7916a78Sdrh     if( pRight ){
473b7916a78Sdrh       pRoot->pRight = pRight;
474b7916a78Sdrh       if( pRight->flags & EP_ExpCollate ){
475b7916a78Sdrh         pRoot->flags |= EP_ExpCollate;
476b7916a78Sdrh         pRoot->pColl = pRight->pColl;
477b7916a78Sdrh       }
478b7916a78Sdrh     }
479b7916a78Sdrh     if( pLeft ){
480b7916a78Sdrh       pRoot->pLeft = pLeft;
481b7916a78Sdrh       if( pLeft->flags & EP_ExpCollate ){
482b7916a78Sdrh         pRoot->flags |= EP_ExpCollate;
483b7916a78Sdrh         pRoot->pColl = pLeft->pColl;
484b7916a78Sdrh       }
485b7916a78Sdrh     }
486b7916a78Sdrh     exprSetHeight(pRoot);
487b7916a78Sdrh   }
488b7916a78Sdrh }
489b7916a78Sdrh 
490b7916a78Sdrh /*
491bf664469Sdrh ** Allocate a Expr node which joins as many as two subtrees.
492b7916a78Sdrh **
493bf664469Sdrh ** One or both of the subtrees can be NULL.  Return a pointer to the new
494bf664469Sdrh ** Expr node.  Or, if an OOM error occurs, set pParse->db->mallocFailed,
495bf664469Sdrh ** free the subtrees and return NULL.
496206f3d96Sdrh */
49717435752Sdrh Expr *sqlite3PExpr(
49817435752Sdrh   Parse *pParse,          /* Parsing context */
49917435752Sdrh   int op,                 /* Expression opcode */
50017435752Sdrh   Expr *pLeft,            /* Left operand */
50117435752Sdrh   Expr *pRight,           /* Right operand */
50217435752Sdrh   const Token *pToken     /* Argument token */
50317435752Sdrh ){
504b7916a78Sdrh   Expr *p = sqlite3ExprAlloc(pParse->db, op, pToken, 1);
505b7916a78Sdrh   sqlite3ExprAttachSubtrees(pParse->db, p, pLeft, pRight);
5064e0cff60Sdrh   return p;
5074e0cff60Sdrh }
5084e0cff60Sdrh 
5094e0cff60Sdrh /*
51091bb0eedSdrh ** Join two expressions using an AND operator.  If either expression is
51191bb0eedSdrh ** NULL, then just return the other expression.
51291bb0eedSdrh */
5131e536953Sdanielk1977 Expr *sqlite3ExprAnd(sqlite3 *db, Expr *pLeft, Expr *pRight){
51491bb0eedSdrh   if( pLeft==0 ){
51591bb0eedSdrh     return pRight;
51691bb0eedSdrh   }else if( pRight==0 ){
51791bb0eedSdrh     return pLeft;
51891bb0eedSdrh   }else{
519b7916a78Sdrh     Expr *pNew = sqlite3ExprAlloc(db, TK_AND, 0, 0);
520b7916a78Sdrh     sqlite3ExprAttachSubtrees(db, pNew, pLeft, pRight);
521b7916a78Sdrh     return pNew;
522a76b5dfcSdrh   }
523a76b5dfcSdrh }
524a76b5dfcSdrh 
525a76b5dfcSdrh /*
526a76b5dfcSdrh ** Construct a new expression node for a function with multiple
527a76b5dfcSdrh ** arguments.
528a76b5dfcSdrh */
52917435752Sdrh Expr *sqlite3ExprFunction(Parse *pParse, ExprList *pList, Token *pToken){
530a76b5dfcSdrh   Expr *pNew;
531633e6d57Sdrh   sqlite3 *db = pParse->db;
5324b202ae2Sdanielk1977   assert( pToken );
533b7916a78Sdrh   pNew = sqlite3ExprAlloc(db, TK_FUNCTION, pToken, 1);
534a76b5dfcSdrh   if( pNew==0 ){
535d9da78a2Sdrh     sqlite3ExprListDelete(db, pList); /* Avoid memory leak when malloc fails */
536a76b5dfcSdrh     return 0;
537a76b5dfcSdrh   }
5386ab3a2ecSdanielk1977   pNew->x.pList = pList;
5396ab3a2ecSdanielk1977   assert( !ExprHasProperty(pNew, EP_xIsSelect) );
5404b5255acSdanielk1977   sqlite3ExprSetHeight(pParse, pNew);
541a76b5dfcSdrh   return pNew;
542a76b5dfcSdrh }
543a76b5dfcSdrh 
544a76b5dfcSdrh /*
545fa6bc000Sdrh ** Assign a variable number to an expression that encodes a wildcard
546fa6bc000Sdrh ** in the original SQL statement.
547fa6bc000Sdrh **
548fa6bc000Sdrh ** Wildcards consisting of a single "?" are assigned the next sequential
549fa6bc000Sdrh ** variable number.
550fa6bc000Sdrh **
551fa6bc000Sdrh ** Wildcards of the form "?nnn" are assigned the number "nnn".  We make
552fa6bc000Sdrh ** sure "nnn" is not too be to avoid a denial of service attack when
553fa6bc000Sdrh ** the SQL statement comes from an external source.
554fa6bc000Sdrh **
55551f49f17Sdrh ** Wildcards of the form ":aaa", "@aaa", or "$aaa" are assigned the same number
556fa6bc000Sdrh ** as the previous instance of the same wildcard.  Or if this is the first
557fa6bc000Sdrh ** instance of the wildcard, the next sequenial variable number is
558fa6bc000Sdrh ** assigned.
559fa6bc000Sdrh */
560fa6bc000Sdrh void sqlite3ExprAssignVarNumber(Parse *pParse, Expr *pExpr){
56117435752Sdrh   sqlite3 *db = pParse->db;
562b7916a78Sdrh   const char *z;
56317435752Sdrh 
564fa6bc000Sdrh   if( pExpr==0 ) return;
56533e619fcSdrh   assert( !ExprHasAnyProperty(pExpr, EP_IntValue|EP_Reduced|EP_TokenOnly) );
56633e619fcSdrh   z = pExpr->u.zToken;
567b7916a78Sdrh   assert( z!=0 );
568b7916a78Sdrh   assert( z[0]!=0 );
569b7916a78Sdrh   if( z[1]==0 ){
570fa6bc000Sdrh     /* Wildcard of the form "?".  Assign the next variable number */
571b7916a78Sdrh     assert( z[0]=='?' );
572fa6bc000Sdrh     pExpr->iTable = ++pParse->nVar;
573b7916a78Sdrh   }else if( z[0]=='?' ){
574fa6bc000Sdrh     /* Wildcard of the form "?nnn".  Convert "nnn" to an integer and
575fa6bc000Sdrh     ** use it as the variable number */
576fa6bc000Sdrh     int i;
577b7916a78Sdrh     pExpr->iTable = i = atoi((char*)&z[1]);
578c5499befSdrh     testcase( i==0 );
579c5499befSdrh     testcase( i==1 );
580c5499befSdrh     testcase( i==db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER]-1 );
581c5499befSdrh     testcase( i==db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER] );
582bb4957f8Sdrh     if( i<1 || i>db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER] ){
583fa6bc000Sdrh       sqlite3ErrorMsg(pParse, "variable number must be between ?1 and ?%d",
584bb4957f8Sdrh           db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER]);
585fa6bc000Sdrh     }
586fa6bc000Sdrh     if( i>pParse->nVar ){
587fa6bc000Sdrh       pParse->nVar = i;
588fa6bc000Sdrh     }
589fa6bc000Sdrh   }else{
59051f49f17Sdrh     /* Wildcards like ":aaa", "$aaa" or "@aaa".  Reuse the same variable
591fa6bc000Sdrh     ** number as the prior appearance of the same name, or if the name
592fa6bc000Sdrh     ** has never appeared before, reuse the same variable number
593fa6bc000Sdrh     */
5941bd10f8aSdrh     int i;
5951bd10f8aSdrh     u32 n;
596b7916a78Sdrh     n = sqlite3Strlen30(z);
597fa6bc000Sdrh     for(i=0; i<pParse->nVarExpr; i++){
59851f49f17Sdrh       Expr *pE = pParse->apVarExpr[i];
59951f49f17Sdrh       assert( pE!=0 );
60033e619fcSdrh       if( memcmp(pE->u.zToken, z, n)==0 && pE->u.zToken[n]==0 ){
601fa6bc000Sdrh         pExpr->iTable = pE->iTable;
602fa6bc000Sdrh         break;
603fa6bc000Sdrh       }
604fa6bc000Sdrh     }
605fa6bc000Sdrh     if( i>=pParse->nVarExpr ){
606fa6bc000Sdrh       pExpr->iTable = ++pParse->nVar;
607fa6bc000Sdrh       if( pParse->nVarExpr>=pParse->nVarExprAlloc-1 ){
608fa6bc000Sdrh         pParse->nVarExprAlloc += pParse->nVarExprAlloc + 10;
60917435752Sdrh         pParse->apVarExpr =
61017435752Sdrh             sqlite3DbReallocOrFree(
61117435752Sdrh               db,
61217435752Sdrh               pParse->apVarExpr,
61317435752Sdrh               pParse->nVarExprAlloc*sizeof(pParse->apVarExpr[0])
61417435752Sdrh             );
615fa6bc000Sdrh       }
61617435752Sdrh       if( !db->mallocFailed ){
617fa6bc000Sdrh         assert( pParse->apVarExpr!=0 );
618fa6bc000Sdrh         pParse->apVarExpr[pParse->nVarExpr++] = pExpr;
619fa6bc000Sdrh       }
620fa6bc000Sdrh     }
621fa6bc000Sdrh   }
622bb4957f8Sdrh   if( !pParse->nErr && pParse->nVar>db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER] ){
623832b2664Sdanielk1977     sqlite3ErrorMsg(pParse, "too many SQL variables");
624832b2664Sdanielk1977   }
625fa6bc000Sdrh }
626fa6bc000Sdrh 
627fa6bc000Sdrh /*
62810fe840eSdrh ** Clear an expression structure without deleting the structure itself.
62910fe840eSdrh ** Substructure is deleted.
630a2e00042Sdrh */
63110fe840eSdrh void sqlite3ExprClear(sqlite3 *db, Expr *p){
63233e619fcSdrh   assert( p!=0 );
633b7916a78Sdrh   if( !ExprHasAnyProperty(p, EP_TokenOnly) ){
634633e6d57Sdrh     sqlite3ExprDelete(db, p->pLeft);
635633e6d57Sdrh     sqlite3ExprDelete(db, p->pRight);
63633e619fcSdrh     if( !ExprHasProperty(p, EP_Reduced) && (p->flags2 & EP2_MallocedToken)!=0 ){
63733e619fcSdrh       sqlite3DbFree(db, p->u.zToken);
6386ab3a2ecSdanielk1977     }
6396ab3a2ecSdanielk1977     if( ExprHasProperty(p, EP_xIsSelect) ){
6406ab3a2ecSdanielk1977       sqlite3SelectDelete(db, p->x.pSelect);
6416ab3a2ecSdanielk1977     }else{
6426ab3a2ecSdanielk1977       sqlite3ExprListDelete(db, p->x.pList);
6436ab3a2ecSdanielk1977     }
6446ab3a2ecSdanielk1977   }
64510fe840eSdrh }
64610fe840eSdrh 
64710fe840eSdrh /*
64810fe840eSdrh ** Recursively delete an expression tree.
64910fe840eSdrh */
65010fe840eSdrh void sqlite3ExprDelete(sqlite3 *db, Expr *p){
65110fe840eSdrh   if( p==0 ) return;
65210fe840eSdrh   sqlite3ExprClear(db, p);
65333e619fcSdrh   if( !ExprHasProperty(p, EP_Static) ){
654633e6d57Sdrh     sqlite3DbFree(db, p);
655a2e00042Sdrh   }
65633e619fcSdrh }
657a2e00042Sdrh 
658d2687b77Sdrh /*
6596ab3a2ecSdanielk1977 ** Return the number of bytes allocated for the expression structure
6606ab3a2ecSdanielk1977 ** passed as the first argument. This is always one of EXPR_FULLSIZE,
6616ab3a2ecSdanielk1977 ** EXPR_REDUCEDSIZE or EXPR_TOKENONLYSIZE.
6626ab3a2ecSdanielk1977 */
6636ab3a2ecSdanielk1977 static int exprStructSize(Expr *p){
6646ab3a2ecSdanielk1977   if( ExprHasProperty(p, EP_TokenOnly) ) return EXPR_TOKENONLYSIZE;
6656ab3a2ecSdanielk1977   if( ExprHasProperty(p, EP_Reduced) ) return EXPR_REDUCEDSIZE;
6666ab3a2ecSdanielk1977   return EXPR_FULLSIZE;
6676ab3a2ecSdanielk1977 }
6686ab3a2ecSdanielk1977 
6696ab3a2ecSdanielk1977 /*
67033e619fcSdrh ** The dupedExpr*Size() routines each return the number of bytes required
67133e619fcSdrh ** to store a copy of an expression or expression tree.  They differ in
67233e619fcSdrh ** how much of the tree is measured.
67333e619fcSdrh **
67433e619fcSdrh **     dupedExprStructSize()     Size of only the Expr structure
67533e619fcSdrh **     dupedExprNodeSize()       Size of Expr + space for token
67633e619fcSdrh **     dupedExprSize()           Expr + token + subtree components
67733e619fcSdrh **
67833e619fcSdrh ***************************************************************************
67933e619fcSdrh **
68033e619fcSdrh ** The dupedExprStructSize() function returns two values OR-ed together:
68133e619fcSdrh ** (1) the space required for a copy of the Expr structure only and
68233e619fcSdrh ** (2) the EP_xxx flags that indicate what the structure size should be.
68333e619fcSdrh ** The return values is always one of:
68433e619fcSdrh **
68533e619fcSdrh **      EXPR_FULLSIZE
68633e619fcSdrh **      EXPR_REDUCEDSIZE   | EP_Reduced
68733e619fcSdrh **      EXPR_TOKENONLYSIZE | EP_TokenOnly
68833e619fcSdrh **
68933e619fcSdrh ** The size of the structure can be found by masking the return value
69033e619fcSdrh ** of this routine with 0xfff.  The flags can be found by masking the
69133e619fcSdrh ** return value with EP_Reduced|EP_TokenOnly.
69233e619fcSdrh **
69333e619fcSdrh ** Note that with flags==EXPRDUP_REDUCE, this routines works on full-size
69433e619fcSdrh ** (unreduced) Expr objects as they or originally constructed by the parser.
69533e619fcSdrh ** During expression analysis, extra information is computed and moved into
69633e619fcSdrh ** later parts of teh Expr object and that extra information might get chopped
69733e619fcSdrh ** off if the expression is reduced.  Note also that it does not work to
69833e619fcSdrh ** make a EXPRDUP_REDUCE copy of a reduced expression.  It is only legal
69933e619fcSdrh ** to reduce a pristine expression tree from the parser.  The implementation
70033e619fcSdrh ** of dupedExprStructSize() contain multiple assert() statements that attempt
70133e619fcSdrh ** to enforce this constraint.
7026ab3a2ecSdanielk1977 */
7036ab3a2ecSdanielk1977 static int dupedExprStructSize(Expr *p, int flags){
7046ab3a2ecSdanielk1977   int nSize;
70533e619fcSdrh   assert( flags==EXPRDUP_REDUCE || flags==0 ); /* Only one flag value allowed */
7066ab3a2ecSdanielk1977   if( 0==(flags&EXPRDUP_REDUCE) ){
7076ab3a2ecSdanielk1977     nSize = EXPR_FULLSIZE;
7086ab3a2ecSdanielk1977   }else{
70933e619fcSdrh     assert( !ExprHasAnyProperty(p, EP_TokenOnly|EP_Reduced) );
71033e619fcSdrh     assert( !ExprHasProperty(p, EP_FromJoin) );
71133e619fcSdrh     assert( (p->flags2 & EP2_MallocedToken)==0 );
71233e619fcSdrh     assert( (p->flags2 & EP2_Irreducible)==0 );
71333e619fcSdrh     if( p->pLeft || p->pRight || p->pColl || p->x.pList ){
71433e619fcSdrh       nSize = EXPR_REDUCEDSIZE | EP_Reduced;
71533e619fcSdrh     }else{
71633e619fcSdrh       nSize = EXPR_TOKENONLYSIZE | EP_TokenOnly;
71733e619fcSdrh     }
7186ab3a2ecSdanielk1977   }
7196ab3a2ecSdanielk1977   return nSize;
7206ab3a2ecSdanielk1977 }
7216ab3a2ecSdanielk1977 
7226ab3a2ecSdanielk1977 /*
72333e619fcSdrh ** This function returns the space in bytes required to store the copy
72433e619fcSdrh ** of the Expr structure and a copy of the Expr.u.zToken string (if that
72533e619fcSdrh ** string is defined.)
7266ab3a2ecSdanielk1977 */
7276ab3a2ecSdanielk1977 static int dupedExprNodeSize(Expr *p, int flags){
72833e619fcSdrh   int nByte = dupedExprStructSize(p, flags) & 0xfff;
72933e619fcSdrh   if( !ExprHasProperty(p, EP_IntValue) && p->u.zToken ){
73033e619fcSdrh     nByte += sqlite3Strlen30(p->u.zToken)+1;
7316ab3a2ecSdanielk1977   }
732bc73971dSdanielk1977   return ROUND8(nByte);
7336ab3a2ecSdanielk1977 }
7346ab3a2ecSdanielk1977 
7356ab3a2ecSdanielk1977 /*
7366ab3a2ecSdanielk1977 ** Return the number of bytes required to create a duplicate of the
7376ab3a2ecSdanielk1977 ** expression passed as the first argument. The second argument is a
7386ab3a2ecSdanielk1977 ** mask containing EXPRDUP_XXX flags.
7396ab3a2ecSdanielk1977 **
7406ab3a2ecSdanielk1977 ** The value returned includes space to create a copy of the Expr struct
74133e619fcSdrh ** itself and the buffer referred to by Expr.u.zToken, if any.
7426ab3a2ecSdanielk1977 **
7436ab3a2ecSdanielk1977 ** If the EXPRDUP_REDUCE flag is set, then the return value includes
7446ab3a2ecSdanielk1977 ** space to duplicate all Expr nodes in the tree formed by Expr.pLeft
7456ab3a2ecSdanielk1977 ** and Expr.pRight variables (but not for any structures pointed to or
7466ab3a2ecSdanielk1977 ** descended from the Expr.x.pList or Expr.x.pSelect variables).
7476ab3a2ecSdanielk1977 */
7486ab3a2ecSdanielk1977 static int dupedExprSize(Expr *p, int flags){
7496ab3a2ecSdanielk1977   int nByte = 0;
7506ab3a2ecSdanielk1977   if( p ){
7516ab3a2ecSdanielk1977     nByte = dupedExprNodeSize(p, flags);
7526ab3a2ecSdanielk1977     if( flags&EXPRDUP_REDUCE ){
753b7916a78Sdrh       nByte += dupedExprSize(p->pLeft, flags) + dupedExprSize(p->pRight, flags);
7546ab3a2ecSdanielk1977     }
7556ab3a2ecSdanielk1977   }
7566ab3a2ecSdanielk1977   return nByte;
7576ab3a2ecSdanielk1977 }
7586ab3a2ecSdanielk1977 
7596ab3a2ecSdanielk1977 /*
7606ab3a2ecSdanielk1977 ** This function is similar to sqlite3ExprDup(), except that if pzBuffer
7616ab3a2ecSdanielk1977 ** is not NULL then *pzBuffer is assumed to point to a buffer large enough
76233e619fcSdrh ** to store the copy of expression p, the copies of p->u.zToken
7636ab3a2ecSdanielk1977 ** (if applicable), and the copies of the p->pLeft and p->pRight expressions,
7646ab3a2ecSdanielk1977 ** if any. Before returning, *pzBuffer is set to the first byte passed the
7656ab3a2ecSdanielk1977 ** portion of the buffer copied into by this function.
7666ab3a2ecSdanielk1977 */
7676ab3a2ecSdanielk1977 static Expr *exprDup(sqlite3 *db, Expr *p, int flags, u8 **pzBuffer){
7686ab3a2ecSdanielk1977   Expr *pNew = 0;                      /* Value to return */
7696ab3a2ecSdanielk1977   if( p ){
7706ab3a2ecSdanielk1977     const int isReduced = (flags&EXPRDUP_REDUCE);
7716ab3a2ecSdanielk1977     u8 *zAlloc;
77233e619fcSdrh     u32 staticFlag = 0;
7736ab3a2ecSdanielk1977 
7746ab3a2ecSdanielk1977     assert( pzBuffer==0 || isReduced );
7756ab3a2ecSdanielk1977 
7766ab3a2ecSdanielk1977     /* Figure out where to write the new Expr structure. */
7776ab3a2ecSdanielk1977     if( pzBuffer ){
7786ab3a2ecSdanielk1977       zAlloc = *pzBuffer;
77933e619fcSdrh       staticFlag = EP_Static;
7806ab3a2ecSdanielk1977     }else{
7816ab3a2ecSdanielk1977       zAlloc = sqlite3DbMallocRaw(db, dupedExprSize(p, flags));
7826ab3a2ecSdanielk1977     }
7836ab3a2ecSdanielk1977     pNew = (Expr *)zAlloc;
7846ab3a2ecSdanielk1977 
7856ab3a2ecSdanielk1977     if( pNew ){
7866ab3a2ecSdanielk1977       /* Set nNewSize to the size allocated for the structure pointed to
7876ab3a2ecSdanielk1977       ** by pNew. This is either EXPR_FULLSIZE, EXPR_REDUCEDSIZE or
7886ab3a2ecSdanielk1977       ** EXPR_TOKENONLYSIZE. nToken is set to the number of bytes consumed
78933e619fcSdrh       ** by the copy of the p->u.zToken string (if any).
7906ab3a2ecSdanielk1977       */
79133e619fcSdrh       const unsigned nStructSize = dupedExprStructSize(p, flags);
79233e619fcSdrh       const int nNewSize = nStructSize & 0xfff;
79333e619fcSdrh       int nToken;
79433e619fcSdrh       if( !ExprHasProperty(p, EP_IntValue) && p->u.zToken ){
79533e619fcSdrh         nToken = sqlite3Strlen30(p->u.zToken) + 1;
79633e619fcSdrh       }else{
79733e619fcSdrh         nToken = 0;
79833e619fcSdrh       }
7996ab3a2ecSdanielk1977       if( isReduced ){
8006ab3a2ecSdanielk1977         assert( ExprHasProperty(p, EP_Reduced)==0 );
8016ab3a2ecSdanielk1977         memcpy(zAlloc, p, nNewSize);
8026ab3a2ecSdanielk1977       }else{
8036ab3a2ecSdanielk1977         int nSize = exprStructSize(p);
8046ab3a2ecSdanielk1977         memcpy(zAlloc, p, nSize);
8056ab3a2ecSdanielk1977         memset(&zAlloc[nSize], 0, EXPR_FULLSIZE-nSize);
8066ab3a2ecSdanielk1977       }
8076ab3a2ecSdanielk1977 
80833e619fcSdrh       /* Set the EP_Reduced, EP_TokenOnly, and EP_Static flags appropriately. */
80933e619fcSdrh       pNew->flags &= ~(EP_Reduced|EP_TokenOnly|EP_Static);
81033e619fcSdrh       pNew->flags |= nStructSize & (EP_Reduced|EP_TokenOnly);
81133e619fcSdrh       pNew->flags |= staticFlag;
8126ab3a2ecSdanielk1977 
81333e619fcSdrh       /* Copy the p->u.zToken string, if any. */
8146ab3a2ecSdanielk1977       if( nToken ){
81533e619fcSdrh         char *zToken = pNew->u.zToken = (char*)&zAlloc[nNewSize];
81633e619fcSdrh         memcpy(zToken, p->u.zToken, nToken);
8176ab3a2ecSdanielk1977       }
8186ab3a2ecSdanielk1977 
8196ab3a2ecSdanielk1977       if( 0==((p->flags|pNew->flags) & EP_TokenOnly) ){
8206ab3a2ecSdanielk1977         /* Fill in the pNew->x.pSelect or pNew->x.pList member. */
8216ab3a2ecSdanielk1977         if( ExprHasProperty(p, EP_xIsSelect) ){
8226ab3a2ecSdanielk1977           pNew->x.pSelect = sqlite3SelectDup(db, p->x.pSelect, isReduced);
8236ab3a2ecSdanielk1977         }else{
8246ab3a2ecSdanielk1977           pNew->x.pList = sqlite3ExprListDup(db, p->x.pList, isReduced);
8256ab3a2ecSdanielk1977         }
8266ab3a2ecSdanielk1977       }
8276ab3a2ecSdanielk1977 
8286ab3a2ecSdanielk1977       /* Fill in pNew->pLeft and pNew->pRight. */
829b7916a78Sdrh       if( ExprHasAnyProperty(pNew, EP_Reduced|EP_TokenOnly) ){
8306ab3a2ecSdanielk1977         zAlloc += dupedExprNodeSize(p, flags);
8316ab3a2ecSdanielk1977         if( ExprHasProperty(pNew, EP_Reduced) ){
8326ab3a2ecSdanielk1977           pNew->pLeft = exprDup(db, p->pLeft, EXPRDUP_REDUCE, &zAlloc);
8336ab3a2ecSdanielk1977           pNew->pRight = exprDup(db, p->pRight, EXPRDUP_REDUCE, &zAlloc);
8346ab3a2ecSdanielk1977         }
8356ab3a2ecSdanielk1977         if( pzBuffer ){
8366ab3a2ecSdanielk1977           *pzBuffer = zAlloc;
8376ab3a2ecSdanielk1977         }
838b7916a78Sdrh       }else{
839b7916a78Sdrh         pNew->flags2 = 0;
840b7916a78Sdrh         if( !ExprHasAnyProperty(p, EP_TokenOnly) ){
8416ab3a2ecSdanielk1977           pNew->pLeft = sqlite3ExprDup(db, p->pLeft, 0);
8426ab3a2ecSdanielk1977           pNew->pRight = sqlite3ExprDup(db, p->pRight, 0);
8436ab3a2ecSdanielk1977         }
8446ab3a2ecSdanielk1977       }
845b7916a78Sdrh 
846b7916a78Sdrh     }
8476ab3a2ecSdanielk1977   }
8486ab3a2ecSdanielk1977   return pNew;
8496ab3a2ecSdanielk1977 }
8506ab3a2ecSdanielk1977 
8516ab3a2ecSdanielk1977 /*
852ff78bd2fSdrh ** The following group of routines make deep copies of expressions,
853ff78bd2fSdrh ** expression lists, ID lists, and select statements.  The copies can
854ff78bd2fSdrh ** be deleted (by being passed to their respective ...Delete() routines)
855ff78bd2fSdrh ** without effecting the originals.
856ff78bd2fSdrh **
8574adee20fSdanielk1977 ** The expression list, ID, and source lists return by sqlite3ExprListDup(),
8584adee20fSdanielk1977 ** sqlite3IdListDup(), and sqlite3SrcListDup() can not be further expanded
859ad3cab52Sdrh ** by subsequent calls to sqlite*ListAppend() routines.
860ff78bd2fSdrh **
861ad3cab52Sdrh ** Any tables that the SrcList might point to are not duplicated.
8626ab3a2ecSdanielk1977 **
863b7916a78Sdrh ** The flags parameter contains a combination of the EXPRDUP_XXX flags.
8646ab3a2ecSdanielk1977 ** If the EXPRDUP_REDUCE flag is set, then the structure returned is a
8656ab3a2ecSdanielk1977 ** truncated version of the usual Expr structure that will be stored as
8666ab3a2ecSdanielk1977 ** part of the in-memory representation of the database schema.
867ff78bd2fSdrh */
8686ab3a2ecSdanielk1977 Expr *sqlite3ExprDup(sqlite3 *db, Expr *p, int flags){
8696ab3a2ecSdanielk1977   return exprDup(db, p, flags, 0);
870ff78bd2fSdrh }
8716ab3a2ecSdanielk1977 ExprList *sqlite3ExprListDup(sqlite3 *db, ExprList *p, int flags){
872ff78bd2fSdrh   ExprList *pNew;
873145716b3Sdrh   struct ExprList_item *pItem, *pOldItem;
874ff78bd2fSdrh   int i;
875ff78bd2fSdrh   if( p==0 ) return 0;
87617435752Sdrh   pNew = sqlite3DbMallocRaw(db, sizeof(*pNew) );
877ff78bd2fSdrh   if( pNew==0 ) return 0;
87831dad9daSdanielk1977   pNew->iECursor = 0;
8794305d103Sdrh   pNew->nExpr = pNew->nAlloc = p->nExpr;
88017435752Sdrh   pNew->a = pItem = sqlite3DbMallocRaw(db,  p->nExpr*sizeof(p->a[0]) );
881e0048400Sdanielk1977   if( pItem==0 ){
882633e6d57Sdrh     sqlite3DbFree(db, pNew);
883e0048400Sdanielk1977     return 0;
884e0048400Sdanielk1977   }
885145716b3Sdrh   pOldItem = p->a;
886145716b3Sdrh   for(i=0; i<p->nExpr; i++, pItem++, pOldItem++){
8876ab3a2ecSdanielk1977     Expr *pOldExpr = pOldItem->pExpr;
888b5526ea6Sdrh     pItem->pExpr = sqlite3ExprDup(db, pOldExpr, flags);
88917435752Sdrh     pItem->zName = sqlite3DbStrDup(db, pOldItem->zName);
890b7916a78Sdrh     pItem->zSpan = sqlite3DbStrDup(db, pOldItem->zSpan);
891145716b3Sdrh     pItem->sortOrder = pOldItem->sortOrder;
8923e7bc9caSdrh     pItem->done = 0;
8937d10d5a6Sdrh     pItem->iCol = pOldItem->iCol;
8948b213899Sdrh     pItem->iAlias = pOldItem->iAlias;
895ff78bd2fSdrh   }
896ff78bd2fSdrh   return pNew;
897ff78bd2fSdrh }
89893758c8dSdanielk1977 
89993758c8dSdanielk1977 /*
90093758c8dSdanielk1977 ** If cursors, triggers, views and subqueries are all omitted from
90193758c8dSdanielk1977 ** the build, then none of the following routines, except for
90293758c8dSdanielk1977 ** sqlite3SelectDup(), can be called. sqlite3SelectDup() is sometimes
90393758c8dSdanielk1977 ** called with a NULL argument.
90493758c8dSdanielk1977 */
9056a67fe8eSdanielk1977 #if !defined(SQLITE_OMIT_VIEW) || !defined(SQLITE_OMIT_TRIGGER) \
9066a67fe8eSdanielk1977  || !defined(SQLITE_OMIT_SUBQUERY)
9076ab3a2ecSdanielk1977 SrcList *sqlite3SrcListDup(sqlite3 *db, SrcList *p, int flags){
908ad3cab52Sdrh   SrcList *pNew;
909ad3cab52Sdrh   int i;
910113088ecSdrh   int nByte;
911ad3cab52Sdrh   if( p==0 ) return 0;
912113088ecSdrh   nByte = sizeof(*p) + (p->nSrc>0 ? sizeof(p->a[0]) * (p->nSrc-1) : 0);
91317435752Sdrh   pNew = sqlite3DbMallocRaw(db, nByte );
914ad3cab52Sdrh   if( pNew==0 ) return 0;
9154305d103Sdrh   pNew->nSrc = pNew->nAlloc = p->nSrc;
916ad3cab52Sdrh   for(i=0; i<p->nSrc; i++){
9174efc4754Sdrh     struct SrcList_item *pNewItem = &pNew->a[i];
9184efc4754Sdrh     struct SrcList_item *pOldItem = &p->a[i];
919ed8a3bb1Sdrh     Table *pTab;
92017435752Sdrh     pNewItem->zDatabase = sqlite3DbStrDup(db, pOldItem->zDatabase);
92117435752Sdrh     pNewItem->zName = sqlite3DbStrDup(db, pOldItem->zName);
92217435752Sdrh     pNewItem->zAlias = sqlite3DbStrDup(db, pOldItem->zAlias);
9234efc4754Sdrh     pNewItem->jointype = pOldItem->jointype;
9244efc4754Sdrh     pNewItem->iCursor = pOldItem->iCursor;
9251787ccabSdanielk1977     pNewItem->isPopulated = pOldItem->isPopulated;
92685574e31Sdanielk1977     pNewItem->zIndex = sqlite3DbStrDup(db, pOldItem->zIndex);
92785574e31Sdanielk1977     pNewItem->notIndexed = pOldItem->notIndexed;
92885574e31Sdanielk1977     pNewItem->pIndex = pOldItem->pIndex;
929ed8a3bb1Sdrh     pTab = pNewItem->pTab = pOldItem->pTab;
930ed8a3bb1Sdrh     if( pTab ){
931ed8a3bb1Sdrh       pTab->nRef++;
932a1cb183dSdanielk1977     }
9336ab3a2ecSdanielk1977     pNewItem->pSelect = sqlite3SelectDup(db, pOldItem->pSelect, flags);
9346ab3a2ecSdanielk1977     pNewItem->pOn = sqlite3ExprDup(db, pOldItem->pOn, flags);
93517435752Sdrh     pNewItem->pUsing = sqlite3IdListDup(db, pOldItem->pUsing);
9366c18b6e0Sdanielk1977     pNewItem->colUsed = pOldItem->colUsed;
937ad3cab52Sdrh   }
938ad3cab52Sdrh   return pNew;
939ad3cab52Sdrh }
94017435752Sdrh IdList *sqlite3IdListDup(sqlite3 *db, IdList *p){
941ff78bd2fSdrh   IdList *pNew;
942ff78bd2fSdrh   int i;
943ff78bd2fSdrh   if( p==0 ) return 0;
94417435752Sdrh   pNew = sqlite3DbMallocRaw(db, sizeof(*pNew) );
945ff78bd2fSdrh   if( pNew==0 ) return 0;
9464305d103Sdrh   pNew->nId = pNew->nAlloc = p->nId;
94717435752Sdrh   pNew->a = sqlite3DbMallocRaw(db, p->nId*sizeof(p->a[0]) );
948d5d56523Sdanielk1977   if( pNew->a==0 ){
949633e6d57Sdrh     sqlite3DbFree(db, pNew);
950d5d56523Sdanielk1977     return 0;
951d5d56523Sdanielk1977   }
952ff78bd2fSdrh   for(i=0; i<p->nId; i++){
9534efc4754Sdrh     struct IdList_item *pNewItem = &pNew->a[i];
9544efc4754Sdrh     struct IdList_item *pOldItem = &p->a[i];
95517435752Sdrh     pNewItem->zName = sqlite3DbStrDup(db, pOldItem->zName);
9564efc4754Sdrh     pNewItem->idx = pOldItem->idx;
957ff78bd2fSdrh   }
958ff78bd2fSdrh   return pNew;
959ff78bd2fSdrh }
9606ab3a2ecSdanielk1977 Select *sqlite3SelectDup(sqlite3 *db, Select *p, int flags){
961ff78bd2fSdrh   Select *pNew;
962ff78bd2fSdrh   if( p==0 ) return 0;
96317435752Sdrh   pNew = sqlite3DbMallocRaw(db, sizeof(*p) );
964ff78bd2fSdrh   if( pNew==0 ) return 0;
965b7916a78Sdrh   pNew->pEList = sqlite3ExprListDup(db, p->pEList, flags);
9666ab3a2ecSdanielk1977   pNew->pSrc = sqlite3SrcListDup(db, p->pSrc, flags);
9676ab3a2ecSdanielk1977   pNew->pWhere = sqlite3ExprDup(db, p->pWhere, flags);
9686ab3a2ecSdanielk1977   pNew->pGroupBy = sqlite3ExprListDup(db, p->pGroupBy, flags);
9696ab3a2ecSdanielk1977   pNew->pHaving = sqlite3ExprDup(db, p->pHaving, flags);
9706ab3a2ecSdanielk1977   pNew->pOrderBy = sqlite3ExprListDup(db, p->pOrderBy, flags);
971ff78bd2fSdrh   pNew->op = p->op;
9726ab3a2ecSdanielk1977   pNew->pPrior = sqlite3SelectDup(db, p->pPrior, flags);
9736ab3a2ecSdanielk1977   pNew->pLimit = sqlite3ExprDup(db, p->pLimit, flags);
9746ab3a2ecSdanielk1977   pNew->pOffset = sqlite3ExprDup(db, p->pOffset, flags);
97592b01d53Sdrh   pNew->iLimit = 0;
97692b01d53Sdrh   pNew->iOffset = 0;
9777d10d5a6Sdrh   pNew->selFlags = p->selFlags & ~SF_UsesEphemeral;
9780342b1f5Sdrh   pNew->pRightmost = 0;
979b9bb7c18Sdrh   pNew->addrOpenEphm[0] = -1;
980b9bb7c18Sdrh   pNew->addrOpenEphm[1] = -1;
981b9bb7c18Sdrh   pNew->addrOpenEphm[2] = -1;
982ff78bd2fSdrh   return pNew;
983ff78bd2fSdrh }
98493758c8dSdanielk1977 #else
9856ab3a2ecSdanielk1977 Select *sqlite3SelectDup(sqlite3 *db, Select *p, int flags){
98693758c8dSdanielk1977   assert( p==0 );
98793758c8dSdanielk1977   return 0;
98893758c8dSdanielk1977 }
98993758c8dSdanielk1977 #endif
990ff78bd2fSdrh 
991ff78bd2fSdrh 
992ff78bd2fSdrh /*
993a76b5dfcSdrh ** Add a new element to the end of an expression list.  If pList is
994a76b5dfcSdrh ** initially NULL, then create a new expression list.
995b7916a78Sdrh **
996b7916a78Sdrh ** If a memory allocation error occurs, the entire list is freed and
997b7916a78Sdrh ** NULL is returned.  If non-NULL is returned, then it is guaranteed
998b7916a78Sdrh ** that the new entry was successfully appended.
999a76b5dfcSdrh */
100017435752Sdrh ExprList *sqlite3ExprListAppend(
100117435752Sdrh   Parse *pParse,          /* Parsing context */
100217435752Sdrh   ExprList *pList,        /* List to which to append. Might be NULL */
1003b7916a78Sdrh   Expr *pExpr             /* Expression to be appended. Might be NULL */
100417435752Sdrh ){
100517435752Sdrh   sqlite3 *db = pParse->db;
1006a76b5dfcSdrh   if( pList==0 ){
100717435752Sdrh     pList = sqlite3DbMallocZero(db, sizeof(ExprList) );
1008a76b5dfcSdrh     if( pList==0 ){
1009d5d56523Sdanielk1977       goto no_mem;
1010a76b5dfcSdrh     }
10114efc4754Sdrh     assert( pList->nAlloc==0 );
1012a76b5dfcSdrh   }
10134305d103Sdrh   if( pList->nAlloc<=pList->nExpr ){
1014d5d56523Sdanielk1977     struct ExprList_item *a;
1015d5d56523Sdanielk1977     int n = pList->nAlloc*2 + 4;
101626783a58Sdanielk1977     a = sqlite3DbRealloc(db, pList->a, n*sizeof(pList->a[0]));
1017d5d56523Sdanielk1977     if( a==0 ){
1018d5d56523Sdanielk1977       goto no_mem;
1019a76b5dfcSdrh     }
1020d5d56523Sdanielk1977     pList->a = a;
10216a1e071fSdrh     pList->nAlloc = sqlite3DbMallocSize(db, a)/sizeof(a[0]);
1022a76b5dfcSdrh   }
10234efc4754Sdrh   assert( pList->a!=0 );
1024b7916a78Sdrh   if( 1 ){
10254efc4754Sdrh     struct ExprList_item *pItem = &pList->a[pList->nExpr++];
10264efc4754Sdrh     memset(pItem, 0, sizeof(*pItem));
1027e94ddc9eSdanielk1977     pItem->pExpr = pExpr;
1028a76b5dfcSdrh   }
1029a76b5dfcSdrh   return pList;
1030d5d56523Sdanielk1977 
1031d5d56523Sdanielk1977 no_mem:
1032d5d56523Sdanielk1977   /* Avoid leaking memory if malloc has failed. */
1033633e6d57Sdrh   sqlite3ExprDelete(db, pExpr);
1034633e6d57Sdrh   sqlite3ExprListDelete(db, pList);
1035d5d56523Sdanielk1977   return 0;
1036a76b5dfcSdrh }
1037a76b5dfcSdrh 
1038a76b5dfcSdrh /*
1039b7916a78Sdrh ** Set the ExprList.a[].zName element of the most recently added item
1040b7916a78Sdrh ** on the expression list.
1041b7916a78Sdrh **
1042b7916a78Sdrh ** pList might be NULL following an OOM error.  But pName should never be
1043b7916a78Sdrh ** NULL.  If a memory allocation fails, the pParse->db->mallocFailed flag
1044b7916a78Sdrh ** is set.
1045b7916a78Sdrh */
1046b7916a78Sdrh void sqlite3ExprListSetName(
1047b7916a78Sdrh   Parse *pParse,          /* Parsing context */
1048b7916a78Sdrh   ExprList *pList,        /* List to which to add the span. */
1049b7916a78Sdrh   Token *pName,           /* Name to be added */
1050b7916a78Sdrh   int dequote             /* True to cause the name to be dequoted */
1051b7916a78Sdrh ){
1052b7916a78Sdrh   assert( pList!=0 || pParse->db->mallocFailed!=0 );
1053b7916a78Sdrh   if( pList ){
1054b7916a78Sdrh     struct ExprList_item *pItem;
1055b7916a78Sdrh     assert( pList->nExpr>0 );
1056b7916a78Sdrh     pItem = &pList->a[pList->nExpr-1];
1057b7916a78Sdrh     assert( pItem->zName==0 );
1058b7916a78Sdrh     pItem->zName = sqlite3DbStrNDup(pParse->db, pName->z, pName->n);
1059b7916a78Sdrh     if( dequote && pItem->zName ) sqlite3Dequote(pItem->zName);
1060b7916a78Sdrh   }
1061b7916a78Sdrh }
1062b7916a78Sdrh 
1063b7916a78Sdrh /*
1064b7916a78Sdrh ** Set the ExprList.a[].zSpan element of the most recently added item
1065b7916a78Sdrh ** on the expression list.
1066b7916a78Sdrh **
1067b7916a78Sdrh ** pList might be NULL following an OOM error.  But pSpan should never be
1068b7916a78Sdrh ** NULL.  If a memory allocation fails, the pParse->db->mallocFailed flag
1069b7916a78Sdrh ** is set.
1070b7916a78Sdrh */
1071b7916a78Sdrh void sqlite3ExprListSetSpan(
1072b7916a78Sdrh   Parse *pParse,          /* Parsing context */
1073b7916a78Sdrh   ExprList *pList,        /* List to which to add the span. */
1074b7916a78Sdrh   ExprSpan *pSpan         /* The span to be added */
1075b7916a78Sdrh ){
1076b7916a78Sdrh   sqlite3 *db = pParse->db;
1077b7916a78Sdrh   assert( pList!=0 || db->mallocFailed!=0 );
1078b7916a78Sdrh   if( pList ){
1079b7916a78Sdrh     struct ExprList_item *pItem = &pList->a[pList->nExpr-1];
1080b7916a78Sdrh     assert( pList->nExpr>0 );
1081b7916a78Sdrh     assert( db->mallocFailed || pItem->pExpr==pSpan->pExpr );
1082b7916a78Sdrh     sqlite3DbFree(db, pItem->zSpan);
1083b7916a78Sdrh     pItem->zSpan = sqlite3DbStrNDup(db, (char*)pSpan->zStart,
1084cf697396Sshane                                     (int)(pSpan->zEnd - pSpan->zStart));
1085b7916a78Sdrh   }
1086b7916a78Sdrh }
1087b7916a78Sdrh 
1088b7916a78Sdrh /*
10897a15a4beSdanielk1977 ** If the expression list pEList contains more than iLimit elements,
10907a15a4beSdanielk1977 ** leave an error message in pParse.
10917a15a4beSdanielk1977 */
10927a15a4beSdanielk1977 void sqlite3ExprListCheckLength(
10937a15a4beSdanielk1977   Parse *pParse,
10947a15a4beSdanielk1977   ExprList *pEList,
10957a15a4beSdanielk1977   const char *zObject
10967a15a4beSdanielk1977 ){
1097b1a6c3c1Sdrh   int mx = pParse->db->aLimit[SQLITE_LIMIT_COLUMN];
1098c5499befSdrh   testcase( pEList && pEList->nExpr==mx );
1099c5499befSdrh   testcase( pEList && pEList->nExpr==mx+1 );
1100b1a6c3c1Sdrh   if( pEList && pEList->nExpr>mx ){
11017a15a4beSdanielk1977     sqlite3ErrorMsg(pParse, "too many columns in %s", zObject);
11027a15a4beSdanielk1977   }
11037a15a4beSdanielk1977 }
11047a15a4beSdanielk1977 
11057a15a4beSdanielk1977 /*
1106a76b5dfcSdrh ** Delete an entire expression list.
1107a76b5dfcSdrh */
1108633e6d57Sdrh void sqlite3ExprListDelete(sqlite3 *db, ExprList *pList){
1109a76b5dfcSdrh   int i;
1110be5c89acSdrh   struct ExprList_item *pItem;
1111a76b5dfcSdrh   if( pList==0 ) return;
11121bdd9b57Sdrh   assert( pList->a!=0 || (pList->nExpr==0 && pList->nAlloc==0) );
11131bdd9b57Sdrh   assert( pList->nExpr<=pList->nAlloc );
1114be5c89acSdrh   for(pItem=pList->a, i=0; i<pList->nExpr; i++, pItem++){
1115633e6d57Sdrh     sqlite3ExprDelete(db, pItem->pExpr);
1116633e6d57Sdrh     sqlite3DbFree(db, pItem->zName);
1117b7916a78Sdrh     sqlite3DbFree(db, pItem->zSpan);
1118a76b5dfcSdrh   }
1119633e6d57Sdrh   sqlite3DbFree(db, pList->a);
1120633e6d57Sdrh   sqlite3DbFree(db, pList);
1121a76b5dfcSdrh }
1122a76b5dfcSdrh 
1123a76b5dfcSdrh /*
11247d10d5a6Sdrh ** These routines are Walker callbacks.  Walker.u.pi is a pointer
11257d10d5a6Sdrh ** to an integer.  These routines are checking an expression to see
11267d10d5a6Sdrh ** if it is a constant.  Set *Walker.u.pi to 0 if the expression is
11277d10d5a6Sdrh ** not constant.
112873b211abSdrh **
11297d10d5a6Sdrh ** These callback routines are used to implement the following:
1130626a879aSdrh **
11317d10d5a6Sdrh **     sqlite3ExprIsConstant()
11327d10d5a6Sdrh **     sqlite3ExprIsConstantNotJoin()
11337d10d5a6Sdrh **     sqlite3ExprIsConstantOrFunction()
113487abf5c0Sdrh **
1135626a879aSdrh */
11367d10d5a6Sdrh static int exprNodeIsConstant(Walker *pWalker, Expr *pExpr){
1137626a879aSdrh 
11387d10d5a6Sdrh   /* If pWalker->u.i is 3 then any term of the expression that comes from
11390a168377Sdrh   ** the ON or USING clauses of a join disqualifies the expression
11400a168377Sdrh   ** from being considered constant. */
11417d10d5a6Sdrh   if( pWalker->u.i==3 && ExprHasAnyProperty(pExpr, EP_FromJoin) ){
11427d10d5a6Sdrh     pWalker->u.i = 0;
11437d10d5a6Sdrh     return WRC_Abort;
11440a168377Sdrh   }
11450a168377Sdrh 
1146626a879aSdrh   switch( pExpr->op ){
1147eb55bd2fSdrh     /* Consider functions to be constant if all their arguments are constant
11487d10d5a6Sdrh     ** and pWalker->u.i==2 */
1149eb55bd2fSdrh     case TK_FUNCTION:
11507d10d5a6Sdrh       if( pWalker->u.i==2 ) return 0;
1151eb55bd2fSdrh       /* Fall through */
1152626a879aSdrh     case TK_ID:
1153626a879aSdrh     case TK_COLUMN:
1154626a879aSdrh     case TK_AGG_FUNCTION:
115513449892Sdrh     case TK_AGG_COLUMN:
1156c5499befSdrh       testcase( pExpr->op==TK_ID );
1157c5499befSdrh       testcase( pExpr->op==TK_COLUMN );
1158c5499befSdrh       testcase( pExpr->op==TK_AGG_FUNCTION );
1159c5499befSdrh       testcase( pExpr->op==TK_AGG_COLUMN );
11607d10d5a6Sdrh       pWalker->u.i = 0;
11617d10d5a6Sdrh       return WRC_Abort;
1162626a879aSdrh     default:
1163b74b1017Sdrh       testcase( pExpr->op==TK_SELECT ); /* selectNodeIsConstant will disallow */
1164b74b1017Sdrh       testcase( pExpr->op==TK_EXISTS ); /* selectNodeIsConstant will disallow */
11657d10d5a6Sdrh       return WRC_Continue;
1166626a879aSdrh   }
1167626a879aSdrh }
116862c14b34Sdanielk1977 static int selectNodeIsConstant(Walker *pWalker, Select *NotUsed){
116962c14b34Sdanielk1977   UNUSED_PARAMETER(NotUsed);
11707d10d5a6Sdrh   pWalker->u.i = 0;
11717d10d5a6Sdrh   return WRC_Abort;
11727d10d5a6Sdrh }
11737d10d5a6Sdrh static int exprIsConst(Expr *p, int initFlag){
11747d10d5a6Sdrh   Walker w;
11757d10d5a6Sdrh   w.u.i = initFlag;
11767d10d5a6Sdrh   w.xExprCallback = exprNodeIsConstant;
11777d10d5a6Sdrh   w.xSelectCallback = selectNodeIsConstant;
11787d10d5a6Sdrh   sqlite3WalkExpr(&w, p);
11797d10d5a6Sdrh   return w.u.i;
11807d10d5a6Sdrh }
1181626a879aSdrh 
1182626a879aSdrh /*
1183fef5208cSdrh ** Walk an expression tree.  Return 1 if the expression is constant
1184eb55bd2fSdrh ** and 0 if it involves variables or function calls.
11852398937bSdrh **
11862398937bSdrh ** For the purposes of this function, a double-quoted string (ex: "abc")
11872398937bSdrh ** is considered a variable but a single-quoted string (ex: 'abc') is
11882398937bSdrh ** a constant.
1189fef5208cSdrh */
11904adee20fSdanielk1977 int sqlite3ExprIsConstant(Expr *p){
11917d10d5a6Sdrh   return exprIsConst(p, 1);
1192fef5208cSdrh }
1193fef5208cSdrh 
1194fef5208cSdrh /*
1195eb55bd2fSdrh ** Walk an expression tree.  Return 1 if the expression is constant
11960a168377Sdrh ** that does no originate from the ON or USING clauses of a join.
11970a168377Sdrh ** Return 0 if it involves variables or function calls or terms from
11980a168377Sdrh ** an ON or USING clause.
11990a168377Sdrh */
12000a168377Sdrh int sqlite3ExprIsConstantNotJoin(Expr *p){
12017d10d5a6Sdrh   return exprIsConst(p, 3);
12020a168377Sdrh }
12030a168377Sdrh 
12040a168377Sdrh /*
12050a168377Sdrh ** Walk an expression tree.  Return 1 if the expression is constant
1206eb55bd2fSdrh ** or a function call with constant arguments.  Return and 0 if there
1207eb55bd2fSdrh ** are any variables.
1208eb55bd2fSdrh **
1209eb55bd2fSdrh ** For the purposes of this function, a double-quoted string (ex: "abc")
1210eb55bd2fSdrh ** is considered a variable but a single-quoted string (ex: 'abc') is
1211eb55bd2fSdrh ** a constant.
1212eb55bd2fSdrh */
1213eb55bd2fSdrh int sqlite3ExprIsConstantOrFunction(Expr *p){
12147d10d5a6Sdrh   return exprIsConst(p, 2);
1215eb55bd2fSdrh }
1216eb55bd2fSdrh 
1217eb55bd2fSdrh /*
121873b211abSdrh ** If the expression p codes a constant integer that is small enough
1219202b2df7Sdrh ** to fit in a 32-bit integer, return 1 and put the value of the integer
1220202b2df7Sdrh ** in *pValue.  If the expression is not an integer or if it is too big
1221202b2df7Sdrh ** to fit in a signed 32-bit integer, return 0 and leave *pValue unchanged.
1222e4de1febSdrh */
12234adee20fSdanielk1977 int sqlite3ExprIsInteger(Expr *p, int *pValue){
122492b01d53Sdrh   int rc = 0;
122592b01d53Sdrh   if( p->flags & EP_IntValue ){
122633e619fcSdrh     *pValue = p->u.iValue;
1227e4de1febSdrh     return 1;
1228e4de1febSdrh   }
122992b01d53Sdrh   switch( p->op ){
123092b01d53Sdrh     case TK_INTEGER: {
123133e619fcSdrh       rc = sqlite3GetInt32(p->u.zToken, pValue);
123233e619fcSdrh       assert( rc==0 );
1233202b2df7Sdrh       break;
1234202b2df7Sdrh     }
12354b59ab5eSdrh     case TK_UPLUS: {
123692b01d53Sdrh       rc = sqlite3ExprIsInteger(p->pLeft, pValue);
1237f6e369a1Sdrh       break;
12384b59ab5eSdrh     }
1239e4de1febSdrh     case TK_UMINUS: {
1240e4de1febSdrh       int v;
12414adee20fSdanielk1977       if( sqlite3ExprIsInteger(p->pLeft, &v) ){
1242e4de1febSdrh         *pValue = -v;
124392b01d53Sdrh         rc = 1;
1244e4de1febSdrh       }
1245e4de1febSdrh       break;
1246e4de1febSdrh     }
1247e4de1febSdrh     default: break;
1248e4de1febSdrh   }
124992b01d53Sdrh   if( rc ){
125033e619fcSdrh     assert( ExprHasAnyProperty(p, EP_Reduced|EP_TokenOnly)
125133e619fcSdrh                || (p->flags2 & EP2_MallocedToken)==0 );
125292b01d53Sdrh     p->op = TK_INTEGER;
125392b01d53Sdrh     p->flags |= EP_IntValue;
125433e619fcSdrh     p->u.iValue = *pValue;
125592b01d53Sdrh   }
125692b01d53Sdrh   return rc;
1257e4de1febSdrh }
1258e4de1febSdrh 
1259e4de1febSdrh /*
1260c4a3c779Sdrh ** Return TRUE if the given string is a row-id column name.
1261c4a3c779Sdrh */
12624adee20fSdanielk1977 int sqlite3IsRowid(const char *z){
12634adee20fSdanielk1977   if( sqlite3StrICmp(z, "_ROWID_")==0 ) return 1;
12644adee20fSdanielk1977   if( sqlite3StrICmp(z, "ROWID")==0 ) return 1;
12654adee20fSdanielk1977   if( sqlite3StrICmp(z, "OID")==0 ) return 1;
1266c4a3c779Sdrh   return 0;
1267c4a3c779Sdrh }
1268c4a3c779Sdrh 
12699a96b668Sdanielk1977 /*
1270b74b1017Sdrh ** Return true if we are able to the IN operator optimization on a
1271b74b1017Sdrh ** query of the form
1272b287f4b6Sdrh **
1273b74b1017Sdrh **       x IN (SELECT ...)
1274b287f4b6Sdrh **
1275b74b1017Sdrh ** Where the SELECT... clause is as specified by the parameter to this
1276b74b1017Sdrh ** routine.
1277b74b1017Sdrh **
1278b74b1017Sdrh ** The Select object passed in has already been preprocessed and no
1279b74b1017Sdrh ** errors have been found.
1280b287f4b6Sdrh */
1281b287f4b6Sdrh #ifndef SQLITE_OMIT_SUBQUERY
1282b287f4b6Sdrh static int isCandidateForInOpt(Select *p){
1283b287f4b6Sdrh   SrcList *pSrc;
1284b287f4b6Sdrh   ExprList *pEList;
1285b287f4b6Sdrh   Table *pTab;
1286b287f4b6Sdrh   if( p==0 ) return 0;                   /* right-hand side of IN is SELECT */
1287b287f4b6Sdrh   if( p->pPrior ) return 0;              /* Not a compound SELECT */
12887d10d5a6Sdrh   if( p->selFlags & (SF_Distinct|SF_Aggregate) ){
1289b74b1017Sdrh     testcase( (p->selFlags & (SF_Distinct|SF_Aggregate))==SF_Distinct );
1290b74b1017Sdrh     testcase( (p->selFlags & (SF_Distinct|SF_Aggregate))==SF_Aggregate );
12917d10d5a6Sdrh     return 0; /* No DISTINCT keyword and no aggregate functions */
12927d10d5a6Sdrh   }
1293b74b1017Sdrh   assert( p->pGroupBy==0 );              /* Has no GROUP BY clause */
1294b287f4b6Sdrh   if( p->pLimit ) return 0;              /* Has no LIMIT clause */
1295b74b1017Sdrh   assert( p->pOffset==0 );               /* No LIMIT means no OFFSET */
1296b287f4b6Sdrh   if( p->pWhere ) return 0;              /* Has no WHERE clause */
1297b287f4b6Sdrh   pSrc = p->pSrc;
1298d1fa7bcaSdrh   assert( pSrc!=0 );
1299d1fa7bcaSdrh   if( pSrc->nSrc!=1 ) return 0;          /* Single term in FROM clause */
1300b74b1017Sdrh   if( pSrc->a[0].pSelect ) return 0;     /* FROM is not a subquery or view */
1301b287f4b6Sdrh   pTab = pSrc->a[0].pTab;
1302b74b1017Sdrh   if( NEVER(pTab==0) ) return 0;
1303b74b1017Sdrh   assert( pTab->pSelect==0 );            /* FROM clause is not a view */
1304b287f4b6Sdrh   if( IsVirtual(pTab) ) return 0;        /* FROM clause not a virtual table */
1305b287f4b6Sdrh   pEList = p->pEList;
1306b287f4b6Sdrh   if( pEList->nExpr!=1 ) return 0;       /* One column in the result set */
1307b287f4b6Sdrh   if( pEList->a[0].pExpr->op!=TK_COLUMN ) return 0; /* Result is a column */
1308b287f4b6Sdrh   return 1;
1309b287f4b6Sdrh }
1310b287f4b6Sdrh #endif /* SQLITE_OMIT_SUBQUERY */
1311b287f4b6Sdrh 
1312b287f4b6Sdrh /*
13139a96b668Sdanielk1977 ** This function is used by the implementation of the IN (...) operator.
13149a96b668Sdanielk1977 ** It's job is to find or create a b-tree structure that may be used
13159a96b668Sdanielk1977 ** either to test for membership of the (...) set or to iterate through
131685b623f2Sdrh ** its members, skipping duplicates.
13179a96b668Sdanielk1977 **
1318b74b1017Sdrh ** The index of the cursor opened on the b-tree (database table, database index
13199a96b668Sdanielk1977 ** or ephermal table) is stored in pX->iTable before this function returns.
1320b74b1017Sdrh ** The returned value of this function indicates the b-tree type, as follows:
13219a96b668Sdanielk1977 **
13229a96b668Sdanielk1977 **   IN_INDEX_ROWID - The cursor was opened on a database table.
13232d401ab8Sdrh **   IN_INDEX_INDEX - The cursor was opened on a database index.
13249a96b668Sdanielk1977 **   IN_INDEX_EPH -   The cursor was opened on a specially created and
13259a96b668Sdanielk1977 **                    populated epheremal table.
13269a96b668Sdanielk1977 **
1327b74b1017Sdrh ** An existing b-tree may only be used if the SELECT is of the simple
13289a96b668Sdanielk1977 ** form:
13299a96b668Sdanielk1977 **
13309a96b668Sdanielk1977 **     SELECT <column> FROM <table>
13319a96b668Sdanielk1977 **
1332b74b1017Sdrh ** If the prNotFound parameter is 0, then the b-tree will be used to iterate
13339a96b668Sdanielk1977 ** through the set members, skipping any duplicates. In this case an
13349a96b668Sdanielk1977 ** epheremal table must be used unless the selected <column> is guaranteed
13359a96b668Sdanielk1977 ** to be unique - either because it is an INTEGER PRIMARY KEY or it
1336b74b1017Sdrh ** has a UNIQUE constraint or UNIQUE index.
13370cdc022eSdanielk1977 **
1338b74b1017Sdrh ** If the prNotFound parameter is not 0, then the b-tree will be used
13390cdc022eSdanielk1977 ** for fast set membership tests. In this case an epheremal table must
13400cdc022eSdanielk1977 ** be used unless <column> is an INTEGER PRIMARY KEY or an index can
13410cdc022eSdanielk1977 ** be found with <column> as its left-most column.
13420cdc022eSdanielk1977 **
1343b74b1017Sdrh ** When the b-tree is being used for membership tests, the calling function
13440cdc022eSdanielk1977 ** needs to know whether or not the structure contains an SQL NULL
13450cdc022eSdanielk1977 ** value in order to correctly evaluate expressions like "X IN (Y, Z)".
1346b74b1017Sdrh ** If there is a chance that the b-tree might contain a NULL value at
13470cdc022eSdanielk1977 ** runtime, then a register is allocated and the register number written
1348b74b1017Sdrh ** to *prNotFound. If there is no chance that the b-tree contains a
13490cdc022eSdanielk1977 ** NULL value, then *prNotFound is left unchanged.
13500cdc022eSdanielk1977 **
13510cdc022eSdanielk1977 ** If a register is allocated and its location stored in *prNotFound, then
1352b74b1017Sdrh ** its initial value is NULL. If the b-tree does not remain constant
1353b74b1017Sdrh ** for the duration of the query (i.e. the SELECT that generates the b-tree
1354b74b1017Sdrh ** is a correlated subquery) then the value of the allocated register is
1355b74b1017Sdrh ** reset to NULL each time the b-tree is repopulated. This allows the
1356b74b1017Sdrh ** caller to use vdbe code equivalent to the following:
13570cdc022eSdanielk1977 **
13580cdc022eSdanielk1977 **   if( register==NULL ){
13590cdc022eSdanielk1977 **     has_null = <test if data structure contains null>
13600cdc022eSdanielk1977 **     register = 1
13610cdc022eSdanielk1977 **   }
13620cdc022eSdanielk1977 **
13630cdc022eSdanielk1977 ** in order to avoid running the <test if data structure contains null>
13640cdc022eSdanielk1977 ** test more often than is necessary.
13659a96b668Sdanielk1977 */
1366284f4acaSdanielk1977 #ifndef SQLITE_OMIT_SUBQUERY
13670cdc022eSdanielk1977 int sqlite3FindInIndex(Parse *pParse, Expr *pX, int *prNotFound){
1368b74b1017Sdrh   Select *p;                            /* SELECT to the right of IN operator */
1369b74b1017Sdrh   int eType = 0;                        /* Type of RHS table. IN_INDEX_* */
1370b74b1017Sdrh   int iTab = pParse->nTab++;            /* Cursor of the RHS table */
1371b74b1017Sdrh   int mustBeUnique = (prNotFound==0);   /* True if RHS must be unique */
13729a96b668Sdanielk1977 
1373b74b1017Sdrh   /* Check to see if an existing table or index can be used to
1374b74b1017Sdrh   ** satisfy the query.  This is preferable to generating a new
1375b74b1017Sdrh   ** ephemeral table.
13769a96b668Sdanielk1977   */
13776ab3a2ecSdanielk1977   p = (ExprHasProperty(pX, EP_xIsSelect) ? pX->x.pSelect : 0);
1378fd773cf9Sdrh   if( ALWAYS(pParse->nErr==0) && isCandidateForInOpt(p) ){
1379e1fb65a0Sdanielk1977     sqlite3 *db = pParse->db;              /* Database connection */
1380e1fb65a0Sdanielk1977     Expr *pExpr = p->pEList->a[0].pExpr;   /* Expression <column> */
1381e1fb65a0Sdanielk1977     int iCol = pExpr->iColumn;             /* Index of column <column> */
1382e1fb65a0Sdanielk1977     Vdbe *v = sqlite3GetVdbe(pParse);      /* Virtual machine being coded */
1383e1fb65a0Sdanielk1977     Table *pTab = p->pSrc->a[0].pTab;      /* Table <table>. */
1384e1fb65a0Sdanielk1977     int iDb;                               /* Database idx for pTab */
1385e1fb65a0Sdanielk1977 
1386e1fb65a0Sdanielk1977     /* Code an OP_VerifyCookie and OP_TableLock for <table>. */
1387e1fb65a0Sdanielk1977     iDb = sqlite3SchemaToIndex(db, pTab->pSchema);
1388e1fb65a0Sdanielk1977     sqlite3CodeVerifySchema(pParse, iDb);
1389e1fb65a0Sdanielk1977     sqlite3TableLock(pParse, iDb, pTab->tnum, 0, pTab->zName);
13909a96b668Sdanielk1977 
13919a96b668Sdanielk1977     /* This function is only called from two places. In both cases the vdbe
13929a96b668Sdanielk1977     ** has already been allocated. So assume sqlite3GetVdbe() is always
13939a96b668Sdanielk1977     ** successful here.
13949a96b668Sdanielk1977     */
13959a96b668Sdanielk1977     assert(v);
13969a96b668Sdanielk1977     if( iCol<0 ){
13970a07c107Sdrh       int iMem = ++pParse->nMem;
13989a96b668Sdanielk1977       int iAddr;
13999a96b668Sdanielk1977       sqlite3VdbeUsesBtree(v, iDb);
14009a96b668Sdanielk1977 
1401892d3179Sdrh       iAddr = sqlite3VdbeAddOp1(v, OP_If, iMem);
14024c583128Sdrh       sqlite3VdbeAddOp2(v, OP_Integer, 1, iMem);
14039a96b668Sdanielk1977 
14049a96b668Sdanielk1977       sqlite3OpenTable(pParse, iTab, iDb, pTab, OP_OpenRead);
14059a96b668Sdanielk1977       eType = IN_INDEX_ROWID;
14069a96b668Sdanielk1977 
14079a96b668Sdanielk1977       sqlite3VdbeJumpHere(v, iAddr);
14089a96b668Sdanielk1977     }else{
1409e1fb65a0Sdanielk1977       Index *pIdx;                         /* Iterator variable */
1410e1fb65a0Sdanielk1977 
14119a96b668Sdanielk1977       /* The collation sequence used by the comparison. If an index is to
14129a96b668Sdanielk1977       ** be used in place of a temp-table, it must be ordered according
1413e1fb65a0Sdanielk1977       ** to this collation sequence.  */
14149a96b668Sdanielk1977       CollSeq *pReq = sqlite3BinaryCompareCollSeq(pParse, pX->pLeft, pExpr);
14159a96b668Sdanielk1977 
14169a96b668Sdanielk1977       /* Check that the affinity that will be used to perform the
14179a96b668Sdanielk1977       ** comparison is the same as the affinity of the column. If
14189a96b668Sdanielk1977       ** it is not, it is not possible to use any index.
14199a96b668Sdanielk1977       */
14209a96b668Sdanielk1977       char aff = comparisonAffinity(pX);
14219a96b668Sdanielk1977       int affinity_ok = (pTab->aCol[iCol].affinity==aff||aff==SQLITE_AFF_NONE);
14229a96b668Sdanielk1977 
14239a96b668Sdanielk1977       for(pIdx=pTab->pIndex; pIdx && eType==0 && affinity_ok; pIdx=pIdx->pNext){
14249a96b668Sdanielk1977         if( (pIdx->aiColumn[0]==iCol)
1425b74b1017Sdrh          && sqlite3FindCollSeq(db, ENC(db), pIdx->azColl[0], 0)==pReq
14269a96b668Sdanielk1977          && (!mustBeUnique || (pIdx->nColumn==1 && pIdx->onError!=OE_None))
14279a96b668Sdanielk1977         ){
14280a07c107Sdrh           int iMem = ++pParse->nMem;
14299a96b668Sdanielk1977           int iAddr;
14309a96b668Sdanielk1977           char *pKey;
14319a96b668Sdanielk1977 
14329a96b668Sdanielk1977           pKey = (char *)sqlite3IndexKeyinfo(pParse, pIdx);
14339a96b668Sdanielk1977           iDb = sqlite3SchemaToIndex(db, pIdx->pSchema);
14349a96b668Sdanielk1977           sqlite3VdbeUsesBtree(v, iDb);
14359a96b668Sdanielk1977 
1436892d3179Sdrh           iAddr = sqlite3VdbeAddOp1(v, OP_If, iMem);
14374c583128Sdrh           sqlite3VdbeAddOp2(v, OP_Integer, 1, iMem);
14389a96b668Sdanielk1977 
1439207872a4Sdanielk1977           sqlite3VdbeAddOp4(v, OP_OpenRead, iTab, pIdx->tnum, iDb,
144066a5167bSdrh                                pKey,P4_KEYINFO_HANDOFF);
1441207872a4Sdanielk1977           VdbeComment((v, "%s", pIdx->zName));
14429a96b668Sdanielk1977           eType = IN_INDEX_INDEX;
14439a96b668Sdanielk1977 
14449a96b668Sdanielk1977           sqlite3VdbeJumpHere(v, iAddr);
14450cdc022eSdanielk1977           if( prNotFound && !pTab->aCol[iCol].notNull ){
14460cdc022eSdanielk1977             *prNotFound = ++pParse->nMem;
14470cdc022eSdanielk1977           }
14489a96b668Sdanielk1977         }
14499a96b668Sdanielk1977       }
14509a96b668Sdanielk1977     }
14519a96b668Sdanielk1977   }
14529a96b668Sdanielk1977 
14539a96b668Sdanielk1977   if( eType==0 ){
1454b74b1017Sdrh     /* Could not found an existing able or index to use as the RHS b-tree.
1455b74b1017Sdrh     ** We will have to generate an ephemeral table to do the job.
1456b74b1017Sdrh     */
14570cdc022eSdanielk1977     int rMayHaveNull = 0;
145841a05b7bSdanielk1977     eType = IN_INDEX_EPH;
14590cdc022eSdanielk1977     if( prNotFound ){
14600cdc022eSdanielk1977       *prNotFound = rMayHaveNull = ++pParse->nMem;
14616ab3a2ecSdanielk1977     }else if( pX->pLeft->iColumn<0 && !ExprHasAnyProperty(pX, EP_xIsSelect) ){
146241a05b7bSdanielk1977       eType = IN_INDEX_ROWID;
14630cdc022eSdanielk1977     }
146441a05b7bSdanielk1977     sqlite3CodeSubselect(pParse, pX, rMayHaveNull, eType==IN_INDEX_ROWID);
14659a96b668Sdanielk1977   }else{
14669a96b668Sdanielk1977     pX->iTable = iTab;
14679a96b668Sdanielk1977   }
14689a96b668Sdanielk1977   return eType;
14699a96b668Sdanielk1977 }
1470284f4acaSdanielk1977 #endif
1471626a879aSdrh 
1472626a879aSdrh /*
14739cbe6352Sdrh ** Generate code for scalar subqueries used as an expression
14749cbe6352Sdrh ** and IN operators.  Examples:
1475626a879aSdrh **
14769cbe6352Sdrh **     (SELECT a FROM b)          -- subquery
14779cbe6352Sdrh **     EXISTS (SELECT a FROM b)   -- EXISTS subquery
14789cbe6352Sdrh **     x IN (4,5,11)              -- IN operator with list on right-hand side
14799cbe6352Sdrh **     x IN (SELECT a FROM b)     -- IN operator with subquery on the right
1480fef5208cSdrh **
14819cbe6352Sdrh ** The pExpr parameter describes the expression that contains the IN
14829cbe6352Sdrh ** operator or subquery.
148341a05b7bSdanielk1977 **
148441a05b7bSdanielk1977 ** If parameter isRowid is non-zero, then expression pExpr is guaranteed
148541a05b7bSdanielk1977 ** to be of the form "<rowid> IN (?, ?, ?)", where <rowid> is a reference
148641a05b7bSdanielk1977 ** to some integer key column of a table B-Tree. In this case, use an
148741a05b7bSdanielk1977 ** intkey B-Tree to store the set of IN(...) values instead of the usual
148841a05b7bSdanielk1977 ** (slower) variable length keys B-Tree.
1489fd773cf9Sdrh **
1490fd773cf9Sdrh ** If rMayHaveNull is non-zero, that means that the operation is an IN
1491fd773cf9Sdrh ** (not a SELECT or EXISTS) and that the RHS might contains NULLs.
1492fd773cf9Sdrh ** Furthermore, the IN is in a WHERE clause and that we really want
1493fd773cf9Sdrh ** to iterate over the RHS of the IN operator in order to quickly locate
1494fd773cf9Sdrh ** all corresponding LHS elements.  All this routine does is initialize
1495fd773cf9Sdrh ** the register given by rMayHaveNull to NULL.  Calling routines will take
1496fd773cf9Sdrh ** care of changing this register value to non-NULL if the RHS is NULL-free.
1497fd773cf9Sdrh **
1498fd773cf9Sdrh ** If rMayHaveNull is zero, that means that the subquery is being used
1499fd773cf9Sdrh ** for membership testing only.  There is no need to initialize any
1500fd773cf9Sdrh ** registers to indicate the presense or absence of NULLs on the RHS.
1501cce7d176Sdrh */
150251522cd3Sdrh #ifndef SQLITE_OMIT_SUBQUERY
150341a05b7bSdanielk1977 void sqlite3CodeSubselect(
1504fd773cf9Sdrh   Parse *pParse,          /* Parsing context */
1505fd773cf9Sdrh   Expr *pExpr,            /* The IN, SELECT, or EXISTS operator */
1506fd773cf9Sdrh   int rMayHaveNull,       /* Register that records whether NULLs exist in RHS */
1507fd773cf9Sdrh   int isRowid             /* If true, LHS of IN operator is a rowid */
150841a05b7bSdanielk1977 ){
150957dbd7b3Sdrh   int testAddr = 0;                       /* One-time test address */
1510b3bce662Sdanielk1977   Vdbe *v = sqlite3GetVdbe(pParse);
1511fd773cf9Sdrh   if( NEVER(v==0) ) return;
1512ceea3321Sdrh   sqlite3ExprCachePush(pParse);
1513fc976065Sdanielk1977 
151457dbd7b3Sdrh   /* This code must be run in its entirety every time it is encountered
151557dbd7b3Sdrh   ** if any of the following is true:
151657dbd7b3Sdrh   **
151757dbd7b3Sdrh   **    *  The right-hand side is a correlated subquery
151857dbd7b3Sdrh   **    *  The right-hand side is an expression list containing variables
151957dbd7b3Sdrh   **    *  We are inside a trigger
152057dbd7b3Sdrh   **
152157dbd7b3Sdrh   ** If all of the above are false, then we can run this code just once
152257dbd7b3Sdrh   ** save the results, and reuse the same result on subsequent invocations.
1523b3bce662Sdanielk1977   */
1524b3bce662Sdanielk1977   if( !ExprHasAnyProperty(pExpr, EP_VarSelect) && !pParse->trigStack ){
15250a07c107Sdrh     int mem = ++pParse->nMem;
1526892d3179Sdrh     sqlite3VdbeAddOp1(v, OP_If, mem);
1527892d3179Sdrh     testAddr = sqlite3VdbeAddOp2(v, OP_Integer, 1, mem);
152817435752Sdrh     assert( testAddr>0 || pParse->db->mallocFailed );
1529b3bce662Sdanielk1977   }
1530b3bce662Sdanielk1977 
1531cce7d176Sdrh   switch( pExpr->op ){
1532fef5208cSdrh     case TK_IN: {
1533e014a838Sdanielk1977       char affinity;
1534d3d39e93Sdrh       KeyInfo keyInfo;
1535b9bb7c18Sdrh       int addr;        /* Address of OP_OpenEphemeral instruction */
153641a05b7bSdanielk1977       Expr *pLeft = pExpr->pLeft;
1537d3d39e93Sdrh 
15380cdc022eSdanielk1977       if( rMayHaveNull ){
15390cdc022eSdanielk1977         sqlite3VdbeAddOp2(v, OP_Null, 0, rMayHaveNull);
15400cdc022eSdanielk1977       }
15410cdc022eSdanielk1977 
154241a05b7bSdanielk1977       affinity = sqlite3ExprAffinity(pLeft);
1543e014a838Sdanielk1977 
1544e014a838Sdanielk1977       /* Whether this is an 'x IN(SELECT...)' or an 'x IN(<exprlist>)'
154557dbd7b3Sdrh       ** expression it is handled the same way. A virtual table is
1546e014a838Sdanielk1977       ** filled with single-field index keys representing the results
1547e014a838Sdanielk1977       ** from the SELECT or the <exprlist>.
1548fef5208cSdrh       **
1549e014a838Sdanielk1977       ** If the 'x' expression is a column value, or the SELECT...
1550e014a838Sdanielk1977       ** statement returns a column value, then the affinity of that
1551e014a838Sdanielk1977       ** column is used to build the index keys. If both 'x' and the
1552e014a838Sdanielk1977       ** SELECT... statement are columns, then numeric affinity is used
1553e014a838Sdanielk1977       ** if either column has NUMERIC or INTEGER affinity. If neither
1554e014a838Sdanielk1977       ** 'x' nor the SELECT... statement are columns, then numeric affinity
1555e014a838Sdanielk1977       ** is used.
1556fef5208cSdrh       */
1557832508b7Sdrh       pExpr->iTable = pParse->nTab++;
155841a05b7bSdanielk1977       addr = sqlite3VdbeAddOp2(v, OP_OpenEphemeral, pExpr->iTable, !isRowid);
1559d3d39e93Sdrh       memset(&keyInfo, 0, sizeof(keyInfo));
1560d3d39e93Sdrh       keyInfo.nField = 1;
1561e014a838Sdanielk1977 
15626ab3a2ecSdanielk1977       if( ExprHasProperty(pExpr, EP_xIsSelect) ){
1563e014a838Sdanielk1977         /* Case 1:     expr IN (SELECT ...)
1564e014a838Sdanielk1977         **
1565e014a838Sdanielk1977         ** Generate code to write the results of the select into the temporary
1566e014a838Sdanielk1977         ** table allocated and opened above.
1567e014a838Sdanielk1977         */
15681013c932Sdrh         SelectDest dest;
1569be5c89acSdrh         ExprList *pEList;
15701013c932Sdrh 
157141a05b7bSdanielk1977         assert( !isRowid );
15721013c932Sdrh         sqlite3SelectDestInit(&dest, SRT_Set, pExpr->iTable);
15731bd10f8aSdrh         dest.affinity = (u8)affinity;
1574e014a838Sdanielk1977         assert( (pExpr->iTable&0x0000FFFF)==pExpr->iTable );
15756ab3a2ecSdanielk1977         if( sqlite3Select(pParse, pExpr->x.pSelect, &dest) ){
157694ccde58Sdrh           return;
157794ccde58Sdrh         }
15786ab3a2ecSdanielk1977         pEList = pExpr->x.pSelect->pEList;
1579fd773cf9Sdrh         if( ALWAYS(pEList!=0 && pEList->nExpr>0) ){
1580bcbb04e5Sdanielk1977           keyInfo.aColl[0] = sqlite3BinaryCompareCollSeq(pParse, pExpr->pLeft,
1581be5c89acSdrh               pEList->a[0].pExpr);
15820202b29eSdanielk1977         }
1583fd773cf9Sdrh       }else if( pExpr->x.pList!=0 ){
1584fef5208cSdrh         /* Case 2:     expr IN (exprlist)
1585fef5208cSdrh         **
1586e014a838Sdanielk1977         ** For each expression, build an index key from the evaluation and
1587e014a838Sdanielk1977         ** store it in the temporary table. If <expr> is a column, then use
1588e014a838Sdanielk1977         ** that columns affinity when building index keys. If <expr> is not
1589e014a838Sdanielk1977         ** a column, use numeric affinity.
1590fef5208cSdrh         */
1591e014a838Sdanielk1977         int i;
15926ab3a2ecSdanielk1977         ExprList *pList = pExpr->x.pList;
159357dbd7b3Sdrh         struct ExprList_item *pItem;
1594ecc31805Sdrh         int r1, r2, r3;
159557dbd7b3Sdrh 
1596e014a838Sdanielk1977         if( !affinity ){
15978159a35fSdrh           affinity = SQLITE_AFF_NONE;
1598e014a838Sdanielk1977         }
15997d10d5a6Sdrh         keyInfo.aColl[0] = sqlite3ExprCollSeq(pParse, pExpr->pLeft);
1600e014a838Sdanielk1977 
1601e014a838Sdanielk1977         /* Loop through each expression in <exprlist>. */
16022d401ab8Sdrh         r1 = sqlite3GetTempReg(pParse);
16032d401ab8Sdrh         r2 = sqlite3GetTempReg(pParse);
16044e7f36a2Sdanielk1977         sqlite3VdbeAddOp2(v, OP_Null, 0, r2);
160557dbd7b3Sdrh         for(i=pList->nExpr, pItem=pList->a; i>0; i--, pItem++){
160657dbd7b3Sdrh           Expr *pE2 = pItem->pExpr;
1607e014a838Sdanielk1977 
160857dbd7b3Sdrh           /* If the expression is not constant then we will need to
160957dbd7b3Sdrh           ** disable the test that was generated above that makes sure
161057dbd7b3Sdrh           ** this code only executes once.  Because for a non-constant
161157dbd7b3Sdrh           ** expression we need to rerun this code each time.
161257dbd7b3Sdrh           */
1613892d3179Sdrh           if( testAddr && !sqlite3ExprIsConstant(pE2) ){
1614892d3179Sdrh             sqlite3VdbeChangeToNoop(v, testAddr-1, 2);
161557dbd7b3Sdrh             testAddr = 0;
16164794b980Sdrh           }
1617e014a838Sdanielk1977 
1618e014a838Sdanielk1977           /* Evaluate the expression and insert it into the temp table */
1619ecc31805Sdrh           r3 = sqlite3ExprCodeTarget(pParse, pE2, r1);
162041a05b7bSdanielk1977           if( isRowid ){
162141a05b7bSdanielk1977             sqlite3VdbeAddOp2(v, OP_MustBeInt, r3, sqlite3VdbeCurrentAddr(v)+2);
162241a05b7bSdanielk1977             sqlite3VdbeAddOp3(v, OP_Insert, pExpr->iTable, r2, r3);
162341a05b7bSdanielk1977           }else{
1624ecc31805Sdrh             sqlite3VdbeAddOp4(v, OP_MakeRecord, r3, 1, r2, &affinity, 1);
16253c31fc23Sdrh             sqlite3ExprCacheAffinityChange(pParse, r3, 1);
16262d401ab8Sdrh             sqlite3VdbeAddOp2(v, OP_IdxInsert, pExpr->iTable, r2);
1627fef5208cSdrh           }
162841a05b7bSdanielk1977         }
16292d401ab8Sdrh         sqlite3ReleaseTempReg(pParse, r1);
16302d401ab8Sdrh         sqlite3ReleaseTempReg(pParse, r2);
1631fef5208cSdrh       }
163241a05b7bSdanielk1977       if( !isRowid ){
163366a5167bSdrh         sqlite3VdbeChangeP4(v, addr, (void *)&keyInfo, P4_KEYINFO);
163441a05b7bSdanielk1977       }
1635b3bce662Sdanielk1977       break;
1636fef5208cSdrh     }
1637fef5208cSdrh 
163851522cd3Sdrh     case TK_EXISTS:
1639fd773cf9Sdrh     case TK_SELECT:
1640fd773cf9Sdrh     default: {
1641fd773cf9Sdrh       /* If this has to be a scalar SELECT.  Generate code to put the
1642fef5208cSdrh       ** value of this select in a memory cell and record the number
1643fd773cf9Sdrh       ** of the memory cell in iColumn.  If this is an EXISTS, write
1644fd773cf9Sdrh       ** an integer 0 (not exists) or 1 (exists) into a memory cell
1645fd773cf9Sdrh       ** and record that memory cell in iColumn.
1646fef5208cSdrh       */
1647fd773cf9Sdrh       static const Token one = { "1", 1 };  /* Token for literal value 1 */
1648fd773cf9Sdrh       Select *pSel;                         /* SELECT statement to encode */
1649fd773cf9Sdrh       SelectDest dest;                      /* How to deal with SELECt result */
16501398ad36Sdrh 
1651cf697396Sshane       testcase( pExpr->op==TK_EXISTS );
1652cf697396Sshane       testcase( pExpr->op==TK_SELECT );
1653cf697396Sshane       assert( pExpr->op==TK_EXISTS || pExpr->op==TK_SELECT );
1654cf697396Sshane 
16556ab3a2ecSdanielk1977       assert( ExprHasProperty(pExpr, EP_xIsSelect) );
16566ab3a2ecSdanielk1977       pSel = pExpr->x.pSelect;
16571013c932Sdrh       sqlite3SelectDestInit(&dest, 0, ++pParse->nMem);
165851522cd3Sdrh       if( pExpr->op==TK_SELECT ){
16596c8c8ce0Sdanielk1977         dest.eDest = SRT_Mem;
16604c583128Sdrh         sqlite3VdbeAddOp2(v, OP_Null, 0, dest.iParm);
1661d4e70ebdSdrh         VdbeComment((v, "Init subquery result"));
166251522cd3Sdrh       }else{
16636c8c8ce0Sdanielk1977         dest.eDest = SRT_Exists;
16644c583128Sdrh         sqlite3VdbeAddOp2(v, OP_Integer, 0, dest.iParm);
1665d4e70ebdSdrh         VdbeComment((v, "Init EXISTS result"));
166651522cd3Sdrh       }
1667633e6d57Sdrh       sqlite3ExprDelete(pParse->db, pSel->pLimit);
1668a1644fd8Sdanielk1977       pSel->pLimit = sqlite3PExpr(pParse, TK_INTEGER, 0, 0, &one);
16697d10d5a6Sdrh       if( sqlite3Select(pParse, pSel, &dest) ){
167094ccde58Sdrh         return;
167194ccde58Sdrh       }
1672cf697396Sshane       pExpr->iColumn = (i16)dest.iParm;
167333e619fcSdrh       ExprSetIrreducible(pExpr);
1674b3bce662Sdanielk1977       break;
167519a775c2Sdrh     }
1676cce7d176Sdrh   }
1677b3bce662Sdanielk1977 
167857dbd7b3Sdrh   if( testAddr ){
1679892d3179Sdrh     sqlite3VdbeJumpHere(v, testAddr-1);
1680b3bce662Sdanielk1977   }
1681ceea3321Sdrh   sqlite3ExprCachePop(pParse, 1);
1682fc976065Sdanielk1977 
1683b3bce662Sdanielk1977   return;
1684cce7d176Sdrh }
168551522cd3Sdrh #endif /* SQLITE_OMIT_SUBQUERY */
1686cce7d176Sdrh 
1687cce7d176Sdrh /*
1688598f1340Sdrh ** Duplicate an 8-byte value
1689598f1340Sdrh */
1690598f1340Sdrh static char *dup8bytes(Vdbe *v, const char *in){
1691598f1340Sdrh   char *out = sqlite3DbMallocRaw(sqlite3VdbeDb(v), 8);
1692598f1340Sdrh   if( out ){
1693598f1340Sdrh     memcpy(out, in, 8);
1694598f1340Sdrh   }
1695598f1340Sdrh   return out;
1696598f1340Sdrh }
1697598f1340Sdrh 
1698598f1340Sdrh /*
1699598f1340Sdrh ** Generate an instruction that will put the floating point
17009cbf3425Sdrh ** value described by z[0..n-1] into register iMem.
17010cf19ed8Sdrh **
17020cf19ed8Sdrh ** The z[] string will probably not be zero-terminated.  But the
17030cf19ed8Sdrh ** z[n] character is guaranteed to be something that does not look
17040cf19ed8Sdrh ** like the continuation of the number.
1705598f1340Sdrh */
1706b7916a78Sdrh static void codeReal(Vdbe *v, const char *z, int negateFlag, int iMem){
1707fd773cf9Sdrh   if( ALWAYS(z!=0) ){
1708598f1340Sdrh     double value;
1709598f1340Sdrh     char *zV;
1710598f1340Sdrh     sqlite3AtoF(z, &value);
17112eaf93d3Sdrh     if( sqlite3IsNaN(value) ){
17122eaf93d3Sdrh       sqlite3VdbeAddOp2(v, OP_Null, 0, iMem);
17132eaf93d3Sdrh     }else{
1714598f1340Sdrh       if( negateFlag ) value = -value;
1715598f1340Sdrh       zV = dup8bytes(v, (char*)&value);
17169de221dfSdrh       sqlite3VdbeAddOp4(v, OP_Real, 0, iMem, 0, zV, P4_REAL);
1717598f1340Sdrh     }
1718598f1340Sdrh   }
17192eaf93d3Sdrh }
1720598f1340Sdrh 
1721598f1340Sdrh 
1722598f1340Sdrh /*
1723fec19aadSdrh ** Generate an instruction that will put the integer describe by
17249cbf3425Sdrh ** text z[0..n-1] into register iMem.
17250cf19ed8Sdrh **
17260cf19ed8Sdrh ** The z[] string will probably not be zero-terminated.  But the
17270cf19ed8Sdrh ** z[n] character is guaranteed to be something that does not look
17280cf19ed8Sdrh ** like the continuation of the number.
1729fec19aadSdrh */
173092b01d53Sdrh static void codeInteger(Vdbe *v, Expr *pExpr, int negFlag, int iMem){
173192b01d53Sdrh   if( pExpr->flags & EP_IntValue ){
173233e619fcSdrh     int i = pExpr->u.iValue;
173392b01d53Sdrh     if( negFlag ) i = -i;
173492b01d53Sdrh     sqlite3VdbeAddOp2(v, OP_Integer, i, iMem);
1735fd773cf9Sdrh   }else{
1736fd773cf9Sdrh     const char *z = pExpr->u.zToken;
1737fd773cf9Sdrh     assert( z!=0 );
1738fd773cf9Sdrh     if( sqlite3FitsIn64Bits(z, negFlag) ){
1739598f1340Sdrh       i64 value;
1740598f1340Sdrh       char *zV;
1741598f1340Sdrh       sqlite3Atoi64(z, &value);
17429de221dfSdrh       if( negFlag ) value = -value;
1743598f1340Sdrh       zV = dup8bytes(v, (char*)&value);
17449de221dfSdrh       sqlite3VdbeAddOp4(v, OP_Int64, 0, iMem, 0, zV, P4_INT64);
1745fec19aadSdrh     }else{
1746b7916a78Sdrh       codeReal(v, z, negFlag, iMem);
1747fec19aadSdrh     }
1748fec19aadSdrh   }
1749c9cf901dSdanielk1977 }
1750fec19aadSdrh 
1751ceea3321Sdrh /*
1752ceea3321Sdrh ** Clear a cache entry.
1753ceea3321Sdrh */
1754ceea3321Sdrh static void cacheEntryClear(Parse *pParse, struct yColCache *p){
1755ceea3321Sdrh   if( p->tempReg ){
1756ceea3321Sdrh     if( pParse->nTempReg<ArraySize(pParse->aTempReg) ){
1757ceea3321Sdrh       pParse->aTempReg[pParse->nTempReg++] = p->iReg;
1758ceea3321Sdrh     }
1759ceea3321Sdrh     p->tempReg = 0;
1760ceea3321Sdrh   }
1761ceea3321Sdrh }
1762ceea3321Sdrh 
1763ceea3321Sdrh 
1764ceea3321Sdrh /*
1765ceea3321Sdrh ** Record in the column cache that a particular column from a
1766ceea3321Sdrh ** particular table is stored in a particular register.
1767ceea3321Sdrh */
1768ceea3321Sdrh void sqlite3ExprCacheStore(Parse *pParse, int iTab, int iCol, int iReg){
1769ceea3321Sdrh   int i;
1770ceea3321Sdrh   int minLru;
1771ceea3321Sdrh   int idxLru;
1772ceea3321Sdrh   struct yColCache *p;
1773ceea3321Sdrh 
177420411ea7Sdrh   assert( iReg>0 );  /* Register numbers are always positive */
177520411ea7Sdrh   assert( iCol>=-1 && iCol<32768 );  /* Finite column numbers */
177620411ea7Sdrh 
1777ceea3321Sdrh   /* First replace any existing entry */
1778ceea3321Sdrh   for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){
1779ceea3321Sdrh     if( p->iReg && p->iTable==iTab && p->iColumn==iCol ){
1780ceea3321Sdrh       cacheEntryClear(pParse, p);
1781ceea3321Sdrh       p->iLevel = pParse->iCacheLevel;
1782ceea3321Sdrh       p->iReg = iReg;
1783ceea3321Sdrh       p->affChange = 0;
1784ceea3321Sdrh       p->lru = pParse->iCacheCnt++;
1785ceea3321Sdrh       return;
1786ceea3321Sdrh     }
1787ceea3321Sdrh   }
1788ceea3321Sdrh 
1789ceea3321Sdrh   /* Find an empty slot and replace it */
1790ceea3321Sdrh   for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){
1791ceea3321Sdrh     if( p->iReg==0 ){
1792ceea3321Sdrh       p->iLevel = pParse->iCacheLevel;
1793ceea3321Sdrh       p->iTable = iTab;
1794ceea3321Sdrh       p->iColumn = iCol;
1795ceea3321Sdrh       p->iReg = iReg;
1796ceea3321Sdrh       p->affChange = 0;
1797ceea3321Sdrh       p->tempReg = 0;
1798ceea3321Sdrh       p->lru = pParse->iCacheCnt++;
1799ceea3321Sdrh       return;
1800ceea3321Sdrh     }
1801ceea3321Sdrh   }
1802ceea3321Sdrh 
1803ceea3321Sdrh   /* Replace the last recently used */
1804ceea3321Sdrh   minLru = 0x7fffffff;
1805ceea3321Sdrh   idxLru = -1;
1806ceea3321Sdrh   for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){
1807ceea3321Sdrh     if( p->lru<minLru ){
1808ceea3321Sdrh       idxLru = i;
1809ceea3321Sdrh       minLru = p->lru;
1810ceea3321Sdrh     }
1811ceea3321Sdrh   }
181220411ea7Sdrh   if( ALWAYS(idxLru>=0) ){
1813ceea3321Sdrh     p = &pParse->aColCache[idxLru];
1814ceea3321Sdrh     p->iLevel = pParse->iCacheLevel;
1815ceea3321Sdrh     p->iTable = iTab;
1816ceea3321Sdrh     p->iColumn = iCol;
1817ceea3321Sdrh     p->iReg = iReg;
1818ceea3321Sdrh     p->affChange = 0;
1819ceea3321Sdrh     p->tempReg = 0;
1820ceea3321Sdrh     p->lru = pParse->iCacheCnt++;
1821ceea3321Sdrh     return;
1822ceea3321Sdrh   }
1823ceea3321Sdrh }
1824ceea3321Sdrh 
1825ceea3321Sdrh /*
1826ceea3321Sdrh ** Indicate that a register is being overwritten.  Purge the register
1827ceea3321Sdrh ** from the column cache.
1828ceea3321Sdrh */
1829ceea3321Sdrh void sqlite3ExprCacheRemove(Parse *pParse, int iReg){
1830ceea3321Sdrh   int i;
1831ceea3321Sdrh   struct yColCache *p;
1832ceea3321Sdrh   for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){
1833ceea3321Sdrh     if( p->iReg==iReg ){
1834ceea3321Sdrh       cacheEntryClear(pParse, p);
1835ceea3321Sdrh       p->iReg = 0;
1836ceea3321Sdrh     }
1837ceea3321Sdrh   }
1838ceea3321Sdrh }
1839ceea3321Sdrh 
1840ceea3321Sdrh /*
1841ceea3321Sdrh ** Remember the current column cache context.  Any new entries added
1842ceea3321Sdrh ** added to the column cache after this call are removed when the
1843ceea3321Sdrh ** corresponding pop occurs.
1844ceea3321Sdrh */
1845ceea3321Sdrh void sqlite3ExprCachePush(Parse *pParse){
1846ceea3321Sdrh   pParse->iCacheLevel++;
1847ceea3321Sdrh }
1848ceea3321Sdrh 
1849ceea3321Sdrh /*
1850ceea3321Sdrh ** Remove from the column cache any entries that were added since the
1851ceea3321Sdrh ** the previous N Push operations.  In other words, restore the cache
1852ceea3321Sdrh ** to the state it was in N Pushes ago.
1853ceea3321Sdrh */
1854ceea3321Sdrh void sqlite3ExprCachePop(Parse *pParse, int N){
1855ceea3321Sdrh   int i;
1856ceea3321Sdrh   struct yColCache *p;
1857ceea3321Sdrh   assert( N>0 );
1858ceea3321Sdrh   assert( pParse->iCacheLevel>=N );
1859ceea3321Sdrh   pParse->iCacheLevel -= N;
1860ceea3321Sdrh   for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){
1861ceea3321Sdrh     if( p->iReg && p->iLevel>pParse->iCacheLevel ){
1862ceea3321Sdrh       cacheEntryClear(pParse, p);
1863ceea3321Sdrh       p->iReg = 0;
1864ceea3321Sdrh     }
1865ceea3321Sdrh   }
1866ceea3321Sdrh }
1867945498f3Sdrh 
1868945498f3Sdrh /*
18695cd79239Sdrh ** When a cached column is reused, make sure that its register is
18705cd79239Sdrh ** no longer available as a temp register.  ticket #3879:  that same
18715cd79239Sdrh ** register might be in the cache in multiple places, so be sure to
18725cd79239Sdrh ** get them all.
18735cd79239Sdrh */
18745cd79239Sdrh static void sqlite3ExprCachePinRegister(Parse *pParse, int iReg){
18755cd79239Sdrh   int i;
18765cd79239Sdrh   struct yColCache *p;
18775cd79239Sdrh   for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){
18785cd79239Sdrh     if( p->iReg==iReg ){
18795cd79239Sdrh       p->tempReg = 0;
18805cd79239Sdrh     }
18815cd79239Sdrh   }
18825cd79239Sdrh }
18835cd79239Sdrh 
18845cd79239Sdrh /*
1885945498f3Sdrh ** Generate code that will extract the iColumn-th column from
1886e55cbd72Sdrh ** table pTab and store the column value in a register.  An effort
1887e55cbd72Sdrh ** is made to store the column value in register iReg, but this is
1888e55cbd72Sdrh ** not guaranteed.  The location of the column value is returned.
1889e55cbd72Sdrh **
1890e55cbd72Sdrh ** There must be an open cursor to pTab in iTable when this routine
1891e55cbd72Sdrh ** is called.  If iColumn<0 then code is generated that extracts the rowid.
1892da250ea5Sdrh **
1893da250ea5Sdrh ** This routine might attempt to reuse the value of the column that
1894da250ea5Sdrh ** has already been loaded into a register.  The value will always
1895da250ea5Sdrh ** be used if it has not undergone any affinity changes.  But if
1896da250ea5Sdrh ** an affinity change has occurred, then the cached value will only be
1897da250ea5Sdrh ** used if allowAffChng is true.
1898945498f3Sdrh */
1899e55cbd72Sdrh int sqlite3ExprCodeGetColumn(
1900e55cbd72Sdrh   Parse *pParse,   /* Parsing and code generating context */
19012133d822Sdrh   Table *pTab,     /* Description of the table we are reading from */
19022133d822Sdrh   int iColumn,     /* Index of the table column */
19032133d822Sdrh   int iTable,      /* The cursor pointing to the table */
1904da250ea5Sdrh   int iReg,        /* Store results here */
1905da250ea5Sdrh   int allowAffChng /* True if prior affinity changes are OK */
19062133d822Sdrh ){
1907e55cbd72Sdrh   Vdbe *v = pParse->pVdbe;
1908e55cbd72Sdrh   int i;
1909da250ea5Sdrh   struct yColCache *p;
1910e55cbd72Sdrh 
1911ceea3321Sdrh   for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){
1912ceea3321Sdrh     if( p->iReg>0 && p->iTable==iTable && p->iColumn==iColumn
1913da250ea5Sdrh            && (!p->affChange || allowAffChng) ){
1914ceea3321Sdrh       p->lru = pParse->iCacheCnt++;
19155cd79239Sdrh       sqlite3ExprCachePinRegister(pParse, p->iReg);
1916da250ea5Sdrh       return p->iReg;
1917e55cbd72Sdrh     }
1918e55cbd72Sdrh   }
1919e55cbd72Sdrh   assert( v!=0 );
1920945498f3Sdrh   if( iColumn<0 ){
1921044925beSdrh     sqlite3VdbeAddOp2(v, OP_Rowid, iTable, iReg);
192220411ea7Sdrh   }else if( ALWAYS(pTab!=0) ){
1923945498f3Sdrh     int op = IsVirtual(pTab) ? OP_VColumn : OP_Column;
19242133d822Sdrh     sqlite3VdbeAddOp3(v, op, iTable, iColumn, iReg);
1925c7538b5fSdanielk1977     sqlite3ColumnDefault(v, pTab, iColumn, iReg);
1926945498f3Sdrh   }
1927ceea3321Sdrh   sqlite3ExprCacheStore(pParse, iTable, iColumn, iReg);
1928e55cbd72Sdrh   return iReg;
1929e55cbd72Sdrh }
1930e55cbd72Sdrh 
1931e55cbd72Sdrh /*
1932ceea3321Sdrh ** Clear all column cache entries.
1933e55cbd72Sdrh */
1934ceea3321Sdrh void sqlite3ExprCacheClear(Parse *pParse){
1935e55cbd72Sdrh   int i;
1936ceea3321Sdrh   struct yColCache *p;
1937ceea3321Sdrh 
1938ceea3321Sdrh   for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){
1939ceea3321Sdrh     if( p->iReg ){
1940ceea3321Sdrh       cacheEntryClear(pParse, p);
1941ceea3321Sdrh       p->iReg = 0;
1942e55cbd72Sdrh     }
1943da250ea5Sdrh   }
1944da250ea5Sdrh }
1945e55cbd72Sdrh 
1946e55cbd72Sdrh /*
1947da250ea5Sdrh ** Record the fact that an affinity change has occurred on iCount
1948da250ea5Sdrh ** registers starting with iStart.
1949e55cbd72Sdrh */
1950da250ea5Sdrh void sqlite3ExprCacheAffinityChange(Parse *pParse, int iStart, int iCount){
1951da250ea5Sdrh   int iEnd = iStart + iCount - 1;
1952e55cbd72Sdrh   int i;
1953ceea3321Sdrh   struct yColCache *p;
1954ceea3321Sdrh   for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){
1955ceea3321Sdrh     int r = p->iReg;
1956da250ea5Sdrh     if( r>=iStart && r<=iEnd ){
1957ceea3321Sdrh       p->affChange = 1;
1958e55cbd72Sdrh     }
1959e55cbd72Sdrh   }
1960e55cbd72Sdrh }
1961e55cbd72Sdrh 
1962e55cbd72Sdrh /*
1963b21e7c70Sdrh ** Generate code to move content from registers iFrom...iFrom+nReg-1
1964b21e7c70Sdrh ** over to iTo..iTo+nReg-1. Keep the column cache up-to-date.
1965e55cbd72Sdrh */
1966b21e7c70Sdrh void sqlite3ExprCodeMove(Parse *pParse, int iFrom, int iTo, int nReg){
1967e55cbd72Sdrh   int i;
1968ceea3321Sdrh   struct yColCache *p;
196920411ea7Sdrh   if( NEVER(iFrom==iTo) ) return;
1970b21e7c70Sdrh   sqlite3VdbeAddOp3(pParse->pVdbe, OP_Move, iFrom, iTo, nReg);
1971ceea3321Sdrh   for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){
1972ceea3321Sdrh     int x = p->iReg;
1973b21e7c70Sdrh     if( x>=iFrom && x<iFrom+nReg ){
1974ceea3321Sdrh       p->iReg += iTo-iFrom;
1975e55cbd72Sdrh     }
1976e55cbd72Sdrh   }
1977945498f3Sdrh }
1978945498f3Sdrh 
1979fec19aadSdrh /*
198092b01d53Sdrh ** Generate code to copy content from registers iFrom...iFrom+nReg-1
198192b01d53Sdrh ** over to iTo..iTo+nReg-1.
198292b01d53Sdrh */
198392b01d53Sdrh void sqlite3ExprCodeCopy(Parse *pParse, int iFrom, int iTo, int nReg){
198492b01d53Sdrh   int i;
198520411ea7Sdrh   if( NEVER(iFrom==iTo) ) return;
198692b01d53Sdrh   for(i=0; i<nReg; i++){
198792b01d53Sdrh     sqlite3VdbeAddOp2(pParse->pVdbe, OP_Copy, iFrom+i, iTo+i);
198892b01d53Sdrh   }
198992b01d53Sdrh }
199092b01d53Sdrh 
199192b01d53Sdrh /*
1992652fbf55Sdrh ** Return true if any register in the range iFrom..iTo (inclusive)
1993652fbf55Sdrh ** is used as part of the column cache.
1994652fbf55Sdrh */
1995652fbf55Sdrh static int usedAsColumnCache(Parse *pParse, int iFrom, int iTo){
1996652fbf55Sdrh   int i;
1997ceea3321Sdrh   struct yColCache *p;
1998ceea3321Sdrh   for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){
1999ceea3321Sdrh     int r = p->iReg;
2000652fbf55Sdrh     if( r>=iFrom && r<=iTo ) return 1;
2001652fbf55Sdrh   }
2002652fbf55Sdrh   return 0;
2003652fbf55Sdrh }
2004652fbf55Sdrh 
2005652fbf55Sdrh /*
2006191b54cbSdrh ** If the last instruction coded is an ephemeral copy of any of
2007191b54cbSdrh ** the registers in the nReg registers beginning with iReg, then
2008191b54cbSdrh ** convert the last instruction from OP_SCopy to OP_Copy.
2009191b54cbSdrh */
2010191b54cbSdrh void sqlite3ExprHardCopy(Parse *pParse, int iReg, int nReg){
2011191b54cbSdrh   VdbeOp *pOp;
2012191b54cbSdrh   Vdbe *v;
2013191b54cbSdrh 
201420411ea7Sdrh   assert( pParse->db->mallocFailed==0 );
2015191b54cbSdrh   v = pParse->pVdbe;
201620411ea7Sdrh   assert( v!=0 );
201720411ea7Sdrh   pOp = sqlite3VdbeGetOp(v, -1);
201820411ea7Sdrh   assert( pOp!=0 );
201920411ea7Sdrh   if( pOp->opcode==OP_SCopy && pOp->p1>=iReg && pOp->p1<iReg+nReg ){
2020191b54cbSdrh     pOp->opcode = OP_Copy;
2021191b54cbSdrh   }
2022191b54cbSdrh }
2023191b54cbSdrh 
2024191b54cbSdrh /*
20258b213899Sdrh ** Generate code to store the value of the iAlias-th alias in register
20268b213899Sdrh ** target.  The first time this is called, pExpr is evaluated to compute
20278b213899Sdrh ** the value of the alias.  The value is stored in an auxiliary register
20288b213899Sdrh ** and the number of that register is returned.  On subsequent calls,
20298b213899Sdrh ** the register number is returned without generating any code.
20308b213899Sdrh **
20318b213899Sdrh ** Note that in order for this to work, code must be generated in the
20328b213899Sdrh ** same order that it is executed.
20338b213899Sdrh **
20348b213899Sdrh ** Aliases are numbered starting with 1.  So iAlias is in the range
20358b213899Sdrh ** of 1 to pParse->nAlias inclusive.
20368b213899Sdrh **
20378b213899Sdrh ** pParse->aAlias[iAlias-1] records the register number where the value
20388b213899Sdrh ** of the iAlias-th alias is stored.  If zero, that means that the
20398b213899Sdrh ** alias has not yet been computed.
20408b213899Sdrh */
204131daa63fSdrh static int codeAlias(Parse *pParse, int iAlias, Expr *pExpr, int target){
2042ceea3321Sdrh #if 0
20438b213899Sdrh   sqlite3 *db = pParse->db;
20448b213899Sdrh   int iReg;
2045555f8de7Sdrh   if( pParse->nAliasAlloc<pParse->nAlias ){
2046555f8de7Sdrh     pParse->aAlias = sqlite3DbReallocOrFree(db, pParse->aAlias,
20478b213899Sdrh                                  sizeof(pParse->aAlias[0])*pParse->nAlias );
2048555f8de7Sdrh     testcase( db->mallocFailed && pParse->nAliasAlloc>0 );
20498b213899Sdrh     if( db->mallocFailed ) return 0;
2050555f8de7Sdrh     memset(&pParse->aAlias[pParse->nAliasAlloc], 0,
2051555f8de7Sdrh            (pParse->nAlias-pParse->nAliasAlloc)*sizeof(pParse->aAlias[0]));
2052555f8de7Sdrh     pParse->nAliasAlloc = pParse->nAlias;
20538b213899Sdrh   }
20548b213899Sdrh   assert( iAlias>0 && iAlias<=pParse->nAlias );
20558b213899Sdrh   iReg = pParse->aAlias[iAlias-1];
20568b213899Sdrh   if( iReg==0 ){
2057ceea3321Sdrh     if( pParse->iCacheLevel>0 ){
205831daa63fSdrh       iReg = sqlite3ExprCodeTarget(pParse, pExpr, target);
205931daa63fSdrh     }else{
20608b213899Sdrh       iReg = ++pParse->nMem;
20618b213899Sdrh       sqlite3ExprCode(pParse, pExpr, iReg);
20628b213899Sdrh       pParse->aAlias[iAlias-1] = iReg;
20638b213899Sdrh     }
206431daa63fSdrh   }
20658b213899Sdrh   return iReg;
2066ceea3321Sdrh #else
206760a4b538Sshane   UNUSED_PARAMETER(iAlias);
2068ceea3321Sdrh   return sqlite3ExprCodeTarget(pParse, pExpr, target);
2069ceea3321Sdrh #endif
20708b213899Sdrh }
20718b213899Sdrh 
20728b213899Sdrh /*
2073cce7d176Sdrh ** Generate code into the current Vdbe to evaluate the given
20742dcef11bSdrh ** expression.  Attempt to store the results in register "target".
20752dcef11bSdrh ** Return the register where results are stored.
2076389a1adbSdrh **
20778b213899Sdrh ** With this routine, there is no guarantee that results will
20782dcef11bSdrh ** be stored in target.  The result might be stored in some other
20792dcef11bSdrh ** register if it is convenient to do so.  The calling function
20802dcef11bSdrh ** must check the return code and move the results to the desired
20812dcef11bSdrh ** register.
2082cce7d176Sdrh */
2083678ccce8Sdrh int sqlite3ExprCodeTarget(Parse *pParse, Expr *pExpr, int target){
20842dcef11bSdrh   Vdbe *v = pParse->pVdbe;  /* The VM under construction */
20852dcef11bSdrh   int op;                   /* The opcode being coded */
20862dcef11bSdrh   int inReg = target;       /* Results stored in register inReg */
20872dcef11bSdrh   int regFree1 = 0;         /* If non-zero free this temporary register */
20882dcef11bSdrh   int regFree2 = 0;         /* If non-zero free this temporary register */
2089678ccce8Sdrh   int r1, r2, r3, r4;       /* Various register numbers */
209020411ea7Sdrh   sqlite3 *db = pParse->db; /* The database connection */
2091ffe07b2dSdrh 
20929cbf3425Sdrh   assert( target>0 && target<=pParse->nMem );
209320411ea7Sdrh   if( v==0 ){
209420411ea7Sdrh     assert( pParse->db->mallocFailed );
209520411ea7Sdrh     return 0;
209620411ea7Sdrh   }
2097389a1adbSdrh 
2098389a1adbSdrh   if( pExpr==0 ){
2099389a1adbSdrh     op = TK_NULL;
2100389a1adbSdrh   }else{
2101f2bc013cSdrh     op = pExpr->op;
2102389a1adbSdrh   }
2103f2bc013cSdrh   switch( op ){
210413449892Sdrh     case TK_AGG_COLUMN: {
210513449892Sdrh       AggInfo *pAggInfo = pExpr->pAggInfo;
210613449892Sdrh       struct AggInfo_col *pCol = &pAggInfo->aCol[pExpr->iAgg];
210713449892Sdrh       if( !pAggInfo->directMode ){
21089de221dfSdrh         assert( pCol->iMem>0 );
21099de221dfSdrh         inReg = pCol->iMem;
211013449892Sdrh         break;
211113449892Sdrh       }else if( pAggInfo->useSortingIdx ){
2112389a1adbSdrh         sqlite3VdbeAddOp3(v, OP_Column, pAggInfo->sortingIdx,
2113389a1adbSdrh                               pCol->iSorterColumn, target);
211413449892Sdrh         break;
211513449892Sdrh       }
211613449892Sdrh       /* Otherwise, fall thru into the TK_COLUMN case */
211713449892Sdrh     }
2118967e8b73Sdrh     case TK_COLUMN: {
2119ffe07b2dSdrh       if( pExpr->iTable<0 ){
2120ffe07b2dSdrh         /* This only happens when coding check constraints */
2121aa9b8963Sdrh         assert( pParse->ckBase>0 );
2122aa9b8963Sdrh         inReg = pExpr->iColumn + pParse->ckBase;
2123c4a3c779Sdrh       }else{
2124c5499befSdrh         testcase( (pExpr->flags & EP_AnyAff)!=0 );
2125e55cbd72Sdrh         inReg = sqlite3ExprCodeGetColumn(pParse, pExpr->pTab,
2126da250ea5Sdrh                                  pExpr->iColumn, pExpr->iTable, target,
2127da250ea5Sdrh                                  pExpr->flags & EP_AnyAff);
21282282792aSdrh       }
2129cce7d176Sdrh       break;
2130cce7d176Sdrh     }
2131cce7d176Sdrh     case TK_INTEGER: {
213292b01d53Sdrh       codeInteger(v, pExpr, 0, target);
2133fec19aadSdrh       break;
213451e9a445Sdrh     }
2135598f1340Sdrh     case TK_FLOAT: {
213633e619fcSdrh       assert( !ExprHasProperty(pExpr, EP_IntValue) );
213733e619fcSdrh       codeReal(v, pExpr->u.zToken, 0, target);
2138598f1340Sdrh       break;
2139598f1340Sdrh     }
2140fec19aadSdrh     case TK_STRING: {
214133e619fcSdrh       assert( !ExprHasProperty(pExpr, EP_IntValue) );
214233e619fcSdrh       sqlite3VdbeAddOp4(v, OP_String8, 0, target, 0, pExpr->u.zToken, 0);
2143cce7d176Sdrh       break;
2144cce7d176Sdrh     }
2145f0863fe5Sdrh     case TK_NULL: {
21469de221dfSdrh       sqlite3VdbeAddOp2(v, OP_Null, 0, target);
2147f0863fe5Sdrh       break;
2148f0863fe5Sdrh     }
21495338a5f7Sdanielk1977 #ifndef SQLITE_OMIT_BLOB_LITERAL
2150c572ef7fSdanielk1977     case TK_BLOB: {
21516c8c6cecSdrh       int n;
21526c8c6cecSdrh       const char *z;
2153ca48c90fSdrh       char *zBlob;
215433e619fcSdrh       assert( !ExprHasProperty(pExpr, EP_IntValue) );
215533e619fcSdrh       assert( pExpr->u.zToken[0]=='x' || pExpr->u.zToken[0]=='X' );
215633e619fcSdrh       assert( pExpr->u.zToken[1]=='\'' );
215733e619fcSdrh       z = &pExpr->u.zToken[2];
2158b7916a78Sdrh       n = sqlite3Strlen30(z) - 1;
2159b7916a78Sdrh       assert( z[n]=='\'' );
2160ca48c90fSdrh       zBlob = sqlite3HexToBlob(sqlite3VdbeDb(v), z, n);
2161ca48c90fSdrh       sqlite3VdbeAddOp4(v, OP_Blob, n/2, target, 0, zBlob, P4_DYNAMIC);
2162c572ef7fSdanielk1977       break;
2163c572ef7fSdanielk1977     }
21645338a5f7Sdanielk1977 #endif
216550457896Sdrh     case TK_VARIABLE: {
216608de1490Sdrh       VdbeOp *pOp;
216733e619fcSdrh       assert( !ExprHasProperty(pExpr, EP_IntValue) );
216833e619fcSdrh       assert( pExpr->u.zToken!=0 );
216933e619fcSdrh       assert( pExpr->u.zToken[0]!=0 );
217033e619fcSdrh       if( pExpr->u.zToken[1]==0
217120411ea7Sdrh          && (pOp = sqlite3VdbeGetOp(v, -1))->opcode==OP_Variable
217208de1490Sdrh          && pOp->p1+pOp->p3==pExpr->iTable
217308de1490Sdrh          && pOp->p2+pOp->p3==target
217408de1490Sdrh          && pOp->p4.z==0
217508de1490Sdrh       ){
217608de1490Sdrh         /* If the previous instruction was a copy of the previous unnamed
217708de1490Sdrh         ** parameter into the previous register, then simply increment the
217808de1490Sdrh         ** repeat count on the prior instruction rather than making a new
217908de1490Sdrh         ** instruction.
218008de1490Sdrh         */
218108de1490Sdrh         pOp->p3++;
218208de1490Sdrh       }else{
218308de1490Sdrh         sqlite3VdbeAddOp3(v, OP_Variable, pExpr->iTable, target, 1);
218433e619fcSdrh         if( pExpr->u.zToken[1]!=0 ){
218533e619fcSdrh           sqlite3VdbeChangeP4(v, -1, pExpr->u.zToken, 0);
2186895d7472Sdrh         }
218708de1490Sdrh       }
218850457896Sdrh       break;
218950457896Sdrh     }
21904e0cff60Sdrh     case TK_REGISTER: {
21919de221dfSdrh       inReg = pExpr->iTable;
21924e0cff60Sdrh       break;
21934e0cff60Sdrh     }
21948b213899Sdrh     case TK_AS: {
219531daa63fSdrh       inReg = codeAlias(pParse, pExpr->iTable, pExpr->pLeft, target);
21968b213899Sdrh       break;
21978b213899Sdrh     }
2198487e262fSdrh #ifndef SQLITE_OMIT_CAST
2199487e262fSdrh     case TK_CAST: {
2200487e262fSdrh       /* Expressions of the form:   CAST(pLeft AS token) */
2201f0113000Sdanielk1977       int aff, to_op;
22022dcef11bSdrh       inReg = sqlite3ExprCodeTarget(pParse, pExpr->pLeft, target);
220333e619fcSdrh       assert( !ExprHasProperty(pExpr, EP_IntValue) );
220433e619fcSdrh       aff = sqlite3AffinityType(pExpr->u.zToken);
2205f0113000Sdanielk1977       to_op = aff - SQLITE_AFF_TEXT + OP_ToText;
2206f0113000Sdanielk1977       assert( to_op==OP_ToText    || aff!=SQLITE_AFF_TEXT    );
2207f0113000Sdanielk1977       assert( to_op==OP_ToBlob    || aff!=SQLITE_AFF_NONE    );
2208f0113000Sdanielk1977       assert( to_op==OP_ToNumeric || aff!=SQLITE_AFF_NUMERIC );
2209f0113000Sdanielk1977       assert( to_op==OP_ToInt     || aff!=SQLITE_AFF_INTEGER );
2210f0113000Sdanielk1977       assert( to_op==OP_ToReal    || aff!=SQLITE_AFF_REAL    );
2211c5499befSdrh       testcase( to_op==OP_ToText );
2212c5499befSdrh       testcase( to_op==OP_ToBlob );
2213c5499befSdrh       testcase( to_op==OP_ToNumeric );
2214c5499befSdrh       testcase( to_op==OP_ToInt );
2215c5499befSdrh       testcase( to_op==OP_ToReal );
22161735fa88Sdrh       if( inReg!=target ){
22171735fa88Sdrh         sqlite3VdbeAddOp2(v, OP_SCopy, inReg, target);
22181735fa88Sdrh         inReg = target;
22191735fa88Sdrh       }
22202dcef11bSdrh       sqlite3VdbeAddOp1(v, to_op, inReg);
2221c5499befSdrh       testcase( usedAsColumnCache(pParse, inReg, inReg) );
2222b3843a82Sdrh       sqlite3ExprCacheAffinityChange(pParse, inReg, 1);
2223487e262fSdrh       break;
2224487e262fSdrh     }
2225487e262fSdrh #endif /* SQLITE_OMIT_CAST */
2226c9b84a1fSdrh     case TK_LT:
2227c9b84a1fSdrh     case TK_LE:
2228c9b84a1fSdrh     case TK_GT:
2229c9b84a1fSdrh     case TK_GE:
2230c9b84a1fSdrh     case TK_NE:
2231c9b84a1fSdrh     case TK_EQ: {
2232f2bc013cSdrh       assert( TK_LT==OP_Lt );
2233f2bc013cSdrh       assert( TK_LE==OP_Le );
2234f2bc013cSdrh       assert( TK_GT==OP_Gt );
2235f2bc013cSdrh       assert( TK_GE==OP_Ge );
2236f2bc013cSdrh       assert( TK_EQ==OP_Eq );
2237f2bc013cSdrh       assert( TK_NE==OP_Ne );
2238c5499befSdrh       testcase( op==TK_LT );
2239c5499befSdrh       testcase( op==TK_LE );
2240c5499befSdrh       testcase( op==TK_GT );
2241c5499befSdrh       testcase( op==TK_GE );
2242c5499befSdrh       testcase( op==TK_EQ );
2243c5499befSdrh       testcase( op==TK_NE );
2244da250ea5Sdrh       codeCompareOperands(pParse, pExpr->pLeft, &r1, &regFree1,
2245da250ea5Sdrh                                   pExpr->pRight, &r2, &regFree2);
224635573356Sdrh       codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op,
224735573356Sdrh                   r1, r2, inReg, SQLITE_STOREP2);
2248c5499befSdrh       testcase( regFree1==0 );
2249c5499befSdrh       testcase( regFree2==0 );
2250a37cdde0Sdanielk1977       break;
2251c9b84a1fSdrh     }
2252cce7d176Sdrh     case TK_AND:
2253cce7d176Sdrh     case TK_OR:
2254cce7d176Sdrh     case TK_PLUS:
2255cce7d176Sdrh     case TK_STAR:
2256cce7d176Sdrh     case TK_MINUS:
2257bf4133cbSdrh     case TK_REM:
2258bf4133cbSdrh     case TK_BITAND:
2259bf4133cbSdrh     case TK_BITOR:
226017c40294Sdrh     case TK_SLASH:
2261bf4133cbSdrh     case TK_LSHIFT:
2262855eb1cfSdrh     case TK_RSHIFT:
22630040077dSdrh     case TK_CONCAT: {
2264f2bc013cSdrh       assert( TK_AND==OP_And );
2265f2bc013cSdrh       assert( TK_OR==OP_Or );
2266f2bc013cSdrh       assert( TK_PLUS==OP_Add );
2267f2bc013cSdrh       assert( TK_MINUS==OP_Subtract );
2268f2bc013cSdrh       assert( TK_REM==OP_Remainder );
2269f2bc013cSdrh       assert( TK_BITAND==OP_BitAnd );
2270f2bc013cSdrh       assert( TK_BITOR==OP_BitOr );
2271f2bc013cSdrh       assert( TK_SLASH==OP_Divide );
2272f2bc013cSdrh       assert( TK_LSHIFT==OP_ShiftLeft );
2273f2bc013cSdrh       assert( TK_RSHIFT==OP_ShiftRight );
2274f2bc013cSdrh       assert( TK_CONCAT==OP_Concat );
2275c5499befSdrh       testcase( op==TK_AND );
2276c5499befSdrh       testcase( op==TK_OR );
2277c5499befSdrh       testcase( op==TK_PLUS );
2278c5499befSdrh       testcase( op==TK_MINUS );
2279c5499befSdrh       testcase( op==TK_REM );
2280c5499befSdrh       testcase( op==TK_BITAND );
2281c5499befSdrh       testcase( op==TK_BITOR );
2282c5499befSdrh       testcase( op==TK_SLASH );
2283c5499befSdrh       testcase( op==TK_LSHIFT );
2284c5499befSdrh       testcase( op==TK_RSHIFT );
2285c5499befSdrh       testcase( op==TK_CONCAT );
22862dcef11bSdrh       r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, &regFree1);
22872dcef11bSdrh       r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, &regFree2);
22885b6afba9Sdrh       sqlite3VdbeAddOp3(v, op, r2, r1, target);
2289c5499befSdrh       testcase( regFree1==0 );
2290c5499befSdrh       testcase( regFree2==0 );
22910040077dSdrh       break;
22920040077dSdrh     }
2293cce7d176Sdrh     case TK_UMINUS: {
2294fec19aadSdrh       Expr *pLeft = pExpr->pLeft;
2295fec19aadSdrh       assert( pLeft );
2296fec19aadSdrh       if( pLeft->op==TK_FLOAT ){
229733e619fcSdrh         assert( !ExprHasProperty(pExpr, EP_IntValue) );
229833e619fcSdrh         codeReal(v, pLeft->u.zToken, 1, target);
2299fbd60f82Sshane       }else if( pLeft->op==TK_INTEGER ){
230092b01d53Sdrh         codeInteger(v, pLeft, 1, target);
23013c84ddffSdrh       }else{
23022dcef11bSdrh         regFree1 = r1 = sqlite3GetTempReg(pParse);
23033c84ddffSdrh         sqlite3VdbeAddOp2(v, OP_Integer, 0, r1);
2304e55cbd72Sdrh         r2 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, &regFree2);
23052dcef11bSdrh         sqlite3VdbeAddOp3(v, OP_Subtract, r2, r1, target);
2306c5499befSdrh         testcase( regFree2==0 );
23073c84ddffSdrh       }
23089de221dfSdrh       inReg = target;
23096e142f54Sdrh       break;
23106e142f54Sdrh     }
2311bf4133cbSdrh     case TK_BITNOT:
23126e142f54Sdrh     case TK_NOT: {
2313f2bc013cSdrh       assert( TK_BITNOT==OP_BitNot );
2314f2bc013cSdrh       assert( TK_NOT==OP_Not );
2315c5499befSdrh       testcase( op==TK_BITNOT );
2316c5499befSdrh       testcase( op==TK_NOT );
2317e99fa2afSdrh       r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, &regFree1);
2318e99fa2afSdrh       testcase( regFree1==0 );
2319e99fa2afSdrh       inReg = target;
2320e99fa2afSdrh       sqlite3VdbeAddOp2(v, op, r1, inReg);
2321cce7d176Sdrh       break;
2322cce7d176Sdrh     }
2323cce7d176Sdrh     case TK_ISNULL:
2324cce7d176Sdrh     case TK_NOTNULL: {
23256a288a33Sdrh       int addr;
2326f2bc013cSdrh       assert( TK_ISNULL==OP_IsNull );
2327f2bc013cSdrh       assert( TK_NOTNULL==OP_NotNull );
2328c5499befSdrh       testcase( op==TK_ISNULL );
2329c5499befSdrh       testcase( op==TK_NOTNULL );
23309de221dfSdrh       sqlite3VdbeAddOp2(v, OP_Integer, 1, target);
23312dcef11bSdrh       r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, &regFree1);
2332c5499befSdrh       testcase( regFree1==0 );
23332dcef11bSdrh       addr = sqlite3VdbeAddOp1(v, op, r1);
23349de221dfSdrh       sqlite3VdbeAddOp2(v, OP_AddImm, target, -1);
23356a288a33Sdrh       sqlite3VdbeJumpHere(v, addr);
2336a37cdde0Sdanielk1977       break;
2337f2bc013cSdrh     }
23382282792aSdrh     case TK_AGG_FUNCTION: {
233913449892Sdrh       AggInfo *pInfo = pExpr->pAggInfo;
23407e56e711Sdrh       if( pInfo==0 ){
234133e619fcSdrh         assert( !ExprHasProperty(pExpr, EP_IntValue) );
234233e619fcSdrh         sqlite3ErrorMsg(pParse, "misuse of aggregate: %s()", pExpr->u.zToken);
23437e56e711Sdrh       }else{
23449de221dfSdrh         inReg = pInfo->aFunc[pExpr->iAgg].iMem;
23457e56e711Sdrh       }
23462282792aSdrh       break;
23472282792aSdrh     }
2348b71090fdSdrh     case TK_CONST_FUNC:
2349cce7d176Sdrh     case TK_FUNCTION: {
235012ffee8cSdrh       ExprList *pFarg;       /* List of function arguments */
235112ffee8cSdrh       int nFarg;             /* Number of function arguments */
235212ffee8cSdrh       FuncDef *pDef;         /* The function definition object */
235312ffee8cSdrh       int nId;               /* Length of the function name in bytes */
235412ffee8cSdrh       const char *zId;       /* The function name */
235512ffee8cSdrh       int constMask = 0;     /* Mask of function arguments that are constant */
235612ffee8cSdrh       int i;                 /* Loop counter */
235712ffee8cSdrh       u8 enc = ENC(db);      /* The text encoding used by this database */
235812ffee8cSdrh       CollSeq *pColl = 0;    /* A collating sequence */
235917435752Sdrh 
23606ab3a2ecSdanielk1977       assert( !ExprHasProperty(pExpr, EP_xIsSelect) );
2361c5499befSdrh       testcase( op==TK_CONST_FUNC );
2362c5499befSdrh       testcase( op==TK_FUNCTION );
2363b7916a78Sdrh       if( ExprHasAnyProperty(pExpr, EP_TokenOnly) ){
236412ffee8cSdrh         pFarg = 0;
236512ffee8cSdrh       }else{
236612ffee8cSdrh         pFarg = pExpr->x.pList;
236712ffee8cSdrh       }
236812ffee8cSdrh       nFarg = pFarg ? pFarg->nExpr : 0;
236933e619fcSdrh       assert( !ExprHasProperty(pExpr, EP_IntValue) );
237033e619fcSdrh       zId = pExpr->u.zToken;
2371b7916a78Sdrh       nId = sqlite3Strlen30(zId);
237212ffee8cSdrh       pDef = sqlite3FindFunction(db, zId, nId, nFarg, enc, 0);
2373*feb306f5Sdrh       if( pDef==0 ){
2374*feb306f5Sdrh         sqlite3ErrorMsg(pParse, "unknown function: %.*s()", nId, zId);
2375*feb306f5Sdrh         break;
2376*feb306f5Sdrh       }
237712ffee8cSdrh       if( pFarg ){
237812ffee8cSdrh         r1 = sqlite3GetTempRange(pParse, nFarg);
237912ffee8cSdrh         sqlite3ExprCodeExprList(pParse, pFarg, r1, 1);
2380892d3179Sdrh       }else{
238112ffee8cSdrh         r1 = 0;
2382892d3179Sdrh       }
2383b7f6f68fSdrh #ifndef SQLITE_OMIT_VIRTUALTABLE
2384a43fa227Sdrh       /* Possibly overload the function if the first argument is
2385a43fa227Sdrh       ** a virtual table column.
2386a43fa227Sdrh       **
2387a43fa227Sdrh       ** For infix functions (LIKE, GLOB, REGEXP, and MATCH) use the
2388a43fa227Sdrh       ** second argument, not the first, as the argument to test to
2389a43fa227Sdrh       ** see if it is a column in a virtual table.  This is done because
2390a43fa227Sdrh       ** the left operand of infix functions (the operand we want to
2391a43fa227Sdrh       ** control overloading) ends up as the second argument to the
2392a43fa227Sdrh       ** function.  The expression "A glob B" is equivalent to
2393a43fa227Sdrh       ** "glob(B,A).  We want to use the A in "A glob B" to test
2394a43fa227Sdrh       ** for function overloading.  But we use the B term in "glob(B,A)".
2395a43fa227Sdrh       */
239612ffee8cSdrh       if( nFarg>=2 && (pExpr->flags & EP_InfixFunc) ){
239712ffee8cSdrh         pDef = sqlite3VtabOverloadFunction(db, pDef, nFarg, pFarg->a[1].pExpr);
239812ffee8cSdrh       }else if( nFarg>0 ){
239912ffee8cSdrh         pDef = sqlite3VtabOverloadFunction(db, pDef, nFarg, pFarg->a[0].pExpr);
2400b7f6f68fSdrh       }
2401b7f6f68fSdrh #endif
2402f7bca574Sdrh       for(i=0; i<nFarg; i++){
2403f7bca574Sdrh         if( i<32 && sqlite3ExprIsConstant(pFarg->a[i].pExpr) ){
240413449892Sdrh           constMask |= (1<<i);
2405d02eb1fdSdanielk1977         }
2406e82f5d04Sdrh         if( (pDef->flags & SQLITE_FUNC_NEEDCOLL)!=0 && !pColl ){
240712ffee8cSdrh           pColl = sqlite3ExprCollSeq(pParse, pFarg->a[i].pExpr);
2408dc1bdc4fSdanielk1977         }
2409dc1bdc4fSdanielk1977       }
2410e82f5d04Sdrh       if( pDef->flags & SQLITE_FUNC_NEEDCOLL ){
24118b213899Sdrh         if( !pColl ) pColl = db->pDfltColl;
241266a5167bSdrh         sqlite3VdbeAddOp4(v, OP_CollSeq, 0, 0, 0, (char *)pColl, P4_COLLSEQ);
2413682f68b0Sdanielk1977       }
24142dcef11bSdrh       sqlite3VdbeAddOp4(v, OP_Function, constMask, r1, target,
241566a5167bSdrh                         (char*)pDef, P4_FUNCDEF);
241612ffee8cSdrh       sqlite3VdbeChangeP5(v, (u8)nFarg);
241712ffee8cSdrh       if( nFarg ){
241812ffee8cSdrh         sqlite3ReleaseTempRange(pParse, r1, nFarg);
24192dcef11bSdrh       }
242012ffee8cSdrh       sqlite3ExprCacheAffinityChange(pParse, r1, nFarg);
24216ec2733bSdrh       break;
24226ec2733bSdrh     }
2423fe2093d7Sdrh #ifndef SQLITE_OMIT_SUBQUERY
2424fe2093d7Sdrh     case TK_EXISTS:
242519a775c2Sdrh     case TK_SELECT: {
2426c5499befSdrh       testcase( op==TK_EXISTS );
2427c5499befSdrh       testcase( op==TK_SELECT );
242841a05b7bSdanielk1977       sqlite3CodeSubselect(pParse, pExpr, 0, 0);
24299de221dfSdrh       inReg = pExpr->iColumn;
243019a775c2Sdrh       break;
243119a775c2Sdrh     }
2432fef5208cSdrh     case TK_IN: {
24330cdc022eSdanielk1977       int rNotFound = 0;
24340cdc022eSdanielk1977       int rMayHaveNull = 0;
24356fccc35aSdrh       int j2, j3, j4, j5;
243694a11211Sdrh       char affinity;
24379a96b668Sdanielk1977       int eType;
24389a96b668Sdanielk1977 
24393c31fc23Sdrh       VdbeNoopComment((v, "begin IN expr r%d", target));
24400cdc022eSdanielk1977       eType = sqlite3FindInIndex(pParse, pExpr, &rMayHaveNull);
24410cdc022eSdanielk1977       if( rMayHaveNull ){
24420cdc022eSdanielk1977         rNotFound = ++pParse->nMem;
24430cdc022eSdanielk1977       }
2444e014a838Sdanielk1977 
2445e014a838Sdanielk1977       /* Figure out the affinity to use to create a key from the results
2446e014a838Sdanielk1977       ** of the expression. affinityStr stores a static string suitable for
244766a5167bSdrh       ** P4 of OP_MakeRecord.
2448e014a838Sdanielk1977       */
244994a11211Sdrh       affinity = comparisonAffinity(pExpr);
2450e014a838Sdanielk1977 
2451e014a838Sdanielk1977 
2452e014a838Sdanielk1977       /* Code the <expr> from "<expr> IN (...)". The temporary table
2453e014a838Sdanielk1977       ** pExpr->iTable contains the values that make up the (...) set.
2454e014a838Sdanielk1977       */
2455ceea3321Sdrh       sqlite3ExprCachePush(pParse);
245666ba23ceSdrh       sqlite3ExprCode(pParse, pExpr->pLeft, target);
245766ba23ceSdrh       j2 = sqlite3VdbeAddOp1(v, OP_IsNull, target);
24589a96b668Sdanielk1977       if( eType==IN_INDEX_ROWID ){
245966ba23ceSdrh         j3 = sqlite3VdbeAddOp1(v, OP_MustBeInt, target);
246066ba23ceSdrh         j4 = sqlite3VdbeAddOp3(v, OP_NotExists, pExpr->iTable, 0, target);
246166ba23ceSdrh         sqlite3VdbeAddOp2(v, OP_Integer, 1, target);
24626a288a33Sdrh         j5 = sqlite3VdbeAddOp0(v, OP_Goto);
24636a288a33Sdrh         sqlite3VdbeJumpHere(v, j3);
24646a288a33Sdrh         sqlite3VdbeJumpHere(v, j4);
24650cdc022eSdanielk1977         sqlite3VdbeAddOp2(v, OP_Integer, 0, target);
24669a96b668Sdanielk1977       }else{
24672dcef11bSdrh         r2 = regFree2 = sqlite3GetTempReg(pParse);
24680cdc022eSdanielk1977 
24690cdc022eSdanielk1977         /* Create a record and test for set membership. If the set contains
24700cdc022eSdanielk1977         ** the value, then jump to the end of the test code. The target
24710cdc022eSdanielk1977         ** register still contains the true (1) value written to it earlier.
24720cdc022eSdanielk1977         */
247366ba23ceSdrh         sqlite3VdbeAddOp4(v, OP_MakeRecord, target, 1, r2, &affinity, 1);
247466ba23ceSdrh         sqlite3VdbeAddOp2(v, OP_Integer, 1, target);
24752dcef11bSdrh         j5 = sqlite3VdbeAddOp3(v, OP_Found, pExpr->iTable, 0, r2);
24760cdc022eSdanielk1977 
24770cdc022eSdanielk1977         /* If the set membership test fails, then the result of the
24780cdc022eSdanielk1977         ** "x IN (...)" expression must be either 0 or NULL. If the set
24790cdc022eSdanielk1977         ** contains no NULL values, then the result is 0. If the set
24800cdc022eSdanielk1977         ** contains one or more NULL values, then the result of the
24810cdc022eSdanielk1977         ** expression is also NULL.
24820cdc022eSdanielk1977         */
24830cdc022eSdanielk1977         if( rNotFound==0 ){
24840cdc022eSdanielk1977           /* This branch runs if it is known at compile time (now) that
24850cdc022eSdanielk1977           ** the set contains no NULL values. This happens as the result
24860cdc022eSdanielk1977           ** of a "NOT NULL" constraint in the database schema. No need
24870cdc022eSdanielk1977           ** to test the data structure at runtime in this case.
24880cdc022eSdanielk1977           */
24890cdc022eSdanielk1977           sqlite3VdbeAddOp2(v, OP_Integer, 0, target);
24900cdc022eSdanielk1977         }else{
24910cdc022eSdanielk1977           /* This block populates the rNotFound register with either NULL
24920cdc022eSdanielk1977           ** or 0 (an integer value). If the data structure contains one
24930cdc022eSdanielk1977           ** or more NULLs, then set rNotFound to NULL. Otherwise, set it
24940cdc022eSdanielk1977           ** to 0. If register rMayHaveNull is already set to some value
24950cdc022eSdanielk1977           ** other than NULL, then the test has already been run and
24960cdc022eSdanielk1977           ** rNotFound is already populated.
24970cdc022eSdanielk1977           */
249866ba23ceSdrh           static const char nullRecord[] = { 0x02, 0x00 };
24990cdc022eSdanielk1977           j3 = sqlite3VdbeAddOp1(v, OP_NotNull, rMayHaveNull);
25000cdc022eSdanielk1977           sqlite3VdbeAddOp2(v, OP_Null, 0, rNotFound);
250166ba23ceSdrh           sqlite3VdbeAddOp4(v, OP_Blob, 2, rMayHaveNull, 0,
250266ba23ceSdrh                              nullRecord, P4_STATIC);
250366ba23ceSdrh           j4 = sqlite3VdbeAddOp3(v, OP_Found, pExpr->iTable, 0, rMayHaveNull);
25040cdc022eSdanielk1977           sqlite3VdbeAddOp2(v, OP_Integer, 0, rNotFound);
25050cdc022eSdanielk1977           sqlite3VdbeJumpHere(v, j4);
25060cdc022eSdanielk1977           sqlite3VdbeJumpHere(v, j3);
25070cdc022eSdanielk1977 
25080cdc022eSdanielk1977           /* Copy the value of register rNotFound (which is either NULL or 0)
25090cdc022eSdanielk1977           ** into the target register. This will be the result of the
25100cdc022eSdanielk1977           ** expression.
25110cdc022eSdanielk1977           */
25120cdc022eSdanielk1977           sqlite3VdbeAddOp2(v, OP_Copy, rNotFound, target);
25139a96b668Sdanielk1977         }
25140cdc022eSdanielk1977       }
25156a288a33Sdrh       sqlite3VdbeJumpHere(v, j2);
25166a288a33Sdrh       sqlite3VdbeJumpHere(v, j5);
2517ceea3321Sdrh       sqlite3ExprCachePop(pParse, 1);
25183c31fc23Sdrh       VdbeComment((v, "end IN expr r%d", target));
2519fef5208cSdrh       break;
2520fef5208cSdrh     }
252193758c8dSdanielk1977 #endif
25222dcef11bSdrh     /*
25232dcef11bSdrh     **    x BETWEEN y AND z
25242dcef11bSdrh     **
25252dcef11bSdrh     ** This is equivalent to
25262dcef11bSdrh     **
25272dcef11bSdrh     **    x>=y AND x<=z
25282dcef11bSdrh     **
25292dcef11bSdrh     ** X is stored in pExpr->pLeft.
25302dcef11bSdrh     ** Y is stored in pExpr->pList->a[0].pExpr.
25312dcef11bSdrh     ** Z is stored in pExpr->pList->a[1].pExpr.
25322dcef11bSdrh     */
2533fef5208cSdrh     case TK_BETWEEN: {
2534be5c89acSdrh       Expr *pLeft = pExpr->pLeft;
25356ab3a2ecSdanielk1977       struct ExprList_item *pLItem = pExpr->x.pList->a;
2536be5c89acSdrh       Expr *pRight = pLItem->pExpr;
253735573356Sdrh 
2538da250ea5Sdrh       codeCompareOperands(pParse, pLeft, &r1, &regFree1,
2539da250ea5Sdrh                                   pRight, &r2, &regFree2);
2540c5499befSdrh       testcase( regFree1==0 );
2541c5499befSdrh       testcase( regFree2==0 );
25422dcef11bSdrh       r3 = sqlite3GetTempReg(pParse);
2543678ccce8Sdrh       r4 = sqlite3GetTempReg(pParse);
254435573356Sdrh       codeCompare(pParse, pLeft, pRight, OP_Ge,
254535573356Sdrh                   r1, r2, r3, SQLITE_STOREP2);
2546be5c89acSdrh       pLItem++;
2547be5c89acSdrh       pRight = pLItem->pExpr;
25482dcef11bSdrh       sqlite3ReleaseTempReg(pParse, regFree2);
25492dcef11bSdrh       r2 = sqlite3ExprCodeTemp(pParse, pRight, &regFree2);
2550c5499befSdrh       testcase( regFree2==0 );
2551678ccce8Sdrh       codeCompare(pParse, pLeft, pRight, OP_Le, r1, r2, r4, SQLITE_STOREP2);
2552678ccce8Sdrh       sqlite3VdbeAddOp3(v, OP_And, r3, r4, target);
25532dcef11bSdrh       sqlite3ReleaseTempReg(pParse, r3);
2554678ccce8Sdrh       sqlite3ReleaseTempReg(pParse, r4);
2555fef5208cSdrh       break;
2556fef5208cSdrh     }
25574f07e5fbSdrh     case TK_UPLUS: {
25582dcef11bSdrh       inReg = sqlite3ExprCodeTarget(pParse, pExpr->pLeft, target);
2559a2e00042Sdrh       break;
2560a2e00042Sdrh     }
25612dcef11bSdrh 
25622dcef11bSdrh     /*
25632dcef11bSdrh     ** Form A:
25642dcef11bSdrh     **   CASE x WHEN e1 THEN r1 WHEN e2 THEN r2 ... WHEN eN THEN rN ELSE y END
25652dcef11bSdrh     **
25662dcef11bSdrh     ** Form B:
25672dcef11bSdrh     **   CASE WHEN e1 THEN r1 WHEN e2 THEN r2 ... WHEN eN THEN rN ELSE y END
25682dcef11bSdrh     **
25692dcef11bSdrh     ** Form A is can be transformed into the equivalent form B as follows:
25702dcef11bSdrh     **   CASE WHEN x=e1 THEN r1 WHEN x=e2 THEN r2 ...
25712dcef11bSdrh     **        WHEN x=eN THEN rN ELSE y END
25722dcef11bSdrh     **
25732dcef11bSdrh     ** X (if it exists) is in pExpr->pLeft.
25742dcef11bSdrh     ** Y is in pExpr->pRight.  The Y is also optional.  If there is no
25752dcef11bSdrh     ** ELSE clause and no other term matches, then the result of the
25762dcef11bSdrh     ** exprssion is NULL.
25772dcef11bSdrh     ** Ei is in pExpr->pList->a[i*2] and Ri is pExpr->pList->a[i*2+1].
25782dcef11bSdrh     **
25792dcef11bSdrh     ** The result of the expression is the Ri for the first matching Ei,
25802dcef11bSdrh     ** or if there is no matching Ei, the ELSE term Y, or if there is
25812dcef11bSdrh     ** no ELSE term, NULL.
25822dcef11bSdrh     */
258333cd4909Sdrh     default: assert( op==TK_CASE ); {
25842dcef11bSdrh       int endLabel;                     /* GOTO label for end of CASE stmt */
25852dcef11bSdrh       int nextCase;                     /* GOTO label for next WHEN clause */
25862dcef11bSdrh       int nExpr;                        /* 2x number of WHEN terms */
25872dcef11bSdrh       int i;                            /* Loop counter */
25882dcef11bSdrh       ExprList *pEList;                 /* List of WHEN terms */
25892dcef11bSdrh       struct ExprList_item *aListelem;  /* Array of WHEN terms */
25902dcef11bSdrh       Expr opCompare;                   /* The X==Ei expression */
25912dcef11bSdrh       Expr cacheX;                      /* Cached expression X */
25922dcef11bSdrh       Expr *pX;                         /* The X expression */
25931bd10f8aSdrh       Expr *pTest = 0;                  /* X==Ei (form A) or just Ei (form B) */
2594ceea3321Sdrh       VVA_ONLY( int iCacheLevel = pParse->iCacheLevel; )
259517a7f8ddSdrh 
25966ab3a2ecSdanielk1977       assert( !ExprHasProperty(pExpr, EP_xIsSelect) && pExpr->x.pList );
25976ab3a2ecSdanielk1977       assert((pExpr->x.pList->nExpr % 2) == 0);
25986ab3a2ecSdanielk1977       assert(pExpr->x.pList->nExpr > 0);
25996ab3a2ecSdanielk1977       pEList = pExpr->x.pList;
2600be5c89acSdrh       aListelem = pEList->a;
2601be5c89acSdrh       nExpr = pEList->nExpr;
26022dcef11bSdrh       endLabel = sqlite3VdbeMakeLabel(v);
26032dcef11bSdrh       if( (pX = pExpr->pLeft)!=0 ){
26042dcef11bSdrh         cacheX = *pX;
260533cd4909Sdrh         testcase( pX->op==TK_COLUMN );
260633cd4909Sdrh         testcase( pX->op==TK_REGISTER );
26072dcef11bSdrh         cacheX.iTable = sqlite3ExprCodeTemp(pParse, pX, &regFree1);
2608c5499befSdrh         testcase( regFree1==0 );
26092dcef11bSdrh         cacheX.op = TK_REGISTER;
26102dcef11bSdrh         opCompare.op = TK_EQ;
26112dcef11bSdrh         opCompare.pLeft = &cacheX;
26122dcef11bSdrh         pTest = &opCompare;
2613cce7d176Sdrh       }
2614f5905aa7Sdrh       for(i=0; i<nExpr; i=i+2){
2615ceea3321Sdrh         sqlite3ExprCachePush(pParse);
26162dcef11bSdrh         if( pX ){
26171bd10f8aSdrh           assert( pTest!=0 );
26182dcef11bSdrh           opCompare.pRight = aListelem[i].pExpr;
2619f5905aa7Sdrh         }else{
26202dcef11bSdrh           pTest = aListelem[i].pExpr;
262117a7f8ddSdrh         }
26222dcef11bSdrh         nextCase = sqlite3VdbeMakeLabel(v);
262333cd4909Sdrh         testcase( pTest->op==TK_COLUMN );
26242dcef11bSdrh         sqlite3ExprIfFalse(pParse, pTest, nextCase, SQLITE_JUMPIFNULL);
2625c5499befSdrh         testcase( aListelem[i+1].pExpr->op==TK_COLUMN );
2626c5499befSdrh         testcase( aListelem[i+1].pExpr->op==TK_REGISTER );
26279de221dfSdrh         sqlite3ExprCode(pParse, aListelem[i+1].pExpr, target);
26282dcef11bSdrh         sqlite3VdbeAddOp2(v, OP_Goto, 0, endLabel);
2629ceea3321Sdrh         sqlite3ExprCachePop(pParse, 1);
26302dcef11bSdrh         sqlite3VdbeResolveLabel(v, nextCase);
2631f570f011Sdrh       }
263217a7f8ddSdrh       if( pExpr->pRight ){
2633ceea3321Sdrh         sqlite3ExprCachePush(pParse);
26349de221dfSdrh         sqlite3ExprCode(pParse, pExpr->pRight, target);
2635ceea3321Sdrh         sqlite3ExprCachePop(pParse, 1);
263617a7f8ddSdrh       }else{
26379de221dfSdrh         sqlite3VdbeAddOp2(v, OP_Null, 0, target);
263817a7f8ddSdrh       }
2639c1f4a19bSdanielk1977       assert( db->mallocFailed || pParse->nErr>0
2640c1f4a19bSdanielk1977            || pParse->iCacheLevel==iCacheLevel );
26412dcef11bSdrh       sqlite3VdbeResolveLabel(v, endLabel);
26426f34903eSdanielk1977       break;
26436f34903eSdanielk1977     }
26445338a5f7Sdanielk1977 #ifndef SQLITE_OMIT_TRIGGER
26456f34903eSdanielk1977     case TK_RAISE: {
26466f34903eSdanielk1977       if( !pParse->trigStack ){
26474adee20fSdanielk1977         sqlite3ErrorMsg(pParse,
2648da93d238Sdrh                        "RAISE() may only be used within a trigger-program");
2649389a1adbSdrh         return 0;
26506f34903eSdanielk1977       }
26516ab3a2ecSdanielk1977       if( pExpr->affinity!=OE_Ignore ){
26526ab3a2ecSdanielk1977          assert( pExpr->affinity==OE_Rollback ||
26536ab3a2ecSdanielk1977                  pExpr->affinity == OE_Abort ||
26546ab3a2ecSdanielk1977                  pExpr->affinity == OE_Fail );
265533e619fcSdrh          assert( !ExprHasProperty(pExpr, EP_IntValue) );
26566ab3a2ecSdanielk1977          sqlite3VdbeAddOp4(v, OP_Halt, SQLITE_CONSTRAINT, pExpr->affinity, 0,
265733e619fcSdrh                            pExpr->u.zToken, 0);
26586f34903eSdanielk1977       } else {
26596ab3a2ecSdanielk1977          assert( pExpr->affinity == OE_Ignore );
266066a5167bSdrh          sqlite3VdbeAddOp2(v, OP_ContextPop, 0, 0);
266166a5167bSdrh          sqlite3VdbeAddOp2(v, OP_Goto, 0, pParse->trigStack->ignoreJump);
2662d4e70ebdSdrh          VdbeComment((v, "raise(IGNORE)"));
26636f34903eSdanielk1977       }
2664ffe07b2dSdrh       break;
266517a7f8ddSdrh     }
26665338a5f7Sdanielk1977 #endif
2667ffe07b2dSdrh   }
26682dcef11bSdrh   sqlite3ReleaseTempReg(pParse, regFree1);
26692dcef11bSdrh   sqlite3ReleaseTempReg(pParse, regFree2);
26702dcef11bSdrh   return inReg;
26715b6afba9Sdrh }
26722dcef11bSdrh 
26732dcef11bSdrh /*
26742dcef11bSdrh ** Generate code to evaluate an expression and store the results
26752dcef11bSdrh ** into a register.  Return the register number where the results
26762dcef11bSdrh ** are stored.
26772dcef11bSdrh **
26782dcef11bSdrh ** If the register is a temporary register that can be deallocated,
2679678ccce8Sdrh ** then write its number into *pReg.  If the result register is not
26802dcef11bSdrh ** a temporary, then set *pReg to zero.
26812dcef11bSdrh */
26822dcef11bSdrh int sqlite3ExprCodeTemp(Parse *pParse, Expr *pExpr, int *pReg){
26832dcef11bSdrh   int r1 = sqlite3GetTempReg(pParse);
26842dcef11bSdrh   int r2 = sqlite3ExprCodeTarget(pParse, pExpr, r1);
26852dcef11bSdrh   if( r2==r1 ){
26862dcef11bSdrh     *pReg = r1;
26872dcef11bSdrh   }else{
26882dcef11bSdrh     sqlite3ReleaseTempReg(pParse, r1);
26892dcef11bSdrh     *pReg = 0;
26902dcef11bSdrh   }
26912dcef11bSdrh   return r2;
26922dcef11bSdrh }
26932dcef11bSdrh 
26942dcef11bSdrh /*
26952dcef11bSdrh ** Generate code that will evaluate expression pExpr and store the
26962dcef11bSdrh ** results in register target.  The results are guaranteed to appear
26972dcef11bSdrh ** in register target.
26982dcef11bSdrh */
26992dcef11bSdrh int sqlite3ExprCode(Parse *pParse, Expr *pExpr, int target){
27009cbf3425Sdrh   int inReg;
27019cbf3425Sdrh 
27029cbf3425Sdrh   assert( target>0 && target<=pParse->nMem );
27039cbf3425Sdrh   inReg = sqlite3ExprCodeTarget(pParse, pExpr, target);
27040e359b30Sdrh   assert( pParse->pVdbe || pParse->db->mallocFailed );
27050e359b30Sdrh   if( inReg!=target && pParse->pVdbe ){
27069cbf3425Sdrh     sqlite3VdbeAddOp2(pParse->pVdbe, OP_SCopy, inReg, target);
270717a7f8ddSdrh   }
2708389a1adbSdrh   return target;
2709cce7d176Sdrh }
2710cce7d176Sdrh 
2711cce7d176Sdrh /*
27122dcef11bSdrh ** Generate code that evalutes the given expression and puts the result
2713de4fcfddSdrh ** in register target.
271425303780Sdrh **
27152dcef11bSdrh ** Also make a copy of the expression results into another "cache" register
27162dcef11bSdrh ** and modify the expression so that the next time it is evaluated,
27172dcef11bSdrh ** the result is a copy of the cache register.
27182dcef11bSdrh **
27192dcef11bSdrh ** This routine is used for expressions that are used multiple
27202dcef11bSdrh ** times.  They are evaluated once and the results of the expression
27212dcef11bSdrh ** are reused.
272225303780Sdrh */
27232dcef11bSdrh int sqlite3ExprCodeAndCache(Parse *pParse, Expr *pExpr, int target){
272425303780Sdrh   Vdbe *v = pParse->pVdbe;
27252dcef11bSdrh   int inReg;
27262dcef11bSdrh   inReg = sqlite3ExprCode(pParse, pExpr, target);
2727de4fcfddSdrh   assert( target>0 );
272820bc393cSdrh   /* This routine is called for terms to INSERT or UPDATE.  And the only
272920bc393cSdrh   ** other place where expressions can be converted into TK_REGISTER is
273020bc393cSdrh   ** in WHERE clause processing.  So as currently implemented, there is
273120bc393cSdrh   ** no way for a TK_REGISTER to exist here.  But it seems prudent to
273220bc393cSdrh   ** keep the ALWAYS() in case the conditions above change with future
273320bc393cSdrh   ** modifications or enhancements. */
273420bc393cSdrh   if( ALWAYS(pExpr->op!=TK_REGISTER) ){
273525303780Sdrh     int iMem;
27362dcef11bSdrh     iMem = ++pParse->nMem;
27372dcef11bSdrh     sqlite3VdbeAddOp2(v, OP_Copy, inReg, iMem);
27382dcef11bSdrh     pExpr->iTable = iMem;
273925303780Sdrh     pExpr->op = TK_REGISTER;
274025303780Sdrh   }
27412dcef11bSdrh   return inReg;
274225303780Sdrh }
27432dcef11bSdrh 
2744678ccce8Sdrh /*
274547de955eSdrh ** Return TRUE if pExpr is an constant expression that is appropriate
274647de955eSdrh ** for factoring out of a loop.  Appropriate expressions are:
274747de955eSdrh **
274847de955eSdrh **    *  Any expression that evaluates to two or more opcodes.
274947de955eSdrh **
275047de955eSdrh **    *  Any OP_Integer, OP_Real, OP_String, OP_Blob, OP_Null,
275147de955eSdrh **       or OP_Variable that does not need to be placed in a
275247de955eSdrh **       specific register.
275347de955eSdrh **
275447de955eSdrh ** There is no point in factoring out single-instruction constant
275547de955eSdrh ** expressions that need to be placed in a particular register.
275647de955eSdrh ** We could factor them out, but then we would end up adding an
275747de955eSdrh ** OP_SCopy instruction to move the value into the correct register
275847de955eSdrh ** later.  We might as well just use the original instruction and
275947de955eSdrh ** avoid the OP_SCopy.
276047de955eSdrh */
276147de955eSdrh static int isAppropriateForFactoring(Expr *p){
276247de955eSdrh   if( !sqlite3ExprIsConstantNotJoin(p) ){
276347de955eSdrh     return 0;  /* Only constant expressions are appropriate for factoring */
276447de955eSdrh   }
276547de955eSdrh   if( (p->flags & EP_FixedDest)==0 ){
276647de955eSdrh     return 1;  /* Any constant without a fixed destination is appropriate */
276747de955eSdrh   }
276847de955eSdrh   while( p->op==TK_UPLUS ) p = p->pLeft;
276947de955eSdrh   switch( p->op ){
277047de955eSdrh #ifndef SQLITE_OMIT_BLOB_LITERAL
277147de955eSdrh     case TK_BLOB:
277247de955eSdrh #endif
277347de955eSdrh     case TK_VARIABLE:
277447de955eSdrh     case TK_INTEGER:
277547de955eSdrh     case TK_FLOAT:
277647de955eSdrh     case TK_NULL:
277747de955eSdrh     case TK_STRING: {
277847de955eSdrh       testcase( p->op==TK_BLOB );
277947de955eSdrh       testcase( p->op==TK_VARIABLE );
278047de955eSdrh       testcase( p->op==TK_INTEGER );
278147de955eSdrh       testcase( p->op==TK_FLOAT );
278247de955eSdrh       testcase( p->op==TK_NULL );
278347de955eSdrh       testcase( p->op==TK_STRING );
278447de955eSdrh       /* Single-instruction constants with a fixed destination are
278547de955eSdrh       ** better done in-line.  If we factor them, they will just end
278647de955eSdrh       ** up generating an OP_SCopy to move the value to the destination
278747de955eSdrh       ** register. */
278847de955eSdrh       return 0;
278947de955eSdrh     }
279047de955eSdrh     case TK_UMINUS: {
279147de955eSdrh       if( p->pLeft->op==TK_FLOAT || p->pLeft->op==TK_INTEGER ){
279247de955eSdrh         return 0;
279347de955eSdrh       }
279447de955eSdrh       break;
279547de955eSdrh     }
279647de955eSdrh     default: {
279747de955eSdrh       break;
279847de955eSdrh     }
279947de955eSdrh   }
280047de955eSdrh   return 1;
280147de955eSdrh }
280247de955eSdrh 
280347de955eSdrh /*
280447de955eSdrh ** If pExpr is a constant expression that is appropriate for
280547de955eSdrh ** factoring out of a loop, then evaluate the expression
2806678ccce8Sdrh ** into a register and convert the expression into a TK_REGISTER
2807678ccce8Sdrh ** expression.
2808678ccce8Sdrh */
28097d10d5a6Sdrh static int evalConstExpr(Walker *pWalker, Expr *pExpr){
28107d10d5a6Sdrh   Parse *pParse = pWalker->pParse;
281147de955eSdrh   switch( pExpr->op ){
281247de955eSdrh     case TK_REGISTER: {
281333cd4909Sdrh       return WRC_Prune;
2814678ccce8Sdrh     }
281547de955eSdrh     case TK_FUNCTION:
281647de955eSdrh     case TK_AGG_FUNCTION:
281747de955eSdrh     case TK_CONST_FUNC: {
281847de955eSdrh       /* The arguments to a function have a fixed destination.
281947de955eSdrh       ** Mark them this way to avoid generated unneeded OP_SCopy
282047de955eSdrh       ** instructions.
282147de955eSdrh       */
28226ab3a2ecSdanielk1977       ExprList *pList = pExpr->x.pList;
28236ab3a2ecSdanielk1977       assert( !ExprHasProperty(pExpr, EP_xIsSelect) );
282447de955eSdrh       if( pList ){
282547de955eSdrh         int i = pList->nExpr;
282647de955eSdrh         struct ExprList_item *pItem = pList->a;
282747de955eSdrh         for(; i>0; i--, pItem++){
282833cd4909Sdrh           if( ALWAYS(pItem->pExpr) ) pItem->pExpr->flags |= EP_FixedDest;
282947de955eSdrh         }
283047de955eSdrh       }
283147de955eSdrh       break;
283247de955eSdrh     }
283347de955eSdrh   }
283447de955eSdrh   if( isAppropriateForFactoring(pExpr) ){
2835678ccce8Sdrh     int r1 = ++pParse->nMem;
2836678ccce8Sdrh     int r2;
2837678ccce8Sdrh     r2 = sqlite3ExprCodeTarget(pParse, pExpr, r1);
283833cd4909Sdrh     if( NEVER(r1!=r2) ) sqlite3ReleaseTempReg(pParse, r1);
2839678ccce8Sdrh     pExpr->op = TK_REGISTER;
2840678ccce8Sdrh     pExpr->iTable = r2;
28417d10d5a6Sdrh     return WRC_Prune;
2842678ccce8Sdrh   }
28437d10d5a6Sdrh   return WRC_Continue;
2844678ccce8Sdrh }
2845678ccce8Sdrh 
2846678ccce8Sdrh /*
2847678ccce8Sdrh ** Preevaluate constant subexpressions within pExpr and store the
2848678ccce8Sdrh ** results in registers.  Modify pExpr so that the constant subexpresions
2849678ccce8Sdrh ** are TK_REGISTER opcodes that refer to the precomputed values.
2850678ccce8Sdrh */
2851678ccce8Sdrh void sqlite3ExprCodeConstants(Parse *pParse, Expr *pExpr){
28527d10d5a6Sdrh   Walker w;
28537d10d5a6Sdrh   w.xExprCallback = evalConstExpr;
28547d10d5a6Sdrh   w.xSelectCallback = 0;
28557d10d5a6Sdrh   w.pParse = pParse;
28567d10d5a6Sdrh   sqlite3WalkExpr(&w, pExpr);
2857678ccce8Sdrh }
2858678ccce8Sdrh 
285925303780Sdrh 
286025303780Sdrh /*
2861268380caSdrh ** Generate code that pushes the value of every element of the given
28629cbf3425Sdrh ** expression list into a sequence of registers beginning at target.
2863268380caSdrh **
2864892d3179Sdrh ** Return the number of elements evaluated.
2865268380caSdrh */
28664adee20fSdanielk1977 int sqlite3ExprCodeExprList(
2867268380caSdrh   Parse *pParse,     /* Parsing context */
2868389a1adbSdrh   ExprList *pList,   /* The expression list to be coded */
2869191b54cbSdrh   int target,        /* Where to write results */
2870d176611bSdrh   int doHardCopy     /* Make a hard copy of every element */
2871268380caSdrh ){
2872268380caSdrh   struct ExprList_item *pItem;
28739cbf3425Sdrh   int i, n;
28749d8b3072Sdrh   assert( pList!=0 );
28759cbf3425Sdrh   assert( target>0 );
2876268380caSdrh   n = pList->nExpr;
2877191b54cbSdrh   for(pItem=pList->a, i=0; i<n; i++, pItem++){
28788b213899Sdrh     if( pItem->iAlias ){
287931daa63fSdrh       int iReg = codeAlias(pParse, pItem->iAlias, pItem->pExpr, target+i);
28808b213899Sdrh       Vdbe *v = sqlite3GetVdbe(pParse);
288131daa63fSdrh       if( iReg!=target+i ){
28828b213899Sdrh         sqlite3VdbeAddOp2(v, OP_SCopy, iReg, target+i);
288331daa63fSdrh       }
2884d176611bSdrh     }else{
2885191b54cbSdrh       sqlite3ExprCode(pParse, pItem->pExpr, target+i);
28868b213899Sdrh     }
288720411ea7Sdrh     if( doHardCopy && !pParse->db->mallocFailed ){
2888d176611bSdrh       sqlite3ExprHardCopy(pParse, target, n);
2889d176611bSdrh     }
2890268380caSdrh   }
2891f9b596ebSdrh   return n;
2892268380caSdrh }
2893268380caSdrh 
2894268380caSdrh /*
2895cce7d176Sdrh ** Generate code for a boolean expression such that a jump is made
2896cce7d176Sdrh ** to the label "dest" if the expression is true but execution
2897cce7d176Sdrh ** continues straight thru if the expression is false.
2898f5905aa7Sdrh **
2899f5905aa7Sdrh ** If the expression evaluates to NULL (neither true nor false), then
290035573356Sdrh ** take the jump if the jumpIfNull flag is SQLITE_JUMPIFNULL.
2901f2bc013cSdrh **
2902f2bc013cSdrh ** This code depends on the fact that certain token values (ex: TK_EQ)
2903f2bc013cSdrh ** are the same as opcode values (ex: OP_Eq) that implement the corresponding
2904f2bc013cSdrh ** operation.  Special comments in vdbe.c and the mkopcodeh.awk script in
2905f2bc013cSdrh ** the make process cause these values to align.  Assert()s in the code
2906f2bc013cSdrh ** below verify that the numbers are aligned correctly.
2907cce7d176Sdrh */
29084adee20fSdanielk1977 void sqlite3ExprIfTrue(Parse *pParse, Expr *pExpr, int dest, int jumpIfNull){
2909cce7d176Sdrh   Vdbe *v = pParse->pVdbe;
2910cce7d176Sdrh   int op = 0;
29112dcef11bSdrh   int regFree1 = 0;
29122dcef11bSdrh   int regFree2 = 0;
29132dcef11bSdrh   int r1, r2;
29142dcef11bSdrh 
291535573356Sdrh   assert( jumpIfNull==SQLITE_JUMPIFNULL || jumpIfNull==0 );
291633cd4909Sdrh   if( NEVER(v==0) )     return;  /* Existance of VDBE checked by caller */
291733cd4909Sdrh   if( NEVER(pExpr==0) ) return;  /* No way this can happen */
2918f2bc013cSdrh   op = pExpr->op;
2919f2bc013cSdrh   switch( op ){
2920cce7d176Sdrh     case TK_AND: {
29214adee20fSdanielk1977       int d2 = sqlite3VdbeMakeLabel(v);
2922c5499befSdrh       testcase( jumpIfNull==0 );
2923ceea3321Sdrh       sqlite3ExprCachePush(pParse);
292435573356Sdrh       sqlite3ExprIfFalse(pParse, pExpr->pLeft, d2,jumpIfNull^SQLITE_JUMPIFNULL);
29254adee20fSdanielk1977       sqlite3ExprIfTrue(pParse, pExpr->pRight, dest, jumpIfNull);
29264adee20fSdanielk1977       sqlite3VdbeResolveLabel(v, d2);
2927ceea3321Sdrh       sqlite3ExprCachePop(pParse, 1);
2928cce7d176Sdrh       break;
2929cce7d176Sdrh     }
2930cce7d176Sdrh     case TK_OR: {
2931c5499befSdrh       testcase( jumpIfNull==0 );
29324adee20fSdanielk1977       sqlite3ExprIfTrue(pParse, pExpr->pLeft, dest, jumpIfNull);
29334adee20fSdanielk1977       sqlite3ExprIfTrue(pParse, pExpr->pRight, dest, jumpIfNull);
2934cce7d176Sdrh       break;
2935cce7d176Sdrh     }
2936cce7d176Sdrh     case TK_NOT: {
2937c5499befSdrh       testcase( jumpIfNull==0 );
29384adee20fSdanielk1977       sqlite3ExprIfFalse(pParse, pExpr->pLeft, dest, jumpIfNull);
2939cce7d176Sdrh       break;
2940cce7d176Sdrh     }
2941cce7d176Sdrh     case TK_LT:
2942cce7d176Sdrh     case TK_LE:
2943cce7d176Sdrh     case TK_GT:
2944cce7d176Sdrh     case TK_GE:
2945cce7d176Sdrh     case TK_NE:
29460ac65892Sdrh     case TK_EQ: {
2947f2bc013cSdrh       assert( TK_LT==OP_Lt );
2948f2bc013cSdrh       assert( TK_LE==OP_Le );
2949f2bc013cSdrh       assert( TK_GT==OP_Gt );
2950f2bc013cSdrh       assert( TK_GE==OP_Ge );
2951f2bc013cSdrh       assert( TK_EQ==OP_Eq );
2952f2bc013cSdrh       assert( TK_NE==OP_Ne );
2953c5499befSdrh       testcase( op==TK_LT );
2954c5499befSdrh       testcase( op==TK_LE );
2955c5499befSdrh       testcase( op==TK_GT );
2956c5499befSdrh       testcase( op==TK_GE );
2957c5499befSdrh       testcase( op==TK_EQ );
2958c5499befSdrh       testcase( op==TK_NE );
2959c5499befSdrh       testcase( jumpIfNull==0 );
2960da250ea5Sdrh       codeCompareOperands(pParse, pExpr->pLeft, &r1, &regFree1,
2961da250ea5Sdrh                                   pExpr->pRight, &r2, &regFree2);
296235573356Sdrh       codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op,
29632dcef11bSdrh                   r1, r2, dest, jumpIfNull);
2964c5499befSdrh       testcase( regFree1==0 );
2965c5499befSdrh       testcase( regFree2==0 );
2966cce7d176Sdrh       break;
2967cce7d176Sdrh     }
2968cce7d176Sdrh     case TK_ISNULL:
2969cce7d176Sdrh     case TK_NOTNULL: {
2970f2bc013cSdrh       assert( TK_ISNULL==OP_IsNull );
2971f2bc013cSdrh       assert( TK_NOTNULL==OP_NotNull );
2972c5499befSdrh       testcase( op==TK_ISNULL );
2973c5499befSdrh       testcase( op==TK_NOTNULL );
29742dcef11bSdrh       r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, &regFree1);
29752dcef11bSdrh       sqlite3VdbeAddOp2(v, op, r1, dest);
2976c5499befSdrh       testcase( regFree1==0 );
2977cce7d176Sdrh       break;
2978cce7d176Sdrh     }
2979fef5208cSdrh     case TK_BETWEEN: {
29802dcef11bSdrh       /*    x BETWEEN y AND z
29810202b29eSdanielk1977       **
29822dcef11bSdrh       ** Is equivalent to
29832dcef11bSdrh       **
29842dcef11bSdrh       **    x>=y AND x<=z
29852dcef11bSdrh       **
29862dcef11bSdrh       ** Code it as such, taking care to do the common subexpression
29872dcef11bSdrh       ** elementation of x.
29880202b29eSdanielk1977       */
29892dcef11bSdrh       Expr exprAnd;
29902dcef11bSdrh       Expr compLeft;
29912dcef11bSdrh       Expr compRight;
29922dcef11bSdrh       Expr exprX;
29930202b29eSdanielk1977 
29946ab3a2ecSdanielk1977       assert( !ExprHasProperty(pExpr, EP_xIsSelect) );
29952dcef11bSdrh       exprX = *pExpr->pLeft;
29962dcef11bSdrh       exprAnd.op = TK_AND;
29972dcef11bSdrh       exprAnd.pLeft = &compLeft;
29982dcef11bSdrh       exprAnd.pRight = &compRight;
29992dcef11bSdrh       compLeft.op = TK_GE;
30002dcef11bSdrh       compLeft.pLeft = &exprX;
30016ab3a2ecSdanielk1977       compLeft.pRight = pExpr->x.pList->a[0].pExpr;
30022dcef11bSdrh       compRight.op = TK_LE;
30032dcef11bSdrh       compRight.pLeft = &exprX;
30046ab3a2ecSdanielk1977       compRight.pRight = pExpr->x.pList->a[1].pExpr;
30052dcef11bSdrh       exprX.iTable = sqlite3ExprCodeTemp(pParse, &exprX, &regFree1);
3006c5499befSdrh       testcase( regFree1==0 );
30072dcef11bSdrh       exprX.op = TK_REGISTER;
3008c5499befSdrh       testcase( jumpIfNull==0 );
30092dcef11bSdrh       sqlite3ExprIfTrue(pParse, &exprAnd, dest, jumpIfNull);
3010fef5208cSdrh       break;
3011fef5208cSdrh     }
3012cce7d176Sdrh     default: {
30132dcef11bSdrh       r1 = sqlite3ExprCodeTemp(pParse, pExpr, &regFree1);
30142dcef11bSdrh       sqlite3VdbeAddOp3(v, OP_If, r1, dest, jumpIfNull!=0);
3015c5499befSdrh       testcase( regFree1==0 );
3016c5499befSdrh       testcase( jumpIfNull==0 );
3017cce7d176Sdrh       break;
3018cce7d176Sdrh     }
3019cce7d176Sdrh   }
30202dcef11bSdrh   sqlite3ReleaseTempReg(pParse, regFree1);
30212dcef11bSdrh   sqlite3ReleaseTempReg(pParse, regFree2);
3022cce7d176Sdrh }
3023cce7d176Sdrh 
3024cce7d176Sdrh /*
302566b89c8fSdrh ** Generate code for a boolean expression such that a jump is made
3026cce7d176Sdrh ** to the label "dest" if the expression is false but execution
3027cce7d176Sdrh ** continues straight thru if the expression is true.
3028f5905aa7Sdrh **
3029f5905aa7Sdrh ** If the expression evaluates to NULL (neither true nor false) then
303035573356Sdrh ** jump if jumpIfNull is SQLITE_JUMPIFNULL or fall through if jumpIfNull
303135573356Sdrh ** is 0.
3032cce7d176Sdrh */
30334adee20fSdanielk1977 void sqlite3ExprIfFalse(Parse *pParse, Expr *pExpr, int dest, int jumpIfNull){
3034cce7d176Sdrh   Vdbe *v = pParse->pVdbe;
3035cce7d176Sdrh   int op = 0;
30362dcef11bSdrh   int regFree1 = 0;
30372dcef11bSdrh   int regFree2 = 0;
30382dcef11bSdrh   int r1, r2;
30392dcef11bSdrh 
304035573356Sdrh   assert( jumpIfNull==SQLITE_JUMPIFNULL || jumpIfNull==0 );
304133cd4909Sdrh   if( NEVER(v==0) ) return; /* Existance of VDBE checked by caller */
304233cd4909Sdrh   if( pExpr==0 )    return;
3043f2bc013cSdrh 
3044f2bc013cSdrh   /* The value of pExpr->op and op are related as follows:
3045f2bc013cSdrh   **
3046f2bc013cSdrh   **       pExpr->op            op
3047f2bc013cSdrh   **       ---------          ----------
3048f2bc013cSdrh   **       TK_ISNULL          OP_NotNull
3049f2bc013cSdrh   **       TK_NOTNULL         OP_IsNull
3050f2bc013cSdrh   **       TK_NE              OP_Eq
3051f2bc013cSdrh   **       TK_EQ              OP_Ne
3052f2bc013cSdrh   **       TK_GT              OP_Le
3053f2bc013cSdrh   **       TK_LE              OP_Gt
3054f2bc013cSdrh   **       TK_GE              OP_Lt
3055f2bc013cSdrh   **       TK_LT              OP_Ge
3056f2bc013cSdrh   **
3057f2bc013cSdrh   ** For other values of pExpr->op, op is undefined and unused.
3058f2bc013cSdrh   ** The value of TK_ and OP_ constants are arranged such that we
3059f2bc013cSdrh   ** can compute the mapping above using the following expression.
3060f2bc013cSdrh   ** Assert()s verify that the computation is correct.
3061f2bc013cSdrh   */
3062f2bc013cSdrh   op = ((pExpr->op+(TK_ISNULL&1))^1)-(TK_ISNULL&1);
3063f2bc013cSdrh 
3064f2bc013cSdrh   /* Verify correct alignment of TK_ and OP_ constants
3065f2bc013cSdrh   */
3066f2bc013cSdrh   assert( pExpr->op!=TK_ISNULL || op==OP_NotNull );
3067f2bc013cSdrh   assert( pExpr->op!=TK_NOTNULL || op==OP_IsNull );
3068f2bc013cSdrh   assert( pExpr->op!=TK_NE || op==OP_Eq );
3069f2bc013cSdrh   assert( pExpr->op!=TK_EQ || op==OP_Ne );
3070f2bc013cSdrh   assert( pExpr->op!=TK_LT || op==OP_Ge );
3071f2bc013cSdrh   assert( pExpr->op!=TK_LE || op==OP_Gt );
3072f2bc013cSdrh   assert( pExpr->op!=TK_GT || op==OP_Le );
3073f2bc013cSdrh   assert( pExpr->op!=TK_GE || op==OP_Lt );
3074f2bc013cSdrh 
3075cce7d176Sdrh   switch( pExpr->op ){
3076cce7d176Sdrh     case TK_AND: {
3077c5499befSdrh       testcase( jumpIfNull==0 );
30784adee20fSdanielk1977       sqlite3ExprIfFalse(pParse, pExpr->pLeft, dest, jumpIfNull);
30794adee20fSdanielk1977       sqlite3ExprIfFalse(pParse, pExpr->pRight, dest, jumpIfNull);
3080cce7d176Sdrh       break;
3081cce7d176Sdrh     }
3082cce7d176Sdrh     case TK_OR: {
30834adee20fSdanielk1977       int d2 = sqlite3VdbeMakeLabel(v);
3084c5499befSdrh       testcase( jumpIfNull==0 );
3085ceea3321Sdrh       sqlite3ExprCachePush(pParse);
308635573356Sdrh       sqlite3ExprIfTrue(pParse, pExpr->pLeft, d2, jumpIfNull^SQLITE_JUMPIFNULL);
30874adee20fSdanielk1977       sqlite3ExprIfFalse(pParse, pExpr->pRight, dest, jumpIfNull);
30884adee20fSdanielk1977       sqlite3VdbeResolveLabel(v, d2);
3089ceea3321Sdrh       sqlite3ExprCachePop(pParse, 1);
3090cce7d176Sdrh       break;
3091cce7d176Sdrh     }
3092cce7d176Sdrh     case TK_NOT: {
30934adee20fSdanielk1977       sqlite3ExprIfTrue(pParse, pExpr->pLeft, dest, jumpIfNull);
3094cce7d176Sdrh       break;
3095cce7d176Sdrh     }
3096cce7d176Sdrh     case TK_LT:
3097cce7d176Sdrh     case TK_LE:
3098cce7d176Sdrh     case TK_GT:
3099cce7d176Sdrh     case TK_GE:
3100cce7d176Sdrh     case TK_NE:
3101cce7d176Sdrh     case TK_EQ: {
3102c5499befSdrh       testcase( op==TK_LT );
3103c5499befSdrh       testcase( op==TK_LE );
3104c5499befSdrh       testcase( op==TK_GT );
3105c5499befSdrh       testcase( op==TK_GE );
3106c5499befSdrh       testcase( op==TK_EQ );
3107c5499befSdrh       testcase( op==TK_NE );
3108c5499befSdrh       testcase( jumpIfNull==0 );
3109da250ea5Sdrh       codeCompareOperands(pParse, pExpr->pLeft, &r1, &regFree1,
3110da250ea5Sdrh                                   pExpr->pRight, &r2, &regFree2);
311135573356Sdrh       codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op,
31122dcef11bSdrh                   r1, r2, dest, jumpIfNull);
3113c5499befSdrh       testcase( regFree1==0 );
3114c5499befSdrh       testcase( regFree2==0 );
3115cce7d176Sdrh       break;
3116cce7d176Sdrh     }
3117cce7d176Sdrh     case TK_ISNULL:
3118cce7d176Sdrh     case TK_NOTNULL: {
3119c5499befSdrh       testcase( op==TK_ISNULL );
3120c5499befSdrh       testcase( op==TK_NOTNULL );
31212dcef11bSdrh       r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, &regFree1);
31222dcef11bSdrh       sqlite3VdbeAddOp2(v, op, r1, dest);
3123c5499befSdrh       testcase( regFree1==0 );
3124cce7d176Sdrh       break;
3125cce7d176Sdrh     }
3126fef5208cSdrh     case TK_BETWEEN: {
31272dcef11bSdrh       /*    x BETWEEN y AND z
31280202b29eSdanielk1977       **
31292dcef11bSdrh       ** Is equivalent to
31302dcef11bSdrh       **
31312dcef11bSdrh       **    x>=y AND x<=z
31322dcef11bSdrh       **
31332dcef11bSdrh       ** Code it as such, taking care to do the common subexpression
31342dcef11bSdrh       ** elementation of x.
31350202b29eSdanielk1977       */
31362dcef11bSdrh       Expr exprAnd;
31372dcef11bSdrh       Expr compLeft;
31382dcef11bSdrh       Expr compRight;
31392dcef11bSdrh       Expr exprX;
3140be5c89acSdrh 
31416ab3a2ecSdanielk1977       assert( !ExprHasProperty(pExpr, EP_xIsSelect) );
31422dcef11bSdrh       exprX = *pExpr->pLeft;
31432dcef11bSdrh       exprAnd.op = TK_AND;
31442dcef11bSdrh       exprAnd.pLeft = &compLeft;
31452dcef11bSdrh       exprAnd.pRight = &compRight;
31462dcef11bSdrh       compLeft.op = TK_GE;
31472dcef11bSdrh       compLeft.pLeft = &exprX;
31486ab3a2ecSdanielk1977       compLeft.pRight = pExpr->x.pList->a[0].pExpr;
31492dcef11bSdrh       compRight.op = TK_LE;
31502dcef11bSdrh       compRight.pLeft = &exprX;
31516ab3a2ecSdanielk1977       compRight.pRight = pExpr->x.pList->a[1].pExpr;
31522dcef11bSdrh       exprX.iTable = sqlite3ExprCodeTemp(pParse, &exprX, &regFree1);
3153c5499befSdrh       testcase( regFree1==0 );
31542dcef11bSdrh       exprX.op = TK_REGISTER;
3155c5499befSdrh       testcase( jumpIfNull==0 );
31562dcef11bSdrh       sqlite3ExprIfFalse(pParse, &exprAnd, dest, jumpIfNull);
3157fef5208cSdrh       break;
3158fef5208cSdrh     }
3159cce7d176Sdrh     default: {
31602dcef11bSdrh       r1 = sqlite3ExprCodeTemp(pParse, pExpr, &regFree1);
31612dcef11bSdrh       sqlite3VdbeAddOp3(v, OP_IfNot, r1, dest, jumpIfNull!=0);
3162c5499befSdrh       testcase( regFree1==0 );
3163c5499befSdrh       testcase( jumpIfNull==0 );
3164cce7d176Sdrh       break;
3165cce7d176Sdrh     }
3166cce7d176Sdrh   }
31672dcef11bSdrh   sqlite3ReleaseTempReg(pParse, regFree1);
31682dcef11bSdrh   sqlite3ReleaseTempReg(pParse, regFree2);
3169cce7d176Sdrh }
31702282792aSdrh 
31712282792aSdrh /*
31722282792aSdrh ** Do a deep comparison of two expression trees.  Return TRUE (non-zero)
31732282792aSdrh ** if they are identical and return FALSE if they differ in any way.
3174d40aab0eSdrh **
3175d40aab0eSdrh ** Sometimes this routine will return FALSE even if the two expressions
3176d40aab0eSdrh ** really are equivalent.  If we cannot prove that the expressions are
3177d40aab0eSdrh ** identical, we return FALSE just to be safe.  So if this routine
3178d40aab0eSdrh ** returns false, then you do not really know for certain if the two
3179d40aab0eSdrh ** expressions are the same.  But if you get a TRUE return, then you
3180d40aab0eSdrh ** can be sure the expressions are the same.  In the places where
3181d40aab0eSdrh ** this routine is used, it does not hurt to get an extra FALSE - that
3182d40aab0eSdrh ** just might result in some slightly slower code.  But returning
3183d40aab0eSdrh ** an incorrect TRUE could lead to a malfunction.
31842282792aSdrh */
31854adee20fSdanielk1977 int sqlite3ExprCompare(Expr *pA, Expr *pB){
31862282792aSdrh   int i;
31874b202ae2Sdanielk1977   if( pA==0||pB==0 ){
31884b202ae2Sdanielk1977     return pB==pA;
31892282792aSdrh   }
319033e619fcSdrh   assert( !ExprHasAnyProperty(pA, EP_TokenOnly|EP_Reduced) );
319133e619fcSdrh   assert( !ExprHasAnyProperty(pB, EP_TokenOnly|EP_Reduced) );
31926ab3a2ecSdanielk1977   if( ExprHasProperty(pA, EP_xIsSelect) || ExprHasProperty(pB, EP_xIsSelect) ){
31936ab3a2ecSdanielk1977     return 0;
31946ab3a2ecSdanielk1977   }
3195fd357974Sdrh   if( (pA->flags & EP_Distinct)!=(pB->flags & EP_Distinct) ) return 0;
31966ab3a2ecSdanielk1977   if( pA->op!=pB->op ) return 0;
31974adee20fSdanielk1977   if( !sqlite3ExprCompare(pA->pLeft, pB->pLeft) ) return 0;
31984adee20fSdanielk1977   if( !sqlite3ExprCompare(pA->pRight, pB->pRight) ) return 0;
31996ab3a2ecSdanielk1977 
32006ab3a2ecSdanielk1977   if( pA->x.pList && pB->x.pList ){
32016ab3a2ecSdanielk1977     if( pA->x.pList->nExpr!=pB->x.pList->nExpr ) return 0;
32026ab3a2ecSdanielk1977     for(i=0; i<pA->x.pList->nExpr; i++){
32036ab3a2ecSdanielk1977       Expr *pExprA = pA->x.pList->a[i].pExpr;
32046ab3a2ecSdanielk1977       Expr *pExprB = pB->x.pList->a[i].pExpr;
32056ab3a2ecSdanielk1977       if( !sqlite3ExprCompare(pExprA, pExprB) ) return 0;
32066ab3a2ecSdanielk1977     }
32076ab3a2ecSdanielk1977   }else if( pA->x.pList || pB->x.pList ){
32082282792aSdrh     return 0;
32092282792aSdrh   }
32106ab3a2ecSdanielk1977 
32112f2c01e5Sdrh   if( pA->iTable!=pB->iTable || pA->iColumn!=pB->iColumn ) return 0;
321233e619fcSdrh   if( ExprHasProperty(pA, EP_IntValue) ){
321333e619fcSdrh     if( !ExprHasProperty(pB, EP_IntValue) || pA->u.iValue!=pB->u.iValue ){
321433e619fcSdrh       return 0;
321533e619fcSdrh     }
321633e619fcSdrh   }else if( pA->op!=TK_COLUMN && pA->u.zToken ){
321720bc393cSdrh     if( ExprHasProperty(pB, EP_IntValue) || NEVER(pB->u.zToken==0) ) return 0;
321833e619fcSdrh     if( sqlite3StrICmp(pA->u.zToken,pB->u.zToken)!=0 ){
32192646da7eSdrh       return 0;
32202646da7eSdrh     }
32212282792aSdrh   }
32222282792aSdrh   return 1;
32232282792aSdrh }
32242282792aSdrh 
322513449892Sdrh 
32262282792aSdrh /*
322713449892Sdrh ** Add a new element to the pAggInfo->aCol[] array.  Return the index of
322813449892Sdrh ** the new element.  Return a negative number if malloc fails.
32292282792aSdrh */
323017435752Sdrh static int addAggInfoColumn(sqlite3 *db, AggInfo *pInfo){
323113449892Sdrh   int i;
3232cf643729Sdrh   pInfo->aCol = sqlite3ArrayAllocate(
323317435752Sdrh        db,
3234cf643729Sdrh        pInfo->aCol,
3235cf643729Sdrh        sizeof(pInfo->aCol[0]),
3236cf643729Sdrh        3,
3237cf643729Sdrh        &pInfo->nColumn,
3238cf643729Sdrh        &pInfo->nColumnAlloc,
3239cf643729Sdrh        &i
3240cf643729Sdrh   );
324113449892Sdrh   return i;
32422282792aSdrh }
324313449892Sdrh 
324413449892Sdrh /*
324513449892Sdrh ** Add a new element to the pAggInfo->aFunc[] array.  Return the index of
324613449892Sdrh ** the new element.  Return a negative number if malloc fails.
324713449892Sdrh */
324817435752Sdrh static int addAggInfoFunc(sqlite3 *db, AggInfo *pInfo){
324913449892Sdrh   int i;
3250cf643729Sdrh   pInfo->aFunc = sqlite3ArrayAllocate(
325117435752Sdrh        db,
3252cf643729Sdrh        pInfo->aFunc,
3253cf643729Sdrh        sizeof(pInfo->aFunc[0]),
3254cf643729Sdrh        3,
3255cf643729Sdrh        &pInfo->nFunc,
3256cf643729Sdrh        &pInfo->nFuncAlloc,
3257cf643729Sdrh        &i
3258cf643729Sdrh   );
325913449892Sdrh   return i;
32602282792aSdrh }
32612282792aSdrh 
32622282792aSdrh /*
32637d10d5a6Sdrh ** This is the xExprCallback for a tree walker.  It is used to
32647d10d5a6Sdrh ** implement sqlite3ExprAnalyzeAggregates().  See sqlite3ExprAnalyzeAggregates
3265626a879aSdrh ** for additional information.
32662282792aSdrh */
32677d10d5a6Sdrh static int analyzeAggregate(Walker *pWalker, Expr *pExpr){
32682282792aSdrh   int i;
32697d10d5a6Sdrh   NameContext *pNC = pWalker->u.pNC;
3270a58fdfb1Sdanielk1977   Parse *pParse = pNC->pParse;
3271a58fdfb1Sdanielk1977   SrcList *pSrcList = pNC->pSrcList;
327213449892Sdrh   AggInfo *pAggInfo = pNC->pAggInfo;
327313449892Sdrh 
32742282792aSdrh   switch( pExpr->op ){
327589c69d00Sdrh     case TK_AGG_COLUMN:
3276967e8b73Sdrh     case TK_COLUMN: {
32778b213899Sdrh       testcase( pExpr->op==TK_AGG_COLUMN );
32788b213899Sdrh       testcase( pExpr->op==TK_COLUMN );
327913449892Sdrh       /* Check to see if the column is in one of the tables in the FROM
328013449892Sdrh       ** clause of the aggregate query */
328120bc393cSdrh       if( ALWAYS(pSrcList!=0) ){
328213449892Sdrh         struct SrcList_item *pItem = pSrcList->a;
328313449892Sdrh         for(i=0; i<pSrcList->nSrc; i++, pItem++){
328413449892Sdrh           struct AggInfo_col *pCol;
328533e619fcSdrh           assert( !ExprHasAnyProperty(pExpr, EP_TokenOnly|EP_Reduced) );
328613449892Sdrh           if( pExpr->iTable==pItem->iCursor ){
328713449892Sdrh             /* If we reach this point, it means that pExpr refers to a table
328813449892Sdrh             ** that is in the FROM clause of the aggregate query.
328913449892Sdrh             **
329013449892Sdrh             ** Make an entry for the column in pAggInfo->aCol[] if there
329113449892Sdrh             ** is not an entry there already.
329213449892Sdrh             */
32937f906d63Sdrh             int k;
329413449892Sdrh             pCol = pAggInfo->aCol;
32957f906d63Sdrh             for(k=0; k<pAggInfo->nColumn; k++, pCol++){
329613449892Sdrh               if( pCol->iTable==pExpr->iTable &&
329713449892Sdrh                   pCol->iColumn==pExpr->iColumn ){
32982282792aSdrh                 break;
32992282792aSdrh               }
33002282792aSdrh             }
33011e536953Sdanielk1977             if( (k>=pAggInfo->nColumn)
33021e536953Sdanielk1977              && (k = addAggInfoColumn(pParse->db, pAggInfo))>=0
33031e536953Sdanielk1977             ){
33047f906d63Sdrh               pCol = &pAggInfo->aCol[k];
33050817d0dfSdanielk1977               pCol->pTab = pExpr->pTab;
330613449892Sdrh               pCol->iTable = pExpr->iTable;
330713449892Sdrh               pCol->iColumn = pExpr->iColumn;
33080a07c107Sdrh               pCol->iMem = ++pParse->nMem;
330913449892Sdrh               pCol->iSorterColumn = -1;
33105774b806Sdrh               pCol->pExpr = pExpr;
331113449892Sdrh               if( pAggInfo->pGroupBy ){
331213449892Sdrh                 int j, n;
331313449892Sdrh                 ExprList *pGB = pAggInfo->pGroupBy;
331413449892Sdrh                 struct ExprList_item *pTerm = pGB->a;
331513449892Sdrh                 n = pGB->nExpr;
331613449892Sdrh                 for(j=0; j<n; j++, pTerm++){
331713449892Sdrh                   Expr *pE = pTerm->pExpr;
331813449892Sdrh                   if( pE->op==TK_COLUMN && pE->iTable==pExpr->iTable &&
331913449892Sdrh                       pE->iColumn==pExpr->iColumn ){
332013449892Sdrh                     pCol->iSorterColumn = j;
332113449892Sdrh                     break;
33222282792aSdrh                   }
332313449892Sdrh                 }
332413449892Sdrh               }
332513449892Sdrh               if( pCol->iSorterColumn<0 ){
332613449892Sdrh                 pCol->iSorterColumn = pAggInfo->nSortingColumn++;
332713449892Sdrh               }
332813449892Sdrh             }
332913449892Sdrh             /* There is now an entry for pExpr in pAggInfo->aCol[] (either
333013449892Sdrh             ** because it was there before or because we just created it).
333113449892Sdrh             ** Convert the pExpr to be a TK_AGG_COLUMN referring to that
333213449892Sdrh             ** pAggInfo->aCol[] entry.
333313449892Sdrh             */
333433e619fcSdrh             ExprSetIrreducible(pExpr);
333513449892Sdrh             pExpr->pAggInfo = pAggInfo;
333613449892Sdrh             pExpr->op = TK_AGG_COLUMN;
3337cf697396Sshane             pExpr->iAgg = (i16)k;
333813449892Sdrh             break;
333913449892Sdrh           } /* endif pExpr->iTable==pItem->iCursor */
334013449892Sdrh         } /* end loop over pSrcList */
3341a58fdfb1Sdanielk1977       }
33427d10d5a6Sdrh       return WRC_Prune;
33432282792aSdrh     }
33442282792aSdrh     case TK_AGG_FUNCTION: {
334513449892Sdrh       /* The pNC->nDepth==0 test causes aggregate functions in subqueries
334613449892Sdrh       ** to be ignored */
3347a58fdfb1Sdanielk1977       if( pNC->nDepth==0 ){
334813449892Sdrh         /* Check to see if pExpr is a duplicate of another aggregate
334913449892Sdrh         ** function that is already in the pAggInfo structure
335013449892Sdrh         */
335113449892Sdrh         struct AggInfo_func *pItem = pAggInfo->aFunc;
335213449892Sdrh         for(i=0; i<pAggInfo->nFunc; i++, pItem++){
335313449892Sdrh           if( sqlite3ExprCompare(pItem->pExpr, pExpr) ){
33542282792aSdrh             break;
33552282792aSdrh           }
33562282792aSdrh         }
335713449892Sdrh         if( i>=pAggInfo->nFunc ){
335813449892Sdrh           /* pExpr is original.  Make a new entry in pAggInfo->aFunc[]
335913449892Sdrh           */
336014db2665Sdanielk1977           u8 enc = ENC(pParse->db);
33611e536953Sdanielk1977           i = addAggInfoFunc(pParse->db, pAggInfo);
336213449892Sdrh           if( i>=0 ){
33636ab3a2ecSdanielk1977             assert( !ExprHasProperty(pExpr, EP_xIsSelect) );
336413449892Sdrh             pItem = &pAggInfo->aFunc[i];
336513449892Sdrh             pItem->pExpr = pExpr;
33660a07c107Sdrh             pItem->iMem = ++pParse->nMem;
336733e619fcSdrh             assert( !ExprHasProperty(pExpr, EP_IntValue) );
336813449892Sdrh             pItem->pFunc = sqlite3FindFunction(pParse->db,
336933e619fcSdrh                    pExpr->u.zToken, sqlite3Strlen30(pExpr->u.zToken),
33706ab3a2ecSdanielk1977                    pExpr->x.pList ? pExpr->x.pList->nExpr : 0, enc, 0);
3371fd357974Sdrh             if( pExpr->flags & EP_Distinct ){
3372fd357974Sdrh               pItem->iDistinct = pParse->nTab++;
3373fd357974Sdrh             }else{
3374fd357974Sdrh               pItem->iDistinct = -1;
3375fd357974Sdrh             }
33762282792aSdrh           }
337713449892Sdrh         }
337813449892Sdrh         /* Make pExpr point to the appropriate pAggInfo->aFunc[] entry
337913449892Sdrh         */
338033e619fcSdrh         assert( !ExprHasAnyProperty(pExpr, EP_TokenOnly|EP_Reduced) );
338133e619fcSdrh         ExprSetIrreducible(pExpr);
3382cf697396Sshane         pExpr->iAgg = (i16)i;
338313449892Sdrh         pExpr->pAggInfo = pAggInfo;
33847d10d5a6Sdrh         return WRC_Prune;
33852282792aSdrh       }
33862282792aSdrh     }
3387a58fdfb1Sdanielk1977   }
33887d10d5a6Sdrh   return WRC_Continue;
33897d10d5a6Sdrh }
33907d10d5a6Sdrh static int analyzeAggregatesInSelect(Walker *pWalker, Select *pSelect){
33917d10d5a6Sdrh   NameContext *pNC = pWalker->u.pNC;
33927d10d5a6Sdrh   if( pNC->nDepth==0 ){
3393a58fdfb1Sdanielk1977     pNC->nDepth++;
33947d10d5a6Sdrh     sqlite3WalkSelect(pWalker, pSelect);
3395a58fdfb1Sdanielk1977     pNC->nDepth--;
33967d10d5a6Sdrh     return WRC_Prune;
33977d10d5a6Sdrh   }else{
33987d10d5a6Sdrh     return WRC_Continue;
3399a58fdfb1Sdanielk1977   }
34002282792aSdrh }
3401626a879aSdrh 
3402626a879aSdrh /*
3403626a879aSdrh ** Analyze the given expression looking for aggregate functions and
3404626a879aSdrh ** for variables that need to be added to the pParse->aAgg[] array.
3405626a879aSdrh ** Make additional entries to the pParse->aAgg[] array as necessary.
3406626a879aSdrh **
3407626a879aSdrh ** This routine should only be called after the expression has been
34087d10d5a6Sdrh ** analyzed by sqlite3ResolveExprNames().
3409626a879aSdrh */
3410d2b3e23bSdrh void sqlite3ExprAnalyzeAggregates(NameContext *pNC, Expr *pExpr){
34117d10d5a6Sdrh   Walker w;
34127d10d5a6Sdrh   w.xExprCallback = analyzeAggregate;
34137d10d5a6Sdrh   w.xSelectCallback = analyzeAggregatesInSelect;
34147d10d5a6Sdrh   w.u.pNC = pNC;
341520bc393cSdrh   assert( pNC->pSrcList!=0 );
34167d10d5a6Sdrh   sqlite3WalkExpr(&w, pExpr);
34172282792aSdrh }
34185d9a4af9Sdrh 
34195d9a4af9Sdrh /*
34205d9a4af9Sdrh ** Call sqlite3ExprAnalyzeAggregates() for every expression in an
34215d9a4af9Sdrh ** expression list.  Return the number of errors.
34225d9a4af9Sdrh **
34235d9a4af9Sdrh ** If an error is found, the analysis is cut short.
34245d9a4af9Sdrh */
3425d2b3e23bSdrh void sqlite3ExprAnalyzeAggList(NameContext *pNC, ExprList *pList){
34265d9a4af9Sdrh   struct ExprList_item *pItem;
34275d9a4af9Sdrh   int i;
34285d9a4af9Sdrh   if( pList ){
3429d2b3e23bSdrh     for(pItem=pList->a, i=0; i<pList->nExpr; i++, pItem++){
3430d2b3e23bSdrh       sqlite3ExprAnalyzeAggregates(pNC, pItem->pExpr);
34315d9a4af9Sdrh     }
34325d9a4af9Sdrh   }
34335d9a4af9Sdrh }
3434892d3179Sdrh 
3435892d3179Sdrh /*
3436ceea3321Sdrh ** Allocate a single new register for use to hold some intermediate result.
3437892d3179Sdrh */
3438892d3179Sdrh int sqlite3GetTempReg(Parse *pParse){
3439e55cbd72Sdrh   if( pParse->nTempReg==0 ){
3440892d3179Sdrh     return ++pParse->nMem;
3441892d3179Sdrh   }
34422f425f6bSdanielk1977   return pParse->aTempReg[--pParse->nTempReg];
3443892d3179Sdrh }
3444ceea3321Sdrh 
3445ceea3321Sdrh /*
3446ceea3321Sdrh ** Deallocate a register, making available for reuse for some other
3447ceea3321Sdrh ** purpose.
3448ceea3321Sdrh **
3449ceea3321Sdrh ** If a register is currently being used by the column cache, then
3450ceea3321Sdrh ** the dallocation is deferred until the column cache line that uses
3451ceea3321Sdrh ** the register becomes stale.
3452ceea3321Sdrh */
3453892d3179Sdrh void sqlite3ReleaseTempReg(Parse *pParse, int iReg){
34542dcef11bSdrh   if( iReg && pParse->nTempReg<ArraySize(pParse->aTempReg) ){
3455ceea3321Sdrh     int i;
3456ceea3321Sdrh     struct yColCache *p;
3457ceea3321Sdrh     for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){
3458ceea3321Sdrh       if( p->iReg==iReg ){
3459ceea3321Sdrh         p->tempReg = 1;
3460ceea3321Sdrh         return;
3461ceea3321Sdrh       }
3462ceea3321Sdrh     }
3463892d3179Sdrh     pParse->aTempReg[pParse->nTempReg++] = iReg;
3464892d3179Sdrh   }
3465892d3179Sdrh }
3466892d3179Sdrh 
3467892d3179Sdrh /*
3468892d3179Sdrh ** Allocate or deallocate a block of nReg consecutive registers
3469892d3179Sdrh */
3470892d3179Sdrh int sqlite3GetTempRange(Parse *pParse, int nReg){
3471e55cbd72Sdrh   int i, n;
3472892d3179Sdrh   i = pParse->iRangeReg;
3473e55cbd72Sdrh   n = pParse->nRangeReg;
3474e55cbd72Sdrh   if( nReg<=n && !usedAsColumnCache(pParse, i, i+n-1) ){
3475892d3179Sdrh     pParse->iRangeReg += nReg;
3476892d3179Sdrh     pParse->nRangeReg -= nReg;
3477892d3179Sdrh   }else{
3478892d3179Sdrh     i = pParse->nMem+1;
3479892d3179Sdrh     pParse->nMem += nReg;
3480892d3179Sdrh   }
3481892d3179Sdrh   return i;
3482892d3179Sdrh }
3483892d3179Sdrh void sqlite3ReleaseTempRange(Parse *pParse, int iReg, int nReg){
3484892d3179Sdrh   if( nReg>pParse->nRangeReg ){
3485892d3179Sdrh     pParse->nRangeReg = nReg;
3486892d3179Sdrh     pParse->iRangeReg = iReg;
3487892d3179Sdrh   }
3488892d3179Sdrh }
3489