blob: 651f1cd9ace724a6d177a40265cb89a23ca87a96 [file] [log] [blame]
drhcce7d172000-05-31 15:34:51 +00001/*
drhb19a2bc2001-09-16 00:13:26 +00002** 2001 September 15
drhcce7d172000-05-31 15:34:51 +00003**
drhb19a2bc2001-09-16 00:13:26 +00004** The author disclaims copyright to this source code. In place of
5** a legal notice, here is a blessing:
drhcce7d172000-05-31 15:34:51 +00006**
drhb19a2bc2001-09-16 00:13:26 +00007** May you do good and not evil.
8** May you find forgiveness for yourself and forgive others.
9** May you share freely, never taking more than you give.
drhcce7d172000-05-31 15:34:51 +000010**
11*************************************************************************
drh1ccde152000-06-17 13:12:39 +000012** This file contains routines used for analyzing expressions and
drhb19a2bc2001-09-16 00:13:26 +000013** for generating VDBE code that evaluates expressions in SQLite.
drhcce7d172000-05-31 15:34:51 +000014**
drhaa9b8962008-01-08 02:57:55 +000015** $Id: expr.c,v 1.337 2008/01/08 02:57:56 drh Exp $
drhcce7d172000-05-31 15:34:51 +000016*/
17#include "sqliteInt.h"
drh04738cb2002-06-02 18:19:00 +000018#include <ctype.h>
drha2e00042002-01-22 03:13:42 +000019
danielk1977e014a832004-05-17 10:48:57 +000020/*
21** Return the 'affinity' of the expression pExpr if any.
22**
23** If pExpr is a column, a reference to a column via an 'AS' alias,
24** or a sub-select with a column as the return value, then the
25** affinity of that column is returned. Otherwise, 0x00 is returned,
26** indicating no affinity for the expression.
27**
28** i.e. the WHERE clause expresssions in the following statements all
29** have an affinity:
30**
31** CREATE TABLE t1(a);
32** SELECT * FROM t1 WHERE a;
33** SELECT a AS b FROM t1 WHERE b;
34** SELECT * FROM t1 WHERE (select a from t1);
35*/
danielk1977bf3b7212004-05-18 10:06:24 +000036char sqlite3ExprAffinity(Expr *pExpr){
drh487e2622005-06-25 18:42:14 +000037 int op = pExpr->op;
drh487e2622005-06-25 18:42:14 +000038 if( op==TK_SELECT ){
danielk1977bf3b7212004-05-18 10:06:24 +000039 return sqlite3ExprAffinity(pExpr->pSelect->pEList->a[0].pExpr);
danielk1977a37cdde2004-05-16 11:15:36 +000040 }
drh487e2622005-06-25 18:42:14 +000041#ifndef SQLITE_OMIT_CAST
42 if( op==TK_CAST ){
drh8a512562005-11-14 22:29:05 +000043 return sqlite3AffinityType(&pExpr->token);
drh487e2622005-06-25 18:42:14 +000044 }
45#endif
danielk1977a37cdde2004-05-16 11:15:36 +000046 return pExpr->affinity;
47}
48
drh53db1452004-05-20 13:54:53 +000049/*
drh8b4c40d2007-02-01 23:02:45 +000050** Set the collating sequence for expression pExpr to be the collating
51** sequence named by pToken. Return a pointer to the revised expression.
drha34001c2007-02-02 12:44:37 +000052** The collating sequence is marked as "explicit" using the EP_ExpCollate
53** flag. An explicit collating sequence will override implicit
54** collating sequences.
drh8b4c40d2007-02-01 23:02:45 +000055*/
56Expr *sqlite3ExprSetColl(Parse *pParse, Expr *pExpr, Token *pName){
danielk197739002502007-11-12 09:50:26 +000057 char *zColl = 0; /* Dequoted name of collation sequence */
drh8b4c40d2007-02-01 23:02:45 +000058 CollSeq *pColl;
danielk197739002502007-11-12 09:50:26 +000059 zColl = sqlite3NameFromToken(pParse->db, pName);
60 if( pExpr && zColl ){
61 pColl = sqlite3LocateCollSeq(pParse, zColl, -1);
62 if( pColl ){
63 pExpr->pColl = pColl;
64 pExpr->flags |= EP_ExpCollate;
65 }
drh8b4c40d2007-02-01 23:02:45 +000066 }
danielk197739002502007-11-12 09:50:26 +000067 sqlite3_free(zColl);
drh8b4c40d2007-02-01 23:02:45 +000068 return pExpr;
69}
70
71/*
danielk19770202b292004-06-09 09:55:16 +000072** Return the default collation sequence for the expression pExpr. If
73** there is no default collation type, return 0.
74*/
danielk19777cedc8d2004-06-10 10:50:08 +000075CollSeq *sqlite3ExprCollSeq(Parse *pParse, Expr *pExpr){
76 CollSeq *pColl = 0;
danielk19770202b292004-06-09 09:55:16 +000077 if( pExpr ){
drh7e09fe02007-06-20 16:13:23 +000078 int op;
danielk19777cedc8d2004-06-10 10:50:08 +000079 pColl = pExpr->pColl;
drh7e09fe02007-06-20 16:13:23 +000080 op = pExpr->op;
81 if( (op==TK_CAST || op==TK_UPLUS) && !pColl ){
danielk19777cedc8d2004-06-10 10:50:08 +000082 return sqlite3ExprCollSeq(pParse, pExpr->pLeft);
danielk19770202b292004-06-09 09:55:16 +000083 }
84 }
danielk19777cedc8d2004-06-10 10:50:08 +000085 if( sqlite3CheckCollSeq(pParse, pColl) ){
86 pColl = 0;
87 }
88 return pColl;
danielk19770202b292004-06-09 09:55:16 +000089}
90
91/*
drh626a8792005-01-17 22:08:19 +000092** pExpr is an operand of a comparison operator. aff2 is the
93** type affinity of the other operand. This routine returns the
drh53db1452004-05-20 13:54:53 +000094** type affinity that should be used for the comparison operator.
95*/
danielk1977e014a832004-05-17 10:48:57 +000096char sqlite3CompareAffinity(Expr *pExpr, char aff2){
danielk1977bf3b7212004-05-18 10:06:24 +000097 char aff1 = sqlite3ExprAffinity(pExpr);
danielk1977e014a832004-05-17 10:48:57 +000098 if( aff1 && aff2 ){
drh8df447f2005-11-01 15:48:24 +000099 /* Both sides of the comparison are columns. If one has numeric
100 ** affinity, use that. Otherwise use no affinity.
danielk1977e014a832004-05-17 10:48:57 +0000101 */
drh8a512562005-11-14 22:29:05 +0000102 if( sqlite3IsNumericAffinity(aff1) || sqlite3IsNumericAffinity(aff2) ){
danielk1977e014a832004-05-17 10:48:57 +0000103 return SQLITE_AFF_NUMERIC;
104 }else{
105 return SQLITE_AFF_NONE;
106 }
107 }else if( !aff1 && !aff2 ){
drh5f6a87b2004-07-19 00:39:45 +0000108 /* Neither side of the comparison is a column. Compare the
109 ** results directly.
danielk1977e014a832004-05-17 10:48:57 +0000110 */
drh5f6a87b2004-07-19 00:39:45 +0000111 return SQLITE_AFF_NONE;
danielk1977e014a832004-05-17 10:48:57 +0000112 }else{
113 /* One side is a column, the other is not. Use the columns affinity. */
drhfe05af82005-07-21 03:14:59 +0000114 assert( aff1==0 || aff2==0 );
danielk1977e014a832004-05-17 10:48:57 +0000115 return (aff1 + aff2);
116 }
117}
118
drh53db1452004-05-20 13:54:53 +0000119/*
120** pExpr is a comparison operator. Return the type affinity that should
121** be applied to both operands prior to doing the comparison.
122*/
danielk1977e014a832004-05-17 10:48:57 +0000123static char comparisonAffinity(Expr *pExpr){
124 char aff;
125 assert( pExpr->op==TK_EQ || pExpr->op==TK_IN || pExpr->op==TK_LT ||
126 pExpr->op==TK_GT || pExpr->op==TK_GE || pExpr->op==TK_LE ||
127 pExpr->op==TK_NE );
128 assert( pExpr->pLeft );
danielk1977bf3b7212004-05-18 10:06:24 +0000129 aff = sqlite3ExprAffinity(pExpr->pLeft);
danielk1977e014a832004-05-17 10:48:57 +0000130 if( pExpr->pRight ){
131 aff = sqlite3CompareAffinity(pExpr->pRight, aff);
132 }
133 else if( pExpr->pSelect ){
134 aff = sqlite3CompareAffinity(pExpr->pSelect->pEList->a[0].pExpr, aff);
135 }
136 else if( !aff ){
drhde087bd2007-02-23 03:00:44 +0000137 aff = SQLITE_AFF_NONE;
danielk1977e014a832004-05-17 10:48:57 +0000138 }
139 return aff;
140}
141
142/*
143** pExpr is a comparison expression, eg. '=', '<', IN(...) etc.
144** idx_affinity is the affinity of an indexed column. Return true
145** if the index with affinity idx_affinity may be used to implement
146** the comparison in pExpr.
147*/
148int sqlite3IndexAffinityOk(Expr *pExpr, char idx_affinity){
149 char aff = comparisonAffinity(pExpr);
drh8a512562005-11-14 22:29:05 +0000150 switch( aff ){
151 case SQLITE_AFF_NONE:
152 return 1;
153 case SQLITE_AFF_TEXT:
154 return idx_affinity==SQLITE_AFF_TEXT;
155 default:
156 return sqlite3IsNumericAffinity(idx_affinity);
157 }
danielk1977e014a832004-05-17 10:48:57 +0000158}
159
danielk1977a37cdde2004-05-16 11:15:36 +0000160/*
161** Return the P1 value that should be used for a binary comparison
162** opcode (OP_Eq, OP_Ge etc.) used to compare pExpr1 and pExpr2.
163** If jumpIfNull is true, then set the low byte of the returned
164** P1 value to tell the opcode to jump if either expression
165** evaluates to NULL.
166*/
danielk1977e014a832004-05-17 10:48:57 +0000167static int binaryCompareP1(Expr *pExpr1, Expr *pExpr2, int jumpIfNull){
danielk1977bf3b7212004-05-18 10:06:24 +0000168 char aff = sqlite3ExprAffinity(pExpr2);
drhf0863fe2005-06-12 21:35:51 +0000169 return ((int)sqlite3CompareAffinity(pExpr1, aff))+(jumpIfNull?0x100:0);
danielk1977a37cdde2004-05-16 11:15:36 +0000170}
171
drha2e00042002-01-22 03:13:42 +0000172/*
danielk19770202b292004-06-09 09:55:16 +0000173** Return a pointer to the collation sequence that should be used by
174** a binary comparison operator comparing pLeft and pRight.
175**
176** If the left hand expression has a collating sequence type, then it is
177** used. Otherwise the collation sequence for the right hand expression
178** is used, or the default (BINARY) if neither expression has a collating
179** type.
danielk1977bcbb04e2007-05-29 12:11:29 +0000180**
181** Argument pRight (but not pLeft) may be a null pointer. In this case,
182** it is not considered.
danielk19770202b292004-06-09 09:55:16 +0000183*/
drh0a0e1312007-08-07 17:04:59 +0000184CollSeq *sqlite3BinaryCompareCollSeq(
danielk1977bcbb04e2007-05-29 12:11:29 +0000185 Parse *pParse,
186 Expr *pLeft,
187 Expr *pRight
188){
drhec41dda2007-02-07 13:09:45 +0000189 CollSeq *pColl;
190 assert( pLeft );
drhec41dda2007-02-07 13:09:45 +0000191 if( pLeft->flags & EP_ExpCollate ){
192 assert( pLeft->pColl );
193 pColl = pLeft->pColl;
danielk1977bcbb04e2007-05-29 12:11:29 +0000194 }else if( pRight && pRight->flags & EP_ExpCollate ){
drhec41dda2007-02-07 13:09:45 +0000195 assert( pRight->pColl );
196 pColl = pRight->pColl;
197 }else{
198 pColl = sqlite3ExprCollSeq(pParse, pLeft);
199 if( !pColl ){
200 pColl = sqlite3ExprCollSeq(pParse, pRight);
201 }
danielk19770202b292004-06-09 09:55:16 +0000202 }
203 return pColl;
204}
205
206/*
drhbe5c89a2004-07-26 00:31:09 +0000207** Generate code for a comparison operator.
208*/
209static int codeCompare(
210 Parse *pParse, /* The parsing (and code generating) context */
211 Expr *pLeft, /* The left operand */
212 Expr *pRight, /* The right operand */
213 int opcode, /* The comparison opcode */
214 int dest, /* Jump here if true. */
215 int jumpIfNull /* If true, jump if either operand is NULL */
216){
217 int p1 = binaryCompareP1(pLeft, pRight, jumpIfNull);
danielk1977bcbb04e2007-05-29 12:11:29 +0000218 CollSeq *p3 = sqlite3BinaryCompareCollSeq(pParse, pLeft, pRight);
drh66a51672008-01-03 00:01:23 +0000219 return sqlite3VdbeAddOp4(pParse->pVdbe, opcode, p1, dest, 0,
220 (void*)p3, P4_COLLSEQ);
drhbe5c89a2004-07-26 00:31:09 +0000221}
222
223/*
drha76b5df2002-02-23 02:32:10 +0000224** Construct a new expression node and return a pointer to it. Memory
drh17435752007-08-16 04:30:38 +0000225** for this node is obtained from sqlite3_malloc(). The calling function
drha76b5df2002-02-23 02:32:10 +0000226** is responsible for making sure the node eventually gets freed.
227*/
drh17435752007-08-16 04:30:38 +0000228Expr *sqlite3Expr(
danielk1977a1644fd2007-08-29 12:31:25 +0000229 sqlite3 *db, /* Handle for sqlite3DbMallocZero() (may be null) */
drh17435752007-08-16 04:30:38 +0000230 int op, /* Expression opcode */
231 Expr *pLeft, /* Left operand */
232 Expr *pRight, /* Right operand */
233 const Token *pToken /* Argument token */
234){
drha76b5df2002-02-23 02:32:10 +0000235 Expr *pNew;
danielk1977a1644fd2007-08-29 12:31:25 +0000236 pNew = sqlite3DbMallocZero(db, sizeof(Expr));
drha76b5df2002-02-23 02:32:10 +0000237 if( pNew==0 ){
danielk1977d5d56522005-03-16 12:15:20 +0000238 /* When malloc fails, delete pLeft and pRight. Expressions passed to
239 ** this function must always be allocated with sqlite3Expr() for this
240 ** reason.
241 */
242 sqlite3ExprDelete(pLeft);
243 sqlite3ExprDelete(pRight);
drha76b5df2002-02-23 02:32:10 +0000244 return 0;
245 }
246 pNew->op = op;
247 pNew->pLeft = pLeft;
248 pNew->pRight = pRight;
danielk1977a58fdfb2005-02-08 07:50:40 +0000249 pNew->iAgg = -1;
drha76b5df2002-02-23 02:32:10 +0000250 if( pToken ){
drh4b59ab52002-08-24 18:24:51 +0000251 assert( pToken->dyn==0 );
drh145716b2004-09-24 12:24:06 +0000252 pNew->span = pNew->token = *pToken;
drha34001c2007-02-02 12:44:37 +0000253 }else if( pLeft ){
254 if( pRight ){
255 sqlite3ExprSpan(pNew, &pLeft->span, &pRight->span);
drh5ffb3ac2007-04-18 17:07:57 +0000256 if( pRight->flags & EP_ExpCollate ){
drha34001c2007-02-02 12:44:37 +0000257 pNew->flags |= EP_ExpCollate;
258 pNew->pColl = pRight->pColl;
259 }
260 }
drh5ffb3ac2007-04-18 17:07:57 +0000261 if( pLeft->flags & EP_ExpCollate ){
drha34001c2007-02-02 12:44:37 +0000262 pNew->flags |= EP_ExpCollate;
263 pNew->pColl = pLeft->pColl;
264 }
drha76b5df2002-02-23 02:32:10 +0000265 }
danielk1977fc976062007-05-10 10:46:56 +0000266
267 sqlite3ExprSetHeight(pNew);
drha76b5df2002-02-23 02:32:10 +0000268 return pNew;
269}
270
271/*
drh17435752007-08-16 04:30:38 +0000272** Works like sqlite3Expr() except that it takes an extra Parse*
273** argument and notifies the associated connection object if malloc fails.
drh206f3d92006-07-11 13:15:08 +0000274*/
drh17435752007-08-16 04:30:38 +0000275Expr *sqlite3PExpr(
276 Parse *pParse, /* Parsing context */
277 int op, /* Expression opcode */
278 Expr *pLeft, /* Left operand */
279 Expr *pRight, /* Right operand */
280 const Token *pToken /* Argument token */
281){
danielk1977a1644fd2007-08-29 12:31:25 +0000282 return sqlite3Expr(pParse->db, op, pLeft, pRight, pToken);
drh206f3d92006-07-11 13:15:08 +0000283}
284
285/*
drh4e0cff62004-11-05 05:10:28 +0000286** When doing a nested parse, you can include terms in an expression
287** that look like this: #0 #1 #2 ... These terms refer to elements
drh288d37f2005-06-22 08:48:06 +0000288** on the stack. "#0" means the top of the stack.
289** "#1" means the next down on the stack. And so forth.
drh4e0cff62004-11-05 05:10:28 +0000290**
291** This routine is called by the parser to deal with on of those terms.
292** It immediately generates code to store the value in a memory location.
293** The returns an expression that will code to extract the value from
294** that memory location as needed.
295*/
296Expr *sqlite3RegisterExpr(Parse *pParse, Token *pToken){
297 Vdbe *v = pParse->pVdbe;
298 Expr *p;
299 int depth;
drh4e0cff62004-11-05 05:10:28 +0000300 if( pParse->nested==0 ){
301 sqlite3ErrorMsg(pParse, "near \"%T\": syntax error", pToken);
danielk1977a1644fd2007-08-29 12:31:25 +0000302 return sqlite3PExpr(pParse, TK_NULL, 0, 0, 0);
drh4e0cff62004-11-05 05:10:28 +0000303 }
drhbb7ac002005-08-12 22:58:53 +0000304 if( v==0 ) return 0;
danielk1977a1644fd2007-08-29 12:31:25 +0000305 p = sqlite3PExpr(pParse, TK_REGISTER, 0, 0, pToken);
drh73c42a12004-11-20 18:13:10 +0000306 if( p==0 ){
307 return 0; /* Malloc failed */
308 }
drh2646da72005-12-09 20:02:05 +0000309 depth = atoi((char*)&pToken->z[1]);
drh0a07c102008-01-03 18:03:08 +0000310 p->iTable = ++pParse->nMem;
drhb1fdb2a2008-01-05 04:06:03 +0000311 sqlite3VdbeAddOp2(v, OP_Copy, -depth, p->iTable);
drh4e0cff62004-11-05 05:10:28 +0000312 return p;
313}
314
315/*
drh91bb0ee2004-09-01 03:06:34 +0000316** Join two expressions using an AND operator. If either expression is
317** NULL, then just return the other expression.
318*/
danielk19771e536952007-08-16 10:09:01 +0000319Expr *sqlite3ExprAnd(sqlite3 *db, Expr *pLeft, Expr *pRight){
drh91bb0ee2004-09-01 03:06:34 +0000320 if( pLeft==0 ){
321 return pRight;
322 }else if( pRight==0 ){
323 return pLeft;
324 }else{
danielk1977880c15b2007-09-01 18:24:55 +0000325 return sqlite3Expr(db, TK_AND, pLeft, pRight, 0);
drh91bb0ee2004-09-01 03:06:34 +0000326 }
327}
328
329/*
drh6977fea2002-10-22 23:38:04 +0000330** Set the Expr.span field of the given expression to span all
drha76b5df2002-02-23 02:32:10 +0000331** text between the two given tokens.
332*/
danielk19774adee202004-05-08 08:23:19 +0000333void sqlite3ExprSpan(Expr *pExpr, Token *pLeft, Token *pRight){
drh4efc4752004-01-16 15:55:37 +0000334 assert( pRight!=0 );
335 assert( pLeft!=0 );
drhf3a65f72007-08-22 20:18:21 +0000336 if( pExpr && pRight->z && pLeft->z ){
drhad6d9462004-09-19 02:15:24 +0000337 assert( pLeft->dyn==0 || pLeft->z[pLeft->n]==0 );
drh145716b2004-09-24 12:24:06 +0000338 if( pLeft->dyn==0 && pRight->dyn==0 ){
drh6977fea2002-10-22 23:38:04 +0000339 pExpr->span.z = pLeft->z;
drh97903fe2005-05-24 20:19:57 +0000340 pExpr->span.n = pRight->n + (pRight->z - pLeft->z);
drh4b59ab52002-08-24 18:24:51 +0000341 }else{
drh6977fea2002-10-22 23:38:04 +0000342 pExpr->span.z = 0;
drh4b59ab52002-08-24 18:24:51 +0000343 }
drha76b5df2002-02-23 02:32:10 +0000344 }
345}
346
347/*
348** Construct a new expression node for a function with multiple
349** arguments.
350*/
drh17435752007-08-16 04:30:38 +0000351Expr *sqlite3ExprFunction(Parse *pParse, ExprList *pList, Token *pToken){
drha76b5df2002-02-23 02:32:10 +0000352 Expr *pNew;
danielk19774b202ae2006-01-23 05:50:58 +0000353 assert( pToken );
drh17435752007-08-16 04:30:38 +0000354 pNew = sqlite3DbMallocZero(pParse->db, sizeof(Expr) );
drha76b5df2002-02-23 02:32:10 +0000355 if( pNew==0 ){
danielk1977d5d56522005-03-16 12:15:20 +0000356 sqlite3ExprListDelete(pList); /* Avoid leaking memory when malloc fails */
drha76b5df2002-02-23 02:32:10 +0000357 return 0;
358 }
359 pNew->op = TK_FUNCTION;
360 pNew->pList = pList;
danielk19774b202ae2006-01-23 05:50:58 +0000361 assert( pToken->dyn==0 );
362 pNew->token = *pToken;
drh6977fea2002-10-22 23:38:04 +0000363 pNew->span = pNew->token;
danielk1977fc976062007-05-10 10:46:56 +0000364
365 sqlite3ExprSetHeight(pNew);
drha76b5df2002-02-23 02:32:10 +0000366 return pNew;
367}
368
369/*
drhfa6bc002004-09-07 16:19:52 +0000370** Assign a variable number to an expression that encodes a wildcard
371** in the original SQL statement.
372**
373** Wildcards consisting of a single "?" are assigned the next sequential
374** variable number.
375**
376** Wildcards of the form "?nnn" are assigned the number "nnn". We make
377** sure "nnn" is not too be to avoid a denial of service attack when
378** the SQL statement comes from an external source.
379**
380** Wildcards of the form ":aaa" or "$aaa" are assigned the same number
381** as the previous instance of the same wildcard. Or if this is the first
382** instance of the wildcard, the next sequenial variable number is
383** assigned.
384*/
385void sqlite3ExprAssignVarNumber(Parse *pParse, Expr *pExpr){
386 Token *pToken;
drh17435752007-08-16 04:30:38 +0000387 sqlite3 *db = pParse->db;
388
drhfa6bc002004-09-07 16:19:52 +0000389 if( pExpr==0 ) return;
390 pToken = &pExpr->token;
391 assert( pToken->n>=1 );
392 assert( pToken->z!=0 );
393 assert( pToken->z[0]!=0 );
394 if( pToken->n==1 ){
395 /* Wildcard of the form "?". Assign the next variable number */
396 pExpr->iTable = ++pParse->nVar;
397 }else if( pToken->z[0]=='?' ){
398 /* Wildcard of the form "?nnn". Convert "nnn" to an integer and
399 ** use it as the variable number */
400 int i;
drh2646da72005-12-09 20:02:05 +0000401 pExpr->iTable = i = atoi((char*)&pToken->z[1]);
drhfa6bc002004-09-07 16:19:52 +0000402 if( i<1 || i>SQLITE_MAX_VARIABLE_NUMBER ){
403 sqlite3ErrorMsg(pParse, "variable number must be between ?1 and ?%d",
404 SQLITE_MAX_VARIABLE_NUMBER);
405 }
406 if( i>pParse->nVar ){
407 pParse->nVar = i;
408 }
409 }else{
410 /* Wildcards of the form ":aaa" or "$aaa". Reuse the same variable
411 ** number as the prior appearance of the same name, or if the name
412 ** has never appeared before, reuse the same variable number
413 */
414 int i, n;
415 n = pToken->n;
416 for(i=0; i<pParse->nVarExpr; i++){
417 Expr *pE;
418 if( (pE = pParse->apVarExpr[i])!=0
419 && pE->token.n==n
420 && memcmp(pE->token.z, pToken->z, n)==0 ){
421 pExpr->iTable = pE->iTable;
422 break;
423 }
424 }
425 if( i>=pParse->nVarExpr ){
426 pExpr->iTable = ++pParse->nVar;
427 if( pParse->nVarExpr>=pParse->nVarExprAlloc-1 ){
428 pParse->nVarExprAlloc += pParse->nVarExprAlloc + 10;
drh17435752007-08-16 04:30:38 +0000429 pParse->apVarExpr =
430 sqlite3DbReallocOrFree(
431 db,
432 pParse->apVarExpr,
433 pParse->nVarExprAlloc*sizeof(pParse->apVarExpr[0])
434 );
drhfa6bc002004-09-07 16:19:52 +0000435 }
drh17435752007-08-16 04:30:38 +0000436 if( !db->mallocFailed ){
drhfa6bc002004-09-07 16:19:52 +0000437 assert( pParse->apVarExpr!=0 );
438 pParse->apVarExpr[pParse->nVarExpr++] = pExpr;
439 }
440 }
441 }
danielk1977832b2662007-05-09 11:37:22 +0000442 if( !pParse->nErr && pParse->nVar>SQLITE_MAX_VARIABLE_NUMBER ){
443 sqlite3ErrorMsg(pParse, "too many SQL variables");
444 }
drhfa6bc002004-09-07 16:19:52 +0000445}
446
447/*
drha2e00042002-01-22 03:13:42 +0000448** Recursively delete an expression tree.
449*/
danielk19774adee202004-05-08 08:23:19 +0000450void sqlite3ExprDelete(Expr *p){
drha2e00042002-01-22 03:13:42 +0000451 if( p==0 ) return;
drh17435752007-08-16 04:30:38 +0000452 if( p->span.dyn ) sqlite3_free((char*)p->span.z);
453 if( p->token.dyn ) sqlite3_free((char*)p->token.z);
danielk19774adee202004-05-08 08:23:19 +0000454 sqlite3ExprDelete(p->pLeft);
455 sqlite3ExprDelete(p->pRight);
456 sqlite3ExprListDelete(p->pList);
457 sqlite3SelectDelete(p->pSelect);
drh17435752007-08-16 04:30:38 +0000458 sqlite3_free(p);
drha2e00042002-01-22 03:13:42 +0000459}
460
drhd2687b72005-08-12 22:56:09 +0000461/*
462** The Expr.token field might be a string literal that is quoted.
463** If so, remove the quotation marks.
464*/
drh17435752007-08-16 04:30:38 +0000465void sqlite3DequoteExpr(sqlite3 *db, Expr *p){
drhd2687b72005-08-12 22:56:09 +0000466 if( ExprHasAnyProperty(p, EP_Dequoted) ){
467 return;
468 }
469 ExprSetProperty(p, EP_Dequoted);
470 if( p->token.dyn==0 ){
drh17435752007-08-16 04:30:38 +0000471 sqlite3TokenCopy(db, &p->token, &p->token);
drhd2687b72005-08-12 22:56:09 +0000472 }
473 sqlite3Dequote((char*)p->token.z);
474}
475
drha76b5df2002-02-23 02:32:10 +0000476
477/*
drhff78bd22002-02-27 01:47:11 +0000478** The following group of routines make deep copies of expressions,
479** expression lists, ID lists, and select statements. The copies can
480** be deleted (by being passed to their respective ...Delete() routines)
481** without effecting the originals.
482**
danielk19774adee202004-05-08 08:23:19 +0000483** The expression list, ID, and source lists return by sqlite3ExprListDup(),
484** sqlite3IdListDup(), and sqlite3SrcListDup() can not be further expanded
drhad3cab52002-05-24 02:04:32 +0000485** by subsequent calls to sqlite*ListAppend() routines.
drhff78bd22002-02-27 01:47:11 +0000486**
drhad3cab52002-05-24 02:04:32 +0000487** Any tables that the SrcList might point to are not duplicated.
drhff78bd22002-02-27 01:47:11 +0000488*/
danielk19771e536952007-08-16 10:09:01 +0000489Expr *sqlite3ExprDup(sqlite3 *db, Expr *p){
drhff78bd22002-02-27 01:47:11 +0000490 Expr *pNew;
491 if( p==0 ) return 0;
drh17435752007-08-16 04:30:38 +0000492 pNew = sqlite3DbMallocRaw(db, sizeof(*p) );
drhff78bd22002-02-27 01:47:11 +0000493 if( pNew==0 ) return 0;
drh3b167c72002-06-28 12:18:47 +0000494 memcpy(pNew, p, sizeof(*pNew));
drh6977fea2002-10-22 23:38:04 +0000495 if( p->token.z!=0 ){
drh17435752007-08-16 04:30:38 +0000496 pNew->token.z = (u8*)sqlite3DbStrNDup(db, (char*)p->token.z, p->token.n);
drh4b59ab52002-08-24 18:24:51 +0000497 pNew->token.dyn = 1;
498 }else{
drh4efc4752004-01-16 15:55:37 +0000499 assert( pNew->token.z==0 );
drh4b59ab52002-08-24 18:24:51 +0000500 }
drh6977fea2002-10-22 23:38:04 +0000501 pNew->span.z = 0;
drh17435752007-08-16 04:30:38 +0000502 pNew->pLeft = sqlite3ExprDup(db, p->pLeft);
503 pNew->pRight = sqlite3ExprDup(db, p->pRight);
504 pNew->pList = sqlite3ExprListDup(db, p->pList);
505 pNew->pSelect = sqlite3SelectDup(db, p->pSelect);
drhff78bd22002-02-27 01:47:11 +0000506 return pNew;
507}
drh17435752007-08-16 04:30:38 +0000508void sqlite3TokenCopy(sqlite3 *db, Token *pTo, Token *pFrom){
509 if( pTo->dyn ) sqlite3_free((char*)pTo->z);
drh4b59ab52002-08-24 18:24:51 +0000510 if( pFrom->z ){
511 pTo->n = pFrom->n;
drh17435752007-08-16 04:30:38 +0000512 pTo->z = (u8*)sqlite3DbStrNDup(db, (char*)pFrom->z, pFrom->n);
drh4b59ab52002-08-24 18:24:51 +0000513 pTo->dyn = 1;
514 }else{
drh4b59ab52002-08-24 18:24:51 +0000515 pTo->z = 0;
drh4b59ab52002-08-24 18:24:51 +0000516 }
517}
drh17435752007-08-16 04:30:38 +0000518ExprList *sqlite3ExprListDup(sqlite3 *db, ExprList *p){
drhff78bd22002-02-27 01:47:11 +0000519 ExprList *pNew;
drh145716b2004-09-24 12:24:06 +0000520 struct ExprList_item *pItem, *pOldItem;
drhff78bd22002-02-27 01:47:11 +0000521 int i;
522 if( p==0 ) return 0;
drh17435752007-08-16 04:30:38 +0000523 pNew = sqlite3DbMallocRaw(db, sizeof(*pNew) );
drhff78bd22002-02-27 01:47:11 +0000524 if( pNew==0 ) return 0;
danielk197731dad9d2007-08-16 11:36:15 +0000525 pNew->iECursor = 0;
drh4305d102003-07-30 12:34:12 +0000526 pNew->nExpr = pNew->nAlloc = p->nExpr;
drh17435752007-08-16 04:30:38 +0000527 pNew->a = pItem = sqlite3DbMallocRaw(db, p->nExpr*sizeof(p->a[0]) );
danielk1977e0048402004-06-15 16:51:01 +0000528 if( pItem==0 ){
drh17435752007-08-16 04:30:38 +0000529 sqlite3_free(pNew);
danielk1977e0048402004-06-15 16:51:01 +0000530 return 0;
531 }
drh145716b2004-09-24 12:24:06 +0000532 pOldItem = p->a;
533 for(i=0; i<p->nExpr; i++, pItem++, pOldItem++){
drh4b59ab52002-08-24 18:24:51 +0000534 Expr *pNewExpr, *pOldExpr;
drh17435752007-08-16 04:30:38 +0000535 pItem->pExpr = pNewExpr = sqlite3ExprDup(db, pOldExpr = pOldItem->pExpr);
drh6977fea2002-10-22 23:38:04 +0000536 if( pOldExpr->span.z!=0 && pNewExpr ){
537 /* Always make a copy of the span for top-level expressions in the
drh4b59ab52002-08-24 18:24:51 +0000538 ** expression list. The logic in SELECT processing that determines
539 ** the names of columns in the result set needs this information */
drh17435752007-08-16 04:30:38 +0000540 sqlite3TokenCopy(db, &pNewExpr->span, &pOldExpr->span);
drh4b59ab52002-08-24 18:24:51 +0000541 }
drh1f3e9052002-10-31 00:09:39 +0000542 assert( pNewExpr==0 || pNewExpr->span.z!=0
drh6f7adc82006-01-11 21:41:20 +0000543 || pOldExpr->span.z==0
drh17435752007-08-16 04:30:38 +0000544 || db->mallocFailed );
545 pItem->zName = sqlite3DbStrDup(db, pOldItem->zName);
drh145716b2004-09-24 12:24:06 +0000546 pItem->sortOrder = pOldItem->sortOrder;
547 pItem->isAgg = pOldItem->isAgg;
drh3e7bc9c2004-02-21 19:17:17 +0000548 pItem->done = 0;
drhff78bd22002-02-27 01:47:11 +0000549 }
550 return pNew;
551}
danielk197793758c82005-01-21 08:13:14 +0000552
553/*
554** If cursors, triggers, views and subqueries are all omitted from
555** the build, then none of the following routines, except for
556** sqlite3SelectDup(), can be called. sqlite3SelectDup() is sometimes
557** called with a NULL argument.
558*/
danielk19776a67fe82005-02-04 04:07:16 +0000559#if !defined(SQLITE_OMIT_VIEW) || !defined(SQLITE_OMIT_TRIGGER) \
560 || !defined(SQLITE_OMIT_SUBQUERY)
drh17435752007-08-16 04:30:38 +0000561SrcList *sqlite3SrcListDup(sqlite3 *db, SrcList *p){
drhad3cab52002-05-24 02:04:32 +0000562 SrcList *pNew;
563 int i;
drh113088e2003-03-20 01:16:58 +0000564 int nByte;
drhad3cab52002-05-24 02:04:32 +0000565 if( p==0 ) return 0;
drh113088e2003-03-20 01:16:58 +0000566 nByte = sizeof(*p) + (p->nSrc>0 ? sizeof(p->a[0]) * (p->nSrc-1) : 0);
drh17435752007-08-16 04:30:38 +0000567 pNew = sqlite3DbMallocRaw(db, nByte );
drhad3cab52002-05-24 02:04:32 +0000568 if( pNew==0 ) return 0;
drh4305d102003-07-30 12:34:12 +0000569 pNew->nSrc = pNew->nAlloc = p->nSrc;
drhad3cab52002-05-24 02:04:32 +0000570 for(i=0; i<p->nSrc; i++){
drh4efc4752004-01-16 15:55:37 +0000571 struct SrcList_item *pNewItem = &pNew->a[i];
572 struct SrcList_item *pOldItem = &p->a[i];
drhed8a3bb2005-06-06 21:19:56 +0000573 Table *pTab;
drh17435752007-08-16 04:30:38 +0000574 pNewItem->zDatabase = sqlite3DbStrDup(db, pOldItem->zDatabase);
575 pNewItem->zName = sqlite3DbStrDup(db, pOldItem->zName);
576 pNewItem->zAlias = sqlite3DbStrDup(db, pOldItem->zAlias);
drh4efc4752004-01-16 15:55:37 +0000577 pNewItem->jointype = pOldItem->jointype;
578 pNewItem->iCursor = pOldItem->iCursor;
danielk19771787cca2006-02-10 07:07:14 +0000579 pNewItem->isPopulated = pOldItem->isPopulated;
drhed8a3bb2005-06-06 21:19:56 +0000580 pTab = pNewItem->pTab = pOldItem->pTab;
581 if( pTab ){
582 pTab->nRef++;
danielk1977a1cb1832005-02-12 08:59:55 +0000583 }
drh17435752007-08-16 04:30:38 +0000584 pNewItem->pSelect = sqlite3SelectDup(db, pOldItem->pSelect);
585 pNewItem->pOn = sqlite3ExprDup(db, pOldItem->pOn);
586 pNewItem->pUsing = sqlite3IdListDup(db, pOldItem->pUsing);
danielk19776c18b6e2005-01-30 09:17:58 +0000587 pNewItem->colUsed = pOldItem->colUsed;
drhad3cab52002-05-24 02:04:32 +0000588 }
589 return pNew;
590}
drh17435752007-08-16 04:30:38 +0000591IdList *sqlite3IdListDup(sqlite3 *db, IdList *p){
drhff78bd22002-02-27 01:47:11 +0000592 IdList *pNew;
593 int i;
594 if( p==0 ) return 0;
drh17435752007-08-16 04:30:38 +0000595 pNew = sqlite3DbMallocRaw(db, sizeof(*pNew) );
drhff78bd22002-02-27 01:47:11 +0000596 if( pNew==0 ) return 0;
drh4305d102003-07-30 12:34:12 +0000597 pNew->nId = pNew->nAlloc = p->nId;
drh17435752007-08-16 04:30:38 +0000598 pNew->a = sqlite3DbMallocRaw(db, p->nId*sizeof(p->a[0]) );
danielk1977d5d56522005-03-16 12:15:20 +0000599 if( pNew->a==0 ){
drh17435752007-08-16 04:30:38 +0000600 sqlite3_free(pNew);
danielk1977d5d56522005-03-16 12:15:20 +0000601 return 0;
602 }
drhff78bd22002-02-27 01:47:11 +0000603 for(i=0; i<p->nId; i++){
drh4efc4752004-01-16 15:55:37 +0000604 struct IdList_item *pNewItem = &pNew->a[i];
605 struct IdList_item *pOldItem = &p->a[i];
drh17435752007-08-16 04:30:38 +0000606 pNewItem->zName = sqlite3DbStrDup(db, pOldItem->zName);
drh4efc4752004-01-16 15:55:37 +0000607 pNewItem->idx = pOldItem->idx;
drhff78bd22002-02-27 01:47:11 +0000608 }
609 return pNew;
610}
drh17435752007-08-16 04:30:38 +0000611Select *sqlite3SelectDup(sqlite3 *db, Select *p){
drhff78bd22002-02-27 01:47:11 +0000612 Select *pNew;
613 if( p==0 ) return 0;
drh17435752007-08-16 04:30:38 +0000614 pNew = sqlite3DbMallocRaw(db, sizeof(*p) );
drhff78bd22002-02-27 01:47:11 +0000615 if( pNew==0 ) return 0;
616 pNew->isDistinct = p->isDistinct;
drh17435752007-08-16 04:30:38 +0000617 pNew->pEList = sqlite3ExprListDup(db, p->pEList);
618 pNew->pSrc = sqlite3SrcListDup(db, p->pSrc);
619 pNew->pWhere = sqlite3ExprDup(db, p->pWhere);
620 pNew->pGroupBy = sqlite3ExprListDup(db, p->pGroupBy);
621 pNew->pHaving = sqlite3ExprDup(db, p->pHaving);
622 pNew->pOrderBy = sqlite3ExprListDup(db, p->pOrderBy);
drhff78bd22002-02-27 01:47:11 +0000623 pNew->op = p->op;
drh17435752007-08-16 04:30:38 +0000624 pNew->pPrior = sqlite3SelectDup(db, p->pPrior);
625 pNew->pLimit = sqlite3ExprDup(db, p->pLimit);
626 pNew->pOffset = sqlite3ExprDup(db, p->pOffset);
drh7b58dae2003-07-20 01:16:46 +0000627 pNew->iLimit = -1;
628 pNew->iOffset = -1;
danielk1977a1cb1832005-02-12 08:59:55 +0000629 pNew->isResolved = p->isResolved;
630 pNew->isAgg = p->isAgg;
drhb9bb7c12006-06-11 23:41:55 +0000631 pNew->usesEphm = 0;
drh8e647b82005-09-23 21:11:53 +0000632 pNew->disallowOrderBy = 0;
drh0342b1f2005-09-01 03:07:44 +0000633 pNew->pRightmost = 0;
drhb9bb7c12006-06-11 23:41:55 +0000634 pNew->addrOpenEphm[0] = -1;
635 pNew->addrOpenEphm[1] = -1;
636 pNew->addrOpenEphm[2] = -1;
drhff78bd22002-02-27 01:47:11 +0000637 return pNew;
638}
danielk197793758c82005-01-21 08:13:14 +0000639#else
drh17435752007-08-16 04:30:38 +0000640Select *sqlite3SelectDup(sqlite3 *db, Select *p){
danielk197793758c82005-01-21 08:13:14 +0000641 assert( p==0 );
642 return 0;
643}
644#endif
drhff78bd22002-02-27 01:47:11 +0000645
646
647/*
drha76b5df2002-02-23 02:32:10 +0000648** Add a new element to the end of an expression list. If pList is
649** initially NULL, then create a new expression list.
650*/
drh17435752007-08-16 04:30:38 +0000651ExprList *sqlite3ExprListAppend(
652 Parse *pParse, /* Parsing context */
653 ExprList *pList, /* List to which to append. Might be NULL */
654 Expr *pExpr, /* Expression to be appended */
655 Token *pName /* AS keyword for the expression */
656){
657 sqlite3 *db = pParse->db;
drha76b5df2002-02-23 02:32:10 +0000658 if( pList==0 ){
drh17435752007-08-16 04:30:38 +0000659 pList = sqlite3DbMallocZero(db, sizeof(ExprList) );
drha76b5df2002-02-23 02:32:10 +0000660 if( pList==0 ){
danielk1977d5d56522005-03-16 12:15:20 +0000661 goto no_mem;
drha76b5df2002-02-23 02:32:10 +0000662 }
drh4efc4752004-01-16 15:55:37 +0000663 assert( pList->nAlloc==0 );
drha76b5df2002-02-23 02:32:10 +0000664 }
drh4305d102003-07-30 12:34:12 +0000665 if( pList->nAlloc<=pList->nExpr ){
danielk1977d5d56522005-03-16 12:15:20 +0000666 struct ExprList_item *a;
667 int n = pList->nAlloc*2 + 4;
danielk197726783a52007-08-29 14:06:22 +0000668 a = sqlite3DbRealloc(db, pList->a, n*sizeof(pList->a[0]));
danielk1977d5d56522005-03-16 12:15:20 +0000669 if( a==0 ){
670 goto no_mem;
drha76b5df2002-02-23 02:32:10 +0000671 }
danielk1977d5d56522005-03-16 12:15:20 +0000672 pList->a = a;
673 pList->nAlloc = n;
drha76b5df2002-02-23 02:32:10 +0000674 }
drh4efc4752004-01-16 15:55:37 +0000675 assert( pList->a!=0 );
676 if( pExpr || pName ){
677 struct ExprList_item *pItem = &pList->a[pList->nExpr++];
678 memset(pItem, 0, sizeof(*pItem));
drh17435752007-08-16 04:30:38 +0000679 pItem->zName = sqlite3NameFromToken(db, pName);
danielk1977e94ddc92005-03-21 03:53:38 +0000680 pItem->pExpr = pExpr;
drha76b5df2002-02-23 02:32:10 +0000681 }
682 return pList;
danielk1977d5d56522005-03-16 12:15:20 +0000683
684no_mem:
685 /* Avoid leaking memory if malloc has failed. */
686 sqlite3ExprDelete(pExpr);
687 sqlite3ExprListDelete(pList);
688 return 0;
drha76b5df2002-02-23 02:32:10 +0000689}
690
691/*
danielk19777a15a4b2007-05-08 17:54:43 +0000692** If the expression list pEList contains more than iLimit elements,
693** leave an error message in pParse.
694*/
695void sqlite3ExprListCheckLength(
696 Parse *pParse,
697 ExprList *pEList,
698 int iLimit,
699 const char *zObject
700){
danielk1977b4fc6792007-05-08 18:04:46 +0000701 if( pEList && pEList->nExpr>iLimit ){
danielk19777a15a4b2007-05-08 17:54:43 +0000702 sqlite3ErrorMsg(pParse, "too many columns in %s", zObject);
703 }
704}
705
danielk1977fc976062007-05-10 10:46:56 +0000706
danielk1977e6a58a42007-08-31 17:42:48 +0000707#if defined(SQLITE_TEST) || SQLITE_MAX_EXPR_DEPTH>0
danielk1977fc976062007-05-10 10:46:56 +0000708/* The following three functions, heightOfExpr(), heightOfExprList()
709** and heightOfSelect(), are used to determine the maximum height
710** of any expression tree referenced by the structure passed as the
711** first argument.
712**
713** If this maximum height is greater than the current value pointed
714** to by pnHeight, the second parameter, then set *pnHeight to that
715** value.
716*/
717static void heightOfExpr(Expr *p, int *pnHeight){
718 if( p ){
719 if( p->nHeight>*pnHeight ){
720 *pnHeight = p->nHeight;
721 }
722 }
723}
724static void heightOfExprList(ExprList *p, int *pnHeight){
725 if( p ){
726 int i;
727 for(i=0; i<p->nExpr; i++){
728 heightOfExpr(p->a[i].pExpr, pnHeight);
729 }
730 }
731}
732static void heightOfSelect(Select *p, int *pnHeight){
733 if( p ){
734 heightOfExpr(p->pWhere, pnHeight);
735 heightOfExpr(p->pHaving, pnHeight);
736 heightOfExpr(p->pLimit, pnHeight);
737 heightOfExpr(p->pOffset, pnHeight);
738 heightOfExprList(p->pEList, pnHeight);
739 heightOfExprList(p->pGroupBy, pnHeight);
740 heightOfExprList(p->pOrderBy, pnHeight);
741 heightOfSelect(p->pPrior, pnHeight);
742 }
743}
744
745/*
746** Set the Expr.nHeight variable in the structure passed as an
747** argument. An expression with no children, Expr.pList or
748** Expr.pSelect member has a height of 1. Any other expression
749** has a height equal to the maximum height of any other
750** referenced Expr plus one.
751*/
752void sqlite3ExprSetHeight(Expr *p){
753 int nHeight = 0;
754 heightOfExpr(p->pLeft, &nHeight);
755 heightOfExpr(p->pRight, &nHeight);
756 heightOfExprList(p->pList, &nHeight);
757 heightOfSelect(p->pSelect, &nHeight);
758 p->nHeight = nHeight + 1;
759}
760
761/*
762** Return the maximum height of any expression tree referenced
763** by the select statement passed as an argument.
764*/
765int sqlite3SelectExprHeight(Select *p){
766 int nHeight = 0;
767 heightOfSelect(p, &nHeight);
768 return nHeight;
769}
770#endif
771
danielk19777a15a4b2007-05-08 17:54:43 +0000772/*
drha76b5df2002-02-23 02:32:10 +0000773** Delete an entire expression list.
774*/
danielk19774adee202004-05-08 08:23:19 +0000775void sqlite3ExprListDelete(ExprList *pList){
drha76b5df2002-02-23 02:32:10 +0000776 int i;
drhbe5c89a2004-07-26 00:31:09 +0000777 struct ExprList_item *pItem;
drha76b5df2002-02-23 02:32:10 +0000778 if( pList==0 ) return;
drh1bdd9b52004-04-23 17:04:44 +0000779 assert( pList->a!=0 || (pList->nExpr==0 && pList->nAlloc==0) );
780 assert( pList->nExpr<=pList->nAlloc );
drhbe5c89a2004-07-26 00:31:09 +0000781 for(pItem=pList->a, i=0; i<pList->nExpr; i++, pItem++){
782 sqlite3ExprDelete(pItem->pExpr);
drh17435752007-08-16 04:30:38 +0000783 sqlite3_free(pItem->zName);
drha76b5df2002-02-23 02:32:10 +0000784 }
drh17435752007-08-16 04:30:38 +0000785 sqlite3_free(pList->a);
786 sqlite3_free(pList);
drha76b5df2002-02-23 02:32:10 +0000787}
788
789/*
drh626a8792005-01-17 22:08:19 +0000790** Walk an expression tree. Call xFunc for each node visited.
drh73b211a2005-01-18 04:00:42 +0000791**
drh626a8792005-01-17 22:08:19 +0000792** The return value from xFunc determines whether the tree walk continues.
793** 0 means continue walking the tree. 1 means do not walk children
794** of the current node but continue with siblings. 2 means abandon
795** the tree walk completely.
796**
797** The return value from this routine is 1 to abandon the tree walk
798** and 0 to continue.
drh87abf5c2005-08-25 12:45:04 +0000799**
800** NOTICE: This routine does *not* descend into subqueries.
drh626a8792005-01-17 22:08:19 +0000801*/
danielk1977a58fdfb2005-02-08 07:50:40 +0000802static int walkExprList(ExprList *, int (*)(void *, Expr*), void *);
drh626a8792005-01-17 22:08:19 +0000803static int walkExprTree(Expr *pExpr, int (*xFunc)(void*,Expr*), void *pArg){
drh626a8792005-01-17 22:08:19 +0000804 int rc;
805 if( pExpr==0 ) return 0;
806 rc = (*xFunc)(pArg, pExpr);
807 if( rc==0 ){
808 if( walkExprTree(pExpr->pLeft, xFunc, pArg) ) return 1;
809 if( walkExprTree(pExpr->pRight, xFunc, pArg) ) return 1;
danielk1977a58fdfb2005-02-08 07:50:40 +0000810 if( walkExprList(pExpr->pList, xFunc, pArg) ) return 1;
drh626a8792005-01-17 22:08:19 +0000811 }
812 return rc>1;
813}
814
815/*
danielk1977a58fdfb2005-02-08 07:50:40 +0000816** Call walkExprTree() for every expression in list p.
817*/
818static int walkExprList(ExprList *p, int (*xFunc)(void *, Expr*), void *pArg){
819 int i;
820 struct ExprList_item *pItem;
821 if( !p ) return 0;
822 for(i=p->nExpr, pItem=p->a; i>0; i--, pItem++){
823 if( walkExprTree(pItem->pExpr, xFunc, pArg) ) return 1;
824 }
825 return 0;
826}
827
828/*
829** Call walkExprTree() for every expression in Select p, not including
830** expressions that are part of sub-selects in any FROM clause or the LIMIT
831** or OFFSET expressions..
832*/
833static int walkSelectExpr(Select *p, int (*xFunc)(void *, Expr*), void *pArg){
834 walkExprList(p->pEList, xFunc, pArg);
835 walkExprTree(p->pWhere, xFunc, pArg);
836 walkExprList(p->pGroupBy, xFunc, pArg);
837 walkExprTree(p->pHaving, xFunc, pArg);
838 walkExprList(p->pOrderBy, xFunc, pArg);
danielk197715d79822007-05-15 07:00:34 +0000839 if( p->pPrior ){
840 walkSelectExpr(p->pPrior, xFunc, pArg);
841 }
danielk1977a58fdfb2005-02-08 07:50:40 +0000842 return 0;
843}
844
845
846/*
drh626a8792005-01-17 22:08:19 +0000847** This routine is designed as an xFunc for walkExprTree().
848**
849** pArg is really a pointer to an integer. If we can tell by looking
drh73b211a2005-01-18 04:00:42 +0000850** at pExpr that the expression that contains pExpr is not a constant
851** expression, then set *pArg to 0 and return 2 to abandon the tree walk.
852** If pExpr does does not disqualify the expression from being a constant
853** then do nothing.
854**
855** After walking the whole tree, if no nodes are found that disqualify
856** the expression as constant, then we assume the whole expression
857** is constant. See sqlite3ExprIsConstant() for additional information.
drh626a8792005-01-17 22:08:19 +0000858*/
859static int exprNodeIsConstant(void *pArg, Expr *pExpr){
drh0a168372007-06-08 00:20:47 +0000860 int *pN = (int*)pArg;
861
862 /* If *pArg is 3 then any term of the expression that comes from
863 ** the ON or USING clauses of a join disqualifies the expression
864 ** from being considered constant. */
865 if( (*pN)==3 && ExprHasAnyProperty(pExpr, EP_FromJoin) ){
866 *pN = 0;
867 return 2;
868 }
869
drh626a8792005-01-17 22:08:19 +0000870 switch( pExpr->op ){
drheb55bd22005-06-30 17:04:21 +0000871 /* Consider functions to be constant if all their arguments are constant
872 ** and *pArg==2 */
873 case TK_FUNCTION:
drh0a168372007-06-08 00:20:47 +0000874 if( (*pN)==2 ) return 0;
drheb55bd22005-06-30 17:04:21 +0000875 /* Fall through */
drh626a8792005-01-17 22:08:19 +0000876 case TK_ID:
877 case TK_COLUMN:
878 case TK_DOT:
879 case TK_AGG_FUNCTION:
drh13449892005-09-07 21:22:45 +0000880 case TK_AGG_COLUMN:
drhfe2093d2005-01-20 22:48:47 +0000881#ifndef SQLITE_OMIT_SUBQUERY
882 case TK_SELECT:
883 case TK_EXISTS:
884#endif
drh0a168372007-06-08 00:20:47 +0000885 *pN = 0;
drh626a8792005-01-17 22:08:19 +0000886 return 2;
drh87abf5c2005-08-25 12:45:04 +0000887 case TK_IN:
888 if( pExpr->pSelect ){
drh0a168372007-06-08 00:20:47 +0000889 *pN = 0;
drh87abf5c2005-08-25 12:45:04 +0000890 return 2;
891 }
drh626a8792005-01-17 22:08:19 +0000892 default:
893 return 0;
894 }
895}
896
897/*
drhfef52082000-06-06 01:50:43 +0000898** Walk an expression tree. Return 1 if the expression is constant
drheb55bd22005-06-30 17:04:21 +0000899** and 0 if it involves variables or function calls.
drh23989372002-05-21 13:43:04 +0000900**
901** For the purposes of this function, a double-quoted string (ex: "abc")
902** is considered a variable but a single-quoted string (ex: 'abc') is
903** a constant.
drhfef52082000-06-06 01:50:43 +0000904*/
danielk19774adee202004-05-08 08:23:19 +0000905int sqlite3ExprIsConstant(Expr *p){
drh626a8792005-01-17 22:08:19 +0000906 int isConst = 1;
907 walkExprTree(p, exprNodeIsConstant, &isConst);
908 return isConst;
drhfef52082000-06-06 01:50:43 +0000909}
910
911/*
drheb55bd22005-06-30 17:04:21 +0000912** Walk an expression tree. Return 1 if the expression is constant
drh0a168372007-06-08 00:20:47 +0000913** that does no originate from the ON or USING clauses of a join.
914** Return 0 if it involves variables or function calls or terms from
915** an ON or USING clause.
916*/
917int sqlite3ExprIsConstantNotJoin(Expr *p){
918 int isConst = 3;
919 walkExprTree(p, exprNodeIsConstant, &isConst);
920 return isConst!=0;
921}
922
923/*
924** Walk an expression tree. Return 1 if the expression is constant
drheb55bd22005-06-30 17:04:21 +0000925** or a function call with constant arguments. Return and 0 if there
926** are any variables.
927**
928** For the purposes of this function, a double-quoted string (ex: "abc")
929** is considered a variable but a single-quoted string (ex: 'abc') is
930** a constant.
931*/
932int sqlite3ExprIsConstantOrFunction(Expr *p){
933 int isConst = 2;
934 walkExprTree(p, exprNodeIsConstant, &isConst);
935 return isConst!=0;
936}
937
938/*
drh73b211a2005-01-18 04:00:42 +0000939** If the expression p codes a constant integer that is small enough
drh202b2df2004-01-06 01:13:46 +0000940** to fit in a 32-bit integer, return 1 and put the value of the integer
941** in *pValue. If the expression is not an integer or if it is too big
942** to fit in a signed 32-bit integer, return 0 and leave *pValue unchanged.
drhe4de1fe2002-06-02 16:09:01 +0000943*/
danielk19774adee202004-05-08 08:23:19 +0000944int sqlite3ExprIsInteger(Expr *p, int *pValue){
drhe4de1fe2002-06-02 16:09:01 +0000945 switch( p->op ){
946 case TK_INTEGER: {
drh2646da72005-12-09 20:02:05 +0000947 if( sqlite3GetInt32((char*)p->token.z, pValue) ){
drh202b2df2004-01-06 01:13:46 +0000948 return 1;
949 }
950 break;
drhe4de1fe2002-06-02 16:09:01 +0000951 }
drh4b59ab52002-08-24 18:24:51 +0000952 case TK_UPLUS: {
danielk19774adee202004-05-08 08:23:19 +0000953 return sqlite3ExprIsInteger(p->pLeft, pValue);
drh4b59ab52002-08-24 18:24:51 +0000954 }
drhe4de1fe2002-06-02 16:09:01 +0000955 case TK_UMINUS: {
956 int v;
danielk19774adee202004-05-08 08:23:19 +0000957 if( sqlite3ExprIsInteger(p->pLeft, &v) ){
drhe4de1fe2002-06-02 16:09:01 +0000958 *pValue = -v;
959 return 1;
960 }
961 break;
962 }
963 default: break;
964 }
965 return 0;
966}
967
968/*
drhc4a3c772001-04-04 11:48:57 +0000969** Return TRUE if the given string is a row-id column name.
970*/
danielk19774adee202004-05-08 08:23:19 +0000971int sqlite3IsRowid(const char *z){
972 if( sqlite3StrICmp(z, "_ROWID_")==0 ) return 1;
973 if( sqlite3StrICmp(z, "ROWID")==0 ) return 1;
974 if( sqlite3StrICmp(z, "OID")==0 ) return 1;
drhc4a3c772001-04-04 11:48:57 +0000975 return 0;
976}
977
978/*
drh8141f612004-01-25 22:44:58 +0000979** Given the name of a column of the form X.Y.Z or Y.Z or just Z, look up
980** that name in the set of source tables in pSrcList and make the pExpr
981** expression node refer back to that source column. The following changes
982** are made to pExpr:
983**
984** pExpr->iDb Set the index in db->aDb[] of the database holding
985** the table.
986** pExpr->iTable Set to the cursor number for the table obtained
987** from pSrcList.
988** pExpr->iColumn Set to the column number within the table.
drh8141f612004-01-25 22:44:58 +0000989** pExpr->op Set to TK_COLUMN.
990** pExpr->pLeft Any expression this points to is deleted
991** pExpr->pRight Any expression this points to is deleted.
992**
993** The pDbToken is the name of the database (the "X"). This value may be
994** NULL meaning that name is of the form Y.Z or Z. Any available database
995** can be used. The pTableToken is the name of the table (the "Y"). This
996** value can be NULL if pDbToken is also NULL. If pTableToken is NULL it
997** means that the form of the name is Z and that columns from any table
998** can be used.
999**
1000** If the name cannot be resolved unambiguously, leave an error message
1001** in pParse and return non-zero. Return zero on success.
1002*/
1003static int lookupName(
drhffe07b22005-11-03 00:41:17 +00001004 Parse *pParse, /* The parsing context */
drh8141f612004-01-25 22:44:58 +00001005 Token *pDbToken, /* Name of the database containing table, or NULL */
1006 Token *pTableToken, /* Name of table containing column, or NULL */
1007 Token *pColumnToken, /* Name of the column. */
drh626a8792005-01-17 22:08:19 +00001008 NameContext *pNC, /* The name context used to resolve the name */
drh8141f612004-01-25 22:44:58 +00001009 Expr *pExpr /* Make this EXPR node point to the selected column */
1010){
1011 char *zDb = 0; /* Name of the database. The "X" in X.Y.Z */
1012 char *zTab = 0; /* Name of the table. The "Y" in X.Y.Z or Y.Z */
1013 char *zCol = 0; /* Name of the column. The "Z" */
1014 int i, j; /* Loop counters */
1015 int cnt = 0; /* Number of matching column names */
1016 int cntTab = 0; /* Number of matching table names */
drh626a8792005-01-17 22:08:19 +00001017 sqlite3 *db = pParse->db; /* The database */
drh51669862004-12-18 18:40:26 +00001018 struct SrcList_item *pItem; /* Use for looping over pSrcList items */
1019 struct SrcList_item *pMatch = 0; /* The matching pSrcList item */
drh73b211a2005-01-18 04:00:42 +00001020 NameContext *pTopNC = pNC; /* First namecontext in the list */
drh728b5772007-09-18 15:55:07 +00001021 Schema *pSchema = 0; /* Schema of the expression */
drh8141f612004-01-25 22:44:58 +00001022
1023 assert( pColumnToken && pColumnToken->z ); /* The Z in X.Y.Z cannot be NULL */
drh17435752007-08-16 04:30:38 +00001024 zDb = sqlite3NameFromToken(db, pDbToken);
1025 zTab = sqlite3NameFromToken(db, pTableToken);
1026 zCol = sqlite3NameFromToken(db, pColumnToken);
1027 if( db->mallocFailed ){
danielk1977d5d56522005-03-16 12:15:20 +00001028 goto lookupname_end;
drh8141f612004-01-25 22:44:58 +00001029 }
drh8141f612004-01-25 22:44:58 +00001030
1031 pExpr->iTable = -1;
drh626a8792005-01-17 22:08:19 +00001032 while( pNC && cnt==0 ){
drhffe07b22005-11-03 00:41:17 +00001033 ExprList *pEList;
drh626a8792005-01-17 22:08:19 +00001034 SrcList *pSrcList = pNC->pSrcList;
drh8141f612004-01-25 22:44:58 +00001035
danielk1977b3bce662005-01-29 08:32:43 +00001036 if( pSrcList ){
1037 for(i=0, pItem=pSrcList->a; i<pSrcList->nSrc; i++, pItem++){
drh43617e92006-03-06 20:55:46 +00001038 Table *pTab;
1039 int iDb;
danielk1977b3bce662005-01-29 08:32:43 +00001040 Column *pCol;
1041
drh43617e92006-03-06 20:55:46 +00001042 pTab = pItem->pTab;
1043 assert( pTab!=0 );
1044 iDb = sqlite3SchemaToIndex(db, pTab->pSchema);
danielk1977b3bce662005-01-29 08:32:43 +00001045 assert( pTab->nCol>0 );
1046 if( zTab ){
1047 if( pItem->zAlias ){
1048 char *zTabName = pItem->zAlias;
1049 if( sqlite3StrICmp(zTabName, zTab)!=0 ) continue;
1050 }else{
1051 char *zTabName = pTab->zName;
1052 if( zTabName==0 || sqlite3StrICmp(zTabName, zTab)!=0 ) continue;
danielk1977da184232006-01-05 11:34:32 +00001053 if( zDb!=0 && sqlite3StrICmp(db->aDb[iDb].zName, zDb)!=0 ){
danielk1977b3bce662005-01-29 08:32:43 +00001054 continue;
1055 }
drh626a8792005-01-17 22:08:19 +00001056 }
drh8141f612004-01-25 22:44:58 +00001057 }
danielk1977b3bce662005-01-29 08:32:43 +00001058 if( 0==(cntTab++) ){
drh626a8792005-01-17 22:08:19 +00001059 pExpr->iTable = pItem->iCursor;
drh728b5772007-09-18 15:55:07 +00001060 pSchema = pTab->pSchema;
danielk1977b3bce662005-01-29 08:32:43 +00001061 pMatch = pItem;
1062 }
1063 for(j=0, pCol=pTab->aCol; j<pTab->nCol; j++, pCol++){
1064 if( sqlite3StrICmp(pCol->zName, zCol)==0 ){
danielk1977b3bf5562006-01-10 17:58:23 +00001065 const char *zColl = pTab->aCol[j].zColl;
drh873fac02005-06-06 17:11:46 +00001066 IdList *pUsing;
danielk1977b3bce662005-01-29 08:32:43 +00001067 cnt++;
1068 pExpr->iTable = pItem->iCursor;
1069 pMatch = pItem;
drh728b5772007-09-18 15:55:07 +00001070 pSchema = pTab->pSchema;
danielk1977b3bce662005-01-29 08:32:43 +00001071 /* Substitute the rowid (column -1) for the INTEGER PRIMARY KEY */
1072 pExpr->iColumn = j==pTab->iPKey ? -1 : j;
1073 pExpr->affinity = pTab->aCol[j].affinity;
drh8b4c40d2007-02-01 23:02:45 +00001074 if( (pExpr->flags & EP_ExpCollate)==0 ){
1075 pExpr->pColl = sqlite3FindCollSeq(db, ENC(db), zColl,-1, 0);
1076 }
drh61dfc312006-12-16 16:25:15 +00001077 if( i<pSrcList->nSrc-1 ){
1078 if( pItem[1].jointype & JT_NATURAL ){
1079 /* If this match occurred in the left table of a natural join,
1080 ** then skip the right table to avoid a duplicate match */
1081 pItem++;
1082 i++;
1083 }else if( (pUsing = pItem[1].pUsing)!=0 ){
1084 /* If this match occurs on a column that is in the USING clause
1085 ** of a join, skip the search of the right table of the join
1086 ** to avoid a duplicate match there. */
1087 int k;
1088 for(k=0; k<pUsing->nId; k++){
1089 if( sqlite3StrICmp(pUsing->a[k].zName, zCol)==0 ){
1090 pItem++;
1091 i++;
1092 break;
1093 }
drh873fac02005-06-06 17:11:46 +00001094 }
1095 }
1096 }
danielk1977b3bce662005-01-29 08:32:43 +00001097 break;
1098 }
drh8141f612004-01-25 22:44:58 +00001099 }
1100 }
1101 }
drh626a8792005-01-17 22:08:19 +00001102
1103#ifndef SQLITE_OMIT_TRIGGER
1104 /* If we have not already resolved the name, then maybe
1105 ** it is a new.* or old.* trigger argument reference
1106 */
1107 if( zDb==0 && zTab!=0 && cnt==0 && pParse->trigStack!=0 ){
1108 TriggerStack *pTriggerStack = pParse->trigStack;
1109 Table *pTab = 0;
danielk19778f2c54e2008-01-01 19:02:09 +00001110 u32 *piColMask;
drh626a8792005-01-17 22:08:19 +00001111 if( pTriggerStack->newIdx != -1 && sqlite3StrICmp("new", zTab) == 0 ){
1112 pExpr->iTable = pTriggerStack->newIdx;
1113 assert( pTriggerStack->pTab );
1114 pTab = pTriggerStack->pTab;
danielk19778f2c54e2008-01-01 19:02:09 +00001115 piColMask = &(pTriggerStack->newColMask);
drh626a8792005-01-17 22:08:19 +00001116 }else if( pTriggerStack->oldIdx != -1 && sqlite3StrICmp("old", zTab)==0 ){
1117 pExpr->iTable = pTriggerStack->oldIdx;
1118 assert( pTriggerStack->pTab );
1119 pTab = pTriggerStack->pTab;
danielk19778f2c54e2008-01-01 19:02:09 +00001120 piColMask = &(pTriggerStack->oldColMask);
drh626a8792005-01-17 22:08:19 +00001121 }
1122
1123 if( pTab ){
danielk1977f0113002006-01-24 12:09:17 +00001124 int iCol;
drh626a8792005-01-17 22:08:19 +00001125 Column *pCol = pTab->aCol;
1126
drh728b5772007-09-18 15:55:07 +00001127 pSchema = pTab->pSchema;
drh626a8792005-01-17 22:08:19 +00001128 cntTab++;
danielk1977f0113002006-01-24 12:09:17 +00001129 for(iCol=0; iCol < pTab->nCol; iCol++, pCol++) {
drh626a8792005-01-17 22:08:19 +00001130 if( sqlite3StrICmp(pCol->zName, zCol)==0 ){
danielk1977f0113002006-01-24 12:09:17 +00001131 const char *zColl = pTab->aCol[iCol].zColl;
drh626a8792005-01-17 22:08:19 +00001132 cnt++;
danielk1977f0113002006-01-24 12:09:17 +00001133 pExpr->iColumn = iCol==pTab->iPKey ? -1 : iCol;
1134 pExpr->affinity = pTab->aCol[iCol].affinity;
drh8b4c40d2007-02-01 23:02:45 +00001135 if( (pExpr->flags & EP_ExpCollate)==0 ){
1136 pExpr->pColl = sqlite3FindCollSeq(db, ENC(db), zColl,-1, 0);
1137 }
danielk1977aee18ef2005-03-09 12:26:50 +00001138 pExpr->pTab = pTab;
danielk19778f2c54e2008-01-01 19:02:09 +00001139 if( iCol>=0 ){
1140 *piColMask |= ((u32)1<<iCol) | (iCol>=32?0xffffffff:0);
1141 }
drh626a8792005-01-17 22:08:19 +00001142 break;
1143 }
1144 }
1145 }
1146 }
drhb7f91642004-10-31 02:22:47 +00001147#endif /* !defined(SQLITE_OMIT_TRIGGER) */
drh8141f612004-01-25 22:44:58 +00001148
drh626a8792005-01-17 22:08:19 +00001149 /*
1150 ** Perhaps the name is a reference to the ROWID
1151 */
1152 if( cnt==0 && cntTab==1 && sqlite3IsRowid(zCol) ){
1153 cnt = 1;
1154 pExpr->iColumn = -1;
drh8a512562005-11-14 22:29:05 +00001155 pExpr->affinity = SQLITE_AFF_INTEGER;
drh626a8792005-01-17 22:08:19 +00001156 }
drh8141f612004-01-25 22:44:58 +00001157
drh626a8792005-01-17 22:08:19 +00001158 /*
1159 ** If the input is of the form Z (not Y.Z or X.Y.Z) then the name Z
1160 ** might refer to an result-set alias. This happens, for example, when
1161 ** we are resolving names in the WHERE clause of the following command:
1162 **
1163 ** SELECT a+b AS x FROM table WHERE x<10;
1164 **
1165 ** In cases like this, replace pExpr with a copy of the expression that
1166 ** forms the result set entry ("a+b" in the example) and return immediately.
1167 ** Note that the expression in the result set should have already been
1168 ** resolved by the time the WHERE clause is resolved.
1169 */
drhffe07b22005-11-03 00:41:17 +00001170 if( cnt==0 && (pEList = pNC->pEList)!=0 && zTab==0 ){
drh626a8792005-01-17 22:08:19 +00001171 for(j=0; j<pEList->nExpr; j++){
1172 char *zAs = pEList->a[j].zName;
1173 if( zAs!=0 && sqlite3StrICmp(zAs, zCol)==0 ){
drh36379e92007-07-23 22:51:15 +00001174 Expr *pDup, *pOrig;
drh626a8792005-01-17 22:08:19 +00001175 assert( pExpr->pLeft==0 && pExpr->pRight==0 );
drh4f07e5f2007-05-14 11:34:46 +00001176 assert( pExpr->pList==0 );
1177 assert( pExpr->pSelect==0 );
drh36379e92007-07-23 22:51:15 +00001178 pOrig = pEList->a[j].pExpr;
1179 if( !pNC->allowAgg && ExprHasProperty(pOrig, EP_Agg) ){
1180 sqlite3ErrorMsg(pParse, "misuse of aliased aggregate %s", zAs);
drh17435752007-08-16 04:30:38 +00001181 sqlite3_free(zCol);
drh36379e92007-07-23 22:51:15 +00001182 return 2;
1183 }
danielk19771e536952007-08-16 10:09:01 +00001184 pDup = sqlite3ExprDup(db, pOrig);
drh4f07e5f2007-05-14 11:34:46 +00001185 if( pExpr->flags & EP_ExpCollate ){
1186 pDup->pColl = pExpr->pColl;
1187 pDup->flags |= EP_ExpCollate;
1188 }
drh17435752007-08-16 04:30:38 +00001189 if( pExpr->span.dyn ) sqlite3_free((char*)pExpr->span.z);
1190 if( pExpr->token.dyn ) sqlite3_free((char*)pExpr->token.z);
drh4f07e5f2007-05-14 11:34:46 +00001191 memcpy(pExpr, pDup, sizeof(*pExpr));
drh17435752007-08-16 04:30:38 +00001192 sqlite3_free(pDup);
drh15ccce12005-05-23 15:06:39 +00001193 cnt = 1;
danielk1977c9cf6e32007-06-25 16:29:33 +00001194 pMatch = 0;
drh626a8792005-01-17 22:08:19 +00001195 assert( zTab==0 && zDb==0 );
drh15ccce12005-05-23 15:06:39 +00001196 goto lookupname_end_2;
drh626a8792005-01-17 22:08:19 +00001197 }
1198 }
1199 }
1200
1201 /* Advance to the next name context. The loop will exit when either
1202 ** we have a match (cnt>0) or when we run out of name contexts.
1203 */
1204 if( cnt==0 ){
1205 pNC = pNC->pNext;
1206 }
drh8141f612004-01-25 22:44:58 +00001207 }
1208
1209 /*
1210 ** If X and Y are NULL (in other words if only the column name Z is
1211 ** supplied) and the value of Z is enclosed in double-quotes, then
1212 ** Z is a string literal if it doesn't match any column names. In that
1213 ** case, we need to return right away and not make any changes to
1214 ** pExpr.
drh15ccce12005-05-23 15:06:39 +00001215 **
1216 ** Because no reference was made to outer contexts, the pNC->nRef
1217 ** fields are not changed in any context.
drh8141f612004-01-25 22:44:58 +00001218 */
1219 if( cnt==0 && zTab==0 && pColumnToken->z[0]=='"' ){
drh17435752007-08-16 04:30:38 +00001220 sqlite3_free(zCol);
drh8141f612004-01-25 22:44:58 +00001221 return 0;
1222 }
1223
1224 /*
1225 ** cnt==0 means there was not match. cnt>1 means there were two or
1226 ** more matches. Either way, we have an error.
1227 */
1228 if( cnt!=1 ){
1229 char *z = 0;
1230 char *zErr;
1231 zErr = cnt==0 ? "no such column: %s" : "ambiguous column name: %s";
1232 if( zDb ){
drhf93339d2006-01-03 15:16:26 +00001233 sqlite3SetString(&z, zDb, ".", zTab, ".", zCol, (char*)0);
drh8141f612004-01-25 22:44:58 +00001234 }else if( zTab ){
drhf93339d2006-01-03 15:16:26 +00001235 sqlite3SetString(&z, zTab, ".", zCol, (char*)0);
drh8141f612004-01-25 22:44:58 +00001236 }else{
drh17435752007-08-16 04:30:38 +00001237 z = sqlite3StrDup(zCol);
drh8141f612004-01-25 22:44:58 +00001238 }
danielk1977a1644fd2007-08-29 12:31:25 +00001239 if( z ){
1240 sqlite3ErrorMsg(pParse, zErr, z);
1241 sqlite3_free(z);
1242 pTopNC->nErr++;
1243 }else{
1244 db->mallocFailed = 1;
1245 }
drh8141f612004-01-25 22:44:58 +00001246 }
1247
drh51669862004-12-18 18:40:26 +00001248 /* If a column from a table in pSrcList is referenced, then record
1249 ** this fact in the pSrcList.a[].colUsed bitmask. Column 0 causes
1250 ** bit 0 to be set. Column 1 sets bit 1. And so forth. If the
1251 ** column number is greater than the number of bits in the bitmask
1252 ** then set the high-order bit of the bitmask.
1253 */
1254 if( pExpr->iColumn>=0 && pMatch!=0 ){
1255 int n = pExpr->iColumn;
1256 if( n>=sizeof(Bitmask)*8 ){
1257 n = sizeof(Bitmask)*8-1;
1258 }
1259 assert( pMatch->iCursor==pExpr->iTable );
drhca83ac52007-02-01 01:40:44 +00001260 pMatch->colUsed |= ((Bitmask)1)<<n;
drh51669862004-12-18 18:40:26 +00001261 }
1262
danielk1977d5d56522005-03-16 12:15:20 +00001263lookupname_end:
drh8141f612004-01-25 22:44:58 +00001264 /* Clean up and return
1265 */
drh17435752007-08-16 04:30:38 +00001266 sqlite3_free(zDb);
1267 sqlite3_free(zTab);
danielk19774adee202004-05-08 08:23:19 +00001268 sqlite3ExprDelete(pExpr->pLeft);
drh8141f612004-01-25 22:44:58 +00001269 pExpr->pLeft = 0;
danielk19774adee202004-05-08 08:23:19 +00001270 sqlite3ExprDelete(pExpr->pRight);
drh8141f612004-01-25 22:44:58 +00001271 pExpr->pRight = 0;
1272 pExpr->op = TK_COLUMN;
drh15ccce12005-05-23 15:06:39 +00001273lookupname_end_2:
drh17435752007-08-16 04:30:38 +00001274 sqlite3_free(zCol);
drh626a8792005-01-17 22:08:19 +00001275 if( cnt==1 ){
danielk1977b3bce662005-01-29 08:32:43 +00001276 assert( pNC!=0 );
drh728b5772007-09-18 15:55:07 +00001277 sqlite3AuthRead(pParse, pExpr, pSchema, pNC->pSrcList);
danielk1977aee18ef2005-03-09 12:26:50 +00001278 if( pMatch && !pMatch->pSelect ){
1279 pExpr->pTab = pMatch->pTab;
1280 }
drh15ccce12005-05-23 15:06:39 +00001281 /* Increment the nRef value on all name contexts from TopNC up to
1282 ** the point where the name matched. */
1283 for(;;){
1284 assert( pTopNC!=0 );
1285 pTopNC->nRef++;
1286 if( pTopNC==pNC ) break;
1287 pTopNC = pTopNC->pNext;
1288 }
1289 return 0;
1290 } else {
1291 return 1;
drh626a8792005-01-17 22:08:19 +00001292 }
drh8141f612004-01-25 22:44:58 +00001293}
1294
1295/*
drh626a8792005-01-17 22:08:19 +00001296** This routine is designed as an xFunc for walkExprTree().
1297**
drh73b211a2005-01-18 04:00:42 +00001298** Resolve symbolic names into TK_COLUMN operators for the current
drh626a8792005-01-17 22:08:19 +00001299** node in the expression tree. Return 0 to continue the search down
drh73b211a2005-01-18 04:00:42 +00001300** the tree or 2 to abort the tree walk.
1301**
1302** This routine also does error checking and name resolution for
1303** function names. The operator for aggregate functions is changed
1304** to TK_AGG_FUNCTION.
drh626a8792005-01-17 22:08:19 +00001305*/
1306static int nameResolverStep(void *pArg, Expr *pExpr){
1307 NameContext *pNC = (NameContext*)pArg;
drh626a8792005-01-17 22:08:19 +00001308 Parse *pParse;
drh626a8792005-01-17 22:08:19 +00001309
danielk1977b3bce662005-01-29 08:32:43 +00001310 if( pExpr==0 ) return 1;
drh626a8792005-01-17 22:08:19 +00001311 assert( pNC!=0 );
drh626a8792005-01-17 22:08:19 +00001312 pParse = pNC->pParse;
danielk1977b3bce662005-01-29 08:32:43 +00001313
drh626a8792005-01-17 22:08:19 +00001314 if( ExprHasAnyProperty(pExpr, EP_Resolved) ) return 1;
1315 ExprSetProperty(pExpr, EP_Resolved);
1316#ifndef NDEBUG
danielk1977f0113002006-01-24 12:09:17 +00001317 if( pNC->pSrcList && pNC->pSrcList->nAlloc>0 ){
1318 SrcList *pSrcList = pNC->pSrcList;
danielk1977940fac92005-01-23 22:41:37 +00001319 int i;
danielk1977f0113002006-01-24 12:09:17 +00001320 for(i=0; i<pNC->pSrcList->nSrc; i++){
drh626a8792005-01-17 22:08:19 +00001321 assert( pSrcList->a[i].iCursor>=0 && pSrcList->a[i].iCursor<pParse->nTab);
1322 }
1323 }
1324#endif
1325 switch( pExpr->op ){
1326 /* Double-quoted strings (ex: "abc") are used as identifiers if
1327 ** possible. Otherwise they remain as strings. Single-quoted
1328 ** strings (ex: 'abc') are always string literals.
1329 */
1330 case TK_STRING: {
1331 if( pExpr->token.z[0]=='\'' ) break;
1332 /* Fall thru into the TK_ID case if this is a double-quoted string */
1333 }
1334 /* A lone identifier is the name of a column.
1335 */
1336 case TK_ID: {
drh626a8792005-01-17 22:08:19 +00001337 lookupName(pParse, 0, 0, &pExpr->token, pNC, pExpr);
1338 return 1;
1339 }
1340
1341 /* A table name and column name: ID.ID
1342 ** Or a database, table and column: ID.ID.ID
1343 */
1344 case TK_DOT: {
1345 Token *pColumn;
1346 Token *pTable;
1347 Token *pDb;
1348 Expr *pRight;
1349
danielk1977b3bce662005-01-29 08:32:43 +00001350 /* if( pSrcList==0 ) break; */
drh626a8792005-01-17 22:08:19 +00001351 pRight = pExpr->pRight;
1352 if( pRight->op==TK_ID ){
1353 pDb = 0;
1354 pTable = &pExpr->pLeft->token;
1355 pColumn = &pRight->token;
1356 }else{
1357 assert( pRight->op==TK_DOT );
1358 pDb = &pExpr->pLeft->token;
1359 pTable = &pRight->pLeft->token;
1360 pColumn = &pRight->pRight->token;
1361 }
1362 lookupName(pParse, pDb, pTable, pColumn, pNC, pExpr);
1363 return 1;
1364 }
1365
1366 /* Resolve function names
1367 */
drhb71090f2005-05-23 17:26:51 +00001368 case TK_CONST_FUNC:
drh626a8792005-01-17 22:08:19 +00001369 case TK_FUNCTION: {
1370 ExprList *pList = pExpr->pList; /* The argument list */
1371 int n = pList ? pList->nExpr : 0; /* Number of arguments */
1372 int no_such_func = 0; /* True if no such function exists */
1373 int wrong_num_args = 0; /* True if wrong number of arguments */
1374 int is_agg = 0; /* True if is an aggregate function */
1375 int i;
drh5169bbc2006-08-24 14:59:45 +00001376 int auth; /* Authorization to use the function */
drh626a8792005-01-17 22:08:19 +00001377 int nId; /* Number of characters in function name */
1378 const char *zId; /* The function name. */
drh73b211a2005-01-18 04:00:42 +00001379 FuncDef *pDef; /* Information about the function */
danielk197714db2662006-01-09 16:12:04 +00001380 int enc = ENC(pParse->db); /* The database encoding */
drh626a8792005-01-17 22:08:19 +00001381
drh2646da72005-12-09 20:02:05 +00001382 zId = (char*)pExpr->token.z;
drhb71090f2005-05-23 17:26:51 +00001383 nId = pExpr->token.n;
drh626a8792005-01-17 22:08:19 +00001384 pDef = sqlite3FindFunction(pParse->db, zId, nId, n, enc, 0);
1385 if( pDef==0 ){
1386 pDef = sqlite3FindFunction(pParse->db, zId, nId, -1, enc, 0);
1387 if( pDef==0 ){
1388 no_such_func = 1;
1389 }else{
1390 wrong_num_args = 1;
1391 }
1392 }else{
1393 is_agg = pDef->xFunc==0;
1394 }
drh2fca7fe2006-11-23 11:59:13 +00001395#ifndef SQLITE_OMIT_AUTHORIZATION
drh5169bbc2006-08-24 14:59:45 +00001396 if( pDef ){
1397 auth = sqlite3AuthCheck(pParse, SQLITE_FUNCTION, 0, pDef->zName, 0);
1398 if( auth!=SQLITE_OK ){
1399 if( auth==SQLITE_DENY ){
1400 sqlite3ErrorMsg(pParse, "not authorized to use function: %s",
1401 pDef->zName);
1402 pNC->nErr++;
1403 }
1404 pExpr->op = TK_NULL;
1405 return 1;
1406 }
1407 }
drhb8b14212006-08-24 15:18:25 +00001408#endif
drh626a8792005-01-17 22:08:19 +00001409 if( is_agg && !pNC->allowAgg ){
1410 sqlite3ErrorMsg(pParse, "misuse of aggregate function %.*s()", nId,zId);
1411 pNC->nErr++;
1412 is_agg = 0;
1413 }else if( no_such_func ){
1414 sqlite3ErrorMsg(pParse, "no such function: %.*s", nId, zId);
1415 pNC->nErr++;
1416 }else if( wrong_num_args ){
1417 sqlite3ErrorMsg(pParse,"wrong number of arguments to function %.*s()",
1418 nId, zId);
1419 pNC->nErr++;
1420 }
1421 if( is_agg ){
1422 pExpr->op = TK_AGG_FUNCTION;
1423 pNC->hasAgg = 1;
1424 }
drh73b211a2005-01-18 04:00:42 +00001425 if( is_agg ) pNC->allowAgg = 0;
drh626a8792005-01-17 22:08:19 +00001426 for(i=0; pNC->nErr==0 && i<n; i++){
drh73b211a2005-01-18 04:00:42 +00001427 walkExprTree(pList->a[i].pExpr, nameResolverStep, pNC);
drh626a8792005-01-17 22:08:19 +00001428 }
drh73b211a2005-01-18 04:00:42 +00001429 if( is_agg ) pNC->allowAgg = 1;
drh626a8792005-01-17 22:08:19 +00001430 /* FIX ME: Compute pExpr->affinity based on the expected return
1431 ** type of the function
1432 */
1433 return is_agg;
1434 }
danielk1977b3bce662005-01-29 08:32:43 +00001435#ifndef SQLITE_OMIT_SUBQUERY
1436 case TK_SELECT:
1437 case TK_EXISTS:
1438#endif
1439 case TK_IN: {
1440 if( pExpr->pSelect ){
drh8a9f38f2005-11-05 15:07:55 +00001441 int nRef = pNC->nRef;
drh06f65412005-11-03 02:03:13 +00001442#ifndef SQLITE_OMIT_CHECK
1443 if( pNC->isCheck ){
1444 sqlite3ErrorMsg(pParse,"subqueries prohibited in CHECK constraints");
1445 }
1446#endif
danielk1977b3bce662005-01-29 08:32:43 +00001447 sqlite3SelectResolve(pParse, pExpr->pSelect, pNC);
1448 assert( pNC->nRef>=nRef );
1449 if( nRef!=pNC->nRef ){
1450 ExprSetProperty(pExpr, EP_VarSelect);
1451 }
1452 }
drh4284fb02005-11-03 12:33:28 +00001453 break;
danielk1977b3bce662005-01-29 08:32:43 +00001454 }
drh4284fb02005-11-03 12:33:28 +00001455#ifndef SQLITE_OMIT_CHECK
1456 case TK_VARIABLE: {
1457 if( pNC->isCheck ){
1458 sqlite3ErrorMsg(pParse,"parameters prohibited in CHECK constraints");
1459 }
1460 break;
1461 }
1462#endif
drh626a8792005-01-17 22:08:19 +00001463 }
1464 return 0;
1465}
1466
1467/*
drhcce7d172000-05-31 15:34:51 +00001468** This routine walks an expression tree and resolves references to
drh967e8b72000-06-21 13:59:10 +00001469** table columns. Nodes of the form ID.ID or ID resolve into an
drhaacc5432002-01-06 17:07:40 +00001470** index to the table in the table list and a column offset. The
1471** Expr.opcode for such nodes is changed to TK_COLUMN. The Expr.iTable
1472** value is changed to the index of the referenced table in pTabList
drh832508b2002-03-02 17:04:07 +00001473** plus the "base" value. The base value will ultimately become the
drhaacc5432002-01-06 17:07:40 +00001474** VDBE cursor number for a cursor that is pointing into the referenced
1475** table. The Expr.iColumn value is changed to the index of the column
1476** of the referenced table. The Expr.iColumn value for the special
1477** ROWID column is -1. Any INTEGER PRIMARY KEY column is tried as an
1478** alias for ROWID.
drh19a775c2000-06-05 18:54:46 +00001479**
drh626a8792005-01-17 22:08:19 +00001480** Also resolve function names and check the functions for proper
1481** usage. Make sure all function names are recognized and all functions
1482** have the correct number of arguments. Leave an error message
1483** in pParse->zErrMsg if anything is amiss. Return the number of errors.
1484**
drh73b211a2005-01-18 04:00:42 +00001485** If the expression contains aggregate functions then set the EP_Agg
1486** property on the expression.
drh626a8792005-01-17 22:08:19 +00001487*/
danielk1977fc976062007-05-10 10:46:56 +00001488int sqlite3ExprResolveNames(
danielk1977b3bce662005-01-29 08:32:43 +00001489 NameContext *pNC, /* Namespace to resolve expressions in. */
1490 Expr *pExpr /* The expression to be analyzed. */
drh626a8792005-01-17 22:08:19 +00001491){
drh13449892005-09-07 21:22:45 +00001492 int savedHasAgg;
drh73b211a2005-01-18 04:00:42 +00001493 if( pExpr==0 ) return 0;
danielk1977e6a58a42007-08-31 17:42:48 +00001494#if defined(SQLITE_TEST) || SQLITE_MAX_EXPR_DEPTH>0
danielk1977fc976062007-05-10 10:46:56 +00001495 if( (pExpr->nHeight+pNC->pParse->nHeight)>SQLITE_MAX_EXPR_DEPTH ){
1496 sqlite3ErrorMsg(pNC->pParse,
1497 "Expression tree is too large (maximum depth %d)",
1498 SQLITE_MAX_EXPR_DEPTH
1499 );
1500 return 1;
1501 }
1502 pNC->pParse->nHeight += pExpr->nHeight;
1503#endif
drh13449892005-09-07 21:22:45 +00001504 savedHasAgg = pNC->hasAgg;
1505 pNC->hasAgg = 0;
danielk1977b3bce662005-01-29 08:32:43 +00001506 walkExprTree(pExpr, nameResolverStep, pNC);
danielk1977e6a58a42007-08-31 17:42:48 +00001507#if defined(SQLITE_TEST) || SQLITE_MAX_EXPR_DEPTH>0
danielk1977fc976062007-05-10 10:46:56 +00001508 pNC->pParse->nHeight -= pExpr->nHeight;
1509#endif
danielk1977b3bce662005-01-29 08:32:43 +00001510 if( pNC->nErr>0 ){
drh73b211a2005-01-18 04:00:42 +00001511 ExprSetProperty(pExpr, EP_Error);
drh73b211a2005-01-18 04:00:42 +00001512 }
drh13449892005-09-07 21:22:45 +00001513 if( pNC->hasAgg ){
1514 ExprSetProperty(pExpr, EP_Agg);
1515 }else if( savedHasAgg ){
1516 pNC->hasAgg = 1;
1517 }
drh73b211a2005-01-18 04:00:42 +00001518 return ExprHasProperty(pExpr, EP_Error);
drh626a8792005-01-17 22:08:19 +00001519}
1520
drh1398ad32005-01-19 23:24:50 +00001521/*
1522** A pointer instance of this structure is used to pass information
1523** through walkExprTree into codeSubqueryStep().
1524*/
1525typedef struct QueryCoder QueryCoder;
1526struct QueryCoder {
1527 Parse *pParse; /* The parsing context */
1528 NameContext *pNC; /* Namespace of first enclosing query */
1529};
1530
danielk19779a96b662007-11-29 17:05:18 +00001531#ifdef SQLITE_TEST
1532 int sqlite3_enable_in_opt = 1;
1533#else
1534 #define sqlite3_enable_in_opt 1
1535#endif
1536
1537/*
1538** This function is used by the implementation of the IN (...) operator.
1539** It's job is to find or create a b-tree structure that may be used
1540** either to test for membership of the (...) set or to iterate through
drh85b623f2007-12-13 21:54:09 +00001541** its members, skipping duplicates.
danielk19779a96b662007-11-29 17:05:18 +00001542**
1543** The cursor opened on the structure (database table, database index
1544** or ephermal table) is stored in pX->iTable before this function returns.
1545** The returned value indicates the structure type, as follows:
1546**
1547** IN_INDEX_ROWID - The cursor was opened on a database table.
1548** IN_INDEX_INDEX - The cursor was opened on a database indec.
1549** IN_INDEX_EPH - The cursor was opened on a specially created and
1550** populated epheremal table.
1551**
1552** An existing structure may only be used if the SELECT is of the simple
1553** form:
1554**
1555** SELECT <column> FROM <table>
1556**
1557** If the mustBeUnique parameter is false, the structure will be used
1558** for fast set membership tests. In this case an epheremal table must
1559** be used unless <column> is an INTEGER PRIMARY KEY or an index can
drh85b623f2007-12-13 21:54:09 +00001560** be found with <column> as its left-most column.
danielk19779a96b662007-11-29 17:05:18 +00001561**
1562** If mustBeUnique is true, then the structure will be used to iterate
1563** through the set members, skipping any duplicates. In this case an
1564** epheremal table must be used unless the selected <column> is guaranteed
1565** to be unique - either because it is an INTEGER PRIMARY KEY or it
1566** is unique by virtue of a constraint or implicit index.
1567*/
danielk1977284f4ac2007-12-10 05:03:46 +00001568#ifndef SQLITE_OMIT_SUBQUERY
danielk19779a96b662007-11-29 17:05:18 +00001569int sqlite3FindInIndex(Parse *pParse, Expr *pX, int mustBeUnique){
1570 Select *p;
1571 int eType = 0;
1572 int iTab = pParse->nTab++;
1573
1574 /* The follwing if(...) expression is true if the SELECT is of the
1575 ** simple form:
1576 **
1577 ** SELECT <column> FROM <table>
1578 **
1579 ** If this is the case, it may be possible to use an existing table
1580 ** or index instead of generating an epheremal table.
1581 */
1582 if( sqlite3_enable_in_opt
1583 && (p=pX->pSelect) && !p->pPrior
1584 && !p->isDistinct && !p->isAgg && !p->pGroupBy
1585 && p->pSrc && p->pSrc->nSrc==1 && !p->pSrc->a[0].pSelect
1586 && !p->pSrc->a[0].pTab->pSelect
1587 && p->pEList->nExpr==1 && p->pEList->a[0].pExpr->op==TK_COLUMN
1588 && !p->pLimit && !p->pOffset && !p->pWhere
1589 ){
1590 sqlite3 *db = pParse->db;
1591 Index *pIdx;
1592 Expr *pExpr = p->pEList->a[0].pExpr;
1593 int iCol = pExpr->iColumn;
1594 Vdbe *v = sqlite3GetVdbe(pParse);
1595
1596 /* This function is only called from two places. In both cases the vdbe
1597 ** has already been allocated. So assume sqlite3GetVdbe() is always
1598 ** successful here.
1599 */
1600 assert(v);
1601 if( iCol<0 ){
drh0a07c102008-01-03 18:03:08 +00001602 int iMem = ++pParse->nMem;
danielk19779a96b662007-11-29 17:05:18 +00001603 int iAddr;
1604 Table *pTab = p->pSrc->a[0].pTab;
1605 int iDb = sqlite3SchemaToIndex(db, pTab->pSchema);
1606 sqlite3VdbeUsesBtree(v, iDb);
1607
drhb1fdb2a2008-01-05 04:06:03 +00001608 sqlite3VdbeAddOp1(v, OP_SCopy, iMem);
drh66a51672008-01-03 00:01:23 +00001609 iAddr = sqlite3VdbeAddOp2(v, OP_If, 0, iMem);
drh4c583122008-01-04 22:01:03 +00001610 sqlite3VdbeAddOp2(v, OP_Integer, 1, iMem);
danielk19779a96b662007-11-29 17:05:18 +00001611
1612 sqlite3OpenTable(pParse, iTab, iDb, pTab, OP_OpenRead);
1613 eType = IN_INDEX_ROWID;
1614
1615 sqlite3VdbeJumpHere(v, iAddr);
1616 }else{
1617 /* The collation sequence used by the comparison. If an index is to
1618 ** be used in place of a temp-table, it must be ordered according
1619 ** to this collation sequence.
1620 */
1621 CollSeq *pReq = sqlite3BinaryCompareCollSeq(pParse, pX->pLeft, pExpr);
1622
1623 /* Check that the affinity that will be used to perform the
1624 ** comparison is the same as the affinity of the column. If
1625 ** it is not, it is not possible to use any index.
1626 */
1627 Table *pTab = p->pSrc->a[0].pTab;
1628 char aff = comparisonAffinity(pX);
1629 int affinity_ok = (pTab->aCol[iCol].affinity==aff||aff==SQLITE_AFF_NONE);
1630
1631 for(pIdx=pTab->pIndex; pIdx && eType==0 && affinity_ok; pIdx=pIdx->pNext){
1632 if( (pIdx->aiColumn[0]==iCol)
1633 && (pReq==sqlite3FindCollSeq(db, ENC(db), pIdx->azColl[0], -1, 0))
1634 && (!mustBeUnique || (pIdx->nColumn==1 && pIdx->onError!=OE_None))
1635 ){
1636 int iDb;
drh0a07c102008-01-03 18:03:08 +00001637 int iMem = ++pParse->nMem;
danielk19779a96b662007-11-29 17:05:18 +00001638 int iAddr;
1639 char *pKey;
1640
1641 pKey = (char *)sqlite3IndexKeyinfo(pParse, pIdx);
1642 iDb = sqlite3SchemaToIndex(db, pIdx->pSchema);
1643 sqlite3VdbeUsesBtree(v, iDb);
1644
drhb1fdb2a2008-01-05 04:06:03 +00001645 sqlite3VdbeAddOp1(v, OP_SCopy, iMem);
drh66a51672008-01-03 00:01:23 +00001646 iAddr = sqlite3VdbeAddOp2(v, OP_If, 0, iMem);
drh4c583122008-01-04 22:01:03 +00001647 sqlite3VdbeAddOp2(v, OP_Integer, 1, iMem);
danielk19779a96b662007-11-29 17:05:18 +00001648
danielk1977207872a2008-01-03 07:54:23 +00001649 sqlite3VdbeAddOp4(v, OP_OpenRead, iTab, pIdx->tnum, iDb,
drh66a51672008-01-03 00:01:23 +00001650 pKey,P4_KEYINFO_HANDOFF);
danielk1977207872a2008-01-03 07:54:23 +00001651 VdbeComment((v, "%s", pIdx->zName));
danielk19779a96b662007-11-29 17:05:18 +00001652 eType = IN_INDEX_INDEX;
drh66a51672008-01-03 00:01:23 +00001653 sqlite3VdbeAddOp2(v, OP_SetNumColumns, iTab, pIdx->nColumn);
danielk19779a96b662007-11-29 17:05:18 +00001654
1655 sqlite3VdbeJumpHere(v, iAddr);
1656 }
1657 }
1658 }
1659 }
1660
1661 if( eType==0 ){
1662 sqlite3CodeSubselect(pParse, pX);
1663 eType = IN_INDEX_EPH;
1664 }else{
1665 pX->iTable = iTab;
1666 }
1667 return eType;
1668}
danielk1977284f4ac2007-12-10 05:03:46 +00001669#endif
drh626a8792005-01-17 22:08:19 +00001670
1671/*
drh9cbe6352005-11-29 03:13:21 +00001672** Generate code for scalar subqueries used as an expression
1673** and IN operators. Examples:
drh626a8792005-01-17 22:08:19 +00001674**
drh9cbe6352005-11-29 03:13:21 +00001675** (SELECT a FROM b) -- subquery
1676** EXISTS (SELECT a FROM b) -- EXISTS subquery
1677** x IN (4,5,11) -- IN operator with list on right-hand side
1678** x IN (SELECT a FROM b) -- IN operator with subquery on the right
drhfef52082000-06-06 01:50:43 +00001679**
drh9cbe6352005-11-29 03:13:21 +00001680** The pExpr parameter describes the expression that contains the IN
1681** operator or subquery.
drhcce7d172000-05-31 15:34:51 +00001682*/
drh51522cd2005-01-20 13:36:19 +00001683#ifndef SQLITE_OMIT_SUBQUERY
danielk1977b3bce662005-01-29 08:32:43 +00001684void sqlite3CodeSubselect(Parse *pParse, Expr *pExpr){
drh57dbd7b2005-07-08 18:25:26 +00001685 int testAddr = 0; /* One-time test address */
danielk1977b3bce662005-01-29 08:32:43 +00001686 Vdbe *v = sqlite3GetVdbe(pParse);
1687 if( v==0 ) return;
1688
danielk1977fc976062007-05-10 10:46:56 +00001689
drh57dbd7b2005-07-08 18:25:26 +00001690 /* This code must be run in its entirety every time it is encountered
1691 ** if any of the following is true:
1692 **
1693 ** * The right-hand side is a correlated subquery
1694 ** * The right-hand side is an expression list containing variables
1695 ** * We are inside a trigger
1696 **
1697 ** If all of the above are false, then we can run this code just once
1698 ** save the results, and reuse the same result on subsequent invocations.
danielk1977b3bce662005-01-29 08:32:43 +00001699 */
1700 if( !ExprHasAnyProperty(pExpr, EP_VarSelect) && !pParse->trigStack ){
drh0a07c102008-01-03 18:03:08 +00001701 int mem = ++pParse->nMem;
drhb1fdb2a2008-01-05 04:06:03 +00001702 sqlite3VdbeAddOp1(v, OP_SCopy, mem);
drh66a51672008-01-03 00:01:23 +00001703 testAddr = sqlite3VdbeAddOp0(v, OP_If);
drh17435752007-08-16 04:30:38 +00001704 assert( testAddr>0 || pParse->db->mallocFailed );
drh4c583122008-01-04 22:01:03 +00001705 sqlite3VdbeAddOp2(v, OP_Integer, 1, mem);
danielk1977b3bce662005-01-29 08:32:43 +00001706 }
1707
drhcce7d172000-05-31 15:34:51 +00001708 switch( pExpr->op ){
drhfef52082000-06-06 01:50:43 +00001709 case TK_IN: {
danielk1977e014a832004-05-17 10:48:57 +00001710 char affinity;
drhd3d39e92004-05-20 22:16:29 +00001711 KeyInfo keyInfo;
drhb9bb7c12006-06-11 23:41:55 +00001712 int addr; /* Address of OP_OpenEphemeral instruction */
drhd3d39e92004-05-20 22:16:29 +00001713
danielk1977bf3b7212004-05-18 10:06:24 +00001714 affinity = sqlite3ExprAffinity(pExpr->pLeft);
danielk1977e014a832004-05-17 10:48:57 +00001715
1716 /* Whether this is an 'x IN(SELECT...)' or an 'x IN(<exprlist>)'
drh57dbd7b2005-07-08 18:25:26 +00001717 ** expression it is handled the same way. A virtual table is
danielk1977e014a832004-05-17 10:48:57 +00001718 ** filled with single-field index keys representing the results
1719 ** from the SELECT or the <exprlist>.
1720 **
1721 ** If the 'x' expression is a column value, or the SELECT...
1722 ** statement returns a column value, then the affinity of that
1723 ** column is used to build the index keys. If both 'x' and the
1724 ** SELECT... statement are columns, then numeric affinity is used
1725 ** if either column has NUMERIC or INTEGER affinity. If neither
1726 ** 'x' nor the SELECT... statement are columns, then numeric affinity
1727 ** is used.
1728 */
1729 pExpr->iTable = pParse->nTab++;
drh66a51672008-01-03 00:01:23 +00001730 addr = sqlite3VdbeAddOp1(v, OP_OpenEphemeral, pExpr->iTable);
drhd3d39e92004-05-20 22:16:29 +00001731 memset(&keyInfo, 0, sizeof(keyInfo));
1732 keyInfo.nField = 1;
drh66a51672008-01-03 00:01:23 +00001733 sqlite3VdbeAddOp2(v, OP_SetNumColumns, pExpr->iTable, 1);
danielk1977e014a832004-05-17 10:48:57 +00001734
drhfef52082000-06-06 01:50:43 +00001735 if( pExpr->pSelect ){
1736 /* Case 1: expr IN (SELECT ...)
1737 **
danielk1977e014a832004-05-17 10:48:57 +00001738 ** Generate code to write the results of the select into the temporary
1739 ** table allocated and opened above.
drhfef52082000-06-06 01:50:43 +00001740 */
drh1013c932008-01-06 00:25:21 +00001741 SelectDest dest;
drhbe5c89a2004-07-26 00:31:09 +00001742 ExprList *pEList;
drh1013c932008-01-06 00:25:21 +00001743
1744 sqlite3SelectDestInit(&dest, SRT_Set, pExpr->iTable);
1745 dest.affinity = (int)affinity;
danielk1977e014a832004-05-17 10:48:57 +00001746 assert( (pExpr->iTable&0x0000FFFF)==pExpr->iTable );
danielk19776c8c8ce2008-01-02 16:27:09 +00001747 if( sqlite3Select(pParse, pExpr->pSelect, &dest, 0, 0, 0, 0) ){
drh94ccde52007-04-13 16:06:32 +00001748 return;
1749 }
drhbe5c89a2004-07-26 00:31:09 +00001750 pEList = pExpr->pSelect->pEList;
1751 if( pEList && pEList->nExpr>0 ){
danielk1977bcbb04e2007-05-29 12:11:29 +00001752 keyInfo.aColl[0] = sqlite3BinaryCompareCollSeq(pParse, pExpr->pLeft,
drhbe5c89a2004-07-26 00:31:09 +00001753 pEList->a[0].pExpr);
danielk19770202b292004-06-09 09:55:16 +00001754 }
drhfef52082000-06-06 01:50:43 +00001755 }else if( pExpr->pList ){
1756 /* Case 2: expr IN (exprlist)
1757 **
drhfd131da2007-08-07 17:13:03 +00001758 ** For each expression, build an index key from the evaluation and
danielk1977e014a832004-05-17 10:48:57 +00001759 ** store it in the temporary table. If <expr> is a column, then use
1760 ** that columns affinity when building index keys. If <expr> is not
1761 ** a column, use numeric affinity.
drhfef52082000-06-06 01:50:43 +00001762 */
danielk1977e014a832004-05-17 10:48:57 +00001763 int i;
drh57dbd7b2005-07-08 18:25:26 +00001764 ExprList *pList = pExpr->pList;
1765 struct ExprList_item *pItem;
1766
danielk1977e014a832004-05-17 10:48:57 +00001767 if( !affinity ){
drh8159a352006-05-23 23:22:29 +00001768 affinity = SQLITE_AFF_NONE;
danielk1977e014a832004-05-17 10:48:57 +00001769 }
danielk19770202b292004-06-09 09:55:16 +00001770 keyInfo.aColl[0] = pExpr->pLeft->pColl;
danielk1977e014a832004-05-17 10:48:57 +00001771
1772 /* Loop through each expression in <exprlist>. */
drh57dbd7b2005-07-08 18:25:26 +00001773 for(i=pList->nExpr, pItem=pList->a; i>0; i--, pItem++){
1774 Expr *pE2 = pItem->pExpr;
danielk1977e014a832004-05-17 10:48:57 +00001775
drh57dbd7b2005-07-08 18:25:26 +00001776 /* If the expression is not constant then we will need to
1777 ** disable the test that was generated above that makes sure
1778 ** this code only executes once. Because for a non-constant
1779 ** expression we need to rerun this code each time.
1780 */
drh6c30be82005-07-29 15:10:17 +00001781 if( testAddr>0 && !sqlite3ExprIsConstant(pE2) ){
drhf8875402006-03-17 13:56:34 +00001782 sqlite3VdbeChangeToNoop(v, testAddr-1, 3);
drh57dbd7b2005-07-08 18:25:26 +00001783 testAddr = 0;
drh4794b982000-06-06 13:54:14 +00001784 }
danielk1977e014a832004-05-17 10:48:57 +00001785
1786 /* Evaluate the expression and insert it into the temp table */
drh389a1ad2008-01-03 23:44:53 +00001787 sqlite3ExprCode(pParse, pE2, 0);
drh66a51672008-01-03 00:01:23 +00001788 sqlite3VdbeAddOp4(v, OP_MakeRecord, 1, 0, 0, &affinity, 1);
1789 sqlite3VdbeAddOp1(v, OP_IdxInsert, pExpr->iTable);
drhfef52082000-06-06 01:50:43 +00001790 }
1791 }
drh66a51672008-01-03 00:01:23 +00001792 sqlite3VdbeChangeP4(v, addr, (void *)&keyInfo, P4_KEYINFO);
danielk1977b3bce662005-01-29 08:32:43 +00001793 break;
drhfef52082000-06-06 01:50:43 +00001794 }
1795
drh51522cd2005-01-20 13:36:19 +00001796 case TK_EXISTS:
drh19a775c2000-06-05 18:54:46 +00001797 case TK_SELECT: {
drhfef52082000-06-06 01:50:43 +00001798 /* This has to be a scalar SELECT. Generate code to put the
1799 ** value of this select in a memory cell and record the number
drh967e8b72000-06-21 13:59:10 +00001800 ** of the memory cell in iColumn.
drhfef52082000-06-06 01:50:43 +00001801 */
drh2646da72005-12-09 20:02:05 +00001802 static const Token one = { (u8*)"1", 0, 1 };
drh51522cd2005-01-20 13:36:19 +00001803 Select *pSel;
danielk19776c8c8ce2008-01-02 16:27:09 +00001804 SelectDest dest;
drh1398ad32005-01-19 23:24:50 +00001805
drh51522cd2005-01-20 13:36:19 +00001806 pSel = pExpr->pSelect;
drh1013c932008-01-06 00:25:21 +00001807 sqlite3SelectDestInit(&dest, 0, ++pParse->nMem);
drh51522cd2005-01-20 13:36:19 +00001808 if( pExpr->op==TK_SELECT ){
danielk19776c8c8ce2008-01-02 16:27:09 +00001809 dest.eDest = SRT_Mem;
drh4c583122008-01-04 22:01:03 +00001810 sqlite3VdbeAddOp2(v, OP_Null, 0, dest.iParm);
drhd4e70eb2008-01-02 00:34:36 +00001811 VdbeComment((v, "Init subquery result"));
drh51522cd2005-01-20 13:36:19 +00001812 }else{
danielk19776c8c8ce2008-01-02 16:27:09 +00001813 dest.eDest = SRT_Exists;
drh4c583122008-01-04 22:01:03 +00001814 sqlite3VdbeAddOp2(v, OP_Integer, 0, dest.iParm);
drhd4e70eb2008-01-02 00:34:36 +00001815 VdbeComment((v, "Init EXISTS result"));
drh51522cd2005-01-20 13:36:19 +00001816 }
drhec7429a2005-10-06 16:53:14 +00001817 sqlite3ExprDelete(pSel->pLimit);
danielk1977a1644fd2007-08-29 12:31:25 +00001818 pSel->pLimit = sqlite3PExpr(pParse, TK_INTEGER, 0, 0, &one);
danielk19776c8c8ce2008-01-02 16:27:09 +00001819 if( sqlite3Select(pParse, pSel, &dest, 0, 0, 0, 0) ){
drh94ccde52007-04-13 16:06:32 +00001820 return;
1821 }
danielk19776c8c8ce2008-01-02 16:27:09 +00001822 pExpr->iColumn = dest.iParm;
danielk1977b3bce662005-01-29 08:32:43 +00001823 break;
drhcce7d172000-05-31 15:34:51 +00001824 }
1825 }
danielk1977b3bce662005-01-29 08:32:43 +00001826
drh57dbd7b2005-07-08 18:25:26 +00001827 if( testAddr ){
drhd654be82005-09-20 17:42:23 +00001828 sqlite3VdbeJumpHere(v, testAddr);
danielk1977b3bce662005-01-29 08:32:43 +00001829 }
danielk1977fc976062007-05-10 10:46:56 +00001830
danielk1977b3bce662005-01-29 08:32:43 +00001831 return;
drhcce7d172000-05-31 15:34:51 +00001832}
drh51522cd2005-01-20 13:36:19 +00001833#endif /* SQLITE_OMIT_SUBQUERY */
drhcce7d172000-05-31 15:34:51 +00001834
drhcce7d172000-05-31 15:34:51 +00001835/*
drh598f1342007-10-23 15:39:45 +00001836** Duplicate an 8-byte value
1837*/
1838static char *dup8bytes(Vdbe *v, const char *in){
1839 char *out = sqlite3DbMallocRaw(sqlite3VdbeDb(v), 8);
1840 if( out ){
1841 memcpy(out, in, 8);
1842 }
1843 return out;
1844}
1845
1846/*
1847** Generate an instruction that will put the floating point
1848** value described by z[0..n-1] on the stack.
drh0cf19ed2007-10-23 18:55:48 +00001849**
1850** The z[] string will probably not be zero-terminated. But the
1851** z[n] character is guaranteed to be something that does not look
1852** like the continuation of the number.
drh598f1342007-10-23 15:39:45 +00001853*/
drh9de221d2008-01-05 06:51:30 +00001854static void codeReal(Vdbe *v, const char *z, int n, int negateFlag, int iMem){
drh598f1342007-10-23 15:39:45 +00001855 assert( z || v==0 || sqlite3VdbeDb(v)->mallocFailed );
1856 if( z ){
1857 double value;
1858 char *zV;
drh0cf19ed2007-10-23 18:55:48 +00001859 assert( !isdigit(z[n]) );
drh598f1342007-10-23 15:39:45 +00001860 sqlite3AtoF(z, &value);
1861 if( negateFlag ) value = -value;
1862 zV = dup8bytes(v, (char*)&value);
drh9de221d2008-01-05 06:51:30 +00001863 sqlite3VdbeAddOp4(v, OP_Real, 0, iMem, 0, zV, P4_REAL);
drh598f1342007-10-23 15:39:45 +00001864 }
1865}
1866
1867
1868/*
drhfec19aa2004-05-19 20:41:03 +00001869** Generate an instruction that will put the integer describe by
1870** text z[0..n-1] on the stack.
drh0cf19ed2007-10-23 18:55:48 +00001871**
1872** The z[] string will probably not be zero-terminated. But the
1873** z[n] character is guaranteed to be something that does not look
1874** like the continuation of the number.
drhfec19aa2004-05-19 20:41:03 +00001875*/
drh9de221d2008-01-05 06:51:30 +00001876static void codeInteger(Vdbe *v, const char *z, int n, int negFlag, int iMem){
drhabb6fca2007-08-16 12:24:01 +00001877 assert( z || v==0 || sqlite3VdbeDb(v)->mallocFailed );
danielk1977c9cf9012007-05-30 10:36:47 +00001878 if( z ){
1879 int i;
drh0cf19ed2007-10-23 18:55:48 +00001880 assert( !isdigit(z[n]) );
danielk1977c9cf9012007-05-30 10:36:47 +00001881 if( sqlite3GetInt32(z, &i) ){
drh9de221d2008-01-05 06:51:30 +00001882 if( negFlag ) i = -i;
1883 sqlite3VdbeAddOp2(v, OP_Integer, i, iMem);
1884 }else if( sqlite3FitsIn64Bits(z, negFlag) ){
drh598f1342007-10-23 15:39:45 +00001885 i64 value;
1886 char *zV;
1887 sqlite3Atoi64(z, &value);
drh9de221d2008-01-05 06:51:30 +00001888 if( negFlag ) value = -value;
drh598f1342007-10-23 15:39:45 +00001889 zV = dup8bytes(v, (char*)&value);
drh9de221d2008-01-05 06:51:30 +00001890 sqlite3VdbeAddOp4(v, OP_Int64, 0, iMem, 0, zV, P4_INT64);
danielk1977c9cf9012007-05-30 10:36:47 +00001891 }else{
drh9de221d2008-01-05 06:51:30 +00001892 codeReal(v, z, n, negFlag, iMem);
danielk1977c9cf9012007-05-30 10:36:47 +00001893 }
drhfec19aa2004-05-19 20:41:03 +00001894 }
1895}
1896
drh945498f2007-02-24 11:52:52 +00001897
1898/*
1899** Generate code that will extract the iColumn-th column from
drh2133d822008-01-03 18:44:59 +00001900** table pTab and store the column value in register iMem, or on
1901** the stack if iMem==0. There is an open cursor to pTab in
1902** iTable. If iColumn<0 then code is generated that extracts the rowid.
drh945498f2007-02-24 11:52:52 +00001903*/
drh2133d822008-01-03 18:44:59 +00001904void sqlite3ExprCodeGetColumn(
1905 Vdbe *v, /* The VM being created */
1906 Table *pTab, /* Description of the table we are reading from */
1907 int iColumn, /* Index of the table column */
1908 int iTable, /* The cursor pointing to the table */
1909 int iReg /* Store results here */
1910){
drh945498f2007-02-24 11:52:52 +00001911 if( iColumn<0 ){
1912 int op = (pTab && IsVirtual(pTab)) ? OP_VRowid : OP_Rowid;
drh2133d822008-01-03 18:44:59 +00001913 sqlite3VdbeAddOp2(v, op, iTable, iReg);
drh945498f2007-02-24 11:52:52 +00001914 }else if( pTab==0 ){
drh2133d822008-01-03 18:44:59 +00001915 sqlite3VdbeAddOp3(v, OP_Column, iTable, iColumn, iReg);
drh945498f2007-02-24 11:52:52 +00001916 }else{
1917 int op = IsVirtual(pTab) ? OP_VColumn : OP_Column;
drh2133d822008-01-03 18:44:59 +00001918 sqlite3VdbeAddOp3(v, op, iTable, iColumn, iReg);
drh945498f2007-02-24 11:52:52 +00001919 sqlite3ColumnDefault(v, pTab, iColumn);
1920#ifndef SQLITE_OMIT_FLOATING_POINT
1921 if( pTab->aCol[iColumn].affinity==SQLITE_AFF_REAL ){
drh2133d822008-01-03 18:44:59 +00001922 sqlite3VdbeAddOp1(v, OP_RealAffinity, iReg);
drh945498f2007-02-24 11:52:52 +00001923 }
1924#endif
1925 }
1926}
1927
drhfec19aa2004-05-19 20:41:03 +00001928/*
drhcce7d172000-05-31 15:34:51 +00001929** Generate code into the current Vdbe to evaluate the given
drh389a1ad2008-01-03 23:44:53 +00001930** expression and leaves the result in a register on on the stack.
1931**
1932** If the target register number is negative, allocate a new
1933** register to store the result. If the target register number
1934** is zero then push the result onto the stack. Return the target
1935** register number regardless.
drhf2bc0132004-10-04 13:19:23 +00001936**
1937** This code depends on the fact that certain token values (ex: TK_EQ)
1938** are the same as opcode values (ex: OP_Eq) that implement the corresponding
1939** operation. Special comments in vdbe.c and the mkopcodeh.awk script in
1940** the make process cause these values to align. Assert()s in the code
1941** below verify that the numbers are aligned correctly.
drhcce7d172000-05-31 15:34:51 +00001942*/
drh389a1ad2008-01-03 23:44:53 +00001943int sqlite3ExprCode(Parse *pParse, Expr *pExpr, int target){
drhcce7d172000-05-31 15:34:51 +00001944 Vdbe *v = pParse->pVdbe;
1945 int op;
drh389a1ad2008-01-03 23:44:53 +00001946 int inReg = 0;
drh9de221d2008-01-05 06:51:30 +00001947 int origTarget = target;
drhffe07b22005-11-03 00:41:17 +00001948
drh389a1ad2008-01-03 23:44:53 +00001949 assert( v!=0 || pParse->db->mallocFailed );
1950 if( v==0 ) return 0;
1951 if( target<0 ){
1952 target = ++pParse->nMem;
danielk19777977a172004-11-09 12:44:37 +00001953 }
drh389a1ad2008-01-03 23:44:53 +00001954
1955 if( pExpr==0 ){
1956 op = TK_NULL;
1957 }else{
1958 op = pExpr->op;
1959 }
drhf2bc0132004-10-04 13:19:23 +00001960 switch( op ){
drh13449892005-09-07 21:22:45 +00001961 case TK_AGG_COLUMN: {
1962 AggInfo *pAggInfo = pExpr->pAggInfo;
1963 struct AggInfo_col *pCol = &pAggInfo->aCol[pExpr->iAgg];
1964 if( !pAggInfo->directMode ){
drh9de221d2008-01-05 06:51:30 +00001965 assert( pCol->iMem>0 );
1966 inReg = pCol->iMem;
drh13449892005-09-07 21:22:45 +00001967 break;
1968 }else if( pAggInfo->useSortingIdx ){
drh389a1ad2008-01-03 23:44:53 +00001969 sqlite3VdbeAddOp3(v, OP_Column, pAggInfo->sortingIdx,
1970 pCol->iSorterColumn, target);
drh9de221d2008-01-05 06:51:30 +00001971 inReg = target;
drh13449892005-09-07 21:22:45 +00001972 break;
1973 }
1974 /* Otherwise, fall thru into the TK_COLUMN case */
1975 }
drh967e8b72000-06-21 13:59:10 +00001976 case TK_COLUMN: {
drhffe07b22005-11-03 00:41:17 +00001977 if( pExpr->iTable<0 ){
1978 /* This only happens when coding check constraints */
drhaa9b8962008-01-08 02:57:55 +00001979 assert( pParse->ckBase>0 );
1980 inReg = pExpr->iColumn + pParse->ckBase;
drhc4a3c772001-04-04 11:48:57 +00001981 }else{
drh2133d822008-01-03 18:44:59 +00001982 sqlite3ExprCodeGetColumn(v, pExpr->pTab,
drh389a1ad2008-01-03 23:44:53 +00001983 pExpr->iColumn, pExpr->iTable, target);
drh9de221d2008-01-05 06:51:30 +00001984 inReg = target;
drh22827922000-06-06 17:27:05 +00001985 }
drhcce7d172000-05-31 15:34:51 +00001986 break;
1987 }
1988 case TK_INTEGER: {
drh9de221d2008-01-05 06:51:30 +00001989 codeInteger(v, (char*)pExpr->token.z, pExpr->token.n, 0, target);
1990 inReg = target;
drhfec19aa2004-05-19 20:41:03 +00001991 break;
1992 }
drh598f1342007-10-23 15:39:45 +00001993 case TK_FLOAT: {
drh9de221d2008-01-05 06:51:30 +00001994 codeReal(v, (char*)pExpr->token.z, pExpr->token.n, 0, target);
1995 inReg = target;
drh598f1342007-10-23 15:39:45 +00001996 break;
1997 }
drhfec19aa2004-05-19 20:41:03 +00001998 case TK_STRING: {
danielk19771e536952007-08-16 10:09:01 +00001999 sqlite3DequoteExpr(pParse->db, pExpr);
drh9de221d2008-01-05 06:51:30 +00002000 sqlite3VdbeAddOp4(v,OP_String8, 0, target, 0,
drh66a51672008-01-03 00:01:23 +00002001 (char*)pExpr->token.z, pExpr->token.n);
drh9de221d2008-01-05 06:51:30 +00002002 inReg = target;
drhcce7d172000-05-31 15:34:51 +00002003 break;
2004 }
drhf0863fe2005-06-12 21:35:51 +00002005 case TK_NULL: {
drh9de221d2008-01-05 06:51:30 +00002006 sqlite3VdbeAddOp2(v, OP_Null, 0, target);
2007 inReg = target;
drhf0863fe2005-06-12 21:35:51 +00002008 break;
2009 }
danielk19775338a5f2005-01-20 13:03:10 +00002010#ifndef SQLITE_OMIT_BLOB_LITERAL
danielk1977c572ef72004-05-27 09:28:41 +00002011 case TK_BLOB: {
drh6c8c6ce2005-08-23 11:17:58 +00002012 int n;
2013 const char *z;
drhf2bc0132004-10-04 13:19:23 +00002014 assert( TK_BLOB==OP_HexBlob );
drh6c8c6ce2005-08-23 11:17:58 +00002015 n = pExpr->token.n - 3;
drh2646da72005-12-09 20:02:05 +00002016 z = (char*)pExpr->token.z + 2;
drh6c8c6ce2005-08-23 11:17:58 +00002017 assert( n>=0 );
2018 if( n==0 ){
2019 z = "";
2020 }
drh9de221d2008-01-05 06:51:30 +00002021 sqlite3VdbeAddOp4(v, op, 0, target, 0, z, n);
2022 inReg = target;
danielk1977c572ef72004-05-27 09:28:41 +00002023 break;
2024 }
danielk19775338a5f2005-01-20 13:03:10 +00002025#endif
drh50457892003-09-06 01:10:47 +00002026 case TK_VARIABLE: {
drh9de221d2008-01-05 06:51:30 +00002027 sqlite3VdbeAddOp2(v, OP_Variable, pExpr->iTable, target);
drh895d7472004-08-20 16:02:39 +00002028 if( pExpr->token.n>1 ){
drh66a51672008-01-03 00:01:23 +00002029 sqlite3VdbeChangeP4(v, -1, (char*)pExpr->token.z, pExpr->token.n);
drh895d7472004-08-20 16:02:39 +00002030 }
drh9de221d2008-01-05 06:51:30 +00002031 inReg = target;
drh50457892003-09-06 01:10:47 +00002032 break;
2033 }
drh4e0cff62004-11-05 05:10:28 +00002034 case TK_REGISTER: {
drh9de221d2008-01-05 06:51:30 +00002035 inReg = pExpr->iTable;
drh4e0cff62004-11-05 05:10:28 +00002036 break;
2037 }
drh487e2622005-06-25 18:42:14 +00002038#ifndef SQLITE_OMIT_CAST
2039 case TK_CAST: {
2040 /* Expressions of the form: CAST(pLeft AS token) */
danielk1977f0113002006-01-24 12:09:17 +00002041 int aff, to_op;
drh9de221d2008-01-05 06:51:30 +00002042 sqlite3ExprCode(pParse, pExpr->pLeft, target);
drh8a512562005-11-14 22:29:05 +00002043 aff = sqlite3AffinityType(&pExpr->token);
danielk1977f0113002006-01-24 12:09:17 +00002044 to_op = aff - SQLITE_AFF_TEXT + OP_ToText;
2045 assert( to_op==OP_ToText || aff!=SQLITE_AFF_TEXT );
2046 assert( to_op==OP_ToBlob || aff!=SQLITE_AFF_NONE );
2047 assert( to_op==OP_ToNumeric || aff!=SQLITE_AFF_NUMERIC );
2048 assert( to_op==OP_ToInt || aff!=SQLITE_AFF_INTEGER );
2049 assert( to_op==OP_ToReal || aff!=SQLITE_AFF_REAL );
drh9de221d2008-01-05 06:51:30 +00002050 sqlite3VdbeAddOp1(v, to_op, target);
drh9de221d2008-01-05 06:51:30 +00002051 inReg = target;
drh487e2622005-06-25 18:42:14 +00002052 break;
2053 }
2054#endif /* SQLITE_OMIT_CAST */
drhc9b84a12002-06-20 11:36:48 +00002055 case TK_LT:
2056 case TK_LE:
2057 case TK_GT:
2058 case TK_GE:
2059 case TK_NE:
2060 case TK_EQ: {
drhf2bc0132004-10-04 13:19:23 +00002061 assert( TK_LT==OP_Lt );
2062 assert( TK_LE==OP_Le );
2063 assert( TK_GT==OP_Gt );
2064 assert( TK_GE==OP_Ge );
2065 assert( TK_EQ==OP_Eq );
2066 assert( TK_NE==OP_Ne );
drh389a1ad2008-01-03 23:44:53 +00002067 sqlite3ExprCode(pParse, pExpr->pLeft, 0);
2068 sqlite3ExprCode(pParse, pExpr->pRight, 0);
drhbe5c89a2004-07-26 00:31:09 +00002069 codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, 0, 0);
danielk1977a37cdde2004-05-16 11:15:36 +00002070 break;
drhc9b84a12002-06-20 11:36:48 +00002071 }
drhcce7d172000-05-31 15:34:51 +00002072 case TK_AND:
2073 case TK_OR:
2074 case TK_PLUS:
2075 case TK_STAR:
2076 case TK_MINUS:
drhbf4133c2001-10-13 02:59:08 +00002077 case TK_REM:
2078 case TK_BITAND:
2079 case TK_BITOR:
drh17c40292004-07-21 02:53:29 +00002080 case TK_SLASH:
drhbf4133c2001-10-13 02:59:08 +00002081 case TK_LSHIFT:
drh855eb1c2004-08-31 13:45:11 +00002082 case TK_RSHIFT:
drh00400772000-06-16 20:51:26 +00002083 case TK_CONCAT: {
drh5b6afba2008-01-05 16:29:28 +00002084 int r1, r2;
drhf2bc0132004-10-04 13:19:23 +00002085 assert( TK_AND==OP_And );
2086 assert( TK_OR==OP_Or );
2087 assert( TK_PLUS==OP_Add );
2088 assert( TK_MINUS==OP_Subtract );
2089 assert( TK_REM==OP_Remainder );
2090 assert( TK_BITAND==OP_BitAnd );
2091 assert( TK_BITOR==OP_BitOr );
2092 assert( TK_SLASH==OP_Divide );
2093 assert( TK_LSHIFT==OP_ShiftLeft );
2094 assert( TK_RSHIFT==OP_ShiftRight );
2095 assert( TK_CONCAT==OP_Concat );
drhaa9b8962008-01-08 02:57:55 +00002096 r1 = sqlite3ExprCode(pParse, pExpr->pLeft, -1);
2097 r2 = sqlite3ExprCode(pParse, pExpr->pRight, -1);
drh5b6afba2008-01-05 16:29:28 +00002098 sqlite3VdbeAddOp3(v, op, r2, r1, target);
drh5b6afba2008-01-05 16:29:28 +00002099 inReg = target;
drh00400772000-06-16 20:51:26 +00002100 break;
2101 }
drhcce7d172000-05-31 15:34:51 +00002102 case TK_UMINUS: {
drhfec19aa2004-05-19 20:41:03 +00002103 Expr *pLeft = pExpr->pLeft;
2104 assert( pLeft );
2105 if( pLeft->op==TK_FLOAT || pLeft->op==TK_INTEGER ){
2106 Token *p = &pLeft->token;
drhfec19aa2004-05-19 20:41:03 +00002107 if( pLeft->op==TK_FLOAT ){
drh9de221d2008-01-05 06:51:30 +00002108 codeReal(v, (char*)p->z, p->n, 1, target);
drhe6840902002-03-06 03:08:25 +00002109 }else{
drh9de221d2008-01-05 06:51:30 +00002110 codeInteger(v, (char*)p->z, p->n, 1, target);
drhe6840902002-03-06 03:08:25 +00002111 }
drh9de221d2008-01-05 06:51:30 +00002112 inReg = target;
drh6e142f52000-06-08 13:36:40 +00002113 break;
2114 }
drh1ccde152000-06-17 13:12:39 +00002115 /* Fall through into TK_NOT */
drh6e142f52000-06-08 13:36:40 +00002116 }
drhbf4133c2001-10-13 02:59:08 +00002117 case TK_BITNOT:
drh6e142f52000-06-08 13:36:40 +00002118 case TK_NOT: {
drhf2bc0132004-10-04 13:19:23 +00002119 assert( TK_BITNOT==OP_BitNot );
2120 assert( TK_NOT==OP_Not );
drh389a1ad2008-01-03 23:44:53 +00002121 sqlite3ExprCode(pParse, pExpr->pLeft, 0);
drh66a51672008-01-03 00:01:23 +00002122 sqlite3VdbeAddOp0(v, op);
drhcce7d172000-05-31 15:34:51 +00002123 break;
2124 }
2125 case TK_ISNULL:
2126 case TK_NOTNULL: {
drh6a288a32008-01-07 19:20:24 +00002127 int addr;
drhf2bc0132004-10-04 13:19:23 +00002128 assert( TK_ISNULL==OP_IsNull );
2129 assert( TK_NOTNULL==OP_NotNull );
drh9de221d2008-01-05 06:51:30 +00002130 sqlite3VdbeAddOp2(v, OP_Integer, 1, target);
drh389a1ad2008-01-03 23:44:53 +00002131 sqlite3ExprCode(pParse, pExpr->pLeft, 0);
drh6a288a32008-01-07 19:20:24 +00002132 addr = sqlite3VdbeAddOp0(v, op);
drh9de221d2008-01-05 06:51:30 +00002133 sqlite3VdbeAddOp2(v, OP_AddImm, target, -1);
drh6a288a32008-01-07 19:20:24 +00002134 sqlite3VdbeJumpHere(v, addr);
drh9de221d2008-01-05 06:51:30 +00002135 inReg = target;
drhf2bc0132004-10-04 13:19:23 +00002136 break;
drhcce7d172000-05-31 15:34:51 +00002137 }
drh22827922000-06-06 17:27:05 +00002138 case TK_AGG_FUNCTION: {
drh13449892005-09-07 21:22:45 +00002139 AggInfo *pInfo = pExpr->pAggInfo;
drh7e56e712005-11-16 12:53:15 +00002140 if( pInfo==0 ){
2141 sqlite3ErrorMsg(pParse, "misuse of aggregate: %T",
2142 &pExpr->span);
2143 }else{
drh9de221d2008-01-05 06:51:30 +00002144 inReg = pInfo->aFunc[pExpr->iAgg].iMem;
drh7e56e712005-11-16 12:53:15 +00002145 }
drh22827922000-06-06 17:27:05 +00002146 break;
2147 }
drhb71090f2005-05-23 17:26:51 +00002148 case TK_CONST_FUNC:
drhcce7d172000-05-31 15:34:51 +00002149 case TK_FUNCTION: {
drhcce7d172000-05-31 15:34:51 +00002150 ExprList *pList = pExpr->pList;
drh89425d52002-02-28 03:04:48 +00002151 int nExpr = pList ? pList->nExpr : 0;
drh0bce8352002-02-28 00:41:10 +00002152 FuncDef *pDef;
drh4b59ab52002-08-24 18:24:51 +00002153 int nId;
2154 const char *zId;
drh13449892005-09-07 21:22:45 +00002155 int constMask = 0;
danielk1977682f68b2004-06-05 10:22:17 +00002156 int i;
drh17435752007-08-16 04:30:38 +00002157 sqlite3 *db = pParse->db;
2158 u8 enc = ENC(db);
danielk1977dc1bdc42004-06-11 10:51:27 +00002159 CollSeq *pColl = 0;
drh17435752007-08-16 04:30:38 +00002160
drh2646da72005-12-09 20:02:05 +00002161 zId = (char*)pExpr->token.z;
drhb71090f2005-05-23 17:26:51 +00002162 nId = pExpr->token.n;
danielk1977d8123362004-06-12 09:25:12 +00002163 pDef = sqlite3FindFunction(pParse->db, zId, nId, nExpr, enc, 0);
drh0bce8352002-02-28 00:41:10 +00002164 assert( pDef!=0 );
drh389a1ad2008-01-03 23:44:53 +00002165 nExpr = sqlite3ExprCodeExprList(pParse, pList, 0);
drhb7f6f682006-07-08 17:06:43 +00002166#ifndef SQLITE_OMIT_VIRTUALTABLE
drha43fa222006-07-08 18:41:37 +00002167 /* Possibly overload the function if the first argument is
2168 ** a virtual table column.
2169 **
2170 ** For infix functions (LIKE, GLOB, REGEXP, and MATCH) use the
2171 ** second argument, not the first, as the argument to test to
2172 ** see if it is a column in a virtual table. This is done because
2173 ** the left operand of infix functions (the operand we want to
2174 ** control overloading) ends up as the second argument to the
2175 ** function. The expression "A glob B" is equivalent to
2176 ** "glob(B,A). We want to use the A in "A glob B" to test
2177 ** for function overloading. But we use the B term in "glob(B,A)".
2178 */
drh6a03a1c2006-07-08 18:34:59 +00002179 if( nExpr>=2 && (pExpr->flags & EP_InfixFunc) ){
drh17435752007-08-16 04:30:38 +00002180 pDef = sqlite3VtabOverloadFunction(db, pDef, nExpr, pList->a[1].pExpr);
drh6a03a1c2006-07-08 18:34:59 +00002181 }else if( nExpr>0 ){
drh17435752007-08-16 04:30:38 +00002182 pDef = sqlite3VtabOverloadFunction(db, pDef, nExpr, pList->a[0].pExpr);
drhb7f6f682006-07-08 17:06:43 +00002183 }
2184#endif
danielk1977682f68b2004-06-05 10:22:17 +00002185 for(i=0; i<nExpr && i<32; i++){
danielk1977d02eb1f2004-06-06 09:44:03 +00002186 if( sqlite3ExprIsConstant(pList->a[i].pExpr) ){
drh13449892005-09-07 21:22:45 +00002187 constMask |= (1<<i);
danielk1977d02eb1f2004-06-06 09:44:03 +00002188 }
danielk1977dc1bdc42004-06-11 10:51:27 +00002189 if( pDef->needCollSeq && !pColl ){
2190 pColl = sqlite3ExprCollSeq(pParse, pList->a[i].pExpr);
2191 }
2192 }
2193 if( pDef->needCollSeq ){
2194 if( !pColl ) pColl = pParse->db->pDfltColl;
drh66a51672008-01-03 00:01:23 +00002195 sqlite3VdbeAddOp4(v, OP_CollSeq, 0, 0, 0, (char *)pColl, P4_COLLSEQ);
danielk1977682f68b2004-06-05 10:22:17 +00002196 }
drh66a51672008-01-03 00:01:23 +00002197 sqlite3VdbeAddOp4(v, OP_Function, constMask, nExpr, 0,
2198 (char*)pDef, P4_FUNCDEF);
drhcce7d172000-05-31 15:34:51 +00002199 break;
2200 }
drhfe2093d2005-01-20 22:48:47 +00002201#ifndef SQLITE_OMIT_SUBQUERY
2202 case TK_EXISTS:
drh19a775c2000-06-05 18:54:46 +00002203 case TK_SELECT: {
drh41714d62006-03-02 04:44:23 +00002204 if( pExpr->iColumn==0 ){
2205 sqlite3CodeSubselect(pParse, pExpr);
2206 }
drh9de221d2008-01-05 06:51:30 +00002207 inReg = pExpr->iColumn;
2208 /* sqlite3VdbeAddOp1(v, OP_SCopy, pExpr->iColumn);
2209 VdbeComment((v, "load subquery result")); */
drh19a775c2000-06-05 18:54:46 +00002210 break;
2211 }
drhfef52082000-06-06 01:50:43 +00002212 case TK_IN: {
drh6a288a32008-01-07 19:20:24 +00002213 int j1, j2, j3, j4, j5;
drh94a11212004-09-25 13:12:14 +00002214 char affinity;
danielk19779a96b662007-11-29 17:05:18 +00002215 int eType;
danielk19779a96b662007-11-29 17:05:18 +00002216
2217 eType = sqlite3FindInIndex(pParse, pExpr, 0);
danielk1977e014a832004-05-17 10:48:57 +00002218
2219 /* Figure out the affinity to use to create a key from the results
2220 ** of the expression. affinityStr stores a static string suitable for
drh66a51672008-01-03 00:01:23 +00002221 ** P4 of OP_MakeRecord.
danielk1977e014a832004-05-17 10:48:57 +00002222 */
drh94a11212004-09-25 13:12:14 +00002223 affinity = comparisonAffinity(pExpr);
danielk1977e014a832004-05-17 10:48:57 +00002224
drh66a51672008-01-03 00:01:23 +00002225 sqlite3VdbeAddOp1(v, OP_Integer, 1);
danielk1977e014a832004-05-17 10:48:57 +00002226
2227 /* Code the <expr> from "<expr> IN (...)". The temporary table
2228 ** pExpr->iTable contains the values that make up the (...) set.
2229 */
drh389a1ad2008-01-03 23:44:53 +00002230 sqlite3ExprCode(pParse, pExpr->pLeft, 0);
drh6a288a32008-01-07 19:20:24 +00002231 sqlite3VdbeAddOp0(v, OP_SCopy);
2232 j1 = sqlite3VdbeAddOp0(v, OP_NotNull);
drh66a51672008-01-03 00:01:23 +00002233 sqlite3VdbeAddOp1(v, OP_Pop, 2);
2234 sqlite3VdbeAddOp0(v, OP_Null);
drh6a288a32008-01-07 19:20:24 +00002235 j2 = sqlite3VdbeAddOp0(v, OP_Goto);
2236 sqlite3VdbeJumpHere(v, j1);
danielk19779a96b662007-11-29 17:05:18 +00002237 if( eType==IN_INDEX_ROWID ){
drh6a288a32008-01-07 19:20:24 +00002238 j3 = sqlite3VdbeAddOp1(v, OP_MustBeInt, 1);
2239 j4 = sqlite3VdbeAddOp1(v, OP_NotExists, pExpr->iTable);
2240 j5 = sqlite3VdbeAddOp0(v, OP_Goto);
2241 sqlite3VdbeJumpHere(v, j3);
2242 sqlite3VdbeJumpHere(v, j4);
danielk19779a96b662007-11-29 17:05:18 +00002243 }else{
drh6a288a32008-01-07 19:20:24 +00002244 sqlite3VdbeAddOp4(v, OP_MakeRecord, 1, 0, 0, &affinity, 1);
2245 j5 = sqlite3VdbeAddOp1(v, OP_Found, pExpr->iTable);
danielk19779a96b662007-11-29 17:05:18 +00002246 }
drh6a288a32008-01-07 19:20:24 +00002247 sqlite3VdbeAddOp2(v, OP_AddImm, 0, -1);
2248 sqlite3VdbeJumpHere(v, j2);
2249 sqlite3VdbeJumpHere(v, j5);
drhfef52082000-06-06 01:50:43 +00002250 break;
2251 }
danielk197793758c82005-01-21 08:13:14 +00002252#endif
drhfef52082000-06-06 01:50:43 +00002253 case TK_BETWEEN: {
drhbe5c89a2004-07-26 00:31:09 +00002254 Expr *pLeft = pExpr->pLeft;
2255 struct ExprList_item *pLItem = pExpr->pList->a;
2256 Expr *pRight = pLItem->pExpr;
drh389a1ad2008-01-03 23:44:53 +00002257 sqlite3ExprCode(pParse, pLeft, 0);
drhb1fdb2a2008-01-05 04:06:03 +00002258 sqlite3VdbeAddOp0(v, OP_Copy);
drh389a1ad2008-01-03 23:44:53 +00002259 sqlite3ExprCode(pParse, pRight, 0);
drhbe5c89a2004-07-26 00:31:09 +00002260 codeCompare(pParse, pLeft, pRight, OP_Ge, 0, 0);
drh66a51672008-01-03 00:01:23 +00002261 sqlite3VdbeAddOp1(v, OP_Pull, 1);
drhbe5c89a2004-07-26 00:31:09 +00002262 pLItem++;
2263 pRight = pLItem->pExpr;
drh389a1ad2008-01-03 23:44:53 +00002264 sqlite3ExprCode(pParse, pRight, 0);
drhbe5c89a2004-07-26 00:31:09 +00002265 codeCompare(pParse, pLeft, pRight, OP_Le, 0, 0);
drh66a51672008-01-03 00:01:23 +00002266 sqlite3VdbeAddOp0(v, OP_And);
drhfef52082000-06-06 01:50:43 +00002267 break;
2268 }
drh4f07e5f2007-05-14 11:34:46 +00002269 case TK_UPLUS: {
drh9de221d2008-01-05 06:51:30 +00002270 inReg = sqlite3ExprCode(pParse, pExpr->pLeft, origTarget);
drha2e00042002-01-22 03:13:42 +00002271 break;
2272 }
drh17a7f8d2002-03-24 13:13:27 +00002273 case TK_CASE: {
2274 int expr_end_label;
drhf5905aa2002-05-26 20:54:33 +00002275 int jumpInst;
drhf5905aa2002-05-26 20:54:33 +00002276 int nExpr;
drh17a7f8d2002-03-24 13:13:27 +00002277 int i;
drhbe5c89a2004-07-26 00:31:09 +00002278 ExprList *pEList;
2279 struct ExprList_item *aListelem;
drh17a7f8d2002-03-24 13:13:27 +00002280
2281 assert(pExpr->pList);
2282 assert((pExpr->pList->nExpr % 2) == 0);
2283 assert(pExpr->pList->nExpr > 0);
drhbe5c89a2004-07-26 00:31:09 +00002284 pEList = pExpr->pList;
2285 aListelem = pEList->a;
2286 nExpr = pEList->nExpr;
danielk19774adee202004-05-08 08:23:19 +00002287 expr_end_label = sqlite3VdbeMakeLabel(v);
drh17a7f8d2002-03-24 13:13:27 +00002288 if( pExpr->pLeft ){
drh389a1ad2008-01-03 23:44:53 +00002289 sqlite3ExprCode(pParse, pExpr->pLeft, 0);
drh17a7f8d2002-03-24 13:13:27 +00002290 }
drhf5905aa2002-05-26 20:54:33 +00002291 for(i=0; i<nExpr; i=i+2){
drh389a1ad2008-01-03 23:44:53 +00002292 sqlite3ExprCode(pParse, aListelem[i].pExpr, 0);
drh17a7f8d2002-03-24 13:13:27 +00002293 if( pExpr->pLeft ){
drhb1fdb2a2008-01-05 04:06:03 +00002294 sqlite3VdbeAddOp1(v, OP_SCopy, -1);
drhbe5c89a2004-07-26 00:31:09 +00002295 jumpInst = codeCompare(pParse, pExpr->pLeft, aListelem[i].pExpr,
2296 OP_Ne, 0, 1);
drh66a51672008-01-03 00:01:23 +00002297 sqlite3VdbeAddOp1(v, OP_Pop, 1);
drh17a7f8d2002-03-24 13:13:27 +00002298 }else{
drh66a51672008-01-03 00:01:23 +00002299 jumpInst = sqlite3VdbeAddOp2(v, OP_IfNot, 1, 0);
drh17a7f8d2002-03-24 13:13:27 +00002300 }
drh9de221d2008-01-05 06:51:30 +00002301 sqlite3ExprCode(pParse, aListelem[i+1].pExpr, target);
drh66a51672008-01-03 00:01:23 +00002302 sqlite3VdbeAddOp2(v, OP_Goto, 0, expr_end_label);
drhd654be82005-09-20 17:42:23 +00002303 sqlite3VdbeJumpHere(v, jumpInst);
drh17a7f8d2002-03-24 13:13:27 +00002304 }
drhf570f012002-05-31 15:51:25 +00002305 if( pExpr->pLeft ){
drh66a51672008-01-03 00:01:23 +00002306 sqlite3VdbeAddOp2(v, OP_Pop, 1, 0);
drhf570f012002-05-31 15:51:25 +00002307 }
drh17a7f8d2002-03-24 13:13:27 +00002308 if( pExpr->pRight ){
drh9de221d2008-01-05 06:51:30 +00002309 sqlite3ExprCode(pParse, pExpr->pRight, target);
drh17a7f8d2002-03-24 13:13:27 +00002310 }else{
drh9de221d2008-01-05 06:51:30 +00002311 sqlite3VdbeAddOp2(v, OP_Null, 0, target);
drh17a7f8d2002-03-24 13:13:27 +00002312 }
danielk19774adee202004-05-08 08:23:19 +00002313 sqlite3VdbeResolveLabel(v, expr_end_label);
drh9de221d2008-01-05 06:51:30 +00002314 inReg = target;
danielk19776f349032002-06-11 02:25:40 +00002315 break;
2316 }
danielk19775338a5f2005-01-20 13:03:10 +00002317#ifndef SQLITE_OMIT_TRIGGER
danielk19776f349032002-06-11 02:25:40 +00002318 case TK_RAISE: {
2319 if( !pParse->trigStack ){
danielk19774adee202004-05-08 08:23:19 +00002320 sqlite3ErrorMsg(pParse,
drhda93d232003-03-31 02:12:46 +00002321 "RAISE() may only be used within a trigger-program");
drh389a1ad2008-01-03 23:44:53 +00002322 return 0;
danielk19776f349032002-06-11 02:25:40 +00002323 }
drhad6d9462004-09-19 02:15:24 +00002324 if( pExpr->iColumn!=OE_Ignore ){
2325 assert( pExpr->iColumn==OE_Rollback ||
2326 pExpr->iColumn == OE_Abort ||
2327 pExpr->iColumn == OE_Fail );
danielk19771e536952007-08-16 10:09:01 +00002328 sqlite3DequoteExpr(pParse->db, pExpr);
drh66a51672008-01-03 00:01:23 +00002329 sqlite3VdbeAddOp4(v, OP_Halt, SQLITE_CONSTRAINT, pExpr->iColumn, 0,
drh2646da72005-12-09 20:02:05 +00002330 (char*)pExpr->token.z, pExpr->token.n);
danielk19776f349032002-06-11 02:25:40 +00002331 } else {
drhad6d9462004-09-19 02:15:24 +00002332 assert( pExpr->iColumn == OE_Ignore );
drh66a51672008-01-03 00:01:23 +00002333 sqlite3VdbeAddOp2(v, OP_ContextPop, 0, 0);
2334 sqlite3VdbeAddOp2(v, OP_Goto, 0, pParse->trigStack->ignoreJump);
drhd4e70eb2008-01-02 00:34:36 +00002335 VdbeComment((v, "raise(IGNORE)"));
danielk19776f349032002-06-11 02:25:40 +00002336 }
drhffe07b22005-11-03 00:41:17 +00002337 break;
drh17a7f8d2002-03-24 13:13:27 +00002338 }
danielk19775338a5f2005-01-20 13:03:10 +00002339#endif
drhffe07b22005-11-03 00:41:17 +00002340 }
drh5b6afba2008-01-05 16:29:28 +00002341 if( inReg!=target ){
2342 if( origTarget!=-1 ){
2343 sqlite3VdbeAddOp2(v, (inReg>0 ? OP_SCopy : OP_Move), inReg, target);
2344 }else{
2345 target = inReg;
2346 }
drhcce7d172000-05-31 15:34:51 +00002347 }
drh389a1ad2008-01-03 23:44:53 +00002348 return target;
drhcce7d172000-05-31 15:34:51 +00002349}
2350
danielk197793758c82005-01-21 08:13:14 +00002351#ifndef SQLITE_OMIT_TRIGGER
drhcce7d172000-05-31 15:34:51 +00002352/*
drh25303782004-12-07 15:41:48 +00002353** Generate code that evalutes the given expression and leaves the result
2354** on the stack. See also sqlite3ExprCode().
2355**
2356** This routine might also cache the result and modify the pExpr tree
2357** so that it will make use of the cached result on subsequent evaluations
2358** rather than evaluate the whole expression again. Trivial expressions are
2359** not cached. If the expression is cached, its result is stored in a
2360** memory location.
2361*/
2362void sqlite3ExprCodeAndCache(Parse *pParse, Expr *pExpr){
2363 Vdbe *v = pParse->pVdbe;
drh49df6b72007-12-14 15:12:21 +00002364 VdbeOp *pOp;
drh25303782004-12-07 15:41:48 +00002365 int iMem;
2366 int addr1, addr2;
2367 if( v==0 ) return;
2368 addr1 = sqlite3VdbeCurrentAddr(v);
drh389a1ad2008-01-03 23:44:53 +00002369 sqlite3ExprCode(pParse, pExpr, 0);
drh25303782004-12-07 15:41:48 +00002370 addr2 = sqlite3VdbeCurrentAddr(v);
drh49df6b72007-12-14 15:12:21 +00002371 if( addr2>addr1+1
2372 || ((pOp = sqlite3VdbeGetOp(v, addr1))!=0 && pOp->opcode==OP_Function) ){
drh0a07c102008-01-03 18:03:08 +00002373 iMem = pExpr->iTable = ++pParse->nMem;
drhb1fdb2a2008-01-05 04:06:03 +00002374 sqlite3VdbeAddOp2(v, OP_Copy, 0, iMem);
drh25303782004-12-07 15:41:48 +00002375 pExpr->op = TK_REGISTER;
2376 }
2377}
danielk197793758c82005-01-21 08:13:14 +00002378#endif
drh25303782004-12-07 15:41:48 +00002379
2380/*
drh268380c2004-02-25 13:47:31 +00002381** Generate code that pushes the value of every element of the given
drhf9b596e2004-05-26 16:54:42 +00002382** expression list onto the stack.
drh268380c2004-02-25 13:47:31 +00002383**
2384** Return the number of elements pushed onto the stack.
2385*/
danielk19774adee202004-05-08 08:23:19 +00002386int sqlite3ExprCodeExprList(
drh268380c2004-02-25 13:47:31 +00002387 Parse *pParse, /* Parsing context */
drh389a1ad2008-01-03 23:44:53 +00002388 ExprList *pList, /* The expression list to be coded */
2389 int target /* Where to write results */
drh268380c2004-02-25 13:47:31 +00002390){
2391 struct ExprList_item *pItem;
drh389a1ad2008-01-03 23:44:53 +00002392 int i, n, incr = 1;
drh268380c2004-02-25 13:47:31 +00002393 if( pList==0 ) return 0;
drh268380c2004-02-25 13:47:31 +00002394 n = pList->nExpr;
drh389a1ad2008-01-03 23:44:53 +00002395 if( target<0 ){
2396 target = pParse->nMem+1;
2397 pParse->nMem += n;
2398 }else if( target==0 ){
2399 incr = 0;
2400 }
drhc182d162005-08-14 20:47:16 +00002401 for(pItem=pList->a, i=n; i>0; i--, pItem++){
drh389a1ad2008-01-03 23:44:53 +00002402 sqlite3ExprCode(pParse, pItem->pExpr, target);
2403 target += incr;
drh268380c2004-02-25 13:47:31 +00002404 }
drhf9b596e2004-05-26 16:54:42 +00002405 return n;
drh268380c2004-02-25 13:47:31 +00002406}
2407
2408/*
drhcce7d172000-05-31 15:34:51 +00002409** Generate code for a boolean expression such that a jump is made
2410** to the label "dest" if the expression is true but execution
2411** continues straight thru if the expression is false.
drhf5905aa2002-05-26 20:54:33 +00002412**
2413** If the expression evaluates to NULL (neither true nor false), then
2414** take the jump if the jumpIfNull flag is true.
drhf2bc0132004-10-04 13:19:23 +00002415**
2416** This code depends on the fact that certain token values (ex: TK_EQ)
2417** are the same as opcode values (ex: OP_Eq) that implement the corresponding
2418** operation. Special comments in vdbe.c and the mkopcodeh.awk script in
2419** the make process cause these values to align. Assert()s in the code
2420** below verify that the numbers are aligned correctly.
drhcce7d172000-05-31 15:34:51 +00002421*/
danielk19774adee202004-05-08 08:23:19 +00002422void sqlite3ExprIfTrue(Parse *pParse, Expr *pExpr, int dest, int jumpIfNull){
drhcce7d172000-05-31 15:34:51 +00002423 Vdbe *v = pParse->pVdbe;
2424 int op = 0;
drhdaffd0e2001-04-11 14:28:42 +00002425 if( v==0 || pExpr==0 ) return;
drhf2bc0132004-10-04 13:19:23 +00002426 op = pExpr->op;
2427 switch( op ){
drhcce7d172000-05-31 15:34:51 +00002428 case TK_AND: {
danielk19774adee202004-05-08 08:23:19 +00002429 int d2 = sqlite3VdbeMakeLabel(v);
2430 sqlite3ExprIfFalse(pParse, pExpr->pLeft, d2, !jumpIfNull);
2431 sqlite3ExprIfTrue(pParse, pExpr->pRight, dest, jumpIfNull);
2432 sqlite3VdbeResolveLabel(v, d2);
drhcce7d172000-05-31 15:34:51 +00002433 break;
2434 }
2435 case TK_OR: {
danielk19774adee202004-05-08 08:23:19 +00002436 sqlite3ExprIfTrue(pParse, pExpr->pLeft, dest, jumpIfNull);
2437 sqlite3ExprIfTrue(pParse, pExpr->pRight, dest, jumpIfNull);
drhcce7d172000-05-31 15:34:51 +00002438 break;
2439 }
2440 case TK_NOT: {
danielk19774adee202004-05-08 08:23:19 +00002441 sqlite3ExprIfFalse(pParse, pExpr->pLeft, dest, jumpIfNull);
drhcce7d172000-05-31 15:34:51 +00002442 break;
2443 }
2444 case TK_LT:
2445 case TK_LE:
2446 case TK_GT:
2447 case TK_GE:
2448 case TK_NE:
drh0ac65892002-04-20 14:24:41 +00002449 case TK_EQ: {
drhf2bc0132004-10-04 13:19:23 +00002450 assert( TK_LT==OP_Lt );
2451 assert( TK_LE==OP_Le );
2452 assert( TK_GT==OP_Gt );
2453 assert( TK_GE==OP_Ge );
2454 assert( TK_EQ==OP_Eq );
2455 assert( TK_NE==OP_Ne );
drh389a1ad2008-01-03 23:44:53 +00002456 sqlite3ExprCode(pParse, pExpr->pLeft, 0);
2457 sqlite3ExprCode(pParse, pExpr->pRight, 0);
drhbe5c89a2004-07-26 00:31:09 +00002458 codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, dest, jumpIfNull);
drhcce7d172000-05-31 15:34:51 +00002459 break;
2460 }
2461 case TK_ISNULL:
2462 case TK_NOTNULL: {
drhf2bc0132004-10-04 13:19:23 +00002463 assert( TK_ISNULL==OP_IsNull );
2464 assert( TK_NOTNULL==OP_NotNull );
drh389a1ad2008-01-03 23:44:53 +00002465 sqlite3ExprCode(pParse, pExpr->pLeft, 0);
drh6a288a32008-01-07 19:20:24 +00002466 sqlite3VdbeAddOp2(v, op, 0, dest);
drhcce7d172000-05-31 15:34:51 +00002467 break;
2468 }
drhfef52082000-06-06 01:50:43 +00002469 case TK_BETWEEN: {
danielk19770202b292004-06-09 09:55:16 +00002470 /* The expression "x BETWEEN y AND z" is implemented as:
2471 **
2472 ** 1 IF (x < y) GOTO 3
2473 ** 2 IF (x <= z) GOTO <dest>
2474 ** 3 ...
2475 */
drhf5905aa2002-05-26 20:54:33 +00002476 int addr;
drhbe5c89a2004-07-26 00:31:09 +00002477 Expr *pLeft = pExpr->pLeft;
2478 Expr *pRight = pExpr->pList->a[0].pExpr;
drh389a1ad2008-01-03 23:44:53 +00002479 sqlite3ExprCode(pParse, pLeft, 0);
drhb1fdb2a2008-01-05 04:06:03 +00002480 sqlite3VdbeAddOp0(v, OP_Copy);
drh389a1ad2008-01-03 23:44:53 +00002481 sqlite3ExprCode(pParse, pRight, 0);
drhbe5c89a2004-07-26 00:31:09 +00002482 addr = codeCompare(pParse, pLeft, pRight, OP_Lt, 0, !jumpIfNull);
danielk19770202b292004-06-09 09:55:16 +00002483
drhbe5c89a2004-07-26 00:31:09 +00002484 pRight = pExpr->pList->a[1].pExpr;
drh389a1ad2008-01-03 23:44:53 +00002485 sqlite3ExprCode(pParse, pRight, 0);
drhbe5c89a2004-07-26 00:31:09 +00002486 codeCompare(pParse, pLeft, pRight, OP_Le, dest, jumpIfNull);
danielk19770202b292004-06-09 09:55:16 +00002487
drh66a51672008-01-03 00:01:23 +00002488 sqlite3VdbeAddOp2(v, OP_Integer, 0, 0);
drhd654be82005-09-20 17:42:23 +00002489 sqlite3VdbeJumpHere(v, addr);
drh66a51672008-01-03 00:01:23 +00002490 sqlite3VdbeAddOp2(v, OP_Pop, 1, 0);
drhfef52082000-06-06 01:50:43 +00002491 break;
2492 }
drhcce7d172000-05-31 15:34:51 +00002493 default: {
drh389a1ad2008-01-03 23:44:53 +00002494 sqlite3ExprCode(pParse, pExpr, 0);
drh66a51672008-01-03 00:01:23 +00002495 sqlite3VdbeAddOp2(v, OP_If, jumpIfNull, dest);
drhcce7d172000-05-31 15:34:51 +00002496 break;
2497 }
2498 }
2499}
2500
2501/*
drh66b89c82000-11-28 20:47:17 +00002502** Generate code for a boolean expression such that a jump is made
drhcce7d172000-05-31 15:34:51 +00002503** to the label "dest" if the expression is false but execution
2504** continues straight thru if the expression is true.
drhf5905aa2002-05-26 20:54:33 +00002505**
2506** If the expression evaluates to NULL (neither true nor false) then
2507** jump if jumpIfNull is true or fall through if jumpIfNull is false.
drhcce7d172000-05-31 15:34:51 +00002508*/
danielk19774adee202004-05-08 08:23:19 +00002509void sqlite3ExprIfFalse(Parse *pParse, Expr *pExpr, int dest, int jumpIfNull){
drhcce7d172000-05-31 15:34:51 +00002510 Vdbe *v = pParse->pVdbe;
2511 int op = 0;
drhdaffd0e2001-04-11 14:28:42 +00002512 if( v==0 || pExpr==0 ) return;
drhf2bc0132004-10-04 13:19:23 +00002513
2514 /* The value of pExpr->op and op are related as follows:
2515 **
2516 ** pExpr->op op
2517 ** --------- ----------
2518 ** TK_ISNULL OP_NotNull
2519 ** TK_NOTNULL OP_IsNull
2520 ** TK_NE OP_Eq
2521 ** TK_EQ OP_Ne
2522 ** TK_GT OP_Le
2523 ** TK_LE OP_Gt
2524 ** TK_GE OP_Lt
2525 ** TK_LT OP_Ge
2526 **
2527 ** For other values of pExpr->op, op is undefined and unused.
2528 ** The value of TK_ and OP_ constants are arranged such that we
2529 ** can compute the mapping above using the following expression.
2530 ** Assert()s verify that the computation is correct.
2531 */
2532 op = ((pExpr->op+(TK_ISNULL&1))^1)-(TK_ISNULL&1);
2533
2534 /* Verify correct alignment of TK_ and OP_ constants
2535 */
2536 assert( pExpr->op!=TK_ISNULL || op==OP_NotNull );
2537 assert( pExpr->op!=TK_NOTNULL || op==OP_IsNull );
2538 assert( pExpr->op!=TK_NE || op==OP_Eq );
2539 assert( pExpr->op!=TK_EQ || op==OP_Ne );
2540 assert( pExpr->op!=TK_LT || op==OP_Ge );
2541 assert( pExpr->op!=TK_LE || op==OP_Gt );
2542 assert( pExpr->op!=TK_GT || op==OP_Le );
2543 assert( pExpr->op!=TK_GE || op==OP_Lt );
2544
drhcce7d172000-05-31 15:34:51 +00002545 switch( pExpr->op ){
2546 case TK_AND: {
danielk19774adee202004-05-08 08:23:19 +00002547 sqlite3ExprIfFalse(pParse, pExpr->pLeft, dest, jumpIfNull);
2548 sqlite3ExprIfFalse(pParse, pExpr->pRight, dest, jumpIfNull);
drhcce7d172000-05-31 15:34:51 +00002549 break;
2550 }
2551 case TK_OR: {
danielk19774adee202004-05-08 08:23:19 +00002552 int d2 = sqlite3VdbeMakeLabel(v);
2553 sqlite3ExprIfTrue(pParse, pExpr->pLeft, d2, !jumpIfNull);
2554 sqlite3ExprIfFalse(pParse, pExpr->pRight, dest, jumpIfNull);
2555 sqlite3VdbeResolveLabel(v, d2);
drhcce7d172000-05-31 15:34:51 +00002556 break;
2557 }
2558 case TK_NOT: {
danielk19774adee202004-05-08 08:23:19 +00002559 sqlite3ExprIfTrue(pParse, pExpr->pLeft, dest, jumpIfNull);
drhcce7d172000-05-31 15:34:51 +00002560 break;
2561 }
2562 case TK_LT:
2563 case TK_LE:
2564 case TK_GT:
2565 case TK_GE:
2566 case TK_NE:
2567 case TK_EQ: {
drh389a1ad2008-01-03 23:44:53 +00002568 sqlite3ExprCode(pParse, pExpr->pLeft, 0);
2569 sqlite3ExprCode(pParse, pExpr->pRight, 0);
drhbe5c89a2004-07-26 00:31:09 +00002570 codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, dest, jumpIfNull);
drhcce7d172000-05-31 15:34:51 +00002571 break;
2572 }
drhcce7d172000-05-31 15:34:51 +00002573 case TK_ISNULL:
2574 case TK_NOTNULL: {
drh389a1ad2008-01-03 23:44:53 +00002575 sqlite3ExprCode(pParse, pExpr->pLeft, 0);
drh6a288a32008-01-07 19:20:24 +00002576 sqlite3VdbeAddOp2(v, op, 0, dest);
drhcce7d172000-05-31 15:34:51 +00002577 break;
2578 }
drhfef52082000-06-06 01:50:43 +00002579 case TK_BETWEEN: {
danielk19770202b292004-06-09 09:55:16 +00002580 /* The expression is "x BETWEEN y AND z". It is implemented as:
2581 **
2582 ** 1 IF (x >= y) GOTO 3
2583 ** 2 GOTO <dest>
2584 ** 3 IF (x > z) GOTO <dest>
2585 */
drhfef52082000-06-06 01:50:43 +00002586 int addr;
drhbe5c89a2004-07-26 00:31:09 +00002587 Expr *pLeft = pExpr->pLeft;
2588 Expr *pRight = pExpr->pList->a[0].pExpr;
drh389a1ad2008-01-03 23:44:53 +00002589 sqlite3ExprCode(pParse, pLeft, 0);
drhb1fdb2a2008-01-05 04:06:03 +00002590 sqlite3VdbeAddOp0(v, OP_Copy);
drh389a1ad2008-01-03 23:44:53 +00002591 sqlite3ExprCode(pParse, pRight, 0);
danielk19774adee202004-05-08 08:23:19 +00002592 addr = sqlite3VdbeCurrentAddr(v);
drhbe5c89a2004-07-26 00:31:09 +00002593 codeCompare(pParse, pLeft, pRight, OP_Ge, addr+3, !jumpIfNull);
2594
drh66a51672008-01-03 00:01:23 +00002595 sqlite3VdbeAddOp2(v, OP_Pop, 1, 0);
2596 sqlite3VdbeAddOp2(v, OP_Goto, 0, dest);
drhbe5c89a2004-07-26 00:31:09 +00002597 pRight = pExpr->pList->a[1].pExpr;
drh389a1ad2008-01-03 23:44:53 +00002598 sqlite3ExprCode(pParse, pRight, 0);
drhbe5c89a2004-07-26 00:31:09 +00002599 codeCompare(pParse, pLeft, pRight, OP_Gt, dest, jumpIfNull);
drhfef52082000-06-06 01:50:43 +00002600 break;
2601 }
drhcce7d172000-05-31 15:34:51 +00002602 default: {
drh389a1ad2008-01-03 23:44:53 +00002603 sqlite3ExprCode(pParse, pExpr, 0);
drh66a51672008-01-03 00:01:23 +00002604 sqlite3VdbeAddOp2(v, OP_IfNot, jumpIfNull, dest);
drhcce7d172000-05-31 15:34:51 +00002605 break;
2606 }
2607 }
2608}
drh22827922000-06-06 17:27:05 +00002609
2610/*
2611** Do a deep comparison of two expression trees. Return TRUE (non-zero)
2612** if they are identical and return FALSE if they differ in any way.
drhd40aab02007-02-24 15:29:03 +00002613**
2614** Sometimes this routine will return FALSE even if the two expressions
2615** really are equivalent. If we cannot prove that the expressions are
2616** identical, we return FALSE just to be safe. So if this routine
2617** returns false, then you do not really know for certain if the two
2618** expressions are the same. But if you get a TRUE return, then you
2619** can be sure the expressions are the same. In the places where
2620** this routine is used, it does not hurt to get an extra FALSE - that
2621** just might result in some slightly slower code. But returning
2622** an incorrect TRUE could lead to a malfunction.
drh22827922000-06-06 17:27:05 +00002623*/
danielk19774adee202004-05-08 08:23:19 +00002624int sqlite3ExprCompare(Expr *pA, Expr *pB){
drh22827922000-06-06 17:27:05 +00002625 int i;
danielk19774b202ae2006-01-23 05:50:58 +00002626 if( pA==0||pB==0 ){
2627 return pB==pA;
drh22827922000-06-06 17:27:05 +00002628 }
2629 if( pA->op!=pB->op ) return 0;
drhfd357972005-09-09 01:33:19 +00002630 if( (pA->flags & EP_Distinct)!=(pB->flags & EP_Distinct) ) return 0;
danielk19774adee202004-05-08 08:23:19 +00002631 if( !sqlite3ExprCompare(pA->pLeft, pB->pLeft) ) return 0;
2632 if( !sqlite3ExprCompare(pA->pRight, pB->pRight) ) return 0;
drh22827922000-06-06 17:27:05 +00002633 if( pA->pList ){
2634 if( pB->pList==0 ) return 0;
2635 if( pA->pList->nExpr!=pB->pList->nExpr ) return 0;
2636 for(i=0; i<pA->pList->nExpr; i++){
danielk19774adee202004-05-08 08:23:19 +00002637 if( !sqlite3ExprCompare(pA->pList->a[i].pExpr, pB->pList->a[i].pExpr) ){
drh22827922000-06-06 17:27:05 +00002638 return 0;
2639 }
2640 }
2641 }else if( pB->pList ){
2642 return 0;
2643 }
2644 if( pA->pSelect || pB->pSelect ) return 0;
drh2f2c01e2002-07-02 13:05:04 +00002645 if( pA->iTable!=pB->iTable || pA->iColumn!=pB->iColumn ) return 0;
drhdd735212007-02-24 13:53:05 +00002646 if( pA->op!=TK_COLUMN && pA->token.z ){
drh22827922000-06-06 17:27:05 +00002647 if( pB->token.z==0 ) return 0;
drh6977fea2002-10-22 23:38:04 +00002648 if( pB->token.n!=pA->token.n ) return 0;
drh2646da72005-12-09 20:02:05 +00002649 if( sqlite3StrNICmp((char*)pA->token.z,(char*)pB->token.z,pB->token.n)!=0 ){
2650 return 0;
2651 }
drh22827922000-06-06 17:27:05 +00002652 }
2653 return 1;
2654}
2655
drh13449892005-09-07 21:22:45 +00002656
drh22827922000-06-06 17:27:05 +00002657/*
drh13449892005-09-07 21:22:45 +00002658** Add a new element to the pAggInfo->aCol[] array. Return the index of
2659** the new element. Return a negative number if malloc fails.
drh22827922000-06-06 17:27:05 +00002660*/
drh17435752007-08-16 04:30:38 +00002661static int addAggInfoColumn(sqlite3 *db, AggInfo *pInfo){
drh13449892005-09-07 21:22:45 +00002662 int i;
drhcf643722007-03-27 13:36:37 +00002663 pInfo->aCol = sqlite3ArrayAllocate(
drh17435752007-08-16 04:30:38 +00002664 db,
drhcf643722007-03-27 13:36:37 +00002665 pInfo->aCol,
2666 sizeof(pInfo->aCol[0]),
2667 3,
2668 &pInfo->nColumn,
2669 &pInfo->nColumnAlloc,
2670 &i
2671 );
drh13449892005-09-07 21:22:45 +00002672 return i;
2673}
2674
2675/*
2676** Add a new element to the pAggInfo->aFunc[] array. Return the index of
2677** the new element. Return a negative number if malloc fails.
2678*/
drh17435752007-08-16 04:30:38 +00002679static int addAggInfoFunc(sqlite3 *db, AggInfo *pInfo){
drh13449892005-09-07 21:22:45 +00002680 int i;
drhcf643722007-03-27 13:36:37 +00002681 pInfo->aFunc = sqlite3ArrayAllocate(
drh17435752007-08-16 04:30:38 +00002682 db,
drhcf643722007-03-27 13:36:37 +00002683 pInfo->aFunc,
2684 sizeof(pInfo->aFunc[0]),
2685 3,
2686 &pInfo->nFunc,
2687 &pInfo->nFuncAlloc,
2688 &i
2689 );
drh13449892005-09-07 21:22:45 +00002690 return i;
2691}
drh22827922000-06-06 17:27:05 +00002692
2693/*
drh626a8792005-01-17 22:08:19 +00002694** This is an xFunc for walkExprTree() used to implement
2695** sqlite3ExprAnalyzeAggregates(). See sqlite3ExprAnalyzeAggregates
2696** for additional information.
drh22827922000-06-06 17:27:05 +00002697**
drh626a8792005-01-17 22:08:19 +00002698** This routine analyzes the aggregate function at pExpr.
drh22827922000-06-06 17:27:05 +00002699*/
drh626a8792005-01-17 22:08:19 +00002700static int analyzeAggregate(void *pArg, Expr *pExpr){
drh22827922000-06-06 17:27:05 +00002701 int i;
danielk1977a58fdfb2005-02-08 07:50:40 +00002702 NameContext *pNC = (NameContext *)pArg;
2703 Parse *pParse = pNC->pParse;
2704 SrcList *pSrcList = pNC->pSrcList;
drh13449892005-09-07 21:22:45 +00002705 AggInfo *pAggInfo = pNC->pAggInfo;
drh22827922000-06-06 17:27:05 +00002706
drh22827922000-06-06 17:27:05 +00002707 switch( pExpr->op ){
drh89c69d02007-01-04 01:20:28 +00002708 case TK_AGG_COLUMN:
drh967e8b72000-06-21 13:59:10 +00002709 case TK_COLUMN: {
drh13449892005-09-07 21:22:45 +00002710 /* Check to see if the column is in one of the tables in the FROM
2711 ** clause of the aggregate query */
2712 if( pSrcList ){
2713 struct SrcList_item *pItem = pSrcList->a;
2714 for(i=0; i<pSrcList->nSrc; i++, pItem++){
2715 struct AggInfo_col *pCol;
2716 if( pExpr->iTable==pItem->iCursor ){
2717 /* If we reach this point, it means that pExpr refers to a table
2718 ** that is in the FROM clause of the aggregate query.
2719 **
2720 ** Make an entry for the column in pAggInfo->aCol[] if there
2721 ** is not an entry there already.
2722 */
drh7f906d62007-03-12 23:48:52 +00002723 int k;
drh13449892005-09-07 21:22:45 +00002724 pCol = pAggInfo->aCol;
drh7f906d62007-03-12 23:48:52 +00002725 for(k=0; k<pAggInfo->nColumn; k++, pCol++){
drh13449892005-09-07 21:22:45 +00002726 if( pCol->iTable==pExpr->iTable &&
2727 pCol->iColumn==pExpr->iColumn ){
2728 break;
2729 }
danielk1977a58fdfb2005-02-08 07:50:40 +00002730 }
danielk19771e536952007-08-16 10:09:01 +00002731 if( (k>=pAggInfo->nColumn)
2732 && (k = addAggInfoColumn(pParse->db, pAggInfo))>=0
2733 ){
drh7f906d62007-03-12 23:48:52 +00002734 pCol = &pAggInfo->aCol[k];
danielk19770817d0d2007-02-14 09:19:36 +00002735 pCol->pTab = pExpr->pTab;
drh13449892005-09-07 21:22:45 +00002736 pCol->iTable = pExpr->iTable;
2737 pCol->iColumn = pExpr->iColumn;
drh0a07c102008-01-03 18:03:08 +00002738 pCol->iMem = ++pParse->nMem;
drh13449892005-09-07 21:22:45 +00002739 pCol->iSorterColumn = -1;
drh5774b802005-09-07 22:48:16 +00002740 pCol->pExpr = pExpr;
drh13449892005-09-07 21:22:45 +00002741 if( pAggInfo->pGroupBy ){
2742 int j, n;
2743 ExprList *pGB = pAggInfo->pGroupBy;
2744 struct ExprList_item *pTerm = pGB->a;
2745 n = pGB->nExpr;
2746 for(j=0; j<n; j++, pTerm++){
2747 Expr *pE = pTerm->pExpr;
2748 if( pE->op==TK_COLUMN && pE->iTable==pExpr->iTable &&
2749 pE->iColumn==pExpr->iColumn ){
2750 pCol->iSorterColumn = j;
2751 break;
2752 }
2753 }
2754 }
2755 if( pCol->iSorterColumn<0 ){
2756 pCol->iSorterColumn = pAggInfo->nSortingColumn++;
2757 }
2758 }
2759 /* There is now an entry for pExpr in pAggInfo->aCol[] (either
2760 ** because it was there before or because we just created it).
2761 ** Convert the pExpr to be a TK_AGG_COLUMN referring to that
2762 ** pAggInfo->aCol[] entry.
2763 */
2764 pExpr->pAggInfo = pAggInfo;
2765 pExpr->op = TK_AGG_COLUMN;
drh7f906d62007-03-12 23:48:52 +00002766 pExpr->iAgg = k;
drh13449892005-09-07 21:22:45 +00002767 break;
2768 } /* endif pExpr->iTable==pItem->iCursor */
2769 } /* end loop over pSrcList */
drh22827922000-06-06 17:27:05 +00002770 }
drh626a8792005-01-17 22:08:19 +00002771 return 1;
drh22827922000-06-06 17:27:05 +00002772 }
2773 case TK_AGG_FUNCTION: {
drh13449892005-09-07 21:22:45 +00002774 /* The pNC->nDepth==0 test causes aggregate functions in subqueries
2775 ** to be ignored */
danielk1977a58fdfb2005-02-08 07:50:40 +00002776 if( pNC->nDepth==0 ){
drh13449892005-09-07 21:22:45 +00002777 /* Check to see if pExpr is a duplicate of another aggregate
2778 ** function that is already in the pAggInfo structure
2779 */
2780 struct AggInfo_func *pItem = pAggInfo->aFunc;
2781 for(i=0; i<pAggInfo->nFunc; i++, pItem++){
2782 if( sqlite3ExprCompare(pItem->pExpr, pExpr) ){
danielk1977a58fdfb2005-02-08 07:50:40 +00002783 break;
2784 }
drh22827922000-06-06 17:27:05 +00002785 }
drh13449892005-09-07 21:22:45 +00002786 if( i>=pAggInfo->nFunc ){
2787 /* pExpr is original. Make a new entry in pAggInfo->aFunc[]
2788 */
danielk197714db2662006-01-09 16:12:04 +00002789 u8 enc = ENC(pParse->db);
danielk19771e536952007-08-16 10:09:01 +00002790 i = addAggInfoFunc(pParse->db, pAggInfo);
drh13449892005-09-07 21:22:45 +00002791 if( i>=0 ){
2792 pItem = &pAggInfo->aFunc[i];
2793 pItem->pExpr = pExpr;
drh0a07c102008-01-03 18:03:08 +00002794 pItem->iMem = ++pParse->nMem;
drh13449892005-09-07 21:22:45 +00002795 pItem->pFunc = sqlite3FindFunction(pParse->db,
drh2646da72005-12-09 20:02:05 +00002796 (char*)pExpr->token.z, pExpr->token.n,
drh13449892005-09-07 21:22:45 +00002797 pExpr->pList ? pExpr->pList->nExpr : 0, enc, 0);
drhfd357972005-09-09 01:33:19 +00002798 if( pExpr->flags & EP_Distinct ){
2799 pItem->iDistinct = pParse->nTab++;
2800 }else{
2801 pItem->iDistinct = -1;
2802 }
drh13449892005-09-07 21:22:45 +00002803 }
danielk1977a58fdfb2005-02-08 07:50:40 +00002804 }
drh13449892005-09-07 21:22:45 +00002805 /* Make pExpr point to the appropriate pAggInfo->aFunc[] entry
2806 */
danielk1977a58fdfb2005-02-08 07:50:40 +00002807 pExpr->iAgg = i;
drh13449892005-09-07 21:22:45 +00002808 pExpr->pAggInfo = pAggInfo;
danielk1977a58fdfb2005-02-08 07:50:40 +00002809 return 1;
drh22827922000-06-06 17:27:05 +00002810 }
drh22827922000-06-06 17:27:05 +00002811 }
2812 }
drh13449892005-09-07 21:22:45 +00002813
2814 /* Recursively walk subqueries looking for TK_COLUMN nodes that need
2815 ** to be changed to TK_AGG_COLUMN. But increment nDepth so that
2816 ** TK_AGG_FUNCTION nodes in subqueries will be unchanged.
2817 */
danielk1977a58fdfb2005-02-08 07:50:40 +00002818 if( pExpr->pSelect ){
2819 pNC->nDepth++;
2820 walkSelectExpr(pExpr->pSelect, analyzeAggregate, pNC);
2821 pNC->nDepth--;
2822 }
drh626a8792005-01-17 22:08:19 +00002823 return 0;
2824}
2825
2826/*
2827** Analyze the given expression looking for aggregate functions and
2828** for variables that need to be added to the pParse->aAgg[] array.
2829** Make additional entries to the pParse->aAgg[] array as necessary.
2830**
2831** This routine should only be called after the expression has been
2832** analyzed by sqlite3ExprResolveNames().
2833**
2834** If errors are seen, leave an error message in zErrMsg and return
2835** the number of errors.
2836*/
danielk1977a58fdfb2005-02-08 07:50:40 +00002837int sqlite3ExprAnalyzeAggregates(NameContext *pNC, Expr *pExpr){
2838 int nErr = pNC->pParse->nErr;
2839 walkExprTree(pExpr, analyzeAggregate, pNC);
2840 return pNC->pParse->nErr - nErr;
drh22827922000-06-06 17:27:05 +00002841}
drh5d9a4af2005-08-30 00:54:01 +00002842
2843/*
2844** Call sqlite3ExprAnalyzeAggregates() for every expression in an
2845** expression list. Return the number of errors.
2846**
2847** If an error is found, the analysis is cut short.
2848*/
2849int sqlite3ExprAnalyzeAggList(NameContext *pNC, ExprList *pList){
2850 struct ExprList_item *pItem;
2851 int i;
2852 int nErr = 0;
2853 if( pList ){
2854 for(pItem=pList->a, i=0; nErr==0 && i<pList->nExpr; i++, pItem++){
2855 nErr += sqlite3ExprAnalyzeAggregates(pNC, pItem->pExpr);
2856 }
2857 }
2858 return nErr;
2859}