blob: aa6f27543861bd15ca079176dac38faa4e57f0c5 [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*/
15#include "sqliteInt.h"
drha2e00042002-01-22 03:13:42 +000016
danielk1977e014a832004-05-17 10:48:57 +000017/*
18** Return the 'affinity' of the expression pExpr if any.
19**
20** If pExpr is a column, a reference to a column via an 'AS' alias,
21** or a sub-select with a column as the return value, then the
22** affinity of that column is returned. Otherwise, 0x00 is returned,
23** indicating no affinity for the expression.
24**
25** i.e. the WHERE clause expresssions in the following statements all
26** have an affinity:
27**
28** CREATE TABLE t1(a);
29** SELECT * FROM t1 WHERE a;
30** SELECT a AS b FROM t1 WHERE b;
31** SELECT * FROM t1 WHERE (select a from t1);
32*/
danielk1977bf3b7212004-05-18 10:06:24 +000033char sqlite3ExprAffinity(Expr *pExpr){
drh580c8c12012-12-08 03:34:04 +000034 int op;
35 pExpr = sqlite3ExprSkipCollate(pExpr);
36 op = pExpr->op;
drh487e2622005-06-25 18:42:14 +000037 if( op==TK_SELECT ){
danielk19776ab3a2e2009-02-19 14:39:25 +000038 assert( pExpr->flags&EP_xIsSelect );
39 return sqlite3ExprAffinity(pExpr->x.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 ){
drh33e619f2009-05-28 01:00:55 +000043 assert( !ExprHasProperty(pExpr, EP_IntValue) );
44 return sqlite3AffinityType(pExpr->u.zToken);
drh487e2622005-06-25 18:42:14 +000045 }
46#endif
danielk1977259a4552008-11-12 08:07:12 +000047 if( (op==TK_AGG_COLUMN || op==TK_COLUMN || op==TK_REGISTER)
48 && pExpr->pTab!=0
49 ){
drh7d10d5a2008-08-20 16:35:10 +000050 /* op==TK_REGISTER && pExpr->pTab!=0 happens when pExpr was originally
51 ** a TK_COLUMN but was previously evaluated and cached in a register */
52 int j = pExpr->iColumn;
53 if( j<0 ) return SQLITE_AFF_INTEGER;
54 assert( pExpr->pTab && j<pExpr->pTab->nCol );
55 return pExpr->pTab->aCol[j].affinity;
56 }
danielk1977a37cdde2004-05-16 11:15:36 +000057 return pExpr->affinity;
58}
59
drh53db1452004-05-20 13:54:53 +000060/*
drh8b4c40d2007-02-01 23:02:45 +000061** Set the collating sequence for expression pExpr to be the collating
drhae80dde2012-12-06 21:16:43 +000062** sequence named by pToken. Return a pointer to a new Expr node that
63** implements the COLLATE operator.
drh0a8a4062012-12-07 18:38:16 +000064**
65** If a memory allocation error occurs, that fact is recorded in pParse->db
66** and the pExpr parameter is returned unchanged.
drh8b4c40d2007-02-01 23:02:45 +000067*/
drh0a8a4062012-12-07 18:38:16 +000068Expr *sqlite3ExprAddCollateToken(Parse *pParse, Expr *pExpr, Token *pCollName){
69 if( pCollName->n>0 ){
70 Expr *pNew = sqlite3ExprAlloc(pParse->db, TK_COLLATE, pCollName, 1);
71 if( pNew ){
72 pNew->pLeft = pExpr;
73 pNew->flags |= EP_Collate;
74 pExpr = pNew;
75 }
drhae80dde2012-12-06 21:16:43 +000076 }
drh0a8a4062012-12-07 18:38:16 +000077 return pExpr;
78}
79Expr *sqlite3ExprAddCollateString(Parse *pParse, Expr *pExpr, const char *zC){
drh261d8a52012-12-08 21:36:26 +000080 Token s;
81 assert( zC!=0 );
82 s.z = zC;
83 s.n = sqlite3Strlen30(s.z);
84 return sqlite3ExprAddCollateToken(pParse, pExpr, &s);
drh0a8a4062012-12-07 18:38:16 +000085}
86
87/*
drhd91eba92012-12-08 00:52:14 +000088** Skip over any TK_COLLATE and/or TK_AS operators at the root of
89** an expression.
drh0a8a4062012-12-07 18:38:16 +000090*/
91Expr *sqlite3ExprSkipCollate(Expr *pExpr){
drhd91eba92012-12-08 00:52:14 +000092 while( pExpr && (pExpr->op==TK_COLLATE || pExpr->op==TK_AS) ){
93 pExpr = pExpr->pLeft;
94 }
drh0a8a4062012-12-07 18:38:16 +000095 return pExpr;
drh8b4c40d2007-02-01 23:02:45 +000096}
97
98/*
drhae80dde2012-12-06 21:16:43 +000099** Return the collation sequence for the expression pExpr. If
100** there is no defined collating sequence, return NULL.
101**
102** The collating sequence might be determined by a COLLATE operator
103** or by the presence of a column with a defined collating sequence.
104** COLLATE operators take first precedence. Left operands take
105** precedence over right operands.
danielk19770202b292004-06-09 09:55:16 +0000106*/
danielk19777cedc8d2004-06-10 10:50:08 +0000107CollSeq *sqlite3ExprCollSeq(Parse *pParse, Expr *pExpr){
drhae80dde2012-12-06 21:16:43 +0000108 sqlite3 *db = pParse->db;
danielk19777cedc8d2004-06-10 10:50:08 +0000109 CollSeq *pColl = 0;
drh7d10d5a2008-08-20 16:35:10 +0000110 Expr *p = pExpr;
drh261d8a52012-12-08 21:36:26 +0000111 while( p ){
drhae80dde2012-12-06 21:16:43 +0000112 int op = p->op;
113 if( op==TK_CAST || op==TK_UPLUS ){
114 p = p->pLeft;
115 continue;
116 }
dan36e78302013-08-21 12:04:32 +0000117 if( op==TK_COLLATE || (op==TK_REGISTER && p->op2==TK_COLLATE) ){
drh6fdd3d82013-05-15 17:47:12 +0000118 pColl = sqlite3GetCollSeq(pParse, ENC(db), 0, p->u.zToken);
drhae80dde2012-12-06 21:16:43 +0000119 break;
120 }
121 if( p->pTab!=0
122 && (op==TK_AGG_COLUMN || op==TK_COLUMN
123 || op==TK_REGISTER || op==TK_TRIGGER)
124 ){
drh7d10d5a2008-08-20 16:35:10 +0000125 /* op==TK_REGISTER && p->pTab!=0 happens when pExpr was originally
126 ** a TK_COLUMN but was previously evaluated and cached in a register */
drh7d10d5a2008-08-20 16:35:10 +0000127 int j = p->iColumn;
128 if( j>=0 ){
drhae80dde2012-12-06 21:16:43 +0000129 const char *zColl = p->pTab->aCol[j].zColl;
drhc4a64fa2009-05-11 20:53:28 +0000130 pColl = sqlite3FindCollSeq(db, ENC(db), zColl, 0);
drh7d10d5a2008-08-20 16:35:10 +0000131 }
132 break;
danielk19770202b292004-06-09 09:55:16 +0000133 }
drhae80dde2012-12-06 21:16:43 +0000134 if( p->flags & EP_Collate ){
drh261d8a52012-12-08 21:36:26 +0000135 if( ALWAYS(p->pLeft) && (p->pLeft->flags & EP_Collate)!=0 ){
drhae80dde2012-12-06 21:16:43 +0000136 p = p->pLeft;
137 }else{
138 p = p->pRight;
139 }
140 }else{
drh7d10d5a2008-08-20 16:35:10 +0000141 break;
142 }
danielk19770202b292004-06-09 09:55:16 +0000143 }
danielk19777cedc8d2004-06-10 10:50:08 +0000144 if( sqlite3CheckCollSeq(pParse, pColl) ){
145 pColl = 0;
146 }
147 return pColl;
danielk19770202b292004-06-09 09:55:16 +0000148}
149
150/*
drh626a8792005-01-17 22:08:19 +0000151** pExpr is an operand of a comparison operator. aff2 is the
152** type affinity of the other operand. This routine returns the
drh53db1452004-05-20 13:54:53 +0000153** type affinity that should be used for the comparison operator.
154*/
danielk1977e014a832004-05-17 10:48:57 +0000155char sqlite3CompareAffinity(Expr *pExpr, char aff2){
danielk1977bf3b7212004-05-18 10:06:24 +0000156 char aff1 = sqlite3ExprAffinity(pExpr);
danielk1977e014a832004-05-17 10:48:57 +0000157 if( aff1 && aff2 ){
drh8df447f2005-11-01 15:48:24 +0000158 /* Both sides of the comparison are columns. If one has numeric
159 ** affinity, use that. Otherwise use no affinity.
danielk1977e014a832004-05-17 10:48:57 +0000160 */
drh8a512562005-11-14 22:29:05 +0000161 if( sqlite3IsNumericAffinity(aff1) || sqlite3IsNumericAffinity(aff2) ){
danielk1977e014a832004-05-17 10:48:57 +0000162 return SQLITE_AFF_NUMERIC;
163 }else{
164 return SQLITE_AFF_NONE;
165 }
166 }else if( !aff1 && !aff2 ){
drh5f6a87b2004-07-19 00:39:45 +0000167 /* Neither side of the comparison is a column. Compare the
168 ** results directly.
danielk1977e014a832004-05-17 10:48:57 +0000169 */
drh5f6a87b2004-07-19 00:39:45 +0000170 return SQLITE_AFF_NONE;
danielk1977e014a832004-05-17 10:48:57 +0000171 }else{
172 /* One side is a column, the other is not. Use the columns affinity. */
drhfe05af82005-07-21 03:14:59 +0000173 assert( aff1==0 || aff2==0 );
danielk1977e014a832004-05-17 10:48:57 +0000174 return (aff1 + aff2);
175 }
176}
177
drh53db1452004-05-20 13:54:53 +0000178/*
179** pExpr is a comparison operator. Return the type affinity that should
180** be applied to both operands prior to doing the comparison.
181*/
danielk1977e014a832004-05-17 10:48:57 +0000182static char comparisonAffinity(Expr *pExpr){
183 char aff;
184 assert( pExpr->op==TK_EQ || pExpr->op==TK_IN || pExpr->op==TK_LT ||
185 pExpr->op==TK_GT || pExpr->op==TK_GE || pExpr->op==TK_LE ||
drh6a2fe092009-09-23 02:29:36 +0000186 pExpr->op==TK_NE || pExpr->op==TK_IS || pExpr->op==TK_ISNOT );
danielk1977e014a832004-05-17 10:48:57 +0000187 assert( pExpr->pLeft );
danielk1977bf3b7212004-05-18 10:06:24 +0000188 aff = sqlite3ExprAffinity(pExpr->pLeft);
danielk1977e014a832004-05-17 10:48:57 +0000189 if( pExpr->pRight ){
190 aff = sqlite3CompareAffinity(pExpr->pRight, aff);
danielk19776ab3a2e2009-02-19 14:39:25 +0000191 }else if( ExprHasProperty(pExpr, EP_xIsSelect) ){
192 aff = sqlite3CompareAffinity(pExpr->x.pSelect->pEList->a[0].pExpr, aff);
193 }else if( !aff ){
drhde087bd2007-02-23 03:00:44 +0000194 aff = SQLITE_AFF_NONE;
danielk1977e014a832004-05-17 10:48:57 +0000195 }
196 return aff;
197}
198
199/*
200** pExpr is a comparison expression, eg. '=', '<', IN(...) etc.
201** idx_affinity is the affinity of an indexed column. Return true
202** if the index with affinity idx_affinity may be used to implement
203** the comparison in pExpr.
204*/
205int sqlite3IndexAffinityOk(Expr *pExpr, char idx_affinity){
206 char aff = comparisonAffinity(pExpr);
drh8a512562005-11-14 22:29:05 +0000207 switch( aff ){
208 case SQLITE_AFF_NONE:
209 return 1;
210 case SQLITE_AFF_TEXT:
211 return idx_affinity==SQLITE_AFF_TEXT;
212 default:
213 return sqlite3IsNumericAffinity(idx_affinity);
214 }
danielk1977e014a832004-05-17 10:48:57 +0000215}
216
danielk1977a37cdde2004-05-16 11:15:36 +0000217/*
drh35573352008-01-08 23:54:25 +0000218** Return the P5 value that should be used for a binary comparison
danielk1977a37cdde2004-05-16 11:15:36 +0000219** opcode (OP_Eq, OP_Ge etc.) used to compare pExpr1 and pExpr2.
danielk1977a37cdde2004-05-16 11:15:36 +0000220*/
drh35573352008-01-08 23:54:25 +0000221static u8 binaryCompareP5(Expr *pExpr1, Expr *pExpr2, int jumpIfNull){
222 u8 aff = (char)sqlite3ExprAffinity(pExpr2);
drh1bd10f82008-12-10 21:19:56 +0000223 aff = (u8)sqlite3CompareAffinity(pExpr1, aff) | (u8)jumpIfNull;
drh35573352008-01-08 23:54:25 +0000224 return aff;
danielk1977a37cdde2004-05-16 11:15:36 +0000225}
226
drha2e00042002-01-22 03:13:42 +0000227/*
danielk19770202b292004-06-09 09:55:16 +0000228** Return a pointer to the collation sequence that should be used by
229** a binary comparison operator comparing pLeft and pRight.
230**
231** If the left hand expression has a collating sequence type, then it is
232** used. Otherwise the collation sequence for the right hand expression
233** is used, or the default (BINARY) if neither expression has a collating
234** type.
danielk1977bcbb04e2007-05-29 12:11:29 +0000235**
236** Argument pRight (but not pLeft) may be a null pointer. In this case,
237** it is not considered.
danielk19770202b292004-06-09 09:55:16 +0000238*/
drh0a0e1312007-08-07 17:04:59 +0000239CollSeq *sqlite3BinaryCompareCollSeq(
danielk1977bcbb04e2007-05-29 12:11:29 +0000240 Parse *pParse,
241 Expr *pLeft,
242 Expr *pRight
243){
drhec41dda2007-02-07 13:09:45 +0000244 CollSeq *pColl;
245 assert( pLeft );
drhae80dde2012-12-06 21:16:43 +0000246 if( pLeft->flags & EP_Collate ){
247 pColl = sqlite3ExprCollSeq(pParse, pLeft);
248 }else if( pRight && (pRight->flags & EP_Collate)!=0 ){
249 pColl = sqlite3ExprCollSeq(pParse, pRight);
drhec41dda2007-02-07 13:09:45 +0000250 }else{
251 pColl = sqlite3ExprCollSeq(pParse, pLeft);
252 if( !pColl ){
253 pColl = sqlite3ExprCollSeq(pParse, pRight);
254 }
danielk19770202b292004-06-09 09:55:16 +0000255 }
256 return pColl;
257}
258
259/*
drhbe5c89a2004-07-26 00:31:09 +0000260** Generate code for a comparison operator.
261*/
262static int codeCompare(
263 Parse *pParse, /* The parsing (and code generating) context */
264 Expr *pLeft, /* The left operand */
265 Expr *pRight, /* The right operand */
266 int opcode, /* The comparison opcode */
drh35573352008-01-08 23:54:25 +0000267 int in1, int in2, /* Register holding operands */
drhbe5c89a2004-07-26 00:31:09 +0000268 int dest, /* Jump here if true. */
269 int jumpIfNull /* If true, jump if either operand is NULL */
270){
drh35573352008-01-08 23:54:25 +0000271 int p5;
272 int addr;
273 CollSeq *p4;
274
275 p4 = sqlite3BinaryCompareCollSeq(pParse, pLeft, pRight);
276 p5 = binaryCompareP5(pLeft, pRight, jumpIfNull);
277 addr = sqlite3VdbeAddOp4(pParse->pVdbe, opcode, in2, dest, in1,
278 (void*)p4, P4_COLLSEQ);
drh1bd10f82008-12-10 21:19:56 +0000279 sqlite3VdbeChangeP5(pParse->pVdbe, (u8)p5);
drh35573352008-01-08 23:54:25 +0000280 return addr;
drhbe5c89a2004-07-26 00:31:09 +0000281}
282
danielk19774b5255a2008-06-05 16:47:39 +0000283#if SQLITE_MAX_EXPR_DEPTH>0
284/*
285** Check that argument nHeight is less than or equal to the maximum
286** expression depth allowed. If it is not, leave an error message in
287** pParse.
288*/
drh7d10d5a2008-08-20 16:35:10 +0000289int sqlite3ExprCheckHeight(Parse *pParse, int nHeight){
danielk19774b5255a2008-06-05 16:47:39 +0000290 int rc = SQLITE_OK;
291 int mxHeight = pParse->db->aLimit[SQLITE_LIMIT_EXPR_DEPTH];
292 if( nHeight>mxHeight ){
293 sqlite3ErrorMsg(pParse,
294 "Expression tree is too large (maximum depth %d)", mxHeight
295 );
296 rc = SQLITE_ERROR;
297 }
298 return rc;
299}
300
301/* The following three functions, heightOfExpr(), heightOfExprList()
302** and heightOfSelect(), are used to determine the maximum height
303** of any expression tree referenced by the structure passed as the
304** first argument.
305**
306** If this maximum height is greater than the current value pointed
307** to by pnHeight, the second parameter, then set *pnHeight to that
308** value.
309*/
310static void heightOfExpr(Expr *p, int *pnHeight){
311 if( p ){
312 if( p->nHeight>*pnHeight ){
313 *pnHeight = p->nHeight;
314 }
315 }
316}
317static void heightOfExprList(ExprList *p, int *pnHeight){
318 if( p ){
319 int i;
320 for(i=0; i<p->nExpr; i++){
321 heightOfExpr(p->a[i].pExpr, pnHeight);
322 }
323 }
324}
325static void heightOfSelect(Select *p, int *pnHeight){
326 if( p ){
327 heightOfExpr(p->pWhere, pnHeight);
328 heightOfExpr(p->pHaving, pnHeight);
329 heightOfExpr(p->pLimit, pnHeight);
330 heightOfExpr(p->pOffset, pnHeight);
331 heightOfExprList(p->pEList, pnHeight);
332 heightOfExprList(p->pGroupBy, pnHeight);
333 heightOfExprList(p->pOrderBy, pnHeight);
334 heightOfSelect(p->pPrior, pnHeight);
335 }
336}
337
338/*
339** Set the Expr.nHeight variable in the structure passed as an
340** argument. An expression with no children, Expr.pList or
341** Expr.pSelect member has a height of 1. Any other expression
342** has a height equal to the maximum height of any other
343** referenced Expr plus one.
344*/
345static void exprSetHeight(Expr *p){
346 int nHeight = 0;
347 heightOfExpr(p->pLeft, &nHeight);
348 heightOfExpr(p->pRight, &nHeight);
danielk19776ab3a2e2009-02-19 14:39:25 +0000349 if( ExprHasProperty(p, EP_xIsSelect) ){
350 heightOfSelect(p->x.pSelect, &nHeight);
351 }else{
352 heightOfExprList(p->x.pList, &nHeight);
353 }
danielk19774b5255a2008-06-05 16:47:39 +0000354 p->nHeight = nHeight + 1;
355}
356
357/*
358** Set the Expr.nHeight variable using the exprSetHeight() function. If
359** the height is greater than the maximum allowed expression depth,
360** leave an error in pParse.
361*/
362void sqlite3ExprSetHeight(Parse *pParse, Expr *p){
363 exprSetHeight(p);
drh7d10d5a2008-08-20 16:35:10 +0000364 sqlite3ExprCheckHeight(pParse, p->nHeight);
danielk19774b5255a2008-06-05 16:47:39 +0000365}
366
367/*
368** Return the maximum height of any expression tree referenced
369** by the select statement passed as an argument.
370*/
371int sqlite3SelectExprHeight(Select *p){
372 int nHeight = 0;
373 heightOfSelect(p, &nHeight);
374 return nHeight;
375}
376#else
danielk19774b5255a2008-06-05 16:47:39 +0000377 #define exprSetHeight(y)
378#endif /* SQLITE_MAX_EXPR_DEPTH>0 */
379
drhbe5c89a2004-07-26 00:31:09 +0000380/*
drhb7916a72009-05-27 10:31:29 +0000381** This routine is the core allocator for Expr nodes.
382**
drha76b5df2002-02-23 02:32:10 +0000383** Construct a new expression node and return a pointer to it. Memory
drhb7916a72009-05-27 10:31:29 +0000384** for this node and for the pToken argument is a single allocation
385** obtained from sqlite3DbMalloc(). The calling function
drha76b5df2002-02-23 02:32:10 +0000386** is responsible for making sure the node eventually gets freed.
drhb7916a72009-05-27 10:31:29 +0000387**
388** If dequote is true, then the token (if it exists) is dequoted.
389** If dequote is false, no dequoting is performance. The deQuote
390** parameter is ignored if pToken is NULL or if the token does not
391** appear to be quoted. If the quotes were of the form "..." (double-quotes)
392** then the EP_DblQuoted flag is set on the expression node.
drh33e619f2009-05-28 01:00:55 +0000393**
394** Special case: If op==TK_INTEGER and pToken points to a string that
395** can be translated into a 32-bit integer, then the token is not
396** stored in u.zToken. Instead, the integer values is written
397** into u.iValue and the EP_IntValue flag is set. No extra storage
398** is allocated to hold the integer text and the dequote flag is ignored.
drha76b5df2002-02-23 02:32:10 +0000399*/
drhb7916a72009-05-27 10:31:29 +0000400Expr *sqlite3ExprAlloc(
danielk1977a1644fd2007-08-29 12:31:25 +0000401 sqlite3 *db, /* Handle for sqlite3DbMallocZero() (may be null) */
drh17435752007-08-16 04:30:38 +0000402 int op, /* Expression opcode */
drhb7916a72009-05-27 10:31:29 +0000403 const Token *pToken, /* Token argument. Might be NULL */
404 int dequote /* True to dequote */
drh17435752007-08-16 04:30:38 +0000405){
drha76b5df2002-02-23 02:32:10 +0000406 Expr *pNew;
drh33e619f2009-05-28 01:00:55 +0000407 int nExtra = 0;
shanecf697392009-06-01 16:53:09 +0000408 int iValue = 0;
danielk1977fc976062007-05-10 10:46:56 +0000409
drhb7916a72009-05-27 10:31:29 +0000410 if( pToken ){
drh33e619f2009-05-28 01:00:55 +0000411 if( op!=TK_INTEGER || pToken->z==0
412 || sqlite3GetInt32(pToken->z, &iValue)==0 ){
413 nExtra = pToken->n+1;
drhd50ffc42011-03-08 02:38:28 +0000414 assert( iValue>=0 );
drh33e619f2009-05-28 01:00:55 +0000415 }
drhb7916a72009-05-27 10:31:29 +0000416 }
417 pNew = sqlite3DbMallocZero(db, sizeof(Expr)+nExtra);
418 if( pNew ){
419 pNew->op = (u8)op;
420 pNew->iAgg = -1;
421 if( pToken ){
drh33e619f2009-05-28 01:00:55 +0000422 if( nExtra==0 ){
423 pNew->flags |= EP_IntValue;
424 pNew->u.iValue = iValue;
425 }else{
426 int c;
427 pNew->u.zToken = (char*)&pNew[1];
drhb07028f2011-10-14 21:49:18 +0000428 assert( pToken->z!=0 || pToken->n==0 );
429 if( pToken->n ) memcpy(pNew->u.zToken, pToken->z, pToken->n);
drh33e619f2009-05-28 01:00:55 +0000430 pNew->u.zToken[pToken->n] = 0;
431 if( dequote && nExtra>=3
432 && ((c = pToken->z[0])=='\'' || c=='"' || c=='[' || c=='`') ){
433 sqlite3Dequote(pNew->u.zToken);
434 if( c=='"' ) pNew->flags |= EP_DblQuoted;
435 }
drhb7916a72009-05-27 10:31:29 +0000436 }
437 }
438#if SQLITE_MAX_EXPR_DEPTH>0
439 pNew->nHeight = 1;
440#endif
441 }
drha76b5df2002-02-23 02:32:10 +0000442 return pNew;
443}
444
445/*
drhb7916a72009-05-27 10:31:29 +0000446** Allocate a new expression node from a zero-terminated token that has
447** already been dequoted.
448*/
449Expr *sqlite3Expr(
450 sqlite3 *db, /* Handle for sqlite3DbMallocZero() (may be null) */
451 int op, /* Expression opcode */
452 const char *zToken /* Token argument. Might be NULL */
453){
454 Token x;
455 x.z = zToken;
456 x.n = zToken ? sqlite3Strlen30(zToken) : 0;
457 return sqlite3ExprAlloc(db, op, &x, 0);
458}
459
460/*
461** Attach subtrees pLeft and pRight to the Expr node pRoot.
462**
463** If pRoot==NULL that means that a memory allocation error has occurred.
464** In that case, delete the subtrees pLeft and pRight.
465*/
466void sqlite3ExprAttachSubtrees(
467 sqlite3 *db,
468 Expr *pRoot,
469 Expr *pLeft,
470 Expr *pRight
471){
472 if( pRoot==0 ){
473 assert( db->mallocFailed );
474 sqlite3ExprDelete(db, pLeft);
475 sqlite3ExprDelete(db, pRight);
476 }else{
477 if( pRight ){
478 pRoot->pRight = pRight;
drhae80dde2012-12-06 21:16:43 +0000479 pRoot->flags |= EP_Collate & pRight->flags;
drhb7916a72009-05-27 10:31:29 +0000480 }
481 if( pLeft ){
482 pRoot->pLeft = pLeft;
drhae80dde2012-12-06 21:16:43 +0000483 pRoot->flags |= EP_Collate & pLeft->flags;
drhb7916a72009-05-27 10:31:29 +0000484 }
485 exprSetHeight(pRoot);
486 }
487}
488
489/*
drhbf664462009-06-19 18:32:54 +0000490** Allocate a Expr node which joins as many as two subtrees.
drhb7916a72009-05-27 10:31:29 +0000491**
drhbf664462009-06-19 18:32:54 +0000492** One or both of the subtrees can be NULL. Return a pointer to the new
493** Expr node. Or, if an OOM error occurs, set pParse->db->mallocFailed,
494** free the subtrees and return NULL.
drh206f3d92006-07-11 13:15:08 +0000495*/
drh17435752007-08-16 04:30:38 +0000496Expr *sqlite3PExpr(
497 Parse *pParse, /* Parsing context */
498 int op, /* Expression opcode */
499 Expr *pLeft, /* Left operand */
500 Expr *pRight, /* Right operand */
501 const Token *pToken /* Argument token */
502){
drh5fb52ca2012-03-31 02:34:35 +0000503 Expr *p;
504 if( op==TK_AND && pLeft && pRight ){
505 /* Take advantage of short-circuit false optimization for AND */
506 p = sqlite3ExprAnd(pParse->db, pLeft, pRight);
507 }else{
508 p = sqlite3ExprAlloc(pParse->db, op, pToken, 1);
509 sqlite3ExprAttachSubtrees(pParse->db, p, pLeft, pRight);
510 }
dan2b359bd2010-10-28 11:31:23 +0000511 if( p ) {
512 sqlite3ExprCheckHeight(pParse, p->nHeight);
513 }
drh4e0cff62004-11-05 05:10:28 +0000514 return p;
515}
516
517/*
drh5fb52ca2012-03-31 02:34:35 +0000518** Return 1 if an expression must be FALSE in all cases and 0 if the
519** expression might be true. This is an optimization. If is OK to
520** return 0 here even if the expression really is always false (a
521** false negative). But it is a bug to return 1 if the expression
522** might be true in some rare circumstances (a false positive.)
523**
524** Note that if the expression is part of conditional for a
525** LEFT JOIN, then we cannot determine at compile-time whether or not
526** is it true or false, so always return 0.
527*/
528static int exprAlwaysFalse(Expr *p){
529 int v = 0;
530 if( ExprHasProperty(p, EP_FromJoin) ) return 0;
531 if( !sqlite3ExprIsInteger(p, &v) ) return 0;
532 return v==0;
533}
534
535/*
drh91bb0ee2004-09-01 03:06:34 +0000536** Join two expressions using an AND operator. If either expression is
537** NULL, then just return the other expression.
drh5fb52ca2012-03-31 02:34:35 +0000538**
539** If one side or the other of the AND is known to be false, then instead
540** of returning an AND expression, just return a constant expression with
541** a value of false.
drh91bb0ee2004-09-01 03:06:34 +0000542*/
danielk19771e536952007-08-16 10:09:01 +0000543Expr *sqlite3ExprAnd(sqlite3 *db, Expr *pLeft, Expr *pRight){
drh91bb0ee2004-09-01 03:06:34 +0000544 if( pLeft==0 ){
545 return pRight;
546 }else if( pRight==0 ){
547 return pLeft;
drh5fb52ca2012-03-31 02:34:35 +0000548 }else if( exprAlwaysFalse(pLeft) || exprAlwaysFalse(pRight) ){
549 sqlite3ExprDelete(db, pLeft);
550 sqlite3ExprDelete(db, pRight);
551 return sqlite3ExprAlloc(db, TK_INTEGER, &sqlite3IntTokens[0], 0);
drh91bb0ee2004-09-01 03:06:34 +0000552 }else{
drhb7916a72009-05-27 10:31:29 +0000553 Expr *pNew = sqlite3ExprAlloc(db, TK_AND, 0, 0);
554 sqlite3ExprAttachSubtrees(db, pNew, pLeft, pRight);
555 return pNew;
drha76b5df2002-02-23 02:32:10 +0000556 }
557}
558
559/*
560** Construct a new expression node for a function with multiple
561** arguments.
562*/
drh17435752007-08-16 04:30:38 +0000563Expr *sqlite3ExprFunction(Parse *pParse, ExprList *pList, Token *pToken){
drha76b5df2002-02-23 02:32:10 +0000564 Expr *pNew;
drh633e6d52008-07-28 19:34:53 +0000565 sqlite3 *db = pParse->db;
danielk19774b202ae2006-01-23 05:50:58 +0000566 assert( pToken );
drhb7916a72009-05-27 10:31:29 +0000567 pNew = sqlite3ExprAlloc(db, TK_FUNCTION, pToken, 1);
drha76b5df2002-02-23 02:32:10 +0000568 if( pNew==0 ){
drhd9da78a2009-03-24 15:08:09 +0000569 sqlite3ExprListDelete(db, pList); /* Avoid memory leak when malloc fails */
drha76b5df2002-02-23 02:32:10 +0000570 return 0;
571 }
danielk19776ab3a2e2009-02-19 14:39:25 +0000572 pNew->x.pList = pList;
573 assert( !ExprHasProperty(pNew, EP_xIsSelect) );
danielk19774b5255a2008-06-05 16:47:39 +0000574 sqlite3ExprSetHeight(pParse, pNew);
drha76b5df2002-02-23 02:32:10 +0000575 return pNew;
576}
577
578/*
drhfa6bc002004-09-07 16:19:52 +0000579** Assign a variable number to an expression that encodes a wildcard
580** in the original SQL statement.
581**
582** Wildcards consisting of a single "?" are assigned the next sequential
583** variable number.
584**
585** Wildcards of the form "?nnn" are assigned the number "nnn". We make
586** sure "nnn" is not too be to avoid a denial of service attack when
587** the SQL statement comes from an external source.
588**
drh51f49f12009-05-21 20:41:32 +0000589** Wildcards of the form ":aaa", "@aaa", or "$aaa" are assigned the same number
drhfa6bc002004-09-07 16:19:52 +0000590** as the previous instance of the same wildcard. Or if this is the first
591** instance of the wildcard, the next sequenial variable number is
592** assigned.
593*/
594void sqlite3ExprAssignVarNumber(Parse *pParse, Expr *pExpr){
drh17435752007-08-16 04:30:38 +0000595 sqlite3 *db = pParse->db;
drhb7916a72009-05-27 10:31:29 +0000596 const char *z;
drh17435752007-08-16 04:30:38 +0000597
drhfa6bc002004-09-07 16:19:52 +0000598 if( pExpr==0 ) return;
drh33e619f2009-05-28 01:00:55 +0000599 assert( !ExprHasAnyProperty(pExpr, EP_IntValue|EP_Reduced|EP_TokenOnly) );
600 z = pExpr->u.zToken;
drhb7916a72009-05-27 10:31:29 +0000601 assert( z!=0 );
602 assert( z[0]!=0 );
603 if( z[1]==0 ){
drhfa6bc002004-09-07 16:19:52 +0000604 /* Wildcard of the form "?". Assign the next variable number */
drhb7916a72009-05-27 10:31:29 +0000605 assert( z[0]=='?' );
drh8677d302009-11-04 13:17:14 +0000606 pExpr->iColumn = (ynVar)(++pParse->nVar);
drhfa6bc002004-09-07 16:19:52 +0000607 }else{
drh124c0b42011-06-01 18:15:55 +0000608 ynVar x = 0;
609 u32 n = sqlite3Strlen30(z);
610 if( z[0]=='?' ){
611 /* Wildcard of the form "?nnn". Convert "nnn" to an integer and
612 ** use it as the variable number */
613 i64 i;
614 int bOk = 0==sqlite3Atoi64(&z[1], &i, n-1, SQLITE_UTF8);
615 pExpr->iColumn = x = (ynVar)i;
616 testcase( i==0 );
617 testcase( i==1 );
618 testcase( i==db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER]-1 );
619 testcase( i==db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER] );
620 if( bOk==0 || i<1 || i>db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER] ){
621 sqlite3ErrorMsg(pParse, "variable number must be between ?1 and ?%d",
622 db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER]);
623 x = 0;
drhfa6bc002004-09-07 16:19:52 +0000624 }
drh124c0b42011-06-01 18:15:55 +0000625 if( i>pParse->nVar ){
626 pParse->nVar = (int)i;
627 }
628 }else{
629 /* Wildcards like ":aaa", "$aaa" or "@aaa". Reuse the same variable
630 ** number as the prior appearance of the same name, or if the name
631 ** has never appeared before, reuse the same variable number
632 */
633 ynVar i;
634 for(i=0; i<pParse->nzVar; i++){
drh503a6862013-03-01 01:07:17 +0000635 if( pParse->azVar[i] && strcmp(pParse->azVar[i],z)==0 ){
drh124c0b42011-06-01 18:15:55 +0000636 pExpr->iColumn = x = (ynVar)i+1;
637 break;
638 }
639 }
640 if( x==0 ) x = pExpr->iColumn = (ynVar)(++pParse->nVar);
drhfa6bc002004-09-07 16:19:52 +0000641 }
drh124c0b42011-06-01 18:15:55 +0000642 if( x>0 ){
643 if( x>pParse->nzVar ){
644 char **a;
645 a = sqlite3DbRealloc(db, pParse->azVar, x*sizeof(a[0]));
646 if( a==0 ) return; /* Error reported through db->mallocFailed */
647 pParse->azVar = a;
648 memset(&a[pParse->nzVar], 0, (x-pParse->nzVar)*sizeof(a[0]));
649 pParse->nzVar = x;
drhfa6bc002004-09-07 16:19:52 +0000650 }
drh124c0b42011-06-01 18:15:55 +0000651 if( z[0]!='?' || pParse->azVar[x-1]==0 ){
652 sqlite3DbFree(db, pParse->azVar[x-1]);
653 pParse->azVar[x-1] = sqlite3DbStrNDup(db, z, n);
drhfa6bc002004-09-07 16:19:52 +0000654 }
655 }
656 }
drhbb4957f2008-03-20 14:03:29 +0000657 if( !pParse->nErr && pParse->nVar>db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER] ){
danielk1977832b2662007-05-09 11:37:22 +0000658 sqlite3ErrorMsg(pParse, "too many SQL variables");
659 }
drhfa6bc002004-09-07 16:19:52 +0000660}
661
662/*
danf6963f92009-11-23 14:39:14 +0000663** Recursively delete an expression tree.
drha2e00042002-01-22 03:13:42 +0000664*/
danf6963f92009-11-23 14:39:14 +0000665void sqlite3ExprDelete(sqlite3 *db, Expr *p){
666 if( p==0 ) return;
drhd50ffc42011-03-08 02:38:28 +0000667 /* Sanity check: Assert that the IntValue is non-negative if it exists */
668 assert( !ExprHasProperty(p, EP_IntValue) || p->u.iValue>=0 );
drhb7916a72009-05-27 10:31:29 +0000669 if( !ExprHasAnyProperty(p, EP_TokenOnly) ){
drh33e619f2009-05-28 01:00:55 +0000670 sqlite3ExprDelete(db, p->pLeft);
671 sqlite3ExprDelete(db, p->pRight);
672 if( !ExprHasProperty(p, EP_Reduced) && (p->flags2 & EP2_MallocedToken)!=0 ){
673 sqlite3DbFree(db, p->u.zToken);
danielk19776ab3a2e2009-02-19 14:39:25 +0000674 }
675 if( ExprHasProperty(p, EP_xIsSelect) ){
676 sqlite3SelectDelete(db, p->x.pSelect);
677 }else{
678 sqlite3ExprListDelete(db, p->x.pList);
679 }
680 }
drh33e619f2009-05-28 01:00:55 +0000681 if( !ExprHasProperty(p, EP_Static) ){
682 sqlite3DbFree(db, p);
683 }
drha2e00042002-01-22 03:13:42 +0000684}
685
drhd2687b72005-08-12 22:56:09 +0000686/*
danielk19776ab3a2e2009-02-19 14:39:25 +0000687** Return the number of bytes allocated for the expression structure
688** passed as the first argument. This is always one of EXPR_FULLSIZE,
689** EXPR_REDUCEDSIZE or EXPR_TOKENONLYSIZE.
690*/
691static int exprStructSize(Expr *p){
692 if( ExprHasProperty(p, EP_TokenOnly) ) return EXPR_TOKENONLYSIZE;
danielk19776ab3a2e2009-02-19 14:39:25 +0000693 if( ExprHasProperty(p, EP_Reduced) ) return EXPR_REDUCEDSIZE;
694 return EXPR_FULLSIZE;
695}
696
697/*
drh33e619f2009-05-28 01:00:55 +0000698** The dupedExpr*Size() routines each return the number of bytes required
699** to store a copy of an expression or expression tree. They differ in
700** how much of the tree is measured.
701**
702** dupedExprStructSize() Size of only the Expr structure
703** dupedExprNodeSize() Size of Expr + space for token
704** dupedExprSize() Expr + token + subtree components
705**
706***************************************************************************
707**
708** The dupedExprStructSize() function returns two values OR-ed together:
709** (1) the space required for a copy of the Expr structure only and
710** (2) the EP_xxx flags that indicate what the structure size should be.
711** The return values is always one of:
712**
713** EXPR_FULLSIZE
714** EXPR_REDUCEDSIZE | EP_Reduced
715** EXPR_TOKENONLYSIZE | EP_TokenOnly
716**
717** The size of the structure can be found by masking the return value
718** of this routine with 0xfff. The flags can be found by masking the
719** return value with EP_Reduced|EP_TokenOnly.
720**
721** Note that with flags==EXPRDUP_REDUCE, this routines works on full-size
722** (unreduced) Expr objects as they or originally constructed by the parser.
723** During expression analysis, extra information is computed and moved into
724** later parts of teh Expr object and that extra information might get chopped
725** off if the expression is reduced. Note also that it does not work to
726** make a EXPRDUP_REDUCE copy of a reduced expression. It is only legal
727** to reduce a pristine expression tree from the parser. The implementation
728** of dupedExprStructSize() contain multiple assert() statements that attempt
729** to enforce this constraint.
danielk19776ab3a2e2009-02-19 14:39:25 +0000730*/
731static int dupedExprStructSize(Expr *p, int flags){
732 int nSize;
drh33e619f2009-05-28 01:00:55 +0000733 assert( flags==EXPRDUP_REDUCE || flags==0 ); /* Only one flag value allowed */
danielk19776ab3a2e2009-02-19 14:39:25 +0000734 if( 0==(flags&EXPRDUP_REDUCE) ){
735 nSize = EXPR_FULLSIZE;
danielk19776ab3a2e2009-02-19 14:39:25 +0000736 }else{
drh33e619f2009-05-28 01:00:55 +0000737 assert( !ExprHasAnyProperty(p, EP_TokenOnly|EP_Reduced) );
738 assert( !ExprHasProperty(p, EP_FromJoin) );
739 assert( (p->flags2 & EP2_MallocedToken)==0 );
740 assert( (p->flags2 & EP2_Irreducible)==0 );
drhae80dde2012-12-06 21:16:43 +0000741 if( p->pLeft || p->pRight || p->x.pList ){
drh33e619f2009-05-28 01:00:55 +0000742 nSize = EXPR_REDUCEDSIZE | EP_Reduced;
743 }else{
744 nSize = EXPR_TOKENONLYSIZE | EP_TokenOnly;
745 }
danielk19776ab3a2e2009-02-19 14:39:25 +0000746 }
747 return nSize;
748}
749
750/*
drh33e619f2009-05-28 01:00:55 +0000751** This function returns the space in bytes required to store the copy
752** of the Expr structure and a copy of the Expr.u.zToken string (if that
753** string is defined.)
danielk19776ab3a2e2009-02-19 14:39:25 +0000754*/
755static int dupedExprNodeSize(Expr *p, int flags){
drh33e619f2009-05-28 01:00:55 +0000756 int nByte = dupedExprStructSize(p, flags) & 0xfff;
757 if( !ExprHasProperty(p, EP_IntValue) && p->u.zToken ){
758 nByte += sqlite3Strlen30(p->u.zToken)+1;
danielk19776ab3a2e2009-02-19 14:39:25 +0000759 }
danielk1977bc739712009-03-23 04:33:32 +0000760 return ROUND8(nByte);
danielk19776ab3a2e2009-02-19 14:39:25 +0000761}
762
763/*
764** Return the number of bytes required to create a duplicate of the
765** expression passed as the first argument. The second argument is a
766** mask containing EXPRDUP_XXX flags.
767**
768** The value returned includes space to create a copy of the Expr struct
drh33e619f2009-05-28 01:00:55 +0000769** itself and the buffer referred to by Expr.u.zToken, if any.
danielk19776ab3a2e2009-02-19 14:39:25 +0000770**
771** If the EXPRDUP_REDUCE flag is set, then the return value includes
772** space to duplicate all Expr nodes in the tree formed by Expr.pLeft
773** and Expr.pRight variables (but not for any structures pointed to or
774** descended from the Expr.x.pList or Expr.x.pSelect variables).
775*/
776static int dupedExprSize(Expr *p, int flags){
777 int nByte = 0;
778 if( p ){
779 nByte = dupedExprNodeSize(p, flags);
780 if( flags&EXPRDUP_REDUCE ){
drhb7916a72009-05-27 10:31:29 +0000781 nByte += dupedExprSize(p->pLeft, flags) + dupedExprSize(p->pRight, flags);
danielk19776ab3a2e2009-02-19 14:39:25 +0000782 }
783 }
784 return nByte;
785}
786
787/*
788** This function is similar to sqlite3ExprDup(), except that if pzBuffer
789** is not NULL then *pzBuffer is assumed to point to a buffer large enough
drh33e619f2009-05-28 01:00:55 +0000790** to store the copy of expression p, the copies of p->u.zToken
danielk19776ab3a2e2009-02-19 14:39:25 +0000791** (if applicable), and the copies of the p->pLeft and p->pRight expressions,
792** if any. Before returning, *pzBuffer is set to the first byte passed the
793** portion of the buffer copied into by this function.
794*/
795static Expr *exprDup(sqlite3 *db, Expr *p, int flags, u8 **pzBuffer){
796 Expr *pNew = 0; /* Value to return */
797 if( p ){
danielk19776ab3a2e2009-02-19 14:39:25 +0000798 const int isReduced = (flags&EXPRDUP_REDUCE);
799 u8 *zAlloc;
drh33e619f2009-05-28 01:00:55 +0000800 u32 staticFlag = 0;
danielk19776ab3a2e2009-02-19 14:39:25 +0000801
802 assert( pzBuffer==0 || isReduced );
803
804 /* Figure out where to write the new Expr structure. */
805 if( pzBuffer ){
806 zAlloc = *pzBuffer;
drh33e619f2009-05-28 01:00:55 +0000807 staticFlag = EP_Static;
danielk19776ab3a2e2009-02-19 14:39:25 +0000808 }else{
809 zAlloc = sqlite3DbMallocRaw(db, dupedExprSize(p, flags));
810 }
811 pNew = (Expr *)zAlloc;
812
813 if( pNew ){
814 /* Set nNewSize to the size allocated for the structure pointed to
815 ** by pNew. This is either EXPR_FULLSIZE, EXPR_REDUCEDSIZE or
816 ** EXPR_TOKENONLYSIZE. nToken is set to the number of bytes consumed
drh33e619f2009-05-28 01:00:55 +0000817 ** by the copy of the p->u.zToken string (if any).
danielk19776ab3a2e2009-02-19 14:39:25 +0000818 */
drh33e619f2009-05-28 01:00:55 +0000819 const unsigned nStructSize = dupedExprStructSize(p, flags);
820 const int nNewSize = nStructSize & 0xfff;
821 int nToken;
822 if( !ExprHasProperty(p, EP_IntValue) && p->u.zToken ){
823 nToken = sqlite3Strlen30(p->u.zToken) + 1;
824 }else{
825 nToken = 0;
826 }
danielk19776ab3a2e2009-02-19 14:39:25 +0000827 if( isReduced ){
828 assert( ExprHasProperty(p, EP_Reduced)==0 );
829 memcpy(zAlloc, p, nNewSize);
830 }else{
831 int nSize = exprStructSize(p);
832 memcpy(zAlloc, p, nSize);
833 memset(&zAlloc[nSize], 0, EXPR_FULLSIZE-nSize);
834 }
835
drh33e619f2009-05-28 01:00:55 +0000836 /* Set the EP_Reduced, EP_TokenOnly, and EP_Static flags appropriately. */
837 pNew->flags &= ~(EP_Reduced|EP_TokenOnly|EP_Static);
838 pNew->flags |= nStructSize & (EP_Reduced|EP_TokenOnly);
839 pNew->flags |= staticFlag;
danielk19776ab3a2e2009-02-19 14:39:25 +0000840
drh33e619f2009-05-28 01:00:55 +0000841 /* Copy the p->u.zToken string, if any. */
danielk19776ab3a2e2009-02-19 14:39:25 +0000842 if( nToken ){
drh33e619f2009-05-28 01:00:55 +0000843 char *zToken = pNew->u.zToken = (char*)&zAlloc[nNewSize];
844 memcpy(zToken, p->u.zToken, nToken);
danielk19776ab3a2e2009-02-19 14:39:25 +0000845 }
846
847 if( 0==((p->flags|pNew->flags) & EP_TokenOnly) ){
danielk19776ab3a2e2009-02-19 14:39:25 +0000848 /* Fill in the pNew->x.pSelect or pNew->x.pList member. */
849 if( ExprHasProperty(p, EP_xIsSelect) ){
850 pNew->x.pSelect = sqlite3SelectDup(db, p->x.pSelect, isReduced);
851 }else{
852 pNew->x.pList = sqlite3ExprListDup(db, p->x.pList, isReduced);
853 }
854 }
855
856 /* Fill in pNew->pLeft and pNew->pRight. */
drhb7916a72009-05-27 10:31:29 +0000857 if( ExprHasAnyProperty(pNew, EP_Reduced|EP_TokenOnly) ){
danielk19776ab3a2e2009-02-19 14:39:25 +0000858 zAlloc += dupedExprNodeSize(p, flags);
859 if( ExprHasProperty(pNew, EP_Reduced) ){
860 pNew->pLeft = exprDup(db, p->pLeft, EXPRDUP_REDUCE, &zAlloc);
861 pNew->pRight = exprDup(db, p->pRight, EXPRDUP_REDUCE, &zAlloc);
862 }
863 if( pzBuffer ){
864 *pzBuffer = zAlloc;
865 }
drhb7916a72009-05-27 10:31:29 +0000866 }else{
867 pNew->flags2 = 0;
868 if( !ExprHasAnyProperty(p, EP_TokenOnly) ){
869 pNew->pLeft = sqlite3ExprDup(db, p->pLeft, 0);
870 pNew->pRight = sqlite3ExprDup(db, p->pRight, 0);
871 }
danielk19776ab3a2e2009-02-19 14:39:25 +0000872 }
drhb7916a72009-05-27 10:31:29 +0000873
danielk19776ab3a2e2009-02-19 14:39:25 +0000874 }
875 }
876 return pNew;
877}
878
879/*
drhff78bd22002-02-27 01:47:11 +0000880** The following group of routines make deep copies of expressions,
881** expression lists, ID lists, and select statements. The copies can
882** be deleted (by being passed to their respective ...Delete() routines)
883** without effecting the originals.
884**
danielk19774adee202004-05-08 08:23:19 +0000885** The expression list, ID, and source lists return by sqlite3ExprListDup(),
886** sqlite3IdListDup(), and sqlite3SrcListDup() can not be further expanded
drhad3cab52002-05-24 02:04:32 +0000887** by subsequent calls to sqlite*ListAppend() routines.
drhff78bd22002-02-27 01:47:11 +0000888**
drhad3cab52002-05-24 02:04:32 +0000889** Any tables that the SrcList might point to are not duplicated.
danielk19776ab3a2e2009-02-19 14:39:25 +0000890**
drhb7916a72009-05-27 10:31:29 +0000891** The flags parameter contains a combination of the EXPRDUP_XXX flags.
danielk19776ab3a2e2009-02-19 14:39:25 +0000892** If the EXPRDUP_REDUCE flag is set, then the structure returned is a
893** truncated version of the usual Expr structure that will be stored as
894** part of the in-memory representation of the database schema.
drhff78bd22002-02-27 01:47:11 +0000895*/
danielk19776ab3a2e2009-02-19 14:39:25 +0000896Expr *sqlite3ExprDup(sqlite3 *db, Expr *p, int flags){
897 return exprDup(db, p, flags, 0);
drhff78bd22002-02-27 01:47:11 +0000898}
danielk19776ab3a2e2009-02-19 14:39:25 +0000899ExprList *sqlite3ExprListDup(sqlite3 *db, ExprList *p, int flags){
drhff78bd22002-02-27 01:47:11 +0000900 ExprList *pNew;
drh145716b2004-09-24 12:24:06 +0000901 struct ExprList_item *pItem, *pOldItem;
drhff78bd22002-02-27 01:47:11 +0000902 int i;
903 if( p==0 ) return 0;
drh17435752007-08-16 04:30:38 +0000904 pNew = sqlite3DbMallocRaw(db, sizeof(*pNew) );
drhff78bd22002-02-27 01:47:11 +0000905 if( pNew==0 ) return 0;
danielk197731dad9d2007-08-16 11:36:15 +0000906 pNew->iECursor = 0;
drhd872bb12012-02-02 01:58:08 +0000907 pNew->nExpr = i = p->nExpr;
908 if( (flags & EXPRDUP_REDUCE)==0 ) for(i=1; i<p->nExpr; i+=i){}
909 pNew->a = pItem = sqlite3DbMallocRaw(db, i*sizeof(p->a[0]) );
danielk1977e0048402004-06-15 16:51:01 +0000910 if( pItem==0 ){
drh633e6d52008-07-28 19:34:53 +0000911 sqlite3DbFree(db, pNew);
danielk1977e0048402004-06-15 16:51:01 +0000912 return 0;
913 }
drh145716b2004-09-24 12:24:06 +0000914 pOldItem = p->a;
915 for(i=0; i<p->nExpr; i++, pItem++, pOldItem++){
danielk19776ab3a2e2009-02-19 14:39:25 +0000916 Expr *pOldExpr = pOldItem->pExpr;
drhb5526ea2009-07-16 12:41:05 +0000917 pItem->pExpr = sqlite3ExprDup(db, pOldExpr, flags);
drh17435752007-08-16 04:30:38 +0000918 pItem->zName = sqlite3DbStrDup(db, pOldItem->zName);
drhb7916a72009-05-27 10:31:29 +0000919 pItem->zSpan = sqlite3DbStrDup(db, pOldItem->zSpan);
drh145716b2004-09-24 12:24:06 +0000920 pItem->sortOrder = pOldItem->sortOrder;
drh3e7bc9c2004-02-21 19:17:17 +0000921 pItem->done = 0;
drh2c036cf2013-06-26 00:34:13 +0000922 pItem->bSpanIsTab = pOldItem->bSpanIsTab;
drh4b3ac732011-12-10 23:18:32 +0000923 pItem->iOrderByCol = pOldItem->iOrderByCol;
drh8b213892008-08-29 02:14:02 +0000924 pItem->iAlias = pOldItem->iAlias;
drhff78bd22002-02-27 01:47:11 +0000925 }
926 return pNew;
927}
danielk197793758c82005-01-21 08:13:14 +0000928
929/*
930** If cursors, triggers, views and subqueries are all omitted from
931** the build, then none of the following routines, except for
932** sqlite3SelectDup(), can be called. sqlite3SelectDup() is sometimes
933** called with a NULL argument.
934*/
danielk19776a67fe82005-02-04 04:07:16 +0000935#if !defined(SQLITE_OMIT_VIEW) || !defined(SQLITE_OMIT_TRIGGER) \
936 || !defined(SQLITE_OMIT_SUBQUERY)
danielk19776ab3a2e2009-02-19 14:39:25 +0000937SrcList *sqlite3SrcListDup(sqlite3 *db, SrcList *p, int flags){
drhad3cab52002-05-24 02:04:32 +0000938 SrcList *pNew;
939 int i;
drh113088e2003-03-20 01:16:58 +0000940 int nByte;
drhad3cab52002-05-24 02:04:32 +0000941 if( p==0 ) return 0;
drh113088e2003-03-20 01:16:58 +0000942 nByte = sizeof(*p) + (p->nSrc>0 ? sizeof(p->a[0]) * (p->nSrc-1) : 0);
drh17435752007-08-16 04:30:38 +0000943 pNew = sqlite3DbMallocRaw(db, nByte );
drhad3cab52002-05-24 02:04:32 +0000944 if( pNew==0 ) return 0;
drh4305d102003-07-30 12:34:12 +0000945 pNew->nSrc = pNew->nAlloc = p->nSrc;
drhad3cab52002-05-24 02:04:32 +0000946 for(i=0; i<p->nSrc; i++){
drh4efc4752004-01-16 15:55:37 +0000947 struct SrcList_item *pNewItem = &pNew->a[i];
948 struct SrcList_item *pOldItem = &p->a[i];
drhed8a3bb2005-06-06 21:19:56 +0000949 Table *pTab;
dan41fb5cd2012-10-04 19:33:00 +0000950 pNewItem->pSchema = pOldItem->pSchema;
drh17435752007-08-16 04:30:38 +0000951 pNewItem->zDatabase = sqlite3DbStrDup(db, pOldItem->zDatabase);
952 pNewItem->zName = sqlite3DbStrDup(db, pOldItem->zName);
953 pNewItem->zAlias = sqlite3DbStrDup(db, pOldItem->zAlias);
drh4efc4752004-01-16 15:55:37 +0000954 pNewItem->jointype = pOldItem->jointype;
955 pNewItem->iCursor = pOldItem->iCursor;
drh5b6a9ed2011-09-15 23:58:14 +0000956 pNewItem->addrFillSub = pOldItem->addrFillSub;
957 pNewItem->regReturn = pOldItem->regReturn;
danda79cf02011-07-08 16:10:54 +0000958 pNewItem->isCorrelated = pOldItem->isCorrelated;
drh21172c42012-10-30 00:29:07 +0000959 pNewItem->viaCoroutine = pOldItem->viaCoroutine;
danielk197785574e32008-10-06 05:32:18 +0000960 pNewItem->zIndex = sqlite3DbStrDup(db, pOldItem->zIndex);
961 pNewItem->notIndexed = pOldItem->notIndexed;
962 pNewItem->pIndex = pOldItem->pIndex;
drhed8a3bb2005-06-06 21:19:56 +0000963 pTab = pNewItem->pTab = pOldItem->pTab;
964 if( pTab ){
965 pTab->nRef++;
danielk1977a1cb1832005-02-12 08:59:55 +0000966 }
danielk19776ab3a2e2009-02-19 14:39:25 +0000967 pNewItem->pSelect = sqlite3SelectDup(db, pOldItem->pSelect, flags);
968 pNewItem->pOn = sqlite3ExprDup(db, pOldItem->pOn, flags);
drh17435752007-08-16 04:30:38 +0000969 pNewItem->pUsing = sqlite3IdListDup(db, pOldItem->pUsing);
danielk19776c18b6e2005-01-30 09:17:58 +0000970 pNewItem->colUsed = pOldItem->colUsed;
drhad3cab52002-05-24 02:04:32 +0000971 }
972 return pNew;
973}
drh17435752007-08-16 04:30:38 +0000974IdList *sqlite3IdListDup(sqlite3 *db, IdList *p){
drhff78bd22002-02-27 01:47:11 +0000975 IdList *pNew;
976 int i;
977 if( p==0 ) return 0;
drh17435752007-08-16 04:30:38 +0000978 pNew = sqlite3DbMallocRaw(db, sizeof(*pNew) );
drhff78bd22002-02-27 01:47:11 +0000979 if( pNew==0 ) return 0;
drh6c535152012-02-02 03:38:30 +0000980 pNew->nId = p->nId;
drh17435752007-08-16 04:30:38 +0000981 pNew->a = sqlite3DbMallocRaw(db, p->nId*sizeof(p->a[0]) );
danielk1977d5d56522005-03-16 12:15:20 +0000982 if( pNew->a==0 ){
drh633e6d52008-07-28 19:34:53 +0000983 sqlite3DbFree(db, pNew);
danielk1977d5d56522005-03-16 12:15:20 +0000984 return 0;
985 }
drh6c535152012-02-02 03:38:30 +0000986 /* Note that because the size of the allocation for p->a[] is not
987 ** necessarily a power of two, sqlite3IdListAppend() may not be called
988 ** on the duplicate created by this function. */
drhff78bd22002-02-27 01:47:11 +0000989 for(i=0; i<p->nId; i++){
drh4efc4752004-01-16 15:55:37 +0000990 struct IdList_item *pNewItem = &pNew->a[i];
991 struct IdList_item *pOldItem = &p->a[i];
drh17435752007-08-16 04:30:38 +0000992 pNewItem->zName = sqlite3DbStrDup(db, pOldItem->zName);
drh4efc4752004-01-16 15:55:37 +0000993 pNewItem->idx = pOldItem->idx;
drhff78bd22002-02-27 01:47:11 +0000994 }
995 return pNew;
996}
danielk19776ab3a2e2009-02-19 14:39:25 +0000997Select *sqlite3SelectDup(sqlite3 *db, Select *p, int flags){
drh23b1b372011-12-07 01:55:51 +0000998 Select *pNew, *pPrior;
drhff78bd22002-02-27 01:47:11 +0000999 if( p==0 ) return 0;
drh17435752007-08-16 04:30:38 +00001000 pNew = sqlite3DbMallocRaw(db, sizeof(*p) );
drhff78bd22002-02-27 01:47:11 +00001001 if( pNew==0 ) return 0;
drhb7916a72009-05-27 10:31:29 +00001002 pNew->pEList = sqlite3ExprListDup(db, p->pEList, flags);
danielk19776ab3a2e2009-02-19 14:39:25 +00001003 pNew->pSrc = sqlite3SrcListDup(db, p->pSrc, flags);
1004 pNew->pWhere = sqlite3ExprDup(db, p->pWhere, flags);
1005 pNew->pGroupBy = sqlite3ExprListDup(db, p->pGroupBy, flags);
1006 pNew->pHaving = sqlite3ExprDup(db, p->pHaving, flags);
1007 pNew->pOrderBy = sqlite3ExprListDup(db, p->pOrderBy, flags);
drhff78bd22002-02-27 01:47:11 +00001008 pNew->op = p->op;
drh23b1b372011-12-07 01:55:51 +00001009 pNew->pPrior = pPrior = sqlite3SelectDup(db, p->pPrior, flags);
1010 if( pPrior ) pPrior->pNext = pNew;
1011 pNew->pNext = 0;
danielk19776ab3a2e2009-02-19 14:39:25 +00001012 pNew->pLimit = sqlite3ExprDup(db, p->pLimit, flags);
1013 pNew->pOffset = sqlite3ExprDup(db, p->pOffset, flags);
drh92b01d52008-06-24 00:32:35 +00001014 pNew->iLimit = 0;
1015 pNew->iOffset = 0;
drh7d10d5a2008-08-20 16:35:10 +00001016 pNew->selFlags = p->selFlags & ~SF_UsesEphemeral;
drh0342b1f2005-09-01 03:07:44 +00001017 pNew->pRightmost = 0;
drhb9bb7c12006-06-11 23:41:55 +00001018 pNew->addrOpenEphm[0] = -1;
1019 pNew->addrOpenEphm[1] = -1;
1020 pNew->addrOpenEphm[2] = -1;
drhff78bd22002-02-27 01:47:11 +00001021 return pNew;
1022}
danielk197793758c82005-01-21 08:13:14 +00001023#else
danielk19776ab3a2e2009-02-19 14:39:25 +00001024Select *sqlite3SelectDup(sqlite3 *db, Select *p, int flags){
danielk197793758c82005-01-21 08:13:14 +00001025 assert( p==0 );
1026 return 0;
1027}
1028#endif
drhff78bd22002-02-27 01:47:11 +00001029
1030
1031/*
drha76b5df2002-02-23 02:32:10 +00001032** Add a new element to the end of an expression list. If pList is
1033** initially NULL, then create a new expression list.
drhb7916a72009-05-27 10:31:29 +00001034**
1035** If a memory allocation error occurs, the entire list is freed and
1036** NULL is returned. If non-NULL is returned, then it is guaranteed
1037** that the new entry was successfully appended.
drha76b5df2002-02-23 02:32:10 +00001038*/
drh17435752007-08-16 04:30:38 +00001039ExprList *sqlite3ExprListAppend(
1040 Parse *pParse, /* Parsing context */
1041 ExprList *pList, /* List to which to append. Might be NULL */
drhb7916a72009-05-27 10:31:29 +00001042 Expr *pExpr /* Expression to be appended. Might be NULL */
drh17435752007-08-16 04:30:38 +00001043){
1044 sqlite3 *db = pParse->db;
drha76b5df2002-02-23 02:32:10 +00001045 if( pList==0 ){
drh17435752007-08-16 04:30:38 +00001046 pList = sqlite3DbMallocZero(db, sizeof(ExprList) );
drha76b5df2002-02-23 02:32:10 +00001047 if( pList==0 ){
danielk1977d5d56522005-03-16 12:15:20 +00001048 goto no_mem;
drha76b5df2002-02-23 02:32:10 +00001049 }
drhd872bb12012-02-02 01:58:08 +00001050 pList->a = sqlite3DbMallocRaw(db, sizeof(pList->a[0]));
1051 if( pList->a==0 ) goto no_mem;
1052 }else if( (pList->nExpr & (pList->nExpr-1))==0 ){
danielk1977d5d56522005-03-16 12:15:20 +00001053 struct ExprList_item *a;
drhd872bb12012-02-02 01:58:08 +00001054 assert( pList->nExpr>0 );
1055 a = sqlite3DbRealloc(db, pList->a, pList->nExpr*2*sizeof(pList->a[0]));
danielk1977d5d56522005-03-16 12:15:20 +00001056 if( a==0 ){
1057 goto no_mem;
drha76b5df2002-02-23 02:32:10 +00001058 }
danielk1977d5d56522005-03-16 12:15:20 +00001059 pList->a = a;
drha76b5df2002-02-23 02:32:10 +00001060 }
drh4efc4752004-01-16 15:55:37 +00001061 assert( pList->a!=0 );
drhb7916a72009-05-27 10:31:29 +00001062 if( 1 ){
drh4efc4752004-01-16 15:55:37 +00001063 struct ExprList_item *pItem = &pList->a[pList->nExpr++];
1064 memset(pItem, 0, sizeof(*pItem));
danielk1977e94ddc92005-03-21 03:53:38 +00001065 pItem->pExpr = pExpr;
drha76b5df2002-02-23 02:32:10 +00001066 }
1067 return pList;
danielk1977d5d56522005-03-16 12:15:20 +00001068
1069no_mem:
1070 /* Avoid leaking memory if malloc has failed. */
drh633e6d52008-07-28 19:34:53 +00001071 sqlite3ExprDelete(db, pExpr);
1072 sqlite3ExprListDelete(db, pList);
danielk1977d5d56522005-03-16 12:15:20 +00001073 return 0;
drha76b5df2002-02-23 02:32:10 +00001074}
1075
1076/*
drhb7916a72009-05-27 10:31:29 +00001077** Set the ExprList.a[].zName element of the most recently added item
1078** on the expression list.
1079**
1080** pList might be NULL following an OOM error. But pName should never be
1081** NULL. If a memory allocation fails, the pParse->db->mallocFailed flag
1082** is set.
1083*/
1084void sqlite3ExprListSetName(
1085 Parse *pParse, /* Parsing context */
1086 ExprList *pList, /* List to which to add the span. */
1087 Token *pName, /* Name to be added */
1088 int dequote /* True to cause the name to be dequoted */
1089){
1090 assert( pList!=0 || pParse->db->mallocFailed!=0 );
1091 if( pList ){
1092 struct ExprList_item *pItem;
1093 assert( pList->nExpr>0 );
1094 pItem = &pList->a[pList->nExpr-1];
1095 assert( pItem->zName==0 );
1096 pItem->zName = sqlite3DbStrNDup(pParse->db, pName->z, pName->n);
1097 if( dequote && pItem->zName ) sqlite3Dequote(pItem->zName);
1098 }
1099}
1100
1101/*
1102** Set the ExprList.a[].zSpan element of the most recently added item
1103** on the expression list.
1104**
1105** pList might be NULL following an OOM error. But pSpan should never be
1106** NULL. If a memory allocation fails, the pParse->db->mallocFailed flag
1107** is set.
1108*/
1109void sqlite3ExprListSetSpan(
1110 Parse *pParse, /* Parsing context */
1111 ExprList *pList, /* List to which to add the span. */
1112 ExprSpan *pSpan /* The span to be added */
1113){
1114 sqlite3 *db = pParse->db;
1115 assert( pList!=0 || db->mallocFailed!=0 );
1116 if( pList ){
1117 struct ExprList_item *pItem = &pList->a[pList->nExpr-1];
1118 assert( pList->nExpr>0 );
1119 assert( db->mallocFailed || pItem->pExpr==pSpan->pExpr );
1120 sqlite3DbFree(db, pItem->zSpan);
1121 pItem->zSpan = sqlite3DbStrNDup(db, (char*)pSpan->zStart,
shanecf697392009-06-01 16:53:09 +00001122 (int)(pSpan->zEnd - pSpan->zStart));
drhb7916a72009-05-27 10:31:29 +00001123 }
1124}
1125
1126/*
danielk19777a15a4b2007-05-08 17:54:43 +00001127** If the expression list pEList contains more than iLimit elements,
1128** leave an error message in pParse.
1129*/
1130void sqlite3ExprListCheckLength(
1131 Parse *pParse,
1132 ExprList *pEList,
danielk19777a15a4b2007-05-08 17:54:43 +00001133 const char *zObject
1134){
drhb1a6c3c2008-03-20 16:30:17 +00001135 int mx = pParse->db->aLimit[SQLITE_LIMIT_COLUMN];
drhc5499be2008-04-01 15:06:33 +00001136 testcase( pEList && pEList->nExpr==mx );
1137 testcase( pEList && pEList->nExpr==mx+1 );
drhb1a6c3c2008-03-20 16:30:17 +00001138 if( pEList && pEList->nExpr>mx ){
danielk19777a15a4b2007-05-08 17:54:43 +00001139 sqlite3ErrorMsg(pParse, "too many columns in %s", zObject);
1140 }
1141}
1142
1143/*
drha76b5df2002-02-23 02:32:10 +00001144** Delete an entire expression list.
1145*/
drh633e6d52008-07-28 19:34:53 +00001146void sqlite3ExprListDelete(sqlite3 *db, ExprList *pList){
drha76b5df2002-02-23 02:32:10 +00001147 int i;
drhbe5c89a2004-07-26 00:31:09 +00001148 struct ExprList_item *pItem;
drha76b5df2002-02-23 02:32:10 +00001149 if( pList==0 ) return;
drhd872bb12012-02-02 01:58:08 +00001150 assert( pList->a!=0 || pList->nExpr==0 );
drhbe5c89a2004-07-26 00:31:09 +00001151 for(pItem=pList->a, i=0; i<pList->nExpr; i++, pItem++){
drh633e6d52008-07-28 19:34:53 +00001152 sqlite3ExprDelete(db, pItem->pExpr);
1153 sqlite3DbFree(db, pItem->zName);
drhb7916a72009-05-27 10:31:29 +00001154 sqlite3DbFree(db, pItem->zSpan);
drha76b5df2002-02-23 02:32:10 +00001155 }
drh633e6d52008-07-28 19:34:53 +00001156 sqlite3DbFree(db, pList->a);
1157 sqlite3DbFree(db, pList);
drha76b5df2002-02-23 02:32:10 +00001158}
1159
1160/*
drh7d10d5a2008-08-20 16:35:10 +00001161** These routines are Walker callbacks. Walker.u.pi is a pointer
1162** to an integer. These routines are checking an expression to see
1163** if it is a constant. Set *Walker.u.pi to 0 if the expression is
1164** not constant.
drh73b211a2005-01-18 04:00:42 +00001165**
drh7d10d5a2008-08-20 16:35:10 +00001166** These callback routines are used to implement the following:
drh626a8792005-01-17 22:08:19 +00001167**
drh7d10d5a2008-08-20 16:35:10 +00001168** sqlite3ExprIsConstant()
1169** sqlite3ExprIsConstantNotJoin()
1170** sqlite3ExprIsConstantOrFunction()
drh87abf5c2005-08-25 12:45:04 +00001171**
drh626a8792005-01-17 22:08:19 +00001172*/
drh7d10d5a2008-08-20 16:35:10 +00001173static int exprNodeIsConstant(Walker *pWalker, Expr *pExpr){
drh626a8792005-01-17 22:08:19 +00001174
drh7d10d5a2008-08-20 16:35:10 +00001175 /* If pWalker->u.i is 3 then any term of the expression that comes from
drh0a168372007-06-08 00:20:47 +00001176 ** the ON or USING clauses of a join disqualifies the expression
1177 ** from being considered constant. */
drh7d10d5a2008-08-20 16:35:10 +00001178 if( pWalker->u.i==3 && ExprHasAnyProperty(pExpr, EP_FromJoin) ){
1179 pWalker->u.i = 0;
1180 return WRC_Abort;
drh0a168372007-06-08 00:20:47 +00001181 }
1182
drh626a8792005-01-17 22:08:19 +00001183 switch( pExpr->op ){
drheb55bd22005-06-30 17:04:21 +00001184 /* Consider functions to be constant if all their arguments are constant
drh7d10d5a2008-08-20 16:35:10 +00001185 ** and pWalker->u.i==2 */
drheb55bd22005-06-30 17:04:21 +00001186 case TK_FUNCTION:
drh7d10d5a2008-08-20 16:35:10 +00001187 if( pWalker->u.i==2 ) return 0;
drheb55bd22005-06-30 17:04:21 +00001188 /* Fall through */
drh626a8792005-01-17 22:08:19 +00001189 case TK_ID:
1190 case TK_COLUMN:
drh626a8792005-01-17 22:08:19 +00001191 case TK_AGG_FUNCTION:
drh13449892005-09-07 21:22:45 +00001192 case TK_AGG_COLUMN:
drhc5499be2008-04-01 15:06:33 +00001193 testcase( pExpr->op==TK_ID );
1194 testcase( pExpr->op==TK_COLUMN );
drhc5499be2008-04-01 15:06:33 +00001195 testcase( pExpr->op==TK_AGG_FUNCTION );
1196 testcase( pExpr->op==TK_AGG_COLUMN );
drh7d10d5a2008-08-20 16:35:10 +00001197 pWalker->u.i = 0;
1198 return WRC_Abort;
drh626a8792005-01-17 22:08:19 +00001199 default:
drhb74b1012009-05-28 21:04:37 +00001200 testcase( pExpr->op==TK_SELECT ); /* selectNodeIsConstant will disallow */
1201 testcase( pExpr->op==TK_EXISTS ); /* selectNodeIsConstant will disallow */
drh7d10d5a2008-08-20 16:35:10 +00001202 return WRC_Continue;
drh626a8792005-01-17 22:08:19 +00001203 }
1204}
danielk197762c14b32008-11-19 09:05:26 +00001205static int selectNodeIsConstant(Walker *pWalker, Select *NotUsed){
1206 UNUSED_PARAMETER(NotUsed);
drh7d10d5a2008-08-20 16:35:10 +00001207 pWalker->u.i = 0;
1208 return WRC_Abort;
1209}
1210static int exprIsConst(Expr *p, int initFlag){
1211 Walker w;
drhaa87f9a2013-04-25 00:57:10 +00001212 memset(&w, 0, sizeof(w));
drh7d10d5a2008-08-20 16:35:10 +00001213 w.u.i = initFlag;
1214 w.xExprCallback = exprNodeIsConstant;
1215 w.xSelectCallback = selectNodeIsConstant;
1216 sqlite3WalkExpr(&w, p);
1217 return w.u.i;
1218}
drh626a8792005-01-17 22:08:19 +00001219
1220/*
drhfef52082000-06-06 01:50:43 +00001221** Walk an expression tree. Return 1 if the expression is constant
drheb55bd22005-06-30 17:04:21 +00001222** and 0 if it involves variables or function calls.
drh23989372002-05-21 13:43:04 +00001223**
1224** For the purposes of this function, a double-quoted string (ex: "abc")
1225** is considered a variable but a single-quoted string (ex: 'abc') is
1226** a constant.
drhfef52082000-06-06 01:50:43 +00001227*/
danielk19774adee202004-05-08 08:23:19 +00001228int sqlite3ExprIsConstant(Expr *p){
drh7d10d5a2008-08-20 16:35:10 +00001229 return exprIsConst(p, 1);
drhfef52082000-06-06 01:50:43 +00001230}
1231
1232/*
drheb55bd22005-06-30 17:04:21 +00001233** Walk an expression tree. Return 1 if the expression is constant
drh0a168372007-06-08 00:20:47 +00001234** that does no originate from the ON or USING clauses of a join.
1235** Return 0 if it involves variables or function calls or terms from
1236** an ON or USING clause.
1237*/
1238int sqlite3ExprIsConstantNotJoin(Expr *p){
drh7d10d5a2008-08-20 16:35:10 +00001239 return exprIsConst(p, 3);
drh0a168372007-06-08 00:20:47 +00001240}
1241
1242/*
1243** Walk an expression tree. Return 1 if the expression is constant
drheb55bd22005-06-30 17:04:21 +00001244** or a function call with constant arguments. Return and 0 if there
1245** are any variables.
1246**
1247** For the purposes of this function, a double-quoted string (ex: "abc")
1248** is considered a variable but a single-quoted string (ex: 'abc') is
1249** a constant.
1250*/
1251int sqlite3ExprIsConstantOrFunction(Expr *p){
drh7d10d5a2008-08-20 16:35:10 +00001252 return exprIsConst(p, 2);
drheb55bd22005-06-30 17:04:21 +00001253}
1254
1255/*
drh73b211a2005-01-18 04:00:42 +00001256** If the expression p codes a constant integer that is small enough
drh202b2df2004-01-06 01:13:46 +00001257** to fit in a 32-bit integer, return 1 and put the value of the integer
1258** in *pValue. If the expression is not an integer or if it is too big
1259** to fit in a signed 32-bit integer, return 0 and leave *pValue unchanged.
drhe4de1fe2002-06-02 16:09:01 +00001260*/
danielk19774adee202004-05-08 08:23:19 +00001261int sqlite3ExprIsInteger(Expr *p, int *pValue){
drh92b01d52008-06-24 00:32:35 +00001262 int rc = 0;
drhcd92e842011-02-17 15:58:20 +00001263
1264 /* If an expression is an integer literal that fits in a signed 32-bit
1265 ** integer, then the EP_IntValue flag will have already been set */
1266 assert( p->op!=TK_INTEGER || (p->flags & EP_IntValue)!=0
1267 || sqlite3GetInt32(p->u.zToken, &rc)==0 );
1268
drh92b01d52008-06-24 00:32:35 +00001269 if( p->flags & EP_IntValue ){
drh33e619f2009-05-28 01:00:55 +00001270 *pValue = p->u.iValue;
drh92b01d52008-06-24 00:32:35 +00001271 return 1;
1272 }
drhe4de1fe2002-06-02 16:09:01 +00001273 switch( p->op ){
drh4b59ab52002-08-24 18:24:51 +00001274 case TK_UPLUS: {
drh92b01d52008-06-24 00:32:35 +00001275 rc = sqlite3ExprIsInteger(p->pLeft, pValue);
drhf6e369a2008-06-24 12:46:30 +00001276 break;
drh4b59ab52002-08-24 18:24:51 +00001277 }
drhe4de1fe2002-06-02 16:09:01 +00001278 case TK_UMINUS: {
1279 int v;
danielk19774adee202004-05-08 08:23:19 +00001280 if( sqlite3ExprIsInteger(p->pLeft, &v) ){
mistachkinf6418892013-08-28 01:54:12 +00001281 assert( v!=(-2147483647-1) );
drhe4de1fe2002-06-02 16:09:01 +00001282 *pValue = -v;
drh92b01d52008-06-24 00:32:35 +00001283 rc = 1;
drhe4de1fe2002-06-02 16:09:01 +00001284 }
1285 break;
1286 }
1287 default: break;
1288 }
drh92b01d52008-06-24 00:32:35 +00001289 return rc;
drhe4de1fe2002-06-02 16:09:01 +00001290}
1291
1292/*
drh039fc322009-11-17 18:31:47 +00001293** Return FALSE if there is no chance that the expression can be NULL.
1294**
1295** If the expression might be NULL or if the expression is too complex
1296** to tell return TRUE.
1297**
1298** This routine is used as an optimization, to skip OP_IsNull opcodes
1299** when we know that a value cannot be NULL. Hence, a false positive
1300** (returning TRUE when in fact the expression can never be NULL) might
1301** be a small performance hit but is otherwise harmless. On the other
1302** hand, a false negative (returning FALSE when the result could be NULL)
1303** will likely result in an incorrect answer. So when in doubt, return
1304** TRUE.
1305*/
1306int sqlite3ExprCanBeNull(const Expr *p){
1307 u8 op;
drhcd7f4572009-11-19 14:48:40 +00001308 while( p->op==TK_UPLUS || p->op==TK_UMINUS ){ p = p->pLeft; }
drh039fc322009-11-17 18:31:47 +00001309 op = p->op;
1310 if( op==TK_REGISTER ) op = p->op2;
1311 switch( op ){
1312 case TK_INTEGER:
1313 case TK_STRING:
1314 case TK_FLOAT:
1315 case TK_BLOB:
1316 return 0;
1317 default:
1318 return 1;
1319 }
1320}
1321
1322/*
drh2f2855b2009-11-18 01:25:26 +00001323** Generate an OP_IsNull instruction that tests register iReg and jumps
1324** to location iDest if the value in iReg is NULL. The value in iReg
1325** was computed by pExpr. If we can look at pExpr at compile-time and
1326** determine that it can never generate a NULL, then the OP_IsNull operation
1327** can be omitted.
1328*/
1329void sqlite3ExprCodeIsNullJump(
1330 Vdbe *v, /* The VDBE under construction */
1331 const Expr *pExpr, /* Only generate OP_IsNull if this expr can be NULL */
1332 int iReg, /* Test the value in this register for NULL */
1333 int iDest /* Jump here if the value is null */
1334){
1335 if( sqlite3ExprCanBeNull(pExpr) ){
1336 sqlite3VdbeAddOp2(v, OP_IsNull, iReg, iDest);
1337 }
1338}
1339
1340/*
drh039fc322009-11-17 18:31:47 +00001341** Return TRUE if the given expression is a constant which would be
1342** unchanged by OP_Affinity with the affinity given in the second
1343** argument.
1344**
1345** This routine is used to determine if the OP_Affinity operation
1346** can be omitted. When in doubt return FALSE. A false negative
1347** is harmless. A false positive, however, can result in the wrong
1348** answer.
1349*/
1350int sqlite3ExprNeedsNoAffinityChange(const Expr *p, char aff){
1351 u8 op;
1352 if( aff==SQLITE_AFF_NONE ) return 1;
drhcd7f4572009-11-19 14:48:40 +00001353 while( p->op==TK_UPLUS || p->op==TK_UMINUS ){ p = p->pLeft; }
drh039fc322009-11-17 18:31:47 +00001354 op = p->op;
1355 if( op==TK_REGISTER ) op = p->op2;
1356 switch( op ){
1357 case TK_INTEGER: {
1358 return aff==SQLITE_AFF_INTEGER || aff==SQLITE_AFF_NUMERIC;
1359 }
1360 case TK_FLOAT: {
1361 return aff==SQLITE_AFF_REAL || aff==SQLITE_AFF_NUMERIC;
1362 }
1363 case TK_STRING: {
1364 return aff==SQLITE_AFF_TEXT;
1365 }
1366 case TK_BLOB: {
1367 return 1;
1368 }
drh2f2855b2009-11-18 01:25:26 +00001369 case TK_COLUMN: {
drh88376ca2009-11-19 15:44:53 +00001370 assert( p->iTable>=0 ); /* p cannot be part of a CHECK constraint */
1371 return p->iColumn<0
1372 && (aff==SQLITE_AFF_INTEGER || aff==SQLITE_AFF_NUMERIC);
drh2f2855b2009-11-18 01:25:26 +00001373 }
drh039fc322009-11-17 18:31:47 +00001374 default: {
1375 return 0;
1376 }
1377 }
1378}
1379
1380/*
drhc4a3c772001-04-04 11:48:57 +00001381** Return TRUE if the given string is a row-id column name.
1382*/
danielk19774adee202004-05-08 08:23:19 +00001383int sqlite3IsRowid(const char *z){
1384 if( sqlite3StrICmp(z, "_ROWID_")==0 ) return 1;
1385 if( sqlite3StrICmp(z, "ROWID")==0 ) return 1;
1386 if( sqlite3StrICmp(z, "OID")==0 ) return 1;
drhc4a3c772001-04-04 11:48:57 +00001387 return 0;
1388}
1389
danielk19779a96b662007-11-29 17:05:18 +00001390/*
drhb74b1012009-05-28 21:04:37 +00001391** Return true if we are able to the IN operator optimization on a
1392** query of the form
drhb287f4b2008-04-25 00:08:38 +00001393**
drhb74b1012009-05-28 21:04:37 +00001394** x IN (SELECT ...)
drhb287f4b2008-04-25 00:08:38 +00001395**
drhb74b1012009-05-28 21:04:37 +00001396** Where the SELECT... clause is as specified by the parameter to this
1397** routine.
1398**
1399** The Select object passed in has already been preprocessed and no
1400** errors have been found.
drhb287f4b2008-04-25 00:08:38 +00001401*/
1402#ifndef SQLITE_OMIT_SUBQUERY
1403static int isCandidateForInOpt(Select *p){
1404 SrcList *pSrc;
1405 ExprList *pEList;
1406 Table *pTab;
drhb287f4b2008-04-25 00:08:38 +00001407 if( p==0 ) return 0; /* right-hand side of IN is SELECT */
1408 if( p->pPrior ) return 0; /* Not a compound SELECT */
drh7d10d5a2008-08-20 16:35:10 +00001409 if( p->selFlags & (SF_Distinct|SF_Aggregate) ){
drhb74b1012009-05-28 21:04:37 +00001410 testcase( (p->selFlags & (SF_Distinct|SF_Aggregate))==SF_Distinct );
1411 testcase( (p->selFlags & (SF_Distinct|SF_Aggregate))==SF_Aggregate );
1412 return 0; /* No DISTINCT keyword and no aggregate functions */
drh7d10d5a2008-08-20 16:35:10 +00001413 }
drhb74b1012009-05-28 21:04:37 +00001414 assert( p->pGroupBy==0 ); /* Has no GROUP BY clause */
drhb287f4b2008-04-25 00:08:38 +00001415 if( p->pLimit ) return 0; /* Has no LIMIT clause */
drhb74b1012009-05-28 21:04:37 +00001416 assert( p->pOffset==0 ); /* No LIMIT means no OFFSET */
drhb287f4b2008-04-25 00:08:38 +00001417 if( p->pWhere ) return 0; /* Has no WHERE clause */
1418 pSrc = p->pSrc;
drhd1fa7bc2009-01-10 13:24:50 +00001419 assert( pSrc!=0 );
1420 if( pSrc->nSrc!=1 ) return 0; /* Single term in FROM clause */
drhb74b1012009-05-28 21:04:37 +00001421 if( pSrc->a[0].pSelect ) return 0; /* FROM is not a subquery or view */
drhb287f4b2008-04-25 00:08:38 +00001422 pTab = pSrc->a[0].pTab;
drhb74b1012009-05-28 21:04:37 +00001423 if( NEVER(pTab==0) ) return 0;
1424 assert( pTab->pSelect==0 ); /* FROM clause is not a view */
drhb287f4b2008-04-25 00:08:38 +00001425 if( IsVirtual(pTab) ) return 0; /* FROM clause not a virtual table */
1426 pEList = p->pEList;
1427 if( pEList->nExpr!=1 ) return 0; /* One column in the result set */
1428 if( pEList->a[0].pExpr->op!=TK_COLUMN ) return 0; /* Result is a column */
1429 return 1;
1430}
1431#endif /* SQLITE_OMIT_SUBQUERY */
1432
1433/*
dan1d8cb212011-12-09 13:24:16 +00001434** Code an OP_Once instruction and allocate space for its flag. Return the
1435** address of the new instruction.
1436*/
1437int sqlite3CodeOnce(Parse *pParse){
1438 Vdbe *v = sqlite3GetVdbe(pParse); /* Virtual machine being coded */
1439 return sqlite3VdbeAddOp1(v, OP_Once, pParse->nOnce++);
1440}
1441
1442/*
danielk19779a96b662007-11-29 17:05:18 +00001443** This function is used by the implementation of the IN (...) operator.
drhd4305ca2012-09-18 17:08:33 +00001444** The pX parameter is the expression on the RHS of the IN operator, which
1445** might be either a list of expressions or a subquery.
danielk19779a96b662007-11-29 17:05:18 +00001446**
drhd4305ca2012-09-18 17:08:33 +00001447** The job of this routine is to find or create a b-tree object that can
1448** be used either to test for membership in the RHS set or to iterate through
1449** all members of the RHS set, skipping duplicates.
1450**
1451** A cursor is opened on the b-tree object that the RHS of the IN operator
1452** and pX->iTable is set to the index of that cursor.
1453**
drhb74b1012009-05-28 21:04:37 +00001454** The returned value of this function indicates the b-tree type, as follows:
danielk19779a96b662007-11-29 17:05:18 +00001455**
drh1ccce442013-03-12 20:38:51 +00001456** IN_INDEX_ROWID - The cursor was opened on a database table.
1457** IN_INDEX_INDEX_ASC - The cursor was opened on an ascending index.
1458** IN_INDEX_INDEX_DESC - The cursor was opened on a descending index.
1459** IN_INDEX_EPH - The cursor was opened on a specially created and
1460** populated epheremal table.
danielk19779a96b662007-11-29 17:05:18 +00001461**
drhd4305ca2012-09-18 17:08:33 +00001462** An existing b-tree might be used if the RHS expression pX is a simple
1463** subquery such as:
danielk19779a96b662007-11-29 17:05:18 +00001464**
1465** SELECT <column> FROM <table>
1466**
drhd4305ca2012-09-18 17:08:33 +00001467** If the RHS of the IN operator is a list or a more complex subquery, then
1468** an ephemeral table might need to be generated from the RHS and then
1469** pX->iTable made to point to the ephermeral table instead of an
1470** existing table.
1471**
drhb74b1012009-05-28 21:04:37 +00001472** If the prNotFound parameter is 0, then the b-tree will be used to iterate
danielk19779a96b662007-11-29 17:05:18 +00001473** through the set members, skipping any duplicates. In this case an
1474** epheremal table must be used unless the selected <column> is guaranteed
1475** to be unique - either because it is an INTEGER PRIMARY KEY or it
drhb74b1012009-05-28 21:04:37 +00001476** has a UNIQUE constraint or UNIQUE index.
danielk19770cdc0222008-06-26 18:04:03 +00001477**
drhb74b1012009-05-28 21:04:37 +00001478** If the prNotFound parameter is not 0, then the b-tree will be used
danielk19770cdc0222008-06-26 18:04:03 +00001479** for fast set membership tests. In this case an epheremal table must
1480** be used unless <column> is an INTEGER PRIMARY KEY or an index can
1481** be found with <column> as its left-most column.
1482**
drhb74b1012009-05-28 21:04:37 +00001483** When the b-tree is being used for membership tests, the calling function
danielk19770cdc0222008-06-26 18:04:03 +00001484** needs to know whether or not the structure contains an SQL NULL
1485** value in order to correctly evaluate expressions like "X IN (Y, Z)".
drhe3365e62009-11-12 17:52:24 +00001486** If there is any chance that the (...) might contain a NULL value at
danielk19770cdc0222008-06-26 18:04:03 +00001487** runtime, then a register is allocated and the register number written
drhe3365e62009-11-12 17:52:24 +00001488** to *prNotFound. If there is no chance that the (...) contains a
danielk19770cdc0222008-06-26 18:04:03 +00001489** NULL value, then *prNotFound is left unchanged.
1490**
1491** If a register is allocated and its location stored in *prNotFound, then
drhe3365e62009-11-12 17:52:24 +00001492** its initial value is NULL. If the (...) does not remain constant
1493** for the duration of the query (i.e. the SELECT within the (...)
drhb74b1012009-05-28 21:04:37 +00001494** is a correlated subquery) then the value of the allocated register is
drhe3365e62009-11-12 17:52:24 +00001495** reset to NULL each time the subquery is rerun. This allows the
drhb74b1012009-05-28 21:04:37 +00001496** caller to use vdbe code equivalent to the following:
danielk19770cdc0222008-06-26 18:04:03 +00001497**
1498** if( register==NULL ){
1499** has_null = <test if data structure contains null>
1500** register = 1
1501** }
1502**
1503** in order to avoid running the <test if data structure contains null>
1504** test more often than is necessary.
danielk19779a96b662007-11-29 17:05:18 +00001505*/
danielk1977284f4ac2007-12-10 05:03:46 +00001506#ifndef SQLITE_OMIT_SUBQUERY
danielk19770cdc0222008-06-26 18:04:03 +00001507int sqlite3FindInIndex(Parse *pParse, Expr *pX, int *prNotFound){
drhb74b1012009-05-28 21:04:37 +00001508 Select *p; /* SELECT to the right of IN operator */
1509 int eType = 0; /* Type of RHS table. IN_INDEX_* */
1510 int iTab = pParse->nTab++; /* Cursor of the RHS table */
1511 int mustBeUnique = (prNotFound==0); /* True if RHS must be unique */
drhb8475df2011-12-09 16:21:19 +00001512 Vdbe *v = sqlite3GetVdbe(pParse); /* Virtual machine being coded */
danielk19779a96b662007-11-29 17:05:18 +00001513
drh1450bc62009-10-30 13:25:56 +00001514 assert( pX->op==TK_IN );
1515
drhb74b1012009-05-28 21:04:37 +00001516 /* Check to see if an existing table or index can be used to
1517 ** satisfy the query. This is preferable to generating a new
1518 ** ephemeral table.
danielk19779a96b662007-11-29 17:05:18 +00001519 */
danielk19776ab3a2e2009-02-19 14:39:25 +00001520 p = (ExprHasProperty(pX, EP_xIsSelect) ? pX->x.pSelect : 0);
drhfd773cf2009-05-29 14:39:07 +00001521 if( ALWAYS(pParse->nErr==0) && isCandidateForInOpt(p) ){
danielk1977e1fb65a2009-04-02 17:23:32 +00001522 sqlite3 *db = pParse->db; /* Database connection */
drhb07028f2011-10-14 21:49:18 +00001523 Table *pTab; /* Table <table>. */
1524 Expr *pExpr; /* Expression <column> */
1525 int iCol; /* Index of column <column> */
danielk1977e1fb65a2009-04-02 17:23:32 +00001526 int iDb; /* Database idx for pTab */
drhb07028f2011-10-14 21:49:18 +00001527
1528 assert( p ); /* Because of isCandidateForInOpt(p) */
1529 assert( p->pEList!=0 ); /* Because of isCandidateForInOpt(p) */
1530 assert( p->pEList->a[0].pExpr!=0 ); /* Because of isCandidateForInOpt(p) */
1531 assert( p->pSrc!=0 ); /* Because of isCandidateForInOpt(p) */
1532 pTab = p->pSrc->a[0].pTab;
1533 pExpr = p->pEList->a[0].pExpr;
1534 iCol = pExpr->iColumn;
danielk1977e1fb65a2009-04-02 17:23:32 +00001535
1536 /* Code an OP_VerifyCookie and OP_TableLock for <table>. */
1537 iDb = sqlite3SchemaToIndex(db, pTab->pSchema);
1538 sqlite3CodeVerifySchema(pParse, iDb);
1539 sqlite3TableLock(pParse, iDb, pTab->tnum, 0, pTab->zName);
danielk19779a96b662007-11-29 17:05:18 +00001540
1541 /* This function is only called from two places. In both cases the vdbe
1542 ** has already been allocated. So assume sqlite3GetVdbe() is always
1543 ** successful here.
1544 */
1545 assert(v);
1546 if( iCol<0 ){
danielk19779a96b662007-11-29 17:05:18 +00001547 int iAddr;
danielk19779a96b662007-11-29 17:05:18 +00001548
dan1d8cb212011-12-09 13:24:16 +00001549 iAddr = sqlite3CodeOnce(pParse);
danielk19779a96b662007-11-29 17:05:18 +00001550
1551 sqlite3OpenTable(pParse, iTab, iDb, pTab, OP_OpenRead);
1552 eType = IN_INDEX_ROWID;
1553
1554 sqlite3VdbeJumpHere(v, iAddr);
1555 }else{
danielk1977e1fb65a2009-04-02 17:23:32 +00001556 Index *pIdx; /* Iterator variable */
1557
drhb74b1012009-05-28 21:04:37 +00001558 /* The collation sequence used by the comparison. If an index is to
danielk19779a96b662007-11-29 17:05:18 +00001559 ** be used in place of a temp-table, it must be ordered according
danielk1977e1fb65a2009-04-02 17:23:32 +00001560 ** to this collation sequence. */
danielk19779a96b662007-11-29 17:05:18 +00001561 CollSeq *pReq = sqlite3BinaryCompareCollSeq(pParse, pX->pLeft, pExpr);
1562
1563 /* Check that the affinity that will be used to perform the
1564 ** comparison is the same as the affinity of the column. If
1565 ** it is not, it is not possible to use any index.
1566 */
drhdbaee5e2012-09-18 19:29:06 +00001567 int affinity_ok = sqlite3IndexAffinityOk(pX, pTab->aCol[iCol].affinity);
danielk19779a96b662007-11-29 17:05:18 +00001568
1569 for(pIdx=pTab->pIndex; pIdx && eType==0 && affinity_ok; pIdx=pIdx->pNext){
1570 if( (pIdx->aiColumn[0]==iCol)
drhb74b1012009-05-28 21:04:37 +00001571 && sqlite3FindCollSeq(db, ENC(db), pIdx->azColl[0], 0)==pReq
danielk19779a96b662007-11-29 17:05:18 +00001572 && (!mustBeUnique || (pIdx->nColumn==1 && pIdx->onError!=OE_None))
1573 ){
danielk19779a96b662007-11-29 17:05:18 +00001574 int iAddr;
1575 char *pKey;
1576
1577 pKey = (char *)sqlite3IndexKeyinfo(pParse, pIdx);
dan1d8cb212011-12-09 13:24:16 +00001578 iAddr = sqlite3CodeOnce(pParse);
danielk19779a96b662007-11-29 17:05:18 +00001579
danielk1977207872a2008-01-03 07:54:23 +00001580 sqlite3VdbeAddOp4(v, OP_OpenRead, iTab, pIdx->tnum, iDb,
drh66a51672008-01-03 00:01:23 +00001581 pKey,P4_KEYINFO_HANDOFF);
danielk1977207872a2008-01-03 07:54:23 +00001582 VdbeComment((v, "%s", pIdx->zName));
drh1ccce442013-03-12 20:38:51 +00001583 assert( IN_INDEX_INDEX_DESC == IN_INDEX_INDEX_ASC+1 );
1584 eType = IN_INDEX_INDEX_ASC + pIdx->aSortOrder[0];
danielk19779a96b662007-11-29 17:05:18 +00001585
1586 sqlite3VdbeJumpHere(v, iAddr);
danielk19770cdc0222008-06-26 18:04:03 +00001587 if( prNotFound && !pTab->aCol[iCol].notNull ){
1588 *prNotFound = ++pParse->nMem;
drhb8475df2011-12-09 16:21:19 +00001589 sqlite3VdbeAddOp2(v, OP_Null, 0, *prNotFound);
danielk19770cdc0222008-06-26 18:04:03 +00001590 }
danielk19779a96b662007-11-29 17:05:18 +00001591 }
1592 }
1593 }
1594 }
1595
1596 if( eType==0 ){
drh1450bc62009-10-30 13:25:56 +00001597 /* Could not found an existing table or index to use as the RHS b-tree.
drhb74b1012009-05-28 21:04:37 +00001598 ** We will have to generate an ephemeral table to do the job.
1599 */
drh8e23daf2013-06-11 13:30:04 +00001600 u32 savedNQueryLoop = pParse->nQueryLoop;
danielk19770cdc0222008-06-26 18:04:03 +00001601 int rMayHaveNull = 0;
danielk197741a05b72008-10-02 13:50:55 +00001602 eType = IN_INDEX_EPH;
danielk19770cdc0222008-06-26 18:04:03 +00001603 if( prNotFound ){
1604 *prNotFound = rMayHaveNull = ++pParse->nMem;
drhb8475df2011-12-09 16:21:19 +00001605 sqlite3VdbeAddOp2(v, OP_Null, 0, *prNotFound);
drhcf4d38a2010-07-28 02:53:36 +00001606 }else{
drh4a5acf82013-06-18 20:06:23 +00001607 testcase( pParse->nQueryLoop>0 );
1608 pParse->nQueryLoop = 0;
drhcf4d38a2010-07-28 02:53:36 +00001609 if( pX->pLeft->iColumn<0 && !ExprHasAnyProperty(pX, EP_xIsSelect) ){
1610 eType = IN_INDEX_ROWID;
1611 }
danielk19770cdc0222008-06-26 18:04:03 +00001612 }
danielk197741a05b72008-10-02 13:50:55 +00001613 sqlite3CodeSubselect(pParse, pX, rMayHaveNull, eType==IN_INDEX_ROWID);
drhcf4d38a2010-07-28 02:53:36 +00001614 pParse->nQueryLoop = savedNQueryLoop;
danielk19779a96b662007-11-29 17:05:18 +00001615 }else{
1616 pX->iTable = iTab;
1617 }
1618 return eType;
1619}
danielk1977284f4ac2007-12-10 05:03:46 +00001620#endif
drh626a8792005-01-17 22:08:19 +00001621
1622/*
drhd4187c72010-08-30 22:15:45 +00001623** Generate code for scalar subqueries used as a subquery expression, EXISTS,
1624** or IN operators. Examples:
drh626a8792005-01-17 22:08:19 +00001625**
drh9cbe6352005-11-29 03:13:21 +00001626** (SELECT a FROM b) -- subquery
1627** EXISTS (SELECT a FROM b) -- EXISTS subquery
1628** x IN (4,5,11) -- IN operator with list on right-hand side
1629** x IN (SELECT a FROM b) -- IN operator with subquery on the right
drhfef52082000-06-06 01:50:43 +00001630**
drh9cbe6352005-11-29 03:13:21 +00001631** The pExpr parameter describes the expression that contains the IN
1632** operator or subquery.
danielk197741a05b72008-10-02 13:50:55 +00001633**
1634** If parameter isRowid is non-zero, then expression pExpr is guaranteed
1635** to be of the form "<rowid> IN (?, ?, ?)", where <rowid> is a reference
1636** to some integer key column of a table B-Tree. In this case, use an
1637** intkey B-Tree to store the set of IN(...) values instead of the usual
1638** (slower) variable length keys B-Tree.
drhfd773cf2009-05-29 14:39:07 +00001639**
1640** If rMayHaveNull is non-zero, that means that the operation is an IN
1641** (not a SELECT or EXISTS) and that the RHS might contains NULLs.
1642** Furthermore, the IN is in a WHERE clause and that we really want
1643** to iterate over the RHS of the IN operator in order to quickly locate
1644** all corresponding LHS elements. All this routine does is initialize
1645** the register given by rMayHaveNull to NULL. Calling routines will take
1646** care of changing this register value to non-NULL if the RHS is NULL-free.
1647**
1648** If rMayHaveNull is zero, that means that the subquery is being used
1649** for membership testing only. There is no need to initialize any
drhf7b54962013-05-28 12:11:54 +00001650** registers to indicate the presence or absence of NULLs on the RHS.
drh1450bc62009-10-30 13:25:56 +00001651**
1652** For a SELECT or EXISTS operator, return the register that holds the
1653** result. For IN operators or if an error occurs, the return value is 0.
drhcce7d172000-05-31 15:34:51 +00001654*/
drh51522cd2005-01-20 13:36:19 +00001655#ifndef SQLITE_OMIT_SUBQUERY
drh1450bc62009-10-30 13:25:56 +00001656int sqlite3CodeSubselect(
drhfd773cf2009-05-29 14:39:07 +00001657 Parse *pParse, /* Parsing context */
1658 Expr *pExpr, /* The IN, SELECT, or EXISTS operator */
1659 int rMayHaveNull, /* Register that records whether NULLs exist in RHS */
1660 int isRowid /* If true, LHS of IN operator is a rowid */
danielk197741a05b72008-10-02 13:50:55 +00001661){
drhdfd2d9f2011-09-16 22:10:57 +00001662 int testAddr = -1; /* One-time test address */
drh1450bc62009-10-30 13:25:56 +00001663 int rReg = 0; /* Register storing resulting */
danielk1977b3bce662005-01-29 08:32:43 +00001664 Vdbe *v = sqlite3GetVdbe(pParse);
drh1450bc62009-10-30 13:25:56 +00001665 if( NEVER(v==0) ) return 0;
drhceea3322009-04-23 13:22:42 +00001666 sqlite3ExprCachePush(pParse);
danielk1977fc976062007-05-10 10:46:56 +00001667
drh57dbd7b2005-07-08 18:25:26 +00001668 /* This code must be run in its entirety every time it is encountered
1669 ** if any of the following is true:
1670 **
1671 ** * The right-hand side is a correlated subquery
1672 ** * The right-hand side is an expression list containing variables
1673 ** * We are inside a trigger
1674 **
1675 ** If all of the above are false, then we can run this code just once
1676 ** save the results, and reuse the same result on subsequent invocations.
danielk1977b3bce662005-01-29 08:32:43 +00001677 */
dan1d8cb212011-12-09 13:24:16 +00001678 if( !ExprHasAnyProperty(pExpr, EP_VarSelect) ){
1679 testAddr = sqlite3CodeOnce(pParse);
danielk1977b3bce662005-01-29 08:32:43 +00001680 }
1681
dan4a07e3d2010-11-09 14:48:59 +00001682#ifndef SQLITE_OMIT_EXPLAIN
1683 if( pParse->explain==2 ){
1684 char *zMsg = sqlite3MPrintf(
drhdfd2d9f2011-09-16 22:10:57 +00001685 pParse->db, "EXECUTE %s%s SUBQUERY %d", testAddr>=0?"":"CORRELATED ",
dan4a07e3d2010-11-09 14:48:59 +00001686 pExpr->op==TK_IN?"LIST":"SCALAR", pParse->iNextSelectId
1687 );
1688 sqlite3VdbeAddOp4(v, OP_Explain, pParse->iSelectId, 0, 0, zMsg, P4_DYNAMIC);
1689 }
1690#endif
1691
drhcce7d172000-05-31 15:34:51 +00001692 switch( pExpr->op ){
drhfef52082000-06-06 01:50:43 +00001693 case TK_IN: {
drhd4187c72010-08-30 22:15:45 +00001694 char affinity; /* Affinity of the LHS of the IN */
drhd4187c72010-08-30 22:15:45 +00001695 int addr; /* Address of OP_OpenEphemeral instruction */
1696 Expr *pLeft = pExpr->pLeft; /* the LHS of the IN operator */
drh323df792013-08-05 19:11:29 +00001697 KeyInfo *pKeyInfo = 0; /* Key information */
drhd3d39e92004-05-20 22:16:29 +00001698
danielk19770cdc0222008-06-26 18:04:03 +00001699 if( rMayHaveNull ){
1700 sqlite3VdbeAddOp2(v, OP_Null, 0, rMayHaveNull);
1701 }
1702
danielk197741a05b72008-10-02 13:50:55 +00001703 affinity = sqlite3ExprAffinity(pLeft);
danielk1977e014a832004-05-17 10:48:57 +00001704
1705 /* Whether this is an 'x IN(SELECT...)' or an 'x IN(<exprlist>)'
drh8cff69d2009-11-12 19:59:44 +00001706 ** expression it is handled the same way. An ephemeral table is
danielk1977e014a832004-05-17 10:48:57 +00001707 ** filled with single-field index keys representing the results
1708 ** from the SELECT or the <exprlist>.
1709 **
1710 ** If the 'x' expression is a column value, or the SELECT...
1711 ** statement returns a column value, then the affinity of that
1712 ** column is used to build the index keys. If both 'x' and the
1713 ** SELECT... statement are columns, then numeric affinity is used
1714 ** if either column has NUMERIC or INTEGER affinity. If neither
1715 ** 'x' nor the SELECT... statement are columns, then numeric affinity
1716 ** is used.
1717 */
1718 pExpr->iTable = pParse->nTab++;
danielk197741a05b72008-10-02 13:50:55 +00001719 addr = sqlite3VdbeAddOp2(v, OP_OpenEphemeral, pExpr->iTable, !isRowid);
drhd4187c72010-08-30 22:15:45 +00001720 if( rMayHaveNull==0 ) sqlite3VdbeChangeP5(v, BTREE_UNORDERED);
drh323df792013-08-05 19:11:29 +00001721 pKeyInfo = isRowid ? 0 : sqlite3KeyInfoAlloc(pParse->db, 1);
danielk1977e014a832004-05-17 10:48:57 +00001722
danielk19776ab3a2e2009-02-19 14:39:25 +00001723 if( ExprHasProperty(pExpr, EP_xIsSelect) ){
drhfef52082000-06-06 01:50:43 +00001724 /* Case 1: expr IN (SELECT ...)
1725 **
danielk1977e014a832004-05-17 10:48:57 +00001726 ** Generate code to write the results of the select into the temporary
1727 ** table allocated and opened above.
drhfef52082000-06-06 01:50:43 +00001728 */
drh1013c932008-01-06 00:25:21 +00001729 SelectDest dest;
drhbe5c89a2004-07-26 00:31:09 +00001730 ExprList *pEList;
drh1013c932008-01-06 00:25:21 +00001731
danielk197741a05b72008-10-02 13:50:55 +00001732 assert( !isRowid );
drh1013c932008-01-06 00:25:21 +00001733 sqlite3SelectDestInit(&dest, SRT_Set, pExpr->iTable);
drh2b596da2012-07-23 21:43:19 +00001734 dest.affSdst = (u8)affinity;
danielk1977e014a832004-05-17 10:48:57 +00001735 assert( (pExpr->iTable&0x0000FFFF)==pExpr->iTable );
drh48b5b042010-12-06 18:50:32 +00001736 pExpr->x.pSelect->iLimit = 0;
drh812ea832013-08-06 17:24:23 +00001737 testcase( pKeyInfo==0 ); /* Caused by OOM in sqlite3KeyInfoAlloc() */
danielk19776ab3a2e2009-02-19 14:39:25 +00001738 if( sqlite3Select(pParse, pExpr->x.pSelect, &dest) ){
drh323df792013-08-05 19:11:29 +00001739 sqlite3DbFree(pParse->db, pKeyInfo);
drh1450bc62009-10-30 13:25:56 +00001740 return 0;
drh94ccde52007-04-13 16:06:32 +00001741 }
danielk19776ab3a2e2009-02-19 14:39:25 +00001742 pEList = pExpr->x.pSelect->pEList;
drh812ea832013-08-06 17:24:23 +00001743 assert( pKeyInfo!=0 ); /* OOM will cause exit after sqlite3Select() */
drh3535ec32013-08-06 16:56:44 +00001744 assert( pEList!=0 );
1745 assert( pEList->nExpr>0 );
1746 pKeyInfo->aColl[0] = sqlite3BinaryCompareCollSeq(pParse, pExpr->pLeft,
1747 pEList->a[0].pExpr);
drha7d2db12010-07-14 20:23:52 +00001748 }else if( ALWAYS(pExpr->x.pList!=0) ){
drhfef52082000-06-06 01:50:43 +00001749 /* Case 2: expr IN (exprlist)
1750 **
drhfd131da2007-08-07 17:13:03 +00001751 ** For each expression, build an index key from the evaluation and
danielk1977e014a832004-05-17 10:48:57 +00001752 ** store it in the temporary table. If <expr> is a column, then use
1753 ** that columns affinity when building index keys. If <expr> is not
1754 ** a column, use numeric affinity.
drhfef52082000-06-06 01:50:43 +00001755 */
danielk1977e014a832004-05-17 10:48:57 +00001756 int i;
danielk19776ab3a2e2009-02-19 14:39:25 +00001757 ExprList *pList = pExpr->x.pList;
drh57dbd7b2005-07-08 18:25:26 +00001758 struct ExprList_item *pItem;
drhecc31802008-06-26 20:06:06 +00001759 int r1, r2, r3;
drh57dbd7b2005-07-08 18:25:26 +00001760
danielk1977e014a832004-05-17 10:48:57 +00001761 if( !affinity ){
drh8159a352006-05-23 23:22:29 +00001762 affinity = SQLITE_AFF_NONE;
danielk1977e014a832004-05-17 10:48:57 +00001763 }
drh323df792013-08-05 19:11:29 +00001764 if( pKeyInfo ){
1765 pKeyInfo->aColl[0] = sqlite3ExprCollSeq(pParse, pExpr->pLeft);
1766 }
danielk1977e014a832004-05-17 10:48:57 +00001767
1768 /* Loop through each expression in <exprlist>. */
drh2d401ab2008-01-10 23:50:11 +00001769 r1 = sqlite3GetTempReg(pParse);
1770 r2 = sqlite3GetTempReg(pParse);
danielk19774e7f36a2008-10-02 16:42:06 +00001771 sqlite3VdbeAddOp2(v, OP_Null, 0, r2);
drh57dbd7b2005-07-08 18:25:26 +00001772 for(i=pList->nExpr, pItem=pList->a; i>0; i--, pItem++){
1773 Expr *pE2 = pItem->pExpr;
drhe05c9292009-10-29 13:48:10 +00001774 int iValToIns;
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 */
drhdfd2d9f2011-09-16 22:10:57 +00001781 if( testAddr>=0 && !sqlite3ExprIsConstant(pE2) ){
drh48f2d3b2011-09-16 01:34:43 +00001782 sqlite3VdbeChangeToNoop(v, testAddr);
drhdfd2d9f2011-09-16 22:10:57 +00001783 testAddr = -1;
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 */
drhe05c9292009-10-29 13:48:10 +00001787 if( isRowid && sqlite3ExprIsInteger(pE2, &iValToIns) ){
1788 sqlite3VdbeAddOp3(v, OP_InsertInt, pExpr->iTable, r2, iValToIns);
danielk197741a05b72008-10-02 13:50:55 +00001789 }else{
drhe05c9292009-10-29 13:48:10 +00001790 r3 = sqlite3ExprCodeTarget(pParse, pE2, r1);
1791 if( isRowid ){
1792 sqlite3VdbeAddOp2(v, OP_MustBeInt, r3,
1793 sqlite3VdbeCurrentAddr(v)+2);
1794 sqlite3VdbeAddOp3(v, OP_Insert, pExpr->iTable, r2, r3);
1795 }else{
1796 sqlite3VdbeAddOp4(v, OP_MakeRecord, r3, 1, r2, &affinity, 1);
1797 sqlite3ExprCacheAffinityChange(pParse, r3, 1);
1798 sqlite3VdbeAddOp2(v, OP_IdxInsert, pExpr->iTable, r2);
1799 }
danielk197741a05b72008-10-02 13:50:55 +00001800 }
drhfef52082000-06-06 01:50:43 +00001801 }
drh2d401ab2008-01-10 23:50:11 +00001802 sqlite3ReleaseTempReg(pParse, r1);
1803 sqlite3ReleaseTempReg(pParse, r2);
drhfef52082000-06-06 01:50:43 +00001804 }
drh323df792013-08-05 19:11:29 +00001805 if( pKeyInfo ){
1806 sqlite3VdbeChangeP4(v, addr, (void *)pKeyInfo, P4_KEYINFO_HANDOFF);
danielk197741a05b72008-10-02 13:50:55 +00001807 }
danielk1977b3bce662005-01-29 08:32:43 +00001808 break;
drhfef52082000-06-06 01:50:43 +00001809 }
1810
drh51522cd2005-01-20 13:36:19 +00001811 case TK_EXISTS:
drhfd773cf2009-05-29 14:39:07 +00001812 case TK_SELECT:
1813 default: {
drhfd773cf2009-05-29 14:39:07 +00001814 /* If this has to be a scalar SELECT. Generate code to put the
drhfef52082000-06-06 01:50:43 +00001815 ** value of this select in a memory cell and record the number
drhfd773cf2009-05-29 14:39:07 +00001816 ** of the memory cell in iColumn. If this is an EXISTS, write
1817 ** an integer 0 (not exists) or 1 (exists) into a memory cell
1818 ** and record that memory cell in iColumn.
drhfef52082000-06-06 01:50:43 +00001819 */
drhfd773cf2009-05-29 14:39:07 +00001820 Select *pSel; /* SELECT statement to encode */
1821 SelectDest dest; /* How to deal with SELECt result */
drh1398ad32005-01-19 23:24:50 +00001822
shanecf697392009-06-01 16:53:09 +00001823 testcase( pExpr->op==TK_EXISTS );
1824 testcase( pExpr->op==TK_SELECT );
1825 assert( pExpr->op==TK_EXISTS || pExpr->op==TK_SELECT );
1826
danielk19776ab3a2e2009-02-19 14:39:25 +00001827 assert( ExprHasProperty(pExpr, EP_xIsSelect) );
1828 pSel = pExpr->x.pSelect;
drh1013c932008-01-06 00:25:21 +00001829 sqlite3SelectDestInit(&dest, 0, ++pParse->nMem);
drh51522cd2005-01-20 13:36:19 +00001830 if( pExpr->op==TK_SELECT ){
danielk19776c8c8ce2008-01-02 16:27:09 +00001831 dest.eDest = SRT_Mem;
drh2b596da2012-07-23 21:43:19 +00001832 sqlite3VdbeAddOp2(v, OP_Null, 0, dest.iSDParm);
drhd4e70eb2008-01-02 00:34:36 +00001833 VdbeComment((v, "Init subquery result"));
drh51522cd2005-01-20 13:36:19 +00001834 }else{
danielk19776c8c8ce2008-01-02 16:27:09 +00001835 dest.eDest = SRT_Exists;
drh2b596da2012-07-23 21:43:19 +00001836 sqlite3VdbeAddOp2(v, OP_Integer, 0, dest.iSDParm);
drhd4e70eb2008-01-02 00:34:36 +00001837 VdbeComment((v, "Init EXISTS result"));
drh51522cd2005-01-20 13:36:19 +00001838 }
drh633e6d52008-07-28 19:34:53 +00001839 sqlite3ExprDelete(pParse->db, pSel->pLimit);
drh094430e2010-07-14 18:24:06 +00001840 pSel->pLimit = sqlite3PExpr(pParse, TK_INTEGER, 0, 0,
1841 &sqlite3IntTokens[1]);
drh48b5b042010-12-06 18:50:32 +00001842 pSel->iLimit = 0;
drh7d10d5a2008-08-20 16:35:10 +00001843 if( sqlite3Select(pParse, pSel, &dest) ){
drh1450bc62009-10-30 13:25:56 +00001844 return 0;
drh94ccde52007-04-13 16:06:32 +00001845 }
drh2b596da2012-07-23 21:43:19 +00001846 rReg = dest.iSDParm;
drh33e619f2009-05-28 01:00:55 +00001847 ExprSetIrreducible(pExpr);
danielk1977b3bce662005-01-29 08:32:43 +00001848 break;
drhcce7d172000-05-31 15:34:51 +00001849 }
1850 }
danielk1977b3bce662005-01-29 08:32:43 +00001851
drhdfd2d9f2011-09-16 22:10:57 +00001852 if( testAddr>=0 ){
drh48f2d3b2011-09-16 01:34:43 +00001853 sqlite3VdbeJumpHere(v, testAddr);
danielk1977b3bce662005-01-29 08:32:43 +00001854 }
drhceea3322009-04-23 13:22:42 +00001855 sqlite3ExprCachePop(pParse, 1);
danielk1977fc976062007-05-10 10:46:56 +00001856
drh1450bc62009-10-30 13:25:56 +00001857 return rReg;
drhcce7d172000-05-31 15:34:51 +00001858}
drh51522cd2005-01-20 13:36:19 +00001859#endif /* SQLITE_OMIT_SUBQUERY */
drhcce7d172000-05-31 15:34:51 +00001860
drhe3365e62009-11-12 17:52:24 +00001861#ifndef SQLITE_OMIT_SUBQUERY
1862/*
1863** Generate code for an IN expression.
1864**
1865** x IN (SELECT ...)
1866** x IN (value, value, ...)
1867**
1868** The left-hand side (LHS) is a scalar expression. The right-hand side (RHS)
1869** is an array of zero or more values. The expression is true if the LHS is
1870** contained within the RHS. The value of the expression is unknown (NULL)
1871** if the LHS is NULL or if the LHS is not contained within the RHS and the
1872** RHS contains one or more NULL values.
1873**
1874** This routine generates code will jump to destIfFalse if the LHS is not
1875** contained within the RHS. If due to NULLs we cannot determine if the LHS
1876** is contained in the RHS then jump to destIfNull. If the LHS is contained
1877** within the RHS then fall through.
1878*/
1879static void sqlite3ExprCodeIN(
1880 Parse *pParse, /* Parsing and code generating context */
1881 Expr *pExpr, /* The IN expression */
1882 int destIfFalse, /* Jump here if LHS is not contained in the RHS */
1883 int destIfNull /* Jump here if the results are unknown due to NULLs */
1884){
1885 int rRhsHasNull = 0; /* Register that is true if RHS contains NULL values */
1886 char affinity; /* Comparison affinity to use */
1887 int eType; /* Type of the RHS */
1888 int r1; /* Temporary use register */
1889 Vdbe *v; /* Statement under construction */
1890
1891 /* Compute the RHS. After this step, the table with cursor
1892 ** pExpr->iTable will contains the values that make up the RHS.
1893 */
1894 v = pParse->pVdbe;
1895 assert( v!=0 ); /* OOM detected prior to this routine */
1896 VdbeNoopComment((v, "begin IN expr"));
1897 eType = sqlite3FindInIndex(pParse, pExpr, &rRhsHasNull);
1898
1899 /* Figure out the affinity to use to create a key from the results
1900 ** of the expression. affinityStr stores a static string suitable for
1901 ** P4 of OP_MakeRecord.
1902 */
1903 affinity = comparisonAffinity(pExpr);
1904
1905 /* Code the LHS, the <expr> from "<expr> IN (...)".
1906 */
1907 sqlite3ExprCachePush(pParse);
1908 r1 = sqlite3GetTempReg(pParse);
1909 sqlite3ExprCode(pParse, pExpr->pLeft, r1);
drhe3365e62009-11-12 17:52:24 +00001910
drh094430e2010-07-14 18:24:06 +00001911 /* If the LHS is NULL, then the result is either false or NULL depending
1912 ** on whether the RHS is empty or not, respectively.
1913 */
1914 if( destIfNull==destIfFalse ){
1915 /* Shortcut for the common case where the false and NULL outcomes are
1916 ** the same. */
1917 sqlite3VdbeAddOp2(v, OP_IsNull, r1, destIfNull);
1918 }else{
1919 int addr1 = sqlite3VdbeAddOp1(v, OP_NotNull, r1);
1920 sqlite3VdbeAddOp2(v, OP_Rewind, pExpr->iTable, destIfFalse);
1921 sqlite3VdbeAddOp2(v, OP_Goto, 0, destIfNull);
1922 sqlite3VdbeJumpHere(v, addr1);
1923 }
drhe3365e62009-11-12 17:52:24 +00001924
1925 if( eType==IN_INDEX_ROWID ){
1926 /* In this case, the RHS is the ROWID of table b-tree
1927 */
1928 sqlite3VdbeAddOp2(v, OP_MustBeInt, r1, destIfFalse);
1929 sqlite3VdbeAddOp3(v, OP_NotExists, pExpr->iTable, destIfFalse, r1);
1930 }else{
1931 /* In this case, the RHS is an index b-tree.
1932 */
drh8cff69d2009-11-12 19:59:44 +00001933 sqlite3VdbeAddOp4(v, OP_Affinity, r1, 1, 0, &affinity, 1);
drhe3365e62009-11-12 17:52:24 +00001934
1935 /* If the set membership test fails, then the result of the
1936 ** "x IN (...)" expression must be either 0 or NULL. If the set
1937 ** contains no NULL values, then the result is 0. If the set
1938 ** contains one or more NULL values, then the result of the
1939 ** expression is also NULL.
1940 */
1941 if( rRhsHasNull==0 || destIfFalse==destIfNull ){
1942 /* This branch runs if it is known at compile time that the RHS
1943 ** cannot contain NULL values. This happens as the result
1944 ** of a "NOT NULL" constraint in the database schema.
1945 **
1946 ** Also run this branch if NULL is equivalent to FALSE
1947 ** for this particular IN operator.
1948 */
drh8cff69d2009-11-12 19:59:44 +00001949 sqlite3VdbeAddOp4Int(v, OP_NotFound, pExpr->iTable, destIfFalse, r1, 1);
drhe3365e62009-11-12 17:52:24 +00001950
1951 }else{
1952 /* In this branch, the RHS of the IN might contain a NULL and
1953 ** the presence of a NULL on the RHS makes a difference in the
1954 ** outcome.
1955 */
drhe3365e62009-11-12 17:52:24 +00001956 int j1, j2, j3;
1957
1958 /* First check to see if the LHS is contained in the RHS. If so,
1959 ** then the presence of NULLs in the RHS does not matter, so jump
1960 ** over all of the code that follows.
1961 */
drh8cff69d2009-11-12 19:59:44 +00001962 j1 = sqlite3VdbeAddOp4Int(v, OP_Found, pExpr->iTable, 0, r1, 1);
drhe3365e62009-11-12 17:52:24 +00001963
1964 /* Here we begin generating code that runs if the LHS is not
1965 ** contained within the RHS. Generate additional code that
1966 ** tests the RHS for NULLs. If the RHS contains a NULL then
1967 ** jump to destIfNull. If there are no NULLs in the RHS then
1968 ** jump to destIfFalse.
1969 */
1970 j2 = sqlite3VdbeAddOp1(v, OP_NotNull, rRhsHasNull);
drh8cff69d2009-11-12 19:59:44 +00001971 j3 = sqlite3VdbeAddOp4Int(v, OP_Found, pExpr->iTable, 0, rRhsHasNull, 1);
drhe3365e62009-11-12 17:52:24 +00001972 sqlite3VdbeAddOp2(v, OP_Integer, -1, rRhsHasNull);
1973 sqlite3VdbeJumpHere(v, j3);
1974 sqlite3VdbeAddOp2(v, OP_AddImm, rRhsHasNull, 1);
1975 sqlite3VdbeJumpHere(v, j2);
1976
1977 /* Jump to the appropriate target depending on whether or not
1978 ** the RHS contains a NULL
1979 */
1980 sqlite3VdbeAddOp2(v, OP_If, rRhsHasNull, destIfNull);
1981 sqlite3VdbeAddOp2(v, OP_Goto, 0, destIfFalse);
1982
1983 /* The OP_Found at the top of this branch jumps here when true,
1984 ** causing the overall IN expression evaluation to fall through.
1985 */
1986 sqlite3VdbeJumpHere(v, j1);
1987 }
drhe3365e62009-11-12 17:52:24 +00001988 }
1989 sqlite3ReleaseTempReg(pParse, r1);
1990 sqlite3ExprCachePop(pParse, 1);
1991 VdbeComment((v, "end IN expr"));
1992}
1993#endif /* SQLITE_OMIT_SUBQUERY */
1994
drhcce7d172000-05-31 15:34:51 +00001995/*
drh598f1342007-10-23 15:39:45 +00001996** Duplicate an 8-byte value
1997*/
1998static char *dup8bytes(Vdbe *v, const char *in){
1999 char *out = sqlite3DbMallocRaw(sqlite3VdbeDb(v), 8);
2000 if( out ){
2001 memcpy(out, in, 8);
2002 }
2003 return out;
2004}
2005
drh13573c72010-01-12 17:04:07 +00002006#ifndef SQLITE_OMIT_FLOATING_POINT
drh598f1342007-10-23 15:39:45 +00002007/*
2008** Generate an instruction that will put the floating point
drh9cbf3422008-01-17 16:22:13 +00002009** value described by z[0..n-1] into register iMem.
drh0cf19ed2007-10-23 18:55:48 +00002010**
2011** The z[] string will probably not be zero-terminated. But the
2012** z[n] character is guaranteed to be something that does not look
2013** like the continuation of the number.
drh598f1342007-10-23 15:39:45 +00002014*/
drhb7916a72009-05-27 10:31:29 +00002015static void codeReal(Vdbe *v, const char *z, int negateFlag, int iMem){
drhfd773cf2009-05-29 14:39:07 +00002016 if( ALWAYS(z!=0) ){
drh598f1342007-10-23 15:39:45 +00002017 double value;
2018 char *zV;
drh9339da12010-09-30 00:50:49 +00002019 sqlite3AtoF(z, &value, sqlite3Strlen30(z), SQLITE_UTF8);
drhd0015162009-08-21 13:22:25 +00002020 assert( !sqlite3IsNaN(value) ); /* The new AtoF never returns NaN */
2021 if( negateFlag ) value = -value;
2022 zV = dup8bytes(v, (char*)&value);
2023 sqlite3VdbeAddOp4(v, OP_Real, 0, iMem, 0, zV, P4_REAL);
drh598f1342007-10-23 15:39:45 +00002024 }
2025}
drh13573c72010-01-12 17:04:07 +00002026#endif
drh598f1342007-10-23 15:39:45 +00002027
2028
2029/*
drhfec19aa2004-05-19 20:41:03 +00002030** Generate an instruction that will put the integer describe by
drh9cbf3422008-01-17 16:22:13 +00002031** text z[0..n-1] into register iMem.
drh0cf19ed2007-10-23 18:55:48 +00002032**
shaneh5f1d6b62010-09-30 16:51:25 +00002033** Expr.u.zToken is always UTF8 and zero-terminated.
drhfec19aa2004-05-19 20:41:03 +00002034*/
drh13573c72010-01-12 17:04:07 +00002035static void codeInteger(Parse *pParse, Expr *pExpr, int negFlag, int iMem){
2036 Vdbe *v = pParse->pVdbe;
drh92b01d52008-06-24 00:32:35 +00002037 if( pExpr->flags & EP_IntValue ){
drh33e619f2009-05-28 01:00:55 +00002038 int i = pExpr->u.iValue;
drhd50ffc42011-03-08 02:38:28 +00002039 assert( i>=0 );
drh92b01d52008-06-24 00:32:35 +00002040 if( negFlag ) i = -i;
2041 sqlite3VdbeAddOp2(v, OP_Integer, i, iMem);
drhfd773cf2009-05-29 14:39:07 +00002042 }else{
shaneh5f1d6b62010-09-30 16:51:25 +00002043 int c;
2044 i64 value;
drhfd773cf2009-05-29 14:39:07 +00002045 const char *z = pExpr->u.zToken;
2046 assert( z!=0 );
shaneh5f1d6b62010-09-30 16:51:25 +00002047 c = sqlite3Atoi64(z, &value, sqlite3Strlen30(z), SQLITE_UTF8);
2048 if( c==0 || (c==2 && negFlag) ){
drh598f1342007-10-23 15:39:45 +00002049 char *zV;
drh158b9cb2011-03-05 20:59:46 +00002050 if( negFlag ){ value = c==2 ? SMALLEST_INT64 : -value; }
drh598f1342007-10-23 15:39:45 +00002051 zV = dup8bytes(v, (char*)&value);
drh9de221d2008-01-05 06:51:30 +00002052 sqlite3VdbeAddOp4(v, OP_Int64, 0, iMem, 0, zV, P4_INT64);
danielk1977c9cf9012007-05-30 10:36:47 +00002053 }else{
drh13573c72010-01-12 17:04:07 +00002054#ifdef SQLITE_OMIT_FLOATING_POINT
2055 sqlite3ErrorMsg(pParse, "oversized integer: %s%s", negFlag ? "-" : "", z);
2056#else
drhb7916a72009-05-27 10:31:29 +00002057 codeReal(v, z, negFlag, iMem);
drh13573c72010-01-12 17:04:07 +00002058#endif
danielk1977c9cf9012007-05-30 10:36:47 +00002059 }
drhfec19aa2004-05-19 20:41:03 +00002060 }
2061}
2062
drhceea3322009-04-23 13:22:42 +00002063/*
2064** Clear a cache entry.
2065*/
2066static void cacheEntryClear(Parse *pParse, struct yColCache *p){
2067 if( p->tempReg ){
2068 if( pParse->nTempReg<ArraySize(pParse->aTempReg) ){
2069 pParse->aTempReg[pParse->nTempReg++] = p->iReg;
2070 }
2071 p->tempReg = 0;
2072 }
2073}
2074
2075
2076/*
2077** Record in the column cache that a particular column from a
2078** particular table is stored in a particular register.
2079*/
2080void sqlite3ExprCacheStore(Parse *pParse, int iTab, int iCol, int iReg){
2081 int i;
2082 int minLru;
2083 int idxLru;
2084 struct yColCache *p;
2085
drh20411ea2009-05-29 19:00:12 +00002086 assert( iReg>0 ); /* Register numbers are always positive */
2087 assert( iCol>=-1 && iCol<32768 ); /* Finite column numbers */
2088
drhb6da74e2009-12-24 16:00:28 +00002089 /* The SQLITE_ColumnCache flag disables the column cache. This is used
2090 ** for testing only - to verify that SQLite always gets the same answer
2091 ** with and without the column cache.
2092 */
drh7e5418e2012-09-27 15:05:54 +00002093 if( OptimizationDisabled(pParse->db, SQLITE_ColumnCache) ) return;
drhb6da74e2009-12-24 16:00:28 +00002094
drh27ee4062009-12-30 01:13:11 +00002095 /* First replace any existing entry.
2096 **
2097 ** Actually, the way the column cache is currently used, we are guaranteed
2098 ** that the object will never already be in cache. Verify this guarantee.
2099 */
2100#ifndef NDEBUG
drhceea3322009-04-23 13:22:42 +00002101 for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){
drh27ee4062009-12-30 01:13:11 +00002102 assert( p->iReg==0 || p->iTable!=iTab || p->iColumn!=iCol );
drhceea3322009-04-23 13:22:42 +00002103 }
drh27ee4062009-12-30 01:13:11 +00002104#endif
drhceea3322009-04-23 13:22:42 +00002105
2106 /* Find an empty slot and replace it */
2107 for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){
2108 if( p->iReg==0 ){
2109 p->iLevel = pParse->iCacheLevel;
2110 p->iTable = iTab;
2111 p->iColumn = iCol;
2112 p->iReg = iReg;
drhceea3322009-04-23 13:22:42 +00002113 p->tempReg = 0;
2114 p->lru = pParse->iCacheCnt++;
2115 return;
2116 }
2117 }
2118
2119 /* Replace the last recently used */
2120 minLru = 0x7fffffff;
2121 idxLru = -1;
2122 for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){
2123 if( p->lru<minLru ){
2124 idxLru = i;
2125 minLru = p->lru;
2126 }
2127 }
drh20411ea2009-05-29 19:00:12 +00002128 if( ALWAYS(idxLru>=0) ){
drhceea3322009-04-23 13:22:42 +00002129 p = &pParse->aColCache[idxLru];
2130 p->iLevel = pParse->iCacheLevel;
2131 p->iTable = iTab;
2132 p->iColumn = iCol;
2133 p->iReg = iReg;
drhceea3322009-04-23 13:22:42 +00002134 p->tempReg = 0;
2135 p->lru = pParse->iCacheCnt++;
2136 return;
2137 }
2138}
2139
2140/*
drhf49f3522009-12-30 14:12:38 +00002141** Indicate that registers between iReg..iReg+nReg-1 are being overwritten.
2142** Purge the range of registers from the column cache.
drhceea3322009-04-23 13:22:42 +00002143*/
drhf49f3522009-12-30 14:12:38 +00002144void sqlite3ExprCacheRemove(Parse *pParse, int iReg, int nReg){
drhceea3322009-04-23 13:22:42 +00002145 int i;
drhf49f3522009-12-30 14:12:38 +00002146 int iLast = iReg + nReg - 1;
drhceea3322009-04-23 13:22:42 +00002147 struct yColCache *p;
2148 for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){
drhf49f3522009-12-30 14:12:38 +00002149 int r = p->iReg;
2150 if( r>=iReg && r<=iLast ){
drhceea3322009-04-23 13:22:42 +00002151 cacheEntryClear(pParse, p);
2152 p->iReg = 0;
2153 }
2154 }
2155}
2156
2157/*
2158** Remember the current column cache context. Any new entries added
2159** added to the column cache after this call are removed when the
2160** corresponding pop occurs.
2161*/
2162void sqlite3ExprCachePush(Parse *pParse){
2163 pParse->iCacheLevel++;
2164}
2165
2166/*
2167** Remove from the column cache any entries that were added since the
2168** the previous N Push operations. In other words, restore the cache
2169** to the state it was in N Pushes ago.
2170*/
2171void sqlite3ExprCachePop(Parse *pParse, int N){
2172 int i;
2173 struct yColCache *p;
2174 assert( N>0 );
2175 assert( pParse->iCacheLevel>=N );
2176 pParse->iCacheLevel -= N;
2177 for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){
2178 if( p->iReg && p->iLevel>pParse->iCacheLevel ){
2179 cacheEntryClear(pParse, p);
2180 p->iReg = 0;
2181 }
2182 }
2183}
drh945498f2007-02-24 11:52:52 +00002184
2185/*
drh5cd79232009-05-25 11:46:29 +00002186** When a cached column is reused, make sure that its register is
2187** no longer available as a temp register. ticket #3879: that same
2188** register might be in the cache in multiple places, so be sure to
2189** get them all.
2190*/
2191static void sqlite3ExprCachePinRegister(Parse *pParse, int iReg){
2192 int i;
2193 struct yColCache *p;
2194 for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){
2195 if( p->iReg==iReg ){
2196 p->tempReg = 0;
2197 }
2198 }
2199}
2200
2201/*
drh5c092e82010-05-14 19:24:02 +00002202** Generate code to extract the value of the iCol-th column of a table.
2203*/
2204void sqlite3ExprCodeGetColumnOfTable(
2205 Vdbe *v, /* The VDBE under construction */
2206 Table *pTab, /* The table containing the value */
2207 int iTabCur, /* The cursor for this table */
2208 int iCol, /* Index of the column to extract */
2209 int regOut /* Extract the valud into this register */
2210){
2211 if( iCol<0 || iCol==pTab->iPKey ){
2212 sqlite3VdbeAddOp2(v, OP_Rowid, iTabCur, regOut);
2213 }else{
2214 int op = IsVirtual(pTab) ? OP_VColumn : OP_Column;
2215 sqlite3VdbeAddOp3(v, op, iTabCur, iCol, regOut);
2216 }
2217 if( iCol>=0 ){
2218 sqlite3ColumnDefault(v, pTab, iCol, regOut);
2219 }
2220}
2221
2222/*
drh945498f2007-02-24 11:52:52 +00002223** Generate code that will extract the iColumn-th column from
drhe55cbd72008-03-31 23:48:03 +00002224** table pTab and store the column value in a register. An effort
2225** is made to store the column value in register iReg, but this is
2226** not guaranteed. The location of the column value is returned.
2227**
2228** There must be an open cursor to pTab in iTable when this routine
2229** is called. If iColumn<0 then code is generated that extracts the rowid.
drh945498f2007-02-24 11:52:52 +00002230*/
drhe55cbd72008-03-31 23:48:03 +00002231int sqlite3ExprCodeGetColumn(
2232 Parse *pParse, /* Parsing and code generating context */
drh2133d822008-01-03 18:44:59 +00002233 Table *pTab, /* Description of the table we are reading from */
2234 int iColumn, /* Index of the table column */
2235 int iTable, /* The cursor pointing to the table */
drha748fdc2012-03-28 01:34:47 +00002236 int iReg, /* Store results here */
2237 u8 p5 /* P5 value for OP_Column */
drh2133d822008-01-03 18:44:59 +00002238){
drhe55cbd72008-03-31 23:48:03 +00002239 Vdbe *v = pParse->pVdbe;
2240 int i;
drhda250ea2008-04-01 05:07:14 +00002241 struct yColCache *p;
drhe55cbd72008-03-31 23:48:03 +00002242
drhceea3322009-04-23 13:22:42 +00002243 for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){
drhb6da74e2009-12-24 16:00:28 +00002244 if( p->iReg>0 && p->iTable==iTable && p->iColumn==iColumn ){
drhceea3322009-04-23 13:22:42 +00002245 p->lru = pParse->iCacheCnt++;
drh5cd79232009-05-25 11:46:29 +00002246 sqlite3ExprCachePinRegister(pParse, p->iReg);
drhda250ea2008-04-01 05:07:14 +00002247 return p->iReg;
drhe55cbd72008-03-31 23:48:03 +00002248 }
2249 }
2250 assert( v!=0 );
drh5c092e82010-05-14 19:24:02 +00002251 sqlite3ExprCodeGetColumnOfTable(v, pTab, iTable, iColumn, iReg);
drha748fdc2012-03-28 01:34:47 +00002252 if( p5 ){
2253 sqlite3VdbeChangeP5(v, p5);
2254 }else{
2255 sqlite3ExprCacheStore(pParse, iTable, iColumn, iReg);
2256 }
drhe55cbd72008-03-31 23:48:03 +00002257 return iReg;
2258}
2259
2260/*
drhceea3322009-04-23 13:22:42 +00002261** Clear all column cache entries.
drhe55cbd72008-03-31 23:48:03 +00002262*/
drhceea3322009-04-23 13:22:42 +00002263void sqlite3ExprCacheClear(Parse *pParse){
2264 int i;
2265 struct yColCache *p;
2266
2267 for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){
2268 if( p->iReg ){
2269 cacheEntryClear(pParse, p);
2270 p->iReg = 0;
drhe55cbd72008-03-31 23:48:03 +00002271 }
drhe55cbd72008-03-31 23:48:03 +00002272 }
2273}
2274
2275/*
drhda250ea2008-04-01 05:07:14 +00002276** Record the fact that an affinity change has occurred on iCount
2277** registers starting with iStart.
drhe55cbd72008-03-31 23:48:03 +00002278*/
drhda250ea2008-04-01 05:07:14 +00002279void sqlite3ExprCacheAffinityChange(Parse *pParse, int iStart, int iCount){
drhf49f3522009-12-30 14:12:38 +00002280 sqlite3ExprCacheRemove(pParse, iStart, iCount);
drhe55cbd72008-03-31 23:48:03 +00002281}
2282
2283/*
drhb21e7c72008-06-22 12:37:57 +00002284** Generate code to move content from registers iFrom...iFrom+nReg-1
2285** over to iTo..iTo+nReg-1. Keep the column cache up-to-date.
drhe55cbd72008-03-31 23:48:03 +00002286*/
drhb21e7c72008-06-22 12:37:57 +00002287void sqlite3ExprCodeMove(Parse *pParse, int iFrom, int iTo, int nReg){
drhe55cbd72008-03-31 23:48:03 +00002288 int i;
drhceea3322009-04-23 13:22:42 +00002289 struct yColCache *p;
drhe8e4af72012-09-21 00:04:28 +00002290 assert( iFrom>=iTo+nReg || iFrom+nReg<=iTo );
2291 sqlite3VdbeAddOp3(pParse->pVdbe, OP_Move, iFrom, iTo, nReg-1);
drhceea3322009-04-23 13:22:42 +00002292 for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){
2293 int x = p->iReg;
drhb21e7c72008-06-22 12:37:57 +00002294 if( x>=iFrom && x<iFrom+nReg ){
drhceea3322009-04-23 13:22:42 +00002295 p->iReg += iTo-iFrom;
drhe55cbd72008-03-31 23:48:03 +00002296 }
2297 }
drh945498f2007-02-24 11:52:52 +00002298}
2299
drhf49f3522009-12-30 14:12:38 +00002300#if defined(SQLITE_DEBUG) || defined(SQLITE_COVERAGE_TEST)
drh92b01d52008-06-24 00:32:35 +00002301/*
drh652fbf52008-04-01 01:42:41 +00002302** Return true if any register in the range iFrom..iTo (inclusive)
2303** is used as part of the column cache.
drhf49f3522009-12-30 14:12:38 +00002304**
2305** This routine is used within assert() and testcase() macros only
2306** and does not appear in a normal build.
drh652fbf52008-04-01 01:42:41 +00002307*/
2308static int usedAsColumnCache(Parse *pParse, int iFrom, int iTo){
2309 int i;
drhceea3322009-04-23 13:22:42 +00002310 struct yColCache *p;
2311 for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){
2312 int r = p->iReg;
drhf49f3522009-12-30 14:12:38 +00002313 if( r>=iFrom && r<=iTo ) return 1; /*NO_TEST*/
drh652fbf52008-04-01 01:42:41 +00002314 }
2315 return 0;
2316}
drhf49f3522009-12-30 14:12:38 +00002317#endif /* SQLITE_DEBUG || SQLITE_COVERAGE_TEST */
drh652fbf52008-04-01 01:42:41 +00002318
2319/*
drhcce7d172000-05-31 15:34:51 +00002320** Generate code into the current Vdbe to evaluate the given
drh2dcef112008-01-12 19:03:48 +00002321** expression. Attempt to store the results in register "target".
2322** Return the register where results are stored.
drh389a1ad2008-01-03 23:44:53 +00002323**
drh8b213892008-08-29 02:14:02 +00002324** With this routine, there is no guarantee that results will
drh2dcef112008-01-12 19:03:48 +00002325** be stored in target. The result might be stored in some other
2326** register if it is convenient to do so. The calling function
2327** must check the return code and move the results to the desired
2328** register.
drhcce7d172000-05-31 15:34:51 +00002329*/
drh678ccce2008-03-31 18:19:54 +00002330int sqlite3ExprCodeTarget(Parse *pParse, Expr *pExpr, int target){
drh2dcef112008-01-12 19:03:48 +00002331 Vdbe *v = pParse->pVdbe; /* The VM under construction */
2332 int op; /* The opcode being coded */
2333 int inReg = target; /* Results stored in register inReg */
2334 int regFree1 = 0; /* If non-zero free this temporary register */
2335 int regFree2 = 0; /* If non-zero free this temporary register */
drh678ccce2008-03-31 18:19:54 +00002336 int r1, r2, r3, r4; /* Various register numbers */
drh20411ea2009-05-29 19:00:12 +00002337 sqlite3 *db = pParse->db; /* The database connection */
drhffe07b22005-11-03 00:41:17 +00002338
drh9cbf3422008-01-17 16:22:13 +00002339 assert( target>0 && target<=pParse->nMem );
drh20411ea2009-05-29 19:00:12 +00002340 if( v==0 ){
2341 assert( pParse->db->mallocFailed );
2342 return 0;
2343 }
drh389a1ad2008-01-03 23:44:53 +00002344
2345 if( pExpr==0 ){
2346 op = TK_NULL;
2347 }else{
2348 op = pExpr->op;
2349 }
drhf2bc0132004-10-04 13:19:23 +00002350 switch( op ){
drh13449892005-09-07 21:22:45 +00002351 case TK_AGG_COLUMN: {
2352 AggInfo *pAggInfo = pExpr->pAggInfo;
2353 struct AggInfo_col *pCol = &pAggInfo->aCol[pExpr->iAgg];
2354 if( !pAggInfo->directMode ){
drh9de221d2008-01-05 06:51:30 +00002355 assert( pCol->iMem>0 );
2356 inReg = pCol->iMem;
drh13449892005-09-07 21:22:45 +00002357 break;
2358 }else if( pAggInfo->useSortingIdx ){
dan5134d132011-09-02 10:31:11 +00002359 sqlite3VdbeAddOp3(v, OP_Column, pAggInfo->sortingIdxPTab,
drh389a1ad2008-01-03 23:44:53 +00002360 pCol->iSorterColumn, target);
drh13449892005-09-07 21:22:45 +00002361 break;
2362 }
2363 /* Otherwise, fall thru into the TK_COLUMN case */
2364 }
drh967e8b72000-06-21 13:59:10 +00002365 case TK_COLUMN: {
drhb2b9d3d2013-08-01 01:14:43 +00002366 int iTab = pExpr->iTable;
2367 if( iTab<0 ){
2368 if( pParse->ckBase>0 ){
2369 /* Generating CHECK constraints or inserting into partial index */
2370 inReg = pExpr->iColumn + pParse->ckBase;
2371 break;
2372 }else{
2373 /* Deleting from a partial index */
2374 iTab = pParse->iPartIdxTab;
2375 }
drh22827922000-06-06 17:27:05 +00002376 }
drhb2b9d3d2013-08-01 01:14:43 +00002377 inReg = sqlite3ExprCodeGetColumn(pParse, pExpr->pTab,
2378 pExpr->iColumn, iTab, target,
2379 pExpr->op2);
drhcce7d172000-05-31 15:34:51 +00002380 break;
2381 }
2382 case TK_INTEGER: {
drh13573c72010-01-12 17:04:07 +00002383 codeInteger(pParse, pExpr, 0, target);
drhfec19aa2004-05-19 20:41:03 +00002384 break;
2385 }
drh13573c72010-01-12 17:04:07 +00002386#ifndef SQLITE_OMIT_FLOATING_POINT
drh598f1342007-10-23 15:39:45 +00002387 case TK_FLOAT: {
drh33e619f2009-05-28 01:00:55 +00002388 assert( !ExprHasProperty(pExpr, EP_IntValue) );
2389 codeReal(v, pExpr->u.zToken, 0, target);
drh598f1342007-10-23 15:39:45 +00002390 break;
2391 }
drh13573c72010-01-12 17:04:07 +00002392#endif
drhfec19aa2004-05-19 20:41:03 +00002393 case TK_STRING: {
drh33e619f2009-05-28 01:00:55 +00002394 assert( !ExprHasProperty(pExpr, EP_IntValue) );
2395 sqlite3VdbeAddOp4(v, OP_String8, 0, target, 0, pExpr->u.zToken, 0);
drhcce7d172000-05-31 15:34:51 +00002396 break;
2397 }
drhf0863fe2005-06-12 21:35:51 +00002398 case TK_NULL: {
drh9de221d2008-01-05 06:51:30 +00002399 sqlite3VdbeAddOp2(v, OP_Null, 0, target);
drhf0863fe2005-06-12 21:35:51 +00002400 break;
2401 }
danielk19775338a5f2005-01-20 13:03:10 +00002402#ifndef SQLITE_OMIT_BLOB_LITERAL
danielk1977c572ef72004-05-27 09:28:41 +00002403 case TK_BLOB: {
drh6c8c6ce2005-08-23 11:17:58 +00002404 int n;
2405 const char *z;
drhca48c902008-01-18 14:08:24 +00002406 char *zBlob;
drh33e619f2009-05-28 01:00:55 +00002407 assert( !ExprHasProperty(pExpr, EP_IntValue) );
2408 assert( pExpr->u.zToken[0]=='x' || pExpr->u.zToken[0]=='X' );
2409 assert( pExpr->u.zToken[1]=='\'' );
2410 z = &pExpr->u.zToken[2];
drhb7916a72009-05-27 10:31:29 +00002411 n = sqlite3Strlen30(z) - 1;
2412 assert( z[n]=='\'' );
drhca48c902008-01-18 14:08:24 +00002413 zBlob = sqlite3HexToBlob(sqlite3VdbeDb(v), z, n);
2414 sqlite3VdbeAddOp4(v, OP_Blob, n/2, target, 0, zBlob, P4_DYNAMIC);
danielk1977c572ef72004-05-27 09:28:41 +00002415 break;
2416 }
danielk19775338a5f2005-01-20 13:03:10 +00002417#endif
drh50457892003-09-06 01:10:47 +00002418 case TK_VARIABLE: {
drh33e619f2009-05-28 01:00:55 +00002419 assert( !ExprHasProperty(pExpr, EP_IntValue) );
2420 assert( pExpr->u.zToken!=0 );
2421 assert( pExpr->u.zToken[0]!=0 );
drheaf52d82010-05-12 13:50:23 +00002422 sqlite3VdbeAddOp2(v, OP_Variable, pExpr->iColumn, target);
2423 if( pExpr->u.zToken[1]!=0 ){
drh04e9eea2011-06-01 19:16:06 +00002424 assert( pExpr->u.zToken[0]=='?'
2425 || strcmp(pExpr->u.zToken, pParse->azVar[pExpr->iColumn-1])==0 );
2426 sqlite3VdbeChangeP4(v, -1, pParse->azVar[pExpr->iColumn-1], P4_STATIC);
drh895d7472004-08-20 16:02:39 +00002427 }
drh50457892003-09-06 01:10:47 +00002428 break;
2429 }
drh4e0cff62004-11-05 05:10:28 +00002430 case TK_REGISTER: {
drh9de221d2008-01-05 06:51:30 +00002431 inReg = pExpr->iTable;
drh4e0cff62004-11-05 05:10:28 +00002432 break;
2433 }
drh8b213892008-08-29 02:14:02 +00002434 case TK_AS: {
drh7445ffe2010-09-27 18:14:12 +00002435 inReg = sqlite3ExprCodeTarget(pParse, pExpr->pLeft, target);
drh8b213892008-08-29 02:14:02 +00002436 break;
2437 }
drh487e2622005-06-25 18:42:14 +00002438#ifndef SQLITE_OMIT_CAST
2439 case TK_CAST: {
2440 /* Expressions of the form: CAST(pLeft AS token) */
danielk1977f0113002006-01-24 12:09:17 +00002441 int aff, to_op;
drh2dcef112008-01-12 19:03:48 +00002442 inReg = sqlite3ExprCodeTarget(pParse, pExpr->pLeft, target);
drh33e619f2009-05-28 01:00:55 +00002443 assert( !ExprHasProperty(pExpr, EP_IntValue) );
2444 aff = sqlite3AffinityType(pExpr->u.zToken);
danielk1977f0113002006-01-24 12:09:17 +00002445 to_op = aff - SQLITE_AFF_TEXT + OP_ToText;
2446 assert( to_op==OP_ToText || aff!=SQLITE_AFF_TEXT );
2447 assert( to_op==OP_ToBlob || aff!=SQLITE_AFF_NONE );
2448 assert( to_op==OP_ToNumeric || aff!=SQLITE_AFF_NUMERIC );
2449 assert( to_op==OP_ToInt || aff!=SQLITE_AFF_INTEGER );
2450 assert( to_op==OP_ToReal || aff!=SQLITE_AFF_REAL );
drhc5499be2008-04-01 15:06:33 +00002451 testcase( to_op==OP_ToText );
2452 testcase( to_op==OP_ToBlob );
2453 testcase( to_op==OP_ToNumeric );
2454 testcase( to_op==OP_ToInt );
2455 testcase( to_op==OP_ToReal );
drh1735fa82008-11-06 15:33:03 +00002456 if( inReg!=target ){
2457 sqlite3VdbeAddOp2(v, OP_SCopy, inReg, target);
2458 inReg = target;
2459 }
drh2dcef112008-01-12 19:03:48 +00002460 sqlite3VdbeAddOp1(v, to_op, inReg);
drhc5499be2008-04-01 15:06:33 +00002461 testcase( usedAsColumnCache(pParse, inReg, inReg) );
drhb3843a82008-04-01 12:24:11 +00002462 sqlite3ExprCacheAffinityChange(pParse, inReg, 1);
drh487e2622005-06-25 18:42:14 +00002463 break;
2464 }
2465#endif /* SQLITE_OMIT_CAST */
drhc9b84a12002-06-20 11:36:48 +00002466 case TK_LT:
2467 case TK_LE:
2468 case TK_GT:
2469 case TK_GE:
2470 case TK_NE:
2471 case TK_EQ: {
drhf2bc0132004-10-04 13:19:23 +00002472 assert( TK_LT==OP_Lt );
2473 assert( TK_LE==OP_Le );
2474 assert( TK_GT==OP_Gt );
2475 assert( TK_GE==OP_Ge );
2476 assert( TK_EQ==OP_Eq );
2477 assert( TK_NE==OP_Ne );
drhc5499be2008-04-01 15:06:33 +00002478 testcase( op==TK_LT );
2479 testcase( op==TK_LE );
2480 testcase( op==TK_GT );
2481 testcase( op==TK_GE );
2482 testcase( op==TK_EQ );
2483 testcase( op==TK_NE );
drhb6da74e2009-12-24 16:00:28 +00002484 r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, &regFree1);
2485 r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, &regFree2);
drh35573352008-01-08 23:54:25 +00002486 codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op,
2487 r1, r2, inReg, SQLITE_STOREP2);
drhc5499be2008-04-01 15:06:33 +00002488 testcase( regFree1==0 );
2489 testcase( regFree2==0 );
danielk1977a37cdde2004-05-16 11:15:36 +00002490 break;
drhc9b84a12002-06-20 11:36:48 +00002491 }
drh6a2fe092009-09-23 02:29:36 +00002492 case TK_IS:
2493 case TK_ISNOT: {
2494 testcase( op==TK_IS );
2495 testcase( op==TK_ISNOT );
drhb6da74e2009-12-24 16:00:28 +00002496 r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, &regFree1);
2497 r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, &regFree2);
drh6a2fe092009-09-23 02:29:36 +00002498 op = (op==TK_IS) ? TK_EQ : TK_NE;
2499 codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op,
2500 r1, r2, inReg, SQLITE_STOREP2 | SQLITE_NULLEQ);
2501 testcase( regFree1==0 );
2502 testcase( regFree2==0 );
2503 break;
2504 }
drhcce7d172000-05-31 15:34:51 +00002505 case TK_AND:
2506 case TK_OR:
2507 case TK_PLUS:
2508 case TK_STAR:
2509 case TK_MINUS:
drhbf4133c2001-10-13 02:59:08 +00002510 case TK_REM:
2511 case TK_BITAND:
2512 case TK_BITOR:
drh17c40292004-07-21 02:53:29 +00002513 case TK_SLASH:
drhbf4133c2001-10-13 02:59:08 +00002514 case TK_LSHIFT:
drh855eb1c2004-08-31 13:45:11 +00002515 case TK_RSHIFT:
drh00400772000-06-16 20:51:26 +00002516 case TK_CONCAT: {
drhf2bc0132004-10-04 13:19:23 +00002517 assert( TK_AND==OP_And );
2518 assert( TK_OR==OP_Or );
2519 assert( TK_PLUS==OP_Add );
2520 assert( TK_MINUS==OP_Subtract );
2521 assert( TK_REM==OP_Remainder );
2522 assert( TK_BITAND==OP_BitAnd );
2523 assert( TK_BITOR==OP_BitOr );
2524 assert( TK_SLASH==OP_Divide );
2525 assert( TK_LSHIFT==OP_ShiftLeft );
2526 assert( TK_RSHIFT==OP_ShiftRight );
2527 assert( TK_CONCAT==OP_Concat );
drhc5499be2008-04-01 15:06:33 +00002528 testcase( op==TK_AND );
2529 testcase( op==TK_OR );
2530 testcase( op==TK_PLUS );
2531 testcase( op==TK_MINUS );
2532 testcase( op==TK_REM );
2533 testcase( op==TK_BITAND );
2534 testcase( op==TK_BITOR );
2535 testcase( op==TK_SLASH );
2536 testcase( op==TK_LSHIFT );
2537 testcase( op==TK_RSHIFT );
2538 testcase( op==TK_CONCAT );
drh2dcef112008-01-12 19:03:48 +00002539 r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, &regFree1);
2540 r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, &regFree2);
drh5b6afba2008-01-05 16:29:28 +00002541 sqlite3VdbeAddOp3(v, op, r2, r1, target);
drhc5499be2008-04-01 15:06:33 +00002542 testcase( regFree1==0 );
2543 testcase( regFree2==0 );
drh00400772000-06-16 20:51:26 +00002544 break;
2545 }
drhcce7d172000-05-31 15:34:51 +00002546 case TK_UMINUS: {
drhfec19aa2004-05-19 20:41:03 +00002547 Expr *pLeft = pExpr->pLeft;
2548 assert( pLeft );
drh13573c72010-01-12 17:04:07 +00002549 if( pLeft->op==TK_INTEGER ){
2550 codeInteger(pParse, pLeft, 1, target);
2551#ifndef SQLITE_OMIT_FLOATING_POINT
2552 }else if( pLeft->op==TK_FLOAT ){
drh33e619f2009-05-28 01:00:55 +00002553 assert( !ExprHasProperty(pExpr, EP_IntValue) );
2554 codeReal(v, pLeft->u.zToken, 1, target);
drh13573c72010-01-12 17:04:07 +00002555#endif
drh3c84ddf2008-01-09 02:15:38 +00002556 }else{
drh2dcef112008-01-12 19:03:48 +00002557 regFree1 = r1 = sqlite3GetTempReg(pParse);
drh3c84ddf2008-01-09 02:15:38 +00002558 sqlite3VdbeAddOp2(v, OP_Integer, 0, r1);
drhe55cbd72008-03-31 23:48:03 +00002559 r2 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, &regFree2);
drh2dcef112008-01-12 19:03:48 +00002560 sqlite3VdbeAddOp3(v, OP_Subtract, r2, r1, target);
drhc5499be2008-04-01 15:06:33 +00002561 testcase( regFree2==0 );
drh6e142f52000-06-08 13:36:40 +00002562 }
drh3c84ddf2008-01-09 02:15:38 +00002563 inReg = target;
2564 break;
drh6e142f52000-06-08 13:36:40 +00002565 }
drhbf4133c2001-10-13 02:59:08 +00002566 case TK_BITNOT:
drh6e142f52000-06-08 13:36:40 +00002567 case TK_NOT: {
drhf2bc0132004-10-04 13:19:23 +00002568 assert( TK_BITNOT==OP_BitNot );
2569 assert( TK_NOT==OP_Not );
drhc5499be2008-04-01 15:06:33 +00002570 testcase( op==TK_BITNOT );
2571 testcase( op==TK_NOT );
drhe99fa2a2008-12-15 15:27:51 +00002572 r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, &regFree1);
2573 testcase( regFree1==0 );
2574 inReg = target;
2575 sqlite3VdbeAddOp2(v, op, r1, inReg);
drhcce7d172000-05-31 15:34:51 +00002576 break;
2577 }
2578 case TK_ISNULL:
2579 case TK_NOTNULL: {
drh6a288a32008-01-07 19:20:24 +00002580 int addr;
drhf2bc0132004-10-04 13:19:23 +00002581 assert( TK_ISNULL==OP_IsNull );
2582 assert( TK_NOTNULL==OP_NotNull );
drhc5499be2008-04-01 15:06:33 +00002583 testcase( op==TK_ISNULL );
2584 testcase( op==TK_NOTNULL );
drh9de221d2008-01-05 06:51:30 +00002585 sqlite3VdbeAddOp2(v, OP_Integer, 1, target);
drh2dcef112008-01-12 19:03:48 +00002586 r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, &regFree1);
drhc5499be2008-04-01 15:06:33 +00002587 testcase( regFree1==0 );
drh2dcef112008-01-12 19:03:48 +00002588 addr = sqlite3VdbeAddOp1(v, op, r1);
drh9de221d2008-01-05 06:51:30 +00002589 sqlite3VdbeAddOp2(v, OP_AddImm, target, -1);
drh6a288a32008-01-07 19:20:24 +00002590 sqlite3VdbeJumpHere(v, addr);
drhf2bc0132004-10-04 13:19:23 +00002591 break;
drhcce7d172000-05-31 15:34:51 +00002592 }
drh22827922000-06-06 17:27:05 +00002593 case TK_AGG_FUNCTION: {
drh13449892005-09-07 21:22:45 +00002594 AggInfo *pInfo = pExpr->pAggInfo;
drh7e56e712005-11-16 12:53:15 +00002595 if( pInfo==0 ){
drh33e619f2009-05-28 01:00:55 +00002596 assert( !ExprHasProperty(pExpr, EP_IntValue) );
2597 sqlite3ErrorMsg(pParse, "misuse of aggregate: %s()", pExpr->u.zToken);
drh7e56e712005-11-16 12:53:15 +00002598 }else{
drh9de221d2008-01-05 06:51:30 +00002599 inReg = pInfo->aFunc[pExpr->iAgg].iMem;
drh7e56e712005-11-16 12:53:15 +00002600 }
drh22827922000-06-06 17:27:05 +00002601 break;
2602 }
drhb71090f2005-05-23 17:26:51 +00002603 case TK_CONST_FUNC:
drhcce7d172000-05-31 15:34:51 +00002604 case TK_FUNCTION: {
drh12ffee82009-04-08 13:51:51 +00002605 ExprList *pFarg; /* List of function arguments */
2606 int nFarg; /* Number of function arguments */
2607 FuncDef *pDef; /* The function definition object */
2608 int nId; /* Length of the function name in bytes */
2609 const char *zId; /* The function name */
2610 int constMask = 0; /* Mask of function arguments that are constant */
2611 int i; /* Loop counter */
2612 u8 enc = ENC(db); /* The text encoding used by this database */
2613 CollSeq *pColl = 0; /* A collating sequence */
drh17435752007-08-16 04:30:38 +00002614
danielk19776ab3a2e2009-02-19 14:39:25 +00002615 assert( !ExprHasProperty(pExpr, EP_xIsSelect) );
drhc5499be2008-04-01 15:06:33 +00002616 testcase( op==TK_CONST_FUNC );
2617 testcase( op==TK_FUNCTION );
drhb7916a72009-05-27 10:31:29 +00002618 if( ExprHasAnyProperty(pExpr, EP_TokenOnly) ){
drh12ffee82009-04-08 13:51:51 +00002619 pFarg = 0;
2620 }else{
2621 pFarg = pExpr->x.pList;
2622 }
2623 nFarg = pFarg ? pFarg->nExpr : 0;
drh33e619f2009-05-28 01:00:55 +00002624 assert( !ExprHasProperty(pExpr, EP_IntValue) );
2625 zId = pExpr->u.zToken;
drhb7916a72009-05-27 10:31:29 +00002626 nId = sqlite3Strlen30(zId);
drh12ffee82009-04-08 13:51:51 +00002627 pDef = sqlite3FindFunction(db, zId, nId, nFarg, enc, 0);
drhfeb306f2009-08-18 16:05:46 +00002628 if( pDef==0 ){
2629 sqlite3ErrorMsg(pParse, "unknown function: %.*s()", nId, zId);
2630 break;
2631 }
drhae6bb952009-11-11 00:24:31 +00002632
2633 /* Attempt a direct implementation of the built-in COALESCE() and
2634 ** IFNULL() functions. This avoids unnecessary evalation of
2635 ** arguments past the first non-NULL argument.
2636 */
2637 if( pDef->flags & SQLITE_FUNC_COALESCE ){
2638 int endCoalesce = sqlite3VdbeMakeLabel(v);
2639 assert( nFarg>=2 );
2640 sqlite3ExprCode(pParse, pFarg->a[0].pExpr, target);
2641 for(i=1; i<nFarg; i++){
2642 sqlite3VdbeAddOp2(v, OP_NotNull, target, endCoalesce);
drhf49f3522009-12-30 14:12:38 +00002643 sqlite3ExprCacheRemove(pParse, target, 1);
drhae6bb952009-11-11 00:24:31 +00002644 sqlite3ExprCachePush(pParse);
2645 sqlite3ExprCode(pParse, pFarg->a[i].pExpr, target);
2646 sqlite3ExprCachePop(pParse, 1);
2647 }
2648 sqlite3VdbeResolveLabel(v, endCoalesce);
2649 break;
2650 }
2651
2652
drh12ffee82009-04-08 13:51:51 +00002653 if( pFarg ){
2654 r1 = sqlite3GetTempRange(pParse, nFarg);
drha748fdc2012-03-28 01:34:47 +00002655
2656 /* For length() and typeof() functions with a column argument,
2657 ** set the P5 parameter to the OP_Column opcode to OPFLAG_LENGTHARG
2658 ** or OPFLAG_TYPEOFARG respectively, to avoid unnecessary data
2659 ** loading.
2660 */
2661 if( (pDef->flags & (SQLITE_FUNC_LENGTH|SQLITE_FUNC_TYPEOF))!=0 ){
drh4e245a42012-03-30 00:00:36 +00002662 u8 exprOp;
drha748fdc2012-03-28 01:34:47 +00002663 assert( nFarg==1 );
2664 assert( pFarg->a[0].pExpr!=0 );
drh4e245a42012-03-30 00:00:36 +00002665 exprOp = pFarg->a[0].pExpr->op;
2666 if( exprOp==TK_COLUMN || exprOp==TK_AGG_COLUMN ){
drha748fdc2012-03-28 01:34:47 +00002667 assert( SQLITE_FUNC_LENGTH==OPFLAG_LENGTHARG );
2668 assert( SQLITE_FUNC_TYPEOF==OPFLAG_TYPEOFARG );
2669 testcase( pDef->flags==SQLITE_FUNC_LENGTH );
2670 pFarg->a[0].pExpr->op2 = pDef->flags;
2671 }
2672 }
2673
drhd7d385d2009-09-03 01:18:00 +00002674 sqlite3ExprCachePush(pParse); /* Ticket 2ea2425d34be */
drh12ffee82009-04-08 13:51:51 +00002675 sqlite3ExprCodeExprList(pParse, pFarg, r1, 1);
drhd7d385d2009-09-03 01:18:00 +00002676 sqlite3ExprCachePop(pParse, 1); /* Ticket 2ea2425d34be */
drh892d3172008-01-10 03:46:36 +00002677 }else{
drh12ffee82009-04-08 13:51:51 +00002678 r1 = 0;
drh892d3172008-01-10 03:46:36 +00002679 }
drhb7f6f682006-07-08 17:06:43 +00002680#ifndef SQLITE_OMIT_VIRTUALTABLE
drha43fa222006-07-08 18:41:37 +00002681 /* Possibly overload the function if the first argument is
2682 ** a virtual table column.
2683 **
2684 ** For infix functions (LIKE, GLOB, REGEXP, and MATCH) use the
2685 ** second argument, not the first, as the argument to test to
2686 ** see if it is a column in a virtual table. This is done because
2687 ** the left operand of infix functions (the operand we want to
2688 ** control overloading) ends up as the second argument to the
2689 ** function. The expression "A glob B" is equivalent to
2690 ** "glob(B,A). We want to use the A in "A glob B" to test
2691 ** for function overloading. But we use the B term in "glob(B,A)".
2692 */
drh12ffee82009-04-08 13:51:51 +00002693 if( nFarg>=2 && (pExpr->flags & EP_InfixFunc) ){
2694 pDef = sqlite3VtabOverloadFunction(db, pDef, nFarg, pFarg->a[1].pExpr);
2695 }else if( nFarg>0 ){
2696 pDef = sqlite3VtabOverloadFunction(db, pDef, nFarg, pFarg->a[0].pExpr);
drhb7f6f682006-07-08 17:06:43 +00002697 }
2698#endif
drhf7bca572009-05-30 14:16:31 +00002699 for(i=0; i<nFarg; i++){
2700 if( i<32 && sqlite3ExprIsConstant(pFarg->a[i].pExpr) ){
drh13449892005-09-07 21:22:45 +00002701 constMask |= (1<<i);
danielk1977d02eb1f2004-06-06 09:44:03 +00002702 }
drhe82f5d02008-10-07 19:53:14 +00002703 if( (pDef->flags & SQLITE_FUNC_NEEDCOLL)!=0 && !pColl ){
drh12ffee82009-04-08 13:51:51 +00002704 pColl = sqlite3ExprCollSeq(pParse, pFarg->a[i].pExpr);
danielk1977dc1bdc42004-06-11 10:51:27 +00002705 }
2706 }
drhe82f5d02008-10-07 19:53:14 +00002707 if( pDef->flags & SQLITE_FUNC_NEEDCOLL ){
drh8b213892008-08-29 02:14:02 +00002708 if( !pColl ) pColl = db->pDfltColl;
drh66a51672008-01-03 00:01:23 +00002709 sqlite3VdbeAddOp4(v, OP_CollSeq, 0, 0, 0, (char *)pColl, P4_COLLSEQ);
danielk1977682f68b2004-06-05 10:22:17 +00002710 }
drh2dcef112008-01-12 19:03:48 +00002711 sqlite3VdbeAddOp4(v, OP_Function, constMask, r1, target,
drh66a51672008-01-03 00:01:23 +00002712 (char*)pDef, P4_FUNCDEF);
drh12ffee82009-04-08 13:51:51 +00002713 sqlite3VdbeChangeP5(v, (u8)nFarg);
2714 if( nFarg ){
2715 sqlite3ReleaseTempRange(pParse, r1, nFarg);
drh2dcef112008-01-12 19:03:48 +00002716 }
drhcce7d172000-05-31 15:34:51 +00002717 break;
2718 }
drhfe2093d2005-01-20 22:48:47 +00002719#ifndef SQLITE_OMIT_SUBQUERY
2720 case TK_EXISTS:
drh19a775c2000-06-05 18:54:46 +00002721 case TK_SELECT: {
drhc5499be2008-04-01 15:06:33 +00002722 testcase( op==TK_EXISTS );
2723 testcase( op==TK_SELECT );
drh1450bc62009-10-30 13:25:56 +00002724 inReg = sqlite3CodeSubselect(pParse, pExpr, 0, 0);
drh19a775c2000-06-05 18:54:46 +00002725 break;
2726 }
drhfef52082000-06-06 01:50:43 +00002727 case TK_IN: {
drhe3365e62009-11-12 17:52:24 +00002728 int destIfFalse = sqlite3VdbeMakeLabel(v);
2729 int destIfNull = sqlite3VdbeMakeLabel(v);
2730 sqlite3VdbeAddOp2(v, OP_Null, 0, target);
2731 sqlite3ExprCodeIN(pParse, pExpr, destIfFalse, destIfNull);
2732 sqlite3VdbeAddOp2(v, OP_Integer, 1, target);
2733 sqlite3VdbeResolveLabel(v, destIfFalse);
2734 sqlite3VdbeAddOp2(v, OP_AddImm, target, 0);
2735 sqlite3VdbeResolveLabel(v, destIfNull);
drhfef52082000-06-06 01:50:43 +00002736 break;
2737 }
drhe3365e62009-11-12 17:52:24 +00002738#endif /* SQLITE_OMIT_SUBQUERY */
2739
2740
drh2dcef112008-01-12 19:03:48 +00002741 /*
2742 ** x BETWEEN y AND z
2743 **
2744 ** This is equivalent to
2745 **
2746 ** x>=y AND x<=z
2747 **
2748 ** X is stored in pExpr->pLeft.
2749 ** Y is stored in pExpr->pList->a[0].pExpr.
2750 ** Z is stored in pExpr->pList->a[1].pExpr.
2751 */
drhfef52082000-06-06 01:50:43 +00002752 case TK_BETWEEN: {
drhbe5c89a2004-07-26 00:31:09 +00002753 Expr *pLeft = pExpr->pLeft;
danielk19776ab3a2e2009-02-19 14:39:25 +00002754 struct ExprList_item *pLItem = pExpr->x.pList->a;
drhbe5c89a2004-07-26 00:31:09 +00002755 Expr *pRight = pLItem->pExpr;
drh35573352008-01-08 23:54:25 +00002756
drhb6da74e2009-12-24 16:00:28 +00002757 r1 = sqlite3ExprCodeTemp(pParse, pLeft, &regFree1);
2758 r2 = sqlite3ExprCodeTemp(pParse, pRight, &regFree2);
drhc5499be2008-04-01 15:06:33 +00002759 testcase( regFree1==0 );
2760 testcase( regFree2==0 );
drh2dcef112008-01-12 19:03:48 +00002761 r3 = sqlite3GetTempReg(pParse);
drh678ccce2008-03-31 18:19:54 +00002762 r4 = sqlite3GetTempReg(pParse);
drh35573352008-01-08 23:54:25 +00002763 codeCompare(pParse, pLeft, pRight, OP_Ge,
2764 r1, r2, r3, SQLITE_STOREP2);
drhbe5c89a2004-07-26 00:31:09 +00002765 pLItem++;
2766 pRight = pLItem->pExpr;
drh2dcef112008-01-12 19:03:48 +00002767 sqlite3ReleaseTempReg(pParse, regFree2);
2768 r2 = sqlite3ExprCodeTemp(pParse, pRight, &regFree2);
drhc5499be2008-04-01 15:06:33 +00002769 testcase( regFree2==0 );
drh678ccce2008-03-31 18:19:54 +00002770 codeCompare(pParse, pLeft, pRight, OP_Le, r1, r2, r4, SQLITE_STOREP2);
2771 sqlite3VdbeAddOp3(v, OP_And, r3, r4, target);
drh2dcef112008-01-12 19:03:48 +00002772 sqlite3ReleaseTempReg(pParse, r3);
drh678ccce2008-03-31 18:19:54 +00002773 sqlite3ReleaseTempReg(pParse, r4);
drhfef52082000-06-06 01:50:43 +00002774 break;
2775 }
drhae80dde2012-12-06 21:16:43 +00002776 case TK_COLLATE:
drh4f07e5f2007-05-14 11:34:46 +00002777 case TK_UPLUS: {
drh2dcef112008-01-12 19:03:48 +00002778 inReg = sqlite3ExprCodeTarget(pParse, pExpr->pLeft, target);
drha2e00042002-01-22 03:13:42 +00002779 break;
2780 }
drh2dcef112008-01-12 19:03:48 +00002781
dan165921a2009-08-28 18:53:45 +00002782 case TK_TRIGGER: {
dan65a7cd12009-09-01 12:16:01 +00002783 /* If the opcode is TK_TRIGGER, then the expression is a reference
2784 ** to a column in the new.* or old.* pseudo-tables available to
2785 ** trigger programs. In this case Expr.iTable is set to 1 for the
2786 ** new.* pseudo-table, or 0 for the old.* pseudo-table. Expr.iColumn
2787 ** is set to the column of the pseudo-table to read, or to -1 to
2788 ** read the rowid field.
2789 **
2790 ** The expression is implemented using an OP_Param opcode. The p1
2791 ** parameter is set to 0 for an old.rowid reference, or to (i+1)
2792 ** to reference another column of the old.* pseudo-table, where
2793 ** i is the index of the column. For a new.rowid reference, p1 is
2794 ** set to (n+1), where n is the number of columns in each pseudo-table.
2795 ** For a reference to any other column in the new.* pseudo-table, p1
2796 ** is set to (n+2+i), where n and i are as defined previously. For
2797 ** example, if the table on which triggers are being fired is
2798 ** declared as:
2799 **
2800 ** CREATE TABLE t1(a, b);
2801 **
2802 ** Then p1 is interpreted as follows:
2803 **
2804 ** p1==0 -> old.rowid p1==3 -> new.rowid
2805 ** p1==1 -> old.a p1==4 -> new.a
2806 ** p1==2 -> old.b p1==5 -> new.b
2807 */
dan2832ad42009-08-31 15:27:27 +00002808 Table *pTab = pExpr->pTab;
dan65a7cd12009-09-01 12:16:01 +00002809 int p1 = pExpr->iTable * (pTab->nCol+1) + 1 + pExpr->iColumn;
2810
2811 assert( pExpr->iTable==0 || pExpr->iTable==1 );
2812 assert( pExpr->iColumn>=-1 && pExpr->iColumn<pTab->nCol );
2813 assert( pTab->iPKey<0 || pExpr->iColumn!=pTab->iPKey );
2814 assert( p1>=0 && p1<(pTab->nCol*2+2) );
2815
2816 sqlite3VdbeAddOp2(v, OP_Param, p1, target);
dan2bd93512009-08-31 08:22:46 +00002817 VdbeComment((v, "%s.%s -> $%d",
2818 (pExpr->iTable ? "new" : "old"),
dan76d462e2009-08-30 11:42:51 +00002819 (pExpr->iColumn<0 ? "rowid" : pExpr->pTab->aCol[pExpr->iColumn].zName),
dan2bd93512009-08-31 08:22:46 +00002820 target
dan165921a2009-08-28 18:53:45 +00002821 ));
dan65a7cd12009-09-01 12:16:01 +00002822
drh44dbca82010-01-13 04:22:20 +00002823#ifndef SQLITE_OMIT_FLOATING_POINT
dan65a7cd12009-09-01 12:16:01 +00002824 /* If the column has REAL affinity, it may currently be stored as an
2825 ** integer. Use OP_RealAffinity to make sure it is really real. */
dan2832ad42009-08-31 15:27:27 +00002826 if( pExpr->iColumn>=0
2827 && pTab->aCol[pExpr->iColumn].affinity==SQLITE_AFF_REAL
2828 ){
2829 sqlite3VdbeAddOp1(v, OP_RealAffinity, target);
2830 }
drh44dbca82010-01-13 04:22:20 +00002831#endif
dan165921a2009-08-28 18:53:45 +00002832 break;
2833 }
2834
2835
drh2dcef112008-01-12 19:03:48 +00002836 /*
2837 ** Form A:
2838 ** CASE x WHEN e1 THEN r1 WHEN e2 THEN r2 ... WHEN eN THEN rN ELSE y END
2839 **
2840 ** Form B:
2841 ** CASE WHEN e1 THEN r1 WHEN e2 THEN r2 ... WHEN eN THEN rN ELSE y END
2842 **
2843 ** Form A is can be transformed into the equivalent form B as follows:
2844 ** CASE WHEN x=e1 THEN r1 WHEN x=e2 THEN r2 ...
2845 ** WHEN x=eN THEN rN ELSE y END
2846 **
2847 ** X (if it exists) is in pExpr->pLeft.
2848 ** Y is in pExpr->pRight. The Y is also optional. If there is no
2849 ** ELSE clause and no other term matches, then the result of the
2850 ** exprssion is NULL.
2851 ** Ei is in pExpr->pList->a[i*2] and Ri is pExpr->pList->a[i*2+1].
2852 **
2853 ** The result of the expression is the Ri for the first matching Ei,
2854 ** or if there is no matching Ei, the ELSE term Y, or if there is
2855 ** no ELSE term, NULL.
2856 */
drh33cd4902009-05-30 20:49:20 +00002857 default: assert( op==TK_CASE ); {
drh2dcef112008-01-12 19:03:48 +00002858 int endLabel; /* GOTO label for end of CASE stmt */
2859 int nextCase; /* GOTO label for next WHEN clause */
2860 int nExpr; /* 2x number of WHEN terms */
2861 int i; /* Loop counter */
2862 ExprList *pEList; /* List of WHEN terms */
2863 struct ExprList_item *aListelem; /* Array of WHEN terms */
2864 Expr opCompare; /* The X==Ei expression */
2865 Expr cacheX; /* Cached expression X */
2866 Expr *pX; /* The X expression */
drh1bd10f82008-12-10 21:19:56 +00002867 Expr *pTest = 0; /* X==Ei (form A) or just Ei (form B) */
drhceea3322009-04-23 13:22:42 +00002868 VVA_ONLY( int iCacheLevel = pParse->iCacheLevel; )
drh17a7f8d2002-03-24 13:13:27 +00002869
danielk19776ab3a2e2009-02-19 14:39:25 +00002870 assert( !ExprHasProperty(pExpr, EP_xIsSelect) && pExpr->x.pList );
2871 assert((pExpr->x.pList->nExpr % 2) == 0);
2872 assert(pExpr->x.pList->nExpr > 0);
2873 pEList = pExpr->x.pList;
drhbe5c89a2004-07-26 00:31:09 +00002874 aListelem = pEList->a;
2875 nExpr = pEList->nExpr;
drh2dcef112008-01-12 19:03:48 +00002876 endLabel = sqlite3VdbeMakeLabel(v);
2877 if( (pX = pExpr->pLeft)!=0 ){
2878 cacheX = *pX;
drh33cd4902009-05-30 20:49:20 +00002879 testcase( pX->op==TK_COLUMN );
2880 testcase( pX->op==TK_REGISTER );
drh2dcef112008-01-12 19:03:48 +00002881 cacheX.iTable = sqlite3ExprCodeTemp(pParse, pX, &regFree1);
drhc5499be2008-04-01 15:06:33 +00002882 testcase( regFree1==0 );
drh2dcef112008-01-12 19:03:48 +00002883 cacheX.op = TK_REGISTER;
2884 opCompare.op = TK_EQ;
2885 opCompare.pLeft = &cacheX;
2886 pTest = &opCompare;
drh8b1db072010-09-28 04:14:03 +00002887 /* Ticket b351d95f9cd5ef17e9d9dbae18f5ca8611190001:
2888 ** The value in regFree1 might get SCopy-ed into the file result.
2889 ** So make sure that the regFree1 register is not reused for other
2890 ** purposes and possibly overwritten. */
2891 regFree1 = 0;
drh17a7f8d2002-03-24 13:13:27 +00002892 }
drhf5905aa2002-05-26 20:54:33 +00002893 for(i=0; i<nExpr; i=i+2){
drhceea3322009-04-23 13:22:42 +00002894 sqlite3ExprCachePush(pParse);
drh2dcef112008-01-12 19:03:48 +00002895 if( pX ){
drh1bd10f82008-12-10 21:19:56 +00002896 assert( pTest!=0 );
drh2dcef112008-01-12 19:03:48 +00002897 opCompare.pRight = aListelem[i].pExpr;
drh17a7f8d2002-03-24 13:13:27 +00002898 }else{
drh2dcef112008-01-12 19:03:48 +00002899 pTest = aListelem[i].pExpr;
drh17a7f8d2002-03-24 13:13:27 +00002900 }
drh2dcef112008-01-12 19:03:48 +00002901 nextCase = sqlite3VdbeMakeLabel(v);
drh33cd4902009-05-30 20:49:20 +00002902 testcase( pTest->op==TK_COLUMN );
drh2dcef112008-01-12 19:03:48 +00002903 sqlite3ExprIfFalse(pParse, pTest, nextCase, SQLITE_JUMPIFNULL);
drhc5499be2008-04-01 15:06:33 +00002904 testcase( aListelem[i+1].pExpr->op==TK_COLUMN );
2905 testcase( aListelem[i+1].pExpr->op==TK_REGISTER );
drh9de221d2008-01-05 06:51:30 +00002906 sqlite3ExprCode(pParse, aListelem[i+1].pExpr, target);
drh2dcef112008-01-12 19:03:48 +00002907 sqlite3VdbeAddOp2(v, OP_Goto, 0, endLabel);
drhceea3322009-04-23 13:22:42 +00002908 sqlite3ExprCachePop(pParse, 1);
drh2dcef112008-01-12 19:03:48 +00002909 sqlite3VdbeResolveLabel(v, nextCase);
drhf570f012002-05-31 15:51:25 +00002910 }
drh17a7f8d2002-03-24 13:13:27 +00002911 if( pExpr->pRight ){
drhceea3322009-04-23 13:22:42 +00002912 sqlite3ExprCachePush(pParse);
drh9de221d2008-01-05 06:51:30 +00002913 sqlite3ExprCode(pParse, pExpr->pRight, target);
drhceea3322009-04-23 13:22:42 +00002914 sqlite3ExprCachePop(pParse, 1);
drh17a7f8d2002-03-24 13:13:27 +00002915 }else{
drh9de221d2008-01-05 06:51:30 +00002916 sqlite3VdbeAddOp2(v, OP_Null, 0, target);
drh17a7f8d2002-03-24 13:13:27 +00002917 }
danielk1977c1f4a192009-04-28 12:08:15 +00002918 assert( db->mallocFailed || pParse->nErr>0
2919 || pParse->iCacheLevel==iCacheLevel );
drh2dcef112008-01-12 19:03:48 +00002920 sqlite3VdbeResolveLabel(v, endLabel);
danielk19776f349032002-06-11 02:25:40 +00002921 break;
2922 }
danielk19775338a5f2005-01-20 13:03:10 +00002923#ifndef SQLITE_OMIT_TRIGGER
danielk19776f349032002-06-11 02:25:40 +00002924 case TK_RAISE: {
dan165921a2009-08-28 18:53:45 +00002925 assert( pExpr->affinity==OE_Rollback
2926 || pExpr->affinity==OE_Abort
2927 || pExpr->affinity==OE_Fail
2928 || pExpr->affinity==OE_Ignore
2929 );
dane0af83a2009-09-08 19:15:01 +00002930 if( !pParse->pTriggerTab ){
2931 sqlite3ErrorMsg(pParse,
2932 "RAISE() may only be used within a trigger-program");
2933 return 0;
2934 }
2935 if( pExpr->affinity==OE_Abort ){
2936 sqlite3MayAbort(pParse);
2937 }
dan165921a2009-08-28 18:53:45 +00002938 assert( !ExprHasProperty(pExpr, EP_IntValue) );
dane0af83a2009-09-08 19:15:01 +00002939 if( pExpr->affinity==OE_Ignore ){
2940 sqlite3VdbeAddOp4(
2941 v, OP_Halt, SQLITE_OK, OE_Ignore, 0, pExpr->u.zToken,0);
2942 }else{
drh433dccf2013-02-09 15:37:11 +00002943 sqlite3HaltConstraint(pParse, SQLITE_CONSTRAINT_TRIGGER,
drhd91c1a12013-02-09 13:58:25 +00002944 pExpr->affinity, pExpr->u.zToken, 0);
dane0af83a2009-09-08 19:15:01 +00002945 }
2946
drhffe07b22005-11-03 00:41:17 +00002947 break;
drh17a7f8d2002-03-24 13:13:27 +00002948 }
danielk19775338a5f2005-01-20 13:03:10 +00002949#endif
drhffe07b22005-11-03 00:41:17 +00002950 }
drh2dcef112008-01-12 19:03:48 +00002951 sqlite3ReleaseTempReg(pParse, regFree1);
2952 sqlite3ReleaseTempReg(pParse, regFree2);
2953 return inReg;
2954}
2955
2956/*
2957** Generate code to evaluate an expression and store the results
2958** into a register. Return the register number where the results
2959** are stored.
2960**
2961** If the register is a temporary register that can be deallocated,
drh678ccce2008-03-31 18:19:54 +00002962** then write its number into *pReg. If the result register is not
drh2dcef112008-01-12 19:03:48 +00002963** a temporary, then set *pReg to zero.
2964*/
2965int sqlite3ExprCodeTemp(Parse *pParse, Expr *pExpr, int *pReg){
2966 int r1 = sqlite3GetTempReg(pParse);
2967 int r2 = sqlite3ExprCodeTarget(pParse, pExpr, r1);
2968 if( r2==r1 ){
2969 *pReg = r1;
2970 }else{
2971 sqlite3ReleaseTempReg(pParse, r1);
2972 *pReg = 0;
2973 }
2974 return r2;
2975}
2976
2977/*
2978** Generate code that will evaluate expression pExpr and store the
2979** results in register target. The results are guaranteed to appear
2980** in register target.
2981*/
2982int sqlite3ExprCode(Parse *pParse, Expr *pExpr, int target){
drh9cbf3422008-01-17 16:22:13 +00002983 int inReg;
2984
2985 assert( target>0 && target<=pParse->nMem );
drhebc16712010-09-28 00:25:58 +00002986 if( pExpr && pExpr->op==TK_REGISTER ){
2987 sqlite3VdbeAddOp2(pParse->pVdbe, OP_Copy, pExpr->iTable, target);
2988 }else{
2989 inReg = sqlite3ExprCodeTarget(pParse, pExpr, target);
2990 assert( pParse->pVdbe || pParse->db->mallocFailed );
2991 if( inReg!=target && pParse->pVdbe ){
2992 sqlite3VdbeAddOp2(pParse->pVdbe, OP_SCopy, inReg, target);
2993 }
drhcce7d172000-05-31 15:34:51 +00002994 }
drh389a1ad2008-01-03 23:44:53 +00002995 return target;
drhcce7d172000-05-31 15:34:51 +00002996}
2997
2998/*
drh2dcef112008-01-12 19:03:48 +00002999** Generate code that evalutes the given expression and puts the result
drhde4fcfd2008-01-19 23:50:26 +00003000** in register target.
drh25303782004-12-07 15:41:48 +00003001**
drh2dcef112008-01-12 19:03:48 +00003002** Also make a copy of the expression results into another "cache" register
3003** and modify the expression so that the next time it is evaluated,
3004** the result is a copy of the cache register.
3005**
3006** This routine is used for expressions that are used multiple
3007** times. They are evaluated once and the results of the expression
3008** are reused.
drh25303782004-12-07 15:41:48 +00003009*/
drh2dcef112008-01-12 19:03:48 +00003010int sqlite3ExprCodeAndCache(Parse *pParse, Expr *pExpr, int target){
drh25303782004-12-07 15:41:48 +00003011 Vdbe *v = pParse->pVdbe;
drh2dcef112008-01-12 19:03:48 +00003012 int inReg;
3013 inReg = sqlite3ExprCode(pParse, pExpr, target);
drhde4fcfd2008-01-19 23:50:26 +00003014 assert( target>0 );
drh20bc3932009-05-30 23:35:43 +00003015 /* This routine is called for terms to INSERT or UPDATE. And the only
3016 ** other place where expressions can be converted into TK_REGISTER is
3017 ** in WHERE clause processing. So as currently implemented, there is
3018 ** no way for a TK_REGISTER to exist here. But it seems prudent to
3019 ** keep the ALWAYS() in case the conditions above change with future
3020 ** modifications or enhancements. */
3021 if( ALWAYS(pExpr->op!=TK_REGISTER) ){
drh2dcef112008-01-12 19:03:48 +00003022 int iMem;
drhde4fcfd2008-01-19 23:50:26 +00003023 iMem = ++pParse->nMem;
3024 sqlite3VdbeAddOp2(v, OP_Copy, inReg, iMem);
drh2dcef112008-01-12 19:03:48 +00003025 pExpr->iTable = iMem;
dan937d0de2009-10-15 18:35:38 +00003026 pExpr->op2 = pExpr->op;
drh25303782004-12-07 15:41:48 +00003027 pExpr->op = TK_REGISTER;
3028 }
drh2dcef112008-01-12 19:03:48 +00003029 return inReg;
drh25303782004-12-07 15:41:48 +00003030}
drh2dcef112008-01-12 19:03:48 +00003031
drh678a9aa2011-12-10 15:55:01 +00003032#if defined(SQLITE_ENABLE_TREE_EXPLAIN)
drh7e02e5e2011-12-06 19:44:51 +00003033/*
3034** Generate a human-readable explanation of an expression tree.
3035*/
drha84203a2011-12-07 01:23:51 +00003036void sqlite3ExplainExpr(Vdbe *pOut, Expr *pExpr){
3037 int op; /* The opcode being coded */
3038 const char *zBinOp = 0; /* Binary operator */
3039 const char *zUniOp = 0; /* Unary operator */
3040 if( pExpr==0 ){
3041 op = TK_NULL;
drh7e02e5e2011-12-06 19:44:51 +00003042 }else{
drha84203a2011-12-07 01:23:51 +00003043 op = pExpr->op;
drh7e02e5e2011-12-06 19:44:51 +00003044 }
drha84203a2011-12-07 01:23:51 +00003045 switch( op ){
3046 case TK_AGG_COLUMN: {
drh04b83422011-12-07 15:33:14 +00003047 sqlite3ExplainPrintf(pOut, "AGG{%d:%d}",
3048 pExpr->iTable, pExpr->iColumn);
drha84203a2011-12-07 01:23:51 +00003049 break;
3050 }
3051 case TK_COLUMN: {
3052 if( pExpr->iTable<0 ){
3053 /* This only happens when coding check constraints */
3054 sqlite3ExplainPrintf(pOut, "COLUMN(%d)", pExpr->iColumn);
3055 }else{
drh04b83422011-12-07 15:33:14 +00003056 sqlite3ExplainPrintf(pOut, "{%d:%d}",
3057 pExpr->iTable, pExpr->iColumn);
drha84203a2011-12-07 01:23:51 +00003058 }
3059 break;
3060 }
3061 case TK_INTEGER: {
3062 if( pExpr->flags & EP_IntValue ){
drh04b83422011-12-07 15:33:14 +00003063 sqlite3ExplainPrintf(pOut, "%d", pExpr->u.iValue);
drha84203a2011-12-07 01:23:51 +00003064 }else{
drh04b83422011-12-07 15:33:14 +00003065 sqlite3ExplainPrintf(pOut, "%s", pExpr->u.zToken);
drha84203a2011-12-07 01:23:51 +00003066 }
3067 break;
3068 }
3069#ifndef SQLITE_OMIT_FLOATING_POINT
3070 case TK_FLOAT: {
drh04b83422011-12-07 15:33:14 +00003071 sqlite3ExplainPrintf(pOut,"%s", pExpr->u.zToken);
drha84203a2011-12-07 01:23:51 +00003072 break;
3073 }
3074#endif
3075 case TK_STRING: {
drh04b83422011-12-07 15:33:14 +00003076 sqlite3ExplainPrintf(pOut,"%Q", pExpr->u.zToken);
drha84203a2011-12-07 01:23:51 +00003077 break;
3078 }
3079 case TK_NULL: {
3080 sqlite3ExplainPrintf(pOut,"NULL");
3081 break;
3082 }
3083#ifndef SQLITE_OMIT_BLOB_LITERAL
3084 case TK_BLOB: {
drh04b83422011-12-07 15:33:14 +00003085 sqlite3ExplainPrintf(pOut,"%s", pExpr->u.zToken);
drha84203a2011-12-07 01:23:51 +00003086 break;
3087 }
3088#endif
3089 case TK_VARIABLE: {
3090 sqlite3ExplainPrintf(pOut,"VARIABLE(%s,%d)",
3091 pExpr->u.zToken, pExpr->iColumn);
3092 break;
3093 }
3094 case TK_REGISTER: {
3095 sqlite3ExplainPrintf(pOut,"REGISTER(%d)", pExpr->iTable);
3096 break;
3097 }
3098 case TK_AS: {
3099 sqlite3ExplainExpr(pOut, pExpr->pLeft);
3100 break;
3101 }
3102#ifndef SQLITE_OMIT_CAST
3103 case TK_CAST: {
3104 /* Expressions of the form: CAST(pLeft AS token) */
3105 const char *zAff = "unk";
3106 switch( sqlite3AffinityType(pExpr->u.zToken) ){
3107 case SQLITE_AFF_TEXT: zAff = "TEXT"; break;
3108 case SQLITE_AFF_NONE: zAff = "NONE"; break;
3109 case SQLITE_AFF_NUMERIC: zAff = "NUMERIC"; break;
3110 case SQLITE_AFF_INTEGER: zAff = "INTEGER"; break;
3111 case SQLITE_AFF_REAL: zAff = "REAL"; break;
3112 }
3113 sqlite3ExplainPrintf(pOut, "CAST-%s(", zAff);
3114 sqlite3ExplainExpr(pOut, pExpr->pLeft);
3115 sqlite3ExplainPrintf(pOut, ")");
3116 break;
3117 }
3118#endif /* SQLITE_OMIT_CAST */
3119 case TK_LT: zBinOp = "LT"; break;
3120 case TK_LE: zBinOp = "LE"; break;
3121 case TK_GT: zBinOp = "GT"; break;
3122 case TK_GE: zBinOp = "GE"; break;
3123 case TK_NE: zBinOp = "NE"; break;
3124 case TK_EQ: zBinOp = "EQ"; break;
3125 case TK_IS: zBinOp = "IS"; break;
3126 case TK_ISNOT: zBinOp = "ISNOT"; break;
3127 case TK_AND: zBinOp = "AND"; break;
3128 case TK_OR: zBinOp = "OR"; break;
3129 case TK_PLUS: zBinOp = "ADD"; break;
3130 case TK_STAR: zBinOp = "MUL"; break;
3131 case TK_MINUS: zBinOp = "SUB"; break;
3132 case TK_REM: zBinOp = "REM"; break;
3133 case TK_BITAND: zBinOp = "BITAND"; break;
3134 case TK_BITOR: zBinOp = "BITOR"; break;
3135 case TK_SLASH: zBinOp = "DIV"; break;
3136 case TK_LSHIFT: zBinOp = "LSHIFT"; break;
3137 case TK_RSHIFT: zBinOp = "RSHIFT"; break;
3138 case TK_CONCAT: zBinOp = "CONCAT"; break;
3139
3140 case TK_UMINUS: zUniOp = "UMINUS"; break;
3141 case TK_UPLUS: zUniOp = "UPLUS"; break;
3142 case TK_BITNOT: zUniOp = "BITNOT"; break;
3143 case TK_NOT: zUniOp = "NOT"; break;
3144 case TK_ISNULL: zUniOp = "ISNULL"; break;
3145 case TK_NOTNULL: zUniOp = "NOTNULL"; break;
3146
drh7a66da12012-12-07 20:31:11 +00003147 case TK_COLLATE: {
3148 sqlite3ExplainExpr(pOut, pExpr->pLeft);
3149 sqlite3ExplainPrintf(pOut,".COLLATE(%s)",pExpr->u.zToken);
3150 break;
3151 }
3152
drha84203a2011-12-07 01:23:51 +00003153 case TK_AGG_FUNCTION:
3154 case TK_CONST_FUNC:
3155 case TK_FUNCTION: {
3156 ExprList *pFarg; /* List of function arguments */
3157 if( ExprHasAnyProperty(pExpr, EP_TokenOnly) ){
3158 pFarg = 0;
3159 }else{
3160 pFarg = pExpr->x.pList;
3161 }
drhed551b92012-08-23 19:46:11 +00003162 if( op==TK_AGG_FUNCTION ){
3163 sqlite3ExplainPrintf(pOut, "AGG_FUNCTION%d:%s(",
3164 pExpr->op2, pExpr->u.zToken);
3165 }else{
3166 sqlite3ExplainPrintf(pOut, "FUNCTION:%s(", pExpr->u.zToken);
3167 }
drha84203a2011-12-07 01:23:51 +00003168 if( pFarg ){
3169 sqlite3ExplainExprList(pOut, pFarg);
3170 }
3171 sqlite3ExplainPrintf(pOut, ")");
3172 break;
3173 }
3174#ifndef SQLITE_OMIT_SUBQUERY
3175 case TK_EXISTS: {
3176 sqlite3ExplainPrintf(pOut, "EXISTS(");
3177 sqlite3ExplainSelect(pOut, pExpr->x.pSelect);
3178 sqlite3ExplainPrintf(pOut,")");
3179 break;
3180 }
3181 case TK_SELECT: {
3182 sqlite3ExplainPrintf(pOut, "(");
3183 sqlite3ExplainSelect(pOut, pExpr->x.pSelect);
3184 sqlite3ExplainPrintf(pOut, ")");
3185 break;
3186 }
3187 case TK_IN: {
3188 sqlite3ExplainPrintf(pOut, "IN(");
3189 sqlite3ExplainExpr(pOut, pExpr->pLeft);
3190 sqlite3ExplainPrintf(pOut, ",");
3191 if( ExprHasProperty(pExpr, EP_xIsSelect) ){
3192 sqlite3ExplainSelect(pOut, pExpr->x.pSelect);
3193 }else{
3194 sqlite3ExplainExprList(pOut, pExpr->x.pList);
3195 }
3196 sqlite3ExplainPrintf(pOut, ")");
3197 break;
3198 }
3199#endif /* SQLITE_OMIT_SUBQUERY */
3200
3201 /*
3202 ** x BETWEEN y AND z
3203 **
3204 ** This is equivalent to
3205 **
3206 ** x>=y AND x<=z
3207 **
3208 ** X is stored in pExpr->pLeft.
3209 ** Y is stored in pExpr->pList->a[0].pExpr.
3210 ** Z is stored in pExpr->pList->a[1].pExpr.
3211 */
3212 case TK_BETWEEN: {
3213 Expr *pX = pExpr->pLeft;
3214 Expr *pY = pExpr->x.pList->a[0].pExpr;
3215 Expr *pZ = pExpr->x.pList->a[1].pExpr;
3216 sqlite3ExplainPrintf(pOut, "BETWEEN(");
3217 sqlite3ExplainExpr(pOut, pX);
3218 sqlite3ExplainPrintf(pOut, ",");
3219 sqlite3ExplainExpr(pOut, pY);
3220 sqlite3ExplainPrintf(pOut, ",");
3221 sqlite3ExplainExpr(pOut, pZ);
3222 sqlite3ExplainPrintf(pOut, ")");
3223 break;
3224 }
3225 case TK_TRIGGER: {
3226 /* If the opcode is TK_TRIGGER, then the expression is a reference
3227 ** to a column in the new.* or old.* pseudo-tables available to
3228 ** trigger programs. In this case Expr.iTable is set to 1 for the
3229 ** new.* pseudo-table, or 0 for the old.* pseudo-table. Expr.iColumn
3230 ** is set to the column of the pseudo-table to read, or to -1 to
3231 ** read the rowid field.
3232 */
3233 sqlite3ExplainPrintf(pOut, "%s(%d)",
3234 pExpr->iTable ? "NEW" : "OLD", pExpr->iColumn);
3235 break;
3236 }
3237 case TK_CASE: {
3238 sqlite3ExplainPrintf(pOut, "CASE(");
3239 sqlite3ExplainExpr(pOut, pExpr->pLeft);
3240 sqlite3ExplainPrintf(pOut, ",");
3241 sqlite3ExplainExprList(pOut, pExpr->x.pList);
3242 break;
3243 }
3244#ifndef SQLITE_OMIT_TRIGGER
3245 case TK_RAISE: {
3246 const char *zType = "unk";
3247 switch( pExpr->affinity ){
3248 case OE_Rollback: zType = "rollback"; break;
3249 case OE_Abort: zType = "abort"; break;
3250 case OE_Fail: zType = "fail"; break;
3251 case OE_Ignore: zType = "ignore"; break;
3252 }
3253 sqlite3ExplainPrintf(pOut, "RAISE-%s(%s)", zType, pExpr->u.zToken);
3254 break;
3255 }
3256#endif
drh7e02e5e2011-12-06 19:44:51 +00003257 }
drha84203a2011-12-07 01:23:51 +00003258 if( zBinOp ){
3259 sqlite3ExplainPrintf(pOut,"%s(", zBinOp);
3260 sqlite3ExplainExpr(pOut, pExpr->pLeft);
3261 sqlite3ExplainPrintf(pOut,",");
3262 sqlite3ExplainExpr(pOut, pExpr->pRight);
3263 sqlite3ExplainPrintf(pOut,")");
3264 }else if( zUniOp ){
3265 sqlite3ExplainPrintf(pOut,"%s(", zUniOp);
3266 sqlite3ExplainExpr(pOut, pExpr->pLeft);
3267 sqlite3ExplainPrintf(pOut,")");
drh7e02e5e2011-12-06 19:44:51 +00003268 }
drh7e02e5e2011-12-06 19:44:51 +00003269}
drh678a9aa2011-12-10 15:55:01 +00003270#endif /* defined(SQLITE_ENABLE_TREE_EXPLAIN) */
drh7e02e5e2011-12-06 19:44:51 +00003271
drh678a9aa2011-12-10 15:55:01 +00003272#if defined(SQLITE_ENABLE_TREE_EXPLAIN)
drh7e02e5e2011-12-06 19:44:51 +00003273/*
3274** Generate a human-readable explanation of an expression list.
3275*/
3276void sqlite3ExplainExprList(Vdbe *pOut, ExprList *pList){
3277 int i;
drha84203a2011-12-07 01:23:51 +00003278 if( pList==0 || pList->nExpr==0 ){
drh7e02e5e2011-12-06 19:44:51 +00003279 sqlite3ExplainPrintf(pOut, "(empty-list)");
3280 return;
drha84203a2011-12-07 01:23:51 +00003281 }else if( pList->nExpr==1 ){
3282 sqlite3ExplainExpr(pOut, pList->a[0].pExpr);
3283 }else{
drh7e02e5e2011-12-06 19:44:51 +00003284 sqlite3ExplainPush(pOut);
drha84203a2011-12-07 01:23:51 +00003285 for(i=0; i<pList->nExpr; i++){
3286 sqlite3ExplainPrintf(pOut, "item[%d] = ", i);
3287 sqlite3ExplainPush(pOut);
3288 sqlite3ExplainExpr(pOut, pList->a[i].pExpr);
3289 sqlite3ExplainPop(pOut);
drh3e3f1a52013-01-03 00:45:56 +00003290 if( pList->a[i].zName ){
3291 sqlite3ExplainPrintf(pOut, " AS %s", pList->a[i].zName);
3292 }
3293 if( pList->a[i].bSpanIsTab ){
3294 sqlite3ExplainPrintf(pOut, " (%s)", pList->a[i].zSpan);
3295 }
drha84203a2011-12-07 01:23:51 +00003296 if( i<pList->nExpr-1 ){
3297 sqlite3ExplainNL(pOut);
3298 }
drh7e02e5e2011-12-06 19:44:51 +00003299 }
drha84203a2011-12-07 01:23:51 +00003300 sqlite3ExplainPop(pOut);
drh7e02e5e2011-12-06 19:44:51 +00003301 }
drh7e02e5e2011-12-06 19:44:51 +00003302}
3303#endif /* SQLITE_DEBUG */
3304
drh678ccce2008-03-31 18:19:54 +00003305/*
drh47de9552008-04-01 18:04:11 +00003306** Return TRUE if pExpr is an constant expression that is appropriate
3307** for factoring out of a loop. Appropriate expressions are:
3308**
3309** * Any expression that evaluates to two or more opcodes.
3310**
3311** * Any OP_Integer, OP_Real, OP_String, OP_Blob, OP_Null,
3312** or OP_Variable that does not need to be placed in a
3313** specific register.
3314**
3315** There is no point in factoring out single-instruction constant
3316** expressions that need to be placed in a particular register.
3317** We could factor them out, but then we would end up adding an
3318** OP_SCopy instruction to move the value into the correct register
3319** later. We might as well just use the original instruction and
3320** avoid the OP_SCopy.
3321*/
3322static int isAppropriateForFactoring(Expr *p){
3323 if( !sqlite3ExprIsConstantNotJoin(p) ){
3324 return 0; /* Only constant expressions are appropriate for factoring */
3325 }
3326 if( (p->flags & EP_FixedDest)==0 ){
3327 return 1; /* Any constant without a fixed destination is appropriate */
3328 }
3329 while( p->op==TK_UPLUS ) p = p->pLeft;
3330 switch( p->op ){
3331#ifndef SQLITE_OMIT_BLOB_LITERAL
3332 case TK_BLOB:
3333#endif
3334 case TK_VARIABLE:
3335 case TK_INTEGER:
3336 case TK_FLOAT:
3337 case TK_NULL:
3338 case TK_STRING: {
3339 testcase( p->op==TK_BLOB );
3340 testcase( p->op==TK_VARIABLE );
3341 testcase( p->op==TK_INTEGER );
3342 testcase( p->op==TK_FLOAT );
3343 testcase( p->op==TK_NULL );
3344 testcase( p->op==TK_STRING );
3345 /* Single-instruction constants with a fixed destination are
3346 ** better done in-line. If we factor them, they will just end
3347 ** up generating an OP_SCopy to move the value to the destination
3348 ** register. */
3349 return 0;
3350 }
3351 case TK_UMINUS: {
drh20bc3932009-05-30 23:35:43 +00003352 if( p->pLeft->op==TK_FLOAT || p->pLeft->op==TK_INTEGER ){
3353 return 0;
3354 }
3355 break;
drh47de9552008-04-01 18:04:11 +00003356 }
3357 default: {
3358 break;
3359 }
3360 }
3361 return 1;
3362}
3363
3364/*
3365** If pExpr is a constant expression that is appropriate for
3366** factoring out of a loop, then evaluate the expression
drh678ccce2008-03-31 18:19:54 +00003367** into a register and convert the expression into a TK_REGISTER
3368** expression.
3369*/
drh7d10d5a2008-08-20 16:35:10 +00003370static int evalConstExpr(Walker *pWalker, Expr *pExpr){
3371 Parse *pParse = pWalker->pParse;
drh47de9552008-04-01 18:04:11 +00003372 switch( pExpr->op ){
drhe05c9292009-10-29 13:48:10 +00003373 case TK_IN:
drh47de9552008-04-01 18:04:11 +00003374 case TK_REGISTER: {
drh33cd4902009-05-30 20:49:20 +00003375 return WRC_Prune;
drh47de9552008-04-01 18:04:11 +00003376 }
drh261d8a52012-12-08 21:36:26 +00003377 case TK_COLLATE: {
3378 return WRC_Continue;
3379 }
drh47de9552008-04-01 18:04:11 +00003380 case TK_FUNCTION:
3381 case TK_AGG_FUNCTION:
3382 case TK_CONST_FUNC: {
3383 /* The arguments to a function have a fixed destination.
3384 ** Mark them this way to avoid generated unneeded OP_SCopy
3385 ** instructions.
3386 */
danielk19776ab3a2e2009-02-19 14:39:25 +00003387 ExprList *pList = pExpr->x.pList;
3388 assert( !ExprHasProperty(pExpr, EP_xIsSelect) );
drh47de9552008-04-01 18:04:11 +00003389 if( pList ){
3390 int i = pList->nExpr;
3391 struct ExprList_item *pItem = pList->a;
3392 for(; i>0; i--, pItem++){
drh33cd4902009-05-30 20:49:20 +00003393 if( ALWAYS(pItem->pExpr) ) pItem->pExpr->flags |= EP_FixedDest;
drh47de9552008-04-01 18:04:11 +00003394 }
3395 }
3396 break;
3397 }
drh678ccce2008-03-31 18:19:54 +00003398 }
drh47de9552008-04-01 18:04:11 +00003399 if( isAppropriateForFactoring(pExpr) ){
drh678ccce2008-03-31 18:19:54 +00003400 int r1 = ++pParse->nMem;
drh261d8a52012-12-08 21:36:26 +00003401 int r2 = sqlite3ExprCodeTarget(pParse, pExpr, r1);
3402 /* If r2!=r1, it means that register r1 is never used. That is harmless
3403 ** but suboptimal, so we want to know about the situation to fix it.
3404 ** Hence the following assert: */
3405 assert( r2==r1 );
danfcd4a152009-08-19 17:17:00 +00003406 pExpr->op2 = pExpr->op;
drh678ccce2008-03-31 18:19:54 +00003407 pExpr->op = TK_REGISTER;
3408 pExpr->iTable = r2;
drh7d10d5a2008-08-20 16:35:10 +00003409 return WRC_Prune;
drh678ccce2008-03-31 18:19:54 +00003410 }
drh7d10d5a2008-08-20 16:35:10 +00003411 return WRC_Continue;
drh678ccce2008-03-31 18:19:54 +00003412}
3413
3414/*
3415** Preevaluate constant subexpressions within pExpr and store the
3416** results in registers. Modify pExpr so that the constant subexpresions
3417** are TK_REGISTER opcodes that refer to the precomputed values.
drhf58ee7f2010-12-06 21:06:09 +00003418**
3419** This routine is a no-op if the jump to the cookie-check code has
3420** already occur. Since the cookie-check jump is generated prior to
3421** any other serious processing, this check ensures that there is no
3422** way to accidently bypass the constant initializations.
3423**
3424** This routine is also a no-op if the SQLITE_FactorOutConst optimization
3425** is disabled via the sqlite3_test_control(SQLITE_TESTCTRL_OPTIMIZATIONS)
3426** interface. This allows test logic to verify that the same answer is
3427** obtained for queries regardless of whether or not constants are
3428** precomputed into registers or if they are inserted in-line.
drh678ccce2008-03-31 18:19:54 +00003429*/
3430void sqlite3ExprCodeConstants(Parse *pParse, Expr *pExpr){
drh7d10d5a2008-08-20 16:35:10 +00003431 Walker w;
drh48b5b042010-12-06 18:50:32 +00003432 if( pParse->cookieGoto ) return;
drh7e5418e2012-09-27 15:05:54 +00003433 if( OptimizationDisabled(pParse->db, SQLITE_FactorOutConst) ) return;
drhaa87f9a2013-04-25 00:57:10 +00003434 memset(&w, 0, sizeof(w));
drh7d10d5a2008-08-20 16:35:10 +00003435 w.xExprCallback = evalConstExpr;
drh7d10d5a2008-08-20 16:35:10 +00003436 w.pParse = pParse;
3437 sqlite3WalkExpr(&w, pExpr);
drh678ccce2008-03-31 18:19:54 +00003438}
3439
drh25303782004-12-07 15:41:48 +00003440
3441/*
drh268380c2004-02-25 13:47:31 +00003442** Generate code that pushes the value of every element of the given
drh9cbf3422008-01-17 16:22:13 +00003443** expression list into a sequence of registers beginning at target.
drh268380c2004-02-25 13:47:31 +00003444**
drh892d3172008-01-10 03:46:36 +00003445** Return the number of elements evaluated.
drh268380c2004-02-25 13:47:31 +00003446*/
danielk19774adee202004-05-08 08:23:19 +00003447int sqlite3ExprCodeExprList(
drh268380c2004-02-25 13:47:31 +00003448 Parse *pParse, /* Parsing context */
drh389a1ad2008-01-03 23:44:53 +00003449 ExprList *pList, /* The expression list to be coded */
drh191b54c2008-04-15 12:14:21 +00003450 int target, /* Where to write results */
drhd1766112008-09-17 00:13:12 +00003451 int doHardCopy /* Make a hard copy of every element */
drh268380c2004-02-25 13:47:31 +00003452){
3453 struct ExprList_item *pItem;
drh9cbf3422008-01-17 16:22:13 +00003454 int i, n;
drh9d8b3072008-08-22 16:29:51 +00003455 assert( pList!=0 );
drh9cbf3422008-01-17 16:22:13 +00003456 assert( target>0 );
drhd81a1422010-09-28 07:11:24 +00003457 assert( pParse->pVdbe!=0 ); /* Never gets this far otherwise */
drh268380c2004-02-25 13:47:31 +00003458 n = pList->nExpr;
drh191b54c2008-04-15 12:14:21 +00003459 for(pItem=pList->a, i=0; i<n; i++, pItem++){
drh7445ffe2010-09-27 18:14:12 +00003460 Expr *pExpr = pItem->pExpr;
3461 int inReg = sqlite3ExprCodeTarget(pParse, pExpr, target+i);
drh746fd9c2010-09-28 06:00:47 +00003462 if( inReg!=target+i ){
drh7445ffe2010-09-27 18:14:12 +00003463 sqlite3VdbeAddOp2(pParse->pVdbe, doHardCopy ? OP_Copy : OP_SCopy,
3464 inReg, target+i);
drhd1766112008-09-17 00:13:12 +00003465 }
drh268380c2004-02-25 13:47:31 +00003466 }
drhf9b596e2004-05-26 16:54:42 +00003467 return n;
drh268380c2004-02-25 13:47:31 +00003468}
3469
3470/*
drh36c563a2009-11-12 13:32:22 +00003471** Generate code for a BETWEEN operator.
3472**
3473** x BETWEEN y AND z
3474**
3475** The above is equivalent to
3476**
3477** x>=y AND x<=z
3478**
3479** Code it as such, taking care to do the common subexpression
3480** elementation of x.
3481*/
3482static void exprCodeBetween(
3483 Parse *pParse, /* Parsing and code generating context */
3484 Expr *pExpr, /* The BETWEEN expression */
3485 int dest, /* Jump here if the jump is taken */
3486 int jumpIfTrue, /* Take the jump if the BETWEEN is true */
3487 int jumpIfNull /* Take the jump if the BETWEEN is NULL */
3488){
3489 Expr exprAnd; /* The AND operator in x>=y AND x<=z */
3490 Expr compLeft; /* The x>=y term */
3491 Expr compRight; /* The x<=z term */
3492 Expr exprX; /* The x subexpression */
3493 int regFree1 = 0; /* Temporary use register */
3494
3495 assert( !ExprHasProperty(pExpr, EP_xIsSelect) );
3496 exprX = *pExpr->pLeft;
3497 exprAnd.op = TK_AND;
3498 exprAnd.pLeft = &compLeft;
3499 exprAnd.pRight = &compRight;
3500 compLeft.op = TK_GE;
3501 compLeft.pLeft = &exprX;
3502 compLeft.pRight = pExpr->x.pList->a[0].pExpr;
3503 compRight.op = TK_LE;
3504 compRight.pLeft = &exprX;
3505 compRight.pRight = pExpr->x.pList->a[1].pExpr;
3506 exprX.iTable = sqlite3ExprCodeTemp(pParse, &exprX, &regFree1);
dan36e78302013-08-21 12:04:32 +00003507 exprX.op2 = exprX.op;
drh36c563a2009-11-12 13:32:22 +00003508 exprX.op = TK_REGISTER;
3509 if( jumpIfTrue ){
3510 sqlite3ExprIfTrue(pParse, &exprAnd, dest, jumpIfNull);
3511 }else{
3512 sqlite3ExprIfFalse(pParse, &exprAnd, dest, jumpIfNull);
3513 }
3514 sqlite3ReleaseTempReg(pParse, regFree1);
3515
3516 /* Ensure adequate test coverage */
3517 testcase( jumpIfTrue==0 && jumpIfNull==0 && regFree1==0 );
3518 testcase( jumpIfTrue==0 && jumpIfNull==0 && regFree1!=0 );
3519 testcase( jumpIfTrue==0 && jumpIfNull!=0 && regFree1==0 );
3520 testcase( jumpIfTrue==0 && jumpIfNull!=0 && regFree1!=0 );
3521 testcase( jumpIfTrue!=0 && jumpIfNull==0 && regFree1==0 );
3522 testcase( jumpIfTrue!=0 && jumpIfNull==0 && regFree1!=0 );
3523 testcase( jumpIfTrue!=0 && jumpIfNull!=0 && regFree1==0 );
3524 testcase( jumpIfTrue!=0 && jumpIfNull!=0 && regFree1!=0 );
3525}
3526
3527/*
drhcce7d172000-05-31 15:34:51 +00003528** Generate code for a boolean expression such that a jump is made
3529** to the label "dest" if the expression is true but execution
3530** continues straight thru if the expression is false.
drhf5905aa2002-05-26 20:54:33 +00003531**
3532** If the expression evaluates to NULL (neither true nor false), then
drh35573352008-01-08 23:54:25 +00003533** take the jump if the jumpIfNull flag is SQLITE_JUMPIFNULL.
drhf2bc0132004-10-04 13:19:23 +00003534**
3535** This code depends on the fact that certain token values (ex: TK_EQ)
3536** are the same as opcode values (ex: OP_Eq) that implement the corresponding
3537** operation. Special comments in vdbe.c and the mkopcodeh.awk script in
3538** the make process cause these values to align. Assert()s in the code
3539** below verify that the numbers are aligned correctly.
drhcce7d172000-05-31 15:34:51 +00003540*/
danielk19774adee202004-05-08 08:23:19 +00003541void sqlite3ExprIfTrue(Parse *pParse, Expr *pExpr, int dest, int jumpIfNull){
drhcce7d172000-05-31 15:34:51 +00003542 Vdbe *v = pParse->pVdbe;
3543 int op = 0;
drh2dcef112008-01-12 19:03:48 +00003544 int regFree1 = 0;
3545 int regFree2 = 0;
3546 int r1, r2;
3547
drh35573352008-01-08 23:54:25 +00003548 assert( jumpIfNull==SQLITE_JUMPIFNULL || jumpIfNull==0 );
mistachkin48864df2013-03-21 21:20:32 +00003549 if( NEVER(v==0) ) return; /* Existence of VDBE checked by caller */
drh33cd4902009-05-30 20:49:20 +00003550 if( NEVER(pExpr==0) ) return; /* No way this can happen */
drhf2bc0132004-10-04 13:19:23 +00003551 op = pExpr->op;
3552 switch( op ){
drhcce7d172000-05-31 15:34:51 +00003553 case TK_AND: {
danielk19774adee202004-05-08 08:23:19 +00003554 int d2 = sqlite3VdbeMakeLabel(v);
drhc5499be2008-04-01 15:06:33 +00003555 testcase( jumpIfNull==0 );
drhceea3322009-04-23 13:22:42 +00003556 sqlite3ExprCachePush(pParse);
drh35573352008-01-08 23:54:25 +00003557 sqlite3ExprIfFalse(pParse, pExpr->pLeft, d2,jumpIfNull^SQLITE_JUMPIFNULL);
danielk19774adee202004-05-08 08:23:19 +00003558 sqlite3ExprIfTrue(pParse, pExpr->pRight, dest, jumpIfNull);
3559 sqlite3VdbeResolveLabel(v, d2);
drhceea3322009-04-23 13:22:42 +00003560 sqlite3ExprCachePop(pParse, 1);
drhcce7d172000-05-31 15:34:51 +00003561 break;
3562 }
3563 case TK_OR: {
drhc5499be2008-04-01 15:06:33 +00003564 testcase( jumpIfNull==0 );
danielk19774adee202004-05-08 08:23:19 +00003565 sqlite3ExprIfTrue(pParse, pExpr->pLeft, dest, jumpIfNull);
3566 sqlite3ExprIfTrue(pParse, pExpr->pRight, dest, jumpIfNull);
drhcce7d172000-05-31 15:34:51 +00003567 break;
3568 }
3569 case TK_NOT: {
drhc5499be2008-04-01 15:06:33 +00003570 testcase( jumpIfNull==0 );
danielk19774adee202004-05-08 08:23:19 +00003571 sqlite3ExprIfFalse(pParse, pExpr->pLeft, dest, jumpIfNull);
drhcce7d172000-05-31 15:34:51 +00003572 break;
3573 }
3574 case TK_LT:
3575 case TK_LE:
3576 case TK_GT:
3577 case TK_GE:
3578 case TK_NE:
drh0ac65892002-04-20 14:24:41 +00003579 case TK_EQ: {
drhf2bc0132004-10-04 13:19:23 +00003580 assert( TK_LT==OP_Lt );
3581 assert( TK_LE==OP_Le );
3582 assert( TK_GT==OP_Gt );
3583 assert( TK_GE==OP_Ge );
3584 assert( TK_EQ==OP_Eq );
3585 assert( TK_NE==OP_Ne );
drhc5499be2008-04-01 15:06:33 +00003586 testcase( op==TK_LT );
3587 testcase( op==TK_LE );
3588 testcase( op==TK_GT );
3589 testcase( op==TK_GE );
3590 testcase( op==TK_EQ );
3591 testcase( op==TK_NE );
3592 testcase( jumpIfNull==0 );
drhb6da74e2009-12-24 16:00:28 +00003593 r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, &regFree1);
3594 r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, &regFree2);
drh35573352008-01-08 23:54:25 +00003595 codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op,
drh2dcef112008-01-12 19:03:48 +00003596 r1, r2, dest, jumpIfNull);
drhc5499be2008-04-01 15:06:33 +00003597 testcase( regFree1==0 );
3598 testcase( regFree2==0 );
drhcce7d172000-05-31 15:34:51 +00003599 break;
3600 }
drh6a2fe092009-09-23 02:29:36 +00003601 case TK_IS:
3602 case TK_ISNOT: {
3603 testcase( op==TK_IS );
3604 testcase( op==TK_ISNOT );
drhb6da74e2009-12-24 16:00:28 +00003605 r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, &regFree1);
3606 r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, &regFree2);
drh6a2fe092009-09-23 02:29:36 +00003607 op = (op==TK_IS) ? TK_EQ : TK_NE;
3608 codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op,
3609 r1, r2, dest, SQLITE_NULLEQ);
3610 testcase( regFree1==0 );
3611 testcase( regFree2==0 );
3612 break;
3613 }
drhcce7d172000-05-31 15:34:51 +00003614 case TK_ISNULL:
3615 case TK_NOTNULL: {
drhf2bc0132004-10-04 13:19:23 +00003616 assert( TK_ISNULL==OP_IsNull );
3617 assert( TK_NOTNULL==OP_NotNull );
drhc5499be2008-04-01 15:06:33 +00003618 testcase( op==TK_ISNULL );
3619 testcase( op==TK_NOTNULL );
drh2dcef112008-01-12 19:03:48 +00003620 r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, &regFree1);
3621 sqlite3VdbeAddOp2(v, op, r1, dest);
drhc5499be2008-04-01 15:06:33 +00003622 testcase( regFree1==0 );
drhcce7d172000-05-31 15:34:51 +00003623 break;
3624 }
drhfef52082000-06-06 01:50:43 +00003625 case TK_BETWEEN: {
drh5c03f302009-11-13 15:03:59 +00003626 testcase( jumpIfNull==0 );
drh36c563a2009-11-12 13:32:22 +00003627 exprCodeBetween(pParse, pExpr, dest, 1, jumpIfNull);
drhfef52082000-06-06 01:50:43 +00003628 break;
3629 }
drh84e30ca2011-02-10 17:46:14 +00003630#ifndef SQLITE_OMIT_SUBQUERY
drhe3365e62009-11-12 17:52:24 +00003631 case TK_IN: {
3632 int destIfFalse = sqlite3VdbeMakeLabel(v);
3633 int destIfNull = jumpIfNull ? dest : destIfFalse;
3634 sqlite3ExprCodeIN(pParse, pExpr, destIfFalse, destIfNull);
3635 sqlite3VdbeAddOp2(v, OP_Goto, 0, dest);
3636 sqlite3VdbeResolveLabel(v, destIfFalse);
3637 break;
3638 }
shanehbb201342011-02-09 19:55:20 +00003639#endif
drhcce7d172000-05-31 15:34:51 +00003640 default: {
drh2dcef112008-01-12 19:03:48 +00003641 r1 = sqlite3ExprCodeTemp(pParse, pExpr, &regFree1);
3642 sqlite3VdbeAddOp3(v, OP_If, r1, dest, jumpIfNull!=0);
drhc5499be2008-04-01 15:06:33 +00003643 testcase( regFree1==0 );
3644 testcase( jumpIfNull==0 );
drhcce7d172000-05-31 15:34:51 +00003645 break;
3646 }
3647 }
drh2dcef112008-01-12 19:03:48 +00003648 sqlite3ReleaseTempReg(pParse, regFree1);
3649 sqlite3ReleaseTempReg(pParse, regFree2);
drhcce7d172000-05-31 15:34:51 +00003650}
3651
3652/*
drh66b89c82000-11-28 20:47:17 +00003653** Generate code for a boolean expression such that a jump is made
drhcce7d172000-05-31 15:34:51 +00003654** to the label "dest" if the expression is false but execution
3655** continues straight thru if the expression is true.
drhf5905aa2002-05-26 20:54:33 +00003656**
3657** If the expression evaluates to NULL (neither true nor false) then
drh35573352008-01-08 23:54:25 +00003658** jump if jumpIfNull is SQLITE_JUMPIFNULL or fall through if jumpIfNull
3659** is 0.
drhcce7d172000-05-31 15:34:51 +00003660*/
danielk19774adee202004-05-08 08:23:19 +00003661void sqlite3ExprIfFalse(Parse *pParse, Expr *pExpr, int dest, int jumpIfNull){
drhcce7d172000-05-31 15:34:51 +00003662 Vdbe *v = pParse->pVdbe;
3663 int op = 0;
drh2dcef112008-01-12 19:03:48 +00003664 int regFree1 = 0;
3665 int regFree2 = 0;
3666 int r1, r2;
3667
drh35573352008-01-08 23:54:25 +00003668 assert( jumpIfNull==SQLITE_JUMPIFNULL || jumpIfNull==0 );
mistachkin48864df2013-03-21 21:20:32 +00003669 if( NEVER(v==0) ) return; /* Existence of VDBE checked by caller */
drh33cd4902009-05-30 20:49:20 +00003670 if( pExpr==0 ) return;
drhf2bc0132004-10-04 13:19:23 +00003671
3672 /* The value of pExpr->op and op are related as follows:
3673 **
3674 ** pExpr->op op
3675 ** --------- ----------
3676 ** TK_ISNULL OP_NotNull
3677 ** TK_NOTNULL OP_IsNull
3678 ** TK_NE OP_Eq
3679 ** TK_EQ OP_Ne
3680 ** TK_GT OP_Le
3681 ** TK_LE OP_Gt
3682 ** TK_GE OP_Lt
3683 ** TK_LT OP_Ge
3684 **
3685 ** For other values of pExpr->op, op is undefined and unused.
3686 ** The value of TK_ and OP_ constants are arranged such that we
3687 ** can compute the mapping above using the following expression.
3688 ** Assert()s verify that the computation is correct.
3689 */
3690 op = ((pExpr->op+(TK_ISNULL&1))^1)-(TK_ISNULL&1);
3691
3692 /* Verify correct alignment of TK_ and OP_ constants
3693 */
3694 assert( pExpr->op!=TK_ISNULL || op==OP_NotNull );
3695 assert( pExpr->op!=TK_NOTNULL || op==OP_IsNull );
3696 assert( pExpr->op!=TK_NE || op==OP_Eq );
3697 assert( pExpr->op!=TK_EQ || op==OP_Ne );
3698 assert( pExpr->op!=TK_LT || op==OP_Ge );
3699 assert( pExpr->op!=TK_LE || op==OP_Gt );
3700 assert( pExpr->op!=TK_GT || op==OP_Le );
3701 assert( pExpr->op!=TK_GE || op==OP_Lt );
3702
drhcce7d172000-05-31 15:34:51 +00003703 switch( pExpr->op ){
3704 case TK_AND: {
drhc5499be2008-04-01 15:06:33 +00003705 testcase( jumpIfNull==0 );
danielk19774adee202004-05-08 08:23:19 +00003706 sqlite3ExprIfFalse(pParse, pExpr->pLeft, dest, jumpIfNull);
3707 sqlite3ExprIfFalse(pParse, pExpr->pRight, dest, jumpIfNull);
drhcce7d172000-05-31 15:34:51 +00003708 break;
3709 }
3710 case TK_OR: {
danielk19774adee202004-05-08 08:23:19 +00003711 int d2 = sqlite3VdbeMakeLabel(v);
drhc5499be2008-04-01 15:06:33 +00003712 testcase( jumpIfNull==0 );
drhceea3322009-04-23 13:22:42 +00003713 sqlite3ExprCachePush(pParse);
drh35573352008-01-08 23:54:25 +00003714 sqlite3ExprIfTrue(pParse, pExpr->pLeft, d2, jumpIfNull^SQLITE_JUMPIFNULL);
danielk19774adee202004-05-08 08:23:19 +00003715 sqlite3ExprIfFalse(pParse, pExpr->pRight, dest, jumpIfNull);
3716 sqlite3VdbeResolveLabel(v, d2);
drhceea3322009-04-23 13:22:42 +00003717 sqlite3ExprCachePop(pParse, 1);
drhcce7d172000-05-31 15:34:51 +00003718 break;
3719 }
3720 case TK_NOT: {
drh5c03f302009-11-13 15:03:59 +00003721 testcase( jumpIfNull==0 );
danielk19774adee202004-05-08 08:23:19 +00003722 sqlite3ExprIfTrue(pParse, pExpr->pLeft, dest, jumpIfNull);
drhcce7d172000-05-31 15:34:51 +00003723 break;
3724 }
3725 case TK_LT:
3726 case TK_LE:
3727 case TK_GT:
3728 case TK_GE:
3729 case TK_NE:
3730 case TK_EQ: {
drhc5499be2008-04-01 15:06:33 +00003731 testcase( op==TK_LT );
3732 testcase( op==TK_LE );
3733 testcase( op==TK_GT );
3734 testcase( op==TK_GE );
3735 testcase( op==TK_EQ );
3736 testcase( op==TK_NE );
3737 testcase( jumpIfNull==0 );
drhb6da74e2009-12-24 16:00:28 +00003738 r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, &regFree1);
3739 r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, &regFree2);
drh35573352008-01-08 23:54:25 +00003740 codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op,
drh2dcef112008-01-12 19:03:48 +00003741 r1, r2, dest, jumpIfNull);
drhc5499be2008-04-01 15:06:33 +00003742 testcase( regFree1==0 );
3743 testcase( regFree2==0 );
drhcce7d172000-05-31 15:34:51 +00003744 break;
3745 }
drh6a2fe092009-09-23 02:29:36 +00003746 case TK_IS:
3747 case TK_ISNOT: {
drh6d4486a2009-09-23 14:45:05 +00003748 testcase( pExpr->op==TK_IS );
3749 testcase( pExpr->op==TK_ISNOT );
drhb6da74e2009-12-24 16:00:28 +00003750 r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, &regFree1);
3751 r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, &regFree2);
drh6a2fe092009-09-23 02:29:36 +00003752 op = (pExpr->op==TK_IS) ? TK_NE : TK_EQ;
3753 codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op,
3754 r1, r2, dest, SQLITE_NULLEQ);
3755 testcase( regFree1==0 );
3756 testcase( regFree2==0 );
3757 break;
3758 }
drhcce7d172000-05-31 15:34:51 +00003759 case TK_ISNULL:
3760 case TK_NOTNULL: {
drhc5499be2008-04-01 15:06:33 +00003761 testcase( op==TK_ISNULL );
3762 testcase( op==TK_NOTNULL );
drh2dcef112008-01-12 19:03:48 +00003763 r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, &regFree1);
3764 sqlite3VdbeAddOp2(v, op, r1, dest);
drhc5499be2008-04-01 15:06:33 +00003765 testcase( regFree1==0 );
drhcce7d172000-05-31 15:34:51 +00003766 break;
3767 }
drhfef52082000-06-06 01:50:43 +00003768 case TK_BETWEEN: {
drh5c03f302009-11-13 15:03:59 +00003769 testcase( jumpIfNull==0 );
drh36c563a2009-11-12 13:32:22 +00003770 exprCodeBetween(pParse, pExpr, dest, 0, jumpIfNull);
drhfef52082000-06-06 01:50:43 +00003771 break;
3772 }
drh84e30ca2011-02-10 17:46:14 +00003773#ifndef SQLITE_OMIT_SUBQUERY
drhe3365e62009-11-12 17:52:24 +00003774 case TK_IN: {
3775 if( jumpIfNull ){
3776 sqlite3ExprCodeIN(pParse, pExpr, dest, dest);
3777 }else{
3778 int destIfNull = sqlite3VdbeMakeLabel(v);
3779 sqlite3ExprCodeIN(pParse, pExpr, dest, destIfNull);
3780 sqlite3VdbeResolveLabel(v, destIfNull);
3781 }
3782 break;
3783 }
shanehbb201342011-02-09 19:55:20 +00003784#endif
drhcce7d172000-05-31 15:34:51 +00003785 default: {
drh2dcef112008-01-12 19:03:48 +00003786 r1 = sqlite3ExprCodeTemp(pParse, pExpr, &regFree1);
3787 sqlite3VdbeAddOp3(v, OP_IfNot, r1, dest, jumpIfNull!=0);
drhc5499be2008-04-01 15:06:33 +00003788 testcase( regFree1==0 );
3789 testcase( jumpIfNull==0 );
drhcce7d172000-05-31 15:34:51 +00003790 break;
3791 }
3792 }
drh2dcef112008-01-12 19:03:48 +00003793 sqlite3ReleaseTempReg(pParse, regFree1);
3794 sqlite3ReleaseTempReg(pParse, regFree2);
drhcce7d172000-05-31 15:34:51 +00003795}
drh22827922000-06-06 17:27:05 +00003796
3797/*
drh1d9da702010-01-07 15:17:02 +00003798** Do a deep comparison of two expression trees. Return 0 if the two
3799** expressions are completely identical. Return 1 if they differ only
3800** by a COLLATE operator at the top level. Return 2 if there are differences
3801** other than the top-level COLLATE operator.
drhd40aab02007-02-24 15:29:03 +00003802**
drh619a1302013-08-01 13:04:46 +00003803** If any subelement of pB has Expr.iTable==(-1) then it is allowed
3804** to compare equal to an equivalent element in pA with Expr.iTable==iTab.
3805**
drh66518ca2013-08-01 15:09:57 +00003806** The pA side might be using TK_REGISTER. If that is the case and pB is
3807** not using TK_REGISTER but is otherwise equivalent, then still return 0.
3808**
drh1d9da702010-01-07 15:17:02 +00003809** Sometimes this routine will return 2 even if the two expressions
drhd40aab02007-02-24 15:29:03 +00003810** really are equivalent. If we cannot prove that the expressions are
drh1d9da702010-01-07 15:17:02 +00003811** identical, we return 2 just to be safe. So if this routine
3812** returns 2, then you do not really know for certain if the two
3813** expressions are the same. But if you get a 0 or 1 return, then you
drhd40aab02007-02-24 15:29:03 +00003814** can be sure the expressions are the same. In the places where
drh1d9da702010-01-07 15:17:02 +00003815** this routine is used, it does not hurt to get an extra 2 - that
drhd40aab02007-02-24 15:29:03 +00003816** just might result in some slightly slower code. But returning
drh1d9da702010-01-07 15:17:02 +00003817** an incorrect 0 or 1 could lead to a malfunction.
drh22827922000-06-06 17:27:05 +00003818*/
drh619a1302013-08-01 13:04:46 +00003819int sqlite3ExprCompare(Expr *pA, Expr *pB, int iTab){
danielk19774b202ae2006-01-23 05:50:58 +00003820 if( pA==0||pB==0 ){
drh1d9da702010-01-07 15:17:02 +00003821 return pB==pA ? 0 : 2;
drh22827922000-06-06 17:27:05 +00003822 }
drh33e619f2009-05-28 01:00:55 +00003823 assert( !ExprHasAnyProperty(pA, EP_TokenOnly|EP_Reduced) );
3824 assert( !ExprHasAnyProperty(pB, EP_TokenOnly|EP_Reduced) );
danielk19776ab3a2e2009-02-19 14:39:25 +00003825 if( ExprHasProperty(pA, EP_xIsSelect) || ExprHasProperty(pB, EP_xIsSelect) ){
drh1d9da702010-01-07 15:17:02 +00003826 return 2;
drh22827922000-06-06 17:27:05 +00003827 }
drh1d9da702010-01-07 15:17:02 +00003828 if( (pA->flags & EP_Distinct)!=(pB->flags & EP_Distinct) ) return 2;
drh66518ca2013-08-01 15:09:57 +00003829 if( pA->op!=pB->op && (pA->op!=TK_REGISTER || pA->op2!=pB->op) ){
drh619a1302013-08-01 13:04:46 +00003830 if( pA->op==TK_COLLATE && sqlite3ExprCompare(pA->pLeft, pB, iTab)<2 ){
drhae80dde2012-12-06 21:16:43 +00003831 return 1;
3832 }
drh619a1302013-08-01 13:04:46 +00003833 if( pB->op==TK_COLLATE && sqlite3ExprCompare(pA, pB->pLeft, iTab)<2 ){
drhae80dde2012-12-06 21:16:43 +00003834 return 1;
3835 }
3836 return 2;
3837 }
drh619a1302013-08-01 13:04:46 +00003838 if( sqlite3ExprCompare(pA->pLeft, pB->pLeft, iTab) ) return 2;
3839 if( sqlite3ExprCompare(pA->pRight, pB->pRight, iTab) ) return 2;
3840 if( sqlite3ExprListCompare(pA->x.pList, pB->x.pList, iTab) ) return 2;
3841 if( pA->iColumn!=pB->iColumn ) return 2;
drh66518ca2013-08-01 15:09:57 +00003842 if( pA->iTable!=pB->iTable
3843 && pA->op!=TK_REGISTER
drhe0c7efd2013-08-02 20:11:19 +00003844 && (pA->iTable!=iTab || NEVER(pB->iTable>=0)) ) return 2;
drh33e619f2009-05-28 01:00:55 +00003845 if( ExprHasProperty(pA, EP_IntValue) ){
3846 if( !ExprHasProperty(pB, EP_IntValue) || pA->u.iValue!=pB->u.iValue ){
drh1d9da702010-01-07 15:17:02 +00003847 return 2;
drh33e619f2009-05-28 01:00:55 +00003848 }
drhbbabe192012-05-21 21:20:57 +00003849 }else if( pA->op!=TK_COLUMN && ALWAYS(pA->op!=TK_AGG_COLUMN) && pA->u.zToken){
drh1d9da702010-01-07 15:17:02 +00003850 if( ExprHasProperty(pB, EP_IntValue) || NEVER(pB->u.zToken==0) ) return 2;
drh6b93c9a2011-10-13 15:35:52 +00003851 if( strcmp(pA->u.zToken,pB->u.zToken)!=0 ){
drhae80dde2012-12-06 21:16:43 +00003852 return pA->op==TK_COLLATE ? 1 : 2;
drh2646da72005-12-09 20:02:05 +00003853 }
drh22827922000-06-06 17:27:05 +00003854 }
drh1d9da702010-01-07 15:17:02 +00003855 return 0;
drh22827922000-06-06 17:27:05 +00003856}
3857
drh8c6f6662010-04-26 19:17:26 +00003858/*
3859** Compare two ExprList objects. Return 0 if they are identical and
3860** non-zero if they differ in any way.
3861**
drh619a1302013-08-01 13:04:46 +00003862** If any subelement of pB has Expr.iTable==(-1) then it is allowed
3863** to compare equal to an equivalent element in pA with Expr.iTable==iTab.
3864**
drh8c6f6662010-04-26 19:17:26 +00003865** This routine might return non-zero for equivalent ExprLists. The
3866** only consequence will be disabled optimizations. But this routine
3867** must never return 0 if the two ExprList objects are different, or
3868** a malfunction will result.
3869**
3870** Two NULL pointers are considered to be the same. But a NULL pointer
3871** always differs from a non-NULL pointer.
3872*/
drh619a1302013-08-01 13:04:46 +00003873int sqlite3ExprListCompare(ExprList *pA, ExprList *pB, int iTab){
drh8c6f6662010-04-26 19:17:26 +00003874 int i;
3875 if( pA==0 && pB==0 ) return 0;
3876 if( pA==0 || pB==0 ) return 1;
3877 if( pA->nExpr!=pB->nExpr ) return 1;
3878 for(i=0; i<pA->nExpr; i++){
3879 Expr *pExprA = pA->a[i].pExpr;
3880 Expr *pExprB = pB->a[i].pExpr;
3881 if( pA->a[i].sortOrder!=pB->a[i].sortOrder ) return 1;
drh619a1302013-08-01 13:04:46 +00003882 if( sqlite3ExprCompare(pExprA, pExprB, iTab) ) return 1;
drh8c6f6662010-04-26 19:17:26 +00003883 }
3884 return 0;
3885}
drh13449892005-09-07 21:22:45 +00003886
drh22827922000-06-06 17:27:05 +00003887/*
drh4bd5f732013-07-31 23:22:39 +00003888** Return true if we can prove the pE2 will always be true if pE1 is
3889** true. Return false if we cannot complete the proof or if pE2 might
3890** be false. Examples:
3891**
drh619a1302013-08-01 13:04:46 +00003892** pE1: x==5 pE2: x==5 Result: true
3893** pE1: x>0 pE2: x==5 Result: false
3894** pE1: x=21 pE2: x=21 OR y=43 Result: true
3895** pE1: x!=123 pE2: x IS NOT NULL Result: true
3896** pE1: x!=?1 pE2: x IS NOT NULL Result: true
3897** pE1: x IS NULL pE2: x IS NOT NULL Result: false
3898** pE1: x IS ?2 pE2: x IS NOT NULL Reuslt: false
drh4bd5f732013-07-31 23:22:39 +00003899**
3900** When comparing TK_COLUMN nodes between pE1 and pE2, if pE2 has
3901** Expr.iTable<0 then assume a table number given by iTab.
3902**
3903** When in doubt, return false. Returning true might give a performance
3904** improvement. Returning false might cause a performance reduction, but
3905** it will always give the correct answer and is hence always safe.
3906*/
3907int sqlite3ExprImpliesExpr(Expr *pE1, Expr *pE2, int iTab){
drh619a1302013-08-01 13:04:46 +00003908 if( sqlite3ExprCompare(pE1, pE2, iTab)==0 ){
3909 return 1;
3910 }
3911 if( pE2->op==TK_OR
3912 && (sqlite3ExprImpliesExpr(pE1, pE2->pLeft, iTab)
3913 || sqlite3ExprImpliesExpr(pE1, pE2->pRight, iTab) )
3914 ){
3915 return 1;
3916 }
3917 if( pE2->op==TK_NOTNULL
3918 && sqlite3ExprCompare(pE1->pLeft, pE2->pLeft, iTab)==0
3919 && (pE1->op!=TK_ISNULL && pE1->op!=TK_IS)
3920 ){
3921 return 1;
3922 }
3923 return 0;
drh4bd5f732013-07-31 23:22:39 +00003924}
3925
3926/*
drh030796d2012-08-23 16:18:10 +00003927** An instance of the following structure is used by the tree walker
3928** to count references to table columns in the arguments of an
drhed551b92012-08-23 19:46:11 +00003929** aggregate function, in order to implement the
3930** sqlite3FunctionThisSrc() routine.
drh374fdce2012-04-17 16:38:53 +00003931*/
drh030796d2012-08-23 16:18:10 +00003932struct SrcCount {
3933 SrcList *pSrc; /* One particular FROM clause in a nested query */
3934 int nThis; /* Number of references to columns in pSrcList */
3935 int nOther; /* Number of references to columns in other FROM clauses */
3936};
3937
3938/*
3939** Count the number of references to columns.
3940*/
3941static int exprSrcCount(Walker *pWalker, Expr *pExpr){
drhfb0a6082012-08-24 01:07:52 +00003942 /* The NEVER() on the second term is because sqlite3FunctionUsesThisSrc()
3943 ** is always called before sqlite3ExprAnalyzeAggregates() and so the
3944 ** TK_COLUMNs have not yet been converted into TK_AGG_COLUMN. If
3945 ** sqlite3FunctionUsesThisSrc() is used differently in the future, the
3946 ** NEVER() will need to be removed. */
3947 if( pExpr->op==TK_COLUMN || NEVER(pExpr->op==TK_AGG_COLUMN) ){
drh374fdce2012-04-17 16:38:53 +00003948 int i;
drh030796d2012-08-23 16:18:10 +00003949 struct SrcCount *p = pWalker->u.pSrcCount;
3950 SrcList *pSrc = p->pSrc;
drh374fdce2012-04-17 16:38:53 +00003951 for(i=0; i<pSrc->nSrc; i++){
drh030796d2012-08-23 16:18:10 +00003952 if( pExpr->iTable==pSrc->a[i].iCursor ) break;
drh374fdce2012-04-17 16:38:53 +00003953 }
drh030796d2012-08-23 16:18:10 +00003954 if( i<pSrc->nSrc ){
3955 p->nThis++;
3956 }else{
3957 p->nOther++;
3958 }
drh374fdce2012-04-17 16:38:53 +00003959 }
drh030796d2012-08-23 16:18:10 +00003960 return WRC_Continue;
drh374fdce2012-04-17 16:38:53 +00003961}
3962
3963/*
drh030796d2012-08-23 16:18:10 +00003964** Determine if any of the arguments to the pExpr Function reference
3965** pSrcList. Return true if they do. Also return true if the function
3966** has no arguments or has only constant arguments. Return false if pExpr
3967** references columns but not columns of tables found in pSrcList.
drh374fdce2012-04-17 16:38:53 +00003968*/
drh030796d2012-08-23 16:18:10 +00003969int sqlite3FunctionUsesThisSrc(Expr *pExpr, SrcList *pSrcList){
drh374fdce2012-04-17 16:38:53 +00003970 Walker w;
drh030796d2012-08-23 16:18:10 +00003971 struct SrcCount cnt;
drh374fdce2012-04-17 16:38:53 +00003972 assert( pExpr->op==TK_AGG_FUNCTION );
3973 memset(&w, 0, sizeof(w));
drh030796d2012-08-23 16:18:10 +00003974 w.xExprCallback = exprSrcCount;
3975 w.u.pSrcCount = &cnt;
3976 cnt.pSrc = pSrcList;
3977 cnt.nThis = 0;
3978 cnt.nOther = 0;
3979 sqlite3WalkExprList(&w, pExpr->x.pList);
3980 return cnt.nThis>0 || cnt.nOther==0;
drh374fdce2012-04-17 16:38:53 +00003981}
3982
3983/*
drh13449892005-09-07 21:22:45 +00003984** Add a new element to the pAggInfo->aCol[] array. Return the index of
3985** the new element. Return a negative number if malloc fails.
drh22827922000-06-06 17:27:05 +00003986*/
drh17435752007-08-16 04:30:38 +00003987static int addAggInfoColumn(sqlite3 *db, AggInfo *pInfo){
drh13449892005-09-07 21:22:45 +00003988 int i;
drhcf643722007-03-27 13:36:37 +00003989 pInfo->aCol = sqlite3ArrayAllocate(
drh17435752007-08-16 04:30:38 +00003990 db,
drhcf643722007-03-27 13:36:37 +00003991 pInfo->aCol,
3992 sizeof(pInfo->aCol[0]),
drhcf643722007-03-27 13:36:37 +00003993 &pInfo->nColumn,
drhcf643722007-03-27 13:36:37 +00003994 &i
3995 );
drh13449892005-09-07 21:22:45 +00003996 return i;
3997}
3998
3999/*
4000** Add a new element to the pAggInfo->aFunc[] array. Return the index of
4001** the new element. Return a negative number if malloc fails.
4002*/
drh17435752007-08-16 04:30:38 +00004003static int addAggInfoFunc(sqlite3 *db, AggInfo *pInfo){
drh13449892005-09-07 21:22:45 +00004004 int i;
drhcf643722007-03-27 13:36:37 +00004005 pInfo->aFunc = sqlite3ArrayAllocate(
drh17435752007-08-16 04:30:38 +00004006 db,
drhcf643722007-03-27 13:36:37 +00004007 pInfo->aFunc,
4008 sizeof(pInfo->aFunc[0]),
drhcf643722007-03-27 13:36:37 +00004009 &pInfo->nFunc,
drhcf643722007-03-27 13:36:37 +00004010 &i
4011 );
drh13449892005-09-07 21:22:45 +00004012 return i;
4013}
drh22827922000-06-06 17:27:05 +00004014
4015/*
drh7d10d5a2008-08-20 16:35:10 +00004016** This is the xExprCallback for a tree walker. It is used to
4017** implement sqlite3ExprAnalyzeAggregates(). See sqlite3ExprAnalyzeAggregates
drh626a8792005-01-17 22:08:19 +00004018** for additional information.
drh22827922000-06-06 17:27:05 +00004019*/
drh7d10d5a2008-08-20 16:35:10 +00004020static int analyzeAggregate(Walker *pWalker, Expr *pExpr){
drh22827922000-06-06 17:27:05 +00004021 int i;
drh7d10d5a2008-08-20 16:35:10 +00004022 NameContext *pNC = pWalker->u.pNC;
danielk1977a58fdfb2005-02-08 07:50:40 +00004023 Parse *pParse = pNC->pParse;
4024 SrcList *pSrcList = pNC->pSrcList;
drh13449892005-09-07 21:22:45 +00004025 AggInfo *pAggInfo = pNC->pAggInfo;
drh22827922000-06-06 17:27:05 +00004026
drh22827922000-06-06 17:27:05 +00004027 switch( pExpr->op ){
drh89c69d02007-01-04 01:20:28 +00004028 case TK_AGG_COLUMN:
drh967e8b72000-06-21 13:59:10 +00004029 case TK_COLUMN: {
drh8b213892008-08-29 02:14:02 +00004030 testcase( pExpr->op==TK_AGG_COLUMN );
4031 testcase( pExpr->op==TK_COLUMN );
drh13449892005-09-07 21:22:45 +00004032 /* Check to see if the column is in one of the tables in the FROM
4033 ** clause of the aggregate query */
drh20bc3932009-05-30 23:35:43 +00004034 if( ALWAYS(pSrcList!=0) ){
drh13449892005-09-07 21:22:45 +00004035 struct SrcList_item *pItem = pSrcList->a;
4036 for(i=0; i<pSrcList->nSrc; i++, pItem++){
4037 struct AggInfo_col *pCol;
drh33e619f2009-05-28 01:00:55 +00004038 assert( !ExprHasAnyProperty(pExpr, EP_TokenOnly|EP_Reduced) );
drh13449892005-09-07 21:22:45 +00004039 if( pExpr->iTable==pItem->iCursor ){
4040 /* If we reach this point, it means that pExpr refers to a table
4041 ** that is in the FROM clause of the aggregate query.
4042 **
4043 ** Make an entry for the column in pAggInfo->aCol[] if there
4044 ** is not an entry there already.
4045 */
drh7f906d62007-03-12 23:48:52 +00004046 int k;
drh13449892005-09-07 21:22:45 +00004047 pCol = pAggInfo->aCol;
drh7f906d62007-03-12 23:48:52 +00004048 for(k=0; k<pAggInfo->nColumn; k++, pCol++){
drh13449892005-09-07 21:22:45 +00004049 if( pCol->iTable==pExpr->iTable &&
4050 pCol->iColumn==pExpr->iColumn ){
4051 break;
4052 }
danielk1977a58fdfb2005-02-08 07:50:40 +00004053 }
danielk19771e536952007-08-16 10:09:01 +00004054 if( (k>=pAggInfo->nColumn)
4055 && (k = addAggInfoColumn(pParse->db, pAggInfo))>=0
4056 ){
drh7f906d62007-03-12 23:48:52 +00004057 pCol = &pAggInfo->aCol[k];
danielk19770817d0d2007-02-14 09:19:36 +00004058 pCol->pTab = pExpr->pTab;
drh13449892005-09-07 21:22:45 +00004059 pCol->iTable = pExpr->iTable;
4060 pCol->iColumn = pExpr->iColumn;
drh0a07c102008-01-03 18:03:08 +00004061 pCol->iMem = ++pParse->nMem;
drh13449892005-09-07 21:22:45 +00004062 pCol->iSorterColumn = -1;
drh5774b802005-09-07 22:48:16 +00004063 pCol->pExpr = pExpr;
drh13449892005-09-07 21:22:45 +00004064 if( pAggInfo->pGroupBy ){
4065 int j, n;
4066 ExprList *pGB = pAggInfo->pGroupBy;
4067 struct ExprList_item *pTerm = pGB->a;
4068 n = pGB->nExpr;
4069 for(j=0; j<n; j++, pTerm++){
4070 Expr *pE = pTerm->pExpr;
4071 if( pE->op==TK_COLUMN && pE->iTable==pExpr->iTable &&
4072 pE->iColumn==pExpr->iColumn ){
4073 pCol->iSorterColumn = j;
4074 break;
4075 }
4076 }
4077 }
4078 if( pCol->iSorterColumn<0 ){
4079 pCol->iSorterColumn = pAggInfo->nSortingColumn++;
4080 }
4081 }
4082 /* There is now an entry for pExpr in pAggInfo->aCol[] (either
4083 ** because it was there before or because we just created it).
4084 ** Convert the pExpr to be a TK_AGG_COLUMN referring to that
4085 ** pAggInfo->aCol[] entry.
4086 */
drh33e619f2009-05-28 01:00:55 +00004087 ExprSetIrreducible(pExpr);
drh13449892005-09-07 21:22:45 +00004088 pExpr->pAggInfo = pAggInfo;
4089 pExpr->op = TK_AGG_COLUMN;
shanecf697392009-06-01 16:53:09 +00004090 pExpr->iAgg = (i16)k;
drh13449892005-09-07 21:22:45 +00004091 break;
4092 } /* endif pExpr->iTable==pItem->iCursor */
4093 } /* end loop over pSrcList */
drh22827922000-06-06 17:27:05 +00004094 }
drh7d10d5a2008-08-20 16:35:10 +00004095 return WRC_Prune;
drh22827922000-06-06 17:27:05 +00004096 }
4097 case TK_AGG_FUNCTION: {
drh3a8c4be2012-05-21 20:13:39 +00004098 if( (pNC->ncFlags & NC_InAggFunc)==0
drhed551b92012-08-23 19:46:11 +00004099 && pWalker->walkerDepth==pExpr->op2
drh3a8c4be2012-05-21 20:13:39 +00004100 ){
drh13449892005-09-07 21:22:45 +00004101 /* Check to see if pExpr is a duplicate of another aggregate
4102 ** function that is already in the pAggInfo structure
4103 */
4104 struct AggInfo_func *pItem = pAggInfo->aFunc;
4105 for(i=0; i<pAggInfo->nFunc; i++, pItem++){
drh619a1302013-08-01 13:04:46 +00004106 if( sqlite3ExprCompare(pItem->pExpr, pExpr, -1)==0 ){
danielk1977a58fdfb2005-02-08 07:50:40 +00004107 break;
4108 }
drh22827922000-06-06 17:27:05 +00004109 }
drh13449892005-09-07 21:22:45 +00004110 if( i>=pAggInfo->nFunc ){
4111 /* pExpr is original. Make a new entry in pAggInfo->aFunc[]
4112 */
danielk197714db2662006-01-09 16:12:04 +00004113 u8 enc = ENC(pParse->db);
danielk19771e536952007-08-16 10:09:01 +00004114 i = addAggInfoFunc(pParse->db, pAggInfo);
drh13449892005-09-07 21:22:45 +00004115 if( i>=0 ){
danielk19776ab3a2e2009-02-19 14:39:25 +00004116 assert( !ExprHasProperty(pExpr, EP_xIsSelect) );
drh13449892005-09-07 21:22:45 +00004117 pItem = &pAggInfo->aFunc[i];
4118 pItem->pExpr = pExpr;
drh0a07c102008-01-03 18:03:08 +00004119 pItem->iMem = ++pParse->nMem;
drh33e619f2009-05-28 01:00:55 +00004120 assert( !ExprHasProperty(pExpr, EP_IntValue) );
drh13449892005-09-07 21:22:45 +00004121 pItem->pFunc = sqlite3FindFunction(pParse->db,
drh33e619f2009-05-28 01:00:55 +00004122 pExpr->u.zToken, sqlite3Strlen30(pExpr->u.zToken),
danielk19776ab3a2e2009-02-19 14:39:25 +00004123 pExpr->x.pList ? pExpr->x.pList->nExpr : 0, enc, 0);
drhfd357972005-09-09 01:33:19 +00004124 if( pExpr->flags & EP_Distinct ){
4125 pItem->iDistinct = pParse->nTab++;
4126 }else{
4127 pItem->iDistinct = -1;
4128 }
drh13449892005-09-07 21:22:45 +00004129 }
danielk1977a58fdfb2005-02-08 07:50:40 +00004130 }
drh13449892005-09-07 21:22:45 +00004131 /* Make pExpr point to the appropriate pAggInfo->aFunc[] entry
4132 */
drh33e619f2009-05-28 01:00:55 +00004133 assert( !ExprHasAnyProperty(pExpr, EP_TokenOnly|EP_Reduced) );
4134 ExprSetIrreducible(pExpr);
shanecf697392009-06-01 16:53:09 +00004135 pExpr->iAgg = (i16)i;
drh13449892005-09-07 21:22:45 +00004136 pExpr->pAggInfo = pAggInfo;
drh6e83a572012-11-02 18:48:49 +00004137 return WRC_Prune;
4138 }else{
4139 return WRC_Continue;
drh22827922000-06-06 17:27:05 +00004140 }
drh22827922000-06-06 17:27:05 +00004141 }
4142 }
drh7d10d5a2008-08-20 16:35:10 +00004143 return WRC_Continue;
4144}
4145static int analyzeAggregatesInSelect(Walker *pWalker, Select *pSelect){
drhd5a336e2012-04-19 15:49:19 +00004146 UNUSED_PARAMETER(pWalker);
4147 UNUSED_PARAMETER(pSelect);
drh374fdce2012-04-17 16:38:53 +00004148 return WRC_Continue;
drh626a8792005-01-17 22:08:19 +00004149}
4150
4151/*
drhe8abb4c2012-11-02 18:24:57 +00004152** Analyze the pExpr expression looking for aggregate functions and
4153** for variables that need to be added to AggInfo object that pNC->pAggInfo
4154** points to. Additional entries are made on the AggInfo object as
4155** necessary.
drh626a8792005-01-17 22:08:19 +00004156**
4157** This routine should only be called after the expression has been
drh7d10d5a2008-08-20 16:35:10 +00004158** analyzed by sqlite3ResolveExprNames().
drh626a8792005-01-17 22:08:19 +00004159*/
drhd2b3e232008-01-23 14:51:49 +00004160void sqlite3ExprAnalyzeAggregates(NameContext *pNC, Expr *pExpr){
drh7d10d5a2008-08-20 16:35:10 +00004161 Walker w;
drh374fdce2012-04-17 16:38:53 +00004162 memset(&w, 0, sizeof(w));
drh7d10d5a2008-08-20 16:35:10 +00004163 w.xExprCallback = analyzeAggregate;
4164 w.xSelectCallback = analyzeAggregatesInSelect;
4165 w.u.pNC = pNC;
drh20bc3932009-05-30 23:35:43 +00004166 assert( pNC->pSrcList!=0 );
drh7d10d5a2008-08-20 16:35:10 +00004167 sqlite3WalkExpr(&w, pExpr);
drh22827922000-06-06 17:27:05 +00004168}
drh5d9a4af2005-08-30 00:54:01 +00004169
4170/*
4171** Call sqlite3ExprAnalyzeAggregates() for every expression in an
4172** expression list. Return the number of errors.
4173**
4174** If an error is found, the analysis is cut short.
4175*/
drhd2b3e232008-01-23 14:51:49 +00004176void sqlite3ExprAnalyzeAggList(NameContext *pNC, ExprList *pList){
drh5d9a4af2005-08-30 00:54:01 +00004177 struct ExprList_item *pItem;
4178 int i;
drh5d9a4af2005-08-30 00:54:01 +00004179 if( pList ){
drhd2b3e232008-01-23 14:51:49 +00004180 for(pItem=pList->a, i=0; i<pList->nExpr; i++, pItem++){
4181 sqlite3ExprAnalyzeAggregates(pNC, pItem->pExpr);
drh5d9a4af2005-08-30 00:54:01 +00004182 }
4183 }
drh5d9a4af2005-08-30 00:54:01 +00004184}
drh892d3172008-01-10 03:46:36 +00004185
4186/*
drhceea3322009-04-23 13:22:42 +00004187** Allocate a single new register for use to hold some intermediate result.
drh892d3172008-01-10 03:46:36 +00004188*/
4189int sqlite3GetTempReg(Parse *pParse){
drhe55cbd72008-03-31 23:48:03 +00004190 if( pParse->nTempReg==0 ){
drh892d3172008-01-10 03:46:36 +00004191 return ++pParse->nMem;
4192 }
danielk19772f425f62008-07-04 09:41:39 +00004193 return pParse->aTempReg[--pParse->nTempReg];
drh892d3172008-01-10 03:46:36 +00004194}
drhceea3322009-04-23 13:22:42 +00004195
4196/*
4197** Deallocate a register, making available for reuse for some other
4198** purpose.
4199**
4200** If a register is currently being used by the column cache, then
4201** the dallocation is deferred until the column cache line that uses
4202** the register becomes stale.
4203*/
drh892d3172008-01-10 03:46:36 +00004204void sqlite3ReleaseTempReg(Parse *pParse, int iReg){
drh2dcef112008-01-12 19:03:48 +00004205 if( iReg && pParse->nTempReg<ArraySize(pParse->aTempReg) ){
drhceea3322009-04-23 13:22:42 +00004206 int i;
4207 struct yColCache *p;
4208 for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){
4209 if( p->iReg==iReg ){
4210 p->tempReg = 1;
4211 return;
4212 }
4213 }
drh892d3172008-01-10 03:46:36 +00004214 pParse->aTempReg[pParse->nTempReg++] = iReg;
4215 }
4216}
4217
4218/*
4219** Allocate or deallocate a block of nReg consecutive registers
4220*/
4221int sqlite3GetTempRange(Parse *pParse, int nReg){
drhe55cbd72008-03-31 23:48:03 +00004222 int i, n;
4223 i = pParse->iRangeReg;
4224 n = pParse->nRangeReg;
drhf49f3522009-12-30 14:12:38 +00004225 if( nReg<=n ){
4226 assert( !usedAsColumnCache(pParse, i, i+n-1) );
drh892d3172008-01-10 03:46:36 +00004227 pParse->iRangeReg += nReg;
4228 pParse->nRangeReg -= nReg;
4229 }else{
4230 i = pParse->nMem+1;
4231 pParse->nMem += nReg;
4232 }
4233 return i;
4234}
4235void sqlite3ReleaseTempRange(Parse *pParse, int iReg, int nReg){
drhf49f3522009-12-30 14:12:38 +00004236 sqlite3ExprCacheRemove(pParse, iReg, nReg);
drh892d3172008-01-10 03:46:36 +00004237 if( nReg>pParse->nRangeReg ){
4238 pParse->nRangeReg = nReg;
4239 pParse->iRangeReg = iReg;
4240 }
4241}
drhcdc69552011-12-06 13:24:59 +00004242
4243/*
4244** Mark all temporary registers as being unavailable for reuse.
4245*/
4246void sqlite3ClearTempRegCache(Parse *pParse){
4247 pParse->nTempReg = 0;
4248 pParse->nRangeReg = 0;
4249}