xref: /sqlite-3.40.0/src/expr.c (revision d654be80)
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 **
15*d654be80Sdrh ** $Id: expr.c,v 1.229 2005/09/20 17:42:23 drh Exp $
16cce7d176Sdrh */
17cce7d176Sdrh #include "sqliteInt.h"
1804738cb9Sdrh #include <ctype.h>
19a2e00042Sdrh 
20e014a838Sdanielk1977 /*
21e014a838Sdanielk1977 ** Return the 'affinity' of the expression pExpr if any.
22e014a838Sdanielk1977 **
23e014a838Sdanielk1977 ** If pExpr is a column, a reference to a column via an 'AS' alias,
24e014a838Sdanielk1977 ** or a sub-select with a column as the return value, then the
25e014a838Sdanielk1977 ** affinity of that column is returned. Otherwise, 0x00 is returned,
26e014a838Sdanielk1977 ** indicating no affinity for the expression.
27e014a838Sdanielk1977 **
28e014a838Sdanielk1977 ** i.e. the WHERE clause expresssions in the following statements all
29e014a838Sdanielk1977 ** have an affinity:
30e014a838Sdanielk1977 **
31e014a838Sdanielk1977 ** CREATE TABLE t1(a);
32e014a838Sdanielk1977 ** SELECT * FROM t1 WHERE a;
33e014a838Sdanielk1977 ** SELECT a AS b FROM t1 WHERE b;
34e014a838Sdanielk1977 ** SELECT * FROM t1 WHERE (select a from t1);
35e014a838Sdanielk1977 */
36bf3b721fSdanielk1977 char sqlite3ExprAffinity(Expr *pExpr){
37487e262fSdrh   int op = pExpr->op;
38487e262fSdrh   if( op==TK_AS ){
39bf3b721fSdanielk1977     return sqlite3ExprAffinity(pExpr->pLeft);
40a37cdde0Sdanielk1977   }
41487e262fSdrh   if( op==TK_SELECT ){
42bf3b721fSdanielk1977     return sqlite3ExprAffinity(pExpr->pSelect->pEList->a[0].pExpr);
43a37cdde0Sdanielk1977   }
44487e262fSdrh #ifndef SQLITE_OMIT_CAST
45487e262fSdrh   if( op==TK_CAST ){
46487e262fSdrh     return sqlite3AffinityType(&pExpr->token);
47487e262fSdrh   }
48487e262fSdrh #endif
49a37cdde0Sdanielk1977   return pExpr->affinity;
50a37cdde0Sdanielk1977 }
51a37cdde0Sdanielk1977 
5253db1458Sdrh /*
530202b29eSdanielk1977 ** Return the default collation sequence for the expression pExpr. If
540202b29eSdanielk1977 ** there is no default collation type, return 0.
550202b29eSdanielk1977 */
567cedc8d4Sdanielk1977 CollSeq *sqlite3ExprCollSeq(Parse *pParse, Expr *pExpr){
577cedc8d4Sdanielk1977   CollSeq *pColl = 0;
580202b29eSdanielk1977   if( pExpr ){
597cedc8d4Sdanielk1977     pColl = pExpr->pColl;
60487e262fSdrh     if( (pExpr->op==TK_AS || pExpr->op==TK_CAST) && !pColl ){
617cedc8d4Sdanielk1977       return sqlite3ExprCollSeq(pParse, pExpr->pLeft);
620202b29eSdanielk1977     }
630202b29eSdanielk1977   }
647cedc8d4Sdanielk1977   if( sqlite3CheckCollSeq(pParse, pColl) ){
657cedc8d4Sdanielk1977     pColl = 0;
667cedc8d4Sdanielk1977   }
677cedc8d4Sdanielk1977   return pColl;
680202b29eSdanielk1977 }
690202b29eSdanielk1977 
700202b29eSdanielk1977 /*
71626a879aSdrh ** pExpr is an operand of a comparison operator.  aff2 is the
72626a879aSdrh ** type affinity of the other operand.  This routine returns the
7353db1458Sdrh ** type affinity that should be used for the comparison operator.
7453db1458Sdrh */
75e014a838Sdanielk1977 char sqlite3CompareAffinity(Expr *pExpr, char aff2){
76bf3b721fSdanielk1977   char aff1 = sqlite3ExprAffinity(pExpr);
77e014a838Sdanielk1977   if( aff1 && aff2 ){
78e014a838Sdanielk1977     /* Both sides of the comparison are columns. If one has numeric or
79e014a838Sdanielk1977     ** integer affinity, use that. Otherwise use no affinity.
80e014a838Sdanielk1977     */
81e014a838Sdanielk1977     if( aff1==SQLITE_AFF_INTEGER || aff2==SQLITE_AFF_INTEGER ){
82e014a838Sdanielk1977       return SQLITE_AFF_INTEGER;
83e014a838Sdanielk1977     }else if( aff1==SQLITE_AFF_NUMERIC || aff2==SQLITE_AFF_NUMERIC ){
84e014a838Sdanielk1977       return SQLITE_AFF_NUMERIC;
85e014a838Sdanielk1977     }else{
86e014a838Sdanielk1977       return SQLITE_AFF_NONE;
87e014a838Sdanielk1977     }
88e014a838Sdanielk1977   }else if( !aff1 && !aff2 ){
895f6a87b3Sdrh     /* Neither side of the comparison is a column.  Compare the
905f6a87b3Sdrh     ** results directly.
91e014a838Sdanielk1977     */
925f6a87b3Sdrh     /* return SQLITE_AFF_NUMERIC;  // Ticket #805 */
935f6a87b3Sdrh     return SQLITE_AFF_NONE;
94e014a838Sdanielk1977   }else{
95e014a838Sdanielk1977     /* One side is a column, the other is not. Use the columns affinity. */
96fe05af87Sdrh     assert( aff1==0 || aff2==0 );
97e014a838Sdanielk1977     return (aff1 + aff2);
98e014a838Sdanielk1977   }
99e014a838Sdanielk1977 }
100e014a838Sdanielk1977 
10153db1458Sdrh /*
10253db1458Sdrh ** pExpr is a comparison operator.  Return the type affinity that should
10353db1458Sdrh ** be applied to both operands prior to doing the comparison.
10453db1458Sdrh */
105e014a838Sdanielk1977 static char comparisonAffinity(Expr *pExpr){
106e014a838Sdanielk1977   char aff;
107e014a838Sdanielk1977   assert( pExpr->op==TK_EQ || pExpr->op==TK_IN || pExpr->op==TK_LT ||
108e014a838Sdanielk1977           pExpr->op==TK_GT || pExpr->op==TK_GE || pExpr->op==TK_LE ||
109e014a838Sdanielk1977           pExpr->op==TK_NE );
110e014a838Sdanielk1977   assert( pExpr->pLeft );
111bf3b721fSdanielk1977   aff = sqlite3ExprAffinity(pExpr->pLeft);
112e014a838Sdanielk1977   if( pExpr->pRight ){
113e014a838Sdanielk1977     aff = sqlite3CompareAffinity(pExpr->pRight, aff);
114e014a838Sdanielk1977   }
115e014a838Sdanielk1977   else if( pExpr->pSelect ){
116e014a838Sdanielk1977     aff = sqlite3CompareAffinity(pExpr->pSelect->pEList->a[0].pExpr, aff);
117e014a838Sdanielk1977   }
118e014a838Sdanielk1977   else if( !aff ){
119e014a838Sdanielk1977     aff = SQLITE_AFF_NUMERIC;
120e014a838Sdanielk1977   }
121e014a838Sdanielk1977   return aff;
122e014a838Sdanielk1977 }
123e014a838Sdanielk1977 
124e014a838Sdanielk1977 /*
125e014a838Sdanielk1977 ** pExpr is a comparison expression, eg. '=', '<', IN(...) etc.
126e014a838Sdanielk1977 ** idx_affinity is the affinity of an indexed column. Return true
127e014a838Sdanielk1977 ** if the index with affinity idx_affinity may be used to implement
128e014a838Sdanielk1977 ** the comparison in pExpr.
129e014a838Sdanielk1977 */
130e014a838Sdanielk1977 int sqlite3IndexAffinityOk(Expr *pExpr, char idx_affinity){
131e014a838Sdanielk1977   char aff = comparisonAffinity(pExpr);
132e014a838Sdanielk1977   return
133e014a838Sdanielk1977     (aff==SQLITE_AFF_NONE) ||
134e014a838Sdanielk1977     (aff==SQLITE_AFF_NUMERIC && idx_affinity==SQLITE_AFF_INTEGER) ||
135e014a838Sdanielk1977     (aff==SQLITE_AFF_INTEGER && idx_affinity==SQLITE_AFF_NUMERIC) ||
136e014a838Sdanielk1977     (aff==idx_affinity);
137e014a838Sdanielk1977 }
138e014a838Sdanielk1977 
139a37cdde0Sdanielk1977 /*
140a37cdde0Sdanielk1977 ** Return the P1 value that should be used for a binary comparison
141a37cdde0Sdanielk1977 ** opcode (OP_Eq, OP_Ge etc.) used to compare pExpr1 and pExpr2.
142a37cdde0Sdanielk1977 ** If jumpIfNull is true, then set the low byte of the returned
143a37cdde0Sdanielk1977 ** P1 value to tell the opcode to jump if either expression
144a37cdde0Sdanielk1977 ** evaluates to NULL.
145a37cdde0Sdanielk1977 */
146e014a838Sdanielk1977 static int binaryCompareP1(Expr *pExpr1, Expr *pExpr2, int jumpIfNull){
147bf3b721fSdanielk1977   char aff = sqlite3ExprAffinity(pExpr2);
148f0863fe5Sdrh   return ((int)sqlite3CompareAffinity(pExpr1, aff))+(jumpIfNull?0x100:0);
149a37cdde0Sdanielk1977 }
150a37cdde0Sdanielk1977 
151a2e00042Sdrh /*
1520202b29eSdanielk1977 ** Return a pointer to the collation sequence that should be used by
1530202b29eSdanielk1977 ** a binary comparison operator comparing pLeft and pRight.
1540202b29eSdanielk1977 **
1550202b29eSdanielk1977 ** If the left hand expression has a collating sequence type, then it is
1560202b29eSdanielk1977 ** used. Otherwise the collation sequence for the right hand expression
1570202b29eSdanielk1977 ** is used, or the default (BINARY) if neither expression has a collating
1580202b29eSdanielk1977 ** type.
1590202b29eSdanielk1977 */
1607cedc8d4Sdanielk1977 static CollSeq* binaryCompareCollSeq(Parse *pParse, Expr *pLeft, Expr *pRight){
1617cedc8d4Sdanielk1977   CollSeq *pColl = sqlite3ExprCollSeq(pParse, pLeft);
1620202b29eSdanielk1977   if( !pColl ){
1637cedc8d4Sdanielk1977     pColl = sqlite3ExprCollSeq(pParse, pRight);
1640202b29eSdanielk1977   }
1650202b29eSdanielk1977   return pColl;
1660202b29eSdanielk1977 }
1670202b29eSdanielk1977 
1680202b29eSdanielk1977 /*
169be5c89acSdrh ** Generate code for a comparison operator.
170be5c89acSdrh */
171be5c89acSdrh static int codeCompare(
172be5c89acSdrh   Parse *pParse,    /* The parsing (and code generating) context */
173be5c89acSdrh   Expr *pLeft,      /* The left operand */
174be5c89acSdrh   Expr *pRight,     /* The right operand */
175be5c89acSdrh   int opcode,       /* The comparison opcode */
176be5c89acSdrh   int dest,         /* Jump here if true.  */
177be5c89acSdrh   int jumpIfNull    /* If true, jump if either operand is NULL */
178be5c89acSdrh ){
179be5c89acSdrh   int p1 = binaryCompareP1(pLeft, pRight, jumpIfNull);
180be5c89acSdrh   CollSeq *p3 = binaryCompareCollSeq(pParse, pLeft, pRight);
181be5c89acSdrh   return sqlite3VdbeOp3(pParse->pVdbe, opcode, p1, dest, (void*)p3, P3_COLLSEQ);
182be5c89acSdrh }
183be5c89acSdrh 
184be5c89acSdrh /*
185a76b5dfcSdrh ** Construct a new expression node and return a pointer to it.  Memory
186a76b5dfcSdrh ** for this node is obtained from sqliteMalloc().  The calling function
187a76b5dfcSdrh ** is responsible for making sure the node eventually gets freed.
188a76b5dfcSdrh */
189e4e72072Sdrh Expr *sqlite3Expr(int op, Expr *pLeft, Expr *pRight, const Token *pToken){
190a76b5dfcSdrh   Expr *pNew;
191a76b5dfcSdrh   pNew = sqliteMalloc( sizeof(Expr) );
192a76b5dfcSdrh   if( pNew==0 ){
193d5d56523Sdanielk1977     /* When malloc fails, delete pLeft and pRight. Expressions passed to
194d5d56523Sdanielk1977     ** this function must always be allocated with sqlite3Expr() for this
195d5d56523Sdanielk1977     ** reason.
196d5d56523Sdanielk1977     */
197d5d56523Sdanielk1977     sqlite3ExprDelete(pLeft);
198d5d56523Sdanielk1977     sqlite3ExprDelete(pRight);
199a76b5dfcSdrh     return 0;
200a76b5dfcSdrh   }
201a76b5dfcSdrh   pNew->op = op;
202a76b5dfcSdrh   pNew->pLeft = pLeft;
203a76b5dfcSdrh   pNew->pRight = pRight;
204a58fdfb1Sdanielk1977   pNew->iAgg = -1;
205a76b5dfcSdrh   if( pToken ){
2064b59ab5eSdrh     assert( pToken->dyn==0 );
207145716b3Sdrh     pNew->span = pNew->token = *pToken;
208145716b3Sdrh   }else if( pLeft && pRight ){
2094adee20fSdanielk1977     sqlite3ExprSpan(pNew, &pLeft->span, &pRight->span);
210a76b5dfcSdrh   }
211a76b5dfcSdrh   return pNew;
212a76b5dfcSdrh }
213a76b5dfcSdrh 
214a76b5dfcSdrh /*
2154e0cff60Sdrh ** When doing a nested parse, you can include terms in an expression
2164e0cff60Sdrh ** that look like this:   #0 #1 #2 ...  These terms refer to elements
217288d37f1Sdrh ** on the stack.  "#0" means the top of the stack.
218288d37f1Sdrh ** "#1" means the next down on the stack.  And so forth.
2194e0cff60Sdrh **
2204e0cff60Sdrh ** This routine is called by the parser to deal with on of those terms.
2214e0cff60Sdrh ** It immediately generates code to store the value in a memory location.
2224e0cff60Sdrh ** The returns an expression that will code to extract the value from
2234e0cff60Sdrh ** that memory location as needed.
2244e0cff60Sdrh */
2254e0cff60Sdrh Expr *sqlite3RegisterExpr(Parse *pParse, Token *pToken){
2264e0cff60Sdrh   Vdbe *v = pParse->pVdbe;
2274e0cff60Sdrh   Expr *p;
2284e0cff60Sdrh   int depth;
2294e0cff60Sdrh   if( pParse->nested==0 ){
2304e0cff60Sdrh     sqlite3ErrorMsg(pParse, "near \"%T\": syntax error", pToken);
2314e0cff60Sdrh     return 0;
2324e0cff60Sdrh   }
233bb7ac00bSdrh   if( v==0 ) return 0;
2344e0cff60Sdrh   p = sqlite3Expr(TK_REGISTER, 0, 0, pToken);
23573c42a13Sdrh   if( p==0 ){
23673c42a13Sdrh     return 0;  /* Malloc failed */
23773c42a13Sdrh   }
2384e0cff60Sdrh   depth = atoi(&pToken->z[1]);
2394e0cff60Sdrh   p->iTable = pParse->nMem++;
2404e0cff60Sdrh   sqlite3VdbeAddOp(v, OP_Dup, depth, 0);
2414e0cff60Sdrh   sqlite3VdbeAddOp(v, OP_MemStore, p->iTable, 1);
2424e0cff60Sdrh   return p;
2434e0cff60Sdrh }
2444e0cff60Sdrh 
2454e0cff60Sdrh /*
24691bb0eedSdrh ** Join two expressions using an AND operator.  If either expression is
24791bb0eedSdrh ** NULL, then just return the other expression.
24891bb0eedSdrh */
24991bb0eedSdrh Expr *sqlite3ExprAnd(Expr *pLeft, Expr *pRight){
25091bb0eedSdrh   if( pLeft==0 ){
25191bb0eedSdrh     return pRight;
25291bb0eedSdrh   }else if( pRight==0 ){
25391bb0eedSdrh     return pLeft;
25491bb0eedSdrh   }else{
25591bb0eedSdrh     return sqlite3Expr(TK_AND, pLeft, pRight, 0);
25691bb0eedSdrh   }
25791bb0eedSdrh }
25891bb0eedSdrh 
25991bb0eedSdrh /*
2606977fea8Sdrh ** Set the Expr.span field of the given expression to span all
261a76b5dfcSdrh ** text between the two given tokens.
262a76b5dfcSdrh */
2634adee20fSdanielk1977 void sqlite3ExprSpan(Expr *pExpr, Token *pLeft, Token *pRight){
2644efc4754Sdrh   assert( pRight!=0 );
2654efc4754Sdrh   assert( pLeft!=0 );
26671c697efSdrh   if( !sqlite3_malloc_failed && pRight->z && pLeft->z ){
267ad6d9460Sdrh     assert( pLeft->dyn==0 || pLeft->z[pLeft->n]==0 );
268145716b3Sdrh     if( pLeft->dyn==0 && pRight->dyn==0 ){
2696977fea8Sdrh       pExpr->span.z = pLeft->z;
27097903fefSdrh       pExpr->span.n = pRight->n + (pRight->z - pLeft->z);
2714b59ab5eSdrh     }else{
2726977fea8Sdrh       pExpr->span.z = 0;
2734b59ab5eSdrh     }
274a76b5dfcSdrh   }
275a76b5dfcSdrh }
276a76b5dfcSdrh 
277a76b5dfcSdrh /*
278a76b5dfcSdrh ** Construct a new expression node for a function with multiple
279a76b5dfcSdrh ** arguments.
280a76b5dfcSdrh */
2814adee20fSdanielk1977 Expr *sqlite3ExprFunction(ExprList *pList, Token *pToken){
282a76b5dfcSdrh   Expr *pNew;
283a76b5dfcSdrh   pNew = sqliteMalloc( sizeof(Expr) );
284a76b5dfcSdrh   if( pNew==0 ){
285d5d56523Sdanielk1977     sqlite3ExprListDelete(pList); /* Avoid leaking memory when malloc fails */
286a76b5dfcSdrh     return 0;
287a76b5dfcSdrh   }
288a76b5dfcSdrh   pNew->op = TK_FUNCTION;
289a76b5dfcSdrh   pNew->pList = pList;
290a76b5dfcSdrh   if( pToken ){
2914b59ab5eSdrh     assert( pToken->dyn==0 );
292a76b5dfcSdrh     pNew->token = *pToken;
293a76b5dfcSdrh   }else{
294a76b5dfcSdrh     pNew->token.z = 0;
295a76b5dfcSdrh   }
2966977fea8Sdrh   pNew->span = pNew->token;
297a76b5dfcSdrh   return pNew;
298a76b5dfcSdrh }
299a76b5dfcSdrh 
300a76b5dfcSdrh /*
301fa6bc000Sdrh ** Assign a variable number to an expression that encodes a wildcard
302fa6bc000Sdrh ** in the original SQL statement.
303fa6bc000Sdrh **
304fa6bc000Sdrh ** Wildcards consisting of a single "?" are assigned the next sequential
305fa6bc000Sdrh ** variable number.
306fa6bc000Sdrh **
307fa6bc000Sdrh ** Wildcards of the form "?nnn" are assigned the number "nnn".  We make
308fa6bc000Sdrh ** sure "nnn" is not too be to avoid a denial of service attack when
309fa6bc000Sdrh ** the SQL statement comes from an external source.
310fa6bc000Sdrh **
311fa6bc000Sdrh ** Wildcards of the form ":aaa" or "$aaa" are assigned the same number
312fa6bc000Sdrh ** as the previous instance of the same wildcard.  Or if this is the first
313fa6bc000Sdrh ** instance of the wildcard, the next sequenial variable number is
314fa6bc000Sdrh ** assigned.
315fa6bc000Sdrh */
316fa6bc000Sdrh void sqlite3ExprAssignVarNumber(Parse *pParse, Expr *pExpr){
317fa6bc000Sdrh   Token *pToken;
318fa6bc000Sdrh   if( pExpr==0 ) return;
319fa6bc000Sdrh   pToken = &pExpr->token;
320fa6bc000Sdrh   assert( pToken->n>=1 );
321fa6bc000Sdrh   assert( pToken->z!=0 );
322fa6bc000Sdrh   assert( pToken->z[0]!=0 );
323fa6bc000Sdrh   if( pToken->n==1 ){
324fa6bc000Sdrh     /* Wildcard of the form "?".  Assign the next variable number */
325fa6bc000Sdrh     pExpr->iTable = ++pParse->nVar;
326fa6bc000Sdrh   }else if( pToken->z[0]=='?' ){
327fa6bc000Sdrh     /* Wildcard of the form "?nnn".  Convert "nnn" to an integer and
328fa6bc000Sdrh     ** use it as the variable number */
329fa6bc000Sdrh     int i;
330fa6bc000Sdrh     pExpr->iTable = i = atoi(&pToken->z[1]);
331fa6bc000Sdrh     if( i<1 || i>SQLITE_MAX_VARIABLE_NUMBER ){
332fa6bc000Sdrh       sqlite3ErrorMsg(pParse, "variable number must be between ?1 and ?%d",
333fa6bc000Sdrh           SQLITE_MAX_VARIABLE_NUMBER);
334fa6bc000Sdrh     }
335fa6bc000Sdrh     if( i>pParse->nVar ){
336fa6bc000Sdrh       pParse->nVar = i;
337fa6bc000Sdrh     }
338fa6bc000Sdrh   }else{
339fa6bc000Sdrh     /* Wildcards of the form ":aaa" or "$aaa".  Reuse the same variable
340fa6bc000Sdrh     ** number as the prior appearance of the same name, or if the name
341fa6bc000Sdrh     ** has never appeared before, reuse the same variable number
342fa6bc000Sdrh     */
343fa6bc000Sdrh     int i, n;
344fa6bc000Sdrh     n = pToken->n;
345fa6bc000Sdrh     for(i=0; i<pParse->nVarExpr; i++){
346fa6bc000Sdrh       Expr *pE;
347fa6bc000Sdrh       if( (pE = pParse->apVarExpr[i])!=0
348fa6bc000Sdrh           && pE->token.n==n
349fa6bc000Sdrh           && memcmp(pE->token.z, pToken->z, n)==0 ){
350fa6bc000Sdrh         pExpr->iTable = pE->iTable;
351fa6bc000Sdrh         break;
352fa6bc000Sdrh       }
353fa6bc000Sdrh     }
354fa6bc000Sdrh     if( i>=pParse->nVarExpr ){
355fa6bc000Sdrh       pExpr->iTable = ++pParse->nVar;
356fa6bc000Sdrh       if( pParse->nVarExpr>=pParse->nVarExprAlloc-1 ){
357fa6bc000Sdrh         pParse->nVarExprAlloc += pParse->nVarExprAlloc + 10;
35853f733c7Sdrh         sqlite3ReallocOrFree((void**)&pParse->apVarExpr,
359fa6bc000Sdrh                        pParse->nVarExprAlloc*sizeof(pParse->apVarExpr[0]) );
360fa6bc000Sdrh       }
361fa6bc000Sdrh       if( !sqlite3_malloc_failed ){
362fa6bc000Sdrh         assert( pParse->apVarExpr!=0 );
363fa6bc000Sdrh         pParse->apVarExpr[pParse->nVarExpr++] = pExpr;
364fa6bc000Sdrh       }
365fa6bc000Sdrh     }
366fa6bc000Sdrh   }
367fa6bc000Sdrh }
368fa6bc000Sdrh 
369fa6bc000Sdrh /*
370a2e00042Sdrh ** Recursively delete an expression tree.
371a2e00042Sdrh */
3724adee20fSdanielk1977 void sqlite3ExprDelete(Expr *p){
373a2e00042Sdrh   if( p==0 ) return;
3744efc4754Sdrh   if( p->span.dyn ) sqliteFree((char*)p->span.z);
3754efc4754Sdrh   if( p->token.dyn ) sqliteFree((char*)p->token.z);
3764adee20fSdanielk1977   sqlite3ExprDelete(p->pLeft);
3774adee20fSdanielk1977   sqlite3ExprDelete(p->pRight);
3784adee20fSdanielk1977   sqlite3ExprListDelete(p->pList);
3794adee20fSdanielk1977   sqlite3SelectDelete(p->pSelect);
380a2e00042Sdrh   sqliteFree(p);
381a2e00042Sdrh }
382a2e00042Sdrh 
383d2687b77Sdrh /*
384d2687b77Sdrh ** The Expr.token field might be a string literal that is quoted.
385d2687b77Sdrh ** If so, remove the quotation marks.
386d2687b77Sdrh */
387d2687b77Sdrh void sqlite3DequoteExpr(Expr *p){
388d2687b77Sdrh   if( ExprHasAnyProperty(p, EP_Dequoted) ){
389d2687b77Sdrh     return;
390d2687b77Sdrh   }
391d2687b77Sdrh   ExprSetProperty(p, EP_Dequoted);
392d2687b77Sdrh   if( p->token.dyn==0 ){
393d2687b77Sdrh     sqlite3TokenCopy(&p->token, &p->token);
394d2687b77Sdrh   }
395d2687b77Sdrh   sqlite3Dequote((char*)p->token.z);
396d2687b77Sdrh }
397d2687b77Sdrh 
398a76b5dfcSdrh 
399a76b5dfcSdrh /*
400ff78bd2fSdrh ** The following group of routines make deep copies of expressions,
401ff78bd2fSdrh ** expression lists, ID lists, and select statements.  The copies can
402ff78bd2fSdrh ** be deleted (by being passed to their respective ...Delete() routines)
403ff78bd2fSdrh ** without effecting the originals.
404ff78bd2fSdrh **
4054adee20fSdanielk1977 ** The expression list, ID, and source lists return by sqlite3ExprListDup(),
4064adee20fSdanielk1977 ** sqlite3IdListDup(), and sqlite3SrcListDup() can not be further expanded
407ad3cab52Sdrh ** by subsequent calls to sqlite*ListAppend() routines.
408ff78bd2fSdrh **
409ad3cab52Sdrh ** Any tables that the SrcList might point to are not duplicated.
410ff78bd2fSdrh */
4114adee20fSdanielk1977 Expr *sqlite3ExprDup(Expr *p){
412ff78bd2fSdrh   Expr *pNew;
413ff78bd2fSdrh   if( p==0 ) return 0;
414fcb78a49Sdrh   pNew = sqliteMallocRaw( sizeof(*p) );
415ff78bd2fSdrh   if( pNew==0 ) return 0;
4163b167c75Sdrh   memcpy(pNew, p, sizeof(*pNew));
4176977fea8Sdrh   if( p->token.z!=0 ){
418b9ecf6faSdrh     pNew->token.z = sqliteStrNDup(p->token.z, p->token.n);
4194b59ab5eSdrh     pNew->token.dyn = 1;
4204b59ab5eSdrh   }else{
4214efc4754Sdrh     assert( pNew->token.z==0 );
4224b59ab5eSdrh   }
4236977fea8Sdrh   pNew->span.z = 0;
4244adee20fSdanielk1977   pNew->pLeft = sqlite3ExprDup(p->pLeft);
4254adee20fSdanielk1977   pNew->pRight = sqlite3ExprDup(p->pRight);
4264adee20fSdanielk1977   pNew->pList = sqlite3ExprListDup(p->pList);
4274adee20fSdanielk1977   pNew->pSelect = sqlite3SelectDup(p->pSelect);
428aee18ef8Sdanielk1977   pNew->pTab = p->pTab;
429ff78bd2fSdrh   return pNew;
430ff78bd2fSdrh }
4314adee20fSdanielk1977 void sqlite3TokenCopy(Token *pTo, Token *pFrom){
4324b59ab5eSdrh   if( pTo->dyn ) sqliteFree((char*)pTo->z);
4334b59ab5eSdrh   if( pFrom->z ){
4344b59ab5eSdrh     pTo->n = pFrom->n;
4354b59ab5eSdrh     pTo->z = sqliteStrNDup(pFrom->z, pFrom->n);
4364b59ab5eSdrh     pTo->dyn = 1;
4374b59ab5eSdrh   }else{
4384b59ab5eSdrh     pTo->z = 0;
4394b59ab5eSdrh   }
4404b59ab5eSdrh }
4414adee20fSdanielk1977 ExprList *sqlite3ExprListDup(ExprList *p){
442ff78bd2fSdrh   ExprList *pNew;
443145716b3Sdrh   struct ExprList_item *pItem, *pOldItem;
444ff78bd2fSdrh   int i;
445ff78bd2fSdrh   if( p==0 ) return 0;
446ff78bd2fSdrh   pNew = sqliteMalloc( sizeof(*pNew) );
447ff78bd2fSdrh   if( pNew==0 ) return 0;
4484305d103Sdrh   pNew->nExpr = pNew->nAlloc = p->nExpr;
4493e7bc9caSdrh   pNew->a = pItem = sqliteMalloc( p->nExpr*sizeof(p->a[0]) );
450e0048400Sdanielk1977   if( pItem==0 ){
451e0048400Sdanielk1977     sqliteFree(pNew);
452e0048400Sdanielk1977     return 0;
453e0048400Sdanielk1977   }
454145716b3Sdrh   pOldItem = p->a;
455145716b3Sdrh   for(i=0; i<p->nExpr; i++, pItem++, pOldItem++){
4564b59ab5eSdrh     Expr *pNewExpr, *pOldExpr;
457145716b3Sdrh     pItem->pExpr = pNewExpr = sqlite3ExprDup(pOldExpr = pOldItem->pExpr);
4586977fea8Sdrh     if( pOldExpr->span.z!=0 && pNewExpr ){
4596977fea8Sdrh       /* Always make a copy of the span for top-level expressions in the
4604b59ab5eSdrh       ** expression list.  The logic in SELECT processing that determines
4614b59ab5eSdrh       ** the names of columns in the result set needs this information */
4624adee20fSdanielk1977       sqlite3TokenCopy(&pNewExpr->span, &pOldExpr->span);
4634b59ab5eSdrh     }
4641f3e905cSdrh     assert( pNewExpr==0 || pNewExpr->span.z!=0
46524b03fd0Sdanielk1977             || pOldExpr->span.z==0 || sqlite3_malloc_failed );
466145716b3Sdrh     pItem->zName = sqliteStrDup(pOldItem->zName);
467145716b3Sdrh     pItem->sortOrder = pOldItem->sortOrder;
468145716b3Sdrh     pItem->isAgg = pOldItem->isAgg;
4693e7bc9caSdrh     pItem->done = 0;
470ff78bd2fSdrh   }
471ff78bd2fSdrh   return pNew;
472ff78bd2fSdrh }
47393758c8dSdanielk1977 
47493758c8dSdanielk1977 /*
47593758c8dSdanielk1977 ** If cursors, triggers, views and subqueries are all omitted from
47693758c8dSdanielk1977 ** the build, then none of the following routines, except for
47793758c8dSdanielk1977 ** sqlite3SelectDup(), can be called. sqlite3SelectDup() is sometimes
47893758c8dSdanielk1977 ** called with a NULL argument.
47993758c8dSdanielk1977 */
4806a67fe8eSdanielk1977 #if !defined(SQLITE_OMIT_VIEW) || !defined(SQLITE_OMIT_TRIGGER) \
4816a67fe8eSdanielk1977  || !defined(SQLITE_OMIT_SUBQUERY)
4824adee20fSdanielk1977 SrcList *sqlite3SrcListDup(SrcList *p){
483ad3cab52Sdrh   SrcList *pNew;
484ad3cab52Sdrh   int i;
485113088ecSdrh   int nByte;
486ad3cab52Sdrh   if( p==0 ) return 0;
487113088ecSdrh   nByte = sizeof(*p) + (p->nSrc>0 ? sizeof(p->a[0]) * (p->nSrc-1) : 0);
4884efc4754Sdrh   pNew = sqliteMallocRaw( nByte );
489ad3cab52Sdrh   if( pNew==0 ) return 0;
4904305d103Sdrh   pNew->nSrc = pNew->nAlloc = p->nSrc;
491ad3cab52Sdrh   for(i=0; i<p->nSrc; i++){
4924efc4754Sdrh     struct SrcList_item *pNewItem = &pNew->a[i];
4934efc4754Sdrh     struct SrcList_item *pOldItem = &p->a[i];
494ed8a3bb1Sdrh     Table *pTab;
4954efc4754Sdrh     pNewItem->zDatabase = sqliteStrDup(pOldItem->zDatabase);
4964efc4754Sdrh     pNewItem->zName = sqliteStrDup(pOldItem->zName);
4974efc4754Sdrh     pNewItem->zAlias = sqliteStrDup(pOldItem->zAlias);
4984efc4754Sdrh     pNewItem->jointype = pOldItem->jointype;
4994efc4754Sdrh     pNewItem->iCursor = pOldItem->iCursor;
500ed8a3bb1Sdrh     pTab = pNewItem->pTab = pOldItem->pTab;
501ed8a3bb1Sdrh     if( pTab ){
502ed8a3bb1Sdrh       pTab->nRef++;
503a1cb183dSdanielk1977     }
5044adee20fSdanielk1977     pNewItem->pSelect = sqlite3SelectDup(pOldItem->pSelect);
5054adee20fSdanielk1977     pNewItem->pOn = sqlite3ExprDup(pOldItem->pOn);
5064adee20fSdanielk1977     pNewItem->pUsing = sqlite3IdListDup(pOldItem->pUsing);
5076c18b6e0Sdanielk1977     pNewItem->colUsed = pOldItem->colUsed;
508ad3cab52Sdrh   }
509ad3cab52Sdrh   return pNew;
510ad3cab52Sdrh }
5114adee20fSdanielk1977 IdList *sqlite3IdListDup(IdList *p){
512ff78bd2fSdrh   IdList *pNew;
513ff78bd2fSdrh   int i;
514ff78bd2fSdrh   if( p==0 ) return 0;
5154efc4754Sdrh   pNew = sqliteMallocRaw( sizeof(*pNew) );
516ff78bd2fSdrh   if( pNew==0 ) return 0;
5174305d103Sdrh   pNew->nId = pNew->nAlloc = p->nId;
5184efc4754Sdrh   pNew->a = sqliteMallocRaw( p->nId*sizeof(p->a[0]) );
519d5d56523Sdanielk1977   if( pNew->a==0 ){
520d5d56523Sdanielk1977     sqliteFree(pNew);
521d5d56523Sdanielk1977     return 0;
522d5d56523Sdanielk1977   }
523ff78bd2fSdrh   for(i=0; i<p->nId; i++){
5244efc4754Sdrh     struct IdList_item *pNewItem = &pNew->a[i];
5254efc4754Sdrh     struct IdList_item *pOldItem = &p->a[i];
5264efc4754Sdrh     pNewItem->zName = sqliteStrDup(pOldItem->zName);
5274efc4754Sdrh     pNewItem->idx = pOldItem->idx;
528ff78bd2fSdrh   }
529ff78bd2fSdrh   return pNew;
530ff78bd2fSdrh }
5314adee20fSdanielk1977 Select *sqlite3SelectDup(Select *p){
532ff78bd2fSdrh   Select *pNew;
533ff78bd2fSdrh   if( p==0 ) return 0;
5344efc4754Sdrh   pNew = sqliteMallocRaw( sizeof(*p) );
535ff78bd2fSdrh   if( pNew==0 ) return 0;
536ff78bd2fSdrh   pNew->isDistinct = p->isDistinct;
5374adee20fSdanielk1977   pNew->pEList = sqlite3ExprListDup(p->pEList);
5384adee20fSdanielk1977   pNew->pSrc = sqlite3SrcListDup(p->pSrc);
5394adee20fSdanielk1977   pNew->pWhere = sqlite3ExprDup(p->pWhere);
5404adee20fSdanielk1977   pNew->pGroupBy = sqlite3ExprListDup(p->pGroupBy);
5414adee20fSdanielk1977   pNew->pHaving = sqlite3ExprDup(p->pHaving);
5424adee20fSdanielk1977   pNew->pOrderBy = sqlite3ExprListDup(p->pOrderBy);
543ff78bd2fSdrh   pNew->op = p->op;
5444adee20fSdanielk1977   pNew->pPrior = sqlite3SelectDup(p->pPrior);
545a2dc3b1aSdanielk1977   pNew->pLimit = sqlite3ExprDup(p->pLimit);
546a2dc3b1aSdanielk1977   pNew->pOffset = sqlite3ExprDup(p->pOffset);
5477b58daeaSdrh   pNew->iLimit = -1;
5487b58daeaSdrh   pNew->iOffset = -1;
549a1cb183dSdanielk1977   pNew->isResolved = p->isResolved;
550a1cb183dSdanielk1977   pNew->isAgg = p->isAgg;
5510342b1f5Sdrh   pNew->pRightmost = 0;
5520342b1f5Sdrh   pNew->addrOpenVirt[0] = -1;
5530342b1f5Sdrh   pNew->addrOpenVirt[1] = -1;
5540342b1f5Sdrh   pNew->addrOpenVirt[2] = -1;
555ff78bd2fSdrh   return pNew;
556ff78bd2fSdrh }
55793758c8dSdanielk1977 #else
55893758c8dSdanielk1977 Select *sqlite3SelectDup(Select *p){
55993758c8dSdanielk1977   assert( p==0 );
56093758c8dSdanielk1977   return 0;
56193758c8dSdanielk1977 }
56293758c8dSdanielk1977 #endif
563ff78bd2fSdrh 
564ff78bd2fSdrh 
565ff78bd2fSdrh /*
566a76b5dfcSdrh ** Add a new element to the end of an expression list.  If pList is
567a76b5dfcSdrh ** initially NULL, then create a new expression list.
568a76b5dfcSdrh */
5694adee20fSdanielk1977 ExprList *sqlite3ExprListAppend(ExprList *pList, Expr *pExpr, Token *pName){
570a76b5dfcSdrh   if( pList==0 ){
571a76b5dfcSdrh     pList = sqliteMalloc( sizeof(ExprList) );
572a76b5dfcSdrh     if( pList==0 ){
573d5d56523Sdanielk1977       goto no_mem;
574a76b5dfcSdrh     }
5754efc4754Sdrh     assert( pList->nAlloc==0 );
576a76b5dfcSdrh   }
5774305d103Sdrh   if( pList->nAlloc<=pList->nExpr ){
578d5d56523Sdanielk1977     struct ExprList_item *a;
579d5d56523Sdanielk1977     int n = pList->nAlloc*2 + 4;
580d5d56523Sdanielk1977     a = sqliteRealloc(pList->a, n*sizeof(pList->a[0]));
581d5d56523Sdanielk1977     if( a==0 ){
582d5d56523Sdanielk1977       goto no_mem;
583a76b5dfcSdrh     }
584d5d56523Sdanielk1977     pList->a = a;
585d5d56523Sdanielk1977     pList->nAlloc = n;
586a76b5dfcSdrh   }
5874efc4754Sdrh   assert( pList->a!=0 );
5884efc4754Sdrh   if( pExpr || pName ){
5894efc4754Sdrh     struct ExprList_item *pItem = &pList->a[pList->nExpr++];
5904efc4754Sdrh     memset(pItem, 0, sizeof(*pItem));
591a99db3b6Sdrh     pItem->zName = sqlite3NameFromToken(pName);
592e94ddc9eSdanielk1977     pItem->pExpr = pExpr;
593a76b5dfcSdrh   }
594a76b5dfcSdrh   return pList;
595d5d56523Sdanielk1977 
596d5d56523Sdanielk1977 no_mem:
597d5d56523Sdanielk1977   /* Avoid leaking memory if malloc has failed. */
598d5d56523Sdanielk1977   sqlite3ExprDelete(pExpr);
599d5d56523Sdanielk1977   sqlite3ExprListDelete(pList);
600d5d56523Sdanielk1977   return 0;
601a76b5dfcSdrh }
602a76b5dfcSdrh 
603a76b5dfcSdrh /*
604a76b5dfcSdrh ** Delete an entire expression list.
605a76b5dfcSdrh */
6064adee20fSdanielk1977 void sqlite3ExprListDelete(ExprList *pList){
607a76b5dfcSdrh   int i;
608be5c89acSdrh   struct ExprList_item *pItem;
609a76b5dfcSdrh   if( pList==0 ) return;
6101bdd9b57Sdrh   assert( pList->a!=0 || (pList->nExpr==0 && pList->nAlloc==0) );
6111bdd9b57Sdrh   assert( pList->nExpr<=pList->nAlloc );
612be5c89acSdrh   for(pItem=pList->a, i=0; i<pList->nExpr; i++, pItem++){
613be5c89acSdrh     sqlite3ExprDelete(pItem->pExpr);
614be5c89acSdrh     sqliteFree(pItem->zName);
615a76b5dfcSdrh   }
616a76b5dfcSdrh   sqliteFree(pList->a);
617a76b5dfcSdrh   sqliteFree(pList);
618a76b5dfcSdrh }
619a76b5dfcSdrh 
620a76b5dfcSdrh /*
621626a879aSdrh ** Walk an expression tree.  Call xFunc for each node visited.
62273b211abSdrh **
623626a879aSdrh ** The return value from xFunc determines whether the tree walk continues.
624626a879aSdrh ** 0 means continue walking the tree.  1 means do not walk children
625626a879aSdrh ** of the current node but continue with siblings.  2 means abandon
626626a879aSdrh ** the tree walk completely.
627626a879aSdrh **
628626a879aSdrh ** The return value from this routine is 1 to abandon the tree walk
629626a879aSdrh ** and 0 to continue.
63087abf5c0Sdrh **
63187abf5c0Sdrh ** NOTICE:  This routine does *not* descend into subqueries.
632626a879aSdrh */
633a58fdfb1Sdanielk1977 static int walkExprList(ExprList *, int (*)(void *, Expr*), void *);
634626a879aSdrh static int walkExprTree(Expr *pExpr, int (*xFunc)(void*,Expr*), void *pArg){
635626a879aSdrh   int rc;
636626a879aSdrh   if( pExpr==0 ) return 0;
637626a879aSdrh   rc = (*xFunc)(pArg, pExpr);
638626a879aSdrh   if( rc==0 ){
639626a879aSdrh     if( walkExprTree(pExpr->pLeft, xFunc, pArg) ) return 1;
640626a879aSdrh     if( walkExprTree(pExpr->pRight, xFunc, pArg) ) return 1;
641a58fdfb1Sdanielk1977     if( walkExprList(pExpr->pList, xFunc, pArg) ) return 1;
642626a879aSdrh   }
643626a879aSdrh   return rc>1;
644626a879aSdrh }
645626a879aSdrh 
646626a879aSdrh /*
647a58fdfb1Sdanielk1977 ** Call walkExprTree() for every expression in list p.
648a58fdfb1Sdanielk1977 */
649a58fdfb1Sdanielk1977 static int walkExprList(ExprList *p, int (*xFunc)(void *, Expr*), void *pArg){
650a58fdfb1Sdanielk1977   int i;
651a58fdfb1Sdanielk1977   struct ExprList_item *pItem;
652a58fdfb1Sdanielk1977   if( !p ) return 0;
653a58fdfb1Sdanielk1977   for(i=p->nExpr, pItem=p->a; i>0; i--, pItem++){
654a58fdfb1Sdanielk1977     if( walkExprTree(pItem->pExpr, xFunc, pArg) ) return 1;
655a58fdfb1Sdanielk1977   }
656a58fdfb1Sdanielk1977   return 0;
657a58fdfb1Sdanielk1977 }
658a58fdfb1Sdanielk1977 
659a58fdfb1Sdanielk1977 /*
660a58fdfb1Sdanielk1977 ** Call walkExprTree() for every expression in Select p, not including
661a58fdfb1Sdanielk1977 ** expressions that are part of sub-selects in any FROM clause or the LIMIT
662a58fdfb1Sdanielk1977 ** or OFFSET expressions..
663a58fdfb1Sdanielk1977 */
664a58fdfb1Sdanielk1977 static int walkSelectExpr(Select *p, int (*xFunc)(void *, Expr*), void *pArg){
665a58fdfb1Sdanielk1977   walkExprList(p->pEList, xFunc, pArg);
666a58fdfb1Sdanielk1977   walkExprTree(p->pWhere, xFunc, pArg);
667a58fdfb1Sdanielk1977   walkExprList(p->pGroupBy, xFunc, pArg);
668a58fdfb1Sdanielk1977   walkExprTree(p->pHaving, xFunc, pArg);
669a58fdfb1Sdanielk1977   walkExprList(p->pOrderBy, xFunc, pArg);
670a58fdfb1Sdanielk1977   return 0;
671a58fdfb1Sdanielk1977 }
672a58fdfb1Sdanielk1977 
673a58fdfb1Sdanielk1977 
674a58fdfb1Sdanielk1977 /*
675626a879aSdrh ** This routine is designed as an xFunc for walkExprTree().
676626a879aSdrh **
677626a879aSdrh ** pArg is really a pointer to an integer.  If we can tell by looking
67873b211abSdrh ** at pExpr that the expression that contains pExpr is not a constant
67973b211abSdrh ** expression, then set *pArg to 0 and return 2 to abandon the tree walk.
68073b211abSdrh ** If pExpr does does not disqualify the expression from being a constant
68173b211abSdrh ** then do nothing.
68273b211abSdrh **
68373b211abSdrh ** After walking the whole tree, if no nodes are found that disqualify
68473b211abSdrh ** the expression as constant, then we assume the whole expression
68573b211abSdrh ** is constant.  See sqlite3ExprIsConstant() for additional information.
686626a879aSdrh */
687626a879aSdrh static int exprNodeIsConstant(void *pArg, Expr *pExpr){
688626a879aSdrh   switch( pExpr->op ){
689eb55bd2fSdrh     /* Consider functions to be constant if all their arguments are constant
690eb55bd2fSdrh     ** and *pArg==2 */
691eb55bd2fSdrh     case TK_FUNCTION:
692eb55bd2fSdrh       if( *((int*)pArg)==2 ) return 0;
693eb55bd2fSdrh       /* Fall through */
694626a879aSdrh     case TK_ID:
695626a879aSdrh     case TK_COLUMN:
696626a879aSdrh     case TK_DOT:
697626a879aSdrh     case TK_AGG_FUNCTION:
69813449892Sdrh     case TK_AGG_COLUMN:
699fe2093d7Sdrh #ifndef SQLITE_OMIT_SUBQUERY
700fe2093d7Sdrh     case TK_SELECT:
701fe2093d7Sdrh     case TK_EXISTS:
702fe2093d7Sdrh #endif
703626a879aSdrh       *((int*)pArg) = 0;
704626a879aSdrh       return 2;
70587abf5c0Sdrh     case TK_IN:
70687abf5c0Sdrh       if( pExpr->pSelect ){
70787abf5c0Sdrh         *((int*)pArg) = 0;
70887abf5c0Sdrh         return 2;
70987abf5c0Sdrh       }
710626a879aSdrh     default:
711626a879aSdrh       return 0;
712626a879aSdrh   }
713626a879aSdrh }
714626a879aSdrh 
715626a879aSdrh /*
716fef5208cSdrh ** Walk an expression tree.  Return 1 if the expression is constant
717eb55bd2fSdrh ** and 0 if it involves variables or function calls.
7182398937bSdrh **
7192398937bSdrh ** For the purposes of this function, a double-quoted string (ex: "abc")
7202398937bSdrh ** is considered a variable but a single-quoted string (ex: 'abc') is
7212398937bSdrh ** a constant.
722fef5208cSdrh */
7234adee20fSdanielk1977 int sqlite3ExprIsConstant(Expr *p){
724626a879aSdrh   int isConst = 1;
725626a879aSdrh   walkExprTree(p, exprNodeIsConstant, &isConst);
726626a879aSdrh   return isConst;
727fef5208cSdrh }
728fef5208cSdrh 
729fef5208cSdrh /*
730eb55bd2fSdrh ** Walk an expression tree.  Return 1 if the expression is constant
731eb55bd2fSdrh ** or a function call with constant arguments.  Return and 0 if there
732eb55bd2fSdrh ** are any variables.
733eb55bd2fSdrh **
734eb55bd2fSdrh ** For the purposes of this function, a double-quoted string (ex: "abc")
735eb55bd2fSdrh ** is considered a variable but a single-quoted string (ex: 'abc') is
736eb55bd2fSdrh ** a constant.
737eb55bd2fSdrh */
738eb55bd2fSdrh int sqlite3ExprIsConstantOrFunction(Expr *p){
739eb55bd2fSdrh   int isConst = 2;
740eb55bd2fSdrh   walkExprTree(p, exprNodeIsConstant, &isConst);
741eb55bd2fSdrh   return isConst!=0;
742eb55bd2fSdrh }
743eb55bd2fSdrh 
744eb55bd2fSdrh /*
74573b211abSdrh ** If the expression p codes a constant integer that is small enough
746202b2df7Sdrh ** to fit in a 32-bit integer, return 1 and put the value of the integer
747202b2df7Sdrh ** in *pValue.  If the expression is not an integer or if it is too big
748202b2df7Sdrh ** to fit in a signed 32-bit integer, return 0 and leave *pValue unchanged.
749e4de1febSdrh */
7504adee20fSdanielk1977 int sqlite3ExprIsInteger(Expr *p, int *pValue){
751e4de1febSdrh   switch( p->op ){
752e4de1febSdrh     case TK_INTEGER: {
753fec19aadSdrh       if( sqlite3GetInt32(p->token.z, pValue) ){
754e4de1febSdrh         return 1;
755e4de1febSdrh       }
756202b2df7Sdrh       break;
757202b2df7Sdrh     }
7584b59ab5eSdrh     case TK_UPLUS: {
7594adee20fSdanielk1977       return sqlite3ExprIsInteger(p->pLeft, pValue);
7604b59ab5eSdrh     }
761e4de1febSdrh     case TK_UMINUS: {
762e4de1febSdrh       int v;
7634adee20fSdanielk1977       if( sqlite3ExprIsInteger(p->pLeft, &v) ){
764e4de1febSdrh         *pValue = -v;
765e4de1febSdrh         return 1;
766e4de1febSdrh       }
767e4de1febSdrh       break;
768e4de1febSdrh     }
769e4de1febSdrh     default: break;
770e4de1febSdrh   }
771e4de1febSdrh   return 0;
772e4de1febSdrh }
773e4de1febSdrh 
774e4de1febSdrh /*
775c4a3c779Sdrh ** Return TRUE if the given string is a row-id column name.
776c4a3c779Sdrh */
7774adee20fSdanielk1977 int sqlite3IsRowid(const char *z){
7784adee20fSdanielk1977   if( sqlite3StrICmp(z, "_ROWID_")==0 ) return 1;
7794adee20fSdanielk1977   if( sqlite3StrICmp(z, "ROWID")==0 ) return 1;
7804adee20fSdanielk1977   if( sqlite3StrICmp(z, "OID")==0 ) return 1;
781c4a3c779Sdrh   return 0;
782c4a3c779Sdrh }
783c4a3c779Sdrh 
784c4a3c779Sdrh /*
7858141f61eSdrh ** Given the name of a column of the form X.Y.Z or Y.Z or just Z, look up
7868141f61eSdrh ** that name in the set of source tables in pSrcList and make the pExpr
7878141f61eSdrh ** expression node refer back to that source column.  The following changes
7888141f61eSdrh ** are made to pExpr:
7898141f61eSdrh **
7908141f61eSdrh **    pExpr->iDb           Set the index in db->aDb[] of the database holding
7918141f61eSdrh **                         the table.
7928141f61eSdrh **    pExpr->iTable        Set to the cursor number for the table obtained
7938141f61eSdrh **                         from pSrcList.
7948141f61eSdrh **    pExpr->iColumn       Set to the column number within the table.
7958141f61eSdrh **    pExpr->op            Set to TK_COLUMN.
7968141f61eSdrh **    pExpr->pLeft         Any expression this points to is deleted
7978141f61eSdrh **    pExpr->pRight        Any expression this points to is deleted.
7988141f61eSdrh **
7998141f61eSdrh ** The pDbToken is the name of the database (the "X").  This value may be
8008141f61eSdrh ** NULL meaning that name is of the form Y.Z or Z.  Any available database
8018141f61eSdrh ** can be used.  The pTableToken is the name of the table (the "Y").  This
8028141f61eSdrh ** value can be NULL if pDbToken is also NULL.  If pTableToken is NULL it
8038141f61eSdrh ** means that the form of the name is Z and that columns from any table
8048141f61eSdrh ** can be used.
8058141f61eSdrh **
8068141f61eSdrh ** If the name cannot be resolved unambiguously, leave an error message
8078141f61eSdrh ** in pParse and return non-zero.  Return zero on success.
8088141f61eSdrh */
8098141f61eSdrh static int lookupName(
8108141f61eSdrh   Parse *pParse,      /* The parsing context */
8118141f61eSdrh   Token *pDbToken,     /* Name of the database containing table, or NULL */
8128141f61eSdrh   Token *pTableToken,  /* Name of table containing column, or NULL */
8138141f61eSdrh   Token *pColumnToken, /* Name of the column. */
814626a879aSdrh   NameContext *pNC,    /* The name context used to resolve the name */
8158141f61eSdrh   Expr *pExpr          /* Make this EXPR node point to the selected column */
8168141f61eSdrh ){
8178141f61eSdrh   char *zDb = 0;       /* Name of the database.  The "X" in X.Y.Z */
8188141f61eSdrh   char *zTab = 0;      /* Name of the table.  The "Y" in X.Y.Z or Y.Z */
8198141f61eSdrh   char *zCol = 0;      /* Name of the column.  The "Z" */
8208141f61eSdrh   int i, j;            /* Loop counters */
8218141f61eSdrh   int cnt = 0;         /* Number of matching column names */
8228141f61eSdrh   int cntTab = 0;      /* Number of matching table names */
8239bb575fdSdrh   sqlite3 *db = pParse->db;  /* The database */
82451669863Sdrh   struct SrcList_item *pItem;       /* Use for looping over pSrcList items */
82551669863Sdrh   struct SrcList_item *pMatch = 0;  /* The matching pSrcList item */
82673b211abSdrh   NameContext *pTopNC = pNC;        /* First namecontext in the list */
8278141f61eSdrh 
8288141f61eSdrh   assert( pColumnToken && pColumnToken->z ); /* The Z in X.Y.Z cannot be NULL */
829a99db3b6Sdrh   zDb = sqlite3NameFromToken(pDbToken);
830a99db3b6Sdrh   zTab = sqlite3NameFromToken(pTableToken);
831a99db3b6Sdrh   zCol = sqlite3NameFromToken(pColumnToken);
83224b03fd0Sdanielk1977   if( sqlite3_malloc_failed ){
833d5d56523Sdanielk1977     goto lookupname_end;
8348141f61eSdrh   }
8358141f61eSdrh 
8368141f61eSdrh   pExpr->iTable = -1;
837626a879aSdrh   while( pNC && cnt==0 ){
838626a879aSdrh     SrcList *pSrcList = pNC->pSrcList;
839626a879aSdrh     ExprList *pEList = pNC->pEList;
840626a879aSdrh 
841626a879aSdrh     /* assert( zTab==0 || pEList==0 ); */
842b3bce662Sdanielk1977     if( pSrcList ){
84351669863Sdrh       for(i=0, pItem=pSrcList->a; i<pSrcList->nSrc; i++, pItem++){
8448141f61eSdrh         Table *pTab = pItem->pTab;
8458141f61eSdrh         Column *pCol;
8468141f61eSdrh 
8478141f61eSdrh         if( pTab==0 ) continue;
8488141f61eSdrh         assert( pTab->nCol>0 );
8498141f61eSdrh         if( zTab ){
8508141f61eSdrh           if( pItem->zAlias ){
8518141f61eSdrh             char *zTabName = pItem->zAlias;
8524adee20fSdanielk1977             if( sqlite3StrICmp(zTabName, zTab)!=0 ) continue;
8538141f61eSdrh           }else{
8548141f61eSdrh             char *zTabName = pTab->zName;
8554adee20fSdanielk1977             if( zTabName==0 || sqlite3StrICmp(zTabName, zTab)!=0 ) continue;
8564adee20fSdanielk1977             if( zDb!=0 && sqlite3StrICmp(db->aDb[pTab->iDb].zName, zDb)!=0 ){
8578141f61eSdrh               continue;
8588141f61eSdrh             }
8598141f61eSdrh           }
8608141f61eSdrh         }
8618141f61eSdrh         if( 0==(cntTab++) ){
8628141f61eSdrh           pExpr->iTable = pItem->iCursor;
8638141f61eSdrh           pExpr->iDb = pTab->iDb;
86451669863Sdrh           pMatch = pItem;
8658141f61eSdrh         }
8668141f61eSdrh         for(j=0, pCol=pTab->aCol; j<pTab->nCol; j++, pCol++){
8674adee20fSdanielk1977           if( sqlite3StrICmp(pCol->zName, zCol)==0 ){
868873fac0cSdrh             IdList *pUsing;
8698141f61eSdrh             cnt++;
8708141f61eSdrh             pExpr->iTable = pItem->iCursor;
87151669863Sdrh             pMatch = pItem;
8728141f61eSdrh             pExpr->iDb = pTab->iDb;
8738141f61eSdrh             /* Substitute the rowid (column -1) for the INTEGER PRIMARY KEY */
8748141f61eSdrh             pExpr->iColumn = j==pTab->iPKey ? -1 : j;
875a37cdde0Sdanielk1977             pExpr->affinity = pTab->aCol[j].affinity;
8760202b29eSdanielk1977             pExpr->pColl = pTab->aCol[j].pColl;
877355ef361Sdrh             if( pItem->jointype & JT_NATURAL ){
878355ef361Sdrh               /* If this match occurred in the left table of a natural join,
879355ef361Sdrh               ** then skip the right table to avoid a duplicate match */
880355ef361Sdrh               pItem++;
881355ef361Sdrh               i++;
882355ef361Sdrh             }
883873fac0cSdrh             if( (pUsing = pItem->pUsing)!=0 ){
884873fac0cSdrh               /* If this match occurs on a column that is in the USING clause
885873fac0cSdrh               ** of a join, skip the search of the right table of the join
886873fac0cSdrh               ** to avoid a duplicate match there. */
887873fac0cSdrh               int k;
888873fac0cSdrh               for(k=0; k<pUsing->nId; k++){
889873fac0cSdrh                 if( sqlite3StrICmp(pUsing->a[k].zName, zCol)==0 ){
890873fac0cSdrh                   pItem++;
891873fac0cSdrh                   i++;
892873fac0cSdrh                   break;
893873fac0cSdrh                 }
894873fac0cSdrh               }
895873fac0cSdrh             }
8968141f61eSdrh             break;
8978141f61eSdrh           }
8988141f61eSdrh         }
8998141f61eSdrh       }
900b3bce662Sdanielk1977     }
9018141f61eSdrh 
902b7f9164eSdrh #ifndef SQLITE_OMIT_TRIGGER
9038141f61eSdrh     /* If we have not already resolved the name, then maybe
9048141f61eSdrh     ** it is a new.* or old.* trigger argument reference
9058141f61eSdrh     */
9068141f61eSdrh     if( zDb==0 && zTab!=0 && cnt==0 && pParse->trigStack!=0 ){
9078141f61eSdrh       TriggerStack *pTriggerStack = pParse->trigStack;
9088141f61eSdrh       Table *pTab = 0;
9094adee20fSdanielk1977       if( pTriggerStack->newIdx != -1 && sqlite3StrICmp("new", zTab) == 0 ){
9108141f61eSdrh         pExpr->iTable = pTriggerStack->newIdx;
9118141f61eSdrh         assert( pTriggerStack->pTab );
9128141f61eSdrh         pTab = pTriggerStack->pTab;
9134adee20fSdanielk1977       }else if( pTriggerStack->oldIdx != -1 && sqlite3StrICmp("old", zTab)==0 ){
9148141f61eSdrh         pExpr->iTable = pTriggerStack->oldIdx;
9158141f61eSdrh         assert( pTriggerStack->pTab );
9168141f61eSdrh         pTab = pTriggerStack->pTab;
9178141f61eSdrh       }
9188141f61eSdrh 
9198141f61eSdrh       if( pTab ){
9208141f61eSdrh         int j;
9218141f61eSdrh         Column *pCol = pTab->aCol;
9228141f61eSdrh 
9238141f61eSdrh         pExpr->iDb = pTab->iDb;
9248141f61eSdrh         cntTab++;
9258141f61eSdrh         for(j=0; j < pTab->nCol; j++, pCol++) {
9264adee20fSdanielk1977           if( sqlite3StrICmp(pCol->zName, zCol)==0 ){
9278141f61eSdrh             cnt++;
9288141f61eSdrh             pExpr->iColumn = j==pTab->iPKey ? -1 : j;
929a37cdde0Sdanielk1977             pExpr->affinity = pTab->aCol[j].affinity;
9300202b29eSdanielk1977             pExpr->pColl = pTab->aCol[j].pColl;
931aee18ef8Sdanielk1977             pExpr->pTab = pTab;
9328141f61eSdrh             break;
9338141f61eSdrh           }
9348141f61eSdrh         }
9358141f61eSdrh       }
9368141f61eSdrh     }
937b7f9164eSdrh #endif /* !defined(SQLITE_OMIT_TRIGGER) */
9388141f61eSdrh 
9398141f61eSdrh     /*
9408141f61eSdrh     ** Perhaps the name is a reference to the ROWID
9418141f61eSdrh     */
9424adee20fSdanielk1977     if( cnt==0 && cntTab==1 && sqlite3IsRowid(zCol) ){
9438141f61eSdrh       cnt = 1;
9448141f61eSdrh       pExpr->iColumn = -1;
945a37cdde0Sdanielk1977       pExpr->affinity = SQLITE_AFF_INTEGER;
9468141f61eSdrh     }
9478141f61eSdrh 
9488141f61eSdrh     /*
9498141f61eSdrh     ** If the input is of the form Z (not Y.Z or X.Y.Z) then the name Z
9508141f61eSdrh     ** might refer to an result-set alias.  This happens, for example, when
9518141f61eSdrh     ** we are resolving names in the WHERE clause of the following command:
9528141f61eSdrh     **
9538141f61eSdrh     **     SELECT a+b AS x FROM table WHERE x<10;
9548141f61eSdrh     **
9558141f61eSdrh     ** In cases like this, replace pExpr with a copy of the expression that
9568141f61eSdrh     ** forms the result set entry ("a+b" in the example) and return immediately.
9578141f61eSdrh     ** Note that the expression in the result set should have already been
9588141f61eSdrh     ** resolved by the time the WHERE clause is resolved.
9598141f61eSdrh     */
96079d5f63fSdrh     if( cnt==0 && pEList!=0 && zTab==0 ){
9618141f61eSdrh       for(j=0; j<pEList->nExpr; j++){
9628141f61eSdrh         char *zAs = pEList->a[j].zName;
9634adee20fSdanielk1977         if( zAs!=0 && sqlite3StrICmp(zAs, zCol)==0 ){
9648141f61eSdrh           assert( pExpr->pLeft==0 && pExpr->pRight==0 );
9658141f61eSdrh           pExpr->op = TK_AS;
9668141f61eSdrh           pExpr->iColumn = j;
9674adee20fSdanielk1977           pExpr->pLeft = sqlite3ExprDup(pEList->a[j].pExpr);
96815ccce1cSdrh           cnt = 1;
9698141f61eSdrh           assert( zTab==0 && zDb==0 );
97015ccce1cSdrh           goto lookupname_end_2;
9718141f61eSdrh         }
9728141f61eSdrh       }
9738141f61eSdrh     }
9748141f61eSdrh 
975626a879aSdrh     /* Advance to the next name context.  The loop will exit when either
976626a879aSdrh     ** we have a match (cnt>0) or when we run out of name contexts.
977626a879aSdrh     */
978626a879aSdrh     if( cnt==0 ){
979626a879aSdrh       pNC = pNC->pNext;
980626a879aSdrh     }
981626a879aSdrh   }
982626a879aSdrh 
9838141f61eSdrh   /*
9848141f61eSdrh   ** If X and Y are NULL (in other words if only the column name Z is
9858141f61eSdrh   ** supplied) and the value of Z is enclosed in double-quotes, then
9868141f61eSdrh   ** Z is a string literal if it doesn't match any column names.  In that
9878141f61eSdrh   ** case, we need to return right away and not make any changes to
9888141f61eSdrh   ** pExpr.
98915ccce1cSdrh   **
99015ccce1cSdrh   ** Because no reference was made to outer contexts, the pNC->nRef
99115ccce1cSdrh   ** fields are not changed in any context.
9928141f61eSdrh   */
9938141f61eSdrh   if( cnt==0 && zTab==0 && pColumnToken->z[0]=='"' ){
9948141f61eSdrh     sqliteFree(zCol);
9958141f61eSdrh     return 0;
9968141f61eSdrh   }
9978141f61eSdrh 
9988141f61eSdrh   /*
9998141f61eSdrh   ** cnt==0 means there was not match.  cnt>1 means there were two or
10008141f61eSdrh   ** more matches.  Either way, we have an error.
10018141f61eSdrh   */
10028141f61eSdrh   if( cnt!=1 ){
10038141f61eSdrh     char *z = 0;
10048141f61eSdrh     char *zErr;
10058141f61eSdrh     zErr = cnt==0 ? "no such column: %s" : "ambiguous column name: %s";
10068141f61eSdrh     if( zDb ){
10074adee20fSdanielk1977       sqlite3SetString(&z, zDb, ".", zTab, ".", zCol, 0);
10088141f61eSdrh     }else if( zTab ){
10094adee20fSdanielk1977       sqlite3SetString(&z, zTab, ".", zCol, 0);
10108141f61eSdrh     }else{
10118141f61eSdrh       z = sqliteStrDup(zCol);
10128141f61eSdrh     }
10134adee20fSdanielk1977     sqlite3ErrorMsg(pParse, zErr, z);
10148141f61eSdrh     sqliteFree(z);
101573b211abSdrh     pTopNC->nErr++;
10168141f61eSdrh   }
10178141f61eSdrh 
101851669863Sdrh   /* If a column from a table in pSrcList is referenced, then record
101951669863Sdrh   ** this fact in the pSrcList.a[].colUsed bitmask.  Column 0 causes
102051669863Sdrh   ** bit 0 to be set.  Column 1 sets bit 1.  And so forth.  If the
102151669863Sdrh   ** column number is greater than the number of bits in the bitmask
102251669863Sdrh   ** then set the high-order bit of the bitmask.
102351669863Sdrh   */
102451669863Sdrh   if( pExpr->iColumn>=0 && pMatch!=0 ){
102551669863Sdrh     int n = pExpr->iColumn;
102651669863Sdrh     if( n>=sizeof(Bitmask)*8 ){
102751669863Sdrh       n = sizeof(Bitmask)*8-1;
102851669863Sdrh     }
102951669863Sdrh     assert( pMatch->iCursor==pExpr->iTable );
103051669863Sdrh     pMatch->colUsed |= 1<<n;
103151669863Sdrh   }
103251669863Sdrh 
1033d5d56523Sdanielk1977 lookupname_end:
10348141f61eSdrh   /* Clean up and return
10358141f61eSdrh   */
10368141f61eSdrh   sqliteFree(zDb);
10378141f61eSdrh   sqliteFree(zTab);
10384adee20fSdanielk1977   sqlite3ExprDelete(pExpr->pLeft);
10398141f61eSdrh   pExpr->pLeft = 0;
10404adee20fSdanielk1977   sqlite3ExprDelete(pExpr->pRight);
10418141f61eSdrh   pExpr->pRight = 0;
10428141f61eSdrh   pExpr->op = TK_COLUMN;
104315ccce1cSdrh lookupname_end_2:
104415ccce1cSdrh   sqliteFree(zCol);
1045626a879aSdrh   if( cnt==1 ){
1046b3bce662Sdanielk1977     assert( pNC!=0 );
1047626a879aSdrh     sqlite3AuthRead(pParse, pExpr, pNC->pSrcList);
1048aee18ef8Sdanielk1977     if( pMatch && !pMatch->pSelect ){
1049aee18ef8Sdanielk1977       pExpr->pTab = pMatch->pTab;
1050aee18ef8Sdanielk1977     }
105115ccce1cSdrh     /* Increment the nRef value on all name contexts from TopNC up to
105215ccce1cSdrh     ** the point where the name matched. */
105315ccce1cSdrh     for(;;){
105415ccce1cSdrh       assert( pTopNC!=0 );
105515ccce1cSdrh       pTopNC->nRef++;
105615ccce1cSdrh       if( pTopNC==pNC ) break;
105715ccce1cSdrh       pTopNC = pTopNC->pNext;
1058626a879aSdrh     }
105915ccce1cSdrh     return 0;
106015ccce1cSdrh   } else {
106115ccce1cSdrh     return 1;
106215ccce1cSdrh   }
10638141f61eSdrh }
10648141f61eSdrh 
10658141f61eSdrh /*
1066626a879aSdrh ** This routine is designed as an xFunc for walkExprTree().
1067626a879aSdrh **
106873b211abSdrh ** Resolve symbolic names into TK_COLUMN operators for the current
1069626a879aSdrh ** node in the expression tree.  Return 0 to continue the search down
107073b211abSdrh ** the tree or 2 to abort the tree walk.
107173b211abSdrh **
107273b211abSdrh ** This routine also does error checking and name resolution for
107373b211abSdrh ** function names.  The operator for aggregate functions is changed
107473b211abSdrh ** to TK_AGG_FUNCTION.
1075626a879aSdrh */
1076626a879aSdrh static int nameResolverStep(void *pArg, Expr *pExpr){
1077626a879aSdrh   NameContext *pNC = (NameContext*)pArg;
1078626a879aSdrh   SrcList *pSrcList;
1079626a879aSdrh   Parse *pParse;
1080626a879aSdrh 
1081b3bce662Sdanielk1977   if( pExpr==0 ) return 1;
1082626a879aSdrh   assert( pNC!=0 );
1083626a879aSdrh   pSrcList = pNC->pSrcList;
1084626a879aSdrh   pParse = pNC->pParse;
1085b3bce662Sdanielk1977 
1086626a879aSdrh   if( ExprHasAnyProperty(pExpr, EP_Resolved) ) return 1;
1087626a879aSdrh   ExprSetProperty(pExpr, EP_Resolved);
1088626a879aSdrh #ifndef NDEBUG
1089626a879aSdrh   if( pSrcList ){
1090940fac9dSdanielk1977     int i;
1091626a879aSdrh     for(i=0; i<pSrcList->nSrc; i++){
1092626a879aSdrh       assert( pSrcList->a[i].iCursor>=0 && pSrcList->a[i].iCursor<pParse->nTab);
1093626a879aSdrh     }
1094626a879aSdrh   }
1095626a879aSdrh #endif
1096626a879aSdrh   switch( pExpr->op ){
1097626a879aSdrh     /* Double-quoted strings (ex: "abc") are used as identifiers if
1098626a879aSdrh     ** possible.  Otherwise they remain as strings.  Single-quoted
1099626a879aSdrh     ** strings (ex: 'abc') are always string literals.
1100626a879aSdrh     */
1101626a879aSdrh     case TK_STRING: {
1102626a879aSdrh       if( pExpr->token.z[0]=='\'' ) break;
1103626a879aSdrh       /* Fall thru into the TK_ID case if this is a double-quoted string */
1104626a879aSdrh     }
1105626a879aSdrh     /* A lone identifier is the name of a column.
1106626a879aSdrh     */
1107626a879aSdrh     case TK_ID: {
1108626a879aSdrh       lookupName(pParse, 0, 0, &pExpr->token, pNC, pExpr);
1109626a879aSdrh       return 1;
1110626a879aSdrh     }
1111626a879aSdrh 
1112626a879aSdrh     /* A table name and column name:     ID.ID
1113626a879aSdrh     ** Or a database, table and column:  ID.ID.ID
1114626a879aSdrh     */
1115626a879aSdrh     case TK_DOT: {
1116626a879aSdrh       Token *pColumn;
1117626a879aSdrh       Token *pTable;
1118626a879aSdrh       Token *pDb;
1119626a879aSdrh       Expr *pRight;
1120626a879aSdrh 
1121b3bce662Sdanielk1977       /* if( pSrcList==0 ) break; */
1122626a879aSdrh       pRight = pExpr->pRight;
1123626a879aSdrh       if( pRight->op==TK_ID ){
1124626a879aSdrh         pDb = 0;
1125626a879aSdrh         pTable = &pExpr->pLeft->token;
1126626a879aSdrh         pColumn = &pRight->token;
1127626a879aSdrh       }else{
1128626a879aSdrh         assert( pRight->op==TK_DOT );
1129626a879aSdrh         pDb = &pExpr->pLeft->token;
1130626a879aSdrh         pTable = &pRight->pLeft->token;
1131626a879aSdrh         pColumn = &pRight->pRight->token;
1132626a879aSdrh       }
1133626a879aSdrh       lookupName(pParse, pDb, pTable, pColumn, pNC, pExpr);
1134626a879aSdrh       return 1;
1135626a879aSdrh     }
1136626a879aSdrh 
1137626a879aSdrh     /* Resolve function names
1138626a879aSdrh     */
1139b71090fdSdrh     case TK_CONST_FUNC:
1140626a879aSdrh     case TK_FUNCTION: {
1141626a879aSdrh       ExprList *pList = pExpr->pList;    /* The argument list */
1142626a879aSdrh       int n = pList ? pList->nExpr : 0;  /* Number of arguments */
1143626a879aSdrh       int no_such_func = 0;       /* True if no such function exists */
1144626a879aSdrh       int wrong_num_args = 0;     /* True if wrong number of arguments */
1145626a879aSdrh       int is_agg = 0;             /* True if is an aggregate function */
1146626a879aSdrh       int i;
1147626a879aSdrh       int nId;                    /* Number of characters in function name */
1148626a879aSdrh       const char *zId;            /* The function name. */
114973b211abSdrh       FuncDef *pDef;              /* Information about the function */
115073b211abSdrh       int enc = pParse->db->enc;  /* The database encoding */
1151626a879aSdrh 
1152b71090fdSdrh       zId = pExpr->token.z;
1153b71090fdSdrh       nId = pExpr->token.n;
1154626a879aSdrh       pDef = sqlite3FindFunction(pParse->db, zId, nId, n, enc, 0);
1155626a879aSdrh       if( pDef==0 ){
1156626a879aSdrh         pDef = sqlite3FindFunction(pParse->db, zId, nId, -1, enc, 0);
1157626a879aSdrh         if( pDef==0 ){
1158626a879aSdrh           no_such_func = 1;
1159626a879aSdrh         }else{
1160626a879aSdrh           wrong_num_args = 1;
1161626a879aSdrh         }
1162626a879aSdrh       }else{
1163626a879aSdrh         is_agg = pDef->xFunc==0;
1164626a879aSdrh       }
1165626a879aSdrh       if( is_agg && !pNC->allowAgg ){
1166626a879aSdrh         sqlite3ErrorMsg(pParse, "misuse of aggregate function %.*s()", nId,zId);
1167626a879aSdrh         pNC->nErr++;
1168626a879aSdrh         is_agg = 0;
1169626a879aSdrh       }else if( no_such_func ){
1170626a879aSdrh         sqlite3ErrorMsg(pParse, "no such function: %.*s", nId, zId);
1171626a879aSdrh         pNC->nErr++;
1172626a879aSdrh       }else if( wrong_num_args ){
1173626a879aSdrh         sqlite3ErrorMsg(pParse,"wrong number of arguments to function %.*s()",
1174626a879aSdrh              nId, zId);
1175626a879aSdrh         pNC->nErr++;
1176626a879aSdrh       }
1177626a879aSdrh       if( is_agg ){
1178626a879aSdrh         pExpr->op = TK_AGG_FUNCTION;
1179626a879aSdrh         pNC->hasAgg = 1;
1180626a879aSdrh       }
118173b211abSdrh       if( is_agg ) pNC->allowAgg = 0;
1182626a879aSdrh       for(i=0; pNC->nErr==0 && i<n; i++){
118373b211abSdrh         walkExprTree(pList->a[i].pExpr, nameResolverStep, pNC);
1184626a879aSdrh       }
118573b211abSdrh       if( is_agg ) pNC->allowAgg = 1;
1186626a879aSdrh       /* FIX ME:  Compute pExpr->affinity based on the expected return
1187626a879aSdrh       ** type of the function
1188626a879aSdrh       */
1189626a879aSdrh       return is_agg;
1190626a879aSdrh     }
1191b3bce662Sdanielk1977 #ifndef SQLITE_OMIT_SUBQUERY
1192b3bce662Sdanielk1977     case TK_SELECT:
1193b3bce662Sdanielk1977     case TK_EXISTS:
1194b3bce662Sdanielk1977 #endif
1195b3bce662Sdanielk1977     case TK_IN: {
1196b3bce662Sdanielk1977       if( pExpr->pSelect ){
1197b3bce662Sdanielk1977         int nRef = pNC->nRef;
1198b3bce662Sdanielk1977         sqlite3SelectResolve(pParse, pExpr->pSelect, pNC);
1199b3bce662Sdanielk1977         assert( pNC->nRef>=nRef );
1200b3bce662Sdanielk1977         if( nRef!=pNC->nRef ){
1201b3bce662Sdanielk1977           ExprSetProperty(pExpr, EP_VarSelect);
1202b3bce662Sdanielk1977         }
1203b3bce662Sdanielk1977       }
1204b3bce662Sdanielk1977     }
1205626a879aSdrh   }
1206626a879aSdrh   return 0;
1207626a879aSdrh }
1208626a879aSdrh 
1209626a879aSdrh /*
1210cce7d176Sdrh ** This routine walks an expression tree and resolves references to
1211967e8b73Sdrh ** table columns.  Nodes of the form ID.ID or ID resolve into an
1212aacc543eSdrh ** index to the table in the table list and a column offset.  The
1213aacc543eSdrh ** Expr.opcode for such nodes is changed to TK_COLUMN.  The Expr.iTable
1214aacc543eSdrh ** value is changed to the index of the referenced table in pTabList
1215832508b7Sdrh ** plus the "base" value.  The base value will ultimately become the
1216aacc543eSdrh ** VDBE cursor number for a cursor that is pointing into the referenced
1217aacc543eSdrh ** table.  The Expr.iColumn value is changed to the index of the column
1218aacc543eSdrh ** of the referenced table.  The Expr.iColumn value for the special
1219aacc543eSdrh ** ROWID column is -1.  Any INTEGER PRIMARY KEY column is tried as an
1220aacc543eSdrh ** alias for ROWID.
122119a775c2Sdrh **
1222626a879aSdrh ** Also resolve function names and check the functions for proper
1223626a879aSdrh ** usage.  Make sure all function names are recognized and all functions
1224626a879aSdrh ** have the correct number of arguments.  Leave an error message
1225626a879aSdrh ** in pParse->zErrMsg if anything is amiss.  Return the number of errors.
1226626a879aSdrh **
122773b211abSdrh ** If the expression contains aggregate functions then set the EP_Agg
122873b211abSdrh ** property on the expression.
1229626a879aSdrh */
1230626a879aSdrh int sqlite3ExprResolveNames(
1231b3bce662Sdanielk1977   NameContext *pNC,       /* Namespace to resolve expressions in. */
1232b3bce662Sdanielk1977   Expr *pExpr             /* The expression to be analyzed. */
1233626a879aSdrh ){
123413449892Sdrh   int savedHasAgg;
123573b211abSdrh   if( pExpr==0 ) return 0;
123613449892Sdrh   savedHasAgg = pNC->hasAgg;
123713449892Sdrh   pNC->hasAgg = 0;
1238b3bce662Sdanielk1977   walkExprTree(pExpr, nameResolverStep, pNC);
1239b3bce662Sdanielk1977   if( pNC->nErr>0 ){
124073b211abSdrh     ExprSetProperty(pExpr, EP_Error);
124173b211abSdrh   }
124213449892Sdrh   if( pNC->hasAgg ){
124313449892Sdrh     ExprSetProperty(pExpr, EP_Agg);
124413449892Sdrh   }else if( savedHasAgg ){
124513449892Sdrh     pNC->hasAgg = 1;
124613449892Sdrh   }
124773b211abSdrh   return ExprHasProperty(pExpr, EP_Error);
1248626a879aSdrh }
1249626a879aSdrh 
12501398ad36Sdrh /*
12511398ad36Sdrh ** A pointer instance of this structure is used to pass information
12521398ad36Sdrh ** through walkExprTree into codeSubqueryStep().
12531398ad36Sdrh */
12541398ad36Sdrh typedef struct QueryCoder QueryCoder;
12551398ad36Sdrh struct QueryCoder {
12561398ad36Sdrh   Parse *pParse;       /* The parsing context */
12571398ad36Sdrh   NameContext *pNC;    /* Namespace of first enclosing query */
12581398ad36Sdrh };
12591398ad36Sdrh 
1260626a879aSdrh 
1261626a879aSdrh /*
1262626a879aSdrh ** Generate code for subqueries and IN operators.
1263626a879aSdrh **
126473b211abSdrh ** IN operators comes in two forms:
1265fef5208cSdrh **
1266fef5208cSdrh **           expr IN (exprlist)
1267fef5208cSdrh ** and
1268fef5208cSdrh **           expr IN (SELECT ...)
1269fef5208cSdrh **
1270fef5208cSdrh ** The first form is handled by creating a set holding the list
1271fef5208cSdrh ** of allowed values.  The second form causes the SELECT to generate
1272fef5208cSdrh ** a temporary table.
1273cce7d176Sdrh */
127451522cd3Sdrh #ifndef SQLITE_OMIT_SUBQUERY
1275b3bce662Sdanielk1977 void sqlite3CodeSubselect(Parse *pParse, Expr *pExpr){
127657dbd7b3Sdrh   int testAddr = 0;                       /* One-time test address */
1277b3bce662Sdanielk1977   Vdbe *v = sqlite3GetVdbe(pParse);
1278b3bce662Sdanielk1977   if( v==0 ) return;
1279b3bce662Sdanielk1977 
128057dbd7b3Sdrh   /* This code must be run in its entirety every time it is encountered
128157dbd7b3Sdrh   ** if any of the following is true:
128257dbd7b3Sdrh   **
128357dbd7b3Sdrh   **    *  The right-hand side is a correlated subquery
128457dbd7b3Sdrh   **    *  The right-hand side is an expression list containing variables
128557dbd7b3Sdrh   **    *  We are inside a trigger
128657dbd7b3Sdrh   **
128757dbd7b3Sdrh   ** If all of the above are false, then we can run this code just once
128857dbd7b3Sdrh   ** save the results, and reuse the same result on subsequent invocations.
1289b3bce662Sdanielk1977   */
1290b3bce662Sdanielk1977   if( !ExprHasAnyProperty(pExpr, EP_VarSelect) && !pParse->trigStack ){
1291b3bce662Sdanielk1977     int mem = pParse->nMem++;
1292b3bce662Sdanielk1977     sqlite3VdbeAddOp(v, OP_MemLoad, mem, 0);
129357dbd7b3Sdrh     testAddr = sqlite3VdbeAddOp(v, OP_If, 0, 0);
129453f733c7Sdrh     assert( testAddr>0 || sqlite3_malloc_failed );
1295*d654be80Sdrh     sqlite3VdbeAddOp(v, OP_MemInt, 1, mem);
1296b3bce662Sdanielk1977   }
1297b3bce662Sdanielk1977 
1298cce7d176Sdrh   switch( pExpr->op ){
1299fef5208cSdrh     case TK_IN: {
1300e014a838Sdanielk1977       char affinity;
1301d3d39e93Sdrh       KeyInfo keyInfo;
13029170dd7eSdrh       int addr;        /* Address of OP_OpenVirtual instruction */
1303d3d39e93Sdrh 
1304bf3b721fSdanielk1977       affinity = sqlite3ExprAffinity(pExpr->pLeft);
1305e014a838Sdanielk1977 
1306e014a838Sdanielk1977       /* Whether this is an 'x IN(SELECT...)' or an 'x IN(<exprlist>)'
130757dbd7b3Sdrh       ** expression it is handled the same way. A virtual table is
1308e014a838Sdanielk1977       ** filled with single-field index keys representing the results
1309e014a838Sdanielk1977       ** from the SELECT or the <exprlist>.
1310fef5208cSdrh       **
1311e014a838Sdanielk1977       ** If the 'x' expression is a column value, or the SELECT...
1312e014a838Sdanielk1977       ** statement returns a column value, then the affinity of that
1313e014a838Sdanielk1977       ** column is used to build the index keys. If both 'x' and the
1314e014a838Sdanielk1977       ** SELECT... statement are columns, then numeric affinity is used
1315e014a838Sdanielk1977       ** if either column has NUMERIC or INTEGER affinity. If neither
1316e014a838Sdanielk1977       ** 'x' nor the SELECT... statement are columns, then numeric affinity
1317e014a838Sdanielk1977       ** is used.
1318fef5208cSdrh       */
1319832508b7Sdrh       pExpr->iTable = pParse->nTab++;
13209170dd7eSdrh       addr = sqlite3VdbeAddOp(v, OP_OpenVirtual, pExpr->iTable, 0);
1321d3d39e93Sdrh       memset(&keyInfo, 0, sizeof(keyInfo));
1322d3d39e93Sdrh       keyInfo.nField = 1;
1323f3218feaSdrh       sqlite3VdbeAddOp(v, OP_SetNumColumns, pExpr->iTable, 1);
1324e014a838Sdanielk1977 
1325e014a838Sdanielk1977       if( pExpr->pSelect ){
1326e014a838Sdanielk1977         /* Case 1:     expr IN (SELECT ...)
1327e014a838Sdanielk1977         **
1328e014a838Sdanielk1977         ** Generate code to write the results of the select into the temporary
1329e014a838Sdanielk1977         ** table allocated and opened above.
1330e014a838Sdanielk1977         */
1331e014a838Sdanielk1977         int iParm = pExpr->iTable +  (((int)affinity)<<16);
1332be5c89acSdrh         ExprList *pEList;
1333e014a838Sdanielk1977         assert( (pExpr->iTable&0x0000FFFF)==pExpr->iTable );
1334b3bce662Sdanielk1977         sqlite3Select(pParse, pExpr->pSelect, SRT_Set, iParm, 0, 0, 0, 0);
1335be5c89acSdrh         pEList = pExpr->pSelect->pEList;
1336be5c89acSdrh         if( pEList && pEList->nExpr>0 ){
13377cedc8d4Sdanielk1977           keyInfo.aColl[0] = binaryCompareCollSeq(pParse, pExpr->pLeft,
1338be5c89acSdrh               pEList->a[0].pExpr);
13390202b29eSdanielk1977         }
1340fef5208cSdrh       }else if( pExpr->pList ){
1341fef5208cSdrh         /* Case 2:     expr IN (exprlist)
1342fef5208cSdrh         **
1343e014a838Sdanielk1977 	** For each expression, build an index key from the evaluation and
1344e014a838Sdanielk1977         ** store it in the temporary table. If <expr> is a column, then use
1345e014a838Sdanielk1977         ** that columns affinity when building index keys. If <expr> is not
1346e014a838Sdanielk1977         ** a column, use numeric affinity.
1347fef5208cSdrh         */
1348e014a838Sdanielk1977         int i;
134957dbd7b3Sdrh         ExprList *pList = pExpr->pList;
135057dbd7b3Sdrh         struct ExprList_item *pItem;
135157dbd7b3Sdrh 
1352e014a838Sdanielk1977         if( !affinity ){
1353e014a838Sdanielk1977           affinity = SQLITE_AFF_NUMERIC;
1354e014a838Sdanielk1977         }
13550202b29eSdanielk1977         keyInfo.aColl[0] = pExpr->pLeft->pColl;
1356e014a838Sdanielk1977 
1357e014a838Sdanielk1977         /* Loop through each expression in <exprlist>. */
135857dbd7b3Sdrh         for(i=pList->nExpr, pItem=pList->a; i>0; i--, pItem++){
135957dbd7b3Sdrh           Expr *pE2 = pItem->pExpr;
1360e014a838Sdanielk1977 
136157dbd7b3Sdrh           /* If the expression is not constant then we will need to
136257dbd7b3Sdrh           ** disable the test that was generated above that makes sure
136357dbd7b3Sdrh           ** this code only executes once.  Because for a non-constant
136457dbd7b3Sdrh           ** expression we need to rerun this code each time.
136557dbd7b3Sdrh           */
13666c30be8eSdrh           if( testAddr>0 && !sqlite3ExprIsConstant(pE2) ){
136757dbd7b3Sdrh             VdbeOp *aOp = sqlite3VdbeGetOp(v, testAddr-1);
136857dbd7b3Sdrh             int i;
1369*d654be80Sdrh             for(i=0; i<3; i++){
137057dbd7b3Sdrh               aOp[i].opcode = OP_Noop;
137157dbd7b3Sdrh             }
137257dbd7b3Sdrh             testAddr = 0;
13734794b980Sdrh           }
1374e014a838Sdanielk1977 
1375e014a838Sdanielk1977           /* Evaluate the expression and insert it into the temp table */
13764adee20fSdanielk1977           sqlite3ExprCode(pParse, pE2);
137794a11211Sdrh           sqlite3VdbeOp3(v, OP_MakeRecord, 1, 0, &affinity, 1);
1378f0863fe5Sdrh           sqlite3VdbeAddOp(v, OP_IdxInsert, pExpr->iTable, 0);
1379fef5208cSdrh         }
1380fef5208cSdrh       }
13810202b29eSdanielk1977       sqlite3VdbeChangeP3(v, addr, (void *)&keyInfo, P3_KEYINFO);
1382b3bce662Sdanielk1977       break;
1383fef5208cSdrh     }
1384fef5208cSdrh 
138551522cd3Sdrh     case TK_EXISTS:
138619a775c2Sdrh     case TK_SELECT: {
1387fef5208cSdrh       /* This has to be a scalar SELECT.  Generate code to put the
1388fef5208cSdrh       ** value of this select in a memory cell and record the number
1389967e8b73Sdrh       ** of the memory cell in iColumn.
1390fef5208cSdrh       */
139151522cd3Sdrh       int sop;
139251522cd3Sdrh       Select *pSel;
13931398ad36Sdrh 
1394967e8b73Sdrh       pExpr->iColumn = pParse->nMem++;
139551522cd3Sdrh       pSel = pExpr->pSelect;
139651522cd3Sdrh       if( pExpr->op==TK_SELECT ){
139751522cd3Sdrh         sop = SRT_Mem;
139851522cd3Sdrh       }else{
139951522cd3Sdrh         static const Token one = { "1", 0, 1 };
140051522cd3Sdrh         sop = SRT_Exists;
140151522cd3Sdrh         sqlite3ExprListDelete(pSel->pEList);
140251522cd3Sdrh         pSel->pEList = sqlite3ExprListAppend(0,
140351522cd3Sdrh                           sqlite3Expr(TK_INTEGER, 0, 0, &one), 0);
140451522cd3Sdrh       }
1405b3bce662Sdanielk1977       sqlite3Select(pParse, pSel, sop, pExpr->iColumn, 0, 0, 0, 0);
1406b3bce662Sdanielk1977       break;
140719a775c2Sdrh     }
1408cce7d176Sdrh   }
1409b3bce662Sdanielk1977 
141057dbd7b3Sdrh   if( testAddr ){
1411*d654be80Sdrh     sqlite3VdbeJumpHere(v, testAddr);
1412b3bce662Sdanielk1977   }
1413b3bce662Sdanielk1977   return;
1414cce7d176Sdrh }
141551522cd3Sdrh #endif /* SQLITE_OMIT_SUBQUERY */
1416cce7d176Sdrh 
1417cce7d176Sdrh /*
1418fec19aadSdrh ** Generate an instruction that will put the integer describe by
1419fec19aadSdrh ** text z[0..n-1] on the stack.
1420fec19aadSdrh */
1421fec19aadSdrh static void codeInteger(Vdbe *v, const char *z, int n){
1422fec19aadSdrh   int i;
14236fec0762Sdrh   if( sqlite3GetInt32(z, &i) ){
14246fec0762Sdrh     sqlite3VdbeAddOp(v, OP_Integer, i, 0);
14256fec0762Sdrh   }else if( sqlite3FitsIn64Bits(z) ){
142629dda4aeSdrh     sqlite3VdbeOp3(v, OP_Int64, 0, 0, z, n);
1427fec19aadSdrh   }else{
1428fec19aadSdrh     sqlite3VdbeOp3(v, OP_Real, 0, 0, z, n);
1429fec19aadSdrh   }
1430fec19aadSdrh }
1431fec19aadSdrh 
1432fec19aadSdrh /*
1433cce7d176Sdrh ** Generate code into the current Vdbe to evaluate the given
14341ccde15dSdrh ** expression and leave the result on the top of stack.
1435f2bc013cSdrh **
1436f2bc013cSdrh ** This code depends on the fact that certain token values (ex: TK_EQ)
1437f2bc013cSdrh ** are the same as opcode values (ex: OP_Eq) that implement the corresponding
1438f2bc013cSdrh ** operation.  Special comments in vdbe.c and the mkopcodeh.awk script in
1439f2bc013cSdrh ** the make process cause these values to align.  Assert()s in the code
1440f2bc013cSdrh ** below verify that the numbers are aligned correctly.
1441cce7d176Sdrh */
14424adee20fSdanielk1977 void sqlite3ExprCode(Parse *pParse, Expr *pExpr){
1443cce7d176Sdrh   Vdbe *v = pParse->pVdbe;
1444cce7d176Sdrh   int op;
14457977a17fSdanielk1977   if( v==0 ) return;
14467977a17fSdanielk1977   if( pExpr==0 ){
1447f0863fe5Sdrh     sqlite3VdbeAddOp(v, OP_Null, 0, 0);
14487977a17fSdanielk1977     return;
14497977a17fSdanielk1977   }
1450f2bc013cSdrh   op = pExpr->op;
1451f2bc013cSdrh   switch( op ){
145213449892Sdrh     case TK_AGG_COLUMN: {
145313449892Sdrh       AggInfo *pAggInfo = pExpr->pAggInfo;
145413449892Sdrh       struct AggInfo_col *pCol = &pAggInfo->aCol[pExpr->iAgg];
145513449892Sdrh       if( !pAggInfo->directMode ){
145613449892Sdrh         sqlite3VdbeAddOp(v, OP_MemLoad, pCol->iMem, 0);
145713449892Sdrh         break;
145813449892Sdrh       }else if( pAggInfo->useSortingIdx ){
145913449892Sdrh         sqlite3VdbeAddOp(v, OP_Column, pAggInfo->sortingIdx,
146013449892Sdrh                               pCol->iSorterColumn);
146113449892Sdrh         break;
146213449892Sdrh       }
146313449892Sdrh       /* Otherwise, fall thru into the TK_COLUMN case */
146413449892Sdrh     }
1465967e8b73Sdrh     case TK_COLUMN: {
146613449892Sdrh       if( pExpr->iColumn>=0 ){
14674adee20fSdanielk1977         sqlite3VdbeAddOp(v, OP_Column, pExpr->iTable, pExpr->iColumn);
1468aee18ef8Sdanielk1977         sqlite3ColumnDefault(v, pExpr->pTab, pExpr->iColumn);
1469c4a3c779Sdrh       }else{
1470f0863fe5Sdrh         sqlite3VdbeAddOp(v, OP_Rowid, pExpr->iTable, 0);
14712282792aSdrh       }
1472cce7d176Sdrh       break;
1473cce7d176Sdrh     }
1474cce7d176Sdrh     case TK_INTEGER: {
1475fec19aadSdrh       codeInteger(v, pExpr->token.z, pExpr->token.n);
1476fec19aadSdrh       break;
147751e9a445Sdrh     }
1478fec19aadSdrh     case TK_FLOAT:
1479fec19aadSdrh     case TK_STRING: {
1480f2bc013cSdrh       assert( TK_FLOAT==OP_Real );
1481f2bc013cSdrh       assert( TK_STRING==OP_String8 );
1482d2687b77Sdrh       sqlite3DequoteExpr(pExpr);
1483fec19aadSdrh       sqlite3VdbeOp3(v, op, 0, 0, pExpr->token.z, pExpr->token.n);
1484cce7d176Sdrh       break;
1485cce7d176Sdrh     }
1486f0863fe5Sdrh     case TK_NULL: {
1487f0863fe5Sdrh       sqlite3VdbeAddOp(v, OP_Null, 0, 0);
1488f0863fe5Sdrh       break;
1489f0863fe5Sdrh     }
14905338a5f7Sdanielk1977 #ifndef SQLITE_OMIT_BLOB_LITERAL
1491c572ef7fSdanielk1977     case TK_BLOB: {
14926c8c6cecSdrh       int n;
14936c8c6cecSdrh       const char *z;
1494f2bc013cSdrh       assert( TK_BLOB==OP_HexBlob );
14956c8c6cecSdrh       n = pExpr->token.n - 3;
14966c8c6cecSdrh       z = pExpr->token.z + 2;
14976c8c6cecSdrh       assert( n>=0 );
14986c8c6cecSdrh       if( n==0 ){
14996c8c6cecSdrh         z = "";
15006c8c6cecSdrh       }
15016c8c6cecSdrh       sqlite3VdbeOp3(v, op, 0, 0, z, n);
1502c572ef7fSdanielk1977       break;
1503c572ef7fSdanielk1977     }
15045338a5f7Sdanielk1977 #endif
150550457896Sdrh     case TK_VARIABLE: {
15064adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_Variable, pExpr->iTable, 0);
1507895d7472Sdrh       if( pExpr->token.n>1 ){
1508895d7472Sdrh         sqlite3VdbeChangeP3(v, -1, pExpr->token.z, pExpr->token.n);
1509895d7472Sdrh       }
151050457896Sdrh       break;
151150457896Sdrh     }
15124e0cff60Sdrh     case TK_REGISTER: {
15134e0cff60Sdrh       sqlite3VdbeAddOp(v, OP_MemLoad, pExpr->iTable, 0);
15144e0cff60Sdrh       break;
15154e0cff60Sdrh     }
1516487e262fSdrh #ifndef SQLITE_OMIT_CAST
1517487e262fSdrh     case TK_CAST: {
1518487e262fSdrh       /* Expressions of the form:   CAST(pLeft AS token) */
1519487e262fSdrh       int aff, op;
1520487e262fSdrh       sqlite3ExprCode(pParse, pExpr->pLeft);
1521487e262fSdrh       aff = sqlite3AffinityType(&pExpr->token);
1522487e262fSdrh       switch( aff ){
1523487e262fSdrh         case SQLITE_AFF_INTEGER:   op = OP_ToInt;      break;
1524487e262fSdrh         case SQLITE_AFF_NUMERIC:   op = OP_ToNumeric;  break;
1525487e262fSdrh         case SQLITE_AFF_TEXT:      op = OP_ToText;     break;
1526487e262fSdrh         case SQLITE_AFF_NONE:      op = OP_ToBlob;     break;
1527487e262fSdrh       }
1528487e262fSdrh       sqlite3VdbeAddOp(v, op, 0, 0);
1529487e262fSdrh       break;
1530487e262fSdrh     }
1531487e262fSdrh #endif /* SQLITE_OMIT_CAST */
1532c9b84a1fSdrh     case TK_LT:
1533c9b84a1fSdrh     case TK_LE:
1534c9b84a1fSdrh     case TK_GT:
1535c9b84a1fSdrh     case TK_GE:
1536c9b84a1fSdrh     case TK_NE:
1537c9b84a1fSdrh     case TK_EQ: {
1538f2bc013cSdrh       assert( TK_LT==OP_Lt );
1539f2bc013cSdrh       assert( TK_LE==OP_Le );
1540f2bc013cSdrh       assert( TK_GT==OP_Gt );
1541f2bc013cSdrh       assert( TK_GE==OP_Ge );
1542f2bc013cSdrh       assert( TK_EQ==OP_Eq );
1543f2bc013cSdrh       assert( TK_NE==OP_Ne );
1544a37cdde0Sdanielk1977       sqlite3ExprCode(pParse, pExpr->pLeft);
1545a37cdde0Sdanielk1977       sqlite3ExprCode(pParse, pExpr->pRight);
1546be5c89acSdrh       codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, 0, 0);
1547a37cdde0Sdanielk1977       break;
1548c9b84a1fSdrh     }
1549cce7d176Sdrh     case TK_AND:
1550cce7d176Sdrh     case TK_OR:
1551cce7d176Sdrh     case TK_PLUS:
1552cce7d176Sdrh     case TK_STAR:
1553cce7d176Sdrh     case TK_MINUS:
1554bf4133cbSdrh     case TK_REM:
1555bf4133cbSdrh     case TK_BITAND:
1556bf4133cbSdrh     case TK_BITOR:
155717c40294Sdrh     case TK_SLASH:
1558bf4133cbSdrh     case TK_LSHIFT:
1559855eb1cfSdrh     case TK_RSHIFT:
15600040077dSdrh     case TK_CONCAT: {
1561f2bc013cSdrh       assert( TK_AND==OP_And );
1562f2bc013cSdrh       assert( TK_OR==OP_Or );
1563f2bc013cSdrh       assert( TK_PLUS==OP_Add );
1564f2bc013cSdrh       assert( TK_MINUS==OP_Subtract );
1565f2bc013cSdrh       assert( TK_REM==OP_Remainder );
1566f2bc013cSdrh       assert( TK_BITAND==OP_BitAnd );
1567f2bc013cSdrh       assert( TK_BITOR==OP_BitOr );
1568f2bc013cSdrh       assert( TK_SLASH==OP_Divide );
1569f2bc013cSdrh       assert( TK_LSHIFT==OP_ShiftLeft );
1570f2bc013cSdrh       assert( TK_RSHIFT==OP_ShiftRight );
1571f2bc013cSdrh       assert( TK_CONCAT==OP_Concat );
15724adee20fSdanielk1977       sqlite3ExprCode(pParse, pExpr->pLeft);
15734adee20fSdanielk1977       sqlite3ExprCode(pParse, pExpr->pRight);
1574855eb1cfSdrh       sqlite3VdbeAddOp(v, op, 0, 0);
15750040077dSdrh       break;
15760040077dSdrh     }
1577cce7d176Sdrh     case TK_UMINUS: {
1578fec19aadSdrh       Expr *pLeft = pExpr->pLeft;
1579fec19aadSdrh       assert( pLeft );
1580fec19aadSdrh       if( pLeft->op==TK_FLOAT || pLeft->op==TK_INTEGER ){
1581fec19aadSdrh         Token *p = &pLeft->token;
15826e142f54Sdrh         char *z = sqliteMalloc( p->n + 2 );
15836e142f54Sdrh         sprintf(z, "-%.*s", p->n, p->z);
1584fec19aadSdrh         if( pLeft->op==TK_FLOAT ){
1585fec19aadSdrh           sqlite3VdbeOp3(v, OP_Real, 0, 0, z, p->n+1);
1586e6840900Sdrh         }else{
1587fec19aadSdrh           codeInteger(v, z, p->n+1);
1588e6840900Sdrh         }
15896e142f54Sdrh         sqliteFree(z);
15906e142f54Sdrh         break;
15916e142f54Sdrh       }
15921ccde15dSdrh       /* Fall through into TK_NOT */
15936e142f54Sdrh     }
1594bf4133cbSdrh     case TK_BITNOT:
15956e142f54Sdrh     case TK_NOT: {
1596f2bc013cSdrh       assert( TK_BITNOT==OP_BitNot );
1597f2bc013cSdrh       assert( TK_NOT==OP_Not );
15984adee20fSdanielk1977       sqlite3ExprCode(pParse, pExpr->pLeft);
15994adee20fSdanielk1977       sqlite3VdbeAddOp(v, op, 0, 0);
1600cce7d176Sdrh       break;
1601cce7d176Sdrh     }
1602cce7d176Sdrh     case TK_ISNULL:
1603cce7d176Sdrh     case TK_NOTNULL: {
1604cce7d176Sdrh       int dest;
1605f2bc013cSdrh       assert( TK_ISNULL==OP_IsNull );
1606f2bc013cSdrh       assert( TK_NOTNULL==OP_NotNull );
16074adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_Integer, 1, 0);
16084adee20fSdanielk1977       sqlite3ExprCode(pParse, pExpr->pLeft);
16094adee20fSdanielk1977       dest = sqlite3VdbeCurrentAddr(v) + 2;
16104adee20fSdanielk1977       sqlite3VdbeAddOp(v, op, 1, dest);
16114adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_AddImm, -1, 0);
1612a37cdde0Sdanielk1977       break;
1613f2bc013cSdrh     }
16142282792aSdrh     case TK_AGG_FUNCTION: {
161513449892Sdrh       AggInfo *pInfo = pExpr->pAggInfo;
161613449892Sdrh       sqlite3VdbeAddOp(v, OP_MemLoad, pInfo->aFunc[pExpr->iAgg].iMem, 0);
16172282792aSdrh       break;
16182282792aSdrh     }
1619b71090fdSdrh     case TK_CONST_FUNC:
1620cce7d176Sdrh     case TK_FUNCTION: {
1621cce7d176Sdrh       ExprList *pList = pExpr->pList;
162289425d5eSdrh       int nExpr = pList ? pList->nExpr : 0;
16230bce8354Sdrh       FuncDef *pDef;
16244b59ab5eSdrh       int nId;
16254b59ab5eSdrh       const char *zId;
162613449892Sdrh       int constMask = 0;
1627682f68b0Sdanielk1977       int i;
1628d8123366Sdanielk1977       u8 enc = pParse->db->enc;
1629dc1bdc4fSdanielk1977       CollSeq *pColl = 0;
1630b71090fdSdrh       zId = pExpr->token.z;
1631b71090fdSdrh       nId = pExpr->token.n;
1632d8123366Sdanielk1977       pDef = sqlite3FindFunction(pParse->db, zId, nId, nExpr, enc, 0);
16330bce8354Sdrh       assert( pDef!=0 );
1634f9b596ebSdrh       nExpr = sqlite3ExprCodeExprList(pParse, pList);
1635682f68b0Sdanielk1977       for(i=0; i<nExpr && i<32; i++){
1636d02eb1fdSdanielk1977         if( sqlite3ExprIsConstant(pList->a[i].pExpr) ){
163713449892Sdrh           constMask |= (1<<i);
1638d02eb1fdSdanielk1977         }
1639dc1bdc4fSdanielk1977         if( pDef->needCollSeq && !pColl ){
1640dc1bdc4fSdanielk1977           pColl = sqlite3ExprCollSeq(pParse, pList->a[i].pExpr);
1641dc1bdc4fSdanielk1977         }
1642dc1bdc4fSdanielk1977       }
1643dc1bdc4fSdanielk1977       if( pDef->needCollSeq ){
1644dc1bdc4fSdanielk1977         if( !pColl ) pColl = pParse->db->pDfltColl;
1645d8123366Sdanielk1977         sqlite3VdbeOp3(v, OP_CollSeq, 0, 0, (char *)pColl, P3_COLLSEQ);
1646682f68b0Sdanielk1977       }
164713449892Sdrh       sqlite3VdbeOp3(v, OP_Function, constMask, nExpr, (char*)pDef, P3_FUNCDEF);
16486ec2733bSdrh       break;
16496ec2733bSdrh     }
1650fe2093d7Sdrh #ifndef SQLITE_OMIT_SUBQUERY
1651fe2093d7Sdrh     case TK_EXISTS:
165219a775c2Sdrh     case TK_SELECT: {
1653b3bce662Sdanielk1977       sqlite3CodeSubselect(pParse, pExpr);
16544adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_MemLoad, pExpr->iColumn, 0);
1655ad6d9460Sdrh       VdbeComment((v, "# load subquery result"));
165619a775c2Sdrh       break;
165719a775c2Sdrh     }
1658fef5208cSdrh     case TK_IN: {
1659fef5208cSdrh       int addr;
166094a11211Sdrh       char affinity;
1661b3bce662Sdanielk1977       sqlite3CodeSubselect(pParse, pExpr);
1662e014a838Sdanielk1977 
1663e014a838Sdanielk1977       /* Figure out the affinity to use to create a key from the results
1664e014a838Sdanielk1977       ** of the expression. affinityStr stores a static string suitable for
1665ededfd5eSdanielk1977       ** P3 of OP_MakeRecord.
1666e014a838Sdanielk1977       */
166794a11211Sdrh       affinity = comparisonAffinity(pExpr);
1668e014a838Sdanielk1977 
16694adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_Integer, 1, 0);
1670e014a838Sdanielk1977 
1671e014a838Sdanielk1977       /* Code the <expr> from "<expr> IN (...)". The temporary table
1672e014a838Sdanielk1977       ** pExpr->iTable contains the values that make up the (...) set.
1673e014a838Sdanielk1977       */
16744adee20fSdanielk1977       sqlite3ExprCode(pParse, pExpr->pLeft);
16754adee20fSdanielk1977       addr = sqlite3VdbeCurrentAddr(v);
1676e014a838Sdanielk1977       sqlite3VdbeAddOp(v, OP_NotNull, -1, addr+4);            /* addr + 0 */
16774adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_Pop, 2, 0);
1678f0863fe5Sdrh       sqlite3VdbeAddOp(v, OP_Null, 0, 0);
1679e014a838Sdanielk1977       sqlite3VdbeAddOp(v, OP_Goto, 0, addr+7);
168094a11211Sdrh       sqlite3VdbeOp3(v, OP_MakeRecord, 1, 0, &affinity, 1);   /* addr + 4 */
1681e014a838Sdanielk1977       sqlite3VdbeAddOp(v, OP_Found, pExpr->iTable, addr+7);
1682e014a838Sdanielk1977       sqlite3VdbeAddOp(v, OP_AddImm, -1, 0);                  /* addr + 6 */
1683e014a838Sdanielk1977 
1684fef5208cSdrh       break;
1685fef5208cSdrh     }
168693758c8dSdanielk1977 #endif
1687fef5208cSdrh     case TK_BETWEEN: {
1688be5c89acSdrh       Expr *pLeft = pExpr->pLeft;
1689be5c89acSdrh       struct ExprList_item *pLItem = pExpr->pList->a;
1690be5c89acSdrh       Expr *pRight = pLItem->pExpr;
1691be5c89acSdrh       sqlite3ExprCode(pParse, pLeft);
16924adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_Dup, 0, 0);
1693be5c89acSdrh       sqlite3ExprCode(pParse, pRight);
1694be5c89acSdrh       codeCompare(pParse, pLeft, pRight, OP_Ge, 0, 0);
16954adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_Pull, 1, 0);
1696be5c89acSdrh       pLItem++;
1697be5c89acSdrh       pRight = pLItem->pExpr;
1698be5c89acSdrh       sqlite3ExprCode(pParse, pRight);
1699be5c89acSdrh       codeCompare(pParse, pLeft, pRight, OP_Le, 0, 0);
17004adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_And, 0, 0);
1701fef5208cSdrh       break;
1702fef5208cSdrh     }
170351e9a445Sdrh     case TK_UPLUS:
1704a2e00042Sdrh     case TK_AS: {
17054adee20fSdanielk1977       sqlite3ExprCode(pParse, pExpr->pLeft);
1706a2e00042Sdrh       break;
1707a2e00042Sdrh     }
170817a7f8ddSdrh     case TK_CASE: {
170917a7f8ddSdrh       int expr_end_label;
1710f5905aa7Sdrh       int jumpInst;
1711f5905aa7Sdrh       int nExpr;
171217a7f8ddSdrh       int i;
1713be5c89acSdrh       ExprList *pEList;
1714be5c89acSdrh       struct ExprList_item *aListelem;
171517a7f8ddSdrh 
171617a7f8ddSdrh       assert(pExpr->pList);
171717a7f8ddSdrh       assert((pExpr->pList->nExpr % 2) == 0);
171817a7f8ddSdrh       assert(pExpr->pList->nExpr > 0);
1719be5c89acSdrh       pEList = pExpr->pList;
1720be5c89acSdrh       aListelem = pEList->a;
1721be5c89acSdrh       nExpr = pEList->nExpr;
17224adee20fSdanielk1977       expr_end_label = sqlite3VdbeMakeLabel(v);
172317a7f8ddSdrh       if( pExpr->pLeft ){
17244adee20fSdanielk1977         sqlite3ExprCode(pParse, pExpr->pLeft);
1725cce7d176Sdrh       }
1726f5905aa7Sdrh       for(i=0; i<nExpr; i=i+2){
1727be5c89acSdrh         sqlite3ExprCode(pParse, aListelem[i].pExpr);
172817a7f8ddSdrh         if( pExpr->pLeft ){
17294adee20fSdanielk1977           sqlite3VdbeAddOp(v, OP_Dup, 1, 1);
1730be5c89acSdrh           jumpInst = codeCompare(pParse, pExpr->pLeft, aListelem[i].pExpr,
1731be5c89acSdrh                                  OP_Ne, 0, 1);
17324adee20fSdanielk1977           sqlite3VdbeAddOp(v, OP_Pop, 1, 0);
1733f5905aa7Sdrh         }else{
17344adee20fSdanielk1977           jumpInst = sqlite3VdbeAddOp(v, OP_IfNot, 1, 0);
173517a7f8ddSdrh         }
1736be5c89acSdrh         sqlite3ExprCode(pParse, aListelem[i+1].pExpr);
17374adee20fSdanielk1977         sqlite3VdbeAddOp(v, OP_Goto, 0, expr_end_label);
1738*d654be80Sdrh         sqlite3VdbeJumpHere(v, jumpInst);
173917a7f8ddSdrh       }
1740f570f011Sdrh       if( pExpr->pLeft ){
17414adee20fSdanielk1977         sqlite3VdbeAddOp(v, OP_Pop, 1, 0);
1742f570f011Sdrh       }
174317a7f8ddSdrh       if( pExpr->pRight ){
17444adee20fSdanielk1977         sqlite3ExprCode(pParse, pExpr->pRight);
174517a7f8ddSdrh       }else{
1746f0863fe5Sdrh         sqlite3VdbeAddOp(v, OP_Null, 0, 0);
174717a7f8ddSdrh       }
17484adee20fSdanielk1977       sqlite3VdbeResolveLabel(v, expr_end_label);
17496f34903eSdanielk1977       break;
17506f34903eSdanielk1977     }
17515338a5f7Sdanielk1977 #ifndef SQLITE_OMIT_TRIGGER
17526f34903eSdanielk1977     case TK_RAISE: {
17536f34903eSdanielk1977       if( !pParse->trigStack ){
17544adee20fSdanielk1977         sqlite3ErrorMsg(pParse,
1755da93d238Sdrh                        "RAISE() may only be used within a trigger-program");
17566f34903eSdanielk1977 	return;
17576f34903eSdanielk1977       }
1758ad6d9460Sdrh       if( pExpr->iColumn!=OE_Ignore ){
1759ad6d9460Sdrh          assert( pExpr->iColumn==OE_Rollback ||
17606f34903eSdanielk1977                  pExpr->iColumn == OE_Abort ||
1761ad6d9460Sdrh                  pExpr->iColumn == OE_Fail );
1762d2687b77Sdrh          sqlite3DequoteExpr(pExpr);
17634adee20fSdanielk1977          sqlite3VdbeOp3(v, OP_Halt, SQLITE_CONSTRAINT, pExpr->iColumn,
1764701a0aebSdrh                         pExpr->token.z, pExpr->token.n);
17656f34903eSdanielk1977       } else {
17666f34903eSdanielk1977          assert( pExpr->iColumn == OE_Ignore );
1767344737f6Sdrh          sqlite3VdbeAddOp(v, OP_ContextPop, 0, 0);
1768ad6d9460Sdrh          sqlite3VdbeAddOp(v, OP_Goto, 0, pParse->trigStack->ignoreJump);
1769ad6d9460Sdrh          VdbeComment((v, "# raise(IGNORE)"));
17706f34903eSdanielk1977       }
177117a7f8ddSdrh     }
17725338a5f7Sdanielk1977 #endif
177317a7f8ddSdrh     break;
177417a7f8ddSdrh   }
1775cce7d176Sdrh }
1776cce7d176Sdrh 
177793758c8dSdanielk1977 #ifndef SQLITE_OMIT_TRIGGER
1778cce7d176Sdrh /*
177925303780Sdrh ** Generate code that evalutes the given expression and leaves the result
178025303780Sdrh ** on the stack.  See also sqlite3ExprCode().
178125303780Sdrh **
178225303780Sdrh ** This routine might also cache the result and modify the pExpr tree
178325303780Sdrh ** so that it will make use of the cached result on subsequent evaluations
178425303780Sdrh ** rather than evaluate the whole expression again.  Trivial expressions are
178525303780Sdrh ** not cached.  If the expression is cached, its result is stored in a
178625303780Sdrh ** memory location.
178725303780Sdrh */
178825303780Sdrh void sqlite3ExprCodeAndCache(Parse *pParse, Expr *pExpr){
178925303780Sdrh   Vdbe *v = pParse->pVdbe;
179025303780Sdrh   int iMem;
179125303780Sdrh   int addr1, addr2;
179225303780Sdrh   if( v==0 ) return;
179325303780Sdrh   addr1 = sqlite3VdbeCurrentAddr(v);
179425303780Sdrh   sqlite3ExprCode(pParse, pExpr);
179525303780Sdrh   addr2 = sqlite3VdbeCurrentAddr(v);
179625303780Sdrh   if( addr2>addr1+1 || sqlite3VdbeGetOp(v, addr1)->opcode==OP_Function ){
179725303780Sdrh     iMem = pExpr->iTable = pParse->nMem++;
179825303780Sdrh     sqlite3VdbeAddOp(v, OP_MemStore, iMem, 0);
179925303780Sdrh     pExpr->op = TK_REGISTER;
180025303780Sdrh   }
180125303780Sdrh }
180293758c8dSdanielk1977 #endif
180325303780Sdrh 
180425303780Sdrh /*
1805268380caSdrh ** Generate code that pushes the value of every element of the given
1806f9b596ebSdrh ** expression list onto the stack.
1807268380caSdrh **
1808268380caSdrh ** Return the number of elements pushed onto the stack.
1809268380caSdrh */
18104adee20fSdanielk1977 int sqlite3ExprCodeExprList(
1811268380caSdrh   Parse *pParse,     /* Parsing context */
1812f9b596ebSdrh   ExprList *pList    /* The expression list to be coded */
1813268380caSdrh ){
1814268380caSdrh   struct ExprList_item *pItem;
1815268380caSdrh   int i, n;
1816268380caSdrh   if( pList==0 ) return 0;
1817268380caSdrh   n = pList->nExpr;
1818c182d163Sdrh   for(pItem=pList->a, i=n; i>0; i--, pItem++){
18194adee20fSdanielk1977     sqlite3ExprCode(pParse, pItem->pExpr);
1820268380caSdrh   }
1821f9b596ebSdrh   return n;
1822268380caSdrh }
1823268380caSdrh 
1824268380caSdrh /*
1825cce7d176Sdrh ** Generate code for a boolean expression such that a jump is made
1826cce7d176Sdrh ** to the label "dest" if the expression is true but execution
1827cce7d176Sdrh ** continues straight thru if the expression is false.
1828f5905aa7Sdrh **
1829f5905aa7Sdrh ** If the expression evaluates to NULL (neither true nor false), then
1830f5905aa7Sdrh ** take the jump if the jumpIfNull flag is true.
1831f2bc013cSdrh **
1832f2bc013cSdrh ** This code depends on the fact that certain token values (ex: TK_EQ)
1833f2bc013cSdrh ** are the same as opcode values (ex: OP_Eq) that implement the corresponding
1834f2bc013cSdrh ** operation.  Special comments in vdbe.c and the mkopcodeh.awk script in
1835f2bc013cSdrh ** the make process cause these values to align.  Assert()s in the code
1836f2bc013cSdrh ** below verify that the numbers are aligned correctly.
1837cce7d176Sdrh */
18384adee20fSdanielk1977 void sqlite3ExprIfTrue(Parse *pParse, Expr *pExpr, int dest, int jumpIfNull){
1839cce7d176Sdrh   Vdbe *v = pParse->pVdbe;
1840cce7d176Sdrh   int op = 0;
1841daffd0e5Sdrh   if( v==0 || pExpr==0 ) return;
1842f2bc013cSdrh   op = pExpr->op;
1843f2bc013cSdrh   switch( op ){
1844cce7d176Sdrh     case TK_AND: {
18454adee20fSdanielk1977       int d2 = sqlite3VdbeMakeLabel(v);
18464adee20fSdanielk1977       sqlite3ExprIfFalse(pParse, pExpr->pLeft, d2, !jumpIfNull);
18474adee20fSdanielk1977       sqlite3ExprIfTrue(pParse, pExpr->pRight, dest, jumpIfNull);
18484adee20fSdanielk1977       sqlite3VdbeResolveLabel(v, d2);
1849cce7d176Sdrh       break;
1850cce7d176Sdrh     }
1851cce7d176Sdrh     case TK_OR: {
18524adee20fSdanielk1977       sqlite3ExprIfTrue(pParse, pExpr->pLeft, dest, jumpIfNull);
18534adee20fSdanielk1977       sqlite3ExprIfTrue(pParse, pExpr->pRight, dest, jumpIfNull);
1854cce7d176Sdrh       break;
1855cce7d176Sdrh     }
1856cce7d176Sdrh     case TK_NOT: {
18574adee20fSdanielk1977       sqlite3ExprIfFalse(pParse, pExpr->pLeft, dest, jumpIfNull);
1858cce7d176Sdrh       break;
1859cce7d176Sdrh     }
1860cce7d176Sdrh     case TK_LT:
1861cce7d176Sdrh     case TK_LE:
1862cce7d176Sdrh     case TK_GT:
1863cce7d176Sdrh     case TK_GE:
1864cce7d176Sdrh     case TK_NE:
18650ac65892Sdrh     case TK_EQ: {
1866f2bc013cSdrh       assert( TK_LT==OP_Lt );
1867f2bc013cSdrh       assert( TK_LE==OP_Le );
1868f2bc013cSdrh       assert( TK_GT==OP_Gt );
1869f2bc013cSdrh       assert( TK_GE==OP_Ge );
1870f2bc013cSdrh       assert( TK_EQ==OP_Eq );
1871f2bc013cSdrh       assert( TK_NE==OP_Ne );
18724adee20fSdanielk1977       sqlite3ExprCode(pParse, pExpr->pLeft);
18734adee20fSdanielk1977       sqlite3ExprCode(pParse, pExpr->pRight);
1874be5c89acSdrh       codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, dest, jumpIfNull);
1875cce7d176Sdrh       break;
1876cce7d176Sdrh     }
1877cce7d176Sdrh     case TK_ISNULL:
1878cce7d176Sdrh     case TK_NOTNULL: {
1879f2bc013cSdrh       assert( TK_ISNULL==OP_IsNull );
1880f2bc013cSdrh       assert( TK_NOTNULL==OP_NotNull );
18814adee20fSdanielk1977       sqlite3ExprCode(pParse, pExpr->pLeft);
18824adee20fSdanielk1977       sqlite3VdbeAddOp(v, op, 1, dest);
1883cce7d176Sdrh       break;
1884cce7d176Sdrh     }
1885fef5208cSdrh     case TK_BETWEEN: {
18860202b29eSdanielk1977       /* The expression "x BETWEEN y AND z" is implemented as:
18870202b29eSdanielk1977       **
18880202b29eSdanielk1977       ** 1 IF (x < y) GOTO 3
18890202b29eSdanielk1977       ** 2 IF (x <= z) GOTO <dest>
18900202b29eSdanielk1977       ** 3 ...
18910202b29eSdanielk1977       */
1892f5905aa7Sdrh       int addr;
1893be5c89acSdrh       Expr *pLeft = pExpr->pLeft;
1894be5c89acSdrh       Expr *pRight = pExpr->pList->a[0].pExpr;
1895be5c89acSdrh       sqlite3ExprCode(pParse, pLeft);
18964adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_Dup, 0, 0);
1897be5c89acSdrh       sqlite3ExprCode(pParse, pRight);
1898be5c89acSdrh       addr = codeCompare(pParse, pLeft, pRight, OP_Lt, 0, !jumpIfNull);
18990202b29eSdanielk1977 
1900be5c89acSdrh       pRight = pExpr->pList->a[1].pExpr;
1901be5c89acSdrh       sqlite3ExprCode(pParse, pRight);
1902be5c89acSdrh       codeCompare(pParse, pLeft, pRight, OP_Le, dest, jumpIfNull);
19030202b29eSdanielk1977 
19044adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_Integer, 0, 0);
1905*d654be80Sdrh       sqlite3VdbeJumpHere(v, addr);
19064adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_Pop, 1, 0);
1907fef5208cSdrh       break;
1908fef5208cSdrh     }
1909cce7d176Sdrh     default: {
19104adee20fSdanielk1977       sqlite3ExprCode(pParse, pExpr);
19114adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_If, jumpIfNull, dest);
1912cce7d176Sdrh       break;
1913cce7d176Sdrh     }
1914cce7d176Sdrh   }
1915cce7d176Sdrh }
1916cce7d176Sdrh 
1917cce7d176Sdrh /*
191866b89c8fSdrh ** Generate code for a boolean expression such that a jump is made
1919cce7d176Sdrh ** to the label "dest" if the expression is false but execution
1920cce7d176Sdrh ** continues straight thru if the expression is true.
1921f5905aa7Sdrh **
1922f5905aa7Sdrh ** If the expression evaluates to NULL (neither true nor false) then
1923f5905aa7Sdrh ** jump if jumpIfNull is true or fall through if jumpIfNull is false.
1924cce7d176Sdrh */
19254adee20fSdanielk1977 void sqlite3ExprIfFalse(Parse *pParse, Expr *pExpr, int dest, int jumpIfNull){
1926cce7d176Sdrh   Vdbe *v = pParse->pVdbe;
1927cce7d176Sdrh   int op = 0;
1928daffd0e5Sdrh   if( v==0 || pExpr==0 ) return;
1929f2bc013cSdrh 
1930f2bc013cSdrh   /* The value of pExpr->op and op are related as follows:
1931f2bc013cSdrh   **
1932f2bc013cSdrh   **       pExpr->op            op
1933f2bc013cSdrh   **       ---------          ----------
1934f2bc013cSdrh   **       TK_ISNULL          OP_NotNull
1935f2bc013cSdrh   **       TK_NOTNULL         OP_IsNull
1936f2bc013cSdrh   **       TK_NE              OP_Eq
1937f2bc013cSdrh   **       TK_EQ              OP_Ne
1938f2bc013cSdrh   **       TK_GT              OP_Le
1939f2bc013cSdrh   **       TK_LE              OP_Gt
1940f2bc013cSdrh   **       TK_GE              OP_Lt
1941f2bc013cSdrh   **       TK_LT              OP_Ge
1942f2bc013cSdrh   **
1943f2bc013cSdrh   ** For other values of pExpr->op, op is undefined and unused.
1944f2bc013cSdrh   ** The value of TK_ and OP_ constants are arranged such that we
1945f2bc013cSdrh   ** can compute the mapping above using the following expression.
1946f2bc013cSdrh   ** Assert()s verify that the computation is correct.
1947f2bc013cSdrh   */
1948f2bc013cSdrh   op = ((pExpr->op+(TK_ISNULL&1))^1)-(TK_ISNULL&1);
1949f2bc013cSdrh 
1950f2bc013cSdrh   /* Verify correct alignment of TK_ and OP_ constants
1951f2bc013cSdrh   */
1952f2bc013cSdrh   assert( pExpr->op!=TK_ISNULL || op==OP_NotNull );
1953f2bc013cSdrh   assert( pExpr->op!=TK_NOTNULL || op==OP_IsNull );
1954f2bc013cSdrh   assert( pExpr->op!=TK_NE || op==OP_Eq );
1955f2bc013cSdrh   assert( pExpr->op!=TK_EQ || op==OP_Ne );
1956f2bc013cSdrh   assert( pExpr->op!=TK_LT || op==OP_Ge );
1957f2bc013cSdrh   assert( pExpr->op!=TK_LE || op==OP_Gt );
1958f2bc013cSdrh   assert( pExpr->op!=TK_GT || op==OP_Le );
1959f2bc013cSdrh   assert( pExpr->op!=TK_GE || op==OP_Lt );
1960f2bc013cSdrh 
1961cce7d176Sdrh   switch( pExpr->op ){
1962cce7d176Sdrh     case TK_AND: {
19634adee20fSdanielk1977       sqlite3ExprIfFalse(pParse, pExpr->pLeft, dest, jumpIfNull);
19644adee20fSdanielk1977       sqlite3ExprIfFalse(pParse, pExpr->pRight, dest, jumpIfNull);
1965cce7d176Sdrh       break;
1966cce7d176Sdrh     }
1967cce7d176Sdrh     case TK_OR: {
19684adee20fSdanielk1977       int d2 = sqlite3VdbeMakeLabel(v);
19694adee20fSdanielk1977       sqlite3ExprIfTrue(pParse, pExpr->pLeft, d2, !jumpIfNull);
19704adee20fSdanielk1977       sqlite3ExprIfFalse(pParse, pExpr->pRight, dest, jumpIfNull);
19714adee20fSdanielk1977       sqlite3VdbeResolveLabel(v, d2);
1972cce7d176Sdrh       break;
1973cce7d176Sdrh     }
1974cce7d176Sdrh     case TK_NOT: {
19754adee20fSdanielk1977       sqlite3ExprIfTrue(pParse, pExpr->pLeft, dest, jumpIfNull);
1976cce7d176Sdrh       break;
1977cce7d176Sdrh     }
1978cce7d176Sdrh     case TK_LT:
1979cce7d176Sdrh     case TK_LE:
1980cce7d176Sdrh     case TK_GT:
1981cce7d176Sdrh     case TK_GE:
1982cce7d176Sdrh     case TK_NE:
1983cce7d176Sdrh     case TK_EQ: {
19844adee20fSdanielk1977       sqlite3ExprCode(pParse, pExpr->pLeft);
19854adee20fSdanielk1977       sqlite3ExprCode(pParse, pExpr->pRight);
1986be5c89acSdrh       codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, dest, jumpIfNull);
1987cce7d176Sdrh       break;
1988cce7d176Sdrh     }
1989cce7d176Sdrh     case TK_ISNULL:
1990cce7d176Sdrh     case TK_NOTNULL: {
19914adee20fSdanielk1977       sqlite3ExprCode(pParse, pExpr->pLeft);
19924adee20fSdanielk1977       sqlite3VdbeAddOp(v, op, 1, dest);
1993cce7d176Sdrh       break;
1994cce7d176Sdrh     }
1995fef5208cSdrh     case TK_BETWEEN: {
19960202b29eSdanielk1977       /* The expression is "x BETWEEN y AND z". It is implemented as:
19970202b29eSdanielk1977       **
19980202b29eSdanielk1977       ** 1 IF (x >= y) GOTO 3
19990202b29eSdanielk1977       ** 2 GOTO <dest>
20000202b29eSdanielk1977       ** 3 IF (x > z) GOTO <dest>
20010202b29eSdanielk1977       */
2002fef5208cSdrh       int addr;
2003be5c89acSdrh       Expr *pLeft = pExpr->pLeft;
2004be5c89acSdrh       Expr *pRight = pExpr->pList->a[0].pExpr;
2005be5c89acSdrh       sqlite3ExprCode(pParse, pLeft);
20064adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_Dup, 0, 0);
2007be5c89acSdrh       sqlite3ExprCode(pParse, pRight);
20084adee20fSdanielk1977       addr = sqlite3VdbeCurrentAddr(v);
2009be5c89acSdrh       codeCompare(pParse, pLeft, pRight, OP_Ge, addr+3, !jumpIfNull);
2010be5c89acSdrh 
20114adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_Pop, 1, 0);
20124adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_Goto, 0, dest);
2013be5c89acSdrh       pRight = pExpr->pList->a[1].pExpr;
2014be5c89acSdrh       sqlite3ExprCode(pParse, pRight);
2015be5c89acSdrh       codeCompare(pParse, pLeft, pRight, OP_Gt, dest, jumpIfNull);
2016fef5208cSdrh       break;
2017fef5208cSdrh     }
2018cce7d176Sdrh     default: {
20194adee20fSdanielk1977       sqlite3ExprCode(pParse, pExpr);
20204adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_IfNot, jumpIfNull, dest);
2021cce7d176Sdrh       break;
2022cce7d176Sdrh     }
2023cce7d176Sdrh   }
2024cce7d176Sdrh }
20252282792aSdrh 
20262282792aSdrh /*
20272282792aSdrh ** Do a deep comparison of two expression trees.  Return TRUE (non-zero)
20282282792aSdrh ** if they are identical and return FALSE if they differ in any way.
20292282792aSdrh */
20304adee20fSdanielk1977 int sqlite3ExprCompare(Expr *pA, Expr *pB){
20312282792aSdrh   int i;
20322282792aSdrh   if( pA==0 ){
20332282792aSdrh     return pB==0;
20342282792aSdrh   }else if( pB==0 ){
20352282792aSdrh     return 0;
20362282792aSdrh   }
20372282792aSdrh   if( pA->op!=pB->op ) return 0;
2038fd357974Sdrh   if( (pA->flags & EP_Distinct)!=(pB->flags & EP_Distinct) ) return 0;
20394adee20fSdanielk1977   if( !sqlite3ExprCompare(pA->pLeft, pB->pLeft) ) return 0;
20404adee20fSdanielk1977   if( !sqlite3ExprCompare(pA->pRight, pB->pRight) ) return 0;
20412282792aSdrh   if( pA->pList ){
20422282792aSdrh     if( pB->pList==0 ) return 0;
20432282792aSdrh     if( pA->pList->nExpr!=pB->pList->nExpr ) return 0;
20442282792aSdrh     for(i=0; i<pA->pList->nExpr; i++){
20454adee20fSdanielk1977       if( !sqlite3ExprCompare(pA->pList->a[i].pExpr, pB->pList->a[i].pExpr) ){
20462282792aSdrh         return 0;
20472282792aSdrh       }
20482282792aSdrh     }
20492282792aSdrh   }else if( pB->pList ){
20502282792aSdrh     return 0;
20512282792aSdrh   }
20522282792aSdrh   if( pA->pSelect || pB->pSelect ) return 0;
20532f2c01e5Sdrh   if( pA->iTable!=pB->iTable || pA->iColumn!=pB->iColumn ) return 0;
20542282792aSdrh   if( pA->token.z ){
20552282792aSdrh     if( pB->token.z==0 ) return 0;
20566977fea8Sdrh     if( pB->token.n!=pA->token.n ) return 0;
20574adee20fSdanielk1977     if( sqlite3StrNICmp(pA->token.z, pB->token.z, pB->token.n)!=0 ) return 0;
20582282792aSdrh   }
20592282792aSdrh   return 1;
20602282792aSdrh }
20612282792aSdrh 
206213449892Sdrh 
20632282792aSdrh /*
206413449892Sdrh ** Add a new element to the pAggInfo->aCol[] array.  Return the index of
206513449892Sdrh ** the new element.  Return a negative number if malloc fails.
20662282792aSdrh */
206713449892Sdrh static int addAggInfoColumn(AggInfo *pInfo){
206813449892Sdrh   int i;
206913449892Sdrh   i = sqlite3ArrayAllocate((void**)&pInfo->aCol, sizeof(pInfo->aCol[0]), 3);
207013449892Sdrh   if( i<0 ){
20712282792aSdrh     return -1;
20722282792aSdrh   }
207313449892Sdrh   return i;
20742282792aSdrh }
207513449892Sdrh 
207613449892Sdrh /*
207713449892Sdrh ** Add a new element to the pAggInfo->aFunc[] array.  Return the index of
207813449892Sdrh ** the new element.  Return a negative number if malloc fails.
207913449892Sdrh */
208013449892Sdrh static int addAggInfoFunc(AggInfo *pInfo){
208113449892Sdrh   int i;
208213449892Sdrh   i = sqlite3ArrayAllocate((void**)&pInfo->aFunc, sizeof(pInfo->aFunc[0]), 2);
208313449892Sdrh   if( i<0 ){
208413449892Sdrh     return -1;
208513449892Sdrh   }
208613449892Sdrh   return i;
20872282792aSdrh }
20882282792aSdrh 
20892282792aSdrh /*
2090626a879aSdrh ** This is an xFunc for walkExprTree() used to implement
2091626a879aSdrh ** sqlite3ExprAnalyzeAggregates().  See sqlite3ExprAnalyzeAggregates
2092626a879aSdrh ** for additional information.
20932282792aSdrh **
2094626a879aSdrh ** This routine analyzes the aggregate function at pExpr.
20952282792aSdrh */
2096626a879aSdrh static int analyzeAggregate(void *pArg, Expr *pExpr){
20972282792aSdrh   int i;
2098a58fdfb1Sdanielk1977   NameContext *pNC = (NameContext *)pArg;
2099a58fdfb1Sdanielk1977   Parse *pParse = pNC->pParse;
2100a58fdfb1Sdanielk1977   SrcList *pSrcList = pNC->pSrcList;
210113449892Sdrh   AggInfo *pAggInfo = pNC->pAggInfo;
210213449892Sdrh 
21032282792aSdrh 
21042282792aSdrh   switch( pExpr->op ){
2105967e8b73Sdrh     case TK_COLUMN: {
210613449892Sdrh       /* Check to see if the column is in one of the tables in the FROM
210713449892Sdrh       ** clause of the aggregate query */
210813449892Sdrh       if( pSrcList ){
210913449892Sdrh         struct SrcList_item *pItem = pSrcList->a;
211013449892Sdrh         for(i=0; i<pSrcList->nSrc; i++, pItem++){
211113449892Sdrh           struct AggInfo_col *pCol;
211213449892Sdrh           if( pExpr->iTable==pItem->iCursor ){
211313449892Sdrh             /* If we reach this point, it means that pExpr refers to a table
211413449892Sdrh             ** that is in the FROM clause of the aggregate query.
211513449892Sdrh             **
211613449892Sdrh             ** Make an entry for the column in pAggInfo->aCol[] if there
211713449892Sdrh             ** is not an entry there already.
211813449892Sdrh             */
211913449892Sdrh             pCol = pAggInfo->aCol;
212013449892Sdrh             for(i=0; i<pAggInfo->nColumn; i++, pCol++){
212113449892Sdrh               if( pCol->iTable==pExpr->iTable &&
212213449892Sdrh                   pCol->iColumn==pExpr->iColumn ){
21232282792aSdrh                 break;
21242282792aSdrh               }
21252282792aSdrh             }
212613449892Sdrh             if( i>=pAggInfo->nColumn && (i = addAggInfoColumn(pAggInfo))>=0 ){
212713449892Sdrh               pCol = &pAggInfo->aCol[i];
212813449892Sdrh               pCol->iTable = pExpr->iTable;
212913449892Sdrh               pCol->iColumn = pExpr->iColumn;
213013449892Sdrh               pCol->iMem = pParse->nMem++;
213113449892Sdrh               pCol->iSorterColumn = -1;
21325774b806Sdrh               pCol->pExpr = pExpr;
213313449892Sdrh               if( pAggInfo->pGroupBy ){
213413449892Sdrh                 int j, n;
213513449892Sdrh                 ExprList *pGB = pAggInfo->pGroupBy;
213613449892Sdrh                 struct ExprList_item *pTerm = pGB->a;
213713449892Sdrh                 n = pGB->nExpr;
213813449892Sdrh                 for(j=0; j<n; j++, pTerm++){
213913449892Sdrh                   Expr *pE = pTerm->pExpr;
214013449892Sdrh                   if( pE->op==TK_COLUMN && pE->iTable==pExpr->iTable &&
214113449892Sdrh                       pE->iColumn==pExpr->iColumn ){
214213449892Sdrh                     pCol->iSorterColumn = j;
214313449892Sdrh                     break;
21442282792aSdrh                   }
214513449892Sdrh                 }
214613449892Sdrh               }
214713449892Sdrh               if( pCol->iSorterColumn<0 ){
214813449892Sdrh                 pCol->iSorterColumn = pAggInfo->nSortingColumn++;
214913449892Sdrh               }
215013449892Sdrh             }
215113449892Sdrh             /* There is now an entry for pExpr in pAggInfo->aCol[] (either
215213449892Sdrh             ** because it was there before or because we just created it).
215313449892Sdrh             ** Convert the pExpr to be a TK_AGG_COLUMN referring to that
215413449892Sdrh             ** pAggInfo->aCol[] entry.
215513449892Sdrh             */
215613449892Sdrh             pExpr->pAggInfo = pAggInfo;
215713449892Sdrh             pExpr->op = TK_AGG_COLUMN;
2158aaf88729Sdrh             pExpr->iAgg = i;
215913449892Sdrh             break;
216013449892Sdrh           } /* endif pExpr->iTable==pItem->iCursor */
216113449892Sdrh         } /* end loop over pSrcList */
2162a58fdfb1Sdanielk1977       }
2163626a879aSdrh       return 1;
21642282792aSdrh     }
21652282792aSdrh     case TK_AGG_FUNCTION: {
216613449892Sdrh       /* The pNC->nDepth==0 test causes aggregate functions in subqueries
216713449892Sdrh       ** to be ignored */
2168a58fdfb1Sdanielk1977       if( pNC->nDepth==0 ){
216913449892Sdrh         /* Check to see if pExpr is a duplicate of another aggregate
217013449892Sdrh         ** function that is already in the pAggInfo structure
217113449892Sdrh         */
217213449892Sdrh         struct AggInfo_func *pItem = pAggInfo->aFunc;
217313449892Sdrh         for(i=0; i<pAggInfo->nFunc; i++, pItem++){
217413449892Sdrh           if( sqlite3ExprCompare(pItem->pExpr, pExpr) ){
21752282792aSdrh             break;
21762282792aSdrh           }
21772282792aSdrh         }
217813449892Sdrh         if( i>=pAggInfo->nFunc ){
217913449892Sdrh           /* pExpr is original.  Make a new entry in pAggInfo->aFunc[]
218013449892Sdrh           */
2181d8123366Sdanielk1977           u8 enc = pParse->db->enc;
218213449892Sdrh           i = addAggInfoFunc(pAggInfo);
218313449892Sdrh           if( i>=0 ){
218413449892Sdrh             pItem = &pAggInfo->aFunc[i];
218513449892Sdrh             pItem->pExpr = pExpr;
218613449892Sdrh             pItem->iMem = pParse->nMem++;
218713449892Sdrh             pItem->pFunc = sqlite3FindFunction(pParse->db,
21886977fea8Sdrh                    pExpr->token.z, pExpr->token.n,
2189d8123366Sdanielk1977                    pExpr->pList ? pExpr->pList->nExpr : 0, enc, 0);
2190fd357974Sdrh             if( pExpr->flags & EP_Distinct ){
2191fd357974Sdrh               pItem->iDistinct = pParse->nTab++;
2192fd357974Sdrh             }else{
2193fd357974Sdrh               pItem->iDistinct = -1;
2194fd357974Sdrh             }
21952282792aSdrh           }
219613449892Sdrh         }
219713449892Sdrh         /* Make pExpr point to the appropriate pAggInfo->aFunc[] entry
219813449892Sdrh         */
21992282792aSdrh         pExpr->iAgg = i;
220013449892Sdrh         pExpr->pAggInfo = pAggInfo;
2201626a879aSdrh         return 1;
22022282792aSdrh       }
22032282792aSdrh     }
2204a58fdfb1Sdanielk1977   }
220513449892Sdrh 
220613449892Sdrh   /* Recursively walk subqueries looking for TK_COLUMN nodes that need
220713449892Sdrh   ** to be changed to TK_AGG_COLUMN.  But increment nDepth so that
220813449892Sdrh   ** TK_AGG_FUNCTION nodes in subqueries will be unchanged.
220913449892Sdrh   */
2210a58fdfb1Sdanielk1977   if( pExpr->pSelect ){
2211a58fdfb1Sdanielk1977     pNC->nDepth++;
2212a58fdfb1Sdanielk1977     walkSelectExpr(pExpr->pSelect, analyzeAggregate, pNC);
2213a58fdfb1Sdanielk1977     pNC->nDepth--;
2214a58fdfb1Sdanielk1977   }
2215626a879aSdrh   return 0;
22162282792aSdrh }
2217626a879aSdrh 
2218626a879aSdrh /*
2219626a879aSdrh ** Analyze the given expression looking for aggregate functions and
2220626a879aSdrh ** for variables that need to be added to the pParse->aAgg[] array.
2221626a879aSdrh ** Make additional entries to the pParse->aAgg[] array as necessary.
2222626a879aSdrh **
2223626a879aSdrh ** This routine should only be called after the expression has been
2224626a879aSdrh ** analyzed by sqlite3ExprResolveNames().
2225626a879aSdrh **
2226626a879aSdrh ** If errors are seen, leave an error message in zErrMsg and return
2227626a879aSdrh ** the number of errors.
2228626a879aSdrh */
2229a58fdfb1Sdanielk1977 int sqlite3ExprAnalyzeAggregates(NameContext *pNC, Expr *pExpr){
2230a58fdfb1Sdanielk1977   int nErr = pNC->pParse->nErr;
2231a58fdfb1Sdanielk1977   walkExprTree(pExpr, analyzeAggregate, pNC);
2232a58fdfb1Sdanielk1977   return pNC->pParse->nErr - nErr;
22332282792aSdrh }
22345d9a4af9Sdrh 
22355d9a4af9Sdrh /*
22365d9a4af9Sdrh ** Call sqlite3ExprAnalyzeAggregates() for every expression in an
22375d9a4af9Sdrh ** expression list.  Return the number of errors.
22385d9a4af9Sdrh **
22395d9a4af9Sdrh ** If an error is found, the analysis is cut short.
22405d9a4af9Sdrh */
22415d9a4af9Sdrh int sqlite3ExprAnalyzeAggList(NameContext *pNC, ExprList *pList){
22425d9a4af9Sdrh   struct ExprList_item *pItem;
22435d9a4af9Sdrh   int i;
22445d9a4af9Sdrh   int nErr = 0;
22455d9a4af9Sdrh   if( pList ){
22465d9a4af9Sdrh     for(pItem=pList->a, i=0; nErr==0 && i<pList->nExpr; i++, pItem++){
22475d9a4af9Sdrh       nErr += sqlite3ExprAnalyzeAggregates(pNC, pItem->pExpr);
22485d9a4af9Sdrh     }
22495d9a4af9Sdrh   }
22505d9a4af9Sdrh   return nErr;
22515d9a4af9Sdrh }
2252