xref: /sqlite-3.40.0/src/expr.c (revision 2958a4e6)
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*2958a4e6Sdrh ** $Id: expr.c,v 1.170 2004/11/12 03:56:15 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){
37a37cdde0Sdanielk1977   if( pExpr->op==TK_AS ){
38bf3b721fSdanielk1977     return sqlite3ExprAffinity(pExpr->pLeft);
39a37cdde0Sdanielk1977   }
40a37cdde0Sdanielk1977   if( pExpr->op==TK_SELECT ){
41bf3b721fSdanielk1977     return sqlite3ExprAffinity(pExpr->pSelect->pEList->a[0].pExpr);
42a37cdde0Sdanielk1977   }
43a37cdde0Sdanielk1977   return pExpr->affinity;
44a37cdde0Sdanielk1977 }
45a37cdde0Sdanielk1977 
4653db1458Sdrh /*
470202b29eSdanielk1977 ** Return the default collation sequence for the expression pExpr. If
480202b29eSdanielk1977 ** there is no default collation type, return 0.
490202b29eSdanielk1977 */
507cedc8d4Sdanielk1977 CollSeq *sqlite3ExprCollSeq(Parse *pParse, Expr *pExpr){
517cedc8d4Sdanielk1977   CollSeq *pColl = 0;
520202b29eSdanielk1977   if( pExpr ){
537cedc8d4Sdanielk1977     pColl = pExpr->pColl;
547cedc8d4Sdanielk1977     if( pExpr->op==TK_AS && !pColl ){
557cedc8d4Sdanielk1977       return sqlite3ExprCollSeq(pParse, pExpr->pLeft);
560202b29eSdanielk1977     }
570202b29eSdanielk1977   }
587cedc8d4Sdanielk1977   if( sqlite3CheckCollSeq(pParse, pColl) ){
597cedc8d4Sdanielk1977     pColl = 0;
607cedc8d4Sdanielk1977   }
617cedc8d4Sdanielk1977   return pColl;
620202b29eSdanielk1977 }
630202b29eSdanielk1977 
640202b29eSdanielk1977 /*
6553db1458Sdrh ** pExpr is the left operand of a comparison operator.  aff2 is the
6653db1458Sdrh ** type affinity of the right operand.  This routine returns the
6753db1458Sdrh ** type affinity that should be used for the comparison operator.
6853db1458Sdrh */
69e014a838Sdanielk1977 char sqlite3CompareAffinity(Expr *pExpr, char aff2){
70bf3b721fSdanielk1977   char aff1 = sqlite3ExprAffinity(pExpr);
71e014a838Sdanielk1977   if( aff1 && aff2 ){
72e014a838Sdanielk1977     /* Both sides of the comparison are columns. If one has numeric or
73e014a838Sdanielk1977     ** integer affinity, use that. Otherwise use no affinity.
74e014a838Sdanielk1977     */
75e014a838Sdanielk1977     if( aff1==SQLITE_AFF_INTEGER || aff2==SQLITE_AFF_INTEGER ){
76e014a838Sdanielk1977       return SQLITE_AFF_INTEGER;
77e014a838Sdanielk1977     }else if( aff1==SQLITE_AFF_NUMERIC || aff2==SQLITE_AFF_NUMERIC ){
78e014a838Sdanielk1977       return SQLITE_AFF_NUMERIC;
79e014a838Sdanielk1977     }else{
80e014a838Sdanielk1977       return SQLITE_AFF_NONE;
81e014a838Sdanielk1977     }
82e014a838Sdanielk1977   }else if( !aff1 && !aff2 ){
835f6a87b3Sdrh     /* Neither side of the comparison is a column.  Compare the
845f6a87b3Sdrh     ** results directly.
85e014a838Sdanielk1977     */
865f6a87b3Sdrh     /* return SQLITE_AFF_NUMERIC;  // Ticket #805 */
875f6a87b3Sdrh     return SQLITE_AFF_NONE;
88e014a838Sdanielk1977   }else{
89e014a838Sdanielk1977     /* One side is a column, the other is not. Use the columns affinity. */
90e014a838Sdanielk1977     return (aff1 + aff2);
91e014a838Sdanielk1977   }
92e014a838Sdanielk1977 }
93e014a838Sdanielk1977 
9453db1458Sdrh /*
9553db1458Sdrh ** pExpr is a comparison operator.  Return the type affinity that should
9653db1458Sdrh ** be applied to both operands prior to doing the comparison.
9753db1458Sdrh */
98e014a838Sdanielk1977 static char comparisonAffinity(Expr *pExpr){
99e014a838Sdanielk1977   char aff;
100e014a838Sdanielk1977   assert( pExpr->op==TK_EQ || pExpr->op==TK_IN || pExpr->op==TK_LT ||
101e014a838Sdanielk1977           pExpr->op==TK_GT || pExpr->op==TK_GE || pExpr->op==TK_LE ||
102e014a838Sdanielk1977           pExpr->op==TK_NE );
103e014a838Sdanielk1977   assert( pExpr->pLeft );
104bf3b721fSdanielk1977   aff = sqlite3ExprAffinity(pExpr->pLeft);
105e014a838Sdanielk1977   if( pExpr->pRight ){
106e014a838Sdanielk1977     aff = sqlite3CompareAffinity(pExpr->pRight, aff);
107e014a838Sdanielk1977   }
108e014a838Sdanielk1977   else if( pExpr->pSelect ){
109e014a838Sdanielk1977     aff = sqlite3CompareAffinity(pExpr->pSelect->pEList->a[0].pExpr, aff);
110e014a838Sdanielk1977   }
111e014a838Sdanielk1977   else if( !aff ){
112e014a838Sdanielk1977     aff = SQLITE_AFF_NUMERIC;
113e014a838Sdanielk1977   }
114e014a838Sdanielk1977   return aff;
115e014a838Sdanielk1977 }
116e014a838Sdanielk1977 
117e014a838Sdanielk1977 /*
118e014a838Sdanielk1977 ** pExpr is a comparison expression, eg. '=', '<', IN(...) etc.
119e014a838Sdanielk1977 ** idx_affinity is the affinity of an indexed column. Return true
120e014a838Sdanielk1977 ** if the index with affinity idx_affinity may be used to implement
121e014a838Sdanielk1977 ** the comparison in pExpr.
122e014a838Sdanielk1977 */
123e014a838Sdanielk1977 int sqlite3IndexAffinityOk(Expr *pExpr, char idx_affinity){
124e014a838Sdanielk1977   char aff = comparisonAffinity(pExpr);
125e014a838Sdanielk1977   return
126e014a838Sdanielk1977     (aff==SQLITE_AFF_NONE) ||
127e014a838Sdanielk1977     (aff==SQLITE_AFF_NUMERIC && idx_affinity==SQLITE_AFF_INTEGER) ||
128e014a838Sdanielk1977     (aff==SQLITE_AFF_INTEGER && idx_affinity==SQLITE_AFF_NUMERIC) ||
129e014a838Sdanielk1977     (aff==idx_affinity);
130e014a838Sdanielk1977 }
131e014a838Sdanielk1977 
132a37cdde0Sdanielk1977 /*
133a37cdde0Sdanielk1977 ** Return the P1 value that should be used for a binary comparison
134a37cdde0Sdanielk1977 ** opcode (OP_Eq, OP_Ge etc.) used to compare pExpr1 and pExpr2.
135a37cdde0Sdanielk1977 ** If jumpIfNull is true, then set the low byte of the returned
136a37cdde0Sdanielk1977 ** P1 value to tell the opcode to jump if either expression
137a37cdde0Sdanielk1977 ** evaluates to NULL.
138a37cdde0Sdanielk1977 */
139e014a838Sdanielk1977 static int binaryCompareP1(Expr *pExpr1, Expr *pExpr2, int jumpIfNull){
140bf3b721fSdanielk1977   char aff = sqlite3ExprAffinity(pExpr2);
141e014a838Sdanielk1977   return (((int)sqlite3CompareAffinity(pExpr1, aff))<<8)+(jumpIfNull?1:0);
142a37cdde0Sdanielk1977 }
143a37cdde0Sdanielk1977 
144a2e00042Sdrh /*
1450202b29eSdanielk1977 ** Return a pointer to the collation sequence that should be used by
1460202b29eSdanielk1977 ** a binary comparison operator comparing pLeft and pRight.
1470202b29eSdanielk1977 **
1480202b29eSdanielk1977 ** If the left hand expression has a collating sequence type, then it is
1490202b29eSdanielk1977 ** used. Otherwise the collation sequence for the right hand expression
1500202b29eSdanielk1977 ** is used, or the default (BINARY) if neither expression has a collating
1510202b29eSdanielk1977 ** type.
1520202b29eSdanielk1977 */
1537cedc8d4Sdanielk1977 static CollSeq* binaryCompareCollSeq(Parse *pParse, Expr *pLeft, Expr *pRight){
1547cedc8d4Sdanielk1977   CollSeq *pColl = sqlite3ExprCollSeq(pParse, pLeft);
1550202b29eSdanielk1977   if( !pColl ){
1567cedc8d4Sdanielk1977     pColl = sqlite3ExprCollSeq(pParse, pRight);
1570202b29eSdanielk1977   }
1580202b29eSdanielk1977   return pColl;
1590202b29eSdanielk1977 }
1600202b29eSdanielk1977 
1610202b29eSdanielk1977 /*
162be5c89acSdrh ** Generate code for a comparison operator.
163be5c89acSdrh */
164be5c89acSdrh static int codeCompare(
165be5c89acSdrh   Parse *pParse,    /* The parsing (and code generating) context */
166be5c89acSdrh   Expr *pLeft,      /* The left operand */
167be5c89acSdrh   Expr *pRight,     /* The right operand */
168be5c89acSdrh   int opcode,       /* The comparison opcode */
169be5c89acSdrh   int dest,         /* Jump here if true.  */
170be5c89acSdrh   int jumpIfNull    /* If true, jump if either operand is NULL */
171be5c89acSdrh ){
172be5c89acSdrh   int p1 = binaryCompareP1(pLeft, pRight, jumpIfNull);
173be5c89acSdrh   CollSeq *p3 = binaryCompareCollSeq(pParse, pLeft, pRight);
174be5c89acSdrh   return sqlite3VdbeOp3(pParse->pVdbe, opcode, p1, dest, (void*)p3, P3_COLLSEQ);
175be5c89acSdrh }
176be5c89acSdrh 
177be5c89acSdrh /*
178a76b5dfcSdrh ** Construct a new expression node and return a pointer to it.  Memory
179a76b5dfcSdrh ** for this node is obtained from sqliteMalloc().  The calling function
180a76b5dfcSdrh ** is responsible for making sure the node eventually gets freed.
181a76b5dfcSdrh */
1824adee20fSdanielk1977 Expr *sqlite3Expr(int op, Expr *pLeft, Expr *pRight, Token *pToken){
183a76b5dfcSdrh   Expr *pNew;
184a76b5dfcSdrh   pNew = sqliteMalloc( sizeof(Expr) );
185a76b5dfcSdrh   if( pNew==0 ){
1864efc4754Sdrh     /* When malloc fails, we leak memory from pLeft and pRight */
187a76b5dfcSdrh     return 0;
188a76b5dfcSdrh   }
189a76b5dfcSdrh   pNew->op = op;
190a76b5dfcSdrh   pNew->pLeft = pLeft;
191a76b5dfcSdrh   pNew->pRight = pRight;
192a76b5dfcSdrh   if( pToken ){
1934b59ab5eSdrh     assert( pToken->dyn==0 );
194145716b3Sdrh     pNew->span = pNew->token = *pToken;
195145716b3Sdrh   }else if( pLeft && pRight ){
1964adee20fSdanielk1977     sqlite3ExprSpan(pNew, &pLeft->span, &pRight->span);
197a76b5dfcSdrh   }
198a76b5dfcSdrh   return pNew;
199a76b5dfcSdrh }
200a76b5dfcSdrh 
201a76b5dfcSdrh /*
2024e0cff60Sdrh ** When doing a nested parse, you can include terms in an expression
2034e0cff60Sdrh ** that look like this:   #0 #1 #2 ...  These terms refer to elements
2044e0cff60Sdrh ** on the stack.  "#0" (or just "#") means the top of the stack.
205*2958a4e6Sdrh ** "#1" means the next down on the stack.  And so forth.  #-1 means
206*2958a4e6Sdrh ** memory location 0.  #-2 means memory location 1.  And so forth.
2074e0cff60Sdrh **
2084e0cff60Sdrh ** This routine is called by the parser to deal with on of those terms.
2094e0cff60Sdrh ** It immediately generates code to store the value in a memory location.
2104e0cff60Sdrh ** The returns an expression that will code to extract the value from
2114e0cff60Sdrh ** that memory location as needed.
2124e0cff60Sdrh */
2134e0cff60Sdrh Expr *sqlite3RegisterExpr(Parse *pParse, Token *pToken){
2144e0cff60Sdrh   Vdbe *v = pParse->pVdbe;
2154e0cff60Sdrh   Expr *p;
2164e0cff60Sdrh   int depth;
2174e0cff60Sdrh   if( v==0 ) return 0;
2184e0cff60Sdrh   if( pParse->nested==0 ){
2194e0cff60Sdrh     sqlite3ErrorMsg(pParse, "near \"%T\": syntax error", pToken);
2204e0cff60Sdrh     return 0;
2214e0cff60Sdrh   }
2224e0cff60Sdrh   p = sqlite3Expr(TK_REGISTER, 0, 0, pToken);
2234e0cff60Sdrh   depth = atoi(&pToken->z[1]);
224*2958a4e6Sdrh   if( depth>=0 ){
2254e0cff60Sdrh     p->iTable = pParse->nMem++;
2264e0cff60Sdrh     sqlite3VdbeAddOp(v, OP_Dup, depth, 0);
2274e0cff60Sdrh     sqlite3VdbeAddOp(v, OP_MemStore, p->iTable, 1);
228*2958a4e6Sdrh   }else{
229*2958a4e6Sdrh     p->iTable = -1-depth;
230*2958a4e6Sdrh   }
2314e0cff60Sdrh   return p;
2324e0cff60Sdrh }
2334e0cff60Sdrh 
2344e0cff60Sdrh /*
23591bb0eedSdrh ** Join two expressions using an AND operator.  If either expression is
23691bb0eedSdrh ** NULL, then just return the other expression.
23791bb0eedSdrh */
23891bb0eedSdrh Expr *sqlite3ExprAnd(Expr *pLeft, Expr *pRight){
23991bb0eedSdrh   if( pLeft==0 ){
24091bb0eedSdrh     return pRight;
24191bb0eedSdrh   }else if( pRight==0 ){
24291bb0eedSdrh     return pLeft;
24391bb0eedSdrh   }else{
24491bb0eedSdrh     return sqlite3Expr(TK_AND, pLeft, pRight, 0);
24591bb0eedSdrh   }
24691bb0eedSdrh }
24791bb0eedSdrh 
24891bb0eedSdrh /*
2496977fea8Sdrh ** Set the Expr.span field of the given expression to span all
250a76b5dfcSdrh ** text between the two given tokens.
251a76b5dfcSdrh */
2524adee20fSdanielk1977 void sqlite3ExprSpan(Expr *pExpr, Token *pLeft, Token *pRight){
2534efc4754Sdrh   assert( pRight!=0 );
2544efc4754Sdrh   assert( pLeft!=0 );
25571c697efSdrh   if( !sqlite3_malloc_failed && pRight->z && pLeft->z ){
256ad6d9460Sdrh     assert( pLeft->dyn==0 || pLeft->z[pLeft->n]==0 );
257145716b3Sdrh     if( pLeft->dyn==0 && pRight->dyn==0 ){
2586977fea8Sdrh       pExpr->span.z = pLeft->z;
2596977fea8Sdrh       pExpr->span.n = pRight->n + Addr(pRight->z) - Addr(pLeft->z);
2604b59ab5eSdrh     }else{
2616977fea8Sdrh       pExpr->span.z = 0;
2624b59ab5eSdrh     }
263a76b5dfcSdrh   }
264a76b5dfcSdrh }
265a76b5dfcSdrh 
266a76b5dfcSdrh /*
267a76b5dfcSdrh ** Construct a new expression node for a function with multiple
268a76b5dfcSdrh ** arguments.
269a76b5dfcSdrh */
2704adee20fSdanielk1977 Expr *sqlite3ExprFunction(ExprList *pList, Token *pToken){
271a76b5dfcSdrh   Expr *pNew;
272a76b5dfcSdrh   pNew = sqliteMalloc( sizeof(Expr) );
273a76b5dfcSdrh   if( pNew==0 ){
2744adee20fSdanielk1977     /* sqlite3ExprListDelete(pList); // Leak pList when malloc fails */
275a76b5dfcSdrh     return 0;
276a76b5dfcSdrh   }
277a76b5dfcSdrh   pNew->op = TK_FUNCTION;
278a76b5dfcSdrh   pNew->pList = pList;
279a76b5dfcSdrh   if( pToken ){
2804b59ab5eSdrh     assert( pToken->dyn==0 );
281a76b5dfcSdrh     pNew->token = *pToken;
282a76b5dfcSdrh   }else{
283a76b5dfcSdrh     pNew->token.z = 0;
284a76b5dfcSdrh   }
2856977fea8Sdrh   pNew->span = pNew->token;
286a76b5dfcSdrh   return pNew;
287a76b5dfcSdrh }
288a76b5dfcSdrh 
289a76b5dfcSdrh /*
290fa6bc000Sdrh ** Assign a variable number to an expression that encodes a wildcard
291fa6bc000Sdrh ** in the original SQL statement.
292fa6bc000Sdrh **
293fa6bc000Sdrh ** Wildcards consisting of a single "?" are assigned the next sequential
294fa6bc000Sdrh ** variable number.
295fa6bc000Sdrh **
296fa6bc000Sdrh ** Wildcards of the form "?nnn" are assigned the number "nnn".  We make
297fa6bc000Sdrh ** sure "nnn" is not too be to avoid a denial of service attack when
298fa6bc000Sdrh ** the SQL statement comes from an external source.
299fa6bc000Sdrh **
300fa6bc000Sdrh ** Wildcards of the form ":aaa" or "$aaa" are assigned the same number
301fa6bc000Sdrh ** as the previous instance of the same wildcard.  Or if this is the first
302fa6bc000Sdrh ** instance of the wildcard, the next sequenial variable number is
303fa6bc000Sdrh ** assigned.
304fa6bc000Sdrh */
305fa6bc000Sdrh void sqlite3ExprAssignVarNumber(Parse *pParse, Expr *pExpr){
306fa6bc000Sdrh   Token *pToken;
307fa6bc000Sdrh   if( pExpr==0 ) return;
308fa6bc000Sdrh   pToken = &pExpr->token;
309fa6bc000Sdrh   assert( pToken->n>=1 );
310fa6bc000Sdrh   assert( pToken->z!=0 );
311fa6bc000Sdrh   assert( pToken->z[0]!=0 );
312fa6bc000Sdrh   if( pToken->n==1 ){
313fa6bc000Sdrh     /* Wildcard of the form "?".  Assign the next variable number */
314fa6bc000Sdrh     pExpr->iTable = ++pParse->nVar;
315fa6bc000Sdrh   }else if( pToken->z[0]=='?' ){
316fa6bc000Sdrh     /* Wildcard of the form "?nnn".  Convert "nnn" to an integer and
317fa6bc000Sdrh     ** use it as the variable number */
318fa6bc000Sdrh     int i;
319fa6bc000Sdrh     pExpr->iTable = i = atoi(&pToken->z[1]);
320fa6bc000Sdrh     if( i<1 || i>SQLITE_MAX_VARIABLE_NUMBER ){
321fa6bc000Sdrh       sqlite3ErrorMsg(pParse, "variable number must be between ?1 and ?%d",
322fa6bc000Sdrh           SQLITE_MAX_VARIABLE_NUMBER);
323fa6bc000Sdrh     }
324fa6bc000Sdrh     if( i>pParse->nVar ){
325fa6bc000Sdrh       pParse->nVar = i;
326fa6bc000Sdrh     }
327fa6bc000Sdrh   }else{
328fa6bc000Sdrh     /* Wildcards of the form ":aaa" or "$aaa".  Reuse the same variable
329fa6bc000Sdrh     ** number as the prior appearance of the same name, or if the name
330fa6bc000Sdrh     ** has never appeared before, reuse the same variable number
331fa6bc000Sdrh     */
332fa6bc000Sdrh     int i, n;
333fa6bc000Sdrh     n = pToken->n;
334fa6bc000Sdrh     for(i=0; i<pParse->nVarExpr; i++){
335fa6bc000Sdrh       Expr *pE;
336fa6bc000Sdrh       if( (pE = pParse->apVarExpr[i])!=0
337fa6bc000Sdrh           && pE->token.n==n
338fa6bc000Sdrh           && memcmp(pE->token.z, pToken->z, n)==0 ){
339fa6bc000Sdrh         pExpr->iTable = pE->iTable;
340fa6bc000Sdrh         break;
341fa6bc000Sdrh       }
342fa6bc000Sdrh     }
343fa6bc000Sdrh     if( i>=pParse->nVarExpr ){
344fa6bc000Sdrh       pExpr->iTable = ++pParse->nVar;
345fa6bc000Sdrh       if( pParse->nVarExpr>=pParse->nVarExprAlloc-1 ){
346fa6bc000Sdrh         pParse->nVarExprAlloc += pParse->nVarExprAlloc + 10;
347fa6bc000Sdrh         pParse->apVarExpr = sqliteRealloc(pParse->apVarExpr,
348fa6bc000Sdrh                        pParse->nVarExprAlloc*sizeof(pParse->apVarExpr[0]) );
349fa6bc000Sdrh       }
350fa6bc000Sdrh       if( !sqlite3_malloc_failed ){
351fa6bc000Sdrh         assert( pParse->apVarExpr!=0 );
352fa6bc000Sdrh         pParse->apVarExpr[pParse->nVarExpr++] = pExpr;
353fa6bc000Sdrh       }
354fa6bc000Sdrh     }
355fa6bc000Sdrh   }
356fa6bc000Sdrh }
357fa6bc000Sdrh 
358fa6bc000Sdrh /*
359a2e00042Sdrh ** Recursively delete an expression tree.
360a2e00042Sdrh */
3614adee20fSdanielk1977 void sqlite3ExprDelete(Expr *p){
362a2e00042Sdrh   if( p==0 ) return;
3634efc4754Sdrh   if( p->span.dyn ) sqliteFree((char*)p->span.z);
3644efc4754Sdrh   if( p->token.dyn ) sqliteFree((char*)p->token.z);
3654adee20fSdanielk1977   sqlite3ExprDelete(p->pLeft);
3664adee20fSdanielk1977   sqlite3ExprDelete(p->pRight);
3674adee20fSdanielk1977   sqlite3ExprListDelete(p->pList);
3684adee20fSdanielk1977   sqlite3SelectDelete(p->pSelect);
369a2e00042Sdrh   sqliteFree(p);
370a2e00042Sdrh }
371a2e00042Sdrh 
372a76b5dfcSdrh 
373a76b5dfcSdrh /*
374ff78bd2fSdrh ** The following group of routines make deep copies of expressions,
375ff78bd2fSdrh ** expression lists, ID lists, and select statements.  The copies can
376ff78bd2fSdrh ** be deleted (by being passed to their respective ...Delete() routines)
377ff78bd2fSdrh ** without effecting the originals.
378ff78bd2fSdrh **
3794adee20fSdanielk1977 ** The expression list, ID, and source lists return by sqlite3ExprListDup(),
3804adee20fSdanielk1977 ** sqlite3IdListDup(), and sqlite3SrcListDup() can not be further expanded
381ad3cab52Sdrh ** by subsequent calls to sqlite*ListAppend() routines.
382ff78bd2fSdrh **
383ad3cab52Sdrh ** Any tables that the SrcList might point to are not duplicated.
384ff78bd2fSdrh */
3854adee20fSdanielk1977 Expr *sqlite3ExprDup(Expr *p){
386ff78bd2fSdrh   Expr *pNew;
387ff78bd2fSdrh   if( p==0 ) return 0;
388fcb78a49Sdrh   pNew = sqliteMallocRaw( sizeof(*p) );
389ff78bd2fSdrh   if( pNew==0 ) return 0;
3903b167c75Sdrh   memcpy(pNew, p, sizeof(*pNew));
3916977fea8Sdrh   if( p->token.z!=0 ){
3924b59ab5eSdrh     pNew->token.z = sqliteStrDup(p->token.z);
3934b59ab5eSdrh     pNew->token.dyn = 1;
3944b59ab5eSdrh   }else{
3954efc4754Sdrh     assert( pNew->token.z==0 );
3964b59ab5eSdrh   }
3976977fea8Sdrh   pNew->span.z = 0;
3984adee20fSdanielk1977   pNew->pLeft = sqlite3ExprDup(p->pLeft);
3994adee20fSdanielk1977   pNew->pRight = sqlite3ExprDup(p->pRight);
4004adee20fSdanielk1977   pNew->pList = sqlite3ExprListDup(p->pList);
4014adee20fSdanielk1977   pNew->pSelect = sqlite3SelectDup(p->pSelect);
402ff78bd2fSdrh   return pNew;
403ff78bd2fSdrh }
4044adee20fSdanielk1977 void sqlite3TokenCopy(Token *pTo, Token *pFrom){
4054b59ab5eSdrh   if( pTo->dyn ) sqliteFree((char*)pTo->z);
4064b59ab5eSdrh   if( pFrom->z ){
4074b59ab5eSdrh     pTo->n = pFrom->n;
4084b59ab5eSdrh     pTo->z = sqliteStrNDup(pFrom->z, pFrom->n);
4094b59ab5eSdrh     pTo->dyn = 1;
4104b59ab5eSdrh   }else{
4114b59ab5eSdrh     pTo->z = 0;
4124b59ab5eSdrh   }
4134b59ab5eSdrh }
4144adee20fSdanielk1977 ExprList *sqlite3ExprListDup(ExprList *p){
415ff78bd2fSdrh   ExprList *pNew;
416145716b3Sdrh   struct ExprList_item *pItem, *pOldItem;
417ff78bd2fSdrh   int i;
418ff78bd2fSdrh   if( p==0 ) return 0;
419ff78bd2fSdrh   pNew = sqliteMalloc( sizeof(*pNew) );
420ff78bd2fSdrh   if( pNew==0 ) return 0;
4214305d103Sdrh   pNew->nExpr = pNew->nAlloc = p->nExpr;
4223e7bc9caSdrh   pNew->a = pItem = sqliteMalloc( p->nExpr*sizeof(p->a[0]) );
423e0048400Sdanielk1977   if( pItem==0 ){
424e0048400Sdanielk1977     sqliteFree(pNew);
425e0048400Sdanielk1977     return 0;
426e0048400Sdanielk1977   }
427145716b3Sdrh   pOldItem = p->a;
428145716b3Sdrh   for(i=0; i<p->nExpr; i++, pItem++, pOldItem++){
4294b59ab5eSdrh     Expr *pNewExpr, *pOldExpr;
430145716b3Sdrh     pItem->pExpr = pNewExpr = sqlite3ExprDup(pOldExpr = pOldItem->pExpr);
4316977fea8Sdrh     if( pOldExpr->span.z!=0 && pNewExpr ){
4326977fea8Sdrh       /* Always make a copy of the span for top-level expressions in the
4334b59ab5eSdrh       ** expression list.  The logic in SELECT processing that determines
4344b59ab5eSdrh       ** the names of columns in the result set needs this information */
4354adee20fSdanielk1977       sqlite3TokenCopy(&pNewExpr->span, &pOldExpr->span);
4364b59ab5eSdrh     }
4371f3e905cSdrh     assert( pNewExpr==0 || pNewExpr->span.z!=0
43824b03fd0Sdanielk1977             || pOldExpr->span.z==0 || sqlite3_malloc_failed );
439145716b3Sdrh     pItem->zName = sqliteStrDup(pOldItem->zName);
440145716b3Sdrh     pItem->sortOrder = pOldItem->sortOrder;
441145716b3Sdrh     pItem->isAgg = pOldItem->isAgg;
4423e7bc9caSdrh     pItem->done = 0;
443ff78bd2fSdrh   }
444ff78bd2fSdrh   return pNew;
445ff78bd2fSdrh }
4464adee20fSdanielk1977 SrcList *sqlite3SrcListDup(SrcList *p){
447ad3cab52Sdrh   SrcList *pNew;
448ad3cab52Sdrh   int i;
449113088ecSdrh   int nByte;
450ad3cab52Sdrh   if( p==0 ) return 0;
451113088ecSdrh   nByte = sizeof(*p) + (p->nSrc>0 ? sizeof(p->a[0]) * (p->nSrc-1) : 0);
4524efc4754Sdrh   pNew = sqliteMallocRaw( nByte );
453ad3cab52Sdrh   if( pNew==0 ) return 0;
4544305d103Sdrh   pNew->nSrc = pNew->nAlloc = p->nSrc;
455ad3cab52Sdrh   for(i=0; i<p->nSrc; i++){
4564efc4754Sdrh     struct SrcList_item *pNewItem = &pNew->a[i];
4574efc4754Sdrh     struct SrcList_item *pOldItem = &p->a[i];
4584efc4754Sdrh     pNewItem->zDatabase = sqliteStrDup(pOldItem->zDatabase);
4594efc4754Sdrh     pNewItem->zName = sqliteStrDup(pOldItem->zName);
4604efc4754Sdrh     pNewItem->zAlias = sqliteStrDup(pOldItem->zAlias);
4614efc4754Sdrh     pNewItem->jointype = pOldItem->jointype;
4624efc4754Sdrh     pNewItem->iCursor = pOldItem->iCursor;
4634efc4754Sdrh     pNewItem->pTab = 0;
4644adee20fSdanielk1977     pNewItem->pSelect = sqlite3SelectDup(pOldItem->pSelect);
4654adee20fSdanielk1977     pNewItem->pOn = sqlite3ExprDup(pOldItem->pOn);
4664adee20fSdanielk1977     pNewItem->pUsing = sqlite3IdListDup(pOldItem->pUsing);
467ad3cab52Sdrh   }
468ad3cab52Sdrh   return pNew;
469ad3cab52Sdrh }
4704adee20fSdanielk1977 IdList *sqlite3IdListDup(IdList *p){
471ff78bd2fSdrh   IdList *pNew;
472ff78bd2fSdrh   int i;
473ff78bd2fSdrh   if( p==0 ) return 0;
4744efc4754Sdrh   pNew = sqliteMallocRaw( sizeof(*pNew) );
475ff78bd2fSdrh   if( pNew==0 ) return 0;
4764305d103Sdrh   pNew->nId = pNew->nAlloc = p->nId;
4774efc4754Sdrh   pNew->a = sqliteMallocRaw( p->nId*sizeof(p->a[0]) );
478e4697f5eSdrh   if( pNew->a==0 ) return 0;
479ff78bd2fSdrh   for(i=0; i<p->nId; i++){
4804efc4754Sdrh     struct IdList_item *pNewItem = &pNew->a[i];
4814efc4754Sdrh     struct IdList_item *pOldItem = &p->a[i];
4824efc4754Sdrh     pNewItem->zName = sqliteStrDup(pOldItem->zName);
4834efc4754Sdrh     pNewItem->idx = pOldItem->idx;
484ff78bd2fSdrh   }
485ff78bd2fSdrh   return pNew;
486ff78bd2fSdrh }
4874adee20fSdanielk1977 Select *sqlite3SelectDup(Select *p){
488ff78bd2fSdrh   Select *pNew;
489ff78bd2fSdrh   if( p==0 ) return 0;
4904efc4754Sdrh   pNew = sqliteMallocRaw( sizeof(*p) );
491ff78bd2fSdrh   if( pNew==0 ) return 0;
492ff78bd2fSdrh   pNew->isDistinct = p->isDistinct;
4934adee20fSdanielk1977   pNew->pEList = sqlite3ExprListDup(p->pEList);
4944adee20fSdanielk1977   pNew->pSrc = sqlite3SrcListDup(p->pSrc);
4954adee20fSdanielk1977   pNew->pWhere = sqlite3ExprDup(p->pWhere);
4964adee20fSdanielk1977   pNew->pGroupBy = sqlite3ExprListDup(p->pGroupBy);
4974adee20fSdanielk1977   pNew->pHaving = sqlite3ExprDup(p->pHaving);
4984adee20fSdanielk1977   pNew->pOrderBy = sqlite3ExprListDup(p->pOrderBy);
499ff78bd2fSdrh   pNew->op = p->op;
5004adee20fSdanielk1977   pNew->pPrior = sqlite3SelectDup(p->pPrior);
501ff78bd2fSdrh   pNew->nLimit = p->nLimit;
502ff78bd2fSdrh   pNew->nOffset = p->nOffset;
503ff78bd2fSdrh   pNew->zSelect = 0;
5047b58daeaSdrh   pNew->iLimit = -1;
5057b58daeaSdrh   pNew->iOffset = -1;
506dc1bdc4fSdanielk1977   pNew->ppOpenTemp = 0;
507ff78bd2fSdrh   return pNew;
508ff78bd2fSdrh }
509ff78bd2fSdrh 
510ff78bd2fSdrh 
511ff78bd2fSdrh /*
512a76b5dfcSdrh ** Add a new element to the end of an expression list.  If pList is
513a76b5dfcSdrh ** initially NULL, then create a new expression list.
514a76b5dfcSdrh */
5154adee20fSdanielk1977 ExprList *sqlite3ExprListAppend(ExprList *pList, Expr *pExpr, Token *pName){
516a76b5dfcSdrh   if( pList==0 ){
517a76b5dfcSdrh     pList = sqliteMalloc( sizeof(ExprList) );
518a76b5dfcSdrh     if( pList==0 ){
5194adee20fSdanielk1977       /* sqlite3ExprDelete(pExpr); // Leak memory if malloc fails */
520a76b5dfcSdrh       return 0;
521a76b5dfcSdrh     }
5224efc4754Sdrh     assert( pList->nAlloc==0 );
523a76b5dfcSdrh   }
5244305d103Sdrh   if( pList->nAlloc<=pList->nExpr ){
5254305d103Sdrh     pList->nAlloc = pList->nAlloc*2 + 4;
5264efc4754Sdrh     pList->a = sqliteRealloc(pList->a, pList->nAlloc*sizeof(pList->a[0]));
5274efc4754Sdrh     if( pList->a==0 ){
5284adee20fSdanielk1977       /* sqlite3ExprDelete(pExpr); // Leak memory if malloc fails */
5294efc4754Sdrh       pList->nExpr = pList->nAlloc = 0;
530a76b5dfcSdrh       return pList;
531a76b5dfcSdrh     }
532a76b5dfcSdrh   }
5334efc4754Sdrh   assert( pList->a!=0 );
5344efc4754Sdrh   if( pExpr || pName ){
5354efc4754Sdrh     struct ExprList_item *pItem = &pList->a[pList->nExpr++];
5364efc4754Sdrh     memset(pItem, 0, sizeof(*pItem));
5374efc4754Sdrh     pItem->pExpr = pExpr;
538a99db3b6Sdrh     pItem->zName = sqlite3NameFromToken(pName);
539a76b5dfcSdrh   }
540a76b5dfcSdrh   return pList;
541a76b5dfcSdrh }
542a76b5dfcSdrh 
543a76b5dfcSdrh /*
544a76b5dfcSdrh ** Delete an entire expression list.
545a76b5dfcSdrh */
5464adee20fSdanielk1977 void sqlite3ExprListDelete(ExprList *pList){
547a76b5dfcSdrh   int i;
548be5c89acSdrh   struct ExprList_item *pItem;
549a76b5dfcSdrh   if( pList==0 ) return;
5501bdd9b57Sdrh   assert( pList->a!=0 || (pList->nExpr==0 && pList->nAlloc==0) );
5511bdd9b57Sdrh   assert( pList->nExpr<=pList->nAlloc );
552be5c89acSdrh   for(pItem=pList->a, i=0; i<pList->nExpr; i++, pItem++){
553be5c89acSdrh     sqlite3ExprDelete(pItem->pExpr);
554be5c89acSdrh     sqliteFree(pItem->zName);
555a76b5dfcSdrh   }
556a76b5dfcSdrh   sqliteFree(pList->a);
557a76b5dfcSdrh   sqliteFree(pList);
558a76b5dfcSdrh }
559a76b5dfcSdrh 
560a76b5dfcSdrh /*
561fef5208cSdrh ** Walk an expression tree.  Return 1 if the expression is constant
562fef5208cSdrh ** and 0 if it involves variables.
5632398937bSdrh **
5642398937bSdrh ** For the purposes of this function, a double-quoted string (ex: "abc")
5652398937bSdrh ** is considered a variable but a single-quoted string (ex: 'abc') is
5662398937bSdrh ** a constant.
567fef5208cSdrh */
5684adee20fSdanielk1977 int sqlite3ExprIsConstant(Expr *p){
569fef5208cSdrh   switch( p->op ){
570fef5208cSdrh     case TK_ID:
571967e8b73Sdrh     case TK_COLUMN:
572fef5208cSdrh     case TK_DOT:
5737bdc0c1dSdrh     case TK_FUNCTION:
574fef5208cSdrh       return 0;
5757bdc0c1dSdrh     case TK_NULL:
5762398937bSdrh     case TK_STRING:
577c572ef7fSdanielk1977     case TK_BLOB:
5789208643dSdrh     case TK_INTEGER:
5799208643dSdrh     case TK_FLOAT:
58050457896Sdrh     case TK_VARIABLE:
5817977a17fSdanielk1977     case TK_CTIME:
5827977a17fSdanielk1977     case TK_CTIMESTAMP:
5837977a17fSdanielk1977     case TK_CDATE:
5849208643dSdrh       return 1;
585fef5208cSdrh     default: {
5864adee20fSdanielk1977       if( p->pLeft && !sqlite3ExprIsConstant(p->pLeft) ) return 0;
5874adee20fSdanielk1977       if( p->pRight && !sqlite3ExprIsConstant(p->pRight) ) return 0;
588fef5208cSdrh       if( p->pList ){
589fef5208cSdrh         int i;
590fef5208cSdrh         for(i=0; i<p->pList->nExpr; i++){
5914adee20fSdanielk1977           if( !sqlite3ExprIsConstant(p->pList->a[i].pExpr) ) return 0;
592fef5208cSdrh         }
593fef5208cSdrh       }
5949208643dSdrh       return p->pLeft!=0 || p->pRight!=0 || (p->pList && p->pList->nExpr>0);
595fef5208cSdrh     }
596fef5208cSdrh   }
5979208643dSdrh   return 0;
598fef5208cSdrh }
599fef5208cSdrh 
600fef5208cSdrh /*
601202b2df7Sdrh ** If the given expression codes a constant integer that is small enough
602202b2df7Sdrh ** to fit in a 32-bit integer, return 1 and put the value of the integer
603202b2df7Sdrh ** in *pValue.  If the expression is not an integer or if it is too big
604202b2df7Sdrh ** to fit in a signed 32-bit integer, return 0 and leave *pValue unchanged.
605e4de1febSdrh */
6064adee20fSdanielk1977 int sqlite3ExprIsInteger(Expr *p, int *pValue){
607e4de1febSdrh   switch( p->op ){
608e4de1febSdrh     case TK_INTEGER: {
609fec19aadSdrh       if( sqlite3GetInt32(p->token.z, pValue) ){
610e4de1febSdrh         return 1;
611e4de1febSdrh       }
612202b2df7Sdrh       break;
613202b2df7Sdrh     }
614e4de1febSdrh     case TK_STRING: {
6154c755c0fSdrh       const u8 *z = (u8*)p->token.z;
616e4de1febSdrh       int n = p->token.n;
617bd790ee3Sdrh       if( n>0 && z[0]=='-' ){ z++; n--; }
618e4de1febSdrh       while( n>0 && *z && isdigit(*z) ){ z++; n--; }
619fec19aadSdrh       if( n==0 && sqlite3GetInt32(p->token.z, pValue) ){
620e4de1febSdrh         return 1;
621e4de1febSdrh       }
622e4de1febSdrh       break;
623e4de1febSdrh     }
6244b59ab5eSdrh     case TK_UPLUS: {
6254adee20fSdanielk1977       return sqlite3ExprIsInteger(p->pLeft, pValue);
6264b59ab5eSdrh     }
627e4de1febSdrh     case TK_UMINUS: {
628e4de1febSdrh       int v;
6294adee20fSdanielk1977       if( sqlite3ExprIsInteger(p->pLeft, &v) ){
630e4de1febSdrh         *pValue = -v;
631e4de1febSdrh         return 1;
632e4de1febSdrh       }
633e4de1febSdrh       break;
634e4de1febSdrh     }
635e4de1febSdrh     default: break;
636e4de1febSdrh   }
637e4de1febSdrh   return 0;
638e4de1febSdrh }
639e4de1febSdrh 
640e4de1febSdrh /*
641c4a3c779Sdrh ** Return TRUE if the given string is a row-id column name.
642c4a3c779Sdrh */
6434adee20fSdanielk1977 int sqlite3IsRowid(const char *z){
6444adee20fSdanielk1977   if( sqlite3StrICmp(z, "_ROWID_")==0 ) return 1;
6454adee20fSdanielk1977   if( sqlite3StrICmp(z, "ROWID")==0 ) return 1;
6464adee20fSdanielk1977   if( sqlite3StrICmp(z, "OID")==0 ) return 1;
647c4a3c779Sdrh   return 0;
648c4a3c779Sdrh }
649c4a3c779Sdrh 
650c4a3c779Sdrh /*
6518141f61eSdrh ** Given the name of a column of the form X.Y.Z or Y.Z or just Z, look up
6528141f61eSdrh ** that name in the set of source tables in pSrcList and make the pExpr
6538141f61eSdrh ** expression node refer back to that source column.  The following changes
6548141f61eSdrh ** are made to pExpr:
6558141f61eSdrh **
6568141f61eSdrh **    pExpr->iDb           Set the index in db->aDb[] of the database holding
6578141f61eSdrh **                         the table.
6588141f61eSdrh **    pExpr->iTable        Set to the cursor number for the table obtained
6598141f61eSdrh **                         from pSrcList.
6608141f61eSdrh **    pExpr->iColumn       Set to the column number within the table.
6618141f61eSdrh **    pExpr->op            Set to TK_COLUMN.
6628141f61eSdrh **    pExpr->pLeft         Any expression this points to is deleted
6638141f61eSdrh **    pExpr->pRight        Any expression this points to is deleted.
6648141f61eSdrh **
6658141f61eSdrh ** The pDbToken is the name of the database (the "X").  This value may be
6668141f61eSdrh ** NULL meaning that name is of the form Y.Z or Z.  Any available database
6678141f61eSdrh ** can be used.  The pTableToken is the name of the table (the "Y").  This
6688141f61eSdrh ** value can be NULL if pDbToken is also NULL.  If pTableToken is NULL it
6698141f61eSdrh ** means that the form of the name is Z and that columns from any table
6708141f61eSdrh ** can be used.
6718141f61eSdrh **
6728141f61eSdrh ** If the name cannot be resolved unambiguously, leave an error message
6738141f61eSdrh ** in pParse and return non-zero.  Return zero on success.
6748141f61eSdrh */
6758141f61eSdrh static int lookupName(
6768141f61eSdrh   Parse *pParse,      /* The parsing context */
6778141f61eSdrh   Token *pDbToken,     /* Name of the database containing table, or NULL */
6788141f61eSdrh   Token *pTableToken,  /* Name of table containing column, or NULL */
6798141f61eSdrh   Token *pColumnToken, /* Name of the column. */
6808141f61eSdrh   SrcList *pSrcList,   /* List of tables used to resolve column names */
6818141f61eSdrh   ExprList *pEList,    /* List of expressions used to resolve "AS" */
6828141f61eSdrh   Expr *pExpr          /* Make this EXPR node point to the selected column */
6838141f61eSdrh ){
6848141f61eSdrh   char *zDb = 0;       /* Name of the database.  The "X" in X.Y.Z */
6858141f61eSdrh   char *zTab = 0;      /* Name of the table.  The "Y" in X.Y.Z or Y.Z */
6868141f61eSdrh   char *zCol = 0;      /* Name of the column.  The "Z" */
6878141f61eSdrh   int i, j;            /* Loop counters */
6888141f61eSdrh   int cnt = 0;         /* Number of matching column names */
6898141f61eSdrh   int cntTab = 0;      /* Number of matching table names */
6909bb575fdSdrh   sqlite3 *db = pParse->db;  /* The database */
6918141f61eSdrh 
6928141f61eSdrh   assert( pColumnToken && pColumnToken->z ); /* The Z in X.Y.Z cannot be NULL */
693a99db3b6Sdrh   zDb = sqlite3NameFromToken(pDbToken);
694a99db3b6Sdrh   zTab = sqlite3NameFromToken(pTableToken);
695a99db3b6Sdrh   zCol = sqlite3NameFromToken(pColumnToken);
69624b03fd0Sdanielk1977   if( sqlite3_malloc_failed ){
6978141f61eSdrh     return 1;  /* Leak memory (zDb and zTab) if malloc fails */
6988141f61eSdrh   }
6998141f61eSdrh   assert( zTab==0 || pEList==0 );
7008141f61eSdrh 
7018141f61eSdrh   pExpr->iTable = -1;
7028141f61eSdrh   for(i=0; i<pSrcList->nSrc; i++){
7038141f61eSdrh     struct SrcList_item *pItem = &pSrcList->a[i];
7048141f61eSdrh     Table *pTab = pItem->pTab;
7058141f61eSdrh     Column *pCol;
7068141f61eSdrh 
7078141f61eSdrh     if( pTab==0 ) continue;
7088141f61eSdrh     assert( pTab->nCol>0 );
7098141f61eSdrh     if( zTab ){
7108141f61eSdrh       if( pItem->zAlias ){
7118141f61eSdrh         char *zTabName = pItem->zAlias;
7124adee20fSdanielk1977         if( sqlite3StrICmp(zTabName, zTab)!=0 ) continue;
7138141f61eSdrh       }else{
7148141f61eSdrh         char *zTabName = pTab->zName;
7154adee20fSdanielk1977         if( zTabName==0 || sqlite3StrICmp(zTabName, zTab)!=0 ) continue;
7164adee20fSdanielk1977         if( zDb!=0 && sqlite3StrICmp(db->aDb[pTab->iDb].zName, zDb)!=0 ){
7178141f61eSdrh           continue;
7188141f61eSdrh         }
7198141f61eSdrh       }
7208141f61eSdrh     }
7218141f61eSdrh     if( 0==(cntTab++) ){
7228141f61eSdrh       pExpr->iTable = pItem->iCursor;
7238141f61eSdrh       pExpr->iDb = pTab->iDb;
7248141f61eSdrh     }
7258141f61eSdrh     for(j=0, pCol=pTab->aCol; j<pTab->nCol; j++, pCol++){
7264adee20fSdanielk1977       if( sqlite3StrICmp(pCol->zName, zCol)==0 ){
7278141f61eSdrh         cnt++;
7288141f61eSdrh         pExpr->iTable = pItem->iCursor;
7298141f61eSdrh         pExpr->iDb = pTab->iDb;
7308141f61eSdrh         /* Substitute the rowid (column -1) for the INTEGER PRIMARY KEY */
7318141f61eSdrh         pExpr->iColumn = j==pTab->iPKey ? -1 : j;
732a37cdde0Sdanielk1977         pExpr->affinity = pTab->aCol[j].affinity;
7330202b29eSdanielk1977         pExpr->pColl = pTab->aCol[j].pColl;
7348141f61eSdrh         break;
7358141f61eSdrh       }
7368141f61eSdrh     }
7378141f61eSdrh   }
7388141f61eSdrh 
739b7f9164eSdrh #ifndef SQLITE_OMIT_TRIGGER
7408141f61eSdrh   /* If we have not already resolved the name, then maybe
7418141f61eSdrh   ** it is a new.* or old.* trigger argument reference
7428141f61eSdrh   */
7438141f61eSdrh   if( zDb==0 && zTab!=0 && cnt==0 && pParse->trigStack!=0 ){
7448141f61eSdrh     TriggerStack *pTriggerStack = pParse->trigStack;
7458141f61eSdrh     Table *pTab = 0;
7464adee20fSdanielk1977     if( pTriggerStack->newIdx != -1 && sqlite3StrICmp("new", zTab) == 0 ){
7478141f61eSdrh       pExpr->iTable = pTriggerStack->newIdx;
7488141f61eSdrh       assert( pTriggerStack->pTab );
7498141f61eSdrh       pTab = pTriggerStack->pTab;
7504adee20fSdanielk1977     }else if( pTriggerStack->oldIdx != -1 && sqlite3StrICmp("old", zTab) == 0 ){
7518141f61eSdrh       pExpr->iTable = pTriggerStack->oldIdx;
7528141f61eSdrh       assert( pTriggerStack->pTab );
7538141f61eSdrh       pTab = pTriggerStack->pTab;
7548141f61eSdrh     }
7558141f61eSdrh 
7568141f61eSdrh     if( pTab ){
7578141f61eSdrh       int j;
7588141f61eSdrh       Column *pCol = pTab->aCol;
7598141f61eSdrh 
7608141f61eSdrh       pExpr->iDb = pTab->iDb;
7618141f61eSdrh       cntTab++;
7628141f61eSdrh       for(j=0; j < pTab->nCol; j++, pCol++) {
7634adee20fSdanielk1977         if( sqlite3StrICmp(pCol->zName, zCol)==0 ){
7648141f61eSdrh           cnt++;
7658141f61eSdrh           pExpr->iColumn = j==pTab->iPKey ? -1 : j;
766a37cdde0Sdanielk1977           pExpr->affinity = pTab->aCol[j].affinity;
7670202b29eSdanielk1977           pExpr->pColl = pTab->aCol[j].pColl;
7688141f61eSdrh           break;
7698141f61eSdrh         }
7708141f61eSdrh       }
7718141f61eSdrh     }
7728141f61eSdrh   }
773b7f9164eSdrh #endif /* !defined(SQLITE_OMIT_TRIGGER) */
7748141f61eSdrh 
7758141f61eSdrh   /*
7768141f61eSdrh   ** Perhaps the name is a reference to the ROWID
7778141f61eSdrh   */
7784adee20fSdanielk1977   if( cnt==0 && cntTab==1 && sqlite3IsRowid(zCol) ){
7798141f61eSdrh     cnt = 1;
7808141f61eSdrh     pExpr->iColumn = -1;
781a37cdde0Sdanielk1977     pExpr->affinity = SQLITE_AFF_INTEGER;
7828141f61eSdrh   }
7838141f61eSdrh 
7848141f61eSdrh   /*
7858141f61eSdrh   ** If the input is of the form Z (not Y.Z or X.Y.Z) then the name Z
7868141f61eSdrh   ** might refer to an result-set alias.  This happens, for example, when
7878141f61eSdrh   ** we are resolving names in the WHERE clause of the following command:
7888141f61eSdrh   **
7898141f61eSdrh   **     SELECT a+b AS x FROM table WHERE x<10;
7908141f61eSdrh   **
7918141f61eSdrh   ** In cases like this, replace pExpr with a copy of the expression that
7928141f61eSdrh   ** forms the result set entry ("a+b" in the example) and return immediately.
7938141f61eSdrh   ** Note that the expression in the result set should have already been
7948141f61eSdrh   ** resolved by the time the WHERE clause is resolved.
7958141f61eSdrh   */
7968141f61eSdrh   if( cnt==0 && pEList!=0 ){
7978141f61eSdrh     for(j=0; j<pEList->nExpr; j++){
7988141f61eSdrh       char *zAs = pEList->a[j].zName;
7994adee20fSdanielk1977       if( zAs!=0 && sqlite3StrICmp(zAs, zCol)==0 ){
8008141f61eSdrh         assert( pExpr->pLeft==0 && pExpr->pRight==0 );
8018141f61eSdrh         pExpr->op = TK_AS;
8028141f61eSdrh         pExpr->iColumn = j;
8034adee20fSdanielk1977         pExpr->pLeft = sqlite3ExprDup(pEList->a[j].pExpr);
8048141f61eSdrh         sqliteFree(zCol);
8058141f61eSdrh         assert( zTab==0 && zDb==0 );
8068141f61eSdrh         return 0;
8078141f61eSdrh       }
8088141f61eSdrh     }
8098141f61eSdrh   }
8108141f61eSdrh 
8118141f61eSdrh   /*
8128141f61eSdrh   ** If X and Y are NULL (in other words if only the column name Z is
8138141f61eSdrh   ** supplied) and the value of Z is enclosed in double-quotes, then
8148141f61eSdrh   ** Z is a string literal if it doesn't match any column names.  In that
8158141f61eSdrh   ** case, we need to return right away and not make any changes to
8168141f61eSdrh   ** pExpr.
8178141f61eSdrh   */
8188141f61eSdrh   if( cnt==0 && zTab==0 && pColumnToken->z[0]=='"' ){
8198141f61eSdrh     sqliteFree(zCol);
8208141f61eSdrh     return 0;
8218141f61eSdrh   }
8228141f61eSdrh 
8238141f61eSdrh   /*
8248141f61eSdrh   ** cnt==0 means there was not match.  cnt>1 means there were two or
8258141f61eSdrh   ** more matches.  Either way, we have an error.
8268141f61eSdrh   */
8278141f61eSdrh   if( cnt!=1 ){
8288141f61eSdrh     char *z = 0;
8298141f61eSdrh     char *zErr;
8308141f61eSdrh     zErr = cnt==0 ? "no such column: %s" : "ambiguous column name: %s";
8318141f61eSdrh     if( zDb ){
8324adee20fSdanielk1977       sqlite3SetString(&z, zDb, ".", zTab, ".", zCol, 0);
8338141f61eSdrh     }else if( zTab ){
8344adee20fSdanielk1977       sqlite3SetString(&z, zTab, ".", zCol, 0);
8358141f61eSdrh     }else{
8368141f61eSdrh       z = sqliteStrDup(zCol);
8378141f61eSdrh     }
8384adee20fSdanielk1977     sqlite3ErrorMsg(pParse, zErr, z);
8398141f61eSdrh     sqliteFree(z);
8408141f61eSdrh   }
8418141f61eSdrh 
8428141f61eSdrh   /* Clean up and return
8438141f61eSdrh   */
8448141f61eSdrh   sqliteFree(zDb);
8458141f61eSdrh   sqliteFree(zTab);
8468141f61eSdrh   sqliteFree(zCol);
8474adee20fSdanielk1977   sqlite3ExprDelete(pExpr->pLeft);
8488141f61eSdrh   pExpr->pLeft = 0;
8494adee20fSdanielk1977   sqlite3ExprDelete(pExpr->pRight);
8508141f61eSdrh   pExpr->pRight = 0;
8518141f61eSdrh   pExpr->op = TK_COLUMN;
8524adee20fSdanielk1977   sqlite3AuthRead(pParse, pExpr, pSrcList);
8538141f61eSdrh   return cnt!=1;
8548141f61eSdrh }
8558141f61eSdrh 
8568141f61eSdrh /*
857cce7d176Sdrh ** This routine walks an expression tree and resolves references to
858967e8b73Sdrh ** table columns.  Nodes of the form ID.ID or ID resolve into an
859aacc543eSdrh ** index to the table in the table list and a column offset.  The
860aacc543eSdrh ** Expr.opcode for such nodes is changed to TK_COLUMN.  The Expr.iTable
861aacc543eSdrh ** value is changed to the index of the referenced table in pTabList
862832508b7Sdrh ** plus the "base" value.  The base value will ultimately become the
863aacc543eSdrh ** VDBE cursor number for a cursor that is pointing into the referenced
864aacc543eSdrh ** table.  The Expr.iColumn value is changed to the index of the column
865aacc543eSdrh ** of the referenced table.  The Expr.iColumn value for the special
866aacc543eSdrh ** ROWID column is -1.  Any INTEGER PRIMARY KEY column is tried as an
867aacc543eSdrh ** alias for ROWID.
86819a775c2Sdrh **
869fef5208cSdrh ** We also check for instances of the IN operator.  IN comes in two
870fef5208cSdrh ** forms:
871fef5208cSdrh **
872fef5208cSdrh **           expr IN (exprlist)
873fef5208cSdrh ** and
874fef5208cSdrh **           expr IN (SELECT ...)
875fef5208cSdrh **
876fef5208cSdrh ** The first form is handled by creating a set holding the list
877fef5208cSdrh ** of allowed values.  The second form causes the SELECT to generate
878fef5208cSdrh ** a temporary table.
879fef5208cSdrh **
880fef5208cSdrh ** This routine also looks for scalar SELECTs that are part of an expression.
88119a775c2Sdrh ** If it finds any, it generates code to write the value of that select
88219a775c2Sdrh ** into a memory cell.
883cce7d176Sdrh **
884967e8b73Sdrh ** Unknown columns or tables provoke an error.  The function returns
885cce7d176Sdrh ** the number of errors seen and leaves an error message on pParse->zErrMsg.
886cce7d176Sdrh */
8874adee20fSdanielk1977 int sqlite3ExprResolveIds(
888a2e00042Sdrh   Parse *pParse,     /* The parser context */
8898141f61eSdrh   SrcList *pSrcList, /* List of tables used to resolve column names */
890a2e00042Sdrh   ExprList *pEList,  /* List of expressions used to resolve "AS" */
891a2e00042Sdrh   Expr *pExpr        /* The expression to be analyzed. */
892a2e00042Sdrh ){
8936a3ea0e6Sdrh   int i;
8946a3ea0e6Sdrh 
8958141f61eSdrh   if( pExpr==0 || pSrcList==0 ) return 0;
8968141f61eSdrh   for(i=0; i<pSrcList->nSrc; i++){
8978141f61eSdrh     assert( pSrcList->a[i].iCursor>=0 && pSrcList->a[i].iCursor<pParse->nTab );
8986a3ea0e6Sdrh   }
899cce7d176Sdrh   switch( pExpr->op ){
9002398937bSdrh     /* Double-quoted strings (ex: "abc") are used as identifiers if
9012398937bSdrh     ** possible.  Otherwise they remain as strings.  Single-quoted
9022398937bSdrh     ** strings (ex: 'abc') are always string literals.
9032398937bSdrh     */
9042398937bSdrh     case TK_STRING: {
9052398937bSdrh       if( pExpr->token.z[0]=='\'' ) break;
9062398937bSdrh       /* Fall thru into the TK_ID case if this is a double-quoted string */
9072398937bSdrh     }
9088141f61eSdrh     /* A lone identifier is the name of a columnd.
909a2e00042Sdrh     */
910cce7d176Sdrh     case TK_ID: {
9118141f61eSdrh       if( lookupName(pParse, 0, 0, &pExpr->token, pSrcList, pEList, pExpr) ){
912cce7d176Sdrh         return 1;
913ed6c8671Sdrh       }
914cce7d176Sdrh       break;
915cce7d176Sdrh     }
916cce7d176Sdrh 
917d24cc427Sdrh     /* A table name and column name:     ID.ID
918d24cc427Sdrh     ** Or a database, table and column:  ID.ID.ID
919d24cc427Sdrh     */
920cce7d176Sdrh     case TK_DOT: {
9218141f61eSdrh       Token *pColumn;
9228141f61eSdrh       Token *pTable;
9238141f61eSdrh       Token *pDb;
9248141f61eSdrh       Expr *pRight;
925cce7d176Sdrh 
926cce7d176Sdrh       pRight = pExpr->pRight;
927d24cc427Sdrh       if( pRight->op==TK_ID ){
9288141f61eSdrh         pDb = 0;
9298141f61eSdrh         pTable = &pExpr->pLeft->token;
9308141f61eSdrh         pColumn = &pRight->token;
931d24cc427Sdrh       }else{
9328141f61eSdrh         assert( pRight->op==TK_DOT );
9338141f61eSdrh         pDb = &pExpr->pLeft->token;
9348141f61eSdrh         pTable = &pRight->pLeft->token;
9358141f61eSdrh         pColumn = &pRight->pRight->token;
936d24cc427Sdrh       }
9378141f61eSdrh       if( lookupName(pParse, pDb, pTable, pColumn, pSrcList, 0, pExpr) ){
938daffd0e5Sdrh         return 1;
939daffd0e5Sdrh       }
940cce7d176Sdrh       break;
941cce7d176Sdrh     }
942cce7d176Sdrh 
943fef5208cSdrh     case TK_IN: {
944e014a838Sdanielk1977       char affinity;
9454adee20fSdanielk1977       Vdbe *v = sqlite3GetVdbe(pParse);
946d3d39e93Sdrh       KeyInfo keyInfo;
9470202b29eSdanielk1977       int addr;        /* Address of OP_OpenTemp instruction */
948d3d39e93Sdrh 
949fef5208cSdrh       if( v==0 ) return 1;
9504adee20fSdanielk1977       if( sqlite3ExprResolveIds(pParse, pSrcList, pEList, pExpr->pLeft) ){
951cfab11bcSdrh         return 1;
952cfab11bcSdrh       }
953bf3b721fSdanielk1977       affinity = sqlite3ExprAffinity(pExpr->pLeft);
954e014a838Sdanielk1977 
955e014a838Sdanielk1977       /* Whether this is an 'x IN(SELECT...)' or an 'x IN(<exprlist>)'
956e014a838Sdanielk1977       ** expression it is handled the same way. A temporary table is
957e014a838Sdanielk1977       ** filled with single-field index keys representing the results
958e014a838Sdanielk1977       ** from the SELECT or the <exprlist>.
959fef5208cSdrh       **
960e014a838Sdanielk1977       ** If the 'x' expression is a column value, or the SELECT...
961e014a838Sdanielk1977       ** statement returns a column value, then the affinity of that
962e014a838Sdanielk1977       ** column is used to build the index keys. If both 'x' and the
963e014a838Sdanielk1977       ** SELECT... statement are columns, then numeric affinity is used
964e014a838Sdanielk1977       ** if either column has NUMERIC or INTEGER affinity. If neither
965e014a838Sdanielk1977       ** 'x' nor the SELECT... statement are columns, then numeric affinity
966e014a838Sdanielk1977       ** is used.
967fef5208cSdrh       */
968832508b7Sdrh       pExpr->iTable = pParse->nTab++;
9690202b29eSdanielk1977       addr = sqlite3VdbeAddOp(v, OP_OpenTemp, pExpr->iTable, 0);
970d3d39e93Sdrh       memset(&keyInfo, 0, sizeof(keyInfo));
971d3d39e93Sdrh       keyInfo.nField = 1;
972f3218feaSdrh       sqlite3VdbeAddOp(v, OP_SetNumColumns, pExpr->iTable, 1);
973e014a838Sdanielk1977 
974e014a838Sdanielk1977       if( pExpr->pSelect ){
975e014a838Sdanielk1977         /* Case 1:     expr IN (SELECT ...)
976e014a838Sdanielk1977         **
977e014a838Sdanielk1977         ** Generate code to write the results of the select into the temporary
978e014a838Sdanielk1977         ** table allocated and opened above.
979e014a838Sdanielk1977         */
980e014a838Sdanielk1977         int iParm = pExpr->iTable +  (((int)affinity)<<16);
981be5c89acSdrh         ExprList *pEList;
982e014a838Sdanielk1977         assert( (pExpr->iTable&0x0000FFFF)==pExpr->iTable );
983bf3b721fSdanielk1977         sqlite3Select(pParse, pExpr->pSelect, SRT_Set, iParm, 0, 0, 0, 0);
984be5c89acSdrh         pEList = pExpr->pSelect->pEList;
985be5c89acSdrh         if( pEList && pEList->nExpr>0 ){
9867cedc8d4Sdanielk1977           keyInfo.aColl[0] = binaryCompareCollSeq(pParse, pExpr->pLeft,
987be5c89acSdrh               pEList->a[0].pExpr);
9880202b29eSdanielk1977         }
989fef5208cSdrh       }else if( pExpr->pList ){
990fef5208cSdrh         /* Case 2:     expr IN (exprlist)
991fef5208cSdrh         **
992e014a838Sdanielk1977 	** For each expression, build an index key from the evaluation and
993e014a838Sdanielk1977         ** store it in the temporary table. If <expr> is a column, then use
994e014a838Sdanielk1977         ** that columns affinity when building index keys. If <expr> is not
995e014a838Sdanielk1977         ** a column, use numeric affinity.
996fef5208cSdrh         */
997e014a838Sdanielk1977         int i;
998e014a838Sdanielk1977         if( !affinity ){
999e014a838Sdanielk1977           affinity = SQLITE_AFF_NUMERIC;
1000e014a838Sdanielk1977         }
10010202b29eSdanielk1977         keyInfo.aColl[0] = pExpr->pLeft->pColl;
1002e014a838Sdanielk1977 
1003e014a838Sdanielk1977         /* Loop through each expression in <exprlist>. */
1004fef5208cSdrh         for(i=0; i<pExpr->pList->nExpr; i++){
1005fef5208cSdrh           Expr *pE2 = pExpr->pList->a[i].pExpr;
1006e014a838Sdanielk1977 
1007e014a838Sdanielk1977           /* Check that the expression is constant and valid. */
10084adee20fSdanielk1977           if( !sqlite3ExprIsConstant(pE2) ){
10094adee20fSdanielk1977             sqlite3ErrorMsg(pParse,
1010da93d238Sdrh               "right-hand side of IN operator must be constant");
1011fef5208cSdrh             return 1;
1012fef5208cSdrh           }
10134adee20fSdanielk1977           if( sqlite3ExprCheck(pParse, pE2, 0, 0) ){
10144794b980Sdrh             return 1;
10154794b980Sdrh           }
1016e014a838Sdanielk1977 
1017e014a838Sdanielk1977           /* Evaluate the expression and insert it into the temp table */
10184adee20fSdanielk1977           sqlite3ExprCode(pParse, pE2);
101994a11211Sdrh           sqlite3VdbeOp3(v, OP_MakeRecord, 1, 0, &affinity, 1);
10200f69c1e3Sdanielk1977           sqlite3VdbeAddOp(v, OP_String8, 0, 0);
1021e014a838Sdanielk1977           sqlite3VdbeAddOp(v, OP_PutStrKey, pExpr->iTable, 0);
1022fef5208cSdrh         }
1023fef5208cSdrh       }
10240202b29eSdanielk1977       sqlite3VdbeChangeP3(v, addr, (void *)&keyInfo, P3_KEYINFO);
10250202b29eSdanielk1977 
1026cfab11bcSdrh       break;
1027fef5208cSdrh     }
1028fef5208cSdrh 
102919a775c2Sdrh     case TK_SELECT: {
1030fef5208cSdrh       /* This has to be a scalar SELECT.  Generate code to put the
1031fef5208cSdrh       ** value of this select in a memory cell and record the number
1032967e8b73Sdrh       ** of the memory cell in iColumn.
1033fef5208cSdrh       */
1034967e8b73Sdrh       pExpr->iColumn = pParse->nMem++;
1035bf3b721fSdanielk1977       if(sqlite3Select(pParse, pExpr->pSelect, SRT_Mem,pExpr->iColumn,0,0,0,0)){
103619a775c2Sdrh         return 1;
103719a775c2Sdrh       }
103819a775c2Sdrh       break;
103919a775c2Sdrh     }
104019a775c2Sdrh 
1041cce7d176Sdrh     /* For all else, just recursively walk the tree */
1042cce7d176Sdrh     default: {
1043cce7d176Sdrh       if( pExpr->pLeft
10444adee20fSdanielk1977       && sqlite3ExprResolveIds(pParse, pSrcList, pEList, pExpr->pLeft) ){
1045cce7d176Sdrh         return 1;
1046cce7d176Sdrh       }
1047cce7d176Sdrh       if( pExpr->pRight
10484adee20fSdanielk1977       && sqlite3ExprResolveIds(pParse, pSrcList, pEList, pExpr->pRight) ){
1049cce7d176Sdrh         return 1;
1050cce7d176Sdrh       }
1051cce7d176Sdrh       if( pExpr->pList ){
1052cce7d176Sdrh         int i;
1053cce7d176Sdrh         ExprList *pList = pExpr->pList;
1054cce7d176Sdrh         for(i=0; i<pList->nExpr; i++){
1055832508b7Sdrh           Expr *pArg = pList->a[i].pExpr;
10564adee20fSdanielk1977           if( sqlite3ExprResolveIds(pParse, pSrcList, pEList, pArg) ){
1057cce7d176Sdrh             return 1;
1058cce7d176Sdrh           }
1059cce7d176Sdrh         }
1060cce7d176Sdrh       }
1061cce7d176Sdrh     }
1062cce7d176Sdrh   }
1063cce7d176Sdrh   return 0;
1064cce7d176Sdrh }
1065cce7d176Sdrh 
1066cce7d176Sdrh /*
10674b59ab5eSdrh ** pExpr is a node that defines a function of some kind.  It might
10684b59ab5eSdrh ** be a syntactic function like "count(x)" or it might be a function
10694b59ab5eSdrh ** that implements an operator, like "a LIKE b".
10704b59ab5eSdrh **
10714b59ab5eSdrh ** This routine makes *pzName point to the name of the function and
10724b59ab5eSdrh ** *pnName hold the number of characters in the function name.
10734b59ab5eSdrh */
10744b59ab5eSdrh static void getFunctionName(Expr *pExpr, const char **pzName, int *pnName){
10754b59ab5eSdrh   switch( pExpr->op ){
10764b59ab5eSdrh     case TK_FUNCTION: {
10774b59ab5eSdrh       *pzName = pExpr->token.z;
10786977fea8Sdrh       *pnName = pExpr->token.n;
10794b59ab5eSdrh       break;
10804b59ab5eSdrh     }
10814b59ab5eSdrh     case TK_LIKE: {
10824b59ab5eSdrh       *pzName = "like";
10834b59ab5eSdrh       *pnName = 4;
10844b59ab5eSdrh       break;
10854b59ab5eSdrh     }
10864b59ab5eSdrh     case TK_GLOB: {
10874b59ab5eSdrh       *pzName = "glob";
10884b59ab5eSdrh       *pnName = 4;
10894b59ab5eSdrh       break;
10904b59ab5eSdrh     }
10917977a17fSdanielk1977     case TK_CTIME: {
10927977a17fSdanielk1977       *pzName = "current_time";
10937977a17fSdanielk1977       *pnName = 12;
10947977a17fSdanielk1977       break;
10957977a17fSdanielk1977     }
10967977a17fSdanielk1977     case TK_CDATE: {
10977977a17fSdanielk1977       *pzName = "current_date";
10987977a17fSdanielk1977       *pnName = 12;
10997977a17fSdanielk1977       break;
11007977a17fSdanielk1977     }
11017977a17fSdanielk1977     case TK_CTIMESTAMP: {
11027977a17fSdanielk1977       *pzName = "current_timestamp";
11037977a17fSdanielk1977       *pnName = 17;
11047977a17fSdanielk1977       break;
11057977a17fSdanielk1977     }
11064b59ab5eSdrh     default: {
11074b59ab5eSdrh       *pzName = "can't happen";
11084b59ab5eSdrh       *pnName = 12;
11094b59ab5eSdrh       break;
11104b59ab5eSdrh     }
11114b59ab5eSdrh   }
11124b59ab5eSdrh }
11134b59ab5eSdrh 
11144b59ab5eSdrh /*
1115cce7d176Sdrh ** Error check the functions in an expression.  Make sure all
1116cce7d176Sdrh ** function names are recognized and all functions have the correct
1117cce7d176Sdrh ** number of arguments.  Leave an error message in pParse->zErrMsg
1118cce7d176Sdrh ** if anything is amiss.  Return the number of errors.
1119cce7d176Sdrh **
1120cce7d176Sdrh ** if pIsAgg is not null and this expression is an aggregate function
1121cce7d176Sdrh ** (like count(*) or max(value)) then write a 1 into *pIsAgg.
1122cce7d176Sdrh */
11234adee20fSdanielk1977 int sqlite3ExprCheck(Parse *pParse, Expr *pExpr, int allowAgg, int *pIsAgg){
1124cce7d176Sdrh   int nErr = 0;
1125cce7d176Sdrh   if( pExpr==0 ) return 0;
1126cce7d176Sdrh   switch( pExpr->op ){
11277977a17fSdanielk1977     case TK_CTIME:
11287977a17fSdanielk1977     case TK_CTIMESTAMP:
11297977a17fSdanielk1977     case TK_CDATE:
11307977a17fSdanielk1977     /* Note: The above three were a seperate case in sqlmoto. Reason? */
11314b59ab5eSdrh     case TK_GLOB:
11324b59ab5eSdrh     case TK_LIKE:
1133cce7d176Sdrh     case TK_FUNCTION: {
1134c9b84a1fSdrh       int n = pExpr->pList ? pExpr->pList->nExpr : 0;  /* Number of arguments */
1135c9b84a1fSdrh       int no_such_func = 0;       /* True if no such function exists */
1136c9b84a1fSdrh       int wrong_num_args = 0;     /* True if wrong number of arguments */
1137c9b84a1fSdrh       int is_agg = 0;             /* True if is an aggregate function */
1138cce7d176Sdrh       int i;
11394b59ab5eSdrh       int nId;                    /* Number of characters in function name */
11404b59ab5eSdrh       const char *zId;            /* The function name. */
11410bce8354Sdrh       FuncDef *pDef;
1142d8123366Sdanielk1977       int enc = pParse->db->enc;
11430bce8354Sdrh 
11444b59ab5eSdrh       getFunctionName(pExpr, &zId, &nId);
1145d8123366Sdanielk1977       pDef = sqlite3FindFunction(pParse->db, zId, nId, n, enc, 0);
11460bce8354Sdrh       if( pDef==0 ){
1147d8123366Sdanielk1977         pDef = sqlite3FindFunction(pParse->db, zId, nId, -1, enc, 0);
11480bce8354Sdrh         if( pDef==0 ){
1149cce7d176Sdrh           no_such_func = 1;
11508e0a2f90Sdrh         }else{
11518e0a2f90Sdrh           wrong_num_args = 1;
11528e0a2f90Sdrh         }
11538e0a2f90Sdrh       }else{
11540bce8354Sdrh         is_agg = pDef->xFunc==0;
1155cce7d176Sdrh       }
11568e0a2f90Sdrh       if( is_agg && !allowAgg ){
11574adee20fSdanielk1977         sqlite3ErrorMsg(pParse, "misuse of aggregate function %.*s()", nId, zId);
11588e0a2f90Sdrh         nErr++;
11598e0a2f90Sdrh         is_agg = 0;
11608e0a2f90Sdrh       }else if( no_such_func ){
11614adee20fSdanielk1977         sqlite3ErrorMsg(pParse, "no such function: %.*s", nId, zId);
1162cce7d176Sdrh         nErr++;
11638e0a2f90Sdrh       }else if( wrong_num_args ){
11644adee20fSdanielk1977         sqlite3ErrorMsg(pParse,"wrong number of arguments to function %.*s()",
1165f7a9e1acSdrh              nId, zId);
11668e0a2f90Sdrh         nErr++;
1167cce7d176Sdrh       }
1168f7a9e1acSdrh       if( is_agg ){
1169f7a9e1acSdrh         pExpr->op = TK_AGG_FUNCTION;
1170f7a9e1acSdrh         if( pIsAgg ) *pIsAgg = 1;
1171f7a9e1acSdrh       }
1172cce7d176Sdrh       for(i=0; nErr==0 && i<n; i++){
11734adee20fSdanielk1977         nErr = sqlite3ExprCheck(pParse, pExpr->pList->a[i].pExpr,
11744cfa7934Sdrh                                allowAgg && !is_agg, pIsAgg);
1175cce7d176Sdrh       }
11760202b29eSdanielk1977       /* FIX ME:  Compute pExpr->affinity based on the expected return
11770202b29eSdanielk1977       ** type of the function
11780202b29eSdanielk1977       */
1179cce7d176Sdrh     }
1180cce7d176Sdrh     default: {
1181cce7d176Sdrh       if( pExpr->pLeft ){
11824adee20fSdanielk1977         nErr = sqlite3ExprCheck(pParse, pExpr->pLeft, allowAgg, pIsAgg);
1183cce7d176Sdrh       }
1184cce7d176Sdrh       if( nErr==0 && pExpr->pRight ){
11854adee20fSdanielk1977         nErr = sqlite3ExprCheck(pParse, pExpr->pRight, allowAgg, pIsAgg);
1186cce7d176Sdrh       }
1187fef5208cSdrh       if( nErr==0 && pExpr->pList ){
1188fef5208cSdrh         int n = pExpr->pList->nExpr;
1189fef5208cSdrh         int i;
1190fef5208cSdrh         for(i=0; nErr==0 && i<n; i++){
11912282792aSdrh           Expr *pE2 = pExpr->pList->a[i].pExpr;
11924adee20fSdanielk1977           nErr = sqlite3ExprCheck(pParse, pE2, allowAgg, pIsAgg);
1193fef5208cSdrh         }
1194fef5208cSdrh       }
1195cce7d176Sdrh       break;
1196cce7d176Sdrh     }
1197cce7d176Sdrh   }
1198cce7d176Sdrh   return nErr;
1199cce7d176Sdrh }
1200cce7d176Sdrh 
1201cce7d176Sdrh /*
1202290c1948Sdrh ** Call sqlite3ExprResolveIds() followed by sqlite3ExprCheck().
1203290c1948Sdrh **
1204290c1948Sdrh ** This routine is provided as a convenience since it is very common
1205290c1948Sdrh ** to call ResolveIds() and Check() back to back.
1206290c1948Sdrh */
1207290c1948Sdrh int sqlite3ExprResolveAndCheck(
1208290c1948Sdrh   Parse *pParse,     /* The parser context */
1209290c1948Sdrh   SrcList *pSrcList, /* List of tables used to resolve column names */
1210290c1948Sdrh   ExprList *pEList,  /* List of expressions used to resolve "AS" */
1211290c1948Sdrh   Expr *pExpr,       /* The expression to be analyzed. */
1212290c1948Sdrh   int allowAgg,      /* True to allow aggregate expressions */
1213290c1948Sdrh   int *pIsAgg        /* Set to TRUE if aggregates are found */
1214290c1948Sdrh ){
1215290c1948Sdrh   if( pExpr==0 ) return 0;
1216290c1948Sdrh   if( sqlite3ExprResolveIds(pParse,pSrcList,pEList,pExpr) ){
1217290c1948Sdrh     return 1;
1218290c1948Sdrh   }
1219290c1948Sdrh   return sqlite3ExprCheck(pParse, pExpr, allowAgg, pIsAgg);
1220290c1948Sdrh }
1221290c1948Sdrh 
1222290c1948Sdrh /*
1223fec19aadSdrh ** Generate an instruction that will put the integer describe by
1224fec19aadSdrh ** text z[0..n-1] on the stack.
1225fec19aadSdrh */
1226fec19aadSdrh static void codeInteger(Vdbe *v, const char *z, int n){
1227fec19aadSdrh   int i;
12286fec0762Sdrh   if( sqlite3GetInt32(z, &i) ){
12296fec0762Sdrh     sqlite3VdbeAddOp(v, OP_Integer, i, 0);
12306fec0762Sdrh   }else if( sqlite3FitsIn64Bits(z) ){
12316fec0762Sdrh     sqlite3VdbeOp3(v, OP_Integer, 0, 0, z, n);
1232fec19aadSdrh   }else{
1233fec19aadSdrh     sqlite3VdbeOp3(v, OP_Real, 0, 0, z, n);
1234fec19aadSdrh   }
1235fec19aadSdrh }
1236fec19aadSdrh 
1237fec19aadSdrh /*
1238cce7d176Sdrh ** Generate code into the current Vdbe to evaluate the given
12391ccde15dSdrh ** expression and leave the result on the top of stack.
1240f2bc013cSdrh **
1241f2bc013cSdrh ** This code depends on the fact that certain token values (ex: TK_EQ)
1242f2bc013cSdrh ** are the same as opcode values (ex: OP_Eq) that implement the corresponding
1243f2bc013cSdrh ** operation.  Special comments in vdbe.c and the mkopcodeh.awk script in
1244f2bc013cSdrh ** the make process cause these values to align.  Assert()s in the code
1245f2bc013cSdrh ** below verify that the numbers are aligned correctly.
1246cce7d176Sdrh */
12474adee20fSdanielk1977 void sqlite3ExprCode(Parse *pParse, Expr *pExpr){
1248cce7d176Sdrh   Vdbe *v = pParse->pVdbe;
1249cce7d176Sdrh   int op;
12507977a17fSdanielk1977   if( v==0 ) return;
12517977a17fSdanielk1977   if( pExpr==0 ){
12527977a17fSdanielk1977     sqlite3VdbeAddOp(v, OP_String8, 0, 0);  /* Empty expression evals to NULL */
12537977a17fSdanielk1977     return;
12547977a17fSdanielk1977   }
1255f2bc013cSdrh   op = pExpr->op;
1256f2bc013cSdrh   switch( op ){
1257967e8b73Sdrh     case TK_COLUMN: {
12582282792aSdrh       if( pParse->useAgg ){
12594adee20fSdanielk1977         sqlite3VdbeAddOp(v, OP_AggGet, 0, pExpr->iAgg);
1260c4a3c779Sdrh       }else if( pExpr->iColumn>=0 ){
12614adee20fSdanielk1977         sqlite3VdbeAddOp(v, OP_Column, pExpr->iTable, pExpr->iColumn);
1262145716b3Sdrh #ifndef NDEBUG
1263145716b3Sdrh         if( pExpr->span.z && pExpr->span.n>0 && pExpr->span.n<100 ){
1264ad6d9460Sdrh           VdbeComment((v, "# %T", &pExpr->span));
1265145716b3Sdrh         }
1266145716b3Sdrh #endif
1267c4a3c779Sdrh       }else{
12684adee20fSdanielk1977         sqlite3VdbeAddOp(v, OP_Recno, pExpr->iTable, 0);
12692282792aSdrh       }
1270cce7d176Sdrh       break;
1271cce7d176Sdrh     }
1272cce7d176Sdrh     case TK_INTEGER: {
1273fec19aadSdrh       codeInteger(v, pExpr->token.z, pExpr->token.n);
1274fec19aadSdrh       break;
127551e9a445Sdrh     }
1276fec19aadSdrh     case TK_FLOAT:
1277fec19aadSdrh     case TK_STRING: {
1278f2bc013cSdrh       assert( TK_FLOAT==OP_Real );
1279f2bc013cSdrh       assert( TK_STRING==OP_String8 );
1280fec19aadSdrh       sqlite3VdbeOp3(v, op, 0, 0, pExpr->token.z, pExpr->token.n);
12814adee20fSdanielk1977       sqlite3VdbeDequoteP3(v, -1);
1282cce7d176Sdrh       break;
1283cce7d176Sdrh     }
1284c572ef7fSdanielk1977     case TK_BLOB: {
1285f2bc013cSdrh       assert( TK_BLOB==OP_HexBlob );
1286c572ef7fSdanielk1977       sqlite3VdbeOp3(v, op, 0, 0, pExpr->token.z+1, pExpr->token.n-1);
1287c572ef7fSdanielk1977       sqlite3VdbeDequoteP3(v, -1);
1288c572ef7fSdanielk1977       break;
1289c572ef7fSdanielk1977     }
1290cce7d176Sdrh     case TK_NULL: {
12910f69c1e3Sdanielk1977       sqlite3VdbeAddOp(v, OP_String8, 0, 0);
1292cce7d176Sdrh       break;
1293cce7d176Sdrh     }
129450457896Sdrh     case TK_VARIABLE: {
12954adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_Variable, pExpr->iTable, 0);
1296895d7472Sdrh       if( pExpr->token.n>1 ){
1297895d7472Sdrh         sqlite3VdbeChangeP3(v, -1, pExpr->token.z, pExpr->token.n);
1298895d7472Sdrh       }
129950457896Sdrh       break;
130050457896Sdrh     }
13014e0cff60Sdrh     case TK_REGISTER: {
13024e0cff60Sdrh       sqlite3VdbeAddOp(v, OP_MemLoad, pExpr->iTable, 0);
13034e0cff60Sdrh       break;
13044e0cff60Sdrh     }
1305c9b84a1fSdrh     case TK_LT:
1306c9b84a1fSdrh     case TK_LE:
1307c9b84a1fSdrh     case TK_GT:
1308c9b84a1fSdrh     case TK_GE:
1309c9b84a1fSdrh     case TK_NE:
1310c9b84a1fSdrh     case TK_EQ: {
1311f2bc013cSdrh       assert( TK_LT==OP_Lt );
1312f2bc013cSdrh       assert( TK_LE==OP_Le );
1313f2bc013cSdrh       assert( TK_GT==OP_Gt );
1314f2bc013cSdrh       assert( TK_GE==OP_Ge );
1315f2bc013cSdrh       assert( TK_EQ==OP_Eq );
1316f2bc013cSdrh       assert( TK_NE==OP_Ne );
1317a37cdde0Sdanielk1977       sqlite3ExprCode(pParse, pExpr->pLeft);
1318a37cdde0Sdanielk1977       sqlite3ExprCode(pParse, pExpr->pRight);
1319be5c89acSdrh       codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, 0, 0);
1320a37cdde0Sdanielk1977       break;
1321c9b84a1fSdrh     }
1322cce7d176Sdrh     case TK_AND:
1323cce7d176Sdrh     case TK_OR:
1324cce7d176Sdrh     case TK_PLUS:
1325cce7d176Sdrh     case TK_STAR:
1326cce7d176Sdrh     case TK_MINUS:
1327bf4133cbSdrh     case TK_REM:
1328bf4133cbSdrh     case TK_BITAND:
1329bf4133cbSdrh     case TK_BITOR:
133017c40294Sdrh     case TK_SLASH:
1331bf4133cbSdrh     case TK_LSHIFT:
1332855eb1cfSdrh     case TK_RSHIFT:
13330040077dSdrh     case TK_CONCAT: {
1334f2bc013cSdrh       assert( TK_AND==OP_And );
1335f2bc013cSdrh       assert( TK_OR==OP_Or );
1336f2bc013cSdrh       assert( TK_PLUS==OP_Add );
1337f2bc013cSdrh       assert( TK_MINUS==OP_Subtract );
1338f2bc013cSdrh       assert( TK_REM==OP_Remainder );
1339f2bc013cSdrh       assert( TK_BITAND==OP_BitAnd );
1340f2bc013cSdrh       assert( TK_BITOR==OP_BitOr );
1341f2bc013cSdrh       assert( TK_SLASH==OP_Divide );
1342f2bc013cSdrh       assert( TK_LSHIFT==OP_ShiftLeft );
1343f2bc013cSdrh       assert( TK_RSHIFT==OP_ShiftRight );
1344f2bc013cSdrh       assert( TK_CONCAT==OP_Concat );
13454adee20fSdanielk1977       sqlite3ExprCode(pParse, pExpr->pLeft);
13464adee20fSdanielk1977       sqlite3ExprCode(pParse, pExpr->pRight);
1347855eb1cfSdrh       sqlite3VdbeAddOp(v, op, 0, 0);
13480040077dSdrh       break;
13490040077dSdrh     }
1350cce7d176Sdrh     case TK_UMINUS: {
1351fec19aadSdrh       Expr *pLeft = pExpr->pLeft;
1352fec19aadSdrh       assert( pLeft );
1353fec19aadSdrh       if( pLeft->op==TK_FLOAT || pLeft->op==TK_INTEGER ){
1354fec19aadSdrh         Token *p = &pLeft->token;
13556e142f54Sdrh         char *z = sqliteMalloc( p->n + 2 );
13566e142f54Sdrh         sprintf(z, "-%.*s", p->n, p->z);
1357fec19aadSdrh         if( pLeft->op==TK_FLOAT ){
1358fec19aadSdrh           sqlite3VdbeOp3(v, OP_Real, 0, 0, z, p->n+1);
1359e6840900Sdrh         }else{
1360fec19aadSdrh           codeInteger(v, z, p->n+1);
1361e6840900Sdrh         }
13626e142f54Sdrh         sqliteFree(z);
13636e142f54Sdrh         break;
13646e142f54Sdrh       }
13651ccde15dSdrh       /* Fall through into TK_NOT */
13666e142f54Sdrh     }
1367bf4133cbSdrh     case TK_BITNOT:
13686e142f54Sdrh     case TK_NOT: {
1369f2bc013cSdrh       assert( TK_BITNOT==OP_BitNot );
1370f2bc013cSdrh       assert( TK_NOT==OP_Not );
13714adee20fSdanielk1977       sqlite3ExprCode(pParse, pExpr->pLeft);
13724adee20fSdanielk1977       sqlite3VdbeAddOp(v, op, 0, 0);
1373cce7d176Sdrh       break;
1374cce7d176Sdrh     }
1375cce7d176Sdrh     case TK_ISNULL:
1376cce7d176Sdrh     case TK_NOTNULL: {
1377cce7d176Sdrh       int dest;
1378f2bc013cSdrh       assert( TK_ISNULL==OP_IsNull );
1379f2bc013cSdrh       assert( TK_NOTNULL==OP_NotNull );
13804adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_Integer, 1, 0);
13814adee20fSdanielk1977       sqlite3ExprCode(pParse, pExpr->pLeft);
13824adee20fSdanielk1977       dest = sqlite3VdbeCurrentAddr(v) + 2;
13834adee20fSdanielk1977       sqlite3VdbeAddOp(v, op, 1, dest);
13844adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_AddImm, -1, 0);
1385a37cdde0Sdanielk1977       break;
1386f2bc013cSdrh     }
13872282792aSdrh     case TK_AGG_FUNCTION: {
13884adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_AggGet, 0, pExpr->iAgg);
13892282792aSdrh       break;
13902282792aSdrh     }
13917977a17fSdanielk1977     case TK_CDATE:
13927977a17fSdanielk1977     case TK_CTIME:
13937977a17fSdanielk1977     case TK_CTIMESTAMP:
13944b59ab5eSdrh     case TK_GLOB:
13954b59ab5eSdrh     case TK_LIKE:
1396cce7d176Sdrh     case TK_FUNCTION: {
1397cce7d176Sdrh       ExprList *pList = pExpr->pList;
139889425d5eSdrh       int nExpr = pList ? pList->nExpr : 0;
13990bce8354Sdrh       FuncDef *pDef;
14004b59ab5eSdrh       int nId;
14014b59ab5eSdrh       const char *zId;
1402682f68b0Sdanielk1977       int p2 = 0;
1403682f68b0Sdanielk1977       int i;
1404d8123366Sdanielk1977       u8 enc = pParse->db->enc;
1405dc1bdc4fSdanielk1977       CollSeq *pColl = 0;
14064b59ab5eSdrh       getFunctionName(pExpr, &zId, &nId);
1407d8123366Sdanielk1977       pDef = sqlite3FindFunction(pParse->db, zId, nId, nExpr, enc, 0);
14080bce8354Sdrh       assert( pDef!=0 );
1409f9b596ebSdrh       nExpr = sqlite3ExprCodeExprList(pParse, pList);
1410682f68b0Sdanielk1977       for(i=0; i<nExpr && i<32; i++){
1411d02eb1fdSdanielk1977         if( sqlite3ExprIsConstant(pList->a[i].pExpr) ){
1412d02eb1fdSdanielk1977           p2 |= (1<<i);
1413d02eb1fdSdanielk1977         }
1414dc1bdc4fSdanielk1977         if( pDef->needCollSeq && !pColl ){
1415dc1bdc4fSdanielk1977           pColl = sqlite3ExprCollSeq(pParse, pList->a[i].pExpr);
1416dc1bdc4fSdanielk1977         }
1417dc1bdc4fSdanielk1977       }
1418dc1bdc4fSdanielk1977       if( pDef->needCollSeq ){
1419dc1bdc4fSdanielk1977         if( !pColl ) pColl = pParse->db->pDfltColl;
1420d8123366Sdanielk1977         sqlite3VdbeOp3(v, OP_CollSeq, 0, 0, (char *)pColl, P3_COLLSEQ);
1421682f68b0Sdanielk1977       }
1422682f68b0Sdanielk1977       sqlite3VdbeOp3(v, OP_Function, nExpr, p2, (char*)pDef, P3_FUNCDEF);
14236ec2733bSdrh       break;
14246ec2733bSdrh     }
142519a775c2Sdrh     case TK_SELECT: {
14264adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_MemLoad, pExpr->iColumn, 0);
1427ad6d9460Sdrh       VdbeComment((v, "# load subquery result"));
142819a775c2Sdrh       break;
142919a775c2Sdrh     }
1430fef5208cSdrh     case TK_IN: {
1431fef5208cSdrh       int addr;
143294a11211Sdrh       char affinity;
1433e014a838Sdanielk1977 
1434e014a838Sdanielk1977       /* Figure out the affinity to use to create a key from the results
1435e014a838Sdanielk1977       ** of the expression. affinityStr stores a static string suitable for
1436ededfd5eSdanielk1977       ** P3 of OP_MakeRecord.
1437e014a838Sdanielk1977       */
143894a11211Sdrh       affinity = comparisonAffinity(pExpr);
1439e014a838Sdanielk1977 
14404adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_Integer, 1, 0);
1441e014a838Sdanielk1977 
1442e014a838Sdanielk1977       /* Code the <expr> from "<expr> IN (...)". The temporary table
1443e014a838Sdanielk1977       ** pExpr->iTable contains the values that make up the (...) set.
1444e014a838Sdanielk1977       */
14454adee20fSdanielk1977       sqlite3ExprCode(pParse, pExpr->pLeft);
14464adee20fSdanielk1977       addr = sqlite3VdbeCurrentAddr(v);
1447e014a838Sdanielk1977       sqlite3VdbeAddOp(v, OP_NotNull, -1, addr+4);            /* addr + 0 */
14484adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_Pop, 2, 0);
14490f69c1e3Sdanielk1977       sqlite3VdbeAddOp(v, OP_String8, 0, 0);
1450e014a838Sdanielk1977       sqlite3VdbeAddOp(v, OP_Goto, 0, addr+7);
145194a11211Sdrh       sqlite3VdbeOp3(v, OP_MakeRecord, 1, 0, &affinity, 1);   /* addr + 4 */
1452e014a838Sdanielk1977       sqlite3VdbeAddOp(v, OP_Found, pExpr->iTable, addr+7);
1453e014a838Sdanielk1977       sqlite3VdbeAddOp(v, OP_AddImm, -1, 0);                  /* addr + 6 */
1454e014a838Sdanielk1977 
1455fef5208cSdrh       break;
1456fef5208cSdrh     }
1457fef5208cSdrh     case TK_BETWEEN: {
1458be5c89acSdrh       Expr *pLeft = pExpr->pLeft;
1459be5c89acSdrh       struct ExprList_item *pLItem = pExpr->pList->a;
1460be5c89acSdrh       Expr *pRight = pLItem->pExpr;
1461be5c89acSdrh       sqlite3ExprCode(pParse, pLeft);
14624adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_Dup, 0, 0);
1463be5c89acSdrh       sqlite3ExprCode(pParse, pRight);
1464be5c89acSdrh       codeCompare(pParse, pLeft, pRight, OP_Ge, 0, 0);
14654adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_Pull, 1, 0);
1466be5c89acSdrh       pLItem++;
1467be5c89acSdrh       pRight = pLItem->pExpr;
1468be5c89acSdrh       sqlite3ExprCode(pParse, pRight);
1469be5c89acSdrh       codeCompare(pParse, pLeft, pRight, OP_Le, 0, 0);
14704adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_And, 0, 0);
1471fef5208cSdrh       break;
1472fef5208cSdrh     }
147351e9a445Sdrh     case TK_UPLUS:
1474a2e00042Sdrh     case TK_AS: {
14754adee20fSdanielk1977       sqlite3ExprCode(pParse, pExpr->pLeft);
1476a2e00042Sdrh       break;
1477a2e00042Sdrh     }
147817a7f8ddSdrh     case TK_CASE: {
147917a7f8ddSdrh       int expr_end_label;
1480f5905aa7Sdrh       int jumpInst;
1481f5905aa7Sdrh       int addr;
1482f5905aa7Sdrh       int nExpr;
148317a7f8ddSdrh       int i;
1484be5c89acSdrh       ExprList *pEList;
1485be5c89acSdrh       struct ExprList_item *aListelem;
148617a7f8ddSdrh 
148717a7f8ddSdrh       assert(pExpr->pList);
148817a7f8ddSdrh       assert((pExpr->pList->nExpr % 2) == 0);
148917a7f8ddSdrh       assert(pExpr->pList->nExpr > 0);
1490be5c89acSdrh       pEList = pExpr->pList;
1491be5c89acSdrh       aListelem = pEList->a;
1492be5c89acSdrh       nExpr = pEList->nExpr;
14934adee20fSdanielk1977       expr_end_label = sqlite3VdbeMakeLabel(v);
149417a7f8ddSdrh       if( pExpr->pLeft ){
14954adee20fSdanielk1977         sqlite3ExprCode(pParse, pExpr->pLeft);
1496cce7d176Sdrh       }
1497f5905aa7Sdrh       for(i=0; i<nExpr; i=i+2){
1498be5c89acSdrh         sqlite3ExprCode(pParse, aListelem[i].pExpr);
149917a7f8ddSdrh         if( pExpr->pLeft ){
15004adee20fSdanielk1977           sqlite3VdbeAddOp(v, OP_Dup, 1, 1);
1501be5c89acSdrh           jumpInst = codeCompare(pParse, pExpr->pLeft, aListelem[i].pExpr,
1502be5c89acSdrh                                  OP_Ne, 0, 1);
15034adee20fSdanielk1977           sqlite3VdbeAddOp(v, OP_Pop, 1, 0);
1504f5905aa7Sdrh         }else{
15054adee20fSdanielk1977           jumpInst = sqlite3VdbeAddOp(v, OP_IfNot, 1, 0);
150617a7f8ddSdrh         }
1507be5c89acSdrh         sqlite3ExprCode(pParse, aListelem[i+1].pExpr);
15084adee20fSdanielk1977         sqlite3VdbeAddOp(v, OP_Goto, 0, expr_end_label);
15094adee20fSdanielk1977         addr = sqlite3VdbeCurrentAddr(v);
15104adee20fSdanielk1977         sqlite3VdbeChangeP2(v, jumpInst, addr);
151117a7f8ddSdrh       }
1512f570f011Sdrh       if( pExpr->pLeft ){
15134adee20fSdanielk1977         sqlite3VdbeAddOp(v, OP_Pop, 1, 0);
1514f570f011Sdrh       }
151517a7f8ddSdrh       if( pExpr->pRight ){
15164adee20fSdanielk1977         sqlite3ExprCode(pParse, pExpr->pRight);
151717a7f8ddSdrh       }else{
15180f69c1e3Sdanielk1977         sqlite3VdbeAddOp(v, OP_String8, 0, 0);
151917a7f8ddSdrh       }
15204adee20fSdanielk1977       sqlite3VdbeResolveLabel(v, expr_end_label);
15216f34903eSdanielk1977       break;
15226f34903eSdanielk1977     }
15236f34903eSdanielk1977     case TK_RAISE: {
15246f34903eSdanielk1977       if( !pParse->trigStack ){
15254adee20fSdanielk1977         sqlite3ErrorMsg(pParse,
1526da93d238Sdrh                        "RAISE() may only be used within a trigger-program");
15276f34903eSdanielk1977 	return;
15286f34903eSdanielk1977       }
1529ad6d9460Sdrh       if( pExpr->iColumn!=OE_Ignore ){
1530ad6d9460Sdrh          assert( pExpr->iColumn==OE_Rollback ||
15316f34903eSdanielk1977                  pExpr->iColumn == OE_Abort ||
1532ad6d9460Sdrh                  pExpr->iColumn == OE_Fail );
15334adee20fSdanielk1977          sqlite3VdbeOp3(v, OP_Halt, SQLITE_CONSTRAINT, pExpr->iColumn,
1534701a0aebSdrh                         pExpr->token.z, pExpr->token.n);
15354adee20fSdanielk1977          sqlite3VdbeDequoteP3(v, -1);
15366f34903eSdanielk1977       } else {
15376f34903eSdanielk1977          assert( pExpr->iColumn == OE_Ignore );
1538344737f6Sdrh          sqlite3VdbeAddOp(v, OP_ContextPop, 0, 0);
1539ad6d9460Sdrh          sqlite3VdbeAddOp(v, OP_Goto, 0, pParse->trigStack->ignoreJump);
1540ad6d9460Sdrh          VdbeComment((v, "# raise(IGNORE)"));
15416f34903eSdanielk1977       }
154217a7f8ddSdrh     }
154317a7f8ddSdrh     break;
154417a7f8ddSdrh   }
1545cce7d176Sdrh }
1546cce7d176Sdrh 
1547cce7d176Sdrh /*
1548268380caSdrh ** Generate code that pushes the value of every element of the given
1549f9b596ebSdrh ** expression list onto the stack.
1550268380caSdrh **
1551268380caSdrh ** Return the number of elements pushed onto the stack.
1552268380caSdrh */
15534adee20fSdanielk1977 int sqlite3ExprCodeExprList(
1554268380caSdrh   Parse *pParse,     /* Parsing context */
1555f9b596ebSdrh   ExprList *pList    /* The expression list to be coded */
1556268380caSdrh ){
1557268380caSdrh   struct ExprList_item *pItem;
1558268380caSdrh   int i, n;
1559268380caSdrh   Vdbe *v;
1560268380caSdrh   if( pList==0 ) return 0;
15614adee20fSdanielk1977   v = sqlite3GetVdbe(pParse);
1562268380caSdrh   n = pList->nExpr;
1563268380caSdrh   for(pItem=pList->a, i=0; i<n; i++, pItem++){
15644adee20fSdanielk1977     sqlite3ExprCode(pParse, pItem->pExpr);
1565268380caSdrh   }
1566f9b596ebSdrh   return n;
1567268380caSdrh }
1568268380caSdrh 
1569268380caSdrh /*
1570cce7d176Sdrh ** Generate code for a boolean expression such that a jump is made
1571cce7d176Sdrh ** to the label "dest" if the expression is true but execution
1572cce7d176Sdrh ** continues straight thru if the expression is false.
1573f5905aa7Sdrh **
1574f5905aa7Sdrh ** If the expression evaluates to NULL (neither true nor false), then
1575f5905aa7Sdrh ** take the jump if the jumpIfNull flag is true.
1576f2bc013cSdrh **
1577f2bc013cSdrh ** This code depends on the fact that certain token values (ex: TK_EQ)
1578f2bc013cSdrh ** are the same as opcode values (ex: OP_Eq) that implement the corresponding
1579f2bc013cSdrh ** operation.  Special comments in vdbe.c and the mkopcodeh.awk script in
1580f2bc013cSdrh ** the make process cause these values to align.  Assert()s in the code
1581f2bc013cSdrh ** below verify that the numbers are aligned correctly.
1582cce7d176Sdrh */
15834adee20fSdanielk1977 void sqlite3ExprIfTrue(Parse *pParse, Expr *pExpr, int dest, int jumpIfNull){
1584cce7d176Sdrh   Vdbe *v = pParse->pVdbe;
1585cce7d176Sdrh   int op = 0;
1586daffd0e5Sdrh   if( v==0 || pExpr==0 ) return;
1587f2bc013cSdrh   op = pExpr->op;
1588f2bc013cSdrh   switch( op ){
1589cce7d176Sdrh     case TK_AND: {
15904adee20fSdanielk1977       int d2 = sqlite3VdbeMakeLabel(v);
15914adee20fSdanielk1977       sqlite3ExprIfFalse(pParse, pExpr->pLeft, d2, !jumpIfNull);
15924adee20fSdanielk1977       sqlite3ExprIfTrue(pParse, pExpr->pRight, dest, jumpIfNull);
15934adee20fSdanielk1977       sqlite3VdbeResolveLabel(v, d2);
1594cce7d176Sdrh       break;
1595cce7d176Sdrh     }
1596cce7d176Sdrh     case TK_OR: {
15974adee20fSdanielk1977       sqlite3ExprIfTrue(pParse, pExpr->pLeft, dest, jumpIfNull);
15984adee20fSdanielk1977       sqlite3ExprIfTrue(pParse, pExpr->pRight, dest, jumpIfNull);
1599cce7d176Sdrh       break;
1600cce7d176Sdrh     }
1601cce7d176Sdrh     case TK_NOT: {
16024adee20fSdanielk1977       sqlite3ExprIfFalse(pParse, pExpr->pLeft, dest, jumpIfNull);
1603cce7d176Sdrh       break;
1604cce7d176Sdrh     }
1605cce7d176Sdrh     case TK_LT:
1606cce7d176Sdrh     case TK_LE:
1607cce7d176Sdrh     case TK_GT:
1608cce7d176Sdrh     case TK_GE:
1609cce7d176Sdrh     case TK_NE:
16100ac65892Sdrh     case TK_EQ: {
1611f2bc013cSdrh       assert( TK_LT==OP_Lt );
1612f2bc013cSdrh       assert( TK_LE==OP_Le );
1613f2bc013cSdrh       assert( TK_GT==OP_Gt );
1614f2bc013cSdrh       assert( TK_GE==OP_Ge );
1615f2bc013cSdrh       assert( TK_EQ==OP_Eq );
1616f2bc013cSdrh       assert( TK_NE==OP_Ne );
16174adee20fSdanielk1977       sqlite3ExprCode(pParse, pExpr->pLeft);
16184adee20fSdanielk1977       sqlite3ExprCode(pParse, pExpr->pRight);
1619be5c89acSdrh       codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, dest, jumpIfNull);
1620cce7d176Sdrh       break;
1621cce7d176Sdrh     }
1622cce7d176Sdrh     case TK_ISNULL:
1623cce7d176Sdrh     case TK_NOTNULL: {
1624f2bc013cSdrh       assert( TK_ISNULL==OP_IsNull );
1625f2bc013cSdrh       assert( TK_NOTNULL==OP_NotNull );
16264adee20fSdanielk1977       sqlite3ExprCode(pParse, pExpr->pLeft);
16274adee20fSdanielk1977       sqlite3VdbeAddOp(v, op, 1, dest);
1628cce7d176Sdrh       break;
1629cce7d176Sdrh     }
1630fef5208cSdrh     case TK_BETWEEN: {
16310202b29eSdanielk1977       /* The expression "x BETWEEN y AND z" is implemented as:
16320202b29eSdanielk1977       **
16330202b29eSdanielk1977       ** 1 IF (x < y) GOTO 3
16340202b29eSdanielk1977       ** 2 IF (x <= z) GOTO <dest>
16350202b29eSdanielk1977       ** 3 ...
16360202b29eSdanielk1977       */
1637f5905aa7Sdrh       int addr;
1638be5c89acSdrh       Expr *pLeft = pExpr->pLeft;
1639be5c89acSdrh       Expr *pRight = pExpr->pList->a[0].pExpr;
1640be5c89acSdrh       sqlite3ExprCode(pParse, pLeft);
16414adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_Dup, 0, 0);
1642be5c89acSdrh       sqlite3ExprCode(pParse, pRight);
1643be5c89acSdrh       addr = codeCompare(pParse, pLeft, pRight, OP_Lt, 0, !jumpIfNull);
16440202b29eSdanielk1977 
1645be5c89acSdrh       pRight = pExpr->pList->a[1].pExpr;
1646be5c89acSdrh       sqlite3ExprCode(pParse, pRight);
1647be5c89acSdrh       codeCompare(pParse, pLeft, pRight, OP_Le, dest, jumpIfNull);
16480202b29eSdanielk1977 
16494adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_Integer, 0, 0);
16504adee20fSdanielk1977       sqlite3VdbeChangeP2(v, addr, sqlite3VdbeCurrentAddr(v));
16514adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_Pop, 1, 0);
1652fef5208cSdrh       break;
1653fef5208cSdrh     }
1654cce7d176Sdrh     default: {
16554adee20fSdanielk1977       sqlite3ExprCode(pParse, pExpr);
16564adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_If, jumpIfNull, dest);
1657cce7d176Sdrh       break;
1658cce7d176Sdrh     }
1659cce7d176Sdrh   }
1660cce7d176Sdrh }
1661cce7d176Sdrh 
1662cce7d176Sdrh /*
166366b89c8fSdrh ** Generate code for a boolean expression such that a jump is made
1664cce7d176Sdrh ** to the label "dest" if the expression is false but execution
1665cce7d176Sdrh ** continues straight thru if the expression is true.
1666f5905aa7Sdrh **
1667f5905aa7Sdrh ** If the expression evaluates to NULL (neither true nor false) then
1668f5905aa7Sdrh ** jump if jumpIfNull is true or fall through if jumpIfNull is false.
1669cce7d176Sdrh */
16704adee20fSdanielk1977 void sqlite3ExprIfFalse(Parse *pParse, Expr *pExpr, int dest, int jumpIfNull){
1671cce7d176Sdrh   Vdbe *v = pParse->pVdbe;
1672cce7d176Sdrh   int op = 0;
1673daffd0e5Sdrh   if( v==0 || pExpr==0 ) return;
1674f2bc013cSdrh 
1675f2bc013cSdrh   /* The value of pExpr->op and op are related as follows:
1676f2bc013cSdrh   **
1677f2bc013cSdrh   **       pExpr->op            op
1678f2bc013cSdrh   **       ---------          ----------
1679f2bc013cSdrh   **       TK_ISNULL          OP_NotNull
1680f2bc013cSdrh   **       TK_NOTNULL         OP_IsNull
1681f2bc013cSdrh   **       TK_NE              OP_Eq
1682f2bc013cSdrh   **       TK_EQ              OP_Ne
1683f2bc013cSdrh   **       TK_GT              OP_Le
1684f2bc013cSdrh   **       TK_LE              OP_Gt
1685f2bc013cSdrh   **       TK_GE              OP_Lt
1686f2bc013cSdrh   **       TK_LT              OP_Ge
1687f2bc013cSdrh   **
1688f2bc013cSdrh   ** For other values of pExpr->op, op is undefined and unused.
1689f2bc013cSdrh   ** The value of TK_ and OP_ constants are arranged such that we
1690f2bc013cSdrh   ** can compute the mapping above using the following expression.
1691f2bc013cSdrh   ** Assert()s verify that the computation is correct.
1692f2bc013cSdrh   */
1693f2bc013cSdrh   op = ((pExpr->op+(TK_ISNULL&1))^1)-(TK_ISNULL&1);
1694f2bc013cSdrh 
1695f2bc013cSdrh   /* Verify correct alignment of TK_ and OP_ constants
1696f2bc013cSdrh   */
1697f2bc013cSdrh   assert( pExpr->op!=TK_ISNULL || op==OP_NotNull );
1698f2bc013cSdrh   assert( pExpr->op!=TK_NOTNULL || op==OP_IsNull );
1699f2bc013cSdrh   assert( pExpr->op!=TK_NE || op==OP_Eq );
1700f2bc013cSdrh   assert( pExpr->op!=TK_EQ || op==OP_Ne );
1701f2bc013cSdrh   assert( pExpr->op!=TK_LT || op==OP_Ge );
1702f2bc013cSdrh   assert( pExpr->op!=TK_LE || op==OP_Gt );
1703f2bc013cSdrh   assert( pExpr->op!=TK_GT || op==OP_Le );
1704f2bc013cSdrh   assert( pExpr->op!=TK_GE || op==OP_Lt );
1705f2bc013cSdrh 
1706cce7d176Sdrh   switch( pExpr->op ){
1707cce7d176Sdrh     case TK_AND: {
17084adee20fSdanielk1977       sqlite3ExprIfFalse(pParse, pExpr->pLeft, dest, jumpIfNull);
17094adee20fSdanielk1977       sqlite3ExprIfFalse(pParse, pExpr->pRight, dest, jumpIfNull);
1710cce7d176Sdrh       break;
1711cce7d176Sdrh     }
1712cce7d176Sdrh     case TK_OR: {
17134adee20fSdanielk1977       int d2 = sqlite3VdbeMakeLabel(v);
17144adee20fSdanielk1977       sqlite3ExprIfTrue(pParse, pExpr->pLeft, d2, !jumpIfNull);
17154adee20fSdanielk1977       sqlite3ExprIfFalse(pParse, pExpr->pRight, dest, jumpIfNull);
17164adee20fSdanielk1977       sqlite3VdbeResolveLabel(v, d2);
1717cce7d176Sdrh       break;
1718cce7d176Sdrh     }
1719cce7d176Sdrh     case TK_NOT: {
17204adee20fSdanielk1977       sqlite3ExprIfTrue(pParse, pExpr->pLeft, dest, jumpIfNull);
1721cce7d176Sdrh       break;
1722cce7d176Sdrh     }
1723cce7d176Sdrh     case TK_LT:
1724cce7d176Sdrh     case TK_LE:
1725cce7d176Sdrh     case TK_GT:
1726cce7d176Sdrh     case TK_GE:
1727cce7d176Sdrh     case TK_NE:
1728cce7d176Sdrh     case TK_EQ: {
17294adee20fSdanielk1977       sqlite3ExprCode(pParse, pExpr->pLeft);
17304adee20fSdanielk1977       sqlite3ExprCode(pParse, pExpr->pRight);
1731be5c89acSdrh       codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, dest, jumpIfNull);
1732cce7d176Sdrh       break;
1733cce7d176Sdrh     }
1734cce7d176Sdrh     case TK_ISNULL:
1735cce7d176Sdrh     case TK_NOTNULL: {
17364adee20fSdanielk1977       sqlite3ExprCode(pParse, pExpr->pLeft);
17374adee20fSdanielk1977       sqlite3VdbeAddOp(v, op, 1, dest);
1738cce7d176Sdrh       break;
1739cce7d176Sdrh     }
1740fef5208cSdrh     case TK_BETWEEN: {
17410202b29eSdanielk1977       /* The expression is "x BETWEEN y AND z". It is implemented as:
17420202b29eSdanielk1977       **
17430202b29eSdanielk1977       ** 1 IF (x >= y) GOTO 3
17440202b29eSdanielk1977       ** 2 GOTO <dest>
17450202b29eSdanielk1977       ** 3 IF (x > z) GOTO <dest>
17460202b29eSdanielk1977       */
1747fef5208cSdrh       int addr;
1748be5c89acSdrh       Expr *pLeft = pExpr->pLeft;
1749be5c89acSdrh       Expr *pRight = pExpr->pList->a[0].pExpr;
1750be5c89acSdrh       sqlite3ExprCode(pParse, pLeft);
17514adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_Dup, 0, 0);
1752be5c89acSdrh       sqlite3ExprCode(pParse, pRight);
17534adee20fSdanielk1977       addr = sqlite3VdbeCurrentAddr(v);
1754be5c89acSdrh       codeCompare(pParse, pLeft, pRight, OP_Ge, addr+3, !jumpIfNull);
1755be5c89acSdrh 
17564adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_Pop, 1, 0);
17574adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_Goto, 0, dest);
1758be5c89acSdrh       pRight = pExpr->pList->a[1].pExpr;
1759be5c89acSdrh       sqlite3ExprCode(pParse, pRight);
1760be5c89acSdrh       codeCompare(pParse, pLeft, pRight, OP_Gt, dest, jumpIfNull);
1761fef5208cSdrh       break;
1762fef5208cSdrh     }
1763cce7d176Sdrh     default: {
17644adee20fSdanielk1977       sqlite3ExprCode(pParse, pExpr);
17654adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_IfNot, jumpIfNull, dest);
1766cce7d176Sdrh       break;
1767cce7d176Sdrh     }
1768cce7d176Sdrh   }
1769cce7d176Sdrh }
17702282792aSdrh 
17712282792aSdrh /*
17722282792aSdrh ** Do a deep comparison of two expression trees.  Return TRUE (non-zero)
17732282792aSdrh ** if they are identical and return FALSE if they differ in any way.
17742282792aSdrh */
17754adee20fSdanielk1977 int sqlite3ExprCompare(Expr *pA, Expr *pB){
17762282792aSdrh   int i;
17772282792aSdrh   if( pA==0 ){
17782282792aSdrh     return pB==0;
17792282792aSdrh   }else if( pB==0 ){
17802282792aSdrh     return 0;
17812282792aSdrh   }
17822282792aSdrh   if( pA->op!=pB->op ) return 0;
17834adee20fSdanielk1977   if( !sqlite3ExprCompare(pA->pLeft, pB->pLeft) ) return 0;
17844adee20fSdanielk1977   if( !sqlite3ExprCompare(pA->pRight, pB->pRight) ) return 0;
17852282792aSdrh   if( pA->pList ){
17862282792aSdrh     if( pB->pList==0 ) return 0;
17872282792aSdrh     if( pA->pList->nExpr!=pB->pList->nExpr ) return 0;
17882282792aSdrh     for(i=0; i<pA->pList->nExpr; i++){
17894adee20fSdanielk1977       if( !sqlite3ExprCompare(pA->pList->a[i].pExpr, pB->pList->a[i].pExpr) ){
17902282792aSdrh         return 0;
17912282792aSdrh       }
17922282792aSdrh     }
17932282792aSdrh   }else if( pB->pList ){
17942282792aSdrh     return 0;
17952282792aSdrh   }
17962282792aSdrh   if( pA->pSelect || pB->pSelect ) return 0;
17972f2c01e5Sdrh   if( pA->iTable!=pB->iTable || pA->iColumn!=pB->iColumn ) return 0;
17982282792aSdrh   if( pA->token.z ){
17992282792aSdrh     if( pB->token.z==0 ) return 0;
18006977fea8Sdrh     if( pB->token.n!=pA->token.n ) return 0;
18014adee20fSdanielk1977     if( sqlite3StrNICmp(pA->token.z, pB->token.z, pB->token.n)!=0 ) return 0;
18022282792aSdrh   }
18032282792aSdrh   return 1;
18042282792aSdrh }
18052282792aSdrh 
18062282792aSdrh /*
18072282792aSdrh ** Add a new element to the pParse->aAgg[] array and return its index.
18082282792aSdrh */
18092282792aSdrh static int appendAggInfo(Parse *pParse){
18102282792aSdrh   if( (pParse->nAgg & 0x7)==0 ){
18112282792aSdrh     int amt = pParse->nAgg + 8;
18126d4abfbeSdrh     AggExpr *aAgg = sqliteRealloc(pParse->aAgg, amt*sizeof(pParse->aAgg[0]));
18136d4abfbeSdrh     if( aAgg==0 ){
18142282792aSdrh       return -1;
18152282792aSdrh     }
18166d4abfbeSdrh     pParse->aAgg = aAgg;
18172282792aSdrh   }
18182282792aSdrh   memset(&pParse->aAgg[pParse->nAgg], 0, sizeof(pParse->aAgg[0]));
18192282792aSdrh   return pParse->nAgg++;
18202282792aSdrh }
18212282792aSdrh 
18222282792aSdrh /*
18232282792aSdrh ** Analyze the given expression looking for aggregate functions and
18242282792aSdrh ** for variables that need to be added to the pParse->aAgg[] array.
18252282792aSdrh ** Make additional entries to the pParse->aAgg[] array as necessary.
18262282792aSdrh **
18272282792aSdrh ** This routine should only be called after the expression has been
18284adee20fSdanielk1977 ** analyzed by sqlite3ExprResolveIds() and sqlite3ExprCheck().
18292282792aSdrh **
18302282792aSdrh ** If errors are seen, leave an error message in zErrMsg and return
18312282792aSdrh ** the number of errors.
18322282792aSdrh */
18334adee20fSdanielk1977 int sqlite3ExprAnalyzeAggregates(Parse *pParse, Expr *pExpr){
18342282792aSdrh   int i;
18352282792aSdrh   AggExpr *aAgg;
18362282792aSdrh   int nErr = 0;
18372282792aSdrh 
18382282792aSdrh   if( pExpr==0 ) return 0;
18392282792aSdrh   switch( pExpr->op ){
1840967e8b73Sdrh     case TK_COLUMN: {
18412282792aSdrh       aAgg = pParse->aAgg;
18422282792aSdrh       for(i=0; i<pParse->nAgg; i++){
18432282792aSdrh         if( aAgg[i].isAgg ) continue;
18442282792aSdrh         if( aAgg[i].pExpr->iTable==pExpr->iTable
1845967e8b73Sdrh          && aAgg[i].pExpr->iColumn==pExpr->iColumn ){
18462282792aSdrh           break;
18472282792aSdrh         }
18482282792aSdrh       }
18492282792aSdrh       if( i>=pParse->nAgg ){
18502282792aSdrh         i = appendAggInfo(pParse);
18512282792aSdrh         if( i<0 ) return 1;
18522282792aSdrh         pParse->aAgg[i].isAgg = 0;
18532282792aSdrh         pParse->aAgg[i].pExpr = pExpr;
18542282792aSdrh       }
1855aaf88729Sdrh       pExpr->iAgg = i;
18562282792aSdrh       break;
18572282792aSdrh     }
18582282792aSdrh     case TK_AGG_FUNCTION: {
18592282792aSdrh       aAgg = pParse->aAgg;
18602282792aSdrh       for(i=0; i<pParse->nAgg; i++){
18612282792aSdrh         if( !aAgg[i].isAgg ) continue;
18624adee20fSdanielk1977         if( sqlite3ExprCompare(aAgg[i].pExpr, pExpr) ){
18632282792aSdrh           break;
18642282792aSdrh         }
18652282792aSdrh       }
18662282792aSdrh       if( i>=pParse->nAgg ){
1867d8123366Sdanielk1977         u8 enc = pParse->db->enc;
18682282792aSdrh         i = appendAggInfo(pParse);
18692282792aSdrh         if( i<0 ) return 1;
18702282792aSdrh         pParse->aAgg[i].isAgg = 1;
18712282792aSdrh         pParse->aAgg[i].pExpr = pExpr;
18724adee20fSdanielk1977         pParse->aAgg[i].pFunc = sqlite3FindFunction(pParse->db,
18736977fea8Sdrh              pExpr->token.z, pExpr->token.n,
1874d8123366Sdanielk1977              pExpr->pList ? pExpr->pList->nExpr : 0, enc, 0);
18752282792aSdrh       }
18762282792aSdrh       pExpr->iAgg = i;
18772282792aSdrh       break;
18782282792aSdrh     }
18792282792aSdrh     default: {
18802282792aSdrh       if( pExpr->pLeft ){
18814adee20fSdanielk1977         nErr = sqlite3ExprAnalyzeAggregates(pParse, pExpr->pLeft);
18822282792aSdrh       }
18832282792aSdrh       if( nErr==0 && pExpr->pRight ){
18844adee20fSdanielk1977         nErr = sqlite3ExprAnalyzeAggregates(pParse, pExpr->pRight);
18852282792aSdrh       }
18862282792aSdrh       if( nErr==0 && pExpr->pList ){
18872282792aSdrh         int n = pExpr->pList->nExpr;
18882282792aSdrh         int i;
18892282792aSdrh         for(i=0; nErr==0 && i<n; i++){
18904adee20fSdanielk1977           nErr = sqlite3ExprAnalyzeAggregates(pParse, pExpr->pList->a[i].pExpr);
18912282792aSdrh         }
18922282792aSdrh       }
18932282792aSdrh       break;
18942282792aSdrh     }
18952282792aSdrh   }
18962282792aSdrh   return nErr;
18972282792aSdrh }
18988e0a2f90Sdrh 
18998e0a2f90Sdrh /*
1900d02eb1fdSdanielk1977 ** Locate a user function given a name, a number of arguments and a flag
1901d02eb1fdSdanielk1977 ** indicating whether the function prefers UTF-16 over UTF-8.  Return a
1902d02eb1fdSdanielk1977 ** pointer to the FuncDef structure that defines that function, or return
1903d02eb1fdSdanielk1977 ** NULL if the function does not exist.
19048e0a2f90Sdrh **
19050bce8354Sdrh ** If the createFlag argument is true, then a new (blank) FuncDef
19068e0a2f90Sdrh ** structure is created and liked into the "db" structure if a
19078e0a2f90Sdrh ** no matching function previously existed.  When createFlag is true
19088e0a2f90Sdrh ** and the nArg parameter is -1, then only a function that accepts
19098e0a2f90Sdrh ** any number of arguments will be returned.
19108e0a2f90Sdrh **
19118e0a2f90Sdrh ** If createFlag is false and nArg is -1, then the first valid
19128e0a2f90Sdrh ** function found is returned.  A function is valid if either xFunc
19138e0a2f90Sdrh ** or xStep is non-zero.
1914d02eb1fdSdanielk1977 **
1915d02eb1fdSdanielk1977 ** If createFlag is false, then a function with the required name and
1916d02eb1fdSdanielk1977 ** number of arguments may be returned even if the eTextRep flag does not
1917d02eb1fdSdanielk1977 ** match that requested.
19188e0a2f90Sdrh */
19194adee20fSdanielk1977 FuncDef *sqlite3FindFunction(
19209bb575fdSdrh   sqlite3 *db,       /* An open database */
19218e0a2f90Sdrh   const char *zName, /* Name of the function.  Not null-terminated */
19228e0a2f90Sdrh   int nName,         /* Number of characters in the name */
19238e0a2f90Sdrh   int nArg,          /* Number of arguments.  -1 means any number */
1924d8123366Sdanielk1977   u8 enc,            /* Preferred text encoding */
19258e0a2f90Sdrh   int createFlag     /* Create new entry if true and does not otherwise exist */
19268e0a2f90Sdrh ){
1927d02eb1fdSdanielk1977   FuncDef *p;         /* Iterator variable */
1928d02eb1fdSdanielk1977   FuncDef *pFirst;    /* First function with this name */
1929d02eb1fdSdanielk1977   FuncDef *pBest = 0; /* Best match found so far */
1930d8123366Sdanielk1977   int bestmatch = 0;
1931d02eb1fdSdanielk1977 
1932d8123366Sdanielk1977 
1933d8123366Sdanielk1977   assert( enc==SQLITE_UTF8 || enc==SQLITE_UTF16LE || enc==SQLITE_UTF16BE );
1934d02eb1fdSdanielk1977   if( nArg<-1 ) nArg = -1;
1935d02eb1fdSdanielk1977 
1936d02eb1fdSdanielk1977   pFirst = (FuncDef*)sqlite3HashFind(&db->aFunc, zName, nName);
1937d02eb1fdSdanielk1977   for(p=pFirst; p; p=p->pNext){
1938d8123366Sdanielk1977     /* During the search for the best function definition, bestmatch is set
1939d8123366Sdanielk1977     ** as follows to indicate the quality of the match with the definition
1940d8123366Sdanielk1977     ** pointed to by pBest:
1941d8123366Sdanielk1977     **
1942d8123366Sdanielk1977     ** 0: pBest is NULL. No match has been found.
1943d8123366Sdanielk1977     ** 1: A variable arguments function that prefers UTF-8 when a UTF-16
1944d8123366Sdanielk1977     **    encoding is requested, or vice versa.
1945d8123366Sdanielk1977     ** 2: A variable arguments function that uses UTF-16BE when UTF-16LE is
1946d8123366Sdanielk1977     **    requested, or vice versa.
1947d8123366Sdanielk1977     ** 3: A variable arguments function using the same text encoding.
1948d8123366Sdanielk1977     ** 4: A function with the exact number of arguments requested that
1949d8123366Sdanielk1977     **    prefers UTF-8 when a UTF-16 encoding is requested, or vice versa.
1950d8123366Sdanielk1977     ** 5: A function with the exact number of arguments requested that
1951d8123366Sdanielk1977     **    prefers UTF-16LE when UTF-16BE is requested, or vice versa.
1952d8123366Sdanielk1977     ** 6: An exact match.
1953d8123366Sdanielk1977     **
1954d8123366Sdanielk1977     ** A larger value of 'matchqual' indicates a more desirable match.
1955d8123366Sdanielk1977     */
1956e12c17baSdanielk1977     if( p->nArg==-1 || p->nArg==nArg || nArg==-1 ){
1957d8123366Sdanielk1977       int match = 1;          /* Quality of this match */
1958d8123366Sdanielk1977       if( p->nArg==nArg || nArg==-1 ){
1959d8123366Sdanielk1977         match = 4;
19608e0a2f90Sdrh       }
1961d8123366Sdanielk1977       if( enc==p->iPrefEnc ){
1962d8123366Sdanielk1977         match += 2;
19638e0a2f90Sdrh       }
1964d8123366Sdanielk1977       else if( (enc==SQLITE_UTF16LE && p->iPrefEnc==SQLITE_UTF16BE) ||
1965d8123366Sdanielk1977                (enc==SQLITE_UTF16BE && p->iPrefEnc==SQLITE_UTF16LE) ){
1966d8123366Sdanielk1977         match += 1;
1967d02eb1fdSdanielk1977       }
1968d8123366Sdanielk1977 
1969d8123366Sdanielk1977       if( match>bestmatch ){
1970d02eb1fdSdanielk1977         pBest = p;
1971d8123366Sdanielk1977         bestmatch = match;
1972d02eb1fdSdanielk1977       }
1973d02eb1fdSdanielk1977     }
1974d02eb1fdSdanielk1977   }
1975d02eb1fdSdanielk1977 
1976d8123366Sdanielk1977   /* If the createFlag parameter is true, and the seach did not reveal an
1977d8123366Sdanielk1977   ** exact match for the name, number of arguments and encoding, then add a
1978d8123366Sdanielk1977   ** new entry to the hash table and return it.
1979d8123366Sdanielk1977   */
1980d8123366Sdanielk1977   if( createFlag && bestmatch<6 &&
1981d02eb1fdSdanielk1977       (pBest = sqliteMalloc(sizeof(*pBest)+nName+1)) ){
1982d02eb1fdSdanielk1977     pBest->nArg = nArg;
1983d02eb1fdSdanielk1977     pBest->pNext = pFirst;
1984d02eb1fdSdanielk1977     pBest->zName = (char*)&pBest[1];
1985d8123366Sdanielk1977     pBest->iPrefEnc = enc;
1986d02eb1fdSdanielk1977     memcpy(pBest->zName, zName, nName);
1987d02eb1fdSdanielk1977     pBest->zName[nName] = 0;
1988d02eb1fdSdanielk1977     sqlite3HashInsert(&db->aFunc, pBest->zName, nName, (void*)pBest);
1989d02eb1fdSdanielk1977   }
1990d02eb1fdSdanielk1977 
1991d02eb1fdSdanielk1977   if( pBest && (pBest->xStep || pBest->xFunc || createFlag) ){
1992d02eb1fdSdanielk1977     return pBest;
1993d02eb1fdSdanielk1977   }
19948e0a2f90Sdrh   return 0;
19958e0a2f90Sdrh }
1996