1cce7d176Sdrh /*
2b19a2bc6Sdrh ** 2001 September 15
3cce7d176Sdrh **
4b19a2bc6Sdrh ** The author disclaims copyright to this source code. In place of
5b19a2bc6Sdrh ** a legal notice, here is a blessing:
6cce7d176Sdrh **
7b19a2bc6Sdrh ** May you do good and not evil.
8b19a2bc6Sdrh ** May you find forgiveness for yourself and forgive others.
9b19a2bc6Sdrh ** May you share freely, never taking more than you give.
10cce7d176Sdrh **
11cce7d176Sdrh *************************************************************************
121ccde15dSdrh ** This file contains routines used for analyzing expressions and
13b19a2bc6Sdrh ** for generating VDBE code that evaluates expressions in SQLite.
14cce7d176Sdrh */
15cce7d176Sdrh #include "sqliteInt.h"
16a2e00042Sdrh
1712abf408Sdrh /* Forward declarations */
1812abf408Sdrh static void exprCodeBetween(Parse*,Expr*,int,void(*)(Parse*,Expr*,int,int),int);
1912abf408Sdrh static int exprCodeVector(Parse *pParse, Expr *p, int *piToFree);
2012abf408Sdrh
210dfa4f6fSdrh /*
220dfa4f6fSdrh ** Return the affinity character for a single column of a table.
230dfa4f6fSdrh */
sqlite3TableColumnAffinity(const Table * pTab,int iCol)24b6dad520Sdrh char sqlite3TableColumnAffinity(const Table *pTab, int iCol){
256d64b4a0Sdrh if( iCol<0 || NEVER(iCol>=pTab->nCol) ) return SQLITE_AFF_INTEGER;
266d64b4a0Sdrh return pTab->aCol[iCol].affinity;
270dfa4f6fSdrh }
2812abf408Sdrh
29e014a838Sdanielk1977 /*
30e014a838Sdanielk1977 ** Return the 'affinity' of the expression pExpr if any.
31e014a838Sdanielk1977 **
32e014a838Sdanielk1977 ** If pExpr is a column, a reference to a column via an 'AS' alias,
33e014a838Sdanielk1977 ** or a sub-select with a column as the return value, then the
34e014a838Sdanielk1977 ** affinity of that column is returned. Otherwise, 0x00 is returned,
35e014a838Sdanielk1977 ** indicating no affinity for the expression.
36e014a838Sdanielk1977 **
3760ec914cSpeter.d.reid ** i.e. the WHERE clause expressions in the following statements all
38e014a838Sdanielk1977 ** have an affinity:
39e014a838Sdanielk1977 **
40e014a838Sdanielk1977 ** CREATE TABLE t1(a);
41e014a838Sdanielk1977 ** SELECT * FROM t1 WHERE a;
42e014a838Sdanielk1977 ** SELECT a AS b FROM t1 WHERE b;
43e014a838Sdanielk1977 ** SELECT * FROM t1 WHERE (select a from t1);
44e014a838Sdanielk1977 */
sqlite3ExprAffinity(const Expr * pExpr)45e7375bfaSdrh char sqlite3ExprAffinity(const Expr *pExpr){
46580c8c18Sdrh int op;
4746fe138dSdrh while( ExprHasProperty(pExpr, EP_Skip|EP_IfNullRow) ){
489bb612f2Sdrh assert( pExpr->op==TK_COLLATE
499bb612f2Sdrh || pExpr->op==TK_IF_NULL_ROW
509bb612f2Sdrh || (pExpr->op==TK_REGISTER && pExpr->op2==TK_IF_NULL_ROW) );
51a7d6db6aSdrh pExpr = pExpr->pLeft;
52a7d6db6aSdrh assert( pExpr!=0 );
53a7d6db6aSdrh }
54580c8c18Sdrh op = pExpr->op;
55de0e1b15Sdrh if( op==TK_REGISTER ) op = pExpr->op2;
56477572b9Sdrh if( op==TK_COLUMN || op==TK_AGG_COLUMN ){
57477572b9Sdrh assert( ExprUseYTab(pExpr) );
58*63b3a64cSdrh assert( pExpr->y.pTab!=0 );
59de0e1b15Sdrh return sqlite3TableColumnAffinity(pExpr->y.pTab, pExpr->iColumn);
60de0e1b15Sdrh }
61487e262fSdrh if( op==TK_SELECT ){
62a4eeccdfSdrh assert( ExprUseXSelect(pExpr) );
636af305deSdrh assert( pExpr->x.pSelect!=0 );
646af305deSdrh assert( pExpr->x.pSelect->pEList!=0 );
656af305deSdrh assert( pExpr->x.pSelect->pEList->a[0].pExpr!=0 );
666ab3a2ecSdanielk1977 return sqlite3ExprAffinity(pExpr->x.pSelect->pEList->a[0].pExpr);
67a37cdde0Sdanielk1977 }
68487e262fSdrh #ifndef SQLITE_OMIT_CAST
69487e262fSdrh if( op==TK_CAST ){
7033e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) );
71fdaac671Sdrh return sqlite3AffinityType(pExpr->u.zToken, 0);
72487e262fSdrh }
73487e262fSdrh #endif
7480aa5453Sdan if( op==TK_SELECT_COLUMN ){
75a4eeccdfSdrh assert( pExpr->pLeft!=0 && ExprUseXSelect(pExpr->pLeft) );
7610f08270Sdrh assert( pExpr->iColumn < pExpr->iTable );
7710f08270Sdrh assert( pExpr->iTable==pExpr->pLeft->x.pSelect->pEList->nExpr );
7880aa5453Sdan return sqlite3ExprAffinity(
7980aa5453Sdan pExpr->pLeft->x.pSelect->pEList->a[pExpr->iColumn].pExpr
8080aa5453Sdan );
8180aa5453Sdan }
82db36e255Sdrh if( op==TK_VECTOR ){
83a4eeccdfSdrh assert( ExprUseXList(pExpr) );
84db36e255Sdrh return sqlite3ExprAffinity(pExpr->x.pList->a[0].pExpr);
85db36e255Sdrh }
861194904bSdrh return pExpr->affExpr;
87a37cdde0Sdanielk1977 }
88a37cdde0Sdanielk1977
8953db1458Sdrh /*
908b4c40d8Sdrh ** Set the collating sequence for expression pExpr to be the collating
91ae80ddeaSdrh ** sequence named by pToken. Return a pointer to a new Expr node that
92ae80ddeaSdrh ** implements the COLLATE operator.
930a8a406eSdrh **
940a8a406eSdrh ** If a memory allocation error occurs, that fact is recorded in pParse->db
950a8a406eSdrh ** and the pExpr parameter is returned unchanged.
968b4c40d8Sdrh */
sqlite3ExprAddCollateToken(const Parse * pParse,Expr * pExpr,const Token * pCollName,int dequote)974ef7efadSdrh Expr *sqlite3ExprAddCollateToken(
98b6dad520Sdrh const Parse *pParse, /* Parsing context */
994ef7efadSdrh Expr *pExpr, /* Add the "COLLATE" clause to this expression */
10080103fc6Sdan const Token *pCollName, /* Name of collating sequence */
10180103fc6Sdan int dequote /* True to dequote pCollName */
1024ef7efadSdrh ){
103433a3e93Sdrh if( pCollName->n>0 ){
10480103fc6Sdan Expr *pNew = sqlite3ExprAlloc(pParse->db, TK_COLLATE, pCollName, dequote);
105ae80ddeaSdrh if( pNew ){
106ae80ddeaSdrh pNew->pLeft = pExpr;
107a4c3c87eSdrh pNew->flags |= EP_Collate|EP_Skip;
1080a8a406eSdrh pExpr = pNew;
109ae80ddeaSdrh }
1100a8a406eSdrh }
1110a8a406eSdrh return pExpr;
1120a8a406eSdrh }
sqlite3ExprAddCollateString(const Parse * pParse,Expr * pExpr,const char * zC)113b6dad520Sdrh Expr *sqlite3ExprAddCollateString(
114b6dad520Sdrh const Parse *pParse, /* Parsing context */
115b6dad520Sdrh Expr *pExpr, /* Add the "COLLATE" clause to this expression */
116b6dad520Sdrh const char *zC /* The collating sequence name */
117b6dad520Sdrh ){
1180a8a406eSdrh Token s;
119261d8a51Sdrh assert( zC!=0 );
12040aced5cSdrh sqlite3TokenInit(&s, (char*)zC);
12180103fc6Sdan return sqlite3ExprAddCollateToken(pParse, pExpr, &s, 0);
1220a8a406eSdrh }
1230a8a406eSdrh
1240a8a406eSdrh /*
1250d950af3Sdrh ** Skip over any TK_COLLATE operators.
1260a8a406eSdrh */
sqlite3ExprSkipCollate(Expr * pExpr)1270a8a406eSdrh Expr *sqlite3ExprSkipCollate(Expr *pExpr){
1280d950af3Sdrh while( pExpr && ExprHasProperty(pExpr, EP_Skip) ){
12946fe138dSdrh assert( pExpr->op==TK_COLLATE );
1300d950af3Sdrh pExpr = pExpr->pLeft;
1310d950af3Sdrh }
1320d950af3Sdrh return pExpr;
1330d950af3Sdrh }
1340d950af3Sdrh
1350d950af3Sdrh /*
1360d950af3Sdrh ** Skip over any TK_COLLATE operators and/or any unlikely()
1370d950af3Sdrh ** or likelihood() or likely() functions at the root of an
1380d950af3Sdrh ** expression.
1390d950af3Sdrh */
sqlite3ExprSkipCollateAndLikely(Expr * pExpr)1400d950af3Sdrh Expr *sqlite3ExprSkipCollateAndLikely(Expr *pExpr){
141a7d6db6aSdrh while( pExpr && ExprHasProperty(pExpr, EP_Skip|EP_Unlikely) ){
142a4c3c87eSdrh if( ExprHasProperty(pExpr, EP_Unlikely) ){
143a4eeccdfSdrh assert( ExprUseXList(pExpr) );
144cca9f3d2Sdrh assert( pExpr->x.pList->nExpr>0 );
145a4c3c87eSdrh assert( pExpr->op==TK_FUNCTION );
146cca9f3d2Sdrh pExpr = pExpr->x.pList->a[0].pExpr;
147cca9f3d2Sdrh }else{
14846fe138dSdrh assert( pExpr->op==TK_COLLATE );
149d91eba96Sdrh pExpr = pExpr->pLeft;
150cca9f3d2Sdrh }
151d91eba96Sdrh }
1520a8a406eSdrh return pExpr;
1538b4c40d8Sdrh }
1548b4c40d8Sdrh
1558b4c40d8Sdrh /*
156ae80ddeaSdrh ** Return the collation sequence for the expression pExpr. If
157ae80ddeaSdrh ** there is no defined collating sequence, return NULL.
158ae80ddeaSdrh **
15970efa84dSdrh ** See also: sqlite3ExprNNCollSeq()
16070efa84dSdrh **
16170efa84dSdrh ** The sqlite3ExprNNCollSeq() works the same exact that it returns the
16270efa84dSdrh ** default collation if pExpr has no defined collation.
16370efa84dSdrh **
164ae80ddeaSdrh ** The collating sequence might be determined by a COLLATE operator
165ae80ddeaSdrh ** or by the presence of a column with a defined collating sequence.
166ae80ddeaSdrh ** COLLATE operators take first precedence. Left operands take
167ae80ddeaSdrh ** precedence over right operands.
1680202b29eSdanielk1977 */
sqlite3ExprCollSeq(Parse * pParse,const Expr * pExpr)169e7375bfaSdrh CollSeq *sqlite3ExprCollSeq(Parse *pParse, const Expr *pExpr){
170ae80ddeaSdrh sqlite3 *db = pParse->db;
1717cedc8d4Sdanielk1977 CollSeq *pColl = 0;
172e7375bfaSdrh const Expr *p = pExpr;
173261d8a51Sdrh while( p ){
174ae80ddeaSdrh int op = p->op;
175cb0e04f9Sdrh if( op==TK_REGISTER ) op = p->op2;
176477572b9Sdrh if( op==TK_AGG_COLUMN || op==TK_COLUMN || op==TK_TRIGGER ){
177*63b3a64cSdrh int j;
178477572b9Sdrh assert( ExprUseYTab(p) );
179*63b3a64cSdrh assert( p->y.pTab!=0 );
180*63b3a64cSdrh if( (j = p->iColumn)>=0 ){
18165b40093Sdrh const char *zColl = sqlite3ColumnColl(&p->y.pTab->aCol[j]);
182c4a64facSdrh pColl = sqlite3FindCollSeq(db, ENC(db), zColl, 0);
1830202b29eSdanielk1977 }
1847d10d5a6Sdrh break;
1857d10d5a6Sdrh }
186e081d73cSdrh if( op==TK_CAST || op==TK_UPLUS ){
187e081d73cSdrh p = p->pLeft;
188e081d73cSdrh continue;
189e081d73cSdrh }
190269d322dSdrh if( op==TK_VECTOR ){
191a4eeccdfSdrh assert( ExprUseXList(p) );
192269d322dSdrh p = p->x.pList->a[0].pExpr;
193269d322dSdrh continue;
194269d322dSdrh }
195cb0e04f9Sdrh if( op==TK_COLLATE ){
196f9751074Sdrh assert( !ExprHasProperty(p, EP_IntValue) );
197e081d73cSdrh pColl = sqlite3GetCollSeq(pParse, ENC(db), 0, p->u.zToken);
198e081d73cSdrh break;
199e081d73cSdrh }
200ae80ddeaSdrh if( p->flags & EP_Collate ){
2012308ed38Sdrh if( p->pLeft && (p->pLeft->flags & EP_Collate)!=0 ){
2027d10d5a6Sdrh p = p->pLeft;
203ae80ddeaSdrh }else{
2042308ed38Sdrh Expr *pNext = p->pRight;
2056728cd91Sdrh /* The Expr.x union is never used at the same time as Expr.pRight */
206a4eeccdfSdrh assert( ExprUseXList(p) );
2076728cd91Sdrh assert( p->x.pList==0 || p->pRight==0 );
208b32b3093Sdrh if( p->x.pList!=0 && !db->mallocFailed ){
2092308ed38Sdrh int i;
2105b107654Sdrh for(i=0; ALWAYS(i<p->x.pList->nExpr); i++){
2112308ed38Sdrh if( ExprHasProperty(p->x.pList->a[i].pExpr, EP_Collate) ){
2122308ed38Sdrh pNext = p->x.pList->a[i].pExpr;
2132308ed38Sdrh break;
2142308ed38Sdrh }
2152308ed38Sdrh }
2162308ed38Sdrh }
2172308ed38Sdrh p = pNext;
218ae80ddeaSdrh }
219ae80ddeaSdrh }else{
220ae80ddeaSdrh break;
221ae80ddeaSdrh }
2220202b29eSdanielk1977 }
2237cedc8d4Sdanielk1977 if( sqlite3CheckCollSeq(pParse, pColl) ){
2247cedc8d4Sdanielk1977 pColl = 0;
2257cedc8d4Sdanielk1977 }
2267cedc8d4Sdanielk1977 return pColl;
2270202b29eSdanielk1977 }
2280202b29eSdanielk1977
2290202b29eSdanielk1977 /*
23070efa84dSdrh ** Return the collation sequence for the expression pExpr. If
23170efa84dSdrh ** there is no defined collating sequence, return a pointer to the
23270efa84dSdrh ** defautl collation sequence.
23370efa84dSdrh **
23470efa84dSdrh ** See also: sqlite3ExprCollSeq()
23570efa84dSdrh **
23670efa84dSdrh ** The sqlite3ExprCollSeq() routine works the same except that it
23770efa84dSdrh ** returns NULL if there is no defined collation.
23870efa84dSdrh */
sqlite3ExprNNCollSeq(Parse * pParse,const Expr * pExpr)239e7375bfaSdrh CollSeq *sqlite3ExprNNCollSeq(Parse *pParse, const Expr *pExpr){
24070efa84dSdrh CollSeq *p = sqlite3ExprCollSeq(pParse, pExpr);
24170efa84dSdrh if( p==0 ) p = pParse->db->pDfltColl;
24270efa84dSdrh assert( p!=0 );
24370efa84dSdrh return p;
24470efa84dSdrh }
24570efa84dSdrh
24670efa84dSdrh /*
24770efa84dSdrh ** Return TRUE if the two expressions have equivalent collating sequences.
24870efa84dSdrh */
sqlite3ExprCollSeqMatch(Parse * pParse,const Expr * pE1,const Expr * pE2)249e7375bfaSdrh int sqlite3ExprCollSeqMatch(Parse *pParse, const Expr *pE1, const Expr *pE2){
25070efa84dSdrh CollSeq *pColl1 = sqlite3ExprNNCollSeq(pParse, pE1);
25170efa84dSdrh CollSeq *pColl2 = sqlite3ExprNNCollSeq(pParse, pE2);
25270efa84dSdrh return sqlite3StrICmp(pColl1->zName, pColl2->zName)==0;
25370efa84dSdrh }
25470efa84dSdrh
25570efa84dSdrh /*
256626a879aSdrh ** pExpr is an operand of a comparison operator. aff2 is the
257626a879aSdrh ** type affinity of the other operand. This routine returns the
25853db1458Sdrh ** type affinity that should be used for the comparison operator.
25953db1458Sdrh */
sqlite3CompareAffinity(const Expr * pExpr,char aff2)260e7375bfaSdrh char sqlite3CompareAffinity(const Expr *pExpr, char aff2){
261bf3b721fSdanielk1977 char aff1 = sqlite3ExprAffinity(pExpr);
26296fb16eeSdrh if( aff1>SQLITE_AFF_NONE && aff2>SQLITE_AFF_NONE ){
2638df447f0Sdrh /* Both sides of the comparison are columns. If one has numeric
2648df447f0Sdrh ** affinity, use that. Otherwise use no affinity.
265e014a838Sdanielk1977 */
2668a51256cSdrh if( sqlite3IsNumericAffinity(aff1) || sqlite3IsNumericAffinity(aff2) ){
267e014a838Sdanielk1977 return SQLITE_AFF_NUMERIC;
268e014a838Sdanielk1977 }else{
26905883a34Sdrh return SQLITE_AFF_BLOB;
270e014a838Sdanielk1977 }
271e014a838Sdanielk1977 }else{
272e014a838Sdanielk1977 /* One side is a column, the other is not. Use the columns affinity. */
27396fb16eeSdrh assert( aff1<=SQLITE_AFF_NONE || aff2<=SQLITE_AFF_NONE );
27496fb16eeSdrh return (aff1<=SQLITE_AFF_NONE ? aff2 : aff1) | SQLITE_AFF_NONE;
275e014a838Sdanielk1977 }
276e014a838Sdanielk1977 }
277e014a838Sdanielk1977
27853db1458Sdrh /*
27953db1458Sdrh ** pExpr is a comparison operator. Return the type affinity that should
28053db1458Sdrh ** be applied to both operands prior to doing the comparison.
28153db1458Sdrh */
comparisonAffinity(const Expr * pExpr)282e7375bfaSdrh static char comparisonAffinity(const Expr *pExpr){
283e014a838Sdanielk1977 char aff;
284e014a838Sdanielk1977 assert( pExpr->op==TK_EQ || pExpr->op==TK_IN || pExpr->op==TK_LT ||
285e014a838Sdanielk1977 pExpr->op==TK_GT || pExpr->op==TK_GE || pExpr->op==TK_LE ||
2866a2fe093Sdrh pExpr->op==TK_NE || pExpr->op==TK_IS || pExpr->op==TK_ISNOT );
287e014a838Sdanielk1977 assert( pExpr->pLeft );
288bf3b721fSdanielk1977 aff = sqlite3ExprAffinity(pExpr->pLeft);
289e014a838Sdanielk1977 if( pExpr->pRight ){
290e014a838Sdanielk1977 aff = sqlite3CompareAffinity(pExpr->pRight, aff);
291a4eeccdfSdrh }else if( ExprUseXSelect(pExpr) ){
2926ab3a2ecSdanielk1977 aff = sqlite3CompareAffinity(pExpr->x.pSelect->pEList->a[0].pExpr, aff);
29313ac46eeSdrh }else if( aff==0 ){
29405883a34Sdrh aff = SQLITE_AFF_BLOB;
295e014a838Sdanielk1977 }
296e014a838Sdanielk1977 return aff;
297e014a838Sdanielk1977 }
298e014a838Sdanielk1977
299e014a838Sdanielk1977 /*
300e014a838Sdanielk1977 ** pExpr is a comparison expression, eg. '=', '<', IN(...) etc.
301e014a838Sdanielk1977 ** idx_affinity is the affinity of an indexed column. Return true
302e014a838Sdanielk1977 ** if the index with affinity idx_affinity may be used to implement
303e014a838Sdanielk1977 ** the comparison in pExpr.
304e014a838Sdanielk1977 */
sqlite3IndexAffinityOk(const Expr * pExpr,char idx_affinity)305e7375bfaSdrh int sqlite3IndexAffinityOk(const Expr *pExpr, char idx_affinity){
306e014a838Sdanielk1977 char aff = comparisonAffinity(pExpr);
307915e434cSdrh if( aff<SQLITE_AFF_TEXT ){
3088a51256cSdrh return 1;
3098a51256cSdrh }
310915e434cSdrh if( aff==SQLITE_AFF_TEXT ){
311915e434cSdrh return idx_affinity==SQLITE_AFF_TEXT;
312915e434cSdrh }
313915e434cSdrh return sqlite3IsNumericAffinity(idx_affinity);
314e014a838Sdanielk1977 }
315e014a838Sdanielk1977
316a37cdde0Sdanielk1977 /*
31735573356Sdrh ** Return the P5 value that should be used for a binary comparison
318a37cdde0Sdanielk1977 ** opcode (OP_Eq, OP_Ge etc.) used to compare pExpr1 and pExpr2.
319a37cdde0Sdanielk1977 */
binaryCompareP5(const Expr * pExpr1,const Expr * pExpr2,int jumpIfNull)320e7375bfaSdrh static u8 binaryCompareP5(
321e7375bfaSdrh const Expr *pExpr1, /* Left operand */
322e7375bfaSdrh const Expr *pExpr2, /* Right operand */
323e7375bfaSdrh int jumpIfNull /* Extra flags added to P5 */
324e7375bfaSdrh ){
32535573356Sdrh u8 aff = (char)sqlite3ExprAffinity(pExpr2);
3261bd10f8aSdrh aff = (u8)sqlite3CompareAffinity(pExpr1, aff) | (u8)jumpIfNull;
32735573356Sdrh return aff;
328a37cdde0Sdanielk1977 }
329a37cdde0Sdanielk1977
330a2e00042Sdrh /*
3310202b29eSdanielk1977 ** Return a pointer to the collation sequence that should be used by
3320202b29eSdanielk1977 ** a binary comparison operator comparing pLeft and pRight.
3330202b29eSdanielk1977 **
3340202b29eSdanielk1977 ** If the left hand expression has a collating sequence type, then it is
3350202b29eSdanielk1977 ** used. Otherwise the collation sequence for the right hand expression
3360202b29eSdanielk1977 ** is used, or the default (BINARY) if neither expression has a collating
3370202b29eSdanielk1977 ** type.
338bcbb04e5Sdanielk1977 **
339bcbb04e5Sdanielk1977 ** Argument pRight (but not pLeft) may be a null pointer. In this case,
340bcbb04e5Sdanielk1977 ** it is not considered.
3410202b29eSdanielk1977 */
sqlite3BinaryCompareCollSeq(Parse * pParse,const Expr * pLeft,const Expr * pRight)342bcbb04e5Sdanielk1977 CollSeq *sqlite3BinaryCompareCollSeq(
343bcbb04e5Sdanielk1977 Parse *pParse,
344e7375bfaSdrh const Expr *pLeft,
345e7375bfaSdrh const Expr *pRight
346bcbb04e5Sdanielk1977 ){
347ec41ddacSdrh CollSeq *pColl;
348ec41ddacSdrh assert( pLeft );
349ae80ddeaSdrh if( pLeft->flags & EP_Collate ){
350ae80ddeaSdrh pColl = sqlite3ExprCollSeq(pParse, pLeft);
351ae80ddeaSdrh }else if( pRight && (pRight->flags & EP_Collate)!=0 ){
352ae80ddeaSdrh pColl = sqlite3ExprCollSeq(pParse, pRight);
353ec41ddacSdrh }else{
354ec41ddacSdrh pColl = sqlite3ExprCollSeq(pParse, pLeft);
3550202b29eSdanielk1977 if( !pColl ){
3567cedc8d4Sdanielk1977 pColl = sqlite3ExprCollSeq(pParse, pRight);
3570202b29eSdanielk1977 }
358ec41ddacSdrh }
3590202b29eSdanielk1977 return pColl;
3600202b29eSdanielk1977 }
3610202b29eSdanielk1977
362898c527eSdrh /* Expresssion p is a comparison operator. Return a collation sequence
363898c527eSdrh ** appropriate for the comparison operator.
364898c527eSdrh **
365898c527eSdrh ** This is normally just a wrapper around sqlite3BinaryCompareCollSeq().
366898c527eSdrh ** However, if the OP_Commuted flag is set, then the order of the operands
367898c527eSdrh ** is reversed in the sqlite3BinaryCompareCollSeq() call so that the
368898c527eSdrh ** correct collating sequence is found.
369898c527eSdrh */
sqlite3ExprCompareCollSeq(Parse * pParse,const Expr * p)370e7375bfaSdrh CollSeq *sqlite3ExprCompareCollSeq(Parse *pParse, const Expr *p){
371898c527eSdrh if( ExprHasProperty(p, EP_Commuted) ){
372898c527eSdrh return sqlite3BinaryCompareCollSeq(pParse, p->pRight, p->pLeft);
373898c527eSdrh }else{
374898c527eSdrh return sqlite3BinaryCompareCollSeq(pParse, p->pLeft, p->pRight);
375898c527eSdrh }
376898c527eSdrh }
377898c527eSdrh
3780202b29eSdanielk1977 /*
379be5c89acSdrh ** Generate code for a comparison operator.
380be5c89acSdrh */
codeCompare(Parse * pParse,Expr * pLeft,Expr * pRight,int opcode,int in1,int in2,int dest,int jumpIfNull,int isCommuted)381be5c89acSdrh static int codeCompare(
382be5c89acSdrh Parse *pParse, /* The parsing (and code generating) context */
383be5c89acSdrh Expr *pLeft, /* The left operand */
384be5c89acSdrh Expr *pRight, /* The right operand */
385be5c89acSdrh int opcode, /* The comparison opcode */
38635573356Sdrh int in1, int in2, /* Register holding operands */
387be5c89acSdrh int dest, /* Jump here if true. */
388898c527eSdrh int jumpIfNull, /* If true, jump if either operand is NULL */
389898c527eSdrh int isCommuted /* The comparison has been commuted */
390be5c89acSdrh ){
39135573356Sdrh int p5;
39235573356Sdrh int addr;
39335573356Sdrh CollSeq *p4;
39435573356Sdrh
3958654186bSdrh if( pParse->nErr ) return 0;
396898c527eSdrh if( isCommuted ){
397898c527eSdrh p4 = sqlite3BinaryCompareCollSeq(pParse, pRight, pLeft);
398898c527eSdrh }else{
39935573356Sdrh p4 = sqlite3BinaryCompareCollSeq(pParse, pLeft, pRight);
400898c527eSdrh }
40135573356Sdrh p5 = binaryCompareP5(pLeft, pRight, jumpIfNull);
40235573356Sdrh addr = sqlite3VdbeAddOp4(pParse->pVdbe, opcode, in2, dest, in1,
40335573356Sdrh (void*)p4, P4_COLLSEQ);
4041bd10f8aSdrh sqlite3VdbeChangeP5(pParse->pVdbe, (u8)p5);
40535573356Sdrh return addr;
406be5c89acSdrh }
407be5c89acSdrh
408cfbb5e82Sdan /*
409870a0705Sdan ** Return true if expression pExpr is a vector, or false otherwise.
410d832da7fSdrh **
411d832da7fSdrh ** A vector is defined as any expression that results in two or more
412d832da7fSdrh ** columns of result. Every TK_VECTOR node is an vector because the
413d832da7fSdrh ** parser will not generate a TK_VECTOR with fewer than two entries.
414d832da7fSdrh ** But a TK_SELECT might be either a vector or a scalar. It is only
415d832da7fSdrh ** considered a vector if it has two or more result columns.
416870a0705Sdan */
sqlite3ExprIsVector(const Expr * pExpr)417b6dad520Sdrh int sqlite3ExprIsVector(const Expr *pExpr){
41876dbe7a8Sdrh return sqlite3ExprVectorSize(pExpr)>1;
419870a0705Sdan }
420870a0705Sdan
421870a0705Sdan /*
422cfbb5e82Sdan ** If the expression passed as the only argument is of type TK_VECTOR
423cfbb5e82Sdan ** return the number of expressions in the vector. Or, if the expression
424cfbb5e82Sdan ** is a sub-select, return the number of columns in the sub-select. For
425cfbb5e82Sdan ** any other type of expression, return 1.
426cfbb5e82Sdan */
sqlite3ExprVectorSize(const Expr * pExpr)427b6dad520Sdrh int sqlite3ExprVectorSize(const Expr *pExpr){
42812abf408Sdrh u8 op = pExpr->op;
42912abf408Sdrh if( op==TK_REGISTER ) op = pExpr->op2;
43012abf408Sdrh if( op==TK_VECTOR ){
431a4eeccdfSdrh assert( ExprUseXList(pExpr) );
43271c57db0Sdan return pExpr->x.pList->nExpr;
43312abf408Sdrh }else if( op==TK_SELECT ){
434a4eeccdfSdrh assert( ExprUseXSelect(pExpr) );
43576dbe7a8Sdrh return pExpr->x.pSelect->pEList->nExpr;
43676dbe7a8Sdrh }else{
43776dbe7a8Sdrh return 1;
43876dbe7a8Sdrh }
43971c57db0Sdan }
44071c57db0Sdan
441ba00e30aSdan /*
442fc7f27b9Sdrh ** Return a pointer to a subexpression of pVector that is the i-th
443fc7f27b9Sdrh ** column of the vector (numbered starting with 0). The caller must
444fc7f27b9Sdrh ** ensure that i is within range.
445fc7f27b9Sdrh **
44676dbe7a8Sdrh ** If pVector is really a scalar (and "scalar" here includes subqueries
44776dbe7a8Sdrh ** that return a single column!) then return pVector unmodified.
44876dbe7a8Sdrh **
449fc7f27b9Sdrh ** pVector retains ownership of the returned subexpression.
450fc7f27b9Sdrh **
451fc7f27b9Sdrh ** If the vector is a (SELECT ...) then the expression returned is
45276dbe7a8Sdrh ** just the expression for the i-th term of the result set, and may
45376dbe7a8Sdrh ** not be ready for evaluation because the table cursor has not yet
45476dbe7a8Sdrh ** been positioned.
455ba00e30aSdan */
sqlite3VectorFieldSubexpr(Expr * pVector,int i)456fc7f27b9Sdrh Expr *sqlite3VectorFieldSubexpr(Expr *pVector, int i){
457bf7f3a00Sdrh assert( i<sqlite3ExprVectorSize(pVector) || pVector->op==TK_ERROR );
458870a0705Sdan if( sqlite3ExprIsVector(pVector) ){
4599f24b53dSdrh assert( pVector->op2==0 || pVector->op==TK_REGISTER );
4609f24b53dSdrh if( pVector->op==TK_SELECT || pVector->op2==TK_SELECT ){
461a4eeccdfSdrh assert( ExprUseXSelect(pVector) );
46271c57db0Sdan return pVector->x.pSelect->pEList->a[i].pExpr;
463870a0705Sdan }else{
464a4eeccdfSdrh assert( ExprUseXList(pVector) );
46571c57db0Sdan return pVector->x.pList->a[i].pExpr;
46671c57db0Sdan }
467870a0705Sdan }
468870a0705Sdan return pVector;
469870a0705Sdan }
470fc7f27b9Sdrh
471fc7f27b9Sdrh /*
472fc7f27b9Sdrh ** Compute and return a new Expr object which when passed to
473fc7f27b9Sdrh ** sqlite3ExprCode() will generate all necessary code to compute
474fc7f27b9Sdrh ** the iField-th column of the vector expression pVector.
475fc7f27b9Sdrh **
4768762ec19Sdrh ** It is ok for pVector to be a scalar (as long as iField==0).
4778762ec19Sdrh ** In that case, this routine works like sqlite3ExprDup().
4788762ec19Sdrh **
479fc7f27b9Sdrh ** The caller owns the returned Expr object and is responsible for
480fc7f27b9Sdrh ** ensuring that the returned value eventually gets freed.
481fc7f27b9Sdrh **
4828762ec19Sdrh ** The caller retains ownership of pVector. If pVector is a TK_SELECT,
483fad0e70cSdan ** then the returned object will reference pVector and so pVector must remain
4848762ec19Sdrh ** valid for the life of the returned object. If pVector is a TK_VECTOR
4858762ec19Sdrh ** or a scalar expression, then it can be deleted as soon as this routine
48676dbe7a8Sdrh ** returns.
4878762ec19Sdrh **
4888762ec19Sdrh ** A trick to cause a TK_SELECT pVector to be deleted together with
4898762ec19Sdrh ** the returned Expr object is to attach the pVector to the pRight field
4908762ec19Sdrh ** of the returned TK_SELECT_COLUMN Expr object.
491fc7f27b9Sdrh */
sqlite3ExprForVectorField(Parse * pParse,Expr * pVector,int iField,int nField)492fc7f27b9Sdrh Expr *sqlite3ExprForVectorField(
493fc7f27b9Sdrh Parse *pParse, /* Parsing context */
494fc7f27b9Sdrh Expr *pVector, /* The vector. List of expressions or a sub-SELECT */
49510f08270Sdrh int iField, /* Which column of the vector to return */
49610f08270Sdrh int nField /* Total number of columns in the vector */
497fc7f27b9Sdrh ){
498fc7f27b9Sdrh Expr *pRet;
499a1251bc4Sdrh if( pVector->op==TK_SELECT ){
500a4eeccdfSdrh assert( ExprUseXSelect(pVector) );
501fc7f27b9Sdrh /* The TK_SELECT_COLUMN Expr node:
502fc7f27b9Sdrh **
503966e2911Sdrh ** pLeft: pVector containing TK_SELECT. Not deleted.
5048762ec19Sdrh ** pRight: not used. But recursively deleted.
505fc7f27b9Sdrh ** iColumn: Index of a column in pVector
506966e2911Sdrh ** iTable: 0 or the number of columns on the LHS of an assignment
507fc7f27b9Sdrh ** pLeft->iTable: First in an array of register holding result, or 0
508fc7f27b9Sdrh ** if the result is not yet computed.
509fc7f27b9Sdrh **
510fc7f27b9Sdrh ** sqlite3ExprDelete() specifically skips the recursive delete of
511fc7f27b9Sdrh ** pLeft on TK_SELECT_COLUMN nodes. But pRight is followed, so pVector
5128762ec19Sdrh ** can be attached to pRight to cause this node to take ownership of
5138762ec19Sdrh ** pVector. Typically there will be multiple TK_SELECT_COLUMN nodes
5148762ec19Sdrh ** with the same pLeft pointer to the pVector, but only one of them
5158762ec19Sdrh ** will own the pVector.
516fc7f27b9Sdrh */
517abfd35eaSdrh pRet = sqlite3PExpr(pParse, TK_SELECT_COLUMN, 0, 0);
5188bd0d58eSdrh if( pRet ){
51910f08270Sdrh pRet->iTable = nField;
5208bd0d58eSdrh pRet->iColumn = iField;
5218bd0d58eSdrh pRet->pLeft = pVector;
5228bd0d58eSdrh }
523fc7f27b9Sdrh }else{
524ab632bc9Sdan if( pVector->op==TK_VECTOR ){
525a4eeccdfSdrh Expr **ppVector;
526a4eeccdfSdrh assert( ExprUseXList(pVector) );
527a4eeccdfSdrh ppVector = &pVector->x.pList->a[iField].pExpr;
528ab632bc9Sdan pVector = *ppVector;
529ab632bc9Sdan if( IN_RENAME_OBJECT ){
530ab632bc9Sdan /* This must be a vector UPDATE inside a trigger */
531ab632bc9Sdan *ppVector = 0;
532ab632bc9Sdan return pVector;
533fc7f27b9Sdrh }
5345a69d19eSdan }
535ab632bc9Sdan pRet = sqlite3ExprDup(pParse->db, pVector, 0);
536ab632bc9Sdan }
537fc7f27b9Sdrh return pRet;
538fc7f27b9Sdrh }
53971c57db0Sdan
5405c288b92Sdan /*
5415c288b92Sdan ** If expression pExpr is of type TK_SELECT, generate code to evaluate
5425c288b92Sdan ** it. Return the register in which the result is stored (or, if the
5435c288b92Sdan ** sub-select returns more than one column, the first in an array
5445c288b92Sdan ** of registers in which the result is stored).
5455c288b92Sdan **
5465c288b92Sdan ** If pExpr is not a TK_SELECT expression, return 0.
5475c288b92Sdan */
exprCodeSubselect(Parse * pParse,Expr * pExpr)5485c288b92Sdan static int exprCodeSubselect(Parse *pParse, Expr *pExpr){
5498da209b1Sdan int reg = 0;
550f9b2e05cSdan #ifndef SQLITE_OMIT_SUBQUERY
5515c288b92Sdan if( pExpr->op==TK_SELECT ){
55285bcdce2Sdrh reg = sqlite3CodeSubselect(pParse, pExpr);
5538da209b1Sdan }
554f9b2e05cSdan #endif
5558da209b1Sdan return reg;
5568da209b1Sdan }
5578da209b1Sdan
5585c288b92Sdan /*
5595c288b92Sdan ** Argument pVector points to a vector expression - either a TK_VECTOR
560870a0705Sdan ** or TK_SELECT that returns more than one column. This function returns
561870a0705Sdan ** the register number of a register that contains the value of
562870a0705Sdan ** element iField of the vector.
563870a0705Sdan **
564870a0705Sdan ** If pVector is a TK_SELECT expression, then code for it must have
565870a0705Sdan ** already been generated using the exprCodeSubselect() routine. In this
566870a0705Sdan ** case parameter regSelect should be the first in an array of registers
567870a0705Sdan ** containing the results of the sub-select.
568870a0705Sdan **
569870a0705Sdan ** If pVector is of type TK_VECTOR, then code for the requested field
570870a0705Sdan ** is generated. In this case (*pRegFree) may be set to the number of
571870a0705Sdan ** a temporary register to be freed by the caller before returning.
5725c288b92Sdan **
5735c288b92Sdan ** Before returning, output parameter (*ppExpr) is set to point to the
5745c288b92Sdan ** Expr object corresponding to element iElem of the vector.
5755c288b92Sdan */
exprVectorRegister(Parse * pParse,Expr * pVector,int iField,int regSelect,Expr ** ppExpr,int * pRegFree)5765c288b92Sdan static int exprVectorRegister(
5775c288b92Sdan Parse *pParse, /* Parse context */
5785c288b92Sdan Expr *pVector, /* Vector to extract element from */
579870a0705Sdan int iField, /* Field to extract from pVector */
5805c288b92Sdan int regSelect, /* First in array of registers */
5815c288b92Sdan Expr **ppExpr, /* OUT: Expression element */
5825c288b92Sdan int *pRegFree /* OUT: Temp register to free */
5835c288b92Sdan ){
58412abf408Sdrh u8 op = pVector->op;
58505428127Sdrh assert( op==TK_VECTOR || op==TK_REGISTER || op==TK_SELECT || op==TK_ERROR );
58612abf408Sdrh if( op==TK_REGISTER ){
58712abf408Sdrh *ppExpr = sqlite3VectorFieldSubexpr(pVector, iField);
58812abf408Sdrh return pVector->iTable+iField;
58912abf408Sdrh }
59012abf408Sdrh if( op==TK_SELECT ){
591a4eeccdfSdrh assert( ExprUseXSelect(pVector) );
592870a0705Sdan *ppExpr = pVector->x.pSelect->pEList->a[iField].pExpr;
593870a0705Sdan return regSelect+iField;
5945c288b92Sdan }
59505428127Sdrh if( op==TK_VECTOR ){
596a4eeccdfSdrh assert( ExprUseXList(pVector) );
597870a0705Sdan *ppExpr = pVector->x.pList->a[iField].pExpr;
5985c288b92Sdan return sqlite3ExprCodeTemp(pParse, *ppExpr, pRegFree);
5995c288b92Sdan }
60005428127Sdrh return 0;
60105428127Sdrh }
6025c288b92Sdan
6035c288b92Sdan /*
6045c288b92Sdan ** Expression pExpr is a comparison between two vector values. Compute
60579752b6eSdrh ** the result of the comparison (1, 0, or NULL) and write that
60679752b6eSdrh ** result into register dest.
60779752b6eSdrh **
60879752b6eSdrh ** The caller must satisfy the following preconditions:
60979752b6eSdrh **
61079752b6eSdrh ** if pExpr->op==TK_IS: op==TK_EQ and p5==SQLITE_NULLEQ
61179752b6eSdrh ** if pExpr->op==TK_ISNOT: op==TK_NE and p5==SQLITE_NULLEQ
61279752b6eSdrh ** otherwise: op==pExpr->op and p5==0
6135c288b92Sdan */
codeVectorCompare(Parse * pParse,Expr * pExpr,int dest,u8 op,u8 p5)61479752b6eSdrh static void codeVectorCompare(
61579752b6eSdrh Parse *pParse, /* Code generator context */
61679752b6eSdrh Expr *pExpr, /* The comparison operation */
61779752b6eSdrh int dest, /* Write results into this register */
61879752b6eSdrh u8 op, /* Comparison operator */
61979752b6eSdrh u8 p5 /* SQLITE_NULLEQ or zero */
62079752b6eSdrh ){
62171c57db0Sdan Vdbe *v = pParse->pVdbe;
62271c57db0Sdan Expr *pLeft = pExpr->pLeft;
62371c57db0Sdan Expr *pRight = pExpr->pRight;
62471c57db0Sdan int nLeft = sqlite3ExprVectorSize(pLeft);
62571c57db0Sdan int i;
62671c57db0Sdan int regLeft = 0;
62771c57db0Sdan int regRight = 0;
62879752b6eSdrh u8 opx = op;
6294bc20452Sdrh int addrCmp = 0;
630ec4ccdbcSdrh int addrDone = sqlite3VdbeMakeLabel(pParse);
631898c527eSdrh int isCommuted = ExprHasProperty(pExpr,EP_Commuted);
63271c57db0Sdan
633e7375bfaSdrh assert( !ExprHasVVAProperty(pExpr,EP_Immutable) );
634340fd0bcSdrh if( pParse->nErr ) return;
635245ce62eSdrh if( nLeft!=sqlite3ExprVectorSize(pRight) ){
636245ce62eSdrh sqlite3ErrorMsg(pParse, "row value misused");
637245ce62eSdrh return;
638245ce62eSdrh }
63971c57db0Sdan assert( pExpr->op==TK_EQ || pExpr->op==TK_NE
64071c57db0Sdan || pExpr->op==TK_IS || pExpr->op==TK_ISNOT
64171c57db0Sdan || pExpr->op==TK_LT || pExpr->op==TK_GT
64271c57db0Sdan || pExpr->op==TK_LE || pExpr->op==TK_GE
64371c57db0Sdan );
64479752b6eSdrh assert( pExpr->op==op || (pExpr->op==TK_IS && op==TK_EQ)
64579752b6eSdrh || (pExpr->op==TK_ISNOT && op==TK_NE) );
64679752b6eSdrh assert( p5==0 || pExpr->op!=op );
64779752b6eSdrh assert( p5==SQLITE_NULLEQ || pExpr->op==op );
64871c57db0Sdan
6494bc20452Sdrh if( op==TK_LE ) opx = TK_LT;
6504bc20452Sdrh if( op==TK_GE ) opx = TK_GT;
6514bc20452Sdrh if( op==TK_NE ) opx = TK_EQ;
6525c288b92Sdan
6535c288b92Sdan regLeft = exprCodeSubselect(pParse, pLeft);
6545c288b92Sdan regRight = exprCodeSubselect(pParse, pRight);
6555c288b92Sdan
6564bc20452Sdrh sqlite3VdbeAddOp2(v, OP_Integer, 1, dest);
657321e828dSdrh for(i=0; 1 /*Loop exits by "break"*/; i++){
6585c288b92Sdan int regFree1 = 0, regFree2 = 0;
659abc15f1bSdrh Expr *pL = 0, *pR = 0;
6605c288b92Sdan int r1, r2;
661321e828dSdrh assert( i>=0 && i<nLeft );
6624bc20452Sdrh if( addrCmp ) sqlite3VdbeJumpHere(v, addrCmp);
6635c288b92Sdan r1 = exprVectorRegister(pParse, pLeft, i, regLeft, &pL, ®Free1);
6645c288b92Sdan r2 = exprVectorRegister(pParse, pRight, i, regRight, &pR, ®Free2);
6654bc20452Sdrh addrCmp = sqlite3VdbeCurrentAddr(v);
6664bc20452Sdrh codeCompare(pParse, pL, pR, opx, r1, r2, addrDone, p5, isCommuted);
66779752b6eSdrh testcase(op==OP_Lt); VdbeCoverageIf(v,op==OP_Lt);
66879752b6eSdrh testcase(op==OP_Le); VdbeCoverageIf(v,op==OP_Le);
66979752b6eSdrh testcase(op==OP_Gt); VdbeCoverageIf(v,op==OP_Gt);
67079752b6eSdrh testcase(op==OP_Ge); VdbeCoverageIf(v,op==OP_Ge);
67179752b6eSdrh testcase(op==OP_Eq); VdbeCoverageIf(v,op==OP_Eq);
67279752b6eSdrh testcase(op==OP_Ne); VdbeCoverageIf(v,op==OP_Ne);
67371c57db0Sdan sqlite3ReleaseTempReg(pParse, regFree1);
67471c57db0Sdan sqlite3ReleaseTempReg(pParse, regFree2);
6754bc20452Sdrh if( (opx==TK_LT || opx==TK_GT) && i<nLeft-1 ){
6764bc20452Sdrh addrCmp = sqlite3VdbeAddOp0(v, OP_ElseEq);
6774bc20452Sdrh testcase(opx==TK_LT); VdbeCoverageIf(v,opx==TK_LT);
6784bc20452Sdrh testcase(opx==TK_GT); VdbeCoverageIf(v,opx==TK_GT);
6794bc20452Sdrh }
6804bc20452Sdrh if( p5==SQLITE_NULLEQ ){
6814bc20452Sdrh sqlite3VdbeAddOp2(v, OP_Integer, 0, dest);
6824bc20452Sdrh }else{
6834bc20452Sdrh sqlite3VdbeAddOp3(v, OP_ZeroOrNull, r1, dest, r2);
6844bc20452Sdrh }
68579752b6eSdrh if( i==nLeft-1 ){
68679752b6eSdrh break;
68771c57db0Sdan }
68879752b6eSdrh if( opx==TK_EQ ){
6894bc20452Sdrh sqlite3VdbeAddOp2(v, OP_NotNull, dest, addrDone); VdbeCoverage(v);
690a2f62925Sdrh }else{
691a2f62925Sdrh assert( op==TK_LT || op==TK_GT || op==TK_LE || op==TK_GE );
6924bc20452Sdrh sqlite3VdbeAddOp2(v, OP_Goto, 0, addrDone);
69379752b6eSdrh if( i==nLeft-2 ) opx = op;
69471c57db0Sdan }
69579752b6eSdrh }
6964bc20452Sdrh sqlite3VdbeJumpHere(v, addrCmp);
69779752b6eSdrh sqlite3VdbeResolveLabel(v, addrDone);
6984bc20452Sdrh if( op==TK_NE ){
6994bc20452Sdrh sqlite3VdbeAddOp2(v, OP_Not, dest, dest);
7004bc20452Sdrh }
70179752b6eSdrh }
70271c57db0Sdan
7034b5255acSdanielk1977 #if SQLITE_MAX_EXPR_DEPTH>0
7044b5255acSdanielk1977 /*
7054b5255acSdanielk1977 ** Check that argument nHeight is less than or equal to the maximum
7064b5255acSdanielk1977 ** expression depth allowed. If it is not, leave an error message in
7074b5255acSdanielk1977 ** pParse.
7084b5255acSdanielk1977 */
sqlite3ExprCheckHeight(Parse * pParse,int nHeight)7097d10d5a6Sdrh int sqlite3ExprCheckHeight(Parse *pParse, int nHeight){
7104b5255acSdanielk1977 int rc = SQLITE_OK;
7114b5255acSdanielk1977 int mxHeight = pParse->db->aLimit[SQLITE_LIMIT_EXPR_DEPTH];
7124b5255acSdanielk1977 if( nHeight>mxHeight ){
7134b5255acSdanielk1977 sqlite3ErrorMsg(pParse,
7144b5255acSdanielk1977 "Expression tree is too large (maximum depth %d)", mxHeight
7154b5255acSdanielk1977 );
7164b5255acSdanielk1977 rc = SQLITE_ERROR;
7174b5255acSdanielk1977 }
7184b5255acSdanielk1977 return rc;
7194b5255acSdanielk1977 }
7204b5255acSdanielk1977
7214b5255acSdanielk1977 /* The following three functions, heightOfExpr(), heightOfExprList()
7224b5255acSdanielk1977 ** and heightOfSelect(), are used to determine the maximum height
7234b5255acSdanielk1977 ** of any expression tree referenced by the structure passed as the
7244b5255acSdanielk1977 ** first argument.
7254b5255acSdanielk1977 **
7264b5255acSdanielk1977 ** If this maximum height is greater than the current value pointed
7274b5255acSdanielk1977 ** to by pnHeight, the second parameter, then set *pnHeight to that
7284b5255acSdanielk1977 ** value.
7294b5255acSdanielk1977 */
heightOfExpr(const Expr * p,int * pnHeight)730b6dad520Sdrh static void heightOfExpr(const Expr *p, int *pnHeight){
7314b5255acSdanielk1977 if( p ){
7324b5255acSdanielk1977 if( p->nHeight>*pnHeight ){
7334b5255acSdanielk1977 *pnHeight = p->nHeight;
7344b5255acSdanielk1977 }
7354b5255acSdanielk1977 }
7364b5255acSdanielk1977 }
heightOfExprList(const ExprList * p,int * pnHeight)737b6dad520Sdrh static void heightOfExprList(const ExprList *p, int *pnHeight){
7384b5255acSdanielk1977 if( p ){
7394b5255acSdanielk1977 int i;
7404b5255acSdanielk1977 for(i=0; i<p->nExpr; i++){
7414b5255acSdanielk1977 heightOfExpr(p->a[i].pExpr, pnHeight);
7424b5255acSdanielk1977 }
7434b5255acSdanielk1977 }
7444b5255acSdanielk1977 }
heightOfSelect(const Select * pSelect,int * pnHeight)745b6dad520Sdrh static void heightOfSelect(const Select *pSelect, int *pnHeight){
746b6dad520Sdrh const Select *p;
7471a3a3086Sdan for(p=pSelect; p; p=p->pPrior){
7484b5255acSdanielk1977 heightOfExpr(p->pWhere, pnHeight);
7494b5255acSdanielk1977 heightOfExpr(p->pHaving, pnHeight);
7504b5255acSdanielk1977 heightOfExpr(p->pLimit, pnHeight);
7514b5255acSdanielk1977 heightOfExprList(p->pEList, pnHeight);
7524b5255acSdanielk1977 heightOfExprList(p->pGroupBy, pnHeight);
7534b5255acSdanielk1977 heightOfExprList(p->pOrderBy, pnHeight);
7544b5255acSdanielk1977 }
7554b5255acSdanielk1977 }
7564b5255acSdanielk1977
7574b5255acSdanielk1977 /*
7584b5255acSdanielk1977 ** Set the Expr.nHeight variable in the structure passed as an
7594b5255acSdanielk1977 ** argument. An expression with no children, Expr.pList or
7604b5255acSdanielk1977 ** Expr.pSelect member has a height of 1. Any other expression
7614b5255acSdanielk1977 ** has a height equal to the maximum height of any other
7624b5255acSdanielk1977 ** referenced Expr plus one.
7632308ed38Sdrh **
7642308ed38Sdrh ** Also propagate EP_Propagate flags up from Expr.x.pList to Expr.flags,
7652308ed38Sdrh ** if appropriate.
7664b5255acSdanielk1977 */
exprSetHeight(Expr * p)7674b5255acSdanielk1977 static void exprSetHeight(Expr *p){
7682ef11116Sdrh int nHeight = p->pLeft ? p->pLeft->nHeight : 0;
76947e2fe3cSdrh if( NEVER(p->pRight) && p->pRight->nHeight>nHeight ){
77047e2fe3cSdrh nHeight = p->pRight->nHeight;
77147e2fe3cSdrh }
772a4eeccdfSdrh if( ExprUseXSelect(p) ){
7736ab3a2ecSdanielk1977 heightOfSelect(p->x.pSelect, &nHeight);
7742308ed38Sdrh }else if( p->x.pList ){
7756ab3a2ecSdanielk1977 heightOfExprList(p->x.pList, &nHeight);
7762308ed38Sdrh p->flags |= EP_Propagate & sqlite3ExprListFlags(p->x.pList);
7776ab3a2ecSdanielk1977 }
7784b5255acSdanielk1977 p->nHeight = nHeight + 1;
7794b5255acSdanielk1977 }
7804b5255acSdanielk1977
7814b5255acSdanielk1977 /*
7824b5255acSdanielk1977 ** Set the Expr.nHeight variable using the exprSetHeight() function. If
7834b5255acSdanielk1977 ** the height is greater than the maximum allowed expression depth,
7844b5255acSdanielk1977 ** leave an error in pParse.
7852308ed38Sdrh **
7862308ed38Sdrh ** Also propagate all EP_Propagate flags from the Expr.x.pList into
7872308ed38Sdrh ** Expr.flags.
7884b5255acSdanielk1977 */
sqlite3ExprSetHeightAndFlags(Parse * pParse,Expr * p)7892308ed38Sdrh void sqlite3ExprSetHeightAndFlags(Parse *pParse, Expr *p){
79074893a4cSdrh if( pParse->nErr ) return;
7914b5255acSdanielk1977 exprSetHeight(p);
7927d10d5a6Sdrh sqlite3ExprCheckHeight(pParse, p->nHeight);
7934b5255acSdanielk1977 }
7944b5255acSdanielk1977
7954b5255acSdanielk1977 /*
7964b5255acSdanielk1977 ** Return the maximum height of any expression tree referenced
7974b5255acSdanielk1977 ** by the select statement passed as an argument.
7984b5255acSdanielk1977 */
sqlite3SelectExprHeight(const Select * p)799b6dad520Sdrh int sqlite3SelectExprHeight(const Select *p){
8004b5255acSdanielk1977 int nHeight = 0;
8014b5255acSdanielk1977 heightOfSelect(p, &nHeight);
8024b5255acSdanielk1977 return nHeight;
8034b5255acSdanielk1977 }
8042308ed38Sdrh #else /* ABOVE: Height enforcement enabled. BELOW: Height enforcement off */
8052308ed38Sdrh /*
8062308ed38Sdrh ** Propagate all EP_Propagate flags from the Expr.x.pList into
8072308ed38Sdrh ** Expr.flags.
8082308ed38Sdrh */
sqlite3ExprSetHeightAndFlags(Parse * pParse,Expr * p)8092308ed38Sdrh void sqlite3ExprSetHeightAndFlags(Parse *pParse, Expr *p){
8106c3b4b07Sdan if( pParse->nErr ) return;
811a4eeccdfSdrh if( p && ExprUseXList(p) && p->x.pList ){
8122308ed38Sdrh p->flags |= EP_Propagate & sqlite3ExprListFlags(p->x.pList);
8132308ed38Sdrh }
8142308ed38Sdrh }
8154b5255acSdanielk1977 #define exprSetHeight(y)
8164b5255acSdanielk1977 #endif /* SQLITE_MAX_EXPR_DEPTH>0 */
8174b5255acSdanielk1977
818be5c89acSdrh /*
819b7916a78Sdrh ** This routine is the core allocator for Expr nodes.
820b7916a78Sdrh **
821a76b5dfcSdrh ** Construct a new expression node and return a pointer to it. Memory
822b7916a78Sdrh ** for this node and for the pToken argument is a single allocation
823b7916a78Sdrh ** obtained from sqlite3DbMalloc(). The calling function
824a76b5dfcSdrh ** is responsible for making sure the node eventually gets freed.
825b7916a78Sdrh **
826b7916a78Sdrh ** If dequote is true, then the token (if it exists) is dequoted.
827e792b5b4Sdrh ** If dequote is false, no dequoting is performed. The deQuote
828b7916a78Sdrh ** parameter is ignored if pToken is NULL or if the token does not
829b7916a78Sdrh ** appear to be quoted. If the quotes were of the form "..." (double-quotes)
830b7916a78Sdrh ** then the EP_DblQuoted flag is set on the expression node.
83133e619fcSdrh **
83233e619fcSdrh ** Special case: If op==TK_INTEGER and pToken points to a string that
83333e619fcSdrh ** can be translated into a 32-bit integer, then the token is not
83433e619fcSdrh ** stored in u.zToken. Instead, the integer values is written
83533e619fcSdrh ** into u.iValue and the EP_IntValue flag is set. No extra storage
83633e619fcSdrh ** is allocated to hold the integer text and the dequote flag is ignored.
837a76b5dfcSdrh */
sqlite3ExprAlloc(sqlite3 * db,int op,const Token * pToken,int dequote)838b7916a78Sdrh Expr *sqlite3ExprAlloc(
839cca8a4adSdrh sqlite3 *db, /* Handle for sqlite3DbMallocRawNN() */
84017435752Sdrh int op, /* Expression opcode */
841b7916a78Sdrh const Token *pToken, /* Token argument. Might be NULL */
842b7916a78Sdrh int dequote /* True to dequote */
84317435752Sdrh ){
844a76b5dfcSdrh Expr *pNew;
84533e619fcSdrh int nExtra = 0;
846cf697396Sshane int iValue = 0;
847b7916a78Sdrh
848575fad65Sdrh assert( db!=0 );
849b7916a78Sdrh if( pToken ){
85033e619fcSdrh if( op!=TK_INTEGER || pToken->z==0
85133e619fcSdrh || sqlite3GetInt32(pToken->z, &iValue)==0 ){
852b7916a78Sdrh nExtra = pToken->n+1;
853d50ffc41Sdrh assert( iValue>=0 );
85433e619fcSdrh }
855a76b5dfcSdrh }
856575fad65Sdrh pNew = sqlite3DbMallocRawNN(db, sizeof(Expr)+nExtra);
857b7916a78Sdrh if( pNew ){
858ca3862dcSdrh memset(pNew, 0, sizeof(Expr));
8591bd10f8aSdrh pNew->op = (u8)op;
860a58fdfb1Sdanielk1977 pNew->iAgg = -1;
861a76b5dfcSdrh if( pToken ){
86233e619fcSdrh if( nExtra==0 ){
863ad31727fSdrh pNew->flags |= EP_IntValue|EP_Leaf|(iValue?EP_IsTrue:EP_IsFalse);
86433e619fcSdrh pNew->u.iValue = iValue;
86533e619fcSdrh }else{
86633e619fcSdrh pNew->u.zToken = (char*)&pNew[1];
867b07028f7Sdrh assert( pToken->z!=0 || pToken->n==0 );
868b07028f7Sdrh if( pToken->n ) memcpy(pNew->u.zToken, pToken->z, pToken->n);
86933e619fcSdrh pNew->u.zToken[pToken->n] = 0;
870244b9d6eSdrh if( dequote && sqlite3Isquote(pNew->u.zToken[0]) ){
87151d35b0fSdrh sqlite3DequoteExpr(pNew);
872a34001c9Sdrh }
873a34001c9Sdrh }
87433e619fcSdrh }
875b7916a78Sdrh #if SQLITE_MAX_EXPR_DEPTH>0
876b7916a78Sdrh pNew->nHeight = 1;
877b7916a78Sdrh #endif
878a34001c9Sdrh }
879a76b5dfcSdrh return pNew;
880a76b5dfcSdrh }
881a76b5dfcSdrh
882a76b5dfcSdrh /*
883b7916a78Sdrh ** Allocate a new expression node from a zero-terminated token that has
884b7916a78Sdrh ** already been dequoted.
885b7916a78Sdrh */
sqlite3Expr(sqlite3 * db,int op,const char * zToken)886b7916a78Sdrh Expr *sqlite3Expr(
887b7916a78Sdrh sqlite3 *db, /* Handle for sqlite3DbMallocZero() (may be null) */
888b7916a78Sdrh int op, /* Expression opcode */
889b7916a78Sdrh const char *zToken /* Token argument. Might be NULL */
890b7916a78Sdrh ){
891b7916a78Sdrh Token x;
892b7916a78Sdrh x.z = zToken;
893b40f06c6Sdrh x.n = sqlite3Strlen30(zToken);
894b7916a78Sdrh return sqlite3ExprAlloc(db, op, &x, 0);
895b7916a78Sdrh }
896b7916a78Sdrh
897b7916a78Sdrh /*
898b7916a78Sdrh ** Attach subtrees pLeft and pRight to the Expr node pRoot.
899b7916a78Sdrh **
900b7916a78Sdrh ** If pRoot==NULL that means that a memory allocation error has occurred.
901b7916a78Sdrh ** In that case, delete the subtrees pLeft and pRight.
902b7916a78Sdrh */
sqlite3ExprAttachSubtrees(sqlite3 * db,Expr * pRoot,Expr * pLeft,Expr * pRight)903b7916a78Sdrh void sqlite3ExprAttachSubtrees(
904b7916a78Sdrh sqlite3 *db,
905b7916a78Sdrh Expr *pRoot,
906b7916a78Sdrh Expr *pLeft,
907b7916a78Sdrh Expr *pRight
908b7916a78Sdrh ){
909b7916a78Sdrh if( pRoot==0 ){
910b7916a78Sdrh assert( db->mallocFailed );
911b7916a78Sdrh sqlite3ExprDelete(db, pLeft);
912b7916a78Sdrh sqlite3ExprDelete(db, pRight);
913b7916a78Sdrh }else{
91447e2fe3cSdrh assert( ExprUseXList(pRoot) );
91547e2fe3cSdrh assert( pRoot->x.pSelect==0 );
916b7916a78Sdrh if( pRight ){
917b7916a78Sdrh pRoot->pRight = pRight;
918885a5b03Sdrh pRoot->flags |= EP_Propagate & pRight->flags;
91947e2fe3cSdrh #if SQLITE_MAX_EXPR_DEPTH>0
92047e2fe3cSdrh pRoot->nHeight = pRight->nHeight+1;
92147e2fe3cSdrh }else{
92247e2fe3cSdrh pRoot->nHeight = 1;
92347e2fe3cSdrh #endif
924b7916a78Sdrh }
925b7916a78Sdrh if( pLeft ){
926b7916a78Sdrh pRoot->pLeft = pLeft;
927885a5b03Sdrh pRoot->flags |= EP_Propagate & pLeft->flags;
92847e2fe3cSdrh #if SQLITE_MAX_EXPR_DEPTH>0
92947e2fe3cSdrh if( pLeft->nHeight>=pRoot->nHeight ){
93047e2fe3cSdrh pRoot->nHeight = pLeft->nHeight+1;
931b7916a78Sdrh }
93247e2fe3cSdrh #endif
93347e2fe3cSdrh }
934b7916a78Sdrh }
935b7916a78Sdrh }
936b7916a78Sdrh
937b7916a78Sdrh /*
93860ec914cSpeter.d.reid ** Allocate an Expr node which joins as many as two subtrees.
939b7916a78Sdrh **
940bf664469Sdrh ** One or both of the subtrees can be NULL. Return a pointer to the new
941bf664469Sdrh ** Expr node. Or, if an OOM error occurs, set pParse->db->mallocFailed,
942bf664469Sdrh ** free the subtrees and return NULL.
943206f3d96Sdrh */
sqlite3PExpr(Parse * pParse,int op,Expr * pLeft,Expr * pRight)94417435752Sdrh Expr *sqlite3PExpr(
94517435752Sdrh Parse *pParse, /* Parsing context */
94617435752Sdrh int op, /* Expression opcode */
94717435752Sdrh Expr *pLeft, /* Left operand */
948abfd35eaSdrh Expr *pRight /* Right operand */
94917435752Sdrh ){
9505fb52caaSdrh Expr *p;
951abfd35eaSdrh p = sqlite3DbMallocRawNN(pParse->db, sizeof(Expr));
952abfd35eaSdrh if( p ){
953abfd35eaSdrh memset(p, 0, sizeof(Expr));
954f1722baaSdrh p->op = op & 0xff;
955abfd35eaSdrh p->iAgg = -1;
956b7916a78Sdrh sqlite3ExprAttachSubtrees(pParse->db, p, pLeft, pRight);
9572b359bdbSdan sqlite3ExprCheckHeight(pParse, p->nHeight);
958d5c851c1Sdrh }else{
959d5c851c1Sdrh sqlite3ExprDelete(pParse->db, pLeft);
960d5c851c1Sdrh sqlite3ExprDelete(pParse->db, pRight);
9612b359bdbSdan }
9624e0cff60Sdrh return p;
9634e0cff60Sdrh }
9644e0cff60Sdrh
9654e0cff60Sdrh /*
96608de4f79Sdrh ** Add pSelect to the Expr.x.pSelect field. Or, if pExpr is NULL (due
96708de4f79Sdrh ** do a memory allocation failure) then delete the pSelect object.
96808de4f79Sdrh */
sqlite3PExprAddSelect(Parse * pParse,Expr * pExpr,Select * pSelect)96908de4f79Sdrh void sqlite3PExprAddSelect(Parse *pParse, Expr *pExpr, Select *pSelect){
97008de4f79Sdrh if( pExpr ){
97108de4f79Sdrh pExpr->x.pSelect = pSelect;
97208de4f79Sdrh ExprSetProperty(pExpr, EP_xIsSelect|EP_Subquery);
97308de4f79Sdrh sqlite3ExprSetHeightAndFlags(pParse, pExpr);
97408de4f79Sdrh }else{
97508de4f79Sdrh assert( pParse->db->mallocFailed );
97608de4f79Sdrh sqlite3SelectDelete(pParse->db, pSelect);
97708de4f79Sdrh }
97808de4f79Sdrh }
97908de4f79Sdrh
9809289f510Sdan /*
9819289f510Sdan ** Expression list pEList is a list of vector values. This function
9829289f510Sdan ** converts the contents of pEList to a VALUES(...) Select statement
98374777f99Sdan ** returning 1 row for each element of the list. For example, the
98474777f99Sdan ** expression list:
9859289f510Sdan **
98674777f99Sdan ** ( (1,2), (3,4) (5,6) )
9879289f510Sdan **
98874777f99Sdan ** is translated to the equivalent of:
9899289f510Sdan **
99074777f99Sdan ** VALUES(1,2), (3,4), (5,6)
9919289f510Sdan **
99274777f99Sdan ** Each of the vector values in pEList must contain exactly nElem terms.
99374777f99Sdan ** If a list element that is not a vector or does not contain nElem terms,
99474777f99Sdan ** an error message is left in pParse.
9959289f510Sdan **
9969289f510Sdan ** This is used as part of processing IN(...) expressions with a list
9979289f510Sdan ** of vectors on the RHS. e.g. "... IN ((1,2), (3,4), (5,6))".
9989289f510Sdan */
sqlite3ExprListToValues(Parse * pParse,int nElem,ExprList * pEList)99974777f99Sdan Select *sqlite3ExprListToValues(Parse *pParse, int nElem, ExprList *pEList){
10009289f510Sdan int ii;
10019289f510Sdan Select *pRet = 0;
10022931a66eSdan assert( nElem>1 );
10039289f510Sdan for(ii=0; ii<pEList->nExpr; ii++){
10049289f510Sdan Select *pSel;
10059289f510Sdan Expr *pExpr = pEList->a[ii].pExpr;
1006a4eeccdfSdrh int nExprElem;
1007a4eeccdfSdrh if( pExpr->op==TK_VECTOR ){
1008a4eeccdfSdrh assert( ExprUseXList(pExpr) );
1009a4eeccdfSdrh nExprElem = pExpr->x.pList->nExpr;
1010a4eeccdfSdrh }else{
1011a4eeccdfSdrh nExprElem = 1;
1012a4eeccdfSdrh }
101374777f99Sdan if( nExprElem!=nElem ){
101474777f99Sdan sqlite3ErrorMsg(pParse, "IN(...) element has %d term%s - expected %d",
101574777f99Sdan nExprElem, nExprElem>1?"s":"", nElem
101674777f99Sdan );
101774777f99Sdan break;
10189289f510Sdan }
1019a4eeccdfSdrh assert( ExprUseXList(pExpr) );
102074777f99Sdan pSel = sqlite3SelectNew(pParse, pExpr->x.pList, 0, 0, 0, 0, 0, SF_Values,0);
102174777f99Sdan pExpr->x.pList = 0;
10229289f510Sdan if( pSel ){
10239289f510Sdan if( pRet ){
10249289f510Sdan pSel->op = TK_ALL;
10259289f510Sdan pSel->pPrior = pRet;
10269289f510Sdan }
10279289f510Sdan pRet = pSel;
10289289f510Sdan }
10299289f510Sdan }
10309289f510Sdan
10319289f510Sdan if( pRet && pRet->pPrior ){
10329289f510Sdan pRet->selFlags |= SF_MultiValue;
10339289f510Sdan }
10349289f510Sdan sqlite3ExprListDelete(pParse->db, pEList);
10359289f510Sdan return pRet;
10369289f510Sdan }
103708de4f79Sdrh
103808de4f79Sdrh /*
103991bb0eedSdrh ** Join two expressions using an AND operator. If either expression is
104091bb0eedSdrh ** NULL, then just return the other expression.
10415fb52caaSdrh **
10425fb52caaSdrh ** If one side or the other of the AND is known to be false, then instead
10435fb52caaSdrh ** of returning an AND expression, just return a constant expression with
10445fb52caaSdrh ** a value of false.
104591bb0eedSdrh */
sqlite3ExprAnd(Parse * pParse,Expr * pLeft,Expr * pRight)1046d5c851c1Sdrh Expr *sqlite3ExprAnd(Parse *pParse, Expr *pLeft, Expr *pRight){
1047d5c851c1Sdrh sqlite3 *db = pParse->db;
104891bb0eedSdrh if( pLeft==0 ){
104991bb0eedSdrh return pRight;
105091bb0eedSdrh }else if( pRight==0 ){
105191bb0eedSdrh return pLeft;
10522b6e670fSdan }else if( (ExprAlwaysFalse(pLeft) || ExprAlwaysFalse(pRight))
10532b6e670fSdan && !IN_RENAME_OBJECT
10542b6e670fSdan ){
1055b3ad4e61Sdrh sqlite3ExprDeferredDelete(pParse, pLeft);
1056b3ad4e61Sdrh sqlite3ExprDeferredDelete(pParse, pRight);
10575776ee5cSdrh return sqlite3Expr(db, TK_INTEGER, "0");
105891bb0eedSdrh }else{
1059d5c851c1Sdrh return sqlite3PExpr(pParse, TK_AND, pLeft, pRight);
1060a76b5dfcSdrh }
1061a76b5dfcSdrh }
1062a76b5dfcSdrh
1063a76b5dfcSdrh /*
1064a76b5dfcSdrh ** Construct a new expression node for a function with multiple
1065a76b5dfcSdrh ** arguments.
1066a76b5dfcSdrh */
sqlite3ExprFunction(Parse * pParse,ExprList * pList,const Token * pToken,int eDistinct)1067954733b3Sdrh Expr *sqlite3ExprFunction(
1068954733b3Sdrh Parse *pParse, /* Parsing context */
1069954733b3Sdrh ExprList *pList, /* Argument list */
1070b6dad520Sdrh const Token *pToken, /* Name of the function */
1071954733b3Sdrh int eDistinct /* SF_Distinct or SF_ALL or 0 */
1072954733b3Sdrh ){
1073a76b5dfcSdrh Expr *pNew;
1074633e6d57Sdrh sqlite3 *db = pParse->db;
10754b202ae2Sdanielk1977 assert( pToken );
1076b7916a78Sdrh pNew = sqlite3ExprAlloc(db, TK_FUNCTION, pToken, 1);
1077a76b5dfcSdrh if( pNew==0 ){
1078d9da78a2Sdrh sqlite3ExprListDelete(db, pList); /* Avoid memory leak when malloc fails */
1079a76b5dfcSdrh return 0;
1080a76b5dfcSdrh }
1081a6e8ee12Sdrh assert( !ExprHasProperty(pNew, EP_InnerON|EP_OuterON) );
108262fc069eSdrh pNew->w.iOfst = (int)(pToken->z - pParse->zTail);
108314a1b1c1Sdrh if( pList
108414a1b1c1Sdrh && pList->nExpr > pParse->db->aLimit[SQLITE_LIMIT_FUNCTION_ARG]
108514a1b1c1Sdrh && !pParse->nested
108614a1b1c1Sdrh ){
1087954733b3Sdrh sqlite3ErrorMsg(pParse, "too many arguments on function %T", pToken);
1088954733b3Sdrh }
10896ab3a2ecSdanielk1977 pNew->x.pList = pList;
1090fca23557Sdrh ExprSetProperty(pNew, EP_HasFunc);
1091a4eeccdfSdrh assert( ExprUseXList(pNew) );
10922308ed38Sdrh sqlite3ExprSetHeightAndFlags(pParse, pNew);
1093954733b3Sdrh if( eDistinct==SF_Distinct ) ExprSetProperty(pNew, EP_Distinct);
1094a76b5dfcSdrh return pNew;
1095a76b5dfcSdrh }
1096a76b5dfcSdrh
1097a76b5dfcSdrh /*
10980dfa5255Sdrh ** Check to see if a function is usable according to current access
10990dfa5255Sdrh ** rules:
11000dfa5255Sdrh **
11010dfa5255Sdrh ** SQLITE_FUNC_DIRECT - Only usable from top-level SQL
11020dfa5255Sdrh **
11030dfa5255Sdrh ** SQLITE_FUNC_UNSAFE - Usable if TRUSTED_SCHEMA or from
11040dfa5255Sdrh ** top-level SQL
11050dfa5255Sdrh **
11060dfa5255Sdrh ** If the function is not usable, create an error.
11070dfa5255Sdrh */
sqlite3ExprFunctionUsable(Parse * pParse,const Expr * pExpr,const FuncDef * pDef)11080dfa5255Sdrh void sqlite3ExprFunctionUsable(
11090dfa5255Sdrh Parse *pParse, /* Parsing and code generating context */
1110b6dad520Sdrh const Expr *pExpr, /* The function invocation */
1111b6dad520Sdrh const FuncDef *pDef /* The function being invoked */
11120dfa5255Sdrh ){
11130dfa5255Sdrh assert( !IN_RENAME_OBJECT );
11142eeca204Sdrh assert( (pDef->funcFlags & (SQLITE_FUNC_DIRECT|SQLITE_FUNC_UNSAFE))!=0 );
11152eeca204Sdrh if( ExprHasProperty(pExpr, EP_FromDDL) ){
11160dfa5255Sdrh if( (pDef->funcFlags & SQLITE_FUNC_DIRECT)!=0
11170dfa5255Sdrh || (pParse->db->flags & SQLITE_TrustedSchema)==0
11180dfa5255Sdrh ){
11190dfa5255Sdrh /* Functions prohibited in triggers and views if:
11200dfa5255Sdrh ** (1) tagged with SQLITE_DIRECTONLY
11210dfa5255Sdrh ** (2) not tagged with SQLITE_INNOCUOUS (which means it
11220dfa5255Sdrh ** is tagged with SQLITE_FUNC_UNSAFE) and
11230dfa5255Sdrh ** SQLITE_DBCONFIG_TRUSTED_SCHEMA is off (meaning
11240dfa5255Sdrh ** that the schema is possibly tainted).
11250dfa5255Sdrh */
112662fc069eSdrh sqlite3ErrorMsg(pParse, "unsafe use of %#T()", pExpr);
11270dfa5255Sdrh }
11280dfa5255Sdrh }
11290dfa5255Sdrh }
11300dfa5255Sdrh
11310dfa5255Sdrh /*
1132fa6bc000Sdrh ** Assign a variable number to an expression that encodes a wildcard
1133fa6bc000Sdrh ** in the original SQL statement.
1134fa6bc000Sdrh **
1135fa6bc000Sdrh ** Wildcards consisting of a single "?" are assigned the next sequential
1136fa6bc000Sdrh ** variable number.
1137fa6bc000Sdrh **
1138fa6bc000Sdrh ** Wildcards of the form "?nnn" are assigned the number "nnn". We make
11399bf755ccSdrh ** sure "nnn" is not too big to avoid a denial of service attack when
1140fa6bc000Sdrh ** the SQL statement comes from an external source.
1141fa6bc000Sdrh **
114251f49f17Sdrh ** Wildcards of the form ":aaa", "@aaa", or "$aaa" are assigned the same number
1143fa6bc000Sdrh ** as the previous instance of the same wildcard. Or if this is the first
114460ec914cSpeter.d.reid ** instance of the wildcard, the next sequential variable number is
1145fa6bc000Sdrh ** assigned.
1146fa6bc000Sdrh */
sqlite3ExprAssignVarNumber(Parse * pParse,Expr * pExpr,u32 n)1147de25a88cSdrh void sqlite3ExprAssignVarNumber(Parse *pParse, Expr *pExpr, u32 n){
114817435752Sdrh sqlite3 *db = pParse->db;
1149b7916a78Sdrh const char *z;
1150f326d66dSdrh ynVar x;
115117435752Sdrh
1152fa6bc000Sdrh if( pExpr==0 ) return;
1153c5cd1249Sdrh assert( !ExprHasProperty(pExpr, EP_IntValue|EP_Reduced|EP_TokenOnly) );
115433e619fcSdrh z = pExpr->u.zToken;
1155b7916a78Sdrh assert( z!=0 );
1156b7916a78Sdrh assert( z[0]!=0 );
1157b1ed717fSmistachkin assert( n==(u32)sqlite3Strlen30(z) );
1158b7916a78Sdrh if( z[1]==0 ){
1159fa6bc000Sdrh /* Wildcard of the form "?". Assign the next variable number */
1160b7916a78Sdrh assert( z[0]=='?' );
1161f326d66dSdrh x = (ynVar)(++pParse->nVar);
1162124c0b49Sdrh }else{
1163f326d66dSdrh int doAdd = 0;
1164124c0b49Sdrh if( z[0]=='?' ){
1165fa6bc000Sdrh /* Wildcard of the form "?nnn". Convert "nnn" to an integer and
1166fa6bc000Sdrh ** use it as the variable number */
1167c8d735aeSdan i64 i;
116818814dfbSdrh int bOk;
116918814dfbSdrh if( n==2 ){ /*OPTIMIZATION-IF-TRUE*/
117018814dfbSdrh i = z[1]-'0'; /* The common case of ?N for a single digit N */
117118814dfbSdrh bOk = 1;
117218814dfbSdrh }else{
117318814dfbSdrh bOk = 0==sqlite3Atoi64(&z[1], &i, n-1, SQLITE_UTF8);
117418814dfbSdrh }
1175c5499befSdrh testcase( i==0 );
1176c5499befSdrh testcase( i==1 );
1177c5499befSdrh testcase( i==db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER]-1 );
1178c5499befSdrh testcase( i==db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER] );
1179c8d735aeSdan if( bOk==0 || i<1 || i>db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER] ){
1180fa6bc000Sdrh sqlite3ErrorMsg(pParse, "variable number must be between ?1 and ?%d",
1181bb4957f8Sdrh db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER]);
118262fc069eSdrh sqlite3RecordErrorOffsetOfExpr(pParse->db, pExpr);
1183c9b39288Sdrh return;
1184fa6bc000Sdrh }
11858e74e7baSdrh x = (ynVar)i;
1186f326d66dSdrh if( x>pParse->nVar ){
1187f326d66dSdrh pParse->nVar = (int)x;
1188f326d66dSdrh doAdd = 1;
1189f326d66dSdrh }else if( sqlite3VListNumToName(pParse->pVList, x)==0 ){
1190f326d66dSdrh doAdd = 1;
1191fa6bc000Sdrh }
1192fa6bc000Sdrh }else{
119351f49f17Sdrh /* Wildcards like ":aaa", "$aaa" or "@aaa". Reuse the same variable
1194fa6bc000Sdrh ** number as the prior appearance of the same name, or if the name
1195fa6bc000Sdrh ** has never appeared before, reuse the same variable number
1196fa6bc000Sdrh */
11979bf755ccSdrh x = (ynVar)sqlite3VListNameToNum(pParse->pVList, z, n);
11989bf755ccSdrh if( x==0 ){
11999bf755ccSdrh x = (ynVar)(++pParse->nVar);
1200f326d66dSdrh doAdd = 1;
1201f326d66dSdrh }
1202f326d66dSdrh }
1203f326d66dSdrh if( doAdd ){
12049bf755ccSdrh pParse->pVList = sqlite3VListAdd(db, pParse->pVList, z, n, x);
1205fa6bc000Sdrh }
1206fa6bc000Sdrh }
1207c9b39288Sdrh pExpr->iColumn = x;
1208f326d66dSdrh if( x>db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER] ){
1209832b2664Sdanielk1977 sqlite3ErrorMsg(pParse, "too many SQL variables");
121062fc069eSdrh sqlite3RecordErrorOffsetOfExpr(pParse->db, pExpr);
1211832b2664Sdanielk1977 }
1212fa6bc000Sdrh }
1213fa6bc000Sdrh
1214fa6bc000Sdrh /*
1215f6963f99Sdan ** Recursively delete an expression tree.
1216a2e00042Sdrh */
sqlite3ExprDeleteNN(sqlite3 * db,Expr * p)12174f0010b1Sdrh static SQLITE_NOINLINE void sqlite3ExprDeleteNN(sqlite3 *db, Expr *p){
12184f0010b1Sdrh assert( p!=0 );
121941ce47c4Sdrh assert( db!=0 );
1220477572b9Sdrh assert( !ExprUseUValue(p) || p->u.iValue>=0 );
1221477572b9Sdrh assert( !ExprUseYWin(p) || !ExprUseYSub(p) );
1222477572b9Sdrh assert( !ExprUseYWin(p) || p->y.pWin!=0 || db->mallocFailed );
1223477572b9Sdrh assert( p->op!=TK_FUNCTION || !ExprUseYSub(p) );
1224209bc522Sdrh #ifdef SQLITE_DEBUG
1225209bc522Sdrh if( ExprHasProperty(p, EP_Leaf) && !ExprHasProperty(p, EP_TokenOnly) ){
1226209bc522Sdrh assert( p->pLeft==0 );
1227209bc522Sdrh assert( p->pRight==0 );
1228a4eeccdfSdrh assert( !ExprUseXSelect(p) || p->x.pSelect==0 );
1229a4eeccdfSdrh assert( !ExprUseXList(p) || p->x.pList==0 );
1230209bc522Sdrh }
1231209bc522Sdrh #endif
1232209bc522Sdrh if( !ExprHasProperty(p, (EP_TokenOnly|EP_Leaf)) ){
1233c5cd1249Sdrh /* The Expr.x union is never used at the same time as Expr.pRight */
1234a4eeccdfSdrh assert( (ExprUseXList(p) && p->x.pList==0) || p->pRight==0 );
12354910a76dSdrh if( p->pLeft && p->op!=TK_SELECT_COLUMN ) sqlite3ExprDeleteNN(db, p->pLeft);
1236d1086679Sdrh if( p->pRight ){
12374f9adee2Sdan assert( !ExprHasProperty(p, EP_WinFunc) );
1238d1086679Sdrh sqlite3ExprDeleteNN(db, p->pRight);
1239a4eeccdfSdrh }else if( ExprUseXSelect(p) ){
12404f9adee2Sdan assert( !ExprHasProperty(p, EP_WinFunc) );
12416ab3a2ecSdanielk1977 sqlite3SelectDelete(db, p->x.pSelect);
12426ab3a2ecSdanielk1977 }else{
12436ab3a2ecSdanielk1977 sqlite3ExprListDelete(db, p->x.pList);
12446ba7ab0dSdan #ifndef SQLITE_OMIT_WINDOWFUNC
1245eda079cdSdrh if( ExprHasProperty(p, EP_WinFunc) ){
1246eda079cdSdrh sqlite3WindowDelete(db, p->y.pWin);
124786fb6e17Sdan }
12486ba7ab0dSdan #endif
12496ab3a2ecSdanielk1977 }
12508117f113Sdan }
125133e619fcSdrh if( !ExprHasProperty(p, EP_Static) ){
125241ce47c4Sdrh sqlite3DbNNFreeNN(db, p);
1253a2e00042Sdrh }
125433e619fcSdrh }
sqlite3ExprDelete(sqlite3 * db,Expr * p)12554f0010b1Sdrh void sqlite3ExprDelete(sqlite3 *db, Expr *p){
12564f0010b1Sdrh if( p ) sqlite3ExprDeleteNN(db, p);
12574f0010b1Sdrh }
1258a2e00042Sdrh
1259d44f8b23Sdrh /*
1260d44f8b23Sdrh ** Clear both elements of an OnOrUsing object
1261d44f8b23Sdrh */
sqlite3ClearOnOrUsing(sqlite3 * db,OnOrUsing * p)1262d44f8b23Sdrh void sqlite3ClearOnOrUsing(sqlite3 *db, OnOrUsing *p){
1263d44f8b23Sdrh if( p==0 ){
1264d44f8b23Sdrh /* Nothing to clear */
1265d44f8b23Sdrh }else if( p->pOn ){
1266d44f8b23Sdrh sqlite3ExprDeleteNN(db, p->pOn);
1267d44f8b23Sdrh }else if( p->pUsing ){
1268d44f8b23Sdrh sqlite3IdListDelete(db, p->pUsing);
1269d44f8b23Sdrh }
1270d44f8b23Sdrh }
1271b3ad4e61Sdrh
1272b3ad4e61Sdrh /*
1273b3ad4e61Sdrh ** Arrange to cause pExpr to be deleted when the pParse is deleted.
1274b3ad4e61Sdrh ** This is similar to sqlite3ExprDelete() except that the delete is
1275b3ad4e61Sdrh ** deferred untilthe pParse is deleted.
1276b3ad4e61Sdrh **
1277b3ad4e61Sdrh ** The pExpr might be deleted immediately on an OOM error.
1278b3ad4e61Sdrh **
1279b3ad4e61Sdrh ** The deferred delete is (currently) implemented by adding the
1280b3ad4e61Sdrh ** pExpr to the pParse->pConstExpr list with a register number of 0.
1281b3ad4e61Sdrh */
sqlite3ExprDeferredDelete(Parse * pParse,Expr * pExpr)1282b3ad4e61Sdrh void sqlite3ExprDeferredDelete(Parse *pParse, Expr *pExpr){
1283ee6b80c3Sdrh sqlite3ParserAddCleanup(pParse,
1284ee6b80c3Sdrh (void(*)(sqlite3*,void*))sqlite3ExprDelete,
1285ee6b80c3Sdrh pExpr);
1286b3ad4e61Sdrh }
1287b3ad4e61Sdrh
12888e34e406Sdrh /* Invoke sqlite3RenameExprUnmap() and sqlite3ExprDelete() on the
12898e34e406Sdrh ** expression.
12908e34e406Sdrh */
sqlite3ExprUnmapAndDelete(Parse * pParse,Expr * p)12918e34e406Sdrh void sqlite3ExprUnmapAndDelete(Parse *pParse, Expr *p){
12928e34e406Sdrh if( p ){
12938e34e406Sdrh if( IN_RENAME_OBJECT ){
12948e34e406Sdrh sqlite3RenameExprUnmap(pParse, p);
12958e34e406Sdrh }
12968e34e406Sdrh sqlite3ExprDeleteNN(pParse->db, p);
12978e34e406Sdrh }
12988e34e406Sdrh }
12998e34e406Sdrh
1300d2687b77Sdrh /*
13016ab3a2ecSdanielk1977 ** Return the number of bytes allocated for the expression structure
13026ab3a2ecSdanielk1977 ** passed as the first argument. This is always one of EXPR_FULLSIZE,
13036ab3a2ecSdanielk1977 ** EXPR_REDUCEDSIZE or EXPR_TOKENONLYSIZE.
13046ab3a2ecSdanielk1977 */
exprStructSize(const Expr * p)1305b6dad520Sdrh static int exprStructSize(const Expr *p){
13066ab3a2ecSdanielk1977 if( ExprHasProperty(p, EP_TokenOnly) ) return EXPR_TOKENONLYSIZE;
13076ab3a2ecSdanielk1977 if( ExprHasProperty(p, EP_Reduced) ) return EXPR_REDUCEDSIZE;
13086ab3a2ecSdanielk1977 return EXPR_FULLSIZE;
13096ab3a2ecSdanielk1977 }
13106ab3a2ecSdanielk1977
13116ab3a2ecSdanielk1977 /*
131233e619fcSdrh ** The dupedExpr*Size() routines each return the number of bytes required
131333e619fcSdrh ** to store a copy of an expression or expression tree. They differ in
131433e619fcSdrh ** how much of the tree is measured.
131533e619fcSdrh **
131633e619fcSdrh ** dupedExprStructSize() Size of only the Expr structure
131733e619fcSdrh ** dupedExprNodeSize() Size of Expr + space for token
131833e619fcSdrh ** dupedExprSize() Expr + token + subtree components
131933e619fcSdrh **
132033e619fcSdrh ***************************************************************************
132133e619fcSdrh **
132233e619fcSdrh ** The dupedExprStructSize() function returns two values OR-ed together:
132333e619fcSdrh ** (1) the space required for a copy of the Expr structure only and
132433e619fcSdrh ** (2) the EP_xxx flags that indicate what the structure size should be.
132533e619fcSdrh ** The return values is always one of:
132633e619fcSdrh **
132733e619fcSdrh ** EXPR_FULLSIZE
132833e619fcSdrh ** EXPR_REDUCEDSIZE | EP_Reduced
132933e619fcSdrh ** EXPR_TOKENONLYSIZE | EP_TokenOnly
133033e619fcSdrh **
133133e619fcSdrh ** The size of the structure can be found by masking the return value
133233e619fcSdrh ** of this routine with 0xfff. The flags can be found by masking the
133333e619fcSdrh ** return value with EP_Reduced|EP_TokenOnly.
133433e619fcSdrh **
133533e619fcSdrh ** Note that with flags==EXPRDUP_REDUCE, this routines works on full-size
133633e619fcSdrh ** (unreduced) Expr objects as they or originally constructed by the parser.
133733e619fcSdrh ** During expression analysis, extra information is computed and moved into
1338c95f38d4Sdan ** later parts of the Expr object and that extra information might get chopped
133933e619fcSdrh ** off if the expression is reduced. Note also that it does not work to
134060ec914cSpeter.d.reid ** make an EXPRDUP_REDUCE copy of a reduced expression. It is only legal
134133e619fcSdrh ** to reduce a pristine expression tree from the parser. The implementation
134233e619fcSdrh ** of dupedExprStructSize() contain multiple assert() statements that attempt
134333e619fcSdrh ** to enforce this constraint.
13446ab3a2ecSdanielk1977 */
dupedExprStructSize(const Expr * p,int flags)1345b6dad520Sdrh static int dupedExprStructSize(const Expr *p, int flags){
13466ab3a2ecSdanielk1977 int nSize;
134733e619fcSdrh assert( flags==EXPRDUP_REDUCE || flags==0 ); /* Only one flag value allowed */
1348aecd8021Sdrh assert( EXPR_FULLSIZE<=0xfff );
1349aecd8021Sdrh assert( (0xfff & (EP_Reduced|EP_TokenOnly))==0 );
135067a9b8edSdan if( 0==flags || p->op==TK_SELECT_COLUMN
135167a9b8edSdan #ifndef SQLITE_OMIT_WINDOWFUNC
1352eda079cdSdrh || ExprHasProperty(p, EP_WinFunc)
135367a9b8edSdan #endif
135467a9b8edSdan ){
13556ab3a2ecSdanielk1977 nSize = EXPR_FULLSIZE;
13566ab3a2ecSdanielk1977 }else{
1357c5cd1249Sdrh assert( !ExprHasProperty(p, EP_TokenOnly|EP_Reduced) );
135867a99dbeSdrh assert( !ExprHasProperty(p, EP_OuterON) );
1359e7375bfaSdrh assert( !ExprHasVVAProperty(p, EP_NoReduce) );
1360aecd8021Sdrh if( p->pLeft || p->x.pList ){
136133e619fcSdrh nSize = EXPR_REDUCEDSIZE | EP_Reduced;
136233e619fcSdrh }else{
1363aecd8021Sdrh assert( p->pRight==0 );
136433e619fcSdrh nSize = EXPR_TOKENONLYSIZE | EP_TokenOnly;
136533e619fcSdrh }
13666ab3a2ecSdanielk1977 }
13676ab3a2ecSdanielk1977 return nSize;
13686ab3a2ecSdanielk1977 }
13696ab3a2ecSdanielk1977
13706ab3a2ecSdanielk1977 /*
137133e619fcSdrh ** This function returns the space in bytes required to store the copy
137233e619fcSdrh ** of the Expr structure and a copy of the Expr.u.zToken string (if that
137333e619fcSdrh ** string is defined.)
13746ab3a2ecSdanielk1977 */
dupedExprNodeSize(const Expr * p,int flags)1375b6dad520Sdrh static int dupedExprNodeSize(const Expr *p, int flags){
137633e619fcSdrh int nByte = dupedExprStructSize(p, flags) & 0xfff;
137733e619fcSdrh if( !ExprHasProperty(p, EP_IntValue) && p->u.zToken ){
13787301e774Sdrh nByte += sqlite3Strlen30NN(p->u.zToken)+1;
13796ab3a2ecSdanielk1977 }
1380bc73971dSdanielk1977 return ROUND8(nByte);
13816ab3a2ecSdanielk1977 }
13826ab3a2ecSdanielk1977
13836ab3a2ecSdanielk1977 /*
13846ab3a2ecSdanielk1977 ** Return the number of bytes required to create a duplicate of the
13856ab3a2ecSdanielk1977 ** expression passed as the first argument. The second argument is a
13866ab3a2ecSdanielk1977 ** mask containing EXPRDUP_XXX flags.
13876ab3a2ecSdanielk1977 **
13886ab3a2ecSdanielk1977 ** The value returned includes space to create a copy of the Expr struct
138933e619fcSdrh ** itself and the buffer referred to by Expr.u.zToken, if any.
13906ab3a2ecSdanielk1977 **
13916ab3a2ecSdanielk1977 ** If the EXPRDUP_REDUCE flag is set, then the return value includes
13926ab3a2ecSdanielk1977 ** space to duplicate all Expr nodes in the tree formed by Expr.pLeft
13936ab3a2ecSdanielk1977 ** and Expr.pRight variables (but not for any structures pointed to or
13946ab3a2ecSdanielk1977 ** descended from the Expr.x.pList or Expr.x.pSelect variables).
13956ab3a2ecSdanielk1977 */
dupedExprSize(const Expr * p,int flags)1396b6dad520Sdrh static int dupedExprSize(const Expr *p, int flags){
13976ab3a2ecSdanielk1977 int nByte = 0;
13986ab3a2ecSdanielk1977 if( p ){
13996ab3a2ecSdanielk1977 nByte = dupedExprNodeSize(p, flags);
14006ab3a2ecSdanielk1977 if( flags&EXPRDUP_REDUCE ){
1401b7916a78Sdrh nByte += dupedExprSize(p->pLeft, flags) + dupedExprSize(p->pRight, flags);
14026ab3a2ecSdanielk1977 }
14036ab3a2ecSdanielk1977 }
14046ab3a2ecSdanielk1977 return nByte;
14056ab3a2ecSdanielk1977 }
14066ab3a2ecSdanielk1977
14076ab3a2ecSdanielk1977 /*
14086ab3a2ecSdanielk1977 ** This function is similar to sqlite3ExprDup(), except that if pzBuffer
14096ab3a2ecSdanielk1977 ** is not NULL then *pzBuffer is assumed to point to a buffer large enough
141033e619fcSdrh ** to store the copy of expression p, the copies of p->u.zToken
14116ab3a2ecSdanielk1977 ** (if applicable), and the copies of the p->pLeft and p->pRight expressions,
141260ec914cSpeter.d.reid ** if any. Before returning, *pzBuffer is set to the first byte past the
14136ab3a2ecSdanielk1977 ** portion of the buffer copied into by this function.
14146ab3a2ecSdanielk1977 */
exprDup(sqlite3 * db,const Expr * p,int dupFlags,u8 ** pzBuffer)1415b6dad520Sdrh static Expr *exprDup(sqlite3 *db, const Expr *p, int dupFlags, u8 **pzBuffer){
14163c19469cSdrh Expr *pNew; /* Value to return */
14173c19469cSdrh u8 *zAlloc; /* Memory space from which to build Expr object */
14183c19469cSdrh u32 staticFlag; /* EP_Static if space not obtained from malloc */
14196ab3a2ecSdanielk1977
14203c19469cSdrh assert( db!=0 );
14213c19469cSdrh assert( p );
14223c19469cSdrh assert( dupFlags==0 || dupFlags==EXPRDUP_REDUCE );
14233c19469cSdrh assert( pzBuffer==0 || dupFlags==EXPRDUP_REDUCE );
14246ab3a2ecSdanielk1977
14256ab3a2ecSdanielk1977 /* Figure out where to write the new Expr structure. */
14266ab3a2ecSdanielk1977 if( pzBuffer ){
14276ab3a2ecSdanielk1977 zAlloc = *pzBuffer;
142833e619fcSdrh staticFlag = EP_Static;
14293c6edc8aSdrh assert( zAlloc!=0 );
14306ab3a2ecSdanielk1977 }else{
14313c19469cSdrh zAlloc = sqlite3DbMallocRawNN(db, dupedExprSize(p, dupFlags));
14323c19469cSdrh staticFlag = 0;
14336ab3a2ecSdanielk1977 }
14346ab3a2ecSdanielk1977 pNew = (Expr *)zAlloc;
14356ab3a2ecSdanielk1977
14366ab3a2ecSdanielk1977 if( pNew ){
14376ab3a2ecSdanielk1977 /* Set nNewSize to the size allocated for the structure pointed to
14386ab3a2ecSdanielk1977 ** by pNew. This is either EXPR_FULLSIZE, EXPR_REDUCEDSIZE or
14396ab3a2ecSdanielk1977 ** EXPR_TOKENONLYSIZE. nToken is set to the number of bytes consumed
144033e619fcSdrh ** by the copy of the p->u.zToken string (if any).
14416ab3a2ecSdanielk1977 */
14423c19469cSdrh const unsigned nStructSize = dupedExprStructSize(p, dupFlags);
144333e619fcSdrh const int nNewSize = nStructSize & 0xfff;
144433e619fcSdrh int nToken;
144533e619fcSdrh if( !ExprHasProperty(p, EP_IntValue) && p->u.zToken ){
144633e619fcSdrh nToken = sqlite3Strlen30(p->u.zToken) + 1;
144733e619fcSdrh }else{
144833e619fcSdrh nToken = 0;
144933e619fcSdrh }
14503c19469cSdrh if( dupFlags ){
14516ab3a2ecSdanielk1977 assert( ExprHasProperty(p, EP_Reduced)==0 );
14526ab3a2ecSdanielk1977 memcpy(zAlloc, p, nNewSize);
14536ab3a2ecSdanielk1977 }else{
14543e6a1411Sdan u32 nSize = (u32)exprStructSize(p);
14556ab3a2ecSdanielk1977 memcpy(zAlloc, p, nSize);
145672ea29d7Sdrh if( nSize<EXPR_FULLSIZE ){
14576ab3a2ecSdanielk1977 memset(&zAlloc[nSize], 0, EXPR_FULLSIZE-nSize);
14586ab3a2ecSdanielk1977 }
145972ea29d7Sdrh }
14606ab3a2ecSdanielk1977
146133e619fcSdrh /* Set the EP_Reduced, EP_TokenOnly, and EP_Static flags appropriately. */
1462825fa17bSdrh pNew->flags &= ~(EP_Reduced|EP_TokenOnly|EP_Static);
146333e619fcSdrh pNew->flags |= nStructSize & (EP_Reduced|EP_TokenOnly);
146433e619fcSdrh pNew->flags |= staticFlag;
1465e7375bfaSdrh ExprClearVVAProperties(pNew);
1466e7375bfaSdrh if( dupFlags ){
1467e7375bfaSdrh ExprSetVVAProperty(pNew, EP_Immutable);
1468e7375bfaSdrh }
14696ab3a2ecSdanielk1977
147033e619fcSdrh /* Copy the p->u.zToken string, if any. */
14716ab3a2ecSdanielk1977 if( nToken ){
147233e619fcSdrh char *zToken = pNew->u.zToken = (char*)&zAlloc[nNewSize];
147333e619fcSdrh memcpy(zToken, p->u.zToken, nToken);
14746ab3a2ecSdanielk1977 }
14756ab3a2ecSdanielk1977
1476209bc522Sdrh if( 0==((p->flags|pNew->flags) & (EP_TokenOnly|EP_Leaf)) ){
14776ab3a2ecSdanielk1977 /* Fill in the pNew->x.pSelect or pNew->x.pList member. */
1478a4eeccdfSdrh if( ExprUseXSelect(p) ){
14793c19469cSdrh pNew->x.pSelect = sqlite3SelectDup(db, p->x.pSelect, dupFlags);
14806ab3a2ecSdanielk1977 }else{
14813c19469cSdrh pNew->x.pList = sqlite3ExprListDup(db, p->x.pList, dupFlags);
14826ab3a2ecSdanielk1977 }
14836ab3a2ecSdanielk1977 }
14846ab3a2ecSdanielk1977
14856ab3a2ecSdanielk1977 /* Fill in pNew->pLeft and pNew->pRight. */
14864f9adee2Sdan if( ExprHasProperty(pNew, EP_Reduced|EP_TokenOnly|EP_WinFunc) ){
14873c19469cSdrh zAlloc += dupedExprNodeSize(p, dupFlags);
1488209bc522Sdrh if( !ExprHasProperty(pNew, EP_TokenOnly|EP_Leaf) ){
14893c19469cSdrh pNew->pLeft = p->pLeft ?
14903c19469cSdrh exprDup(db, p->pLeft, EXPRDUP_REDUCE, &zAlloc) : 0;
14913c19469cSdrh pNew->pRight = p->pRight ?
14923c19469cSdrh exprDup(db, p->pRight, EXPRDUP_REDUCE, &zAlloc) : 0;
14936ab3a2ecSdanielk1977 }
149467a9b8edSdan #ifndef SQLITE_OMIT_WINDOWFUNC
1495eda079cdSdrh if( ExprHasProperty(p, EP_WinFunc) ){
1496eda079cdSdrh pNew->y.pWin = sqlite3WindowDup(db, pNew, p->y.pWin);
1497eda079cdSdrh assert( ExprHasProperty(pNew, EP_WinFunc) );
1498e2f781b9Sdan }
149967a9b8edSdan #endif /* SQLITE_OMIT_WINDOWFUNC */
150053988068Sdrh if( pzBuffer ){
150153988068Sdrh *pzBuffer = zAlloc;
150253988068Sdrh }
150353988068Sdrh }else{
1504209bc522Sdrh if( !ExprHasProperty(p, EP_TokenOnly|EP_Leaf) ){
15059854260bSdrh if( pNew->op==TK_SELECT_COLUMN ){
15069854260bSdrh pNew->pLeft = p->pLeft;
15075cc9daf8Sdrh assert( p->pRight==0 || p->pRight==p->pLeft
15085cc9daf8Sdrh || ExprHasProperty(p->pLeft, EP_Subquery) );
15099854260bSdrh }else{
15106ab3a2ecSdanielk1977 pNew->pLeft = sqlite3ExprDup(db, p->pLeft, 0);
15119854260bSdrh }
15126ab3a2ecSdanielk1977 pNew->pRight = sqlite3ExprDup(db, p->pRight, 0);
15136ab3a2ecSdanielk1977 }
15146ab3a2ecSdanielk1977 }
15156ab3a2ecSdanielk1977 }
15166ab3a2ecSdanielk1977 return pNew;
15176ab3a2ecSdanielk1977 }
15186ab3a2ecSdanielk1977
15196ab3a2ecSdanielk1977 /*
1520bfe31e7fSdan ** Create and return a deep copy of the object passed as the second
1521bfe31e7fSdan ** argument. If an OOM condition is encountered, NULL is returned
1522bfe31e7fSdan ** and the db->mallocFailed flag set.
1523bfe31e7fSdan */
1524eede6a53Sdan #ifndef SQLITE_OMIT_CTE
sqlite3WithDup(sqlite3 * db,With * p)152526d61e5aSdan With *sqlite3WithDup(sqlite3 *db, With *p){
15264e9119d9Sdan With *pRet = 0;
15274e9119d9Sdan if( p ){
1528d4de9f7bSdrh sqlite3_int64 nByte = sizeof(*p) + sizeof(p->a[0]) * (p->nCte-1);
15294e9119d9Sdan pRet = sqlite3DbMallocZero(db, nByte);
15304e9119d9Sdan if( pRet ){
15314e9119d9Sdan int i;
15324e9119d9Sdan pRet->nCte = p->nCte;
15334e9119d9Sdan for(i=0; i<p->nCte; i++){
15344e9119d9Sdan pRet->a[i].pSelect = sqlite3SelectDup(db, p->a[i].pSelect, 0);
15354e9119d9Sdan pRet->a[i].pCols = sqlite3ExprListDup(db, p->a[i].pCols, 0);
15364e9119d9Sdan pRet->a[i].zName = sqlite3DbStrDup(db, p->a[i].zName);
153767f70beaSdrh pRet->a[i].eM10d = p->a[i].eM10d;
15384e9119d9Sdan }
15394e9119d9Sdan }
15404e9119d9Sdan }
15414e9119d9Sdan return pRet;
15424e9119d9Sdan }
1543eede6a53Sdan #else
154426d61e5aSdan # define sqlite3WithDup(x,y) 0
1545eede6a53Sdan #endif
15464e9119d9Sdan
1547a8389975Sdrh #ifndef SQLITE_OMIT_WINDOWFUNC
1548a8389975Sdrh /*
1549a8389975Sdrh ** The gatherSelectWindows() procedure and its helper routine
1550a8389975Sdrh ** gatherSelectWindowsCallback() are used to scan all the expressions
1551a8389975Sdrh ** an a newly duplicated SELECT statement and gather all of the Window
1552a8389975Sdrh ** objects found there, assembling them onto the linked list at Select->pWin.
1553a8389975Sdrh */
gatherSelectWindowsCallback(Walker * pWalker,Expr * pExpr)1554a8389975Sdrh static int gatherSelectWindowsCallback(Walker *pWalker, Expr *pExpr){
15556ba7ab0dSdan if( pExpr->op==TK_FUNCTION && ExprHasProperty(pExpr, EP_WinFunc) ){
155675b0821eSdan Select *pSelect = pWalker->u.pSelect;
155775b0821eSdan Window *pWin = pExpr->y.pWin;
155875b0821eSdan assert( pWin );
15594f9adee2Sdan assert( IsWindowFunc(pExpr) );
1560e0ae3f69Sdan assert( pWin->ppThis==0 );
1561a3fcc000Sdan sqlite3WindowLink(pSelect, pWin);
1562a8389975Sdrh }
1563a8389975Sdrh return WRC_Continue;
1564a8389975Sdrh }
gatherSelectWindowsSelectCallback(Walker * pWalker,Select * p)1565a37b6a5eSdrh static int gatherSelectWindowsSelectCallback(Walker *pWalker, Select *p){
1566a37b6a5eSdrh return p==pWalker->u.pSelect ? WRC_Continue : WRC_Prune;
1567a37b6a5eSdrh }
gatherSelectWindows(Select * p)1568a8389975Sdrh static void gatherSelectWindows(Select *p){
1569a8389975Sdrh Walker w;
1570a8389975Sdrh w.xExprCallback = gatherSelectWindowsCallback;
1571a37b6a5eSdrh w.xSelectCallback = gatherSelectWindowsSelectCallback;
1572a37b6a5eSdrh w.xSelectCallback2 = 0;
15739c46c66cSdrh w.pParse = 0;
1574a8389975Sdrh w.u.pSelect = p;
1575a37b6a5eSdrh sqlite3WalkSelect(&w, p);
1576a8389975Sdrh }
1577a8389975Sdrh #endif
1578a8389975Sdrh
1579a8389975Sdrh
1580a76b5dfcSdrh /*
1581ff78bd2fSdrh ** The following group of routines make deep copies of expressions,
1582ff78bd2fSdrh ** expression lists, ID lists, and select statements. The copies can
1583ff78bd2fSdrh ** be deleted (by being passed to their respective ...Delete() routines)
1584ff78bd2fSdrh ** without effecting the originals.
1585ff78bd2fSdrh **
15864adee20fSdanielk1977 ** The expression list, ID, and source lists return by sqlite3ExprListDup(),
15874adee20fSdanielk1977 ** sqlite3IdListDup(), and sqlite3SrcListDup() can not be further expanded
1588ad3cab52Sdrh ** by subsequent calls to sqlite*ListAppend() routines.
1589ff78bd2fSdrh **
1590ad3cab52Sdrh ** Any tables that the SrcList might point to are not duplicated.
15916ab3a2ecSdanielk1977 **
1592b7916a78Sdrh ** The flags parameter contains a combination of the EXPRDUP_XXX flags.
15936ab3a2ecSdanielk1977 ** If the EXPRDUP_REDUCE flag is set, then the structure returned is a
15946ab3a2ecSdanielk1977 ** truncated version of the usual Expr structure that will be stored as
15956ab3a2ecSdanielk1977 ** part of the in-memory representation of the database schema.
1596ff78bd2fSdrh */
sqlite3ExprDup(sqlite3 * db,const Expr * p,int flags)1597b6dad520Sdrh Expr *sqlite3ExprDup(sqlite3 *db, const Expr *p, int flags){
159872ea29d7Sdrh assert( flags==0 || flags==EXPRDUP_REDUCE );
15993c19469cSdrh return p ? exprDup(db, p, flags, 0) : 0;
1600ff78bd2fSdrh }
sqlite3ExprListDup(sqlite3 * db,const ExprList * p,int flags)1601b6dad520Sdrh ExprList *sqlite3ExprListDup(sqlite3 *db, const ExprList *p, int flags){
1602ff78bd2fSdrh ExprList *pNew;
1603b6dad520Sdrh struct ExprList_item *pItem;
1604b6dad520Sdrh const struct ExprList_item *pOldItem;
1605ff78bd2fSdrh int i;
1606e46292a9Sdrh Expr *pPriorSelectColOld = 0;
1607e46292a9Sdrh Expr *pPriorSelectColNew = 0;
1608575fad65Sdrh assert( db!=0 );
1609ff78bd2fSdrh if( p==0 ) return 0;
161097258194Sdrh pNew = sqlite3DbMallocRawNN(db, sqlite3DbMallocSize(db, p));
1611ff78bd2fSdrh if( pNew==0 ) return 0;
1612a19543feSdrh pNew->nExpr = p->nExpr;
161350e43c50Sdrh pNew->nAlloc = p->nAlloc;
161443606175Sdrh pItem = pNew->a;
1615145716b3Sdrh pOldItem = p->a;
1616145716b3Sdrh for(i=0; i<p->nExpr; i++, pItem++, pOldItem++){
16176ab3a2ecSdanielk1977 Expr *pOldExpr = pOldItem->pExpr;
161847073f62Sdrh Expr *pNewExpr;
1619b5526ea6Sdrh pItem->pExpr = sqlite3ExprDup(db, pOldExpr, flags);
162047073f62Sdrh if( pOldExpr
162147073f62Sdrh && pOldExpr->op==TK_SELECT_COLUMN
162247073f62Sdrh && (pNewExpr = pItem->pExpr)!=0
162347073f62Sdrh ){
1624e46292a9Sdrh if( pNewExpr->pRight ){
1625e46292a9Sdrh pPriorSelectColOld = pOldExpr->pRight;
1626e46292a9Sdrh pPriorSelectColNew = pNewExpr->pRight;
1627e46292a9Sdrh pNewExpr->pLeft = pNewExpr->pRight;
1628b163748eSdrh }else{
1629e46292a9Sdrh if( pOldExpr->pLeft!=pPriorSelectColOld ){
1630e46292a9Sdrh pPriorSelectColOld = pOldExpr->pLeft;
1631e46292a9Sdrh pPriorSelectColNew = sqlite3ExprDup(db, pPriorSelectColOld, flags);
1632e46292a9Sdrh pNewExpr->pRight = pPriorSelectColNew;
1633e46292a9Sdrh }
1634e46292a9Sdrh pNewExpr->pLeft = pPriorSelectColNew;
163547073f62Sdrh }
163647073f62Sdrh }
163741cee668Sdrh pItem->zEName = sqlite3DbStrDup(db, pOldItem->zEName);
1638d88fd539Sdrh pItem->fg = pOldItem->fg;
1639d88fd539Sdrh pItem->fg.done = 0;
1640c2acc4e4Sdrh pItem->u = pOldItem->u;
1641ff78bd2fSdrh }
1642ff78bd2fSdrh return pNew;
1643ff78bd2fSdrh }
164493758c8dSdanielk1977
164593758c8dSdanielk1977 /*
164693758c8dSdanielk1977 ** If cursors, triggers, views and subqueries are all omitted from
164793758c8dSdanielk1977 ** the build, then none of the following routines, except for
164893758c8dSdanielk1977 ** sqlite3SelectDup(), can be called. sqlite3SelectDup() is sometimes
164993758c8dSdanielk1977 ** called with a NULL argument.
165093758c8dSdanielk1977 */
16516a67fe8eSdanielk1977 #if !defined(SQLITE_OMIT_VIEW) || !defined(SQLITE_OMIT_TRIGGER) \
16526a67fe8eSdanielk1977 || !defined(SQLITE_OMIT_SUBQUERY)
sqlite3SrcListDup(sqlite3 * db,const SrcList * p,int flags)1653b6dad520Sdrh SrcList *sqlite3SrcListDup(sqlite3 *db, const SrcList *p, int flags){
1654ad3cab52Sdrh SrcList *pNew;
1655ad3cab52Sdrh int i;
1656113088ecSdrh int nByte;
1657575fad65Sdrh assert( db!=0 );
1658ad3cab52Sdrh if( p==0 ) return 0;
1659113088ecSdrh nByte = sizeof(*p) + (p->nSrc>0 ? sizeof(p->a[0]) * (p->nSrc-1) : 0);
1660575fad65Sdrh pNew = sqlite3DbMallocRawNN(db, nByte );
1661ad3cab52Sdrh if( pNew==0 ) return 0;
16624305d103Sdrh pNew->nSrc = pNew->nAlloc = p->nSrc;
1663ad3cab52Sdrh for(i=0; i<p->nSrc; i++){
16647601294aSdrh SrcItem *pNewItem = &pNew->a[i];
1665b6dad520Sdrh const SrcItem *pOldItem = &p->a[i];
1666ed8a3bb1Sdrh Table *pTab;
166741fb5cd1Sdan pNewItem->pSchema = pOldItem->pSchema;
166817435752Sdrh pNewItem->zDatabase = sqlite3DbStrDup(db, pOldItem->zDatabase);
166917435752Sdrh pNewItem->zName = sqlite3DbStrDup(db, pOldItem->zName);
167017435752Sdrh pNewItem->zAlias = sqlite3DbStrDup(db, pOldItem->zAlias);
16718a48b9c0Sdrh pNewItem->fg = pOldItem->fg;
16724efc4754Sdrh pNewItem->iCursor = pOldItem->iCursor;
16735b6a9ed4Sdrh pNewItem->addrFillSub = pOldItem->addrFillSub;
16745b6a9ed4Sdrh pNewItem->regReturn = pOldItem->regReturn;
16758a48b9c0Sdrh if( pNewItem->fg.isIndexedBy ){
16768a48b9c0Sdrh pNewItem->u1.zIndexedBy = sqlite3DbStrDup(db, pOldItem->u1.zIndexedBy);
16778a48b9c0Sdrh }
1678a79e2a2dSdrh pNewItem->u2 = pOldItem->u2;
1679a79e2a2dSdrh if( pNewItem->fg.isCte ){
1680a79e2a2dSdrh pNewItem->u2.pCteUse->nUse++;
1681a79e2a2dSdrh }
16828a48b9c0Sdrh if( pNewItem->fg.isTabFunc ){
16838a48b9c0Sdrh pNewItem->u1.pFuncArg =
16848a48b9c0Sdrh sqlite3ExprListDup(db, pOldItem->u1.pFuncArg, flags);
16858a48b9c0Sdrh }
1686ed8a3bb1Sdrh pTab = pNewItem->pTab = pOldItem->pTab;
1687ed8a3bb1Sdrh if( pTab ){
168879df7782Sdrh pTab->nTabRef++;
1689a1cb183dSdanielk1977 }
16906ab3a2ecSdanielk1977 pNewItem->pSelect = sqlite3SelectDup(db, pOldItem->pSelect, flags);
1691d44f8b23Sdrh if( pOldItem->fg.isUsing ){
1692d44f8b23Sdrh assert( pNewItem->fg.isUsing );
1693d44f8b23Sdrh pNewItem->u3.pUsing = sqlite3IdListDup(db, pOldItem->u3.pUsing);
1694d44f8b23Sdrh }else{
1695d44f8b23Sdrh pNewItem->u3.pOn = sqlite3ExprDup(db, pOldItem->u3.pOn, flags);
1696d44f8b23Sdrh }
16976c18b6e0Sdanielk1977 pNewItem->colUsed = pOldItem->colUsed;
1698ad3cab52Sdrh }
1699ad3cab52Sdrh return pNew;
1700ad3cab52Sdrh }
sqlite3IdListDup(sqlite3 * db,const IdList * p)1701b6dad520Sdrh IdList *sqlite3IdListDup(sqlite3 *db, const IdList *p){
1702ff78bd2fSdrh IdList *pNew;
1703ff78bd2fSdrh int i;
1704575fad65Sdrh assert( db!=0 );
1705ff78bd2fSdrh if( p==0 ) return 0;
1706a99e3254Sdrh assert( p->eU4!=EU4_EXPR );
1707a99e3254Sdrh pNew = sqlite3DbMallocRawNN(db, sizeof(*pNew)+(p->nId-1)*sizeof(p->a[0]) );
1708ff78bd2fSdrh if( pNew==0 ) return 0;
17096c535158Sdrh pNew->nId = p->nId;
1710a99e3254Sdrh pNew->eU4 = p->eU4;
1711ff78bd2fSdrh for(i=0; i<p->nId; i++){
17124efc4754Sdrh struct IdList_item *pNewItem = &pNew->a[i];
1713a99e3254Sdrh const struct IdList_item *pOldItem = &p->a[i];
171417435752Sdrh pNewItem->zName = sqlite3DbStrDup(db, pOldItem->zName);
1715a99e3254Sdrh pNewItem->u4 = pOldItem->u4;
1716ff78bd2fSdrh }
1717ff78bd2fSdrh return pNew;
1718ff78bd2fSdrh }
sqlite3SelectDup(sqlite3 * db,const Select * pDup,int flags)1719b6dad520Sdrh Select *sqlite3SelectDup(sqlite3 *db, const Select *pDup, int flags){
1720a7466205Sdan Select *pRet = 0;
1721a7466205Sdan Select *pNext = 0;
1722a7466205Sdan Select **pp = &pRet;
1723b6dad520Sdrh const Select *p;
1724a7466205Sdan
1725575fad65Sdrh assert( db!=0 );
1726a7466205Sdan for(p=pDup; p; p=p->pPrior){
1727a7466205Sdan Select *pNew = sqlite3DbMallocRawNN(db, sizeof(*p) );
1728a7466205Sdan if( pNew==0 ) break;
1729b7916a78Sdrh pNew->pEList = sqlite3ExprListDup(db, p->pEList, flags);
17306ab3a2ecSdanielk1977 pNew->pSrc = sqlite3SrcListDup(db, p->pSrc, flags);
17316ab3a2ecSdanielk1977 pNew->pWhere = sqlite3ExprDup(db, p->pWhere, flags);
17326ab3a2ecSdanielk1977 pNew->pGroupBy = sqlite3ExprListDup(db, p->pGroupBy, flags);
17336ab3a2ecSdanielk1977 pNew->pHaving = sqlite3ExprDup(db, p->pHaving, flags);
17346ab3a2ecSdanielk1977 pNew->pOrderBy = sqlite3ExprListDup(db, p->pOrderBy, flags);
1735ff78bd2fSdrh pNew->op = p->op;
1736a7466205Sdan pNew->pNext = pNext;
1737a7466205Sdan pNew->pPrior = 0;
17386ab3a2ecSdanielk1977 pNew->pLimit = sqlite3ExprDup(db, p->pLimit, flags);
173992b01d53Sdrh pNew->iLimit = 0;
174092b01d53Sdrh pNew->iOffset = 0;
17417d10d5a6Sdrh pNew->selFlags = p->selFlags & ~SF_UsesEphemeral;
1742b9bb7c18Sdrh pNew->addrOpenEphm[0] = -1;
1743b9bb7c18Sdrh pNew->addrOpenEphm[1] = -1;
1744ec2da854Sdrh pNew->nSelectRow = p->nSelectRow;
174526d61e5aSdan pNew->pWith = sqlite3WithDup(db, p->pWith);
174667a9b8edSdan #ifndef SQLITE_OMIT_WINDOWFUNC
17472e362f97Sdan pNew->pWin = 0;
1748c95f38d4Sdan pNew->pWinDefn = sqlite3WindowListDup(db, p->pWinDefn);
17494780b9adSdan if( p->pWin && db->mallocFailed==0 ) gatherSelectWindows(pNew);
175067a9b8edSdan #endif
1751fef37760Sdrh pNew->selId = p->selId;
17529da977f1Sdrh if( db->mallocFailed ){
17539da977f1Sdrh /* Any prior OOM might have left the Select object incomplete.
17549da977f1Sdrh ** Delete the whole thing rather than allow an incomplete Select
17559da977f1Sdrh ** to be used by the code generator. */
17569da977f1Sdrh pNew->pNext = 0;
17579da977f1Sdrh sqlite3SelectDelete(db, pNew);
17589da977f1Sdrh break;
17599da977f1Sdrh }
1760a7466205Sdan *pp = pNew;
1761a7466205Sdan pp = &pNew->pPrior;
1762a7466205Sdan pNext = pNew;
1763a7466205Sdan }
1764a7466205Sdan
1765a7466205Sdan return pRet;
1766ff78bd2fSdrh }
176793758c8dSdanielk1977 #else
sqlite3SelectDup(sqlite3 * db,const Select * p,int flags)1768f76d2877Sdrh Select *sqlite3SelectDup(sqlite3 *db, const Select *p, int flags){
176993758c8dSdanielk1977 assert( p==0 );
177093758c8dSdanielk1977 return 0;
177193758c8dSdanielk1977 }
177293758c8dSdanielk1977 #endif
1773ff78bd2fSdrh
1774ff78bd2fSdrh
1775ff78bd2fSdrh /*
1776a76b5dfcSdrh ** Add a new element to the end of an expression list. If pList is
1777a76b5dfcSdrh ** initially NULL, then create a new expression list.
1778b7916a78Sdrh **
1779a19543feSdrh ** The pList argument must be either NULL or a pointer to an ExprList
1780a19543feSdrh ** obtained from a prior call to sqlite3ExprListAppend(). This routine
1781a19543feSdrh ** may not be used with an ExprList obtained from sqlite3ExprListDup().
1782a19543feSdrh ** Reason: This routine assumes that the number of slots in pList->a[]
1783a19543feSdrh ** is a power of two. That is true for sqlite3ExprListAppend() returns
1784a19543feSdrh ** but is not necessarily true from the return value of sqlite3ExprListDup().
1785a19543feSdrh **
1786b7916a78Sdrh ** If a memory allocation error occurs, the entire list is freed and
1787b7916a78Sdrh ** NULL is returned. If non-NULL is returned, then it is guaranteed
1788b7916a78Sdrh ** that the new entry was successfully appended.
1789a76b5dfcSdrh */
1790dabada60Slarrybr static const struct ExprList_item zeroItem = {0};
sqlite3ExprListAppendNew(sqlite3 * db,Expr * pExpr)179150e43c50Sdrh SQLITE_NOINLINE ExprList *sqlite3ExprListAppendNew(
179250e43c50Sdrh sqlite3 *db, /* Database handle. Used for memory allocation */
179350e43c50Sdrh Expr *pExpr /* Expression to be appended. Might be NULL */
179450e43c50Sdrh ){
179550e43c50Sdrh struct ExprList_item *pItem;
179650e43c50Sdrh ExprList *pList;
179750e43c50Sdrh
179850e43c50Sdrh pList = sqlite3DbMallocRawNN(db, sizeof(ExprList)+sizeof(pList->a[0])*4 );
179950e43c50Sdrh if( pList==0 ){
180050e43c50Sdrh sqlite3ExprDelete(db, pExpr);
180150e43c50Sdrh return 0;
180250e43c50Sdrh }
180350e43c50Sdrh pList->nAlloc = 4;
180450e43c50Sdrh pList->nExpr = 1;
180550e43c50Sdrh pItem = &pList->a[0];
180650e43c50Sdrh *pItem = zeroItem;
180750e43c50Sdrh pItem->pExpr = pExpr;
180850e43c50Sdrh return pList;
180950e43c50Sdrh }
sqlite3ExprListAppendGrow(sqlite3 * db,ExprList * pList,Expr * pExpr)181050e43c50Sdrh SQLITE_NOINLINE ExprList *sqlite3ExprListAppendGrow(
181150e43c50Sdrh sqlite3 *db, /* Database handle. Used for memory allocation */
181250e43c50Sdrh ExprList *pList, /* List to which to append. Might be NULL */
181350e43c50Sdrh Expr *pExpr /* Expression to be appended. Might be NULL */
181450e43c50Sdrh ){
181550e43c50Sdrh struct ExprList_item *pItem;
181650e43c50Sdrh ExprList *pNew;
181750e43c50Sdrh pList->nAlloc *= 2;
181850e43c50Sdrh pNew = sqlite3DbRealloc(db, pList,
181950e43c50Sdrh sizeof(*pList)+(pList->nAlloc-1)*sizeof(pList->a[0]));
182050e43c50Sdrh if( pNew==0 ){
182150e43c50Sdrh sqlite3ExprListDelete(db, pList);
182250e43c50Sdrh sqlite3ExprDelete(db, pExpr);
182350e43c50Sdrh return 0;
182450e43c50Sdrh }else{
182550e43c50Sdrh pList = pNew;
182650e43c50Sdrh }
182750e43c50Sdrh pItem = &pList->a[pList->nExpr++];
182850e43c50Sdrh *pItem = zeroItem;
182950e43c50Sdrh pItem->pExpr = pExpr;
183050e43c50Sdrh return pList;
183150e43c50Sdrh }
sqlite3ExprListAppend(Parse * pParse,ExprList * pList,Expr * pExpr)183217435752Sdrh ExprList *sqlite3ExprListAppend(
183317435752Sdrh Parse *pParse, /* Parsing context */
183417435752Sdrh ExprList *pList, /* List to which to append. Might be NULL */
1835b7916a78Sdrh Expr *pExpr /* Expression to be appended. Might be NULL */
183617435752Sdrh ){
183743606175Sdrh struct ExprList_item *pItem;
1838a76b5dfcSdrh if( pList==0 ){
183950e43c50Sdrh return sqlite3ExprListAppendNew(pParse->db,pExpr);
1840a76b5dfcSdrh }
184150e43c50Sdrh if( pList->nAlloc<pList->nExpr+1 ){
184250e43c50Sdrh return sqlite3ExprListAppendGrow(pParse->db,pList,pExpr);
1843a76b5dfcSdrh }
184443606175Sdrh pItem = &pList->a[pList->nExpr++];
184550e43c50Sdrh *pItem = zeroItem;
1846e94ddc9eSdanielk1977 pItem->pExpr = pExpr;
1847a76b5dfcSdrh return pList;
1848a76b5dfcSdrh }
1849a76b5dfcSdrh
1850a76b5dfcSdrh /*
18518762ec19Sdrh ** pColumns and pExpr form a vector assignment which is part of the SET
18528762ec19Sdrh ** clause of an UPDATE statement. Like this:
1853a1251bc4Sdrh **
1854a1251bc4Sdrh ** (a,b,c) = (expr1,expr2,expr3)
1855a1251bc4Sdrh ** Or: (a,b,c) = (SELECT x,y,z FROM ....)
1856a1251bc4Sdrh **
1857a1251bc4Sdrh ** For each term of the vector assignment, append new entries to the
1858b67343d0Sdrh ** expression list pList. In the case of a subquery on the RHS, append
1859a1251bc4Sdrh ** TK_SELECT_COLUMN expressions.
1860a1251bc4Sdrh */
sqlite3ExprListAppendVector(Parse * pParse,ExprList * pList,IdList * pColumns,Expr * pExpr)1861a1251bc4Sdrh ExprList *sqlite3ExprListAppendVector(
1862a1251bc4Sdrh Parse *pParse, /* Parsing context */
1863a1251bc4Sdrh ExprList *pList, /* List to which to append. Might be NULL */
1864a1251bc4Sdrh IdList *pColumns, /* List of names of LHS of the assignment */
1865a1251bc4Sdrh Expr *pExpr /* Vector expression to be appended. Might be NULL */
1866a1251bc4Sdrh ){
1867a1251bc4Sdrh sqlite3 *db = pParse->db;
1868a1251bc4Sdrh int n;
1869a1251bc4Sdrh int i;
187066860af3Sdrh int iFirst = pList ? pList->nExpr : 0;
1871321e828dSdrh /* pColumns can only be NULL due to an OOM but an OOM will cause an
1872321e828dSdrh ** exit prior to this routine being invoked */
1873321e828dSdrh if( NEVER(pColumns==0) ) goto vector_append_error;
1874a1251bc4Sdrh if( pExpr==0 ) goto vector_append_error;
1875966e2911Sdrh
1876966e2911Sdrh /* If the RHS is a vector, then we can immediately check to see that
1877966e2911Sdrh ** the size of the RHS and LHS match. But if the RHS is a SELECT,
1878966e2911Sdrh ** wildcards ("*") in the result set of the SELECT must be expanded before
1879966e2911Sdrh ** we can do the size check, so defer the size check until code generation.
1880966e2911Sdrh */
1881966e2911Sdrh if( pExpr->op!=TK_SELECT && pColumns->nId!=(n=sqlite3ExprVectorSize(pExpr)) ){
1882a1251bc4Sdrh sqlite3ErrorMsg(pParse, "%d columns assigned %d values",
1883a1251bc4Sdrh pColumns->nId, n);
1884a1251bc4Sdrh goto vector_append_error;
1885a1251bc4Sdrh }
1886966e2911Sdrh
1887966e2911Sdrh for(i=0; i<pColumns->nId; i++){
188810f08270Sdrh Expr *pSubExpr = sqlite3ExprForVectorField(pParse, pExpr, i, pColumns->nId);
1889554a9dc7Sdrh assert( pSubExpr!=0 || db->mallocFailed );
1890554a9dc7Sdrh if( pSubExpr==0 ) continue;
1891a1251bc4Sdrh pList = sqlite3ExprListAppend(pParse, pList, pSubExpr);
1892a1251bc4Sdrh if( pList ){
189366860af3Sdrh assert( pList->nExpr==iFirst+i+1 );
189441cee668Sdrh pList->a[pList->nExpr-1].zEName = pColumns->a[i].zName;
1895a1251bc4Sdrh pColumns->a[i].zName = 0;
1896a1251bc4Sdrh }
1897a1251bc4Sdrh }
1898966e2911Sdrh
1899ffe28059Sdrh if( !db->mallocFailed && pExpr->op==TK_SELECT && ALWAYS(pList!=0) ){
1900966e2911Sdrh Expr *pFirst = pList->a[iFirst].pExpr;
1901f4dd26c5Sdrh assert( pFirst!=0 );
1902966e2911Sdrh assert( pFirst->op==TK_SELECT_COLUMN );
1903966e2911Sdrh
1904966e2911Sdrh /* Store the SELECT statement in pRight so it will be deleted when
1905966e2911Sdrh ** sqlite3ExprListDelete() is called */
1906966e2911Sdrh pFirst->pRight = pExpr;
1907a1251bc4Sdrh pExpr = 0;
1908966e2911Sdrh
1909966e2911Sdrh /* Remember the size of the LHS in iTable so that we can check that
1910966e2911Sdrh ** the RHS and LHS sizes match during code generation. */
1911966e2911Sdrh pFirst->iTable = pColumns->nId;
1912a1251bc4Sdrh }
1913a1251bc4Sdrh
1914a1251bc4Sdrh vector_append_error:
19158e34e406Sdrh sqlite3ExprUnmapAndDelete(pParse, pExpr);
1916a1251bc4Sdrh sqlite3IdListDelete(db, pColumns);
1917a1251bc4Sdrh return pList;
1918a1251bc4Sdrh }
1919a1251bc4Sdrh
1920a1251bc4Sdrh /*
1921bc622bc0Sdrh ** Set the sort order for the last element on the given ExprList.
1922bc622bc0Sdrh */
sqlite3ExprListSetSortOrder(ExprList * p,int iSortOrder,int eNulls)19236e11892dSdan void sqlite3ExprListSetSortOrder(ExprList *p, int iSortOrder, int eNulls){
19249105fd51Sdan struct ExprList_item *pItem;
1925bc622bc0Sdrh if( p==0 ) return;
1926bc622bc0Sdrh assert( p->nExpr>0 );
19276e11892dSdan
19286e11892dSdan assert( SQLITE_SO_UNDEFINED<0 && SQLITE_SO_ASC==0 && SQLITE_SO_DESC>0 );
19296e11892dSdan assert( iSortOrder==SQLITE_SO_UNDEFINED
19306e11892dSdan || iSortOrder==SQLITE_SO_ASC
19316e11892dSdan || iSortOrder==SQLITE_SO_DESC
19326e11892dSdan );
19336e11892dSdan assert( eNulls==SQLITE_SO_UNDEFINED
19346e11892dSdan || eNulls==SQLITE_SO_ASC
19356e11892dSdan || eNulls==SQLITE_SO_DESC
19366e11892dSdan );
19376e11892dSdan
19389105fd51Sdan pItem = &p->a[p->nExpr-1];
1939d88fd539Sdrh assert( pItem->fg.bNulls==0 );
19409105fd51Sdan if( iSortOrder==SQLITE_SO_UNDEFINED ){
19419105fd51Sdan iSortOrder = SQLITE_SO_ASC;
1942bc622bc0Sdrh }
1943d88fd539Sdrh pItem->fg.sortFlags = (u8)iSortOrder;
19449105fd51Sdan
19459105fd51Sdan if( eNulls!=SQLITE_SO_UNDEFINED ){
1946d88fd539Sdrh pItem->fg.bNulls = 1;
19479105fd51Sdan if( iSortOrder!=eNulls ){
1948d88fd539Sdrh pItem->fg.sortFlags |= KEYINFO_ORDER_BIGNULL;
19499105fd51Sdan }
1950bc622bc0Sdrh }
1951bc622bc0Sdrh }
1952bc622bc0Sdrh
1953bc622bc0Sdrh /*
195441cee668Sdrh ** Set the ExprList.a[].zEName element of the most recently added item
1955b7916a78Sdrh ** on the expression list.
1956b7916a78Sdrh **
1957b7916a78Sdrh ** pList might be NULL following an OOM error. But pName should never be
1958b7916a78Sdrh ** NULL. If a memory allocation fails, the pParse->db->mallocFailed flag
1959b7916a78Sdrh ** is set.
1960b7916a78Sdrh */
sqlite3ExprListSetName(Parse * pParse,ExprList * pList,const Token * pName,int dequote)1961b7916a78Sdrh void sqlite3ExprListSetName(
1962b7916a78Sdrh Parse *pParse, /* Parsing context */
1963b7916a78Sdrh ExprList *pList, /* List to which to add the span. */
1964b6dad520Sdrh const Token *pName, /* Name to be added */
1965b7916a78Sdrh int dequote /* True to cause the name to be dequoted */
1966b7916a78Sdrh ){
1967b7916a78Sdrh assert( pList!=0 || pParse->db->mallocFailed!=0 );
19682d99f957Sdrh assert( pParse->eParseMode!=PARSE_MODE_UNMAP || dequote==0 );
1969b7916a78Sdrh if( pList ){
1970b7916a78Sdrh struct ExprList_item *pItem;
1971b7916a78Sdrh assert( pList->nExpr>0 );
1972b7916a78Sdrh pItem = &pList->a[pList->nExpr-1];
197341cee668Sdrh assert( pItem->zEName==0 );
1974d88fd539Sdrh assert( pItem->fg.eEName==ENAME_NAME );
197541cee668Sdrh pItem->zEName = sqlite3DbStrNDup(pParse->db, pName->z, pName->n);
197685f2c76cSdan if( dequote ){
197785f2c76cSdan /* If dequote==0, then pName->z does not point to part of a DDL
197885f2c76cSdan ** statement handled by the parser. And so no token need be added
197985f2c76cSdan ** to the token-map. */
198085f2c76cSdan sqlite3Dequote(pItem->zEName);
1981c9461eccSdan if( IN_RENAME_OBJECT ){
1982b6dad520Sdrh sqlite3RenameTokenMap(pParse, (const void*)pItem->zEName, pName);
19835be60c55Sdan }
1984b7916a78Sdrh }
1985b7916a78Sdrh }
198685f2c76cSdan }
1987b7916a78Sdrh
1988b7916a78Sdrh /*
1989b7916a78Sdrh ** Set the ExprList.a[].zSpan element of the most recently added item
1990b7916a78Sdrh ** on the expression list.
1991b7916a78Sdrh **
1992b7916a78Sdrh ** pList might be NULL following an OOM error. But pSpan should never be
1993b7916a78Sdrh ** NULL. If a memory allocation fails, the pParse->db->mallocFailed flag
1994b7916a78Sdrh ** is set.
1995b7916a78Sdrh */
sqlite3ExprListSetSpan(Parse * pParse,ExprList * pList,const char * zStart,const char * zEnd)1996b7916a78Sdrh void sqlite3ExprListSetSpan(
1997b7916a78Sdrh Parse *pParse, /* Parsing context */
1998b7916a78Sdrh ExprList *pList, /* List to which to add the span. */
19991be266baSdrh const char *zStart, /* Start of the span */
20001be266baSdrh const char *zEnd /* End of the span */
2001b7916a78Sdrh ){
2002b7916a78Sdrh sqlite3 *db = pParse->db;
2003b7916a78Sdrh assert( pList!=0 || db->mallocFailed!=0 );
2004b7916a78Sdrh if( pList ){
2005b7916a78Sdrh struct ExprList_item *pItem = &pList->a[pList->nExpr-1];
2006b7916a78Sdrh assert( pList->nExpr>0 );
2007cbb9da33Sdrh if( pItem->zEName==0 ){
2008cbb9da33Sdrh pItem->zEName = sqlite3DbSpanDup(db, zStart, zEnd);
2009d88fd539Sdrh pItem->fg.eEName = ENAME_SPAN;
2010cbb9da33Sdrh }
2011b7916a78Sdrh }
2012b7916a78Sdrh }
2013b7916a78Sdrh
2014b7916a78Sdrh /*
20157a15a4beSdanielk1977 ** If the expression list pEList contains more than iLimit elements,
20167a15a4beSdanielk1977 ** leave an error message in pParse.
20177a15a4beSdanielk1977 */
sqlite3ExprListCheckLength(Parse * pParse,ExprList * pEList,const char * zObject)20187a15a4beSdanielk1977 void sqlite3ExprListCheckLength(
20197a15a4beSdanielk1977 Parse *pParse,
20207a15a4beSdanielk1977 ExprList *pEList,
20217a15a4beSdanielk1977 const char *zObject
20227a15a4beSdanielk1977 ){
2023b1a6c3c1Sdrh int mx = pParse->db->aLimit[SQLITE_LIMIT_COLUMN];
2024c5499befSdrh testcase( pEList && pEList->nExpr==mx );
2025c5499befSdrh testcase( pEList && pEList->nExpr==mx+1 );
2026b1a6c3c1Sdrh if( pEList && pEList->nExpr>mx ){
20277a15a4beSdanielk1977 sqlite3ErrorMsg(pParse, "too many columns in %s", zObject);
20287a15a4beSdanielk1977 }
20297a15a4beSdanielk1977 }
20307a15a4beSdanielk1977
20317a15a4beSdanielk1977 /*
2032a76b5dfcSdrh ** Delete an entire expression list.
2033a76b5dfcSdrh */
exprListDeleteNN(sqlite3 * db,ExprList * pList)2034affa855cSdrh static SQLITE_NOINLINE void exprListDeleteNN(sqlite3 *db, ExprList *pList){
2035ac48b751Sdrh int i = pList->nExpr;
2036ac48b751Sdrh struct ExprList_item *pItem = pList->a;
2037ac48b751Sdrh assert( pList->nExpr>0 );
203841ce47c4Sdrh assert( db!=0 );
2039ac48b751Sdrh do{
2040633e6d57Sdrh sqlite3ExprDelete(db, pItem->pExpr);
204141ce47c4Sdrh if( pItem->zEName ) sqlite3DbNNFreeNN(db, pItem->zEName);
2042ac48b751Sdrh pItem++;
2043ac48b751Sdrh }while( --i>0 );
204441ce47c4Sdrh sqlite3DbNNFreeNN(db, pList);
2045a76b5dfcSdrh }
sqlite3ExprListDelete(sqlite3 * db,ExprList * pList)2046affa855cSdrh void sqlite3ExprListDelete(sqlite3 *db, ExprList *pList){
2047affa855cSdrh if( pList ) exprListDeleteNN(db, pList);
2048affa855cSdrh }
2049a76b5dfcSdrh
2050a76b5dfcSdrh /*
20512308ed38Sdrh ** Return the bitwise-OR of all Expr.flags fields in the given
20522308ed38Sdrh ** ExprList.
2053885a5b03Sdrh */
sqlite3ExprListFlags(const ExprList * pList)20542308ed38Sdrh u32 sqlite3ExprListFlags(const ExprList *pList){
2055885a5b03Sdrh int i;
20562308ed38Sdrh u32 m = 0;
2057508e2d00Sdrh assert( pList!=0 );
2058885a5b03Sdrh for(i=0; i<pList->nExpr; i++){
2059d0c73053Sdrh Expr *pExpr = pList->a[i].pExpr;
2060de845c2fSdrh assert( pExpr!=0 );
2061de845c2fSdrh m |= pExpr->flags;
2062885a5b03Sdrh }
20632308ed38Sdrh return m;
2064885a5b03Sdrh }
2065885a5b03Sdrh
2066885a5b03Sdrh /*
20677e6f980bSdrh ** This is a SELECT-node callback for the expression walker that
20687e6f980bSdrh ** always "fails". By "fail" in this case, we mean set
20697e6f980bSdrh ** pWalker->eCode to zero and abort.
20707e6f980bSdrh **
20717e6f980bSdrh ** This callback is used by multiple expression walkers.
20727e6f980bSdrh */
sqlite3SelectWalkFail(Walker * pWalker,Select * NotUsed)20737e6f980bSdrh int sqlite3SelectWalkFail(Walker *pWalker, Select *NotUsed){
20747e6f980bSdrh UNUSED_PARAMETER(NotUsed);
20757e6f980bSdrh pWalker->eCode = 0;
20767e6f980bSdrh return WRC_Abort;
20777e6f980bSdrh }
20787e6f980bSdrh
20797e6f980bSdrh /*
20800cbec59cSdrh ** Check the input string to see if it is "true" or "false" (in any case).
20810cbec59cSdrh **
20820cbec59cSdrh ** If the string is.... Return
20830cbec59cSdrh ** "true" EP_IsTrue
20840cbec59cSdrh ** "false" EP_IsFalse
20850cbec59cSdrh ** anything else 0
20860cbec59cSdrh */
sqlite3IsTrueOrFalse(const char * zIn)20870cbec59cSdrh u32 sqlite3IsTrueOrFalse(const char *zIn){
20880cbec59cSdrh if( sqlite3StrICmp(zIn, "true")==0 ) return EP_IsTrue;
20890cbec59cSdrh if( sqlite3StrICmp(zIn, "false")==0 ) return EP_IsFalse;
20900cbec59cSdrh return 0;
20910cbec59cSdrh }
20920cbec59cSdrh
20930cbec59cSdrh
20940cbec59cSdrh /*
2095171d16bbSdrh ** If the input expression is an ID with the name "true" or "false"
209696acafbeSdrh ** then convert it into an TK_TRUEFALSE term. Return non-zero if
209796acafbeSdrh ** the conversion happened, and zero if the expression is unaltered.
2098171d16bbSdrh */
sqlite3ExprIdToTrueFalse(Expr * pExpr)2099171d16bbSdrh int sqlite3ExprIdToTrueFalse(Expr *pExpr){
21000cbec59cSdrh u32 v;
2101171d16bbSdrh assert( pExpr->op==TK_ID || pExpr->op==TK_STRING );
2102f9751074Sdrh if( !ExprHasProperty(pExpr, EP_Quoted|EP_IntValue)
21030cbec59cSdrh && (v = sqlite3IsTrueOrFalse(pExpr->u.zToken))!=0
2104171d16bbSdrh ){
2105171d16bbSdrh pExpr->op = TK_TRUEFALSE;
21060cbec59cSdrh ExprSetProperty(pExpr, v);
2107171d16bbSdrh return 1;
2108171d16bbSdrh }
2109171d16bbSdrh return 0;
2110171d16bbSdrh }
2111171d16bbSdrh
211243c4ac8bSdrh /*
211396acafbeSdrh ** The argument must be a TK_TRUEFALSE Expr node. Return 1 if it is TRUE
211443c4ac8bSdrh ** and 0 if it is FALSE.
211543c4ac8bSdrh */
sqlite3ExprTruthValue(const Expr * pExpr)211696acafbeSdrh int sqlite3ExprTruthValue(const Expr *pExpr){
21176ece353fSdan pExpr = sqlite3ExprSkipCollate((Expr*)pExpr);
211843c4ac8bSdrh assert( pExpr->op==TK_TRUEFALSE );
2119f9751074Sdrh assert( !ExprHasProperty(pExpr, EP_IntValue) );
212043c4ac8bSdrh assert( sqlite3StrICmp(pExpr->u.zToken,"true")==0
212143c4ac8bSdrh || sqlite3StrICmp(pExpr->u.zToken,"false")==0 );
212243c4ac8bSdrh return pExpr->u.zToken[4]==0;
212343c4ac8bSdrh }
212443c4ac8bSdrh
212517180fcaSdrh /*
212617180fcaSdrh ** If pExpr is an AND or OR expression, try to simplify it by eliminating
212717180fcaSdrh ** terms that are always true or false. Return the simplified expression.
212817180fcaSdrh ** Or return the original expression if no simplification is possible.
212917180fcaSdrh **
213017180fcaSdrh ** Examples:
213117180fcaSdrh **
213217180fcaSdrh ** (x<10) AND true => (x<10)
213317180fcaSdrh ** (x<10) AND false => false
213417180fcaSdrh ** (x<10) AND (y=22 OR false) => (x<10) AND (y=22)
213517180fcaSdrh ** (x<10) AND (y=22 OR true) => (x<10)
213617180fcaSdrh ** (y=22) OR true => true
213717180fcaSdrh */
sqlite3ExprSimplifiedAndOr(Expr * pExpr)213817180fcaSdrh Expr *sqlite3ExprSimplifiedAndOr(Expr *pExpr){
213917180fcaSdrh assert( pExpr!=0 );
214017180fcaSdrh if( pExpr->op==TK_AND || pExpr->op==TK_OR ){
214117180fcaSdrh Expr *pRight = sqlite3ExprSimplifiedAndOr(pExpr->pRight);
214217180fcaSdrh Expr *pLeft = sqlite3ExprSimplifiedAndOr(pExpr->pLeft);
214317180fcaSdrh if( ExprAlwaysTrue(pLeft) || ExprAlwaysFalse(pRight) ){
214417180fcaSdrh pExpr = pExpr->op==TK_AND ? pRight : pLeft;
214517180fcaSdrh }else if( ExprAlwaysTrue(pRight) || ExprAlwaysFalse(pLeft) ){
214617180fcaSdrh pExpr = pExpr->op==TK_AND ? pLeft : pRight;
214717180fcaSdrh }
214817180fcaSdrh }
214917180fcaSdrh return pExpr;
215017180fcaSdrh }
215117180fcaSdrh
2152171d16bbSdrh
2153171d16bbSdrh /*
2154059b2d50Sdrh ** These routines are Walker callbacks used to check expressions to
2155059b2d50Sdrh ** see if they are "constant" for some definition of constant. The
2156059b2d50Sdrh ** Walker.eCode value determines the type of "constant" we are looking
2157059b2d50Sdrh ** for.
215873b211abSdrh **
21597d10d5a6Sdrh ** These callback routines are used to implement the following:
2160626a879aSdrh **
2161059b2d50Sdrh ** sqlite3ExprIsConstant() pWalker->eCode==1
2162059b2d50Sdrh ** sqlite3ExprIsConstantNotJoin() pWalker->eCode==2
2163fcb9f4f3Sdrh ** sqlite3ExprIsTableConstant() pWalker->eCode==3
2164059b2d50Sdrh ** sqlite3ExprIsConstantOrFunction() pWalker->eCode==4 or 5
216587abf5c0Sdrh **
2166059b2d50Sdrh ** In all cases, the callbacks set Walker.eCode=0 and abort if the expression
2167059b2d50Sdrh ** is found to not be a constant.
216887abf5c0Sdrh **
2169014fff20Sdrh ** The sqlite3ExprIsConstantOrFunction() is used for evaluating DEFAULT
2170014fff20Sdrh ** expressions in a CREATE TABLE statement. The Walker.eCode value is 5
21711e32bed3Sdrh ** when parsing an existing schema out of the sqlite_schema table and 4
2172014fff20Sdrh ** when processing a new CREATE TABLE statement. A bound parameter raises
2173014fff20Sdrh ** an error for new statements, but is silently converted
21741e32bed3Sdrh ** to NULL for existing schemas. This allows sqlite_schema tables that
2175feada2dfSdrh ** contain a bound parameter because they were generated by older versions
2176feada2dfSdrh ** of SQLite to be parsed by newer versions of SQLite without raising a
2177feada2dfSdrh ** malformed schema error.
2178626a879aSdrh */
exprNodeIsConstant(Walker * pWalker,Expr * pExpr)21797d10d5a6Sdrh static int exprNodeIsConstant(Walker *pWalker, Expr *pExpr){
2180626a879aSdrh
2181059b2d50Sdrh /* If pWalker->eCode is 2 then any term of the expression that comes from
2182b77c07a7Sdrh ** the ON or USING clauses of an outer join disqualifies the expression
21830a168377Sdrh ** from being considered constant. */
218467a99dbeSdrh if( pWalker->eCode==2 && ExprHasProperty(pExpr, EP_OuterON) ){
2185059b2d50Sdrh pWalker->eCode = 0;
21867d10d5a6Sdrh return WRC_Abort;
21870a168377Sdrh }
21880a168377Sdrh
2189626a879aSdrh switch( pExpr->op ){
2190eb55bd2fSdrh /* Consider functions to be constant if all their arguments are constant
2191059b2d50Sdrh ** and either pWalker->eCode==4 or 5 or the function has the
2192059b2d50Sdrh ** SQLITE_FUNC_CONST flag. */
2193eb55bd2fSdrh case TK_FUNCTION:
2194a634c9e6Sdrh if( (pWalker->eCode>=4 || ExprHasProperty(pExpr,EP_ConstFunc))
2195a634c9e6Sdrh && !ExprHasProperty(pExpr, EP_WinFunc)
2196a634c9e6Sdrh ){
2197014fff20Sdrh if( pWalker->eCode==5 ) ExprSetProperty(pExpr, EP_FromDDL);
2198b1fba286Sdrh return WRC_Continue;
2199059b2d50Sdrh }else{
2200059b2d50Sdrh pWalker->eCode = 0;
2201059b2d50Sdrh return WRC_Abort;
2202b1fba286Sdrh }
2203626a879aSdrh case TK_ID:
2204171d16bbSdrh /* Convert "true" or "false" in a DEFAULT clause into the
2205171d16bbSdrh ** appropriate TK_TRUEFALSE operator */
2206e39ef31cSdrh if( sqlite3ExprIdToTrueFalse(pExpr) ){
2207171d16bbSdrh return WRC_Prune;
2208171d16bbSdrh }
220908b92086Sdrh /* no break */ deliberate_fall_through
2210626a879aSdrh case TK_COLUMN:
2211626a879aSdrh case TK_AGG_FUNCTION:
221213449892Sdrh case TK_AGG_COLUMN:
2213c5499befSdrh testcase( pExpr->op==TK_ID );
2214c5499befSdrh testcase( pExpr->op==TK_COLUMN );
2215c5499befSdrh testcase( pExpr->op==TK_AGG_FUNCTION );
2216c5499befSdrh testcase( pExpr->op==TK_AGG_COLUMN );
221707aded63Sdrh if( ExprHasProperty(pExpr, EP_FixedCol) && pWalker->eCode!=2 ){
2218efad2e23Sdrh return WRC_Continue;
2219efad2e23Sdrh }
2220059b2d50Sdrh if( pWalker->eCode==3 && pExpr->iTable==pWalker->u.iCur ){
2221059b2d50Sdrh return WRC_Continue;
2222f43ce0b4Sdrh }
222308b92086Sdrh /* no break */ deliberate_fall_through
2224f43ce0b4Sdrh case TK_IF_NULL_ROW:
22256e341b93Sdrh case TK_REGISTER:
222674e0d966Sdrh case TK_DOT:
22279916048bSdrh testcase( pExpr->op==TK_REGISTER );
2228f43ce0b4Sdrh testcase( pExpr->op==TK_IF_NULL_ROW );
222974e0d966Sdrh testcase( pExpr->op==TK_DOT );
2230059b2d50Sdrh pWalker->eCode = 0;
22317d10d5a6Sdrh return WRC_Abort;
2232feada2dfSdrh case TK_VARIABLE:
2233059b2d50Sdrh if( pWalker->eCode==5 ){
2234feada2dfSdrh /* Silently convert bound parameters that appear inside of CREATE
2235feada2dfSdrh ** statements into a NULL when parsing the CREATE statement text out
22361e32bed3Sdrh ** of the sqlite_schema table */
2237feada2dfSdrh pExpr->op = TK_NULL;
2238059b2d50Sdrh }else if( pWalker->eCode==4 ){
2239feada2dfSdrh /* A bound parameter in a CREATE statement that originates from
2240feada2dfSdrh ** sqlite3_prepare() causes an error */
2241059b2d50Sdrh pWalker->eCode = 0;
2242feada2dfSdrh return WRC_Abort;
2243feada2dfSdrh }
224408b92086Sdrh /* no break */ deliberate_fall_through
2245626a879aSdrh default:
22466e341b93Sdrh testcase( pExpr->op==TK_SELECT ); /* sqlite3SelectWalkFail() disallows */
22476e341b93Sdrh testcase( pExpr->op==TK_EXISTS ); /* sqlite3SelectWalkFail() disallows */
22487d10d5a6Sdrh return WRC_Continue;
2249626a879aSdrh }
2250626a879aSdrh }
exprIsConst(Expr * p,int initFlag,int iCur)2251059b2d50Sdrh static int exprIsConst(Expr *p, int initFlag, int iCur){
22527d10d5a6Sdrh Walker w;
2253059b2d50Sdrh w.eCode = initFlag;
22547d10d5a6Sdrh w.xExprCallback = exprNodeIsConstant;
22557e6f980bSdrh w.xSelectCallback = sqlite3SelectWalkFail;
2256979dd1beSdrh #ifdef SQLITE_DEBUG
2257979dd1beSdrh w.xSelectCallback2 = sqlite3SelectWalkAssert2;
2258979dd1beSdrh #endif
2259059b2d50Sdrh w.u.iCur = iCur;
22607d10d5a6Sdrh sqlite3WalkExpr(&w, p);
2261059b2d50Sdrh return w.eCode;
22627d10d5a6Sdrh }
2263626a879aSdrh
2264626a879aSdrh /*
2265059b2d50Sdrh ** Walk an expression tree. Return non-zero if the expression is constant
2266eb55bd2fSdrh ** and 0 if it involves variables or function calls.
22672398937bSdrh **
22682398937bSdrh ** For the purposes of this function, a double-quoted string (ex: "abc")
22692398937bSdrh ** is considered a variable but a single-quoted string (ex: 'abc') is
22702398937bSdrh ** a constant.
2271fef5208cSdrh */
sqlite3ExprIsConstant(Expr * p)22724adee20fSdanielk1977 int sqlite3ExprIsConstant(Expr *p){
2273059b2d50Sdrh return exprIsConst(p, 1, 0);
2274fef5208cSdrh }
2275fef5208cSdrh
2276fef5208cSdrh /*
227707aded63Sdrh ** Walk an expression tree. Return non-zero if
227807aded63Sdrh **
227907aded63Sdrh ** (1) the expression is constant, and
228007aded63Sdrh ** (2) the expression does originate in the ON or USING clause
228107aded63Sdrh ** of a LEFT JOIN, and
228207aded63Sdrh ** (3) the expression does not contain any EP_FixedCol TK_COLUMN
228307aded63Sdrh ** operands created by the constant propagation optimization.
228407aded63Sdrh **
228507aded63Sdrh ** When this routine returns true, it indicates that the expression
228607aded63Sdrh ** can be added to the pParse->pConstExpr list and evaluated once when
22879b258c54Sdrh ** the prepared statement starts up. See sqlite3ExprCodeRunJustOnce().
22880a168377Sdrh */
sqlite3ExprIsConstantNotJoin(Expr * p)22890a168377Sdrh int sqlite3ExprIsConstantNotJoin(Expr *p){
2290059b2d50Sdrh return exprIsConst(p, 2, 0);
22910a168377Sdrh }
22920a168377Sdrh
22930a168377Sdrh /*
2294fcb9f4f3Sdrh ** Walk an expression tree. Return non-zero if the expression is constant
2295059b2d50Sdrh ** for any single row of the table with cursor iCur. In other words, the
2296059b2d50Sdrh ** expression must not refer to any non-deterministic function nor any
2297059b2d50Sdrh ** table other than iCur.
2298059b2d50Sdrh */
sqlite3ExprIsTableConstant(Expr * p,int iCur)2299059b2d50Sdrh int sqlite3ExprIsTableConstant(Expr *p, int iCur){
2300059b2d50Sdrh return exprIsConst(p, 3, iCur);
2301059b2d50Sdrh }
2302059b2d50Sdrh
2303a9cdb904Sdrh /*
2304a9cdb904Sdrh ** Check pExpr to see if it is an invariant constraint on data source pSrc.
2305a9cdb904Sdrh ** This is an optimization. False negatives will perhaps cause slower
2306a9cdb904Sdrh ** queries, but false positives will yield incorrect answers. So when in
230722b541b5Sdrh ** doubt, return 0.
2308a9cdb904Sdrh **
2309a9cdb904Sdrh ** To be an invariant constraint, the following must be true:
2310a9cdb904Sdrh **
2311a9cdb904Sdrh ** (1) pExpr cannot refer to any table other than pSrc->iCursor.
2312a9cdb904Sdrh **
2313a9cdb904Sdrh ** (2) pExpr cannot use subqueries or non-deterministic functions.
2314a9cdb904Sdrh **
2315a9cdb904Sdrh ** (3) pSrc cannot be part of the left operand for a RIGHT JOIN.
2316a9cdb904Sdrh ** (Is there some way to relax this constraint?)
2317a9cdb904Sdrh **
2318a9cdb904Sdrh ** (4) If pSrc is the right operand of a LEFT JOIN, then...
2319a9cdb904Sdrh ** (4a) pExpr must come from an ON clause..
2320a9cdb904Sdrh (4b) and specifically the ON clause associated with the LEFT JOIN.
2321a9cdb904Sdrh **
2322a9cdb904Sdrh ** (5) If pSrc is not the right operand of a LEFT JOIN or the left
2323a9cdb904Sdrh ** operand of a RIGHT JOIN, then pExpr must be from the WHERE
2324a9cdb904Sdrh ** clause, not an ON clause.
2325a9cdb904Sdrh */
sqlite3ExprIsTableConstraint(Expr * pExpr,const SrcItem * pSrc)2326a9cdb904Sdrh int sqlite3ExprIsTableConstraint(Expr *pExpr, const SrcItem *pSrc){
2327a9cdb904Sdrh if( pSrc->fg.jointype & JT_LTORJ ){
2328a9cdb904Sdrh return 0; /* rule (3) */
2329a9cdb904Sdrh }
2330a9cdb904Sdrh if( pSrc->fg.jointype & JT_LEFT ){
233167a99dbeSdrh if( !ExprHasProperty(pExpr, EP_OuterON) ) return 0; /* rule (4a) */
2332a9cdb904Sdrh if( pExpr->w.iJoin!=pSrc->iCursor ) return 0; /* rule (4b) */
2333a9cdb904Sdrh }else{
233467a99dbeSdrh if( ExprHasProperty(pExpr, EP_OuterON) ) return 0; /* rule (5) */
2335a9cdb904Sdrh }
2336a9cdb904Sdrh return sqlite3ExprIsTableConstant(pExpr, pSrc->iCursor); /* rules (1), (2) */
2337a9cdb904Sdrh }
2338a9cdb904Sdrh
2339ab31a845Sdan
2340ab31a845Sdan /*
2341ab31a845Sdan ** sqlite3WalkExpr() callback used by sqlite3ExprIsConstantOrGroupBy().
2342ab31a845Sdan */
exprNodeIsConstantOrGroupBy(Walker * pWalker,Expr * pExpr)2343ab31a845Sdan static int exprNodeIsConstantOrGroupBy(Walker *pWalker, Expr *pExpr){
2344ab31a845Sdan ExprList *pGroupBy = pWalker->u.pGroupBy;
2345ab31a845Sdan int i;
2346ab31a845Sdan
2347ab31a845Sdan /* Check if pExpr is identical to any GROUP BY term. If so, consider
2348ab31a845Sdan ** it constant. */
2349ab31a845Sdan for(i=0; i<pGroupBy->nExpr; i++){
2350ab31a845Sdan Expr *p = pGroupBy->a[i].pExpr;
23515aa550cfSdan if( sqlite3ExprCompare(0, pExpr, p, -1)<2 ){
235270efa84dSdrh CollSeq *pColl = sqlite3ExprNNCollSeq(pWalker->pParse, p);
2353efad2e23Sdrh if( sqlite3IsBinary(pColl) ){
2354ab31a845Sdan return WRC_Prune;
2355ab31a845Sdan }
2356ab31a845Sdan }
2357ab31a845Sdan }
2358ab31a845Sdan
2359ab31a845Sdan /* Check if pExpr is a sub-select. If so, consider it variable. */
2360a4eeccdfSdrh if( ExprUseXSelect(pExpr) ){
2361ab31a845Sdan pWalker->eCode = 0;
2362ab31a845Sdan return WRC_Abort;
2363ab31a845Sdan }
2364ab31a845Sdan
2365ab31a845Sdan return exprNodeIsConstant(pWalker, pExpr);
2366ab31a845Sdan }
2367ab31a845Sdan
2368ab31a845Sdan /*
2369ab31a845Sdan ** Walk the expression tree passed as the first argument. Return non-zero
2370ab31a845Sdan ** if the expression consists entirely of constants or copies of terms
2371ab31a845Sdan ** in pGroupBy that sort with the BINARY collation sequence.
2372ab314001Sdrh **
2373ab314001Sdrh ** This routine is used to determine if a term of the HAVING clause can
2374ab314001Sdrh ** be promoted into the WHERE clause. In order for such a promotion to work,
2375ab314001Sdrh ** the value of the HAVING clause term must be the same for all members of
2376ab314001Sdrh ** a "group". The requirement that the GROUP BY term must be BINARY
2377ab314001Sdrh ** assumes that no other collating sequence will have a finer-grained
2378ab314001Sdrh ** grouping than binary. In other words (A=B COLLATE binary) implies
2379ab314001Sdrh ** A=B in every other collating sequence. The requirement that the
2380ab314001Sdrh ** GROUP BY be BINARY is stricter than necessary. It would also work
2381ab314001Sdrh ** to promote HAVING clauses that use the same alternative collating
2382ab314001Sdrh ** sequence as the GROUP BY term, but that is much harder to check,
2383ab314001Sdrh ** alternative collating sequences are uncommon, and this is only an
2384ab314001Sdrh ** optimization, so we take the easy way out and simply require the
2385ab314001Sdrh ** GROUP BY to use the BINARY collating sequence.
2386ab31a845Sdan */
sqlite3ExprIsConstantOrGroupBy(Parse * pParse,Expr * p,ExprList * pGroupBy)2387ab31a845Sdan int sqlite3ExprIsConstantOrGroupBy(Parse *pParse, Expr *p, ExprList *pGroupBy){
2388ab31a845Sdan Walker w;
2389ab31a845Sdan w.eCode = 1;
2390ab31a845Sdan w.xExprCallback = exprNodeIsConstantOrGroupBy;
2391979dd1beSdrh w.xSelectCallback = 0;
2392ab31a845Sdan w.u.pGroupBy = pGroupBy;
2393ab31a845Sdan w.pParse = pParse;
2394ab31a845Sdan sqlite3WalkExpr(&w, p);
2395ab31a845Sdan return w.eCode;
2396ab31a845Sdan }
2397ab31a845Sdan
2398059b2d50Sdrh /*
2399014fff20Sdrh ** Walk an expression tree for the DEFAULT field of a column definition
2400014fff20Sdrh ** in a CREATE TABLE statement. Return non-zero if the expression is
2401014fff20Sdrh ** acceptable for use as a DEFAULT. That is to say, return non-zero if
2402014fff20Sdrh ** the expression is constant or a function call with constant arguments.
2403014fff20Sdrh ** Return and 0 if there are any variables.
2404014fff20Sdrh **
24051e32bed3Sdrh ** isInit is true when parsing from sqlite_schema. isInit is false when
2406014fff20Sdrh ** processing a new CREATE TABLE statement. When isInit is true, parameters
2407014fff20Sdrh ** (such as ? or $abc) in the expression are converted into NULL. When
2408014fff20Sdrh ** isInit is false, parameters raise an error. Parameters should not be
2409014fff20Sdrh ** allowed in a CREATE TABLE statement, but some legacy versions of SQLite
24101e32bed3Sdrh ** allowed it, so we need to support it when reading sqlite_schema for
2411014fff20Sdrh ** backwards compatibility.
2412014fff20Sdrh **
2413014fff20Sdrh ** If isInit is true, set EP_FromDDL on every TK_FUNCTION node.
2414eb55bd2fSdrh **
2415eb55bd2fSdrh ** For the purposes of this function, a double-quoted string (ex: "abc")
2416eb55bd2fSdrh ** is considered a variable but a single-quoted string (ex: 'abc') is
2417eb55bd2fSdrh ** a constant.
2418eb55bd2fSdrh */
sqlite3ExprIsConstantOrFunction(Expr * p,u8 isInit)2419feada2dfSdrh int sqlite3ExprIsConstantOrFunction(Expr *p, u8 isInit){
2420feada2dfSdrh assert( isInit==0 || isInit==1 );
2421059b2d50Sdrh return exprIsConst(p, 4+isInit, 0);
2422eb55bd2fSdrh }
2423eb55bd2fSdrh
24245b88bc4bSdrh #ifdef SQLITE_ENABLE_CURSOR_HINTS
24255b88bc4bSdrh /*
24265b88bc4bSdrh ** Walk an expression tree. Return 1 if the expression contains a
24275b88bc4bSdrh ** subquery of some kind. Return 0 if there are no subqueries.
24285b88bc4bSdrh */
sqlite3ExprContainsSubquery(Expr * p)24295b88bc4bSdrh int sqlite3ExprContainsSubquery(Expr *p){
24305b88bc4bSdrh Walker w;
2431bec2476aSdrh w.eCode = 1;
24325b88bc4bSdrh w.xExprCallback = sqlite3ExprWalkNoop;
24337e6f980bSdrh w.xSelectCallback = sqlite3SelectWalkFail;
2434979dd1beSdrh #ifdef SQLITE_DEBUG
2435979dd1beSdrh w.xSelectCallback2 = sqlite3SelectWalkAssert2;
2436979dd1beSdrh #endif
24375b88bc4bSdrh sqlite3WalkExpr(&w, p);
243807194bffSdrh return w.eCode==0;
24395b88bc4bSdrh }
24405b88bc4bSdrh #endif
24415b88bc4bSdrh
2442eb55bd2fSdrh /*
244373b211abSdrh ** If the expression p codes a constant integer that is small enough
2444202b2df7Sdrh ** to fit in a 32-bit integer, return 1 and put the value of the integer
2445202b2df7Sdrh ** in *pValue. If the expression is not an integer or if it is too big
2446202b2df7Sdrh ** to fit in a signed 32-bit integer, return 0 and leave *pValue unchanged.
2447e4de1febSdrh */
sqlite3ExprIsInteger(const Expr * p,int * pValue)2448b6dad520Sdrh int sqlite3ExprIsInteger(const Expr *p, int *pValue){
244992b01d53Sdrh int rc = 0;
24501d2d71a0Sdrh if( NEVER(p==0) ) return 0; /* Used to only happen following on OOM */
2451cd92e84dSdrh
2452cd92e84dSdrh /* If an expression is an integer literal that fits in a signed 32-bit
2453cd92e84dSdrh ** integer, then the EP_IntValue flag will have already been set */
2454cd92e84dSdrh assert( p->op!=TK_INTEGER || (p->flags & EP_IntValue)!=0
2455cd92e84dSdrh || sqlite3GetInt32(p->u.zToken, &rc)==0 );
2456cd92e84dSdrh
245792b01d53Sdrh if( p->flags & EP_IntValue ){
245833e619fcSdrh *pValue = p->u.iValue;
2459e4de1febSdrh return 1;
2460e4de1febSdrh }
246192b01d53Sdrh switch( p->op ){
24624b59ab5eSdrh case TK_UPLUS: {
246392b01d53Sdrh rc = sqlite3ExprIsInteger(p->pLeft, pValue);
2464f6e369a1Sdrh break;
24654b59ab5eSdrh }
2466e4de1febSdrh case TK_UMINUS: {
2467c59ffa8cSdrh int v = 0;
24684adee20fSdanielk1977 if( sqlite3ExprIsInteger(p->pLeft, &v) ){
2469c59ffa8cSdrh assert( ((unsigned int)v)!=0x80000000 );
2470e4de1febSdrh *pValue = -v;
247192b01d53Sdrh rc = 1;
2472e4de1febSdrh }
2473e4de1febSdrh break;
2474e4de1febSdrh }
2475e4de1febSdrh default: break;
2476e4de1febSdrh }
247792b01d53Sdrh return rc;
2478e4de1febSdrh }
2479e4de1febSdrh
2480e4de1febSdrh /*
2481039fc32eSdrh ** Return FALSE if there is no chance that the expression can be NULL.
2482039fc32eSdrh **
2483039fc32eSdrh ** If the expression might be NULL or if the expression is too complex
2484039fc32eSdrh ** to tell return TRUE.
2485039fc32eSdrh **
2486039fc32eSdrh ** This routine is used as an optimization, to skip OP_IsNull opcodes
2487039fc32eSdrh ** when we know that a value cannot be NULL. Hence, a false positive
2488039fc32eSdrh ** (returning TRUE when in fact the expression can never be NULL) might
2489039fc32eSdrh ** be a small performance hit but is otherwise harmless. On the other
2490039fc32eSdrh ** hand, a false negative (returning FALSE when the result could be NULL)
2491039fc32eSdrh ** will likely result in an incorrect answer. So when in doubt, return
2492039fc32eSdrh ** TRUE.
2493039fc32eSdrh */
sqlite3ExprCanBeNull(const Expr * p)2494039fc32eSdrh int sqlite3ExprCanBeNull(const Expr *p){
2495039fc32eSdrh u8 op;
24963c6edc8aSdrh assert( p!=0 );
24979bfb0794Sdrh while( p->op==TK_UPLUS || p->op==TK_UMINUS ){
24989bfb0794Sdrh p = p->pLeft;
24993c6edc8aSdrh assert( p!=0 );
25009bfb0794Sdrh }
2501039fc32eSdrh op = p->op;
2502039fc32eSdrh if( op==TK_REGISTER ) op = p->op2;
2503039fc32eSdrh switch( op ){
2504039fc32eSdrh case TK_INTEGER:
2505039fc32eSdrh case TK_STRING:
2506039fc32eSdrh case TK_FLOAT:
2507039fc32eSdrh case TK_BLOB:
2508039fc32eSdrh return 0;
25097248a8b2Sdrh case TK_COLUMN:
2510477572b9Sdrh assert( ExprUseYTab(p) );
251172673a24Sdrh return ExprHasProperty(p, EP_CanBeNull) ||
2512eda079cdSdrh p->y.pTab==0 || /* Reference to column of index on expression */
25134eac5f04Sdrh (p->iColumn>=0
25146df8c0cdSdrh && p->y.pTab->aCol!=0 /* Possible due to prior error */
25154eac5f04Sdrh && p->y.pTab->aCol[p->iColumn].notNull==0);
2516039fc32eSdrh default:
2517039fc32eSdrh return 1;
2518039fc32eSdrh }
2519039fc32eSdrh }
2520039fc32eSdrh
2521039fc32eSdrh /*
2522039fc32eSdrh ** Return TRUE if the given expression is a constant which would be
2523039fc32eSdrh ** unchanged by OP_Affinity with the affinity given in the second
2524039fc32eSdrh ** argument.
2525039fc32eSdrh **
2526039fc32eSdrh ** This routine is used to determine if the OP_Affinity operation
2527039fc32eSdrh ** can be omitted. When in doubt return FALSE. A false negative
2528039fc32eSdrh ** is harmless. A false positive, however, can result in the wrong
2529039fc32eSdrh ** answer.
2530039fc32eSdrh */
sqlite3ExprNeedsNoAffinityChange(const Expr * p,char aff)2531039fc32eSdrh int sqlite3ExprNeedsNoAffinityChange(const Expr *p, char aff){
2532039fc32eSdrh u8 op;
2533af866402Sdrh int unaryMinus = 0;
253405883a34Sdrh if( aff==SQLITE_AFF_BLOB ) return 1;
2535af866402Sdrh while( p->op==TK_UPLUS || p->op==TK_UMINUS ){
2536af866402Sdrh if( p->op==TK_UMINUS ) unaryMinus = 1;
2537af866402Sdrh p = p->pLeft;
2538af866402Sdrh }
2539039fc32eSdrh op = p->op;
2540039fc32eSdrh if( op==TK_REGISTER ) op = p->op2;
2541039fc32eSdrh switch( op ){
2542039fc32eSdrh case TK_INTEGER: {
25436a19865fSdrh return aff>=SQLITE_AFF_NUMERIC;
2544039fc32eSdrh }
2545039fc32eSdrh case TK_FLOAT: {
25466a19865fSdrh return aff>=SQLITE_AFF_NUMERIC;
2547039fc32eSdrh }
2548039fc32eSdrh case TK_STRING: {
2549af866402Sdrh return !unaryMinus && aff==SQLITE_AFF_TEXT;
2550039fc32eSdrh }
2551039fc32eSdrh case TK_BLOB: {
2552af866402Sdrh return !unaryMinus;
2553039fc32eSdrh }
25542f2855b6Sdrh case TK_COLUMN: {
255588376ca7Sdrh assert( p->iTable>=0 ); /* p cannot be part of a CHECK constraint */
25566a19865fSdrh return aff>=SQLITE_AFF_NUMERIC && p->iColumn<0;
25572f2855b6Sdrh }
2558039fc32eSdrh default: {
2559039fc32eSdrh return 0;
2560039fc32eSdrh }
2561039fc32eSdrh }
2562039fc32eSdrh }
2563039fc32eSdrh
2564039fc32eSdrh /*
2565c4a3c779Sdrh ** Return TRUE if the given string is a row-id column name.
2566c4a3c779Sdrh */
sqlite3IsRowid(const char * z)25674adee20fSdanielk1977 int sqlite3IsRowid(const char *z){
25684adee20fSdanielk1977 if( sqlite3StrICmp(z, "_ROWID_")==0 ) return 1;
25694adee20fSdanielk1977 if( sqlite3StrICmp(z, "ROWID")==0 ) return 1;
25704adee20fSdanielk1977 if( sqlite3StrICmp(z, "OID")==0 ) return 1;
2571c4a3c779Sdrh return 0;
2572c4a3c779Sdrh }
2573c4a3c779Sdrh
25749a96b668Sdanielk1977 /*
257569c355bdSdrh ** pX is the RHS of an IN operator. If pX is a SELECT statement
257669c355bdSdrh ** that can be simplified to a direct table access, then return
257769c355bdSdrh ** a pointer to the SELECT statement. If pX is not a SELECT statement,
257869c355bdSdrh ** or if the SELECT statement needs to be manifested into a transient
257969c355bdSdrh ** table, then return NULL.
2580b287f4b6Sdrh */
2581b287f4b6Sdrh #ifndef SQLITE_OMIT_SUBQUERY
isCandidateForInOpt(const Expr * pX)2582b6dad520Sdrh static Select *isCandidateForInOpt(const Expr *pX){
258369c355bdSdrh Select *p;
2584b287f4b6Sdrh SrcList *pSrc;
2585b287f4b6Sdrh ExprList *pEList;
2586b287f4b6Sdrh Table *pTab;
2587cfbb5e82Sdan int i;
2588a4eeccdfSdrh if( !ExprUseXSelect(pX) ) return 0; /* Not a subquery */
258969c355bdSdrh if( ExprHasProperty(pX, EP_VarSelect) ) return 0; /* Correlated subq */
259069c355bdSdrh p = pX->x.pSelect;
2591b287f4b6Sdrh if( p->pPrior ) return 0; /* Not a compound SELECT */
25927d10d5a6Sdrh if( p->selFlags & (SF_Distinct|SF_Aggregate) ){
2593b74b1017Sdrh testcase( (p->selFlags & (SF_Distinct|SF_Aggregate))==SF_Distinct );
2594b74b1017Sdrh testcase( (p->selFlags & (SF_Distinct|SF_Aggregate))==SF_Aggregate );
25957d10d5a6Sdrh return 0; /* No DISTINCT keyword and no aggregate functions */
25967d10d5a6Sdrh }
25972e26a602Sdrh assert( p->pGroupBy==0 ); /* Has no GROUP BY clause */
2598b287f4b6Sdrh if( p->pLimit ) return 0; /* Has no LIMIT clause */
2599b287f4b6Sdrh if( p->pWhere ) return 0; /* Has no WHERE clause */
2600b287f4b6Sdrh pSrc = p->pSrc;
2601d1fa7bcaSdrh assert( pSrc!=0 );
2602d1fa7bcaSdrh if( pSrc->nSrc!=1 ) return 0; /* Single term in FROM clause */
2603b74b1017Sdrh if( pSrc->a[0].pSelect ) return 0; /* FROM is not a subquery or view */
2604b287f4b6Sdrh pTab = pSrc->a[0].pTab;
260569c355bdSdrh assert( pTab!=0 );
2606f38524d2Sdrh assert( !IsView(pTab) ); /* FROM clause is not a view */
2607b287f4b6Sdrh if( IsVirtual(pTab) ) return 0; /* FROM clause not a virtual table */
2608b287f4b6Sdrh pEList = p->pEList;
2609ac6b47d1Sdrh assert( pEList!=0 );
26107b35a77bSdan /* All SELECT results must be columns. */
2611cfbb5e82Sdan for(i=0; i<pEList->nExpr; i++){
2612cfbb5e82Sdan Expr *pRes = pEList->a[i].pExpr;
2613cfbb5e82Sdan if( pRes->op!=TK_COLUMN ) return 0;
261469c355bdSdrh assert( pRes->iTable==pSrc->a[0].iCursor ); /* Not a correlated subquery */
2615cfbb5e82Sdan }
261669c355bdSdrh return p;
2617b287f4b6Sdrh }
2618b287f4b6Sdrh #endif /* SQLITE_OMIT_SUBQUERY */
2619b287f4b6Sdrh
2620f9b2e05cSdan #ifndef SQLITE_OMIT_SUBQUERY
26211d8cb21fSdan /*
26224c259e9fSdrh ** Generate code that checks the left-most column of index table iCur to see if
26234c259e9fSdrh ** it contains any NULL entries. Cause the register at regHasNull to be set
26246be515ebSdrh ** to a non-NULL value if iCur contains no NULLs. Cause register regHasNull
26256be515ebSdrh ** to be set to NULL if iCur contains one or more NULL values.
26266be515ebSdrh */
sqlite3SetHasNullFlag(Vdbe * v,int iCur,int regHasNull)26276be515ebSdrh static void sqlite3SetHasNullFlag(Vdbe *v, int iCur, int regHasNull){
2628728e0f91Sdrh int addr1;
26296be515ebSdrh sqlite3VdbeAddOp2(v, OP_Integer, 0, regHasNull);
2630728e0f91Sdrh addr1 = sqlite3VdbeAddOp1(v, OP_Rewind, iCur); VdbeCoverage(v);
26316be515ebSdrh sqlite3VdbeAddOp3(v, OP_Column, iCur, 0, regHasNull);
26326be515ebSdrh sqlite3VdbeChangeP5(v, OPFLAG_TYPEOFARG);
26334c259e9fSdrh VdbeComment((v, "first_entry_in(%d)", iCur));
2634728e0f91Sdrh sqlite3VdbeJumpHere(v, addr1);
26356be515ebSdrh }
2636f9b2e05cSdan #endif
26376be515ebSdrh
2638bb53ecb1Sdrh
2639bb53ecb1Sdrh #ifndef SQLITE_OMIT_SUBQUERY
2640bb53ecb1Sdrh /*
2641bb53ecb1Sdrh ** The argument is an IN operator with a list (not a subquery) on the
2642bb53ecb1Sdrh ** right-hand side. Return TRUE if that list is constant.
2643bb53ecb1Sdrh */
sqlite3InRhsIsConstant(Expr * pIn)2644bb53ecb1Sdrh static int sqlite3InRhsIsConstant(Expr *pIn){
2645bb53ecb1Sdrh Expr *pLHS;
2646bb53ecb1Sdrh int res;
2647bb53ecb1Sdrh assert( !ExprHasProperty(pIn, EP_xIsSelect) );
2648bb53ecb1Sdrh pLHS = pIn->pLeft;
2649bb53ecb1Sdrh pIn->pLeft = 0;
2650bb53ecb1Sdrh res = sqlite3ExprIsConstant(pIn);
2651bb53ecb1Sdrh pIn->pLeft = pLHS;
2652bb53ecb1Sdrh return res;
2653bb53ecb1Sdrh }
2654bb53ecb1Sdrh #endif
2655bb53ecb1Sdrh
26566be515ebSdrh /*
26579a96b668Sdanielk1977 ** This function is used by the implementation of the IN (...) operator.
2658d4305ca6Sdrh ** The pX parameter is the expression on the RHS of the IN operator, which
2659d4305ca6Sdrh ** might be either a list of expressions or a subquery.
26609a96b668Sdanielk1977 **
2661d4305ca6Sdrh ** The job of this routine is to find or create a b-tree object that can
2662d4305ca6Sdrh ** be used either to test for membership in the RHS set or to iterate through
2663d4305ca6Sdrh ** all members of the RHS set, skipping duplicates.
2664d4305ca6Sdrh **
26653a85625dSdrh ** A cursor is opened on the b-tree object that is the RHS of the IN operator
2666b94182bdSdrh ** and the *piTab parameter is set to the index of that cursor.
2667d4305ca6Sdrh **
2668b74b1017Sdrh ** The returned value of this function indicates the b-tree type, as follows:
26699a96b668Sdanielk1977 **
26709a96b668Sdanielk1977 ** IN_INDEX_ROWID - The cursor was opened on a database table.
26711ccce449Sdrh ** IN_INDEX_INDEX_ASC - The cursor was opened on an ascending index.
26721ccce449Sdrh ** IN_INDEX_INDEX_DESC - The cursor was opened on a descending index.
26739a96b668Sdanielk1977 ** IN_INDEX_EPH - The cursor was opened on a specially created and
26749a96b668Sdanielk1977 ** populated epheremal table.
2675bb53ecb1Sdrh ** IN_INDEX_NOOP - No cursor was allocated. The IN operator must be
2676bb53ecb1Sdrh ** implemented as a sequence of comparisons.
26779a96b668Sdanielk1977 **
2678d4305ca6Sdrh ** An existing b-tree might be used if the RHS expression pX is a simple
2679d4305ca6Sdrh ** subquery such as:
26809a96b668Sdanielk1977 **
2681553168c7Sdan ** SELECT <column1>, <column2>... FROM <table>
26829a96b668Sdanielk1977 **
2683d4305ca6Sdrh ** If the RHS of the IN operator is a list or a more complex subquery, then
2684d4305ca6Sdrh ** an ephemeral table might need to be generated from the RHS and then
268560ec914cSpeter.d.reid ** pX->iTable made to point to the ephemeral table instead of an
2686b94182bdSdrh ** existing table. In this case, the creation and initialization of the
2687b94182bdSdrh ** ephmeral table might be put inside of a subroutine, the EP_Subrtn flag
2688b94182bdSdrh ** will be set on pX and the pX->y.sub fields will be set to show where
2689b94182bdSdrh ** the subroutine is coded.
2690d4305ca6Sdrh **
26917fc0ba0fSdrh ** The inFlags parameter must contain, at a minimum, one of the bits
26927fc0ba0fSdrh ** IN_INDEX_MEMBERSHIP or IN_INDEX_LOOP but not both. If inFlags contains
26937fc0ba0fSdrh ** IN_INDEX_MEMBERSHIP, then the generated table will be used for a fast
26947fc0ba0fSdrh ** membership test. When the IN_INDEX_LOOP bit is set, the IN index will
26957fc0ba0fSdrh ** be used to loop over all values of the RHS of the IN operator.
26963a85625dSdrh **
26973a85625dSdrh ** When IN_INDEX_LOOP is used (and the b-tree will be used to iterate
26983a85625dSdrh ** through the set members) then the b-tree must not contain duplicates.
26997fc0ba0fSdrh ** An epheremal table will be created unless the selected columns are guaranteed
2700553168c7Sdan ** to be unique - either because it is an INTEGER PRIMARY KEY or due to
2701553168c7Sdan ** a UNIQUE constraint or index.
27020cdc022eSdanielk1977 **
27033a85625dSdrh ** When IN_INDEX_MEMBERSHIP is used (and the b-tree will be used
27043a85625dSdrh ** for fast set membership tests) then an epheremal table must
2705553168c7Sdan ** be used unless <columns> is a single INTEGER PRIMARY KEY column or an
2706553168c7Sdan ** index can be found with the specified <columns> as its left-most.
27070cdc022eSdanielk1977 **
2708bb53ecb1Sdrh ** If the IN_INDEX_NOOP_OK and IN_INDEX_MEMBERSHIP are both set and
2709bb53ecb1Sdrh ** if the RHS of the IN operator is a list (not a subquery) then this
2710bb53ecb1Sdrh ** routine might decide that creating an ephemeral b-tree for membership
2711bb53ecb1Sdrh ** testing is too expensive and return IN_INDEX_NOOP. In that case, the
2712bb53ecb1Sdrh ** calling routine should implement the IN operator using a sequence
2713bb53ecb1Sdrh ** of Eq or Ne comparison operations.
2714bb53ecb1Sdrh **
2715b74b1017Sdrh ** When the b-tree is being used for membership tests, the calling function
27163a85625dSdrh ** might need to know whether or not the RHS side of the IN operator
2717e21a6e1dSdrh ** contains a NULL. If prRhsHasNull is not a NULL pointer and
27183a85625dSdrh ** if there is any chance that the (...) might contain a NULL value at
27190cdc022eSdanielk1977 ** runtime, then a register is allocated and the register number written
2720e21a6e1dSdrh ** to *prRhsHasNull. If there is no chance that the (...) contains a
2721e21a6e1dSdrh ** NULL value, then *prRhsHasNull is left unchanged.
27220cdc022eSdanielk1977 **
2723e21a6e1dSdrh ** If a register is allocated and its location stored in *prRhsHasNull, then
27246be515ebSdrh ** the value in that register will be NULL if the b-tree contains one or more
27256be515ebSdrh ** NULL values, and it will be some non-NULL value if the b-tree contains no
27266be515ebSdrh ** NULL values.
2727553168c7Sdan **
2728553168c7Sdan ** If the aiMap parameter is not NULL, it must point to an array containing
2729553168c7Sdan ** one element for each column returned by the SELECT statement on the RHS
2730553168c7Sdan ** of the IN(...) operator. The i'th entry of the array is populated with the
2731553168c7Sdan ** offset of the index column that matches the i'th column returned by the
2732553168c7Sdan ** SELECT. For example, if the expression and selected index are:
2733553168c7Sdan **
2734553168c7Sdan ** (?,?,?) IN (SELECT a, b, c FROM t1)
2735553168c7Sdan ** CREATE INDEX i1 ON t1(b, c, a);
2736553168c7Sdan **
2737553168c7Sdan ** then aiMap[] is populated with {2, 0, 1}.
27389a96b668Sdanielk1977 */
2739284f4acaSdanielk1977 #ifndef SQLITE_OMIT_SUBQUERY
sqlite3FindInIndex(Parse * pParse,Expr * pX,u32 inFlags,int * prRhsHasNull,int * aiMap,int * piTab)2740ba00e30aSdan int sqlite3FindInIndex(
27416fc8f364Sdrh Parse *pParse, /* Parsing context */
27420167ef20Sdrh Expr *pX, /* The IN expression */
27436fc8f364Sdrh u32 inFlags, /* IN_INDEX_LOOP, _MEMBERSHIP, and/or _NOOP_OK */
27446fc8f364Sdrh int *prRhsHasNull, /* Register holding NULL status. See notes */
27452c04131cSdrh int *aiMap, /* Mapping from Index fields to RHS fields */
27462c04131cSdrh int *piTab /* OUT: index to use */
2747ba00e30aSdan ){
2748b74b1017Sdrh Select *p; /* SELECT to the right of IN operator */
2749b74b1017Sdrh int eType = 0; /* Type of RHS table. IN_INDEX_* */
27503a45d30eSdrh int iTab; /* Cursor of the RHS table */
27513a85625dSdrh int mustBeUnique; /* True if RHS must be unique */
2752b8475df8Sdrh Vdbe *v = sqlite3GetVdbe(pParse); /* Virtual machine being coded */
27539a96b668Sdanielk1977
27541450bc6eSdrh assert( pX->op==TK_IN );
27553a85625dSdrh mustBeUnique = (inFlags & IN_INDEX_LOOP)!=0;
27563a45d30eSdrh iTab = pParse->nTab++;
27571450bc6eSdrh
27587b35a77bSdan /* If the RHS of this IN(...) operator is a SELECT, and if it matters
27597b35a77bSdan ** whether or not the SELECT result contains NULL values, check whether
2760870a0705Sdan ** or not NULL is actually possible (it may not be, for example, due
27617b35a77bSdan ** to NOT NULL constraints in the schema). If no NULL values are possible,
2762870a0705Sdan ** set prRhsHasNull to 0 before continuing. */
2763a4eeccdfSdrh if( prRhsHasNull && ExprUseXSelect(pX) ){
27647b35a77bSdan int i;
27657b35a77bSdan ExprList *pEList = pX->x.pSelect->pEList;
27667b35a77bSdan for(i=0; i<pEList->nExpr; i++){
27677b35a77bSdan if( sqlite3ExprCanBeNull(pEList->a[i].pExpr) ) break;
27687b35a77bSdan }
27697b35a77bSdan if( i==pEList->nExpr ){
27707b35a77bSdan prRhsHasNull = 0;
27717b35a77bSdan }
27727b35a77bSdan }
27737b35a77bSdan
2774b74b1017Sdrh /* Check to see if an existing table or index can be used to
2775b74b1017Sdrh ** satisfy the query. This is preferable to generating a new
27767b35a77bSdan ** ephemeral table. */
27777b35a77bSdan if( pParse->nErr==0 && (p = isCandidateForInOpt(pX))!=0 ){
2778e1fb65a0Sdanielk1977 sqlite3 *db = pParse->db; /* Database connection */
2779b07028f7Sdrh Table *pTab; /* Table <table>. */
2780399062ccSdrh int iDb; /* Database idx for pTab */
2781cfbb5e82Sdan ExprList *pEList = p->pEList;
2782cfbb5e82Sdan int nExpr = pEList->nExpr;
2783e1fb65a0Sdanielk1977
2784b07028f7Sdrh assert( p->pEList!=0 ); /* Because of isCandidateForInOpt(p) */
2785b07028f7Sdrh assert( p->pEList->a[0].pExpr!=0 ); /* Because of isCandidateForInOpt(p) */
2786b07028f7Sdrh assert( p->pSrc!=0 ); /* Because of isCandidateForInOpt(p) */
2787b07028f7Sdrh pTab = p->pSrc->a[0].pTab;
2788b07028f7Sdrh
2789b22f7c83Sdrh /* Code an OP_Transaction and OP_TableLock for <table>. */
2790e1fb65a0Sdanielk1977 iDb = sqlite3SchemaToIndex(db, pTab->pSchema);
2791099b385dSdrh assert( iDb>=0 && iDb<SQLITE_MAX_DB );
2792e1fb65a0Sdanielk1977 sqlite3CodeVerifySchema(pParse, iDb);
2793e1fb65a0Sdanielk1977 sqlite3TableLock(pParse, iDb, pTab->tnum, 0, pTab->zName);
27949a96b668Sdanielk1977
2795a84a283dSdrh assert(v); /* sqlite3GetVdbe() has always been previously called */
2796cfbb5e82Sdan if( nExpr==1 && pEList->a[0].pExpr->iColumn<0 ){
279762659b2aSdrh /* The "x IN (SELECT rowid FROM table)" case */
2798511f9e8dSdrh int iAddr = sqlite3VdbeAddOp0(v, OP_Once);
27997d176105Sdrh VdbeCoverage(v);
28009a96b668Sdanielk1977
28019a96b668Sdanielk1977 sqlite3OpenTable(pParse, iTab, iDb, pTab, OP_OpenRead);
28029a96b668Sdanielk1977 eType = IN_INDEX_ROWID;
2803d8852095Sdrh ExplainQueryPlan((pParse, 0,
2804d8852095Sdrh "USING ROWID SEARCH ON TABLE %s FOR IN-OPERATOR",pTab->zName));
28059a96b668Sdanielk1977 sqlite3VdbeJumpHere(v, iAddr);
28069a96b668Sdanielk1977 }else{
2807e1fb65a0Sdanielk1977 Index *pIdx; /* Iterator variable */
2808cfbb5e82Sdan int affinity_ok = 1;
2809cfbb5e82Sdan int i;
2810cfbb5e82Sdan
2811cfbb5e82Sdan /* Check that the affinity that will be used to perform each
281262659b2aSdrh ** comparison is the same as the affinity of each column in table
281362659b2aSdrh ** on the RHS of the IN operator. If it not, it is not possible to
281462659b2aSdrh ** use any index of the RHS table. */
2815cfbb5e82Sdan for(i=0; i<nExpr && affinity_ok; i++){
2816fc7f27b9Sdrh Expr *pLhs = sqlite3VectorFieldSubexpr(pX->pLeft, i);
2817cfbb5e82Sdan int iCol = pEList->a[i].pExpr->iColumn;
28180dfa4f6fSdrh char idxaff = sqlite3TableColumnAffinity(pTab,iCol); /* RHS table */
2819cfbb5e82Sdan char cmpaff = sqlite3CompareAffinity(pLhs, idxaff);
282062659b2aSdrh testcase( cmpaff==SQLITE_AFF_BLOB );
282162659b2aSdrh testcase( cmpaff==SQLITE_AFF_TEXT );
2822cfbb5e82Sdan switch( cmpaff ){
2823cfbb5e82Sdan case SQLITE_AFF_BLOB:
2824cfbb5e82Sdan break;
2825cfbb5e82Sdan case SQLITE_AFF_TEXT:
282662659b2aSdrh /* sqlite3CompareAffinity() only returns TEXT if one side or the
282762659b2aSdrh ** other has no affinity and the other side is TEXT. Hence,
282862659b2aSdrh ** the only way for cmpaff to be TEXT is for idxaff to be TEXT
282962659b2aSdrh ** and for the term on the LHS of the IN to have no affinity. */
283062659b2aSdrh assert( idxaff==SQLITE_AFF_TEXT );
2831cfbb5e82Sdan break;
2832cfbb5e82Sdan default:
2833cfbb5e82Sdan affinity_ok = sqlite3IsNumericAffinity(idxaff);
2834cfbb5e82Sdan }
2835cfbb5e82Sdan }
2836e1fb65a0Sdanielk1977
2837a84a283dSdrh if( affinity_ok ){
2838a84a283dSdrh /* Search for an existing index that will work for this IN operator */
2839a84a283dSdrh for(pIdx=pTab->pIndex; pIdx && eType==0; pIdx=pIdx->pNext){
2840a84a283dSdrh Bitmask colUsed; /* Columns of the index used */
2841a84a283dSdrh Bitmask mCol; /* Mask for the current column */
28426fc8f364Sdrh if( pIdx->nColumn<nExpr ) continue;
2843d4a4a361Sdrh if( pIdx->pPartIdxWhere!=0 ) continue;
2844a84a283dSdrh /* Maximum nColumn is BMS-2, not BMS-1, so that we can compute
2845a84a283dSdrh ** BITMASK(nExpr) without overflowing */
2846a84a283dSdrh testcase( pIdx->nColumn==BMS-2 );
2847a84a283dSdrh testcase( pIdx->nColumn==BMS-1 );
2848a84a283dSdrh if( pIdx->nColumn>=BMS-1 ) continue;
28496fc8f364Sdrh if( mustBeUnique ){
28506fc8f364Sdrh if( pIdx->nKeyCol>nExpr
28516fc8f364Sdrh ||(pIdx->nColumn>nExpr && !IsUniqueIndex(pIdx))
28526fc8f364Sdrh ){
2853a84a283dSdrh continue; /* This index is not unique over the IN RHS columns */
2854cfbb5e82Sdan }
28556fc8f364Sdrh }
2856cfbb5e82Sdan
2857a84a283dSdrh colUsed = 0; /* Columns of index used so far */
2858cfbb5e82Sdan for(i=0; i<nExpr; i++){
2859fc7f27b9Sdrh Expr *pLhs = sqlite3VectorFieldSubexpr(pX->pLeft, i);
2860cfbb5e82Sdan Expr *pRhs = pEList->a[i].pExpr;
2861cfbb5e82Sdan CollSeq *pReq = sqlite3BinaryCompareCollSeq(pParse, pLhs, pRhs);
2862cfbb5e82Sdan int j;
2863cfbb5e82Sdan
28640c7d3d39Sdrh assert( pReq!=0 || pRhs->iColumn==XN_ROWID || pParse->nErr );
2865cfbb5e82Sdan for(j=0; j<nExpr; j++){
2866cfbb5e82Sdan if( pIdx->aiColumn[j]!=pRhs->iColumn ) continue;
2867cfbb5e82Sdan assert( pIdx->azColl[j] );
2868106526e1Sdrh if( pReq!=0 && sqlite3StrICmp(pReq->zName, pIdx->azColl[j])!=0 ){
2869106526e1Sdrh continue;
2870106526e1Sdrh }
2871cfbb5e82Sdan break;
2872cfbb5e82Sdan }
2873cfbb5e82Sdan if( j==nExpr ) break;
2874a84a283dSdrh mCol = MASKBIT(j);
2875a84a283dSdrh if( mCol & colUsed ) break; /* Each column used only once */
2876a84a283dSdrh colUsed |= mCol;
2877ba00e30aSdan if( aiMap ) aiMap[i] = j;
2878cfbb5e82Sdan }
2879cfbb5e82Sdan
2880a84a283dSdrh assert( i==nExpr || colUsed!=(MASKBIT(nExpr)-1) );
2881a84a283dSdrh if( colUsed==(MASKBIT(nExpr)-1) ){
2882a84a283dSdrh /* If we reach this point, that means the index pIdx is usable */
2883511f9e8dSdrh int iAddr = sqlite3VdbeAddOp0(v, OP_Once); VdbeCoverage(v);
2884e2ca99c9Sdrh ExplainQueryPlan((pParse, 0,
2885e2ca99c9Sdrh "USING INDEX %s FOR IN-OPERATOR",pIdx->zName));
28862ec2fb22Sdrh sqlite3VdbeAddOp3(v, OP_OpenRead, iTab, pIdx->tnum, iDb);
28872ec2fb22Sdrh sqlite3VdbeSetP4KeyInfo(pParse, pIdx);
2888207872a4Sdanielk1977 VdbeComment((v, "%s", pIdx->zName));
28891ccce449Sdrh assert( IN_INDEX_INDEX_DESC == IN_INDEX_INDEX_ASC+1 );
28901ccce449Sdrh eType = IN_INDEX_INDEX_ASC + pIdx->aSortOrder[0];
28919a96b668Sdanielk1977
28927b35a77bSdan if( prRhsHasNull ){
28933480bfdaSdan #ifdef SQLITE_ENABLE_COLUMN_USED_MASK
2894cfbb5e82Sdan i64 mask = (1<<nExpr)-1;
28953480bfdaSdan sqlite3VdbeAddOp4Dup8(v, OP_ColumnsUsed,
2896cfbb5e82Sdan iTab, 0, 0, (u8*)&mask, P4_INT64);
28973480bfdaSdan #endif
2898b80dbdc2Sdrh *prRhsHasNull = ++pParse->nMem;
28997b35a77bSdan if( nExpr==1 ){
29006be515ebSdrh sqlite3SetHasNullFlag(v, iTab, *prRhsHasNull);
29010cdc022eSdanielk1977 }
29027b35a77bSdan }
2903552fd454Sdrh sqlite3VdbeJumpHere(v, iAddr);
29049a96b668Sdanielk1977 }
2905a84a283dSdrh } /* End loop over indexes */
2906a84a283dSdrh } /* End if( affinity_ok ) */
2907a84a283dSdrh } /* End if not an rowid index */
2908a84a283dSdrh } /* End attempt to optimize using an index */
29099a96b668Sdanielk1977
2910bb53ecb1Sdrh /* If no preexisting index is available for the IN clause
2911bb53ecb1Sdrh ** and IN_INDEX_NOOP is an allowed reply
2912bb53ecb1Sdrh ** and the RHS of the IN operator is a list, not a subquery
291371c57db0Sdan ** and the RHS is not constant or has two or fewer terms,
291460ec914cSpeter.d.reid ** then it is not worth creating an ephemeral table to evaluate
2915bb53ecb1Sdrh ** the IN operator so return IN_INDEX_NOOP.
2916bb53ecb1Sdrh */
2917bb53ecb1Sdrh if( eType==0
2918bb53ecb1Sdrh && (inFlags & IN_INDEX_NOOP_OK)
2919a4eeccdfSdrh && ExprUseXList(pX)
2920bb53ecb1Sdrh && (!sqlite3InRhsIsConstant(pX) || pX->x.pList->nExpr<=2)
2921bb53ecb1Sdrh ){
2922b94182bdSdrh pParse->nTab--; /* Back out the allocation of the unused cursor */
2923b94182bdSdrh iTab = -1; /* Cursor is not allocated */
2924bb53ecb1Sdrh eType = IN_INDEX_NOOP;
2925bb53ecb1Sdrh }
2926bb53ecb1Sdrh
29279a96b668Sdanielk1977 if( eType==0 ){
29284387006cSdrh /* Could not find an existing table or index to use as the RHS b-tree.
2929b74b1017Sdrh ** We will have to generate an ephemeral table to do the job.
2930b74b1017Sdrh */
29318e23daf3Sdrh u32 savedNQueryLoop = pParse->nQueryLoop;
29320cdc022eSdanielk1977 int rMayHaveNull = 0;
293341a05b7bSdanielk1977 eType = IN_INDEX_EPH;
29343a85625dSdrh if( inFlags & IN_INDEX_LOOP ){
29354a5acf8eSdrh pParse->nQueryLoop = 0;
2936e21a6e1dSdrh }else if( prRhsHasNull ){
2937e21a6e1dSdrh *prRhsHasNull = rMayHaveNull = ++pParse->nMem;
2938cf4d38aaSdrh }
293985bcdce2Sdrh assert( pX->op==TK_IN );
294050ef6716Sdrh sqlite3CodeRhsOfIN(pParse, pX, iTab);
294185bcdce2Sdrh if( rMayHaveNull ){
29422c04131cSdrh sqlite3SetHasNullFlag(v, iTab, rMayHaveNull);
294385bcdce2Sdrh }
2944cf4d38aaSdrh pParse->nQueryLoop = savedNQueryLoop;
29459a96b668Sdanielk1977 }
2946ba00e30aSdan
2947ba00e30aSdan if( aiMap && eType!=IN_INDEX_INDEX_ASC && eType!=IN_INDEX_INDEX_DESC ){
2948ba00e30aSdan int i, n;
2949ba00e30aSdan n = sqlite3ExprVectorSize(pX->pLeft);
2950ba00e30aSdan for(i=0; i<n; i++) aiMap[i] = i;
2951ba00e30aSdan }
29522c04131cSdrh *piTab = iTab;
29539a96b668Sdanielk1977 return eType;
29549a96b668Sdanielk1977 }
2955284f4acaSdanielk1977 #endif
2956626a879aSdrh
2957f9b2e05cSdan #ifndef SQLITE_OMIT_SUBQUERY
2958553168c7Sdan /*
2959553168c7Sdan ** Argument pExpr is an (?, ?...) IN(...) expression. This
2960553168c7Sdan ** function allocates and returns a nul-terminated string containing
2961553168c7Sdan ** the affinities to be used for each column of the comparison.
2962553168c7Sdan **
2963553168c7Sdan ** It is the responsibility of the caller to ensure that the returned
2964553168c7Sdan ** string is eventually freed using sqlite3DbFree().
2965553168c7Sdan */
exprINAffinity(Parse * pParse,const Expr * pExpr)2966b6dad520Sdrh static char *exprINAffinity(Parse *pParse, const Expr *pExpr){
296771c57db0Sdan Expr *pLeft = pExpr->pLeft;
296871c57db0Sdan int nVal = sqlite3ExprVectorSize(pLeft);
2969a4eeccdfSdrh Select *pSelect = ExprUseXSelect(pExpr) ? pExpr->x.pSelect : 0;
297071c57db0Sdan char *zRet;
297171c57db0Sdan
2972553168c7Sdan assert( pExpr->op==TK_IN );
29735c258dc1Sdrh zRet = sqlite3DbMallocRaw(pParse->db, nVal+1);
297471c57db0Sdan if( zRet ){
297571c57db0Sdan int i;
297671c57db0Sdan for(i=0; i<nVal; i++){
2977fc7f27b9Sdrh Expr *pA = sqlite3VectorFieldSubexpr(pLeft, i);
2978553168c7Sdan char a = sqlite3ExprAffinity(pA);
2979553168c7Sdan if( pSelect ){
2980553168c7Sdan zRet[i] = sqlite3CompareAffinity(pSelect->pEList->a[i].pExpr, a);
298171c57db0Sdan }else{
2982553168c7Sdan zRet[i] = a;
298371c57db0Sdan }
298471c57db0Sdan }
298571c57db0Sdan zRet[nVal] = '\0';
298671c57db0Sdan }
298771c57db0Sdan return zRet;
298871c57db0Sdan }
2989f9b2e05cSdan #endif
299071c57db0Sdan
29918da209b1Sdan #ifndef SQLITE_OMIT_SUBQUERY
29928da209b1Sdan /*
29938da209b1Sdan ** Load the Parse object passed as the first argument with an error
29948da209b1Sdan ** message of the form:
29958da209b1Sdan **
29968da209b1Sdan ** "sub-select returns N columns - expected M"
29978da209b1Sdan */
sqlite3SubselectError(Parse * pParse,int nActual,int nExpect)29988da209b1Sdan void sqlite3SubselectError(Parse *pParse, int nActual, int nExpect){
2999a9ebfe20Sdrh if( pParse->nErr==0 ){
30008da209b1Sdan const char *zFmt = "sub-select returns %d columns - expected %d";
30018da209b1Sdan sqlite3ErrorMsg(pParse, zFmt, nActual, nExpect);
30028da209b1Sdan }
3003a9ebfe20Sdrh }
30048da209b1Sdan #endif
30058da209b1Sdan
3006626a879aSdrh /*
300744c5604cSdan ** Expression pExpr is a vector that has been used in a context where
300844c5604cSdan ** it is not permitted. If pExpr is a sub-select vector, this routine
300944c5604cSdan ** loads the Parse object with a message of the form:
301044c5604cSdan **
301144c5604cSdan ** "sub-select returns N columns - expected 1"
301244c5604cSdan **
301344c5604cSdan ** Or, if it is a regular scalar vector:
301444c5604cSdan **
301544c5604cSdan ** "row value misused"
301644c5604cSdan */
sqlite3VectorErrorMsg(Parse * pParse,Expr * pExpr)301744c5604cSdan void sqlite3VectorErrorMsg(Parse *pParse, Expr *pExpr){
301844c5604cSdan #ifndef SQLITE_OMIT_SUBQUERY
3019a4eeccdfSdrh if( ExprUseXSelect(pExpr) ){
302044c5604cSdan sqlite3SubselectError(pParse, pExpr->x.pSelect->pEList->nExpr, 1);
302144c5604cSdan }else
302244c5604cSdan #endif
302344c5604cSdan {
302444c5604cSdan sqlite3ErrorMsg(pParse, "row value misused");
302544c5604cSdan }
302644c5604cSdan }
302744c5604cSdan
302885bcdce2Sdrh #ifndef SQLITE_OMIT_SUBQUERY
302944c5604cSdan /*
303085bcdce2Sdrh ** Generate code that will construct an ephemeral table containing all terms
303185bcdce2Sdrh ** in the RHS of an IN operator. The IN operator can be in either of two
303285bcdce2Sdrh ** forms:
3033626a879aSdrh **
30349cbe6352Sdrh ** x IN (4,5,11) -- IN operator with list on right-hand side
30359cbe6352Sdrh ** x IN (SELECT a FROM b) -- IN operator with subquery on the right
3036fef5208cSdrh **
30372c04131cSdrh ** The pExpr parameter is the IN operator. The cursor number for the
30382c04131cSdrh ** constructed ephermeral table is returned. The first time the ephemeral
30392c04131cSdrh ** table is computed, the cursor number is also stored in pExpr->iTable,
30402c04131cSdrh ** however the cursor number returned might not be the same, as it might
30412c04131cSdrh ** have been duplicated using OP_OpenDup.
304241a05b7bSdanielk1977 **
304385bcdce2Sdrh ** If the LHS expression ("x" in the examples) is a column value, or
304485bcdce2Sdrh ** the SELECT statement returns a column value, then the affinity of that
304585bcdce2Sdrh ** column is used to build the index keys. If both 'x' and the
304685bcdce2Sdrh ** SELECT... statement are columns, then numeric affinity is used
304785bcdce2Sdrh ** if either column has NUMERIC or INTEGER affinity. If neither
304885bcdce2Sdrh ** 'x' nor the SELECT... statement are columns, then numeric affinity
304985bcdce2Sdrh ** is used.
3050cce7d176Sdrh */
sqlite3CodeRhsOfIN(Parse * pParse,Expr * pExpr,int iTab)305185bcdce2Sdrh void sqlite3CodeRhsOfIN(
3052fd773cf9Sdrh Parse *pParse, /* Parsing context */
305385bcdce2Sdrh Expr *pExpr, /* The IN operator */
305450ef6716Sdrh int iTab /* Use this cursor number */
305541a05b7bSdanielk1977 ){
30562c04131cSdrh int addrOnce = 0; /* Address of the OP_Once instruction at top */
305785bcdce2Sdrh int addr; /* Address of OP_OpenEphemeral instruction */
305885bcdce2Sdrh Expr *pLeft; /* the LHS of the IN operator */
305985bcdce2Sdrh KeyInfo *pKeyInfo = 0; /* Key information */
306085bcdce2Sdrh int nVal; /* Size of vector pLeft */
306185bcdce2Sdrh Vdbe *v; /* The prepared statement under construction */
3062fc976065Sdanielk1977
30632c04131cSdrh v = pParse->pVdbe;
306485bcdce2Sdrh assert( v!=0 );
306585bcdce2Sdrh
30662c04131cSdrh /* The evaluation of the IN must be repeated every time it
306739a11819Sdrh ** is encountered if any of the following is true:
306857dbd7b3Sdrh **
306957dbd7b3Sdrh ** * The right-hand side is a correlated subquery
307057dbd7b3Sdrh ** * The right-hand side is an expression list containing variables
307157dbd7b3Sdrh ** * We are inside a trigger
307257dbd7b3Sdrh **
30732c04131cSdrh ** If all of the above are false, then we can compute the RHS just once
30742c04131cSdrh ** and reuse it many names.
3075b3bce662Sdanielk1977 */
3076efb699fcSdrh if( !ExprHasProperty(pExpr, EP_VarSelect) && pParse->iSelfTab==0 ){
30772c04131cSdrh /* Reuse of the RHS is allowed */
30782c04131cSdrh /* If this routine has already been coded, but the previous code
30792c04131cSdrh ** might not have been invoked yet, so invoke it now as a subroutine.
30802c04131cSdrh */
30812c04131cSdrh if( ExprHasProperty(pExpr, EP_Subrtn) ){
3082f9231c34Sdrh addrOnce = sqlite3VdbeAddOp0(v, OP_Once); VdbeCoverage(v);
3083a4eeccdfSdrh if( ExprUseXSelect(pExpr) ){
3084bd462bccSdrh ExplainQueryPlan((pParse, 0, "REUSE LIST SUBQUERY %d",
3085bd462bccSdrh pExpr->x.pSelect->selId));
3086bd462bccSdrh }
3087477572b9Sdrh assert( ExprUseYSub(pExpr) );
30882c04131cSdrh sqlite3VdbeAddOp2(v, OP_Gosub, pExpr->y.sub.regReturn,
30892c04131cSdrh pExpr->y.sub.iAddr);
3090086b800fSdrh assert( iTab!=pExpr->iTable );
30912c04131cSdrh sqlite3VdbeAddOp2(v, OP_OpenDup, iTab, pExpr->iTable);
3092f9231c34Sdrh sqlite3VdbeJumpHere(v, addrOnce);
30932c04131cSdrh return;
30942c04131cSdrh }
30952c04131cSdrh
30962c04131cSdrh /* Begin coding the subroutine */
3097477572b9Sdrh assert( !ExprUseYWin(pExpr) );
30982c04131cSdrh ExprSetProperty(pExpr, EP_Subrtn);
3099088489e8Sdrh assert( !ExprHasProperty(pExpr, EP_TokenOnly|EP_Reduced) );
31002c04131cSdrh pExpr->y.sub.regReturn = ++pParse->nMem;
31012c04131cSdrh pExpr->y.sub.iAddr =
31021902516dSdrh sqlite3VdbeAddOp2(v, OP_BeginSubrtn, 0, pExpr->y.sub.regReturn) + 1;
31032c04131cSdrh
31042c04131cSdrh addrOnce = sqlite3VdbeAddOp0(v, OP_Once); VdbeCoverage(v);
3105b3bce662Sdanielk1977 }
3106b3bce662Sdanielk1977
310785bcdce2Sdrh /* Check to see if this is a vector IN operator */
310885bcdce2Sdrh pLeft = pExpr->pLeft;
310971c57db0Sdan nVal = sqlite3ExprVectorSize(pLeft);
3110e014a838Sdanielk1977
311185bcdce2Sdrh /* Construct the ephemeral table that will contain the content of
311285bcdce2Sdrh ** RHS of the IN operator.
3113fef5208cSdrh */
31142c04131cSdrh pExpr->iTable = iTab;
311550ef6716Sdrh addr = sqlite3VdbeAddOp2(v, OP_OpenEphemeral, pExpr->iTable, nVal);
31162c04131cSdrh #ifdef SQLITE_ENABLE_EXPLAIN_COMMENTS
3117a4eeccdfSdrh if( ExprUseXSelect(pExpr) ){
31182c04131cSdrh VdbeComment((v, "Result of SELECT %u", pExpr->x.pSelect->selId));
31192c04131cSdrh }else{
31202c04131cSdrh VdbeComment((v, "RHS of IN operator"));
31212c04131cSdrh }
31222c04131cSdrh #endif
312350ef6716Sdrh pKeyInfo = sqlite3KeyInfoAlloc(pParse->db, nVal, 1);
3124e014a838Sdanielk1977
3125a4eeccdfSdrh if( ExprUseXSelect(pExpr) ){
3126e014a838Sdanielk1977 /* Case 1: expr IN (SELECT ...)
3127e014a838Sdanielk1977 **
3128e014a838Sdanielk1977 ** Generate code to write the results of the select into the temporary
3129e014a838Sdanielk1977 ** table allocated and opened above.
3130e014a838Sdanielk1977 */
31314387006cSdrh Select *pSelect = pExpr->x.pSelect;
313271c57db0Sdan ExprList *pEList = pSelect->pEList;
31331013c932Sdrh
31342c04131cSdrh ExplainQueryPlan((pParse, 1, "%sLIST SUBQUERY %d",
31352c04131cSdrh addrOnce?"":"CORRELATED ", pSelect->selId
3136e2ca99c9Sdrh ));
313764bcb8cfSdrh /* If the LHS and RHS of the IN operator do not match, that
313864bcb8cfSdrh ** error will have been caught long before we reach this point. */
313964bcb8cfSdrh if( ALWAYS(pEList->nExpr==nVal) ){
314014c4d428Sdrh Select *pCopy;
314171c57db0Sdan SelectDest dest;
314271c57db0Sdan int i;
314314c4d428Sdrh int rc;
3144bd462bccSdrh sqlite3SelectDestInit(&dest, SRT_Set, iTab);
314571c57db0Sdan dest.zAffSdst = exprINAffinity(pParse, pExpr);
31464387006cSdrh pSelect->iLimit = 0;
31474387006cSdrh testcase( pSelect->selFlags & SF_Distinct );
3148812ea833Sdrh testcase( pKeyInfo==0 ); /* Caused by OOM in sqlite3KeyInfoAlloc() */
314914c4d428Sdrh pCopy = sqlite3SelectDup(pParse->db, pSelect, 0);
315014c4d428Sdrh rc = pParse->db->mallocFailed ? 1 :sqlite3Select(pParse, pCopy, &dest);
315114c4d428Sdrh sqlite3SelectDelete(pParse->db, pCopy);
315271c57db0Sdan sqlite3DbFree(pParse->db, dest.zAffSdst);
315314c4d428Sdrh if( rc ){
31542ec2fb22Sdrh sqlite3KeyInfoUnref(pKeyInfo);
315585bcdce2Sdrh return;
315694ccde58Sdrh }
3157812ea833Sdrh assert( pKeyInfo!=0 ); /* OOM will cause exit after sqlite3Select() */
31583535ec3eSdrh assert( pEList!=0 );
31593535ec3eSdrh assert( pEList->nExpr>0 );
31602ec2fb22Sdrh assert( sqlite3KeyInfoIsWriteable(pKeyInfo) );
316171c57db0Sdan for(i=0; i<nVal; i++){
3162773d3afaSdan Expr *p = sqlite3VectorFieldSubexpr(pLeft, i);
316371c57db0Sdan pKeyInfo->aColl[i] = sqlite3BinaryCompareCollSeq(
316471c57db0Sdan pParse, p, pEList->a[i].pExpr
316571c57db0Sdan );
316671c57db0Sdan }
316771c57db0Sdan }
3168a7d2db17Sdrh }else if( ALWAYS(pExpr->x.pList!=0) ){
3169fef5208cSdrh /* Case 2: expr IN (exprlist)
3170fef5208cSdrh **
3171e014a838Sdanielk1977 ** For each expression, build an index key from the evaluation and
3172e014a838Sdanielk1977 ** store it in the temporary table. If <expr> is a column, then use
3173e014a838Sdanielk1977 ** that columns affinity when building index keys. If <expr> is not
3174e014a838Sdanielk1977 ** a column, use numeric affinity.
3175fef5208cSdrh */
317671c57db0Sdan char affinity; /* Affinity of the LHS of the IN */
3177e014a838Sdanielk1977 int i;
31786ab3a2ecSdanielk1977 ExprList *pList = pExpr->x.pList;
317957dbd7b3Sdrh struct ExprList_item *pItem;
3180c324d446Sdan int r1, r2;
318171c57db0Sdan affinity = sqlite3ExprAffinity(pLeft);
318296fb16eeSdrh if( affinity<=SQLITE_AFF_NONE ){
318305883a34Sdrh affinity = SQLITE_AFF_BLOB;
318495b39590Sdrh }else if( affinity==SQLITE_AFF_REAL ){
318595b39590Sdrh affinity = SQLITE_AFF_NUMERIC;
3186e014a838Sdanielk1977 }
3187323df790Sdrh if( pKeyInfo ){
31882ec2fb22Sdrh assert( sqlite3KeyInfoIsWriteable(pKeyInfo) );
3189323df790Sdrh pKeyInfo->aColl[0] = sqlite3ExprCollSeq(pParse, pExpr->pLeft);
3190323df790Sdrh }
3191e014a838Sdanielk1977
3192e014a838Sdanielk1977 /* Loop through each expression in <exprlist>. */
31932d401ab8Sdrh r1 = sqlite3GetTempReg(pParse);
31942d401ab8Sdrh r2 = sqlite3GetTempReg(pParse);
319557dbd7b3Sdrh for(i=pList->nExpr, pItem=pList->a; i>0; i--, pItem++){
319657dbd7b3Sdrh Expr *pE2 = pItem->pExpr;
3197e014a838Sdanielk1977
319857dbd7b3Sdrh /* If the expression is not constant then we will need to
319957dbd7b3Sdrh ** disable the test that was generated above that makes sure
320057dbd7b3Sdrh ** this code only executes once. Because for a non-constant
320157dbd7b3Sdrh ** expression we need to rerun this code each time.
320257dbd7b3Sdrh */
32032c04131cSdrh if( addrOnce && !sqlite3ExprIsConstant(pE2) ){
32041902516dSdrh sqlite3VdbeChangeToNoop(v, addrOnce-1);
32052c04131cSdrh sqlite3VdbeChangeToNoop(v, addrOnce);
32067ac0e562Sdan ExprClearProperty(pExpr, EP_Subrtn);
32072c04131cSdrh addrOnce = 0;
32084794b980Sdrh }
3209e014a838Sdanielk1977
3210e014a838Sdanielk1977 /* Evaluate the expression and insert it into the temp table */
3211c324d446Sdan sqlite3ExprCode(pParse, pE2, r1);
3212c324d446Sdan sqlite3VdbeAddOp4(v, OP_MakeRecord, r1, 1, r2, &affinity, 1);
3213c324d446Sdan sqlite3VdbeAddOp4Int(v, OP_IdxInsert, iTab, r2, r1, 1);
3214fef5208cSdrh }
32152d401ab8Sdrh sqlite3ReleaseTempReg(pParse, r1);
32162d401ab8Sdrh sqlite3ReleaseTempReg(pParse, r2);
3217fef5208cSdrh }
3218323df790Sdrh if( pKeyInfo ){
32192ec2fb22Sdrh sqlite3VdbeChangeP4(v, addr, (void *)pKeyInfo, P4_KEYINFO);
322041a05b7bSdanielk1977 }
32212c04131cSdrh if( addrOnce ){
32228b9a3d1fSdrh sqlite3VdbeAddOp1(v, OP_NullRow, iTab);
32232c04131cSdrh sqlite3VdbeJumpHere(v, addrOnce);
32242c04131cSdrh /* Subroutine return */
3225477572b9Sdrh assert( ExprUseYSub(pExpr) );
32261902516dSdrh assert( sqlite3VdbeGetOp(v,pExpr->y.sub.iAddr-1)->opcode==OP_BeginSubrtn
32271902516dSdrh || pParse->nErr );
32282bd9f44aSdrh sqlite3VdbeAddOp3(v, OP_Return, pExpr->y.sub.regReturn,
32292bd9f44aSdrh pExpr->y.sub.iAddr, 1);
32302bd9f44aSdrh VdbeCoverage(v);
32316d2566dfSdrh sqlite3ClearTempRegCache(pParse);
323285bcdce2Sdrh }
323385bcdce2Sdrh }
323485bcdce2Sdrh #endif /* SQLITE_OMIT_SUBQUERY */
323585bcdce2Sdrh
323685bcdce2Sdrh /*
323785bcdce2Sdrh ** Generate code for scalar subqueries used as a subquery expression
323885bcdce2Sdrh ** or EXISTS operator:
323985bcdce2Sdrh **
324085bcdce2Sdrh ** (SELECT a FROM b) -- subquery
324185bcdce2Sdrh ** EXISTS (SELECT a FROM b) -- EXISTS subquery
324285bcdce2Sdrh **
324385bcdce2Sdrh ** The pExpr parameter is the SELECT or EXISTS operator to be coded.
324485bcdce2Sdrh **
3245d86fe44aSdrh ** Return the register that holds the result. For a multi-column SELECT,
324685bcdce2Sdrh ** the result is stored in a contiguous array of registers and the
324785bcdce2Sdrh ** return value is the register of the left-most result column.
324885bcdce2Sdrh ** Return 0 if an error occurs.
324985bcdce2Sdrh */
325085bcdce2Sdrh #ifndef SQLITE_OMIT_SUBQUERY
sqlite3CodeSubselect(Parse * pParse,Expr * pExpr)325185bcdce2Sdrh int sqlite3CodeSubselect(Parse *pParse, Expr *pExpr){
32522c04131cSdrh int addrOnce = 0; /* Address of OP_Once at top of subroutine */
325385bcdce2Sdrh int rReg = 0; /* Register storing resulting */
325485bcdce2Sdrh Select *pSel; /* SELECT statement to encode */
325585bcdce2Sdrh SelectDest dest; /* How to deal with SELECT result */
325685bcdce2Sdrh int nReg; /* Registers to allocate */
325785bcdce2Sdrh Expr *pLimit; /* New limit expression */
32582c04131cSdrh
32592c04131cSdrh Vdbe *v = pParse->pVdbe;
326085bcdce2Sdrh assert( v!=0 );
326105428127Sdrh if( pParse->nErr ) return 0;
3262bd462bccSdrh testcase( pExpr->op==TK_EXISTS );
3263bd462bccSdrh testcase( pExpr->op==TK_SELECT );
3264bd462bccSdrh assert( pExpr->op==TK_EXISTS || pExpr->op==TK_SELECT );
3265a4eeccdfSdrh assert( ExprUseXSelect(pExpr) );
3266bd462bccSdrh pSel = pExpr->x.pSelect;
326785bcdce2Sdrh
32685198ff57Sdrh /* If this routine has already been coded, then invoke it as a
32695198ff57Sdrh ** subroutine. */
32705198ff57Sdrh if( ExprHasProperty(pExpr, EP_Subrtn) ){
3271bd462bccSdrh ExplainQueryPlan((pParse, 0, "REUSE SUBQUERY %d", pSel->selId));
3272477572b9Sdrh assert( ExprUseYSub(pExpr) );
32735198ff57Sdrh sqlite3VdbeAddOp2(v, OP_Gosub, pExpr->y.sub.regReturn,
32745198ff57Sdrh pExpr->y.sub.iAddr);
32755198ff57Sdrh return pExpr->iTable;
32765198ff57Sdrh }
32775198ff57Sdrh
32785198ff57Sdrh /* Begin coding the subroutine */
3279477572b9Sdrh assert( !ExprUseYWin(pExpr) );
3280477572b9Sdrh assert( !ExprHasProperty(pExpr, EP_Reduced|EP_TokenOnly) );
32815198ff57Sdrh ExprSetProperty(pExpr, EP_Subrtn);
32825198ff57Sdrh pExpr->y.sub.regReturn = ++pParse->nMem;
32835198ff57Sdrh pExpr->y.sub.iAddr =
32841902516dSdrh sqlite3VdbeAddOp2(v, OP_BeginSubrtn, 0, pExpr->y.sub.regReturn) + 1;
328514c4d428Sdrh
328614c4d428Sdrh /* The evaluation of the EXISTS/SELECT must be repeated every time it
328714c4d428Sdrh ** is encountered if any of the following is true:
328814c4d428Sdrh **
328914c4d428Sdrh ** * The right-hand side is a correlated subquery
329014c4d428Sdrh ** * The right-hand side is an expression list containing variables
329114c4d428Sdrh ** * We are inside a trigger
329214c4d428Sdrh **
329314c4d428Sdrh ** If all of the above are false, then we can run this code just once
329414c4d428Sdrh ** save the results, and reuse the same result on subsequent invocations.
329514c4d428Sdrh */
329614c4d428Sdrh if( !ExprHasProperty(pExpr, EP_VarSelect) ){
32972c04131cSdrh addrOnce = sqlite3VdbeAddOp0(v, OP_Once); VdbeCoverage(v);
3298fef5208cSdrh }
3299fef5208cSdrh
330085bcdce2Sdrh /* For a SELECT, generate code to put the values for all columns of
330139a11819Sdrh ** the first row into an array of registers and return the index of
330239a11819Sdrh ** the first register.
330339a11819Sdrh **
330439a11819Sdrh ** If this is an EXISTS, write an integer 0 (not exists) or 1 (exists)
330539a11819Sdrh ** into a register and return that register number.
330639a11819Sdrh **
330739a11819Sdrh ** In both cases, the query is augmented with "LIMIT 1". Any
330839a11819Sdrh ** preexisting limit is discarded in place of the new LIMIT 1.
3309fef5208cSdrh */
3310bd462bccSdrh ExplainQueryPlan((pParse, 1, "%sSCALAR SUBQUERY %d",
3311bd462bccSdrh addrOnce?"":"CORRELATED ", pSel->selId));
331271c57db0Sdan nReg = pExpr->op==TK_SELECT ? pSel->pEList->nExpr : 1;
331371c57db0Sdan sqlite3SelectDestInit(&dest, 0, pParse->nMem+1);
331471c57db0Sdan pParse->nMem += nReg;
331551522cd3Sdrh if( pExpr->op==TK_SELECT ){
33166c8c8ce0Sdanielk1977 dest.eDest = SRT_Mem;
331753932ce8Sdrh dest.iSdst = dest.iSDParm;
331871c57db0Sdan dest.nSdst = nReg;
331971c57db0Sdan sqlite3VdbeAddOp3(v, OP_Null, 0, dest.iSDParm, dest.iSDParm+nReg-1);
3320d4e70ebdSdrh VdbeComment((v, "Init subquery result"));
332151522cd3Sdrh }else{
33226c8c8ce0Sdanielk1977 dest.eDest = SRT_Exists;
33232b596da8Sdrh sqlite3VdbeAddOp2(v, OP_Integer, 0, dest.iSDParm);
3324d4e70ebdSdrh VdbeComment((v, "Init EXISTS result"));
332551522cd3Sdrh }
33268c0833fbSdrh if( pSel->pLimit ){
33277ca1347fSdrh /* The subquery already has a limit. If the pre-existing limit is X
33287ca1347fSdrh ** then make the new limit X<>0 so that the new limit is either 1 or 0 */
33297ca1347fSdrh sqlite3 *db = pParse->db;
33305776ee5cSdrh pLimit = sqlite3Expr(db, TK_INTEGER, "0");
33317ca1347fSdrh if( pLimit ){
33327ca1347fSdrh pLimit->affExpr = SQLITE_AFF_NUMERIC;
33337ca1347fSdrh pLimit = sqlite3PExpr(pParse, TK_NE,
33347ca1347fSdrh sqlite3ExprDup(db, pSel->pLimit->pLeft, 0), pLimit);
33357ca1347fSdrh }
333695530163Sdrh sqlite3ExprDeferredDelete(pParse, pSel->pLimit->pLeft);
33378c0833fbSdrh pSel->pLimit->pLeft = pLimit;
33388c0833fbSdrh }else{
33397ca1347fSdrh /* If there is no pre-existing limit add a limit of 1 */
33405776ee5cSdrh pLimit = sqlite3Expr(pParse->db, TK_INTEGER, "1");
33418c0833fbSdrh pSel->pLimit = sqlite3PExpr(pParse, TK_LIMIT, pLimit, 0);
33428c0833fbSdrh }
334348b5b041Sdrh pSel->iLimit = 0;
33447d10d5a6Sdrh if( sqlite3Select(pParse, pSel, &dest) ){
3345bf7f3a00Sdrh pExpr->op2 = pExpr->op;
3346bf7f3a00Sdrh pExpr->op = TK_ERROR;
33471450bc6eSdrh return 0;
334894ccde58Sdrh }
33492c04131cSdrh pExpr->iTable = rReg = dest.iSDParm;
3350ebb6a65dSdrh ExprSetVVAProperty(pExpr, EP_NoReduce);
33512c04131cSdrh if( addrOnce ){
33522c04131cSdrh sqlite3VdbeJumpHere(v, addrOnce);
335314c4d428Sdrh }
3354fc976065Sdanielk1977
33552c04131cSdrh /* Subroutine return */
3356477572b9Sdrh assert( ExprUseYSub(pExpr) );
33571902516dSdrh assert( sqlite3VdbeGetOp(v,pExpr->y.sub.iAddr-1)->opcode==OP_BeginSubrtn
33581902516dSdrh || pParse->nErr );
33592bd9f44aSdrh sqlite3VdbeAddOp3(v, OP_Return, pExpr->y.sub.regReturn,
33602bd9f44aSdrh pExpr->y.sub.iAddr, 1);
33612bd9f44aSdrh VdbeCoverage(v);
33626d2566dfSdrh sqlite3ClearTempRegCache(pParse);
33631450bc6eSdrh return rReg;
3364cce7d176Sdrh }
336551522cd3Sdrh #endif /* SQLITE_OMIT_SUBQUERY */
3366cce7d176Sdrh
3367e3365e6cSdrh #ifndef SQLITE_OMIT_SUBQUERY
3368e3365e6cSdrh /*
33697b35a77bSdan ** Expr pIn is an IN(...) expression. This function checks that the
33707b35a77bSdan ** sub-select on the RHS of the IN() operator has the same number of
33717b35a77bSdan ** columns as the vector on the LHS. Or, if the RHS of the IN() is not
33727b35a77bSdan ** a sub-query, that the LHS is a vector of size 1.
33737b35a77bSdan */
sqlite3ExprCheckIN(Parse * pParse,Expr * pIn)33747b35a77bSdan int sqlite3ExprCheckIN(Parse *pParse, Expr *pIn){
33757b35a77bSdan int nVector = sqlite3ExprVectorSize(pIn->pLeft);
3376a4eeccdfSdrh if( ExprUseXSelect(pIn) && !pParse->db->mallocFailed ){
33777b35a77bSdan if( nVector!=pIn->x.pSelect->pEList->nExpr ){
33787b35a77bSdan sqlite3SubselectError(pParse, pIn->x.pSelect->pEList->nExpr, nVector);
33797b35a77bSdan return 1;
33807b35a77bSdan }
33817b35a77bSdan }else if( nVector!=1 ){
338244c5604cSdan sqlite3VectorErrorMsg(pParse, pIn->pLeft);
33837b35a77bSdan return 1;
33847b35a77bSdan }
33857b35a77bSdan return 0;
33867b35a77bSdan }
33877b35a77bSdan #endif
33887b35a77bSdan
33897b35a77bSdan #ifndef SQLITE_OMIT_SUBQUERY
33907b35a77bSdan /*
3391e3365e6cSdrh ** Generate code for an IN expression.
3392e3365e6cSdrh **
3393e3365e6cSdrh ** x IN (SELECT ...)
3394e3365e6cSdrh ** x IN (value, value, ...)
3395e3365e6cSdrh **
3396ecb87ac8Sdrh ** The left-hand side (LHS) is a scalar or vector expression. The
3397e347d3e8Sdrh ** right-hand side (RHS) is an array of zero or more scalar values, or a
3398e347d3e8Sdrh ** subquery. If the RHS is a subquery, the number of result columns must
3399e347d3e8Sdrh ** match the number of columns in the vector on the LHS. If the RHS is
3400e347d3e8Sdrh ** a list of values, the LHS must be a scalar.
3401e347d3e8Sdrh **
3402e347d3e8Sdrh ** The IN operator is true if the LHS value is contained within the RHS.
3403e347d3e8Sdrh ** The result is false if the LHS is definitely not in the RHS. The
3404e347d3e8Sdrh ** result is NULL if the presence of the LHS in the RHS cannot be
3405e347d3e8Sdrh ** determined due to NULLs.
3406e3365e6cSdrh **
34076be515ebSdrh ** This routine generates code that jumps to destIfFalse if the LHS is not
3408e3365e6cSdrh ** contained within the RHS. If due to NULLs we cannot determine if the LHS
3409e3365e6cSdrh ** is contained in the RHS then jump to destIfNull. If the LHS is contained
3410e3365e6cSdrh ** within the RHS then fall through.
3411ecb87ac8Sdrh **
3412ecb87ac8Sdrh ** See the separate in-operator.md documentation file in the canonical
3413ecb87ac8Sdrh ** SQLite source tree for additional information.
3414e3365e6cSdrh */
sqlite3ExprCodeIN(Parse * pParse,Expr * pExpr,int destIfFalse,int destIfNull)3415e3365e6cSdrh static void sqlite3ExprCodeIN(
3416e3365e6cSdrh Parse *pParse, /* Parsing and code generating context */
3417e3365e6cSdrh Expr *pExpr, /* The IN expression */
3418e3365e6cSdrh int destIfFalse, /* Jump here if LHS is not contained in the RHS */
3419e3365e6cSdrh int destIfNull /* Jump here if the results are unknown due to NULLs */
3420e3365e6cSdrh ){
3421e3365e6cSdrh int rRhsHasNull = 0; /* Register that is true if RHS contains NULL values */
3422e3365e6cSdrh int eType; /* Type of the RHS */
3423e347d3e8Sdrh int rLhs; /* Register(s) holding the LHS values */
3424e347d3e8Sdrh int rLhsOrig; /* LHS values prior to reordering by aiMap[] */
3425e3365e6cSdrh Vdbe *v; /* Statement under construction */
3426ba00e30aSdan int *aiMap = 0; /* Map from vector field to index column */
3427ba00e30aSdan char *zAff = 0; /* Affinity string for comparisons */
3428ecb87ac8Sdrh int nVector; /* Size of vectors for this IN operator */
342912abf408Sdrh int iDummy; /* Dummy parameter to exprCodeVector() */
3430e347d3e8Sdrh Expr *pLeft; /* The LHS of the IN operator */
3431ecb87ac8Sdrh int i; /* loop counter */
3432e347d3e8Sdrh int destStep2; /* Where to jump when NULLs seen in step 2 */
3433e347d3e8Sdrh int destStep6 = 0; /* Start of code for Step 6 */
3434e347d3e8Sdrh int addrTruthOp; /* Address of opcode that determines the IN is true */
3435e347d3e8Sdrh int destNotNull; /* Jump here if a comparison is not true in step 6 */
3436e347d3e8Sdrh int addrTop; /* Top of the step-6 loop */
34372c04131cSdrh int iTab = 0; /* Index to use */
3438c59b4acfSdan u8 okConstFactor = pParse->okConstFactor;
3439e3365e6cSdrh
3440e7375bfaSdrh assert( !ExprHasVVAProperty(pExpr,EP_Immutable) );
3441e347d3e8Sdrh pLeft = pExpr->pLeft;
34427b35a77bSdan if( sqlite3ExprCheckIN(pParse, pExpr) ) return;
3443553168c7Sdan zAff = exprINAffinity(pParse, pExpr);
3444ba00e30aSdan nVector = sqlite3ExprVectorSize(pExpr->pLeft);
3445ba00e30aSdan aiMap = (int*)sqlite3DbMallocZero(
3446ba00e30aSdan pParse->db, nVector*(sizeof(int) + sizeof(char)) + 1
3447ba00e30aSdan );
3448e347d3e8Sdrh if( pParse->db->mallocFailed ) goto sqlite3ExprCodeIN_oom_error;
34497b35a77bSdan
3450ba00e30aSdan /* Attempt to compute the RHS. After this step, if anything other than
34512c04131cSdrh ** IN_INDEX_NOOP is returned, the table opened with cursor iTab
3452ba00e30aSdan ** contains the values that make up the RHS. If IN_INDEX_NOOP is returned,
3453ba00e30aSdan ** the RHS has not yet been coded. */
3454e3365e6cSdrh v = pParse->pVdbe;
3455e3365e6cSdrh assert( v!=0 ); /* OOM detected prior to this routine */
3456e3365e6cSdrh VdbeNoopComment((v, "begin IN expr"));
3457bb53ecb1Sdrh eType = sqlite3FindInIndex(pParse, pExpr,
3458bb53ecb1Sdrh IN_INDEX_MEMBERSHIP | IN_INDEX_NOOP_OK,
34592c04131cSdrh destIfFalse==destIfNull ? 0 : &rRhsHasNull,
34602c04131cSdrh aiMap, &iTab);
3461e3365e6cSdrh
3462ba00e30aSdan assert( pParse->nErr || nVector==1 || eType==IN_INDEX_EPH
3463ba00e30aSdan || eType==IN_INDEX_INDEX_ASC || eType==IN_INDEX_INDEX_DESC
3464ba00e30aSdan );
3465ecb87ac8Sdrh #ifdef SQLITE_DEBUG
3466ecb87ac8Sdrh /* Confirm that aiMap[] contains nVector integer values between 0 and
3467ecb87ac8Sdrh ** nVector-1. */
3468ecb87ac8Sdrh for(i=0; i<nVector; i++){
3469ecb87ac8Sdrh int j, cnt;
3470ecb87ac8Sdrh for(cnt=j=0; j<nVector; j++) if( aiMap[j]==i ) cnt++;
3471ecb87ac8Sdrh assert( cnt==1 );
3472ecb87ac8Sdrh }
3473ecb87ac8Sdrh #endif
3474e3365e6cSdrh
3475ba00e30aSdan /* Code the LHS, the <expr> from "<expr> IN (...)". If the LHS is a
3476ba00e30aSdan ** vector, then it is stored in an array of nVector registers starting
3477ba00e30aSdan ** at r1.
3478e347d3e8Sdrh **
3479e347d3e8Sdrh ** sqlite3FindInIndex() might have reordered the fields of the LHS vector
3480e347d3e8Sdrh ** so that the fields are in the same order as an existing index. The
3481e347d3e8Sdrh ** aiMap[] array contains a mapping from the original LHS field order to
3482e347d3e8Sdrh ** the field order that matches the RHS index.
3483c59b4acfSdan **
3484c59b4acfSdan ** Avoid factoring the LHS of the IN(...) expression out of the loop,
3485c59b4acfSdan ** even if it is constant, as OP_Affinity may be used on the register
3486c59b4acfSdan ** by code generated below. */
3487c59b4acfSdan assert( pParse->okConstFactor==okConstFactor );
3488c59b4acfSdan pParse->okConstFactor = 0;
3489e347d3e8Sdrh rLhsOrig = exprCodeVector(pParse, pLeft, &iDummy);
3490c59b4acfSdan pParse->okConstFactor = okConstFactor;
3491e347d3e8Sdrh for(i=0; i<nVector && aiMap[i]==i; i++){} /* Are LHS fields reordered? */
3492ecb87ac8Sdrh if( i==nVector ){
3493e347d3e8Sdrh /* LHS fields are not reordered */
3494e347d3e8Sdrh rLhs = rLhsOrig;
3495ecb87ac8Sdrh }else{
3496ecb87ac8Sdrh /* Need to reorder the LHS fields according to aiMap */
3497e347d3e8Sdrh rLhs = sqlite3GetTempRange(pParse, nVector);
3498ba00e30aSdan for(i=0; i<nVector; i++){
3499e347d3e8Sdrh sqlite3VdbeAddOp3(v, OP_Copy, rLhsOrig+i, rLhs+aiMap[i], 0);
3500ba00e30aSdan }
3501ecb87ac8Sdrh }
3502e3365e6cSdrh
3503bb53ecb1Sdrh /* If sqlite3FindInIndex() did not find or create an index that is
3504bb53ecb1Sdrh ** suitable for evaluating the IN operator, then evaluate using a
3505bb53ecb1Sdrh ** sequence of comparisons.
3506e347d3e8Sdrh **
3507e347d3e8Sdrh ** This is step (1) in the in-operator.md optimized algorithm.
3508bb53ecb1Sdrh */
3509bb53ecb1Sdrh if( eType==IN_INDEX_NOOP ){
3510a4eeccdfSdrh ExprList *pList;
3511a4eeccdfSdrh CollSeq *pColl;
3512ec4ccdbcSdrh int labelOk = sqlite3VdbeMakeLabel(pParse);
3513bb53ecb1Sdrh int r2, regToFree;
3514bb53ecb1Sdrh int regCkNull = 0;
3515bb53ecb1Sdrh int ii;
3516a4eeccdfSdrh assert( ExprUseXList(pExpr) );
3517a4eeccdfSdrh pList = pExpr->x.pList;
3518a4eeccdfSdrh pColl = sqlite3ExprCollSeq(pParse, pExpr->pLeft);
3519bb53ecb1Sdrh if( destIfNull!=destIfFalse ){
3520bb53ecb1Sdrh regCkNull = sqlite3GetTempReg(pParse);
3521e347d3e8Sdrh sqlite3VdbeAddOp3(v, OP_BitAnd, rLhs, rLhs, regCkNull);
3522bb53ecb1Sdrh }
3523bb53ecb1Sdrh for(ii=0; ii<pList->nExpr; ii++){
35244fc83654Sdrh r2 = sqlite3ExprCodeTemp(pParse, pList->a[ii].pExpr, ®ToFree);
3525a976979bSdrh if( regCkNull && sqlite3ExprCanBeNull(pList->a[ii].pExpr) ){
3526bb53ecb1Sdrh sqlite3VdbeAddOp3(v, OP_BitAnd, regCkNull, r2, regCkNull);
3527bb53ecb1Sdrh }
3528f6ea97eaSdrh sqlite3ReleaseTempReg(pParse, regToFree);
3529bb53ecb1Sdrh if( ii<pList->nExpr-1 || destIfNull!=destIfFalse ){
35304799488eSdrh int op = rLhs!=r2 ? OP_Eq : OP_NotNull;
35314799488eSdrh sqlite3VdbeAddOp4(v, op, rLhs, labelOk, r2,
35324336b0e6Sdrh (void*)pColl, P4_COLLSEQ);
35334799488eSdrh VdbeCoverageIf(v, ii<pList->nExpr-1 && op==OP_Eq);
35344799488eSdrh VdbeCoverageIf(v, ii==pList->nExpr-1 && op==OP_Eq);
35354799488eSdrh VdbeCoverageIf(v, ii<pList->nExpr-1 && op==OP_NotNull);
35364799488eSdrh VdbeCoverageIf(v, ii==pList->nExpr-1 && op==OP_NotNull);
3537ba00e30aSdan sqlite3VdbeChangeP5(v, zAff[0]);
3538bb53ecb1Sdrh }else{
35394799488eSdrh int op = rLhs!=r2 ? OP_Ne : OP_IsNull;
3540bb53ecb1Sdrh assert( destIfNull==destIfFalse );
35414799488eSdrh sqlite3VdbeAddOp4(v, op, rLhs, destIfFalse, r2,
35424799488eSdrh (void*)pColl, P4_COLLSEQ);
35434799488eSdrh VdbeCoverageIf(v, op==OP_Ne);
35444799488eSdrh VdbeCoverageIf(v, op==OP_IsNull);
3545ba00e30aSdan sqlite3VdbeChangeP5(v, zAff[0] | SQLITE_JUMPIFNULL);
3546bb53ecb1Sdrh }
3547bb53ecb1Sdrh }
3548bb53ecb1Sdrh if( regCkNull ){
3549bb53ecb1Sdrh sqlite3VdbeAddOp2(v, OP_IsNull, regCkNull, destIfNull); VdbeCoverage(v);
3550076e85f5Sdrh sqlite3VdbeGoto(v, destIfFalse);
3551bb53ecb1Sdrh }
3552bb53ecb1Sdrh sqlite3VdbeResolveLabel(v, labelOk);
3553bb53ecb1Sdrh sqlite3ReleaseTempReg(pParse, regCkNull);
3554e347d3e8Sdrh goto sqlite3ExprCodeIN_finished;
3555e347d3e8Sdrh }
3556bb53ecb1Sdrh
3557e347d3e8Sdrh /* Step 2: Check to see if the LHS contains any NULL columns. If the
3558e347d3e8Sdrh ** LHS does contain NULLs then the result must be either FALSE or NULL.
3559e347d3e8Sdrh ** We will then skip the binary search of the RHS.
3560e347d3e8Sdrh */
3561094430ebSdrh if( destIfNull==destIfFalse ){
3562e347d3e8Sdrh destStep2 = destIfFalse;
3563e347d3e8Sdrh }else{
3564ec4ccdbcSdrh destStep2 = destStep6 = sqlite3VdbeMakeLabel(pParse);
3565e347d3e8Sdrh }
3566d49fd4e8Sdan for(i=0; i<nVector; i++){
3567fc7f27b9Sdrh Expr *p = sqlite3VectorFieldSubexpr(pExpr->pLeft, i);
35681da88b5cSdrh if( pParse->nErr ) goto sqlite3ExprCodeIN_oom_error;
3569d49fd4e8Sdan if( sqlite3ExprCanBeNull(p) ){
3570e347d3e8Sdrh sqlite3VdbeAddOp2(v, OP_IsNull, rLhs+i, destStep2);
3571471b4b92Sdrh VdbeCoverage(v);
3572d49fd4e8Sdan }
3573d49fd4e8Sdan }
3574e3365e6cSdrh
3575e347d3e8Sdrh /* Step 3. The LHS is now known to be non-NULL. Do the binary search
3576e347d3e8Sdrh ** of the RHS using the LHS as a probe. If found, the result is
3577e347d3e8Sdrh ** true.
3578e347d3e8Sdrh */
3579e3365e6cSdrh if( eType==IN_INDEX_ROWID ){
3580e347d3e8Sdrh /* In this case, the RHS is the ROWID of table b-tree and so we also
3581e347d3e8Sdrh ** know that the RHS is non-NULL. Hence, we combine steps 3 and 4
3582e347d3e8Sdrh ** into a single opcode. */
35832c04131cSdrh sqlite3VdbeAddOp3(v, OP_SeekRowid, iTab, destIfFalse, rLhs);
3584688852abSdrh VdbeCoverage(v);
3585e347d3e8Sdrh addrTruthOp = sqlite3VdbeAddOp0(v, OP_Goto); /* Return True */
35867b35a77bSdan }else{
3587e347d3e8Sdrh sqlite3VdbeAddOp4(v, OP_Affinity, rLhs, nVector, 0, zAff, nVector);
3588e347d3e8Sdrh if( destIfFalse==destIfNull ){
3589e347d3e8Sdrh /* Combine Step 3 and Step 5 into a single opcode */
35902c04131cSdrh sqlite3VdbeAddOp4Int(v, OP_NotFound, iTab, destIfFalse,
3591e347d3e8Sdrh rLhs, nVector); VdbeCoverage(v);
3592e347d3e8Sdrh goto sqlite3ExprCodeIN_finished;
3593e347d3e8Sdrh }
3594e347d3e8Sdrh /* Ordinary Step 3, for the case where FALSE and NULL are distinct */
35952c04131cSdrh addrTruthOp = sqlite3VdbeAddOp4Int(v, OP_Found, iTab, 0,
3596e347d3e8Sdrh rLhs, nVector); VdbeCoverage(v);
3597e347d3e8Sdrh }
3598ba00e30aSdan
3599e347d3e8Sdrh /* Step 4. If the RHS is known to be non-NULL and we did not find
3600e347d3e8Sdrh ** an match on the search above, then the result must be FALSE.
3601e347d3e8Sdrh */
3602e347d3e8Sdrh if( rRhsHasNull && nVector==1 ){
3603e347d3e8Sdrh sqlite3VdbeAddOp2(v, OP_NotNull, rRhsHasNull, destIfFalse);
3604471b4b92Sdrh VdbeCoverage(v);
3605e347d3e8Sdrh }
36067b35a77bSdan
3607e347d3e8Sdrh /* Step 5. If we do not care about the difference between NULL and
3608e347d3e8Sdrh ** FALSE, then just return false.
3609e347d3e8Sdrh */
3610e347d3e8Sdrh if( destIfFalse==destIfNull ) sqlite3VdbeGoto(v, destIfFalse);
3611e347d3e8Sdrh
3612e347d3e8Sdrh /* Step 6: Loop through rows of the RHS. Compare each row to the LHS.
3613e347d3e8Sdrh ** If any comparison is NULL, then the result is NULL. If all
3614e347d3e8Sdrh ** comparisons are FALSE then the final result is FALSE.
3615e347d3e8Sdrh **
3616e347d3e8Sdrh ** For a scalar LHS, it is sufficient to check just the first row
3617e347d3e8Sdrh ** of the RHS.
3618e347d3e8Sdrh */
3619e347d3e8Sdrh if( destStep6 ) sqlite3VdbeResolveLabel(v, destStep6);
36202c04131cSdrh addrTop = sqlite3VdbeAddOp2(v, OP_Rewind, iTab, destIfFalse);
3621471b4b92Sdrh VdbeCoverage(v);
3622e347d3e8Sdrh if( nVector>1 ){
3623ec4ccdbcSdrh destNotNull = sqlite3VdbeMakeLabel(pParse);
3624e347d3e8Sdrh }else{
3625e347d3e8Sdrh /* For nVector==1, combine steps 6 and 7 by immediately returning
3626e347d3e8Sdrh ** FALSE if the first comparison is not NULL */
3627e347d3e8Sdrh destNotNull = destIfFalse;
3628e347d3e8Sdrh }
3629ba00e30aSdan for(i=0; i<nVector; i++){
3630ba00e30aSdan Expr *p;
3631ba00e30aSdan CollSeq *pColl;
3632e347d3e8Sdrh int r3 = sqlite3GetTempReg(pParse);
3633fc7f27b9Sdrh p = sqlite3VectorFieldSubexpr(pLeft, i);
3634ba00e30aSdan pColl = sqlite3ExprCollSeq(pParse, p);
36352c04131cSdrh sqlite3VdbeAddOp3(v, OP_Column, iTab, i, r3);
3636e347d3e8Sdrh sqlite3VdbeAddOp4(v, OP_Ne, rLhs+i, destNotNull, r3,
363718016ad2Sdrh (void*)pColl, P4_COLLSEQ);
3638471b4b92Sdrh VdbeCoverage(v);
3639e347d3e8Sdrh sqlite3ReleaseTempReg(pParse, r3);
36407b35a77bSdan }
36417b35a77bSdan sqlite3VdbeAddOp2(v, OP_Goto, 0, destIfNull);
3642e347d3e8Sdrh if( nVector>1 ){
3643e347d3e8Sdrh sqlite3VdbeResolveLabel(v, destNotNull);
36442c04131cSdrh sqlite3VdbeAddOp2(v, OP_Next, iTab, addrTop+1);
364518016ad2Sdrh VdbeCoverage(v);
3646e347d3e8Sdrh
3647e347d3e8Sdrh /* Step 7: If we reach this point, we know that the result must
3648e347d3e8Sdrh ** be false. */
364918016ad2Sdrh sqlite3VdbeAddOp2(v, OP_Goto, 0, destIfFalse);
36507b35a77bSdan }
36517b35a77bSdan
3652e347d3e8Sdrh /* Jumps here in order to return true. */
3653e347d3e8Sdrh sqlite3VdbeJumpHere(v, addrTruthOp);
3654e3365e6cSdrh
3655e347d3e8Sdrh sqlite3ExprCodeIN_finished:
3656e347d3e8Sdrh if( rLhs!=rLhsOrig ) sqlite3ReleaseTempReg(pParse, rLhs);
3657ecb87ac8Sdrh VdbeComment((v, "end IN expr"));
3658e347d3e8Sdrh sqlite3ExprCodeIN_oom_error:
3659ba00e30aSdan sqlite3DbFree(pParse->db, aiMap);
3660553168c7Sdan sqlite3DbFree(pParse->db, zAff);
3661e3365e6cSdrh }
3662e3365e6cSdrh #endif /* SQLITE_OMIT_SUBQUERY */
3663e3365e6cSdrh
366413573c71Sdrh #ifndef SQLITE_OMIT_FLOATING_POINT
3665598f1340Sdrh /*
3666598f1340Sdrh ** Generate an instruction that will put the floating point
36679cbf3425Sdrh ** value described by z[0..n-1] into register iMem.
36680cf19ed8Sdrh **
36690cf19ed8Sdrh ** The z[] string will probably not be zero-terminated. But the
36700cf19ed8Sdrh ** z[n] character is guaranteed to be something that does not look
36710cf19ed8Sdrh ** like the continuation of the number.
3672598f1340Sdrh */
codeReal(Vdbe * v,const char * z,int negateFlag,int iMem)3673b7916a78Sdrh static void codeReal(Vdbe *v, const char *z, int negateFlag, int iMem){
3674fd773cf9Sdrh if( ALWAYS(z!=0) ){
3675598f1340Sdrh double value;
36769339da1fSdrh sqlite3AtoF(z, &value, sqlite3Strlen30(z), SQLITE_UTF8);
3677d0015161Sdrh assert( !sqlite3IsNaN(value) ); /* The new AtoF never returns NaN */
3678598f1340Sdrh if( negateFlag ) value = -value;
367997bae794Sdrh sqlite3VdbeAddOp4Dup8(v, OP_Real, 0, iMem, 0, (u8*)&value, P4_REAL);
3680598f1340Sdrh }
3681598f1340Sdrh }
368213573c71Sdrh #endif
3683598f1340Sdrh
3684598f1340Sdrh
3685598f1340Sdrh /*
3686fec19aadSdrh ** Generate an instruction that will put the integer describe by
36879cbf3425Sdrh ** text z[0..n-1] into register iMem.
36880cf19ed8Sdrh **
36895f1d6b61Sshaneh ** Expr.u.zToken is always UTF8 and zero-terminated.
3690fec19aadSdrh */
codeInteger(Parse * pParse,Expr * pExpr,int negFlag,int iMem)369113573c71Sdrh static void codeInteger(Parse *pParse, Expr *pExpr, int negFlag, int iMem){
369213573c71Sdrh Vdbe *v = pParse->pVdbe;
369392b01d53Sdrh if( pExpr->flags & EP_IntValue ){
369433e619fcSdrh int i = pExpr->u.iValue;
3695d50ffc41Sdrh assert( i>=0 );
369692b01d53Sdrh if( negFlag ) i = -i;
369792b01d53Sdrh sqlite3VdbeAddOp2(v, OP_Integer, i, iMem);
3698fd773cf9Sdrh }else{
36995f1d6b61Sshaneh int c;
37005f1d6b61Sshaneh i64 value;
3701fd773cf9Sdrh const char *z = pExpr->u.zToken;
3702fd773cf9Sdrh assert( z!=0 );
37039296c18aSdrh c = sqlite3DecOrHexToI64(z, &value);
370484d4f1a3Sdrh if( (c==3 && !negFlag) || (c==2) || (negFlag && value==SMALLEST_INT64)){
370513573c71Sdrh #ifdef SQLITE_OMIT_FLOATING_POINT
370662fc069eSdrh sqlite3ErrorMsg(pParse, "oversized integer: %s%#T", negFlag?"-":"",pExpr);
370713573c71Sdrh #else
37081b7ddc59Sdrh #ifndef SQLITE_OMIT_HEX_INTEGER
37099296c18aSdrh if( sqlite3_strnicmp(z,"0x",2)==0 ){
371062fc069eSdrh sqlite3ErrorMsg(pParse, "hex literal too big: %s%#T",
371162fc069eSdrh negFlag?"-":"",pExpr);
37121b7ddc59Sdrh }else
37131b7ddc59Sdrh #endif
37141b7ddc59Sdrh {
3715b7916a78Sdrh codeReal(v, z, negFlag, iMem);
37169296c18aSdrh }
371713573c71Sdrh #endif
371877320ea4Sdrh }else{
371984d4f1a3Sdrh if( negFlag ){ value = c==3 ? SMALLEST_INT64 : -value; }
372077320ea4Sdrh sqlite3VdbeAddOp4Dup8(v, OP_Int64, 0, iMem, 0, (u8*)&value, P4_INT64);
3721fec19aadSdrh }
3722fec19aadSdrh }
3723c9cf901dSdanielk1977 }
3724fec19aadSdrh
37255cd79239Sdrh
37261f9ca2c8Sdrh /* Generate code that will load into register regOut a value that is
37271f9ca2c8Sdrh ** appropriate for the iIdxCol-th column of index pIdx.
37281f9ca2c8Sdrh */
sqlite3ExprCodeLoadIndexColumn(Parse * pParse,Index * pIdx,int iTabCur,int iIdxCol,int regOut)37291f9ca2c8Sdrh void sqlite3ExprCodeLoadIndexColumn(
37301f9ca2c8Sdrh Parse *pParse, /* The parsing context */
37311f9ca2c8Sdrh Index *pIdx, /* The index whose column is to be loaded */
37321f9ca2c8Sdrh int iTabCur, /* Cursor pointing to a table row */
37331f9ca2c8Sdrh int iIdxCol, /* The column of the index to be loaded */
37341f9ca2c8Sdrh int regOut /* Store the index column value in this register */
37351f9ca2c8Sdrh ){
37361f9ca2c8Sdrh i16 iTabCol = pIdx->aiColumn[iIdxCol];
37374b92f98cSdrh if( iTabCol==XN_EXPR ){
37381f9ca2c8Sdrh assert( pIdx->aColExpr );
37391f9ca2c8Sdrh assert( pIdx->aColExpr->nExpr>iIdxCol );
37403e34eabcSdrh pParse->iSelfTab = iTabCur + 1;
37411c75c9d7Sdrh sqlite3ExprCodeCopy(pParse, pIdx->aColExpr->a[iIdxCol].pExpr, regOut);
37423e34eabcSdrh pParse->iSelfTab = 0;
37434b92f98cSdrh }else{
37446df9c4b9Sdrh sqlite3ExprCodeGetColumnOfTable(pParse->pVdbe, pIdx->pTable, iTabCur,
37454b92f98cSdrh iTabCol, regOut);
37464b92f98cSdrh }
37471f9ca2c8Sdrh }
37481f9ca2c8Sdrh
3749e70fa7feSdrh #ifndef SQLITE_OMIT_GENERATED_COLUMNS
3750e70fa7feSdrh /*
3751e70fa7feSdrh ** Generate code that will compute the value of generated column pCol
3752e70fa7feSdrh ** and store the result in register regOut
3753e70fa7feSdrh */
sqlite3ExprCodeGeneratedColumn(Parse * pParse,Table * pTab,Column * pCol,int regOut)3754e70fa7feSdrh void sqlite3ExprCodeGeneratedColumn(
375579cf2b71Sdrh Parse *pParse, /* Parsing context */
375679cf2b71Sdrh Table *pTab, /* Table containing the generated column */
375779cf2b71Sdrh Column *pCol, /* The generated column */
375879cf2b71Sdrh int regOut /* Put the result in this register */
3759e70fa7feSdrh ){
37604dad7ed5Sdrh int iAddr;
37614dad7ed5Sdrh Vdbe *v = pParse->pVdbe;
37624dad7ed5Sdrh assert( v!=0 );
37634dad7ed5Sdrh assert( pParse->iSelfTab!=0 );
37644dad7ed5Sdrh if( pParse->iSelfTab>0 ){
37654dad7ed5Sdrh iAddr = sqlite3VdbeAddOp3(v, OP_IfNullRow, pParse->iSelfTab-1, 0, regOut);
37664dad7ed5Sdrh }else{
37674dad7ed5Sdrh iAddr = 0;
37684dad7ed5Sdrh }
376979cf2b71Sdrh sqlite3ExprCodeCopy(pParse, sqlite3ColumnExpr(pTab,pCol), regOut);
3770e70fa7feSdrh if( pCol->affinity>=SQLITE_AFF_TEXT ){
37714dad7ed5Sdrh sqlite3VdbeAddOp4(v, OP_Affinity, regOut, 1, 0, &pCol->affinity, 1);
3772e70fa7feSdrh }
37734dad7ed5Sdrh if( iAddr ) sqlite3VdbeJumpHere(v, iAddr);
3774e70fa7feSdrh }
3775e70fa7feSdrh #endif /* SQLITE_OMIT_GENERATED_COLUMNS */
3776e70fa7feSdrh
37775cd79239Sdrh /*
37785c092e8aSdrh ** Generate code to extract the value of the iCol-th column of a table.
37795c092e8aSdrh */
sqlite3ExprCodeGetColumnOfTable(Vdbe * v,Table * pTab,int iTabCur,int iCol,int regOut)37805c092e8aSdrh void sqlite3ExprCodeGetColumnOfTable(
37816df9c4b9Sdrh Vdbe *v, /* Parsing context */
37825c092e8aSdrh Table *pTab, /* The table containing the value */
3783313619f5Sdrh int iTabCur, /* The table cursor. Or the PK cursor for WITHOUT ROWID */
37845c092e8aSdrh int iCol, /* Index of the column to extract */
3785313619f5Sdrh int regOut /* Extract the value into this register */
37865c092e8aSdrh ){
3787ab45fc04Sdrh Column *pCol;
378881f7b372Sdrh assert( v!=0 );
3789*63b3a64cSdrh assert( pTab!=0 );
37905c092e8aSdrh if( iCol<0 || iCol==pTab->iPKey ){
37915c092e8aSdrh sqlite3VdbeAddOp2(v, OP_Rowid, iTabCur, regOut);
3792088b615aSdrh VdbeComment((v, "%s.rowid", pTab->zName));
37935c092e8aSdrh }else{
379481f7b372Sdrh int op;
379581f7b372Sdrh int x;
379681f7b372Sdrh if( IsVirtual(pTab) ){
379781f7b372Sdrh op = OP_VColumn;
379881f7b372Sdrh x = iCol;
379981f7b372Sdrh #ifndef SQLITE_OMIT_GENERATED_COLUMNS
3800ab45fc04Sdrh }else if( (pCol = &pTab->aCol[iCol])->colFlags & COLFLAG_VIRTUAL ){
38016df9c4b9Sdrh Parse *pParse = sqlite3VdbeParser(v);
3802ab45fc04Sdrh if( pCol->colFlags & COLFLAG_BUSY ){
3803cf9d36d1Sdrh sqlite3ErrorMsg(pParse, "generated column loop on \"%s\"",
3804cf9d36d1Sdrh pCol->zCnName);
3805ab45fc04Sdrh }else{
380681f7b372Sdrh int savedSelfTab = pParse->iSelfTab;
3807ab45fc04Sdrh pCol->colFlags |= COLFLAG_BUSY;
380881f7b372Sdrh pParse->iSelfTab = iTabCur+1;
380979cf2b71Sdrh sqlite3ExprCodeGeneratedColumn(pParse, pTab, pCol, regOut);
381081f7b372Sdrh pParse->iSelfTab = savedSelfTab;
3811ab45fc04Sdrh pCol->colFlags &= ~COLFLAG_BUSY;
3812ab45fc04Sdrh }
381381f7b372Sdrh return;
381481f7b372Sdrh #endif
381581f7b372Sdrh }else if( !HasRowid(pTab) ){
3816c5f808d8Sdrh testcase( iCol!=sqlite3TableColumnToStorage(pTab, iCol) );
3817b9bcf7caSdrh x = sqlite3TableColumnToIndex(sqlite3PrimaryKeyIndex(pTab), iCol);
381881f7b372Sdrh op = OP_Column;
381981f7b372Sdrh }else{
3820b9bcf7caSdrh x = sqlite3TableColumnToStorage(pTab,iCol);
3821c5f808d8Sdrh testcase( x!=iCol );
382281f7b372Sdrh op = OP_Column;
3823ee0ec8e1Sdrh }
3824ee0ec8e1Sdrh sqlite3VdbeAddOp3(v, op, iTabCur, x, regOut);
38255c092e8aSdrh sqlite3ColumnDefault(v, pTab, iCol, regOut);
38265c092e8aSdrh }
38275c092e8aSdrh }
38285c092e8aSdrh
38295c092e8aSdrh /*
3830945498f3Sdrh ** Generate code that will extract the iColumn-th column from
38318c607191Sdrh ** table pTab and store the column value in register iReg.
3832e55cbd72Sdrh **
3833e55cbd72Sdrh ** There must be an open cursor to pTab in iTable when this routine
3834e55cbd72Sdrh ** is called. If iColumn<0 then code is generated that extracts the rowid.
3835945498f3Sdrh */
sqlite3ExprCodeGetColumn(Parse * pParse,Table * pTab,int iColumn,int iTable,int iReg,u8 p5)3836e55cbd72Sdrh int sqlite3ExprCodeGetColumn(
3837e55cbd72Sdrh Parse *pParse, /* Parsing and code generating context */
38382133d822Sdrh Table *pTab, /* Description of the table we are reading from */
38392133d822Sdrh int iColumn, /* Index of the table column */
38402133d822Sdrh int iTable, /* The cursor pointing to the table */
3841a748fdccSdrh int iReg, /* Store results here */
3842ce78bc6eSdrh u8 p5 /* P5 value for OP_Column + FLAGS */
38432133d822Sdrh ){
384481f7b372Sdrh assert( pParse->pVdbe!=0 );
38456df9c4b9Sdrh sqlite3ExprCodeGetColumnOfTable(pParse->pVdbe, pTab, iTable, iColumn, iReg);
3846a748fdccSdrh if( p5 ){
3847058e9950Sdrh VdbeOp *pOp = sqlite3VdbeGetLastOp(pParse->pVdbe);
384899670abbSdrh if( pOp->opcode==OP_Column ) pOp->p5 = p5;
3849a748fdccSdrh }
3850e55cbd72Sdrh return iReg;
3851e55cbd72Sdrh }
3852e55cbd72Sdrh
3853e55cbd72Sdrh /*
3854b21e7c70Sdrh ** Generate code to move content from registers iFrom...iFrom+nReg-1
385536a5d88dSdrh ** over to iTo..iTo+nReg-1.
3856e55cbd72Sdrh */
sqlite3ExprCodeMove(Parse * pParse,int iFrom,int iTo,int nReg)3857b21e7c70Sdrh void sqlite3ExprCodeMove(Parse *pParse, int iFrom, int iTo, int nReg){
3858079a3072Sdrh sqlite3VdbeAddOp3(pParse->pVdbe, OP_Move, iFrom, iTo, nReg);
3859945498f3Sdrh }
3860945498f3Sdrh
3861652fbf55Sdrh /*
386212abf408Sdrh ** Convert a scalar expression node to a TK_REGISTER referencing
386312abf408Sdrh ** register iReg. The caller must ensure that iReg already contains
386412abf408Sdrh ** the correct value for the expression.
3865a4c3c87eSdrh */
exprToRegister(Expr * pExpr,int iReg)3866069d1b1fSdan static void exprToRegister(Expr *pExpr, int iReg){
38670d950af3Sdrh Expr *p = sqlite3ExprSkipCollateAndLikely(pExpr);
3868235667a8Sdrh if( NEVER(p==0) ) return;
3869a4c3c87eSdrh p->op2 = p->op;
3870a4c3c87eSdrh p->op = TK_REGISTER;
3871a4c3c87eSdrh p->iTable = iReg;
3872a4c3c87eSdrh ExprClearProperty(p, EP_Skip);
3873a4c3c87eSdrh }
3874a4c3c87eSdrh
387512abf408Sdrh /*
387612abf408Sdrh ** Evaluate an expression (either a vector or a scalar expression) and store
387712abf408Sdrh ** the result in continguous temporary registers. Return the index of
387812abf408Sdrh ** the first register used to store the result.
387912abf408Sdrh **
388012abf408Sdrh ** If the returned result register is a temporary scalar, then also write
388112abf408Sdrh ** that register number into *piFreeable. If the returned result register
388212abf408Sdrh ** is not a temporary or if the expression is a vector set *piFreeable
388312abf408Sdrh ** to 0.
388412abf408Sdrh */
exprCodeVector(Parse * pParse,Expr * p,int * piFreeable)388512abf408Sdrh static int exprCodeVector(Parse *pParse, Expr *p, int *piFreeable){
388612abf408Sdrh int iResult;
388712abf408Sdrh int nResult = sqlite3ExprVectorSize(p);
388812abf408Sdrh if( nResult==1 ){
388912abf408Sdrh iResult = sqlite3ExprCodeTemp(pParse, p, piFreeable);
389012abf408Sdrh }else{
389112abf408Sdrh *piFreeable = 0;
389212abf408Sdrh if( p->op==TK_SELECT ){
3893dd1bb43aSdrh #if SQLITE_OMIT_SUBQUERY
3894dd1bb43aSdrh iResult = 0;
3895dd1bb43aSdrh #else
389685bcdce2Sdrh iResult = sqlite3CodeSubselect(pParse, p);
3897dd1bb43aSdrh #endif
389812abf408Sdrh }else{
389912abf408Sdrh int i;
390012abf408Sdrh iResult = pParse->nMem+1;
390112abf408Sdrh pParse->nMem += nResult;
3902a4eeccdfSdrh assert( ExprUseXList(p) );
390312abf408Sdrh for(i=0; i<nResult; i++){
39044b725240Sdan sqlite3ExprCodeFactorable(pParse, p->x.pList->a[i].pExpr, i+iResult);
390512abf408Sdrh }
390612abf408Sdrh }
390712abf408Sdrh }
390812abf408Sdrh return iResult;
390912abf408Sdrh }
391012abf408Sdrh
391125c4296bSdrh /*
391292a27f7bSdrh ** If the last opcode is a OP_Copy, then set the do-not-merge flag (p5)
391392a27f7bSdrh ** so that a subsequent copy will not be merged into this one.
391492a27f7bSdrh */
setDoNotMergeFlagOnCopy(Vdbe * v)391592a27f7bSdrh static void setDoNotMergeFlagOnCopy(Vdbe *v){
3916058e9950Sdrh if( sqlite3VdbeGetLastOp(v)->opcode==OP_Copy ){
391792a27f7bSdrh sqlite3VdbeChangeP5(v, 1); /* Tag trailing OP_Copy as not mergable */
391892a27f7bSdrh }
391992a27f7bSdrh }
392092a27f7bSdrh
392192a27f7bSdrh /*
392225c4296bSdrh ** Generate code to implement special SQL functions that are implemented
392325c4296bSdrh ** in-line rather than by using the usual callbacks.
392425c4296bSdrh */
exprCodeInlineFunction(Parse * pParse,ExprList * pFarg,int iFuncId,int target)392525c4296bSdrh static int exprCodeInlineFunction(
392625c4296bSdrh Parse *pParse, /* Parsing context */
392725c4296bSdrh ExprList *pFarg, /* List of function arguments */
392825c4296bSdrh int iFuncId, /* Function ID. One of the INTFUNC_... values */
392925c4296bSdrh int target /* Store function result in this register */
393025c4296bSdrh ){
393125c4296bSdrh int nFarg;
393225c4296bSdrh Vdbe *v = pParse->pVdbe;
393325c4296bSdrh assert( v!=0 );
393425c4296bSdrh assert( pFarg!=0 );
393525c4296bSdrh nFarg = pFarg->nExpr;
393625c4296bSdrh assert( nFarg>0 ); /* All in-line functions have at least one argument */
393725c4296bSdrh switch( iFuncId ){
393825c4296bSdrh case INLINEFUNC_coalesce: {
393925c4296bSdrh /* Attempt a direct implementation of the built-in COALESCE() and
394025c4296bSdrh ** IFNULL() functions. This avoids unnecessary evaluation of
394125c4296bSdrh ** arguments past the first non-NULL argument.
394225c4296bSdrh */
394325c4296bSdrh int endCoalesce = sqlite3VdbeMakeLabel(pParse);
394425c4296bSdrh int i;
394525c4296bSdrh assert( nFarg>=2 );
394625c4296bSdrh sqlite3ExprCode(pParse, pFarg->a[0].pExpr, target);
394725c4296bSdrh for(i=1; i<nFarg; i++){
394825c4296bSdrh sqlite3VdbeAddOp2(v, OP_NotNull, target, endCoalesce);
394925c4296bSdrh VdbeCoverage(v);
395025c4296bSdrh sqlite3ExprCode(pParse, pFarg->a[i].pExpr, target);
395125c4296bSdrh }
395292a27f7bSdrh setDoNotMergeFlagOnCopy(v);
395325c4296bSdrh sqlite3VdbeResolveLabel(v, endCoalesce);
395425c4296bSdrh break;
395525c4296bSdrh }
39563c0e606bSdrh case INLINEFUNC_iif: {
39573c0e606bSdrh Expr caseExpr;
39583c0e606bSdrh memset(&caseExpr, 0, sizeof(caseExpr));
39593c0e606bSdrh caseExpr.op = TK_CASE;
39603c0e606bSdrh caseExpr.x.pList = pFarg;
39613c0e606bSdrh return sqlite3ExprCodeTarget(pParse, &caseExpr, target);
39623c0e606bSdrh }
39636d013d89Sdrh #ifdef SQLITE_ENABLE_OFFSET_SQL_FUNC
3964645682a7Sdrh case INLINEFUNC_sqlite_offset: {
3965645682a7Sdrh Expr *pArg = pFarg->a[0].pExpr;
3966645682a7Sdrh if( pArg->op==TK_COLUMN && pArg->iTable>=0 ){
3967645682a7Sdrh sqlite3VdbeAddOp3(v, OP_Offset, pArg->iTable, pArg->iColumn, target);
3968645682a7Sdrh }else{
3969645682a7Sdrh sqlite3VdbeAddOp2(v, OP_Null, 0, target);
3970645682a7Sdrh }
3971645682a7Sdrh break;
3972645682a7Sdrh }
39736d013d89Sdrh #endif
3974171c50ecSdrh default: {
397525c4296bSdrh /* The UNLIKELY() function is a no-op. The result is the value
397625c4296bSdrh ** of the first argument.
397725c4296bSdrh */
3978171c50ecSdrh assert( nFarg==1 || nFarg==2 );
397925c4296bSdrh target = sqlite3ExprCodeTarget(pParse, pFarg->a[0].pExpr, target);
398025c4296bSdrh break;
398125c4296bSdrh }
398225c4296bSdrh
3983171c50ecSdrh /***********************************************************************
3984171c50ecSdrh ** Test-only SQL functions that are only usable if enabled
3985171c50ecSdrh ** via SQLITE_TESTCTRL_INTERNAL_FUNCTIONS
3986171c50ecSdrh */
39873780f9a4Sdrh #if !defined(SQLITE_UNTESTABLE)
3988171c50ecSdrh case INLINEFUNC_expr_compare: {
3989171c50ecSdrh /* Compare two expressions using sqlite3ExprCompare() */
3990171c50ecSdrh assert( nFarg==2 );
3991171c50ecSdrh sqlite3VdbeAddOp2(v, OP_Integer,
3992171c50ecSdrh sqlite3ExprCompare(0,pFarg->a[0].pExpr, pFarg->a[1].pExpr,-1),
3993171c50ecSdrh target);
3994171c50ecSdrh break;
3995171c50ecSdrh }
3996171c50ecSdrh
3997171c50ecSdrh case INLINEFUNC_expr_implies_expr: {
3998171c50ecSdrh /* Compare two expressions using sqlite3ExprImpliesExpr() */
3999171c50ecSdrh assert( nFarg==2 );
4000171c50ecSdrh sqlite3VdbeAddOp2(v, OP_Integer,
4001171c50ecSdrh sqlite3ExprImpliesExpr(pParse,pFarg->a[0].pExpr, pFarg->a[1].pExpr,-1),
4002171c50ecSdrh target);
4003171c50ecSdrh break;
4004171c50ecSdrh }
4005171c50ecSdrh
4006171c50ecSdrh case INLINEFUNC_implies_nonnull_row: {
4007171c50ecSdrh /* REsult of sqlite3ExprImpliesNonNullRow() */
4008171c50ecSdrh Expr *pA1;
4009171c50ecSdrh assert( nFarg==2 );
4010171c50ecSdrh pA1 = pFarg->a[1].pExpr;
4011171c50ecSdrh if( pA1->op==TK_COLUMN ){
4012171c50ecSdrh sqlite3VdbeAddOp2(v, OP_Integer,
4013171c50ecSdrh sqlite3ExprImpliesNonNullRow(pFarg->a[0].pExpr,pA1->iTable),
4014171c50ecSdrh target);
4015171c50ecSdrh }else{
4016171c50ecSdrh sqlite3VdbeAddOp2(v, OP_Null, 0, target);
4017171c50ecSdrh }
4018171c50ecSdrh break;
4019171c50ecSdrh }
4020171c50ecSdrh
402125c4296bSdrh case INLINEFUNC_affinity: {
402225c4296bSdrh /* The AFFINITY() function evaluates to a string that describes
402325c4296bSdrh ** the type affinity of the argument. This is used for testing of
402425c4296bSdrh ** the SQLite type logic.
402525c4296bSdrh */
402625c4296bSdrh const char *azAff[] = { "blob", "text", "numeric", "integer", "real" };
402725c4296bSdrh char aff;
402825c4296bSdrh assert( nFarg==1 );
402925c4296bSdrh aff = sqlite3ExprAffinity(pFarg->a[0].pExpr);
403025c4296bSdrh sqlite3VdbeLoadString(v, target,
403125c4296bSdrh (aff<=SQLITE_AFF_NONE) ? "none" : azAff[aff-SQLITE_AFF_BLOB]);
403225c4296bSdrh break;
403325c4296bSdrh }
40343780f9a4Sdrh #endif /* !defined(SQLITE_UNTESTABLE) */
403525c4296bSdrh }
403625c4296bSdrh return target;
403725c4296bSdrh }
403825c4296bSdrh
40394bc1cc18Sdrh /*
4040e70d4583Sdrh ** Check to see if pExpr is one of the indexed expressions on pParse->pIdxExpr.
40414bc1cc18Sdrh ** If it is, then resolve the expression by reading from the index and
4042e70d4583Sdrh ** return the register into which the value has been read. If pExpr is
4043e70d4583Sdrh ** not an indexed expression, then return negative.
40444bc1cc18Sdrh */
sqlite3IndexedExprLookup(Parse * pParse,Expr * pExpr,int target)4045e70d4583Sdrh static SQLITE_NOINLINE int sqlite3IndexedExprLookup(
40464bc1cc18Sdrh Parse *pParse, /* The parsing context */
40474bc1cc18Sdrh Expr *pExpr, /* The expression to potentially bypass */
40484bc1cc18Sdrh int target /* Where to store the result of the expression */
40494bc1cc18Sdrh ){
4050e70d4583Sdrh IndexedExpr *p;
40517a98937dSdrh Vdbe *v;
40524bc1cc18Sdrh for(p=pParse->pIdxExpr; p; p=p->pIENext){
4053a331cf7eSdrh int iDataCur = p->iDataCur;
4054a331cf7eSdrh if( iDataCur<0 ) continue;
4055a331cf7eSdrh if( pParse->iSelfTab ){
4056a331cf7eSdrh if( p->iDataCur!=pParse->iSelfTab-1 ) continue;
4057a331cf7eSdrh iDataCur = -1;
4058a331cf7eSdrh }
4059a331cf7eSdrh if( sqlite3ExprCompare(0, pExpr, p->pExpr, iDataCur)!=0 ) continue;
40607a98937dSdrh v = pParse->pVdbe;
40617a98937dSdrh assert( v!=0 );
40627a98937dSdrh if( p->bMaybeNullRow ){
40637a98937dSdrh /* If the index is on a NULL row due to an outer join, then we
40647a98937dSdrh ** cannot extract the value from the index. The value must be
40657a98937dSdrh ** computed using the original expression. */
40667a98937dSdrh int addr = sqlite3VdbeCurrentAddr(v);
40677a98937dSdrh sqlite3VdbeAddOp3(v, OP_IfNullRow, p->iIdxCur, addr+3, target);
40687a98937dSdrh VdbeCoverage(v);
40697a98937dSdrh sqlite3VdbeAddOp3(v, OP_Column, p->iIdxCur, p->iIdxCol, target);
40707a2a8ceeSdrh VdbeComment((v, "%s expr-column %d", p->zIdxName, p->iIdxCol));
40717a98937dSdrh sqlite3VdbeGoto(v, 0);
40727a98937dSdrh p = pParse->pIdxExpr;
40737a98937dSdrh pParse->pIdxExpr = 0;
40747a98937dSdrh sqlite3ExprCode(pParse, pExpr, target);
40757a98937dSdrh pParse->pIdxExpr = p;
40767a98937dSdrh sqlite3VdbeJumpHere(v, addr+2);
40777a98937dSdrh }else{
40787a98937dSdrh sqlite3VdbeAddOp3(v, OP_Column, p->iIdxCur, p->iIdxCol, target);
40797a2a8ceeSdrh VdbeComment((v, "%s expr-column %d", p->zIdxName, p->iIdxCol));
40807a98937dSdrh }
40814bc1cc18Sdrh return target;
40824bc1cc18Sdrh }
40834bc1cc18Sdrh return -1; /* Not found */
40844bc1cc18Sdrh }
40854bc1cc18Sdrh
408671c57db0Sdan
4087a4c3c87eSdrh /*
4088cce7d176Sdrh ** Generate code into the current Vdbe to evaluate the given
40892dcef11bSdrh ** expression. Attempt to store the results in register "target".
40902dcef11bSdrh ** Return the register where results are stored.
4091389a1adbSdrh **
40928b213899Sdrh ** With this routine, there is no guarantee that results will
40932dcef11bSdrh ** be stored in target. The result might be stored in some other
40942dcef11bSdrh ** register if it is convenient to do so. The calling function
40952dcef11bSdrh ** must check the return code and move the results to the desired
40962dcef11bSdrh ** register.
4097cce7d176Sdrh */
sqlite3ExprCodeTarget(Parse * pParse,Expr * pExpr,int target)4098678ccce8Sdrh int sqlite3ExprCodeTarget(Parse *pParse, Expr *pExpr, int target){
40992dcef11bSdrh Vdbe *v = pParse->pVdbe; /* The VM under construction */
41002dcef11bSdrh int op; /* The opcode being coded */
41012dcef11bSdrh int inReg = target; /* Results stored in register inReg */
41022dcef11bSdrh int regFree1 = 0; /* If non-zero free this temporary register */
41032dcef11bSdrh int regFree2 = 0; /* If non-zero free this temporary register */
41047b35a77bSdan int r1, r2; /* Various register numbers */
410510d1edf0Sdrh Expr tempX; /* Temporary expression node */
410671c57db0Sdan int p5 = 0;
4107ffe07b2dSdrh
41089cbf3425Sdrh assert( target>0 && target<=pParse->nMem );
4109b639a209Sdrh assert( v!=0 );
4110389a1adbSdrh
4111a331cf7eSdrh expr_code_doover:
4112a331cf7eSdrh if( pExpr==0 ){
4113a331cf7eSdrh op = TK_NULL;
4114a331cf7eSdrh }else if( pParse->pIdxExpr!=0
41154bc1cc18Sdrh && !ExprHasProperty(pExpr, EP_Leaf)
4116e70d4583Sdrh && (r1 = sqlite3IndexedExprLookup(pParse, pExpr, target))>=0
41174bc1cc18Sdrh ){
41184bc1cc18Sdrh return r1;
4119389a1adbSdrh }else{
4120e7375bfaSdrh assert( !ExprHasVVAProperty(pExpr,EP_Immutable) );
4121f2bc013cSdrh op = pExpr->op;
4122389a1adbSdrh }
4123f2bc013cSdrh switch( op ){
412413449892Sdrh case TK_AGG_COLUMN: {
412513449892Sdrh AggInfo *pAggInfo = pExpr->pAggInfo;
41260934d640Sdrh struct AggInfo_col *pCol;
41270934d640Sdrh assert( pAggInfo!=0 );
41280934d640Sdrh assert( pExpr->iAgg>=0 && pExpr->iAgg<pAggInfo->nColumn );
41290934d640Sdrh pCol = &pAggInfo->aCol[pExpr->iAgg];
413013449892Sdrh if( !pAggInfo->directMode ){
41319de221dfSdrh assert( pCol->iMem>0 );
4132c332cc30Sdrh return pCol->iMem;
413313449892Sdrh }else if( pAggInfo->useSortingIdx ){
41340c76e892Sdrh Table *pTab = pCol->pTab;
41355134d135Sdan sqlite3VdbeAddOp3(v, OP_Column, pAggInfo->sortingIdxPTab,
4136389a1adbSdrh pCol->iSorterColumn, target);
41378d5cea6bSdrh if( pCol->iColumn<0 ){
41388d5cea6bSdrh VdbeComment((v,"%s.rowid",pTab->zName));
41394b1b65caSdrh }else if( ALWAYS(pTab!=0) ){
4140cf9d36d1Sdrh VdbeComment((v,"%s.%s",
4141cf9d36d1Sdrh pTab->zName, pTab->aCol[pCol->iColumn].zCnName));
41428d5cea6bSdrh if( pTab->aCol[pCol->iColumn].affinity==SQLITE_AFF_REAL ){
41438d5cea6bSdrh sqlite3VdbeAddOp1(v, OP_RealAffinity, target);
41448d5cea6bSdrh }
41450c76e892Sdrh }
4146c332cc30Sdrh return target;
414713449892Sdrh }
414813449892Sdrh /* Otherwise, fall thru into the TK_COLUMN case */
414908b92086Sdrh /* no break */ deliberate_fall_through
415013449892Sdrh }
4151967e8b73Sdrh case TK_COLUMN: {
4152b2b9d3d7Sdrh int iTab = pExpr->iTable;
415367b9ba17Sdrh int iReg;
4154efad2e23Sdrh if( ExprHasProperty(pExpr, EP_FixedCol) ){
4155d98f5324Sdrh /* This COLUMN expression is really a constant due to WHERE clause
4156d98f5324Sdrh ** constraints, and that constant is coded by the pExpr->pLeft
4157d98f5324Sdrh ** expresssion. However, make sure the constant has the correct
4158d98f5324Sdrh ** datatype by applying the Affinity of the table column to the
4159d98f5324Sdrh ** constant.
4160d98f5324Sdrh */
416157f7ece7Sdrh int aff;
416267b9ba17Sdrh iReg = sqlite3ExprCodeTarget(pParse, pExpr->pLeft,target);
4163477572b9Sdrh assert( ExprUseYTab(pExpr) );
4164*63b3a64cSdrh assert( pExpr->y.pTab!=0 );
416557f7ece7Sdrh aff = sqlite3TableColumnAffinity(pExpr->y.pTab, pExpr->iColumn);
416696fb16eeSdrh if( aff>SQLITE_AFF_BLOB ){
4167d98f5324Sdrh static const char zAff[] = "B\000C\000D\000E";
4168d98f5324Sdrh assert( SQLITE_AFF_BLOB=='A' );
4169d98f5324Sdrh assert( SQLITE_AFF_TEXT=='B' );
4170d98f5324Sdrh sqlite3VdbeAddOp4(v, OP_Affinity, iReg, 1, 0,
4171d98f5324Sdrh &zAff[(aff-'B')*2], P4_STATIC);
4172d98f5324Sdrh }
4173d98f5324Sdrh return iReg;
4174efad2e23Sdrh }
4175b2b9d3d7Sdrh if( iTab<0 ){
41766e97f8ecSdrh if( pParse->iSelfTab<0 ){
41779942ef0dSdrh /* Other columns in the same row for CHECK constraints or
41789942ef0dSdrh ** generated columns or for inserting into partial index.
41799942ef0dSdrh ** The row is unpacked into registers beginning at
41809942ef0dSdrh ** 0-(pParse->iSelfTab). The rowid (if any) is in a register
41819942ef0dSdrh ** immediately prior to the first column.
41829942ef0dSdrh */
41839942ef0dSdrh Column *pCol;
4184477572b9Sdrh Table *pTab;
41859942ef0dSdrh int iSrc;
4186c5f808d8Sdrh int iCol = pExpr->iColumn;
4187477572b9Sdrh assert( ExprUseYTab(pExpr) );
4188477572b9Sdrh pTab = pExpr->y.pTab;
41899942ef0dSdrh assert( pTab!=0 );
4190c5f808d8Sdrh assert( iCol>=XN_ROWID );
4191b0cbcd0eSdrh assert( iCol<pTab->nCol );
4192c5f808d8Sdrh if( iCol<0 ){
41939942ef0dSdrh return -1-pParse->iSelfTab;
41949942ef0dSdrh }
4195c5f808d8Sdrh pCol = pTab->aCol + iCol;
4196c5f808d8Sdrh testcase( iCol!=sqlite3TableColumnToStorage(pTab,iCol) );
4197c5f808d8Sdrh iSrc = sqlite3TableColumnToStorage(pTab, iCol) - pParse->iSelfTab;
41989942ef0dSdrh #ifndef SQLITE_OMIT_GENERATED_COLUMNS
41999942ef0dSdrh if( pCol->colFlags & COLFLAG_GENERATED ){
42004e8e533bSdrh if( pCol->colFlags & COLFLAG_BUSY ){
42014e8e533bSdrh sqlite3ErrorMsg(pParse, "generated column loop on \"%s\"",
4202cf9d36d1Sdrh pCol->zCnName);
42034e8e533bSdrh return 0;
42044e8e533bSdrh }
42054e8e533bSdrh pCol->colFlags |= COLFLAG_BUSY;
42064e8e533bSdrh if( pCol->colFlags & COLFLAG_NOTAVAIL ){
420779cf2b71Sdrh sqlite3ExprCodeGeneratedColumn(pParse, pTab, pCol, iSrc);
42084e8e533bSdrh }
42094e8e533bSdrh pCol->colFlags &= ~(COLFLAG_BUSY|COLFLAG_NOTAVAIL);
4210dd6cc9b5Sdrh return iSrc;
42119942ef0dSdrh }else
42129942ef0dSdrh #endif /* SQLITE_OMIT_GENERATED_COLUMNS */
42139942ef0dSdrh if( pCol->affinity==SQLITE_AFF_REAL ){
42149942ef0dSdrh sqlite3VdbeAddOp2(v, OP_SCopy, iSrc, target);
4215bffdd636Sdrh sqlite3VdbeAddOp1(v, OP_RealAffinity, target);
4216bffdd636Sdrh return target;
4217bffdd636Sdrh }else{
42189942ef0dSdrh return iSrc;
4219bffdd636Sdrh }
4220c4a3c779Sdrh }else{
42211f9ca2c8Sdrh /* Coding an expression that is part of an index where column names
42221f9ca2c8Sdrh ** in the index refer to the table to which the index belongs */
42233e34eabcSdrh iTab = pParse->iSelfTab - 1;
42242282792aSdrh }
4225b2b9d3d7Sdrh }
4226477572b9Sdrh assert( ExprUseYTab(pExpr) );
4227*63b3a64cSdrh assert( pExpr->y.pTab!=0 );
422867b9ba17Sdrh iReg = sqlite3ExprCodeGetColumn(pParse, pExpr->y.pTab,
4229b2b9d3d7Sdrh pExpr->iColumn, iTab, target,
4230b2b9d3d7Sdrh pExpr->op2);
423167b9ba17Sdrh return iReg;
4232cce7d176Sdrh }
4233cce7d176Sdrh case TK_INTEGER: {
423413573c71Sdrh codeInteger(pParse, pExpr, 0, target);
4235c332cc30Sdrh return target;
423651e9a445Sdrh }
42378abed7b9Sdrh case TK_TRUEFALSE: {
423896acafbeSdrh sqlite3VdbeAddOp2(v, OP_Integer, sqlite3ExprTruthValue(pExpr), target);
4239007c843bSdrh return target;
4240007c843bSdrh }
424113573c71Sdrh #ifndef SQLITE_OMIT_FLOATING_POINT
4242598f1340Sdrh case TK_FLOAT: {
424333e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) );
424433e619fcSdrh codeReal(v, pExpr->u.zToken, 0, target);
4245c332cc30Sdrh return target;
4246598f1340Sdrh }
424713573c71Sdrh #endif
4248fec19aadSdrh case TK_STRING: {
424933e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) );
4250076e85f5Sdrh sqlite3VdbeLoadString(v, target, pExpr->u.zToken);
4251c332cc30Sdrh return target;
4252cce7d176Sdrh }
4253aac30f9bSdrh default: {
4254c29af653Sdrh /* Make NULL the default case so that if a bug causes an illegal
4255c29af653Sdrh ** Expr node to be passed into this function, it will be handled
42569524a7eaSdrh ** sanely and not crash. But keep the assert() to bring the problem
42579524a7eaSdrh ** to the attention of the developers. */
425805428127Sdrh assert( op==TK_NULL || op==TK_ERROR || pParse->db->mallocFailed );
42599de221dfSdrh sqlite3VdbeAddOp2(v, OP_Null, 0, target);
4260c332cc30Sdrh return target;
4261f0863fe5Sdrh }
42625338a5f7Sdanielk1977 #ifndef SQLITE_OMIT_BLOB_LITERAL
4263c572ef7fSdanielk1977 case TK_BLOB: {
42646c8c6cecSdrh int n;
42656c8c6cecSdrh const char *z;
4266ca48c90fSdrh char *zBlob;
426733e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) );
426833e619fcSdrh assert( pExpr->u.zToken[0]=='x' || pExpr->u.zToken[0]=='X' );
426933e619fcSdrh assert( pExpr->u.zToken[1]=='\'' );
427033e619fcSdrh z = &pExpr->u.zToken[2];
4271b7916a78Sdrh n = sqlite3Strlen30(z) - 1;
4272b7916a78Sdrh assert( z[n]=='\'' );
4273ca48c90fSdrh zBlob = sqlite3HexToBlob(sqlite3VdbeDb(v), z, n);
4274ca48c90fSdrh sqlite3VdbeAddOp4(v, OP_Blob, n/2, target, 0, zBlob, P4_DYNAMIC);
4275c332cc30Sdrh return target;
4276c572ef7fSdanielk1977 }
42775338a5f7Sdanielk1977 #endif
427850457896Sdrh case TK_VARIABLE: {
427933e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) );
428033e619fcSdrh assert( pExpr->u.zToken!=0 );
428133e619fcSdrh assert( pExpr->u.zToken[0]!=0 );
4282eaf52d88Sdrh sqlite3VdbeAddOp2(v, OP_Variable, pExpr->iColumn, target);
428333e619fcSdrh if( pExpr->u.zToken[1]!=0 ){
42849bf755ccSdrh const char *z = sqlite3VListNumToName(pParse->pVList, pExpr->iColumn);
42859524a7eaSdrh assert( pExpr->u.zToken[0]=='?' || (z && !strcmp(pExpr->u.zToken, z)) );
4286ce1bbe51Sdrh pParse->pVList[0] = 0; /* Indicate VList may no longer be enlarged */
42879bf755ccSdrh sqlite3VdbeAppendP4(v, (char*)z, P4_STATIC);
42889bf755ccSdrh }
4289c332cc30Sdrh return target;
429050457896Sdrh }
42914e0cff60Sdrh case TK_REGISTER: {
4292c332cc30Sdrh return pExpr->iTable;
42934e0cff60Sdrh }
4294487e262fSdrh #ifndef SQLITE_OMIT_CAST
4295487e262fSdrh case TK_CAST: {
4296487e262fSdrh /* Expressions of the form: CAST(pLeft AS token) */
42972dcef11bSdrh inReg = sqlite3ExprCodeTarget(pParse, pExpr->pLeft, target);
42981735fa88Sdrh if( inReg!=target ){
42991735fa88Sdrh sqlite3VdbeAddOp2(v, OP_SCopy, inReg, target);
43001735fa88Sdrh inReg = target;
43011735fa88Sdrh }
4302f9751074Sdrh assert( !ExprHasProperty(pExpr, EP_IntValue) );
43034169e430Sdrh sqlite3VdbeAddOp2(v, OP_Cast, target,
43044169e430Sdrh sqlite3AffinityType(pExpr->u.zToken, 0));
4305c332cc30Sdrh return inReg;
4306487e262fSdrh }
4307487e262fSdrh #endif /* SQLITE_OMIT_CAST */
430871c57db0Sdan case TK_IS:
430971c57db0Sdan case TK_ISNOT:
431071c57db0Sdan op = (op==TK_IS) ? TK_EQ : TK_NE;
431171c57db0Sdan p5 = SQLITE_NULLEQ;
431271c57db0Sdan /* fall-through */
4313c9b84a1fSdrh case TK_LT:
4314c9b84a1fSdrh case TK_LE:
4315c9b84a1fSdrh case TK_GT:
4316c9b84a1fSdrh case TK_GE:
4317c9b84a1fSdrh case TK_NE:
4318c9b84a1fSdrh case TK_EQ: {
431971c57db0Sdan Expr *pLeft = pExpr->pLeft;
4320625015e0Sdan if( sqlite3ExprIsVector(pLeft) ){
432179752b6eSdrh codeVectorCompare(pParse, pExpr, target, op, p5);
432271c57db0Sdan }else{
432371c57db0Sdan r1 = sqlite3ExprCodeTemp(pParse, pLeft, ®Free1);
4324b6da74ebSdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2);
4325871e7ff4Sdrh sqlite3VdbeAddOp2(v, OP_Integer, 1, inReg);
4326871e7ff4Sdrh codeCompare(pParse, pLeft, pExpr->pRight, op, r1, r2,
4327871e7ff4Sdrh sqlite3VdbeCurrentAddr(v)+2, p5,
4328898c527eSdrh ExprHasProperty(pExpr,EP_Commuted));
43297d176105Sdrh assert(TK_LT==OP_Lt); testcase(op==OP_Lt); VdbeCoverageIf(v,op==OP_Lt);
43307d176105Sdrh assert(TK_LE==OP_Le); testcase(op==OP_Le); VdbeCoverageIf(v,op==OP_Le);
43317d176105Sdrh assert(TK_GT==OP_Gt); testcase(op==OP_Gt); VdbeCoverageIf(v,op==OP_Gt);
43327d176105Sdrh assert(TK_GE==OP_Ge); testcase(op==OP_Ge); VdbeCoverageIf(v,op==OP_Ge);
43337d176105Sdrh assert(TK_EQ==OP_Eq); testcase(op==OP_Eq); VdbeCoverageIf(v,op==OP_Eq);
43347d176105Sdrh assert(TK_NE==OP_Ne); testcase(op==OP_Ne); VdbeCoverageIf(v,op==OP_Ne);
4335529df929Sdrh if( p5==SQLITE_NULLEQ ){
4336529df929Sdrh sqlite3VdbeAddOp2(v, OP_Integer, 0, inReg);
4337529df929Sdrh }else{
4338529df929Sdrh sqlite3VdbeAddOp3(v, OP_ZeroOrNull, r1, inReg, r2);
4339529df929Sdrh }
4340c5499befSdrh testcase( regFree1==0 );
4341c5499befSdrh testcase( regFree2==0 );
4342c9b84a1fSdrh }
43436a2fe093Sdrh break;
43446a2fe093Sdrh }
4345cce7d176Sdrh case TK_AND:
4346cce7d176Sdrh case TK_OR:
4347cce7d176Sdrh case TK_PLUS:
4348cce7d176Sdrh case TK_STAR:
4349cce7d176Sdrh case TK_MINUS:
4350bf4133cbSdrh case TK_REM:
4351bf4133cbSdrh case TK_BITAND:
4352bf4133cbSdrh case TK_BITOR:
435317c40294Sdrh case TK_SLASH:
4354bf4133cbSdrh case TK_LSHIFT:
4355855eb1cfSdrh case TK_RSHIFT:
43560040077dSdrh case TK_CONCAT: {
43577d176105Sdrh assert( TK_AND==OP_And ); testcase( op==TK_AND );
43587d176105Sdrh assert( TK_OR==OP_Or ); testcase( op==TK_OR );
43597d176105Sdrh assert( TK_PLUS==OP_Add ); testcase( op==TK_PLUS );
43607d176105Sdrh assert( TK_MINUS==OP_Subtract ); testcase( op==TK_MINUS );
43617d176105Sdrh assert( TK_REM==OP_Remainder ); testcase( op==TK_REM );
43627d176105Sdrh assert( TK_BITAND==OP_BitAnd ); testcase( op==TK_BITAND );
43637d176105Sdrh assert( TK_BITOR==OP_BitOr ); testcase( op==TK_BITOR );
43647d176105Sdrh assert( TK_SLASH==OP_Divide ); testcase( op==TK_SLASH );
43657d176105Sdrh assert( TK_LSHIFT==OP_ShiftLeft ); testcase( op==TK_LSHIFT );
43667d176105Sdrh assert( TK_RSHIFT==OP_ShiftRight ); testcase( op==TK_RSHIFT );
43677d176105Sdrh assert( TK_CONCAT==OP_Concat ); testcase( op==TK_CONCAT );
43682dcef11bSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1);
43692dcef11bSdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2);
43705b6afba9Sdrh sqlite3VdbeAddOp3(v, op, r2, r1, target);
4371c5499befSdrh testcase( regFree1==0 );
4372c5499befSdrh testcase( regFree2==0 );
43730040077dSdrh break;
43740040077dSdrh }
4375cce7d176Sdrh case TK_UMINUS: {
4376fec19aadSdrh Expr *pLeft = pExpr->pLeft;
4377fec19aadSdrh assert( pLeft );
437813573c71Sdrh if( pLeft->op==TK_INTEGER ){
437913573c71Sdrh codeInteger(pParse, pLeft, 1, target);
4380c332cc30Sdrh return target;
438113573c71Sdrh #ifndef SQLITE_OMIT_FLOATING_POINT
438213573c71Sdrh }else if( pLeft->op==TK_FLOAT ){
438333e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) );
438433e619fcSdrh codeReal(v, pLeft->u.zToken, 1, target);
4385c332cc30Sdrh return target;
438613573c71Sdrh #endif
43873c84ddffSdrh }else{
438810d1edf0Sdrh tempX.op = TK_INTEGER;
438910d1edf0Sdrh tempX.flags = EP_IntValue|EP_TokenOnly;
439010d1edf0Sdrh tempX.u.iValue = 0;
4391e7375bfaSdrh ExprClearVVAProperties(&tempX);
439210d1edf0Sdrh r1 = sqlite3ExprCodeTemp(pParse, &tempX, ®Free1);
4393e55cbd72Sdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free2);
43942dcef11bSdrh sqlite3VdbeAddOp3(v, OP_Subtract, r2, r1, target);
4395c5499befSdrh testcase( regFree2==0 );
43963c84ddffSdrh }
43976e142f54Sdrh break;
43986e142f54Sdrh }
4399bf4133cbSdrh case TK_BITNOT:
44006e142f54Sdrh case TK_NOT: {
44017d176105Sdrh assert( TK_BITNOT==OP_BitNot ); testcase( op==TK_BITNOT );
44027d176105Sdrh assert( TK_NOT==OP_Not ); testcase( op==TK_NOT );
4403e99fa2afSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1);
4404e99fa2afSdrh testcase( regFree1==0 );
4405e99fa2afSdrh sqlite3VdbeAddOp2(v, op, r1, inReg);
4406cce7d176Sdrh break;
4407cce7d176Sdrh }
44088abed7b9Sdrh case TK_TRUTH: {
440996acafbeSdrh int isTrue; /* IS TRUE or IS NOT TRUE */
441096acafbeSdrh int bNormal; /* IS TRUE or IS FALSE */
4411007c843bSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1);
4412007c843bSdrh testcase( regFree1==0 );
441396acafbeSdrh isTrue = sqlite3ExprTruthValue(pExpr->pRight);
441496acafbeSdrh bNormal = pExpr->op2==TK_IS;
441596acafbeSdrh testcase( isTrue && bNormal);
441696acafbeSdrh testcase( !isTrue && bNormal);
441796acafbeSdrh sqlite3VdbeAddOp4Int(v, OP_IsTrue, r1, inReg, !isTrue, isTrue ^ bNormal);
4418007c843bSdrh break;
4419007c843bSdrh }
4420cce7d176Sdrh case TK_ISNULL:
4421cce7d176Sdrh case TK_NOTNULL: {
44226a288a33Sdrh int addr;
44237d176105Sdrh assert( TK_ISNULL==OP_IsNull ); testcase( op==TK_ISNULL );
44247d176105Sdrh assert( TK_NOTNULL==OP_NotNull ); testcase( op==TK_NOTNULL );
44259de221dfSdrh sqlite3VdbeAddOp2(v, OP_Integer, 1, target);
44262dcef11bSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1);
4427c5499befSdrh testcase( regFree1==0 );
44282dcef11bSdrh addr = sqlite3VdbeAddOp1(v, op, r1);
44297d176105Sdrh VdbeCoverageIf(v, op==TK_ISNULL);
44307d176105Sdrh VdbeCoverageIf(v, op==TK_NOTNULL);
4431a976979bSdrh sqlite3VdbeAddOp2(v, OP_Integer, 0, target);
44326a288a33Sdrh sqlite3VdbeJumpHere(v, addr);
4433a37cdde0Sdanielk1977 break;
4434f2bc013cSdrh }
44352282792aSdrh case TK_AGG_FUNCTION: {
443613449892Sdrh AggInfo *pInfo = pExpr->pAggInfo;
44370934d640Sdrh if( pInfo==0
44380934d640Sdrh || NEVER(pExpr->iAgg<0)
44390934d640Sdrh || NEVER(pExpr->iAgg>=pInfo->nFunc)
44400934d640Sdrh ){
444133e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) );
444262fc069eSdrh sqlite3ErrorMsg(pParse, "misuse of aggregate: %#T()", pExpr);
44437e56e711Sdrh }else{
4444c332cc30Sdrh return pInfo->aFunc[pExpr->iAgg].iMem;
44457e56e711Sdrh }
44462282792aSdrh break;
44472282792aSdrh }
4448cce7d176Sdrh case TK_FUNCTION: {
444912ffee8cSdrh ExprList *pFarg; /* List of function arguments */
445012ffee8cSdrh int nFarg; /* Number of function arguments */
445112ffee8cSdrh FuncDef *pDef; /* The function definition object */
445212ffee8cSdrh const char *zId; /* The function name */
4453693e6719Sdrh u32 constMask = 0; /* Mask of function arguments that are constant */
445412ffee8cSdrh int i; /* Loop counter */
4455c332cc30Sdrh sqlite3 *db = pParse->db; /* The database connection */
445612ffee8cSdrh u8 enc = ENC(db); /* The text encoding used by this database */
445712ffee8cSdrh CollSeq *pColl = 0; /* A collating sequence */
445817435752Sdrh
445967a9b8edSdan #ifndef SQLITE_OMIT_WINDOWFUNC
4460eda079cdSdrh if( ExprHasProperty(pExpr, EP_WinFunc) ){
4461eda079cdSdrh return pExpr->y.pWin->regResult;
446286fb6e17Sdan }
446367a9b8edSdan #endif
446486fb6e17Sdan
44651e9b53f9Sdrh if( ConstFactorOk(pParse) && sqlite3ExprIsConstantNotJoin(pExpr) ){
44669b258c54Sdrh /* SQL functions can be expensive. So try to avoid running them
44679b258c54Sdrh ** multiple times if we know they always give the same result */
44689b258c54Sdrh return sqlite3ExprCodeRunJustOnce(pParse, pExpr, -1);
44691e9b53f9Sdrh }
4470e7375bfaSdrh assert( !ExprHasProperty(pExpr, EP_TokenOnly) );
4471a4eeccdfSdrh assert( ExprUseXList(pExpr) );
447212ffee8cSdrh pFarg = pExpr->x.pList;
447312ffee8cSdrh nFarg = pFarg ? pFarg->nExpr : 0;
447433e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) );
447533e619fcSdrh zId = pExpr->u.zToken;
447680738d9cSdrh pDef = sqlite3FindFunction(db, zId, nFarg, enc, 0);
4477cc15313cSdrh #ifdef SQLITE_ENABLE_UNKNOWN_SQL_FUNCTION
4478cc15313cSdrh if( pDef==0 && pParse->explain ){
4479cc15313cSdrh pDef = sqlite3FindFunction(db, "unknown", nFarg, enc, 0);
4480cc15313cSdrh }
4481cc15313cSdrh #endif
4482b6e9f7a4Sdan if( pDef==0 || pDef->xFinalize!=0 ){
448362fc069eSdrh sqlite3ErrorMsg(pParse, "unknown function: %#T()", pExpr);
4484feb306f5Sdrh break;
4485feb306f5Sdrh }
448625c4296bSdrh if( pDef->funcFlags & SQLITE_FUNC_INLINE ){
44870dfa5255Sdrh assert( (pDef->funcFlags & SQLITE_FUNC_UNSAFE)==0 );
44880dfa5255Sdrh assert( (pDef->funcFlags & SQLITE_FUNC_DIRECT)==0 );
448925c4296bSdrh return exprCodeInlineFunction(pParse, pFarg,
449025c4296bSdrh SQLITE_PTR_TO_INT(pDef->pUserData), target);
44912eeca204Sdrh }else if( pDef->funcFlags & (SQLITE_FUNC_DIRECT|SQLITE_FUNC_UNSAFE) ){
44920dfa5255Sdrh sqlite3ExprFunctionUsable(pParse, pExpr, pDef);
4493ae6bb957Sdrh }
4494a1a523a5Sdrh
4495d1a01edaSdrh for(i=0; i<nFarg; i++){
4496d1a01edaSdrh if( i<32 && sqlite3ExprIsConstant(pFarg->a[i].pExpr) ){
4497693e6719Sdrh testcase( i==31 );
4498693e6719Sdrh constMask |= MASKBIT32(i);
4499d1a01edaSdrh }
4500d1a01edaSdrh if( (pDef->funcFlags & SQLITE_FUNC_NEEDCOLL)!=0 && !pColl ){
4501d1a01edaSdrh pColl = sqlite3ExprCollSeq(pParse, pFarg->a[i].pExpr);
4502d1a01edaSdrh }
4503d1a01edaSdrh }
450412ffee8cSdrh if( pFarg ){
4505d1a01edaSdrh if( constMask ){
4506d1a01edaSdrh r1 = pParse->nMem+1;
4507d1a01edaSdrh pParse->nMem += nFarg;
4508d1a01edaSdrh }else{
450912ffee8cSdrh r1 = sqlite3GetTempRange(pParse, nFarg);
4510d1a01edaSdrh }
4511a748fdccSdrh
4512a748fdccSdrh /* For length() and typeof() functions with a column argument,
4513a748fdccSdrh ** set the P5 parameter to the OP_Column opcode to OPFLAG_LENGTHARG
4514a748fdccSdrh ** or OPFLAG_TYPEOFARG respectively, to avoid unnecessary data
4515a748fdccSdrh ** loading.
4516a748fdccSdrh */
4517d36e1041Sdrh if( (pDef->funcFlags & (SQLITE_FUNC_LENGTH|SQLITE_FUNC_TYPEOF))!=0 ){
45184e245a4cSdrh u8 exprOp;
4519a748fdccSdrh assert( nFarg==1 );
4520a748fdccSdrh assert( pFarg->a[0].pExpr!=0 );
45214e245a4cSdrh exprOp = pFarg->a[0].pExpr->op;
45224e245a4cSdrh if( exprOp==TK_COLUMN || exprOp==TK_AGG_COLUMN ){
4523a748fdccSdrh assert( SQLITE_FUNC_LENGTH==OPFLAG_LENGTHARG );
4524a748fdccSdrh assert( SQLITE_FUNC_TYPEOF==OPFLAG_TYPEOFARG );
4525b1fba286Sdrh testcase( pDef->funcFlags & OPFLAG_LENGTHARG );
4526b1fba286Sdrh pFarg->a[0].pExpr->op2 =
4527b1fba286Sdrh pDef->funcFlags & (OPFLAG_LENGTHARG|OPFLAG_TYPEOFARG);
4528a748fdccSdrh }
4529a748fdccSdrh }
4530a748fdccSdrh
45315579d59fSdrh sqlite3ExprCodeExprList(pParse, pFarg, r1, 0,
4532d1a01edaSdrh SQLITE_ECEL_DUP|SQLITE_ECEL_FACTOR);
4533892d3179Sdrh }else{
453412ffee8cSdrh r1 = 0;
4535892d3179Sdrh }
4536b7f6f68fSdrh #ifndef SQLITE_OMIT_VIRTUALTABLE
4537a43fa227Sdrh /* Possibly overload the function if the first argument is
4538a43fa227Sdrh ** a virtual table column.
4539a43fa227Sdrh **
4540a43fa227Sdrh ** For infix functions (LIKE, GLOB, REGEXP, and MATCH) use the
4541a43fa227Sdrh ** second argument, not the first, as the argument to test to
4542a43fa227Sdrh ** see if it is a column in a virtual table. This is done because
4543a43fa227Sdrh ** the left operand of infix functions (the operand we want to
4544a43fa227Sdrh ** control overloading) ends up as the second argument to the
4545a43fa227Sdrh ** function. The expression "A glob B" is equivalent to
4546a43fa227Sdrh ** "glob(B,A). We want to use the A in "A glob B" to test
4547a43fa227Sdrh ** for function overloading. But we use the B term in "glob(B,A)".
4548a43fa227Sdrh */
454959155065Sdrh if( nFarg>=2 && ExprHasProperty(pExpr, EP_InfixFunc) ){
455012ffee8cSdrh pDef = sqlite3VtabOverloadFunction(db, pDef, nFarg, pFarg->a[1].pExpr);
455112ffee8cSdrh }else if( nFarg>0 ){
455212ffee8cSdrh pDef = sqlite3VtabOverloadFunction(db, pDef, nFarg, pFarg->a[0].pExpr);
4553b7f6f68fSdrh }
4554b7f6f68fSdrh #endif
4555d36e1041Sdrh if( pDef->funcFlags & SQLITE_FUNC_NEEDCOLL ){
45568b213899Sdrh if( !pColl ) pColl = db->pDfltColl;
455766a5167bSdrh sqlite3VdbeAddOp4(v, OP_CollSeq, 0, 0, 0, (char *)pColl, P4_COLLSEQ);
4558682f68b0Sdanielk1977 }
4559920cf596Sdrh sqlite3VdbeAddFunctionCall(pParse, constMask, r1, target, nFarg,
456020cee7d0Sdrh pDef, pExpr->op2);
456113d79502Sdrh if( nFarg ){
456213d79502Sdrh if( constMask==0 ){
456312ffee8cSdrh sqlite3ReleaseTempRange(pParse, r1, nFarg);
456413d79502Sdrh }else{
45653aef2fb1Sdrh sqlite3VdbeReleaseRegisters(pParse, r1, nFarg, constMask, 1);
456613d79502Sdrh }
45672dcef11bSdrh }
4568c332cc30Sdrh return target;
45696ec2733bSdrh }
4570fe2093d7Sdrh #ifndef SQLITE_OMIT_SUBQUERY
4571fe2093d7Sdrh case TK_EXISTS:
457219a775c2Sdrh case TK_SELECT: {
45738da209b1Sdan int nCol;
4574c5499befSdrh testcase( op==TK_EXISTS );
4575c5499befSdrh testcase( op==TK_SELECT );
4576d8d335d7Sdrh if( pParse->db->mallocFailed ){
4577d8d335d7Sdrh return 0;
4578a4eeccdfSdrh }else if( op==TK_SELECT
4579a4eeccdfSdrh && ALWAYS( ExprUseXSelect(pExpr) )
4580a4eeccdfSdrh && (nCol = pExpr->x.pSelect->pEList->nExpr)!=1
4581a4eeccdfSdrh ){
45828da209b1Sdan sqlite3SubselectError(pParse, nCol, 1);
45838da209b1Sdan }else{
458485bcdce2Sdrh return sqlite3CodeSubselect(pParse, pExpr);
45858da209b1Sdan }
458619a775c2Sdrh break;
458719a775c2Sdrh }
4588fc7f27b9Sdrh case TK_SELECT_COLUMN: {
4589966e2911Sdrh int n;
45902c31c00bSdrh Expr *pLeft = pExpr->pLeft;
45912c31c00bSdrh if( pLeft->iTable==0 || pParse->withinRJSubrtn > pLeft->op2 ){
45922c31c00bSdrh pLeft->iTable = sqlite3CodeSubselect(pParse, pLeft);
45932c31c00bSdrh pLeft->op2 = pParse->withinRJSubrtn;
4594fc7f27b9Sdrh }
45952c31c00bSdrh assert( pLeft->op==TK_SELECT || pLeft->op==TK_ERROR );
45962c31c00bSdrh n = sqlite3ExprVectorSize(pLeft);
459710f08270Sdrh if( pExpr->iTable!=n ){
4598966e2911Sdrh sqlite3ErrorMsg(pParse, "%d columns assigned %d values",
4599966e2911Sdrh pExpr->iTable, n);
4600966e2911Sdrh }
46012c31c00bSdrh return pLeft->iTable + pExpr->iColumn;
4602fc7f27b9Sdrh }
4603fef5208cSdrh case TK_IN: {
4604ec4ccdbcSdrh int destIfFalse = sqlite3VdbeMakeLabel(pParse);
4605ec4ccdbcSdrh int destIfNull = sqlite3VdbeMakeLabel(pParse);
4606e3365e6cSdrh sqlite3VdbeAddOp2(v, OP_Null, 0, target);
4607e3365e6cSdrh sqlite3ExprCodeIN(pParse, pExpr, destIfFalse, destIfNull);
460866ba23ceSdrh sqlite3VdbeAddOp2(v, OP_Integer, 1, target);
4609e3365e6cSdrh sqlite3VdbeResolveLabel(v, destIfFalse);
4610e3365e6cSdrh sqlite3VdbeAddOp2(v, OP_AddImm, target, 0);
4611e3365e6cSdrh sqlite3VdbeResolveLabel(v, destIfNull);
4612c332cc30Sdrh return target;
4613fef5208cSdrh }
4614e3365e6cSdrh #endif /* SQLITE_OMIT_SUBQUERY */
4615e3365e6cSdrh
4616e3365e6cSdrh
46172dcef11bSdrh /*
46182dcef11bSdrh ** x BETWEEN y AND z
46192dcef11bSdrh **
46202dcef11bSdrh ** This is equivalent to
46212dcef11bSdrh **
46222dcef11bSdrh ** x>=y AND x<=z
46232dcef11bSdrh **
46242dcef11bSdrh ** X is stored in pExpr->pLeft.
46252dcef11bSdrh ** Y is stored in pExpr->pList->a[0].pExpr.
46262dcef11bSdrh ** Z is stored in pExpr->pList->a[1].pExpr.
46272dcef11bSdrh */
4628fef5208cSdrh case TK_BETWEEN: {
462971c57db0Sdan exprCodeBetween(pParse, pExpr, target, 0, 0);
4630c332cc30Sdrh return target;
4631fef5208cSdrh }
46328878f8a8Sdrh case TK_COLLATE: {
46338878f8a8Sdrh if( !ExprHasProperty(pExpr, EP_Collate)
46348878f8a8Sdrh && ALWAYS(pExpr->pLeft)
46358878f8a8Sdrh && pExpr->pLeft->op==TK_FUNCTION
46368878f8a8Sdrh ){
46378878f8a8Sdrh inReg = sqlite3ExprCodeTarget(pParse, pExpr->pLeft, target);
46388878f8a8Sdrh if( inReg!=target ){
46398878f8a8Sdrh sqlite3VdbeAddOp2(v, OP_SCopy, inReg, target);
46408878f8a8Sdrh inReg = target;
46418878f8a8Sdrh }
46428878f8a8Sdrh sqlite3VdbeAddOp1(v, OP_ClrSubtype, inReg);
46438878f8a8Sdrh return inReg;
46448878f8a8Sdrh }else{
46458878f8a8Sdrh pExpr = pExpr->pLeft;
46468878f8a8Sdrh goto expr_code_doover; /* 2018-04-28: Prevent deep recursion. */
46478878f8a8Sdrh }
46488878f8a8Sdrh }
464994fa9c41Sdrh case TK_SPAN:
46504f07e5fbSdrh case TK_UPLUS: {
46511efa8023Sdrh pExpr = pExpr->pLeft;
465259ee43a7Sdrh goto expr_code_doover; /* 2018-04-28: Prevent deep recursion. OSSFuzz. */
4653a2e00042Sdrh }
46542dcef11bSdrh
4655165921a7Sdan case TK_TRIGGER: {
465665a7cd16Sdan /* If the opcode is TK_TRIGGER, then the expression is a reference
465765a7cd16Sdan ** to a column in the new.* or old.* pseudo-tables available to
465865a7cd16Sdan ** trigger programs. In this case Expr.iTable is set to 1 for the
465965a7cd16Sdan ** new.* pseudo-table, or 0 for the old.* pseudo-table. Expr.iColumn
466065a7cd16Sdan ** is set to the column of the pseudo-table to read, or to -1 to
466165a7cd16Sdan ** read the rowid field.
466265a7cd16Sdan **
466365a7cd16Sdan ** The expression is implemented using an OP_Param opcode. The p1
466465a7cd16Sdan ** parameter is set to 0 for an old.rowid reference, or to (i+1)
466565a7cd16Sdan ** to reference another column of the old.* pseudo-table, where
466665a7cd16Sdan ** i is the index of the column. For a new.rowid reference, p1 is
466765a7cd16Sdan ** set to (n+1), where n is the number of columns in each pseudo-table.
466865a7cd16Sdan ** For a reference to any other column in the new.* pseudo-table, p1
466965a7cd16Sdan ** is set to (n+2+i), where n and i are as defined previously. For
467065a7cd16Sdan ** example, if the table on which triggers are being fired is
467165a7cd16Sdan ** declared as:
467265a7cd16Sdan **
467365a7cd16Sdan ** CREATE TABLE t1(a, b);
467465a7cd16Sdan **
467565a7cd16Sdan ** Then p1 is interpreted as follows:
467665a7cd16Sdan **
467765a7cd16Sdan ** p1==0 -> old.rowid p1==3 -> new.rowid
467865a7cd16Sdan ** p1==1 -> old.a p1==4 -> new.a
467965a7cd16Sdan ** p1==2 -> old.b p1==5 -> new.b
468065a7cd16Sdan */
4681477572b9Sdrh Table *pTab;
4682477572b9Sdrh int iCol;
4683477572b9Sdrh int p1;
4684477572b9Sdrh
4685477572b9Sdrh assert( ExprUseYTab(pExpr) );
4686477572b9Sdrh pTab = pExpr->y.pTab;
4687477572b9Sdrh iCol = pExpr->iColumn;
4688477572b9Sdrh p1 = pExpr->iTable * (pTab->nCol+1) + 1
46897fe2fc0dSdrh + sqlite3TableColumnToStorage(pTab, iCol);
469065a7cd16Sdan
469165a7cd16Sdan assert( pExpr->iTable==0 || pExpr->iTable==1 );
4692dd6cc9b5Sdrh assert( iCol>=-1 && iCol<pTab->nCol );
4693dd6cc9b5Sdrh assert( pTab->iPKey<0 || iCol!=pTab->iPKey );
469465a7cd16Sdan assert( p1>=0 && p1<(pTab->nCol*2+2) );
469565a7cd16Sdan
469665a7cd16Sdan sqlite3VdbeAddOp2(v, OP_Param, p1, target);
4697896494e8Sdrh VdbeComment((v, "r[%d]=%s.%s", target,
4698165921a7Sdan (pExpr->iTable ? "new" : "old"),
4699cf9d36d1Sdrh (pExpr->iColumn<0 ? "rowid" : pExpr->y.pTab->aCol[iCol].zCnName)
4700165921a7Sdan ));
470165a7cd16Sdan
470244dbca83Sdrh #ifndef SQLITE_OMIT_FLOATING_POINT
470365a7cd16Sdan /* If the column has REAL affinity, it may currently be stored as an
4704113762a2Sdrh ** integer. Use OP_RealAffinity to make sure it is really real.
4705113762a2Sdrh **
4706113762a2Sdrh ** EVIDENCE-OF: R-60985-57662 SQLite will convert the value back to
4707113762a2Sdrh ** floating point when extracting it from the record. */
4708dd6cc9b5Sdrh if( iCol>=0 && pTab->aCol[iCol].affinity==SQLITE_AFF_REAL ){
47092832ad42Sdan sqlite3VdbeAddOp1(v, OP_RealAffinity, target);
47102832ad42Sdan }
471144dbca83Sdrh #endif
4712165921a7Sdan break;
4713165921a7Sdan }
4714165921a7Sdan
471571c57db0Sdan case TK_VECTOR: {
4716e835bc12Sdrh sqlite3ErrorMsg(pParse, "row value misused");
471771c57db0Sdan break;
471871c57db0Sdan }
471971c57db0Sdan
47209e9a67adSdrh /* TK_IF_NULL_ROW Expr nodes are inserted ahead of expressions
47219e9a67adSdrh ** that derive from the right-hand table of a LEFT JOIN. The
47229e9a67adSdrh ** Expr.iTable value is the table number for the right-hand table.
47239e9a67adSdrh ** The expression is only evaluated if that table is not currently
47249e9a67adSdrh ** on a LEFT JOIN NULL row.
47259e9a67adSdrh */
472631d6fd55Sdrh case TK_IF_NULL_ROW: {
472731d6fd55Sdrh int addrINR;
47289e9a67adSdrh u8 okConstFactor = pParse->okConstFactor;
4729ee373020Sdrh AggInfo *pAggInfo = pExpr->pAggInfo;
4730ee373020Sdrh if( pAggInfo ){
4731ee373020Sdrh assert( pExpr->iAgg>=0 && pExpr->iAgg<pAggInfo->nColumn );
4732ee373020Sdrh if( !pAggInfo->directMode ){
4733ee373020Sdrh inReg = pAggInfo->aCol[pExpr->iAgg].iMem;
47346b6d6c6bSdrh break;
47356b6d6c6bSdrh }
4736ee373020Sdrh if( pExpr->pAggInfo->useSortingIdx ){
4737ee373020Sdrh sqlite3VdbeAddOp3(v, OP_Column, pAggInfo->sortingIdxPTab,
4738ee373020Sdrh pAggInfo->aCol[pExpr->iAgg].iSorterColumn,
4739ee373020Sdrh target);
4740ee373020Sdrh inReg = target;
4741ee373020Sdrh break;
4742ee373020Sdrh }
4743ee373020Sdrh }
474431d6fd55Sdrh addrINR = sqlite3VdbeAddOp1(v, OP_IfNullRow, pExpr->iTable);
47459e9a67adSdrh /* Temporarily disable factoring of constant expressions, since
47469e9a67adSdrh ** even though expressions may appear to be constant, they are not
47479e9a67adSdrh ** really constant because they originate from the right-hand side
47489e9a67adSdrh ** of a LEFT JOIN. */
47499e9a67adSdrh pParse->okConstFactor = 0;
475031d6fd55Sdrh inReg = sqlite3ExprCodeTarget(pParse, pExpr->pLeft, target);
47519e9a67adSdrh pParse->okConstFactor = okConstFactor;
475231d6fd55Sdrh sqlite3VdbeJumpHere(v, addrINR);
475331d6fd55Sdrh sqlite3VdbeChangeP3(v, addrINR, inReg);
475431d6fd55Sdrh break;
475531d6fd55Sdrh }
475631d6fd55Sdrh
47572dcef11bSdrh /*
47582dcef11bSdrh ** Form A:
47592dcef11bSdrh ** CASE x WHEN e1 THEN r1 WHEN e2 THEN r2 ... WHEN eN THEN rN ELSE y END
47602dcef11bSdrh **
47612dcef11bSdrh ** Form B:
47622dcef11bSdrh ** CASE WHEN e1 THEN r1 WHEN e2 THEN r2 ... WHEN eN THEN rN ELSE y END
47632dcef11bSdrh **
47642dcef11bSdrh ** Form A is can be transformed into the equivalent form B as follows:
47652dcef11bSdrh ** CASE WHEN x=e1 THEN r1 WHEN x=e2 THEN r2 ...
47662dcef11bSdrh ** WHEN x=eN THEN rN ELSE y END
47672dcef11bSdrh **
47682dcef11bSdrh ** X (if it exists) is in pExpr->pLeft.
4769c5cd1249Sdrh ** Y is in the last element of pExpr->x.pList if pExpr->x.pList->nExpr is
4770c5cd1249Sdrh ** odd. The Y is also optional. If the number of elements in x.pList
4771c5cd1249Sdrh ** is even, then Y is omitted and the "otherwise" result is NULL.
47722dcef11bSdrh ** Ei is in pExpr->pList->a[i*2] and Ri is pExpr->pList->a[i*2+1].
47732dcef11bSdrh **
47742dcef11bSdrh ** The result of the expression is the Ri for the first matching Ei,
47752dcef11bSdrh ** or if there is no matching Ei, the ELSE term Y, or if there is
47762dcef11bSdrh ** no ELSE term, NULL.
47772dcef11bSdrh */
4778aac30f9bSdrh case TK_CASE: {
47792dcef11bSdrh int endLabel; /* GOTO label for end of CASE stmt */
47802dcef11bSdrh int nextCase; /* GOTO label for next WHEN clause */
47812dcef11bSdrh int nExpr; /* 2x number of WHEN terms */
47822dcef11bSdrh int i; /* Loop counter */
47832dcef11bSdrh ExprList *pEList; /* List of WHEN terms */
47842dcef11bSdrh struct ExprList_item *aListelem; /* Array of WHEN terms */
47852dcef11bSdrh Expr opCompare; /* The X==Ei expression */
47862dcef11bSdrh Expr *pX; /* The X expression */
47871bd10f8aSdrh Expr *pTest = 0; /* X==Ei (form A) or just Ei (form B) */
47888b65e591Sdan Expr *pDel = 0;
47898b65e591Sdan sqlite3 *db = pParse->db;
479017a7f8ddSdrh
4791a4eeccdfSdrh assert( ExprUseXList(pExpr) && pExpr->x.pList!=0 );
47926ab3a2ecSdanielk1977 assert(pExpr->x.pList->nExpr > 0);
47936ab3a2ecSdanielk1977 pEList = pExpr->x.pList;
4794be5c89acSdrh aListelem = pEList->a;
4795be5c89acSdrh nExpr = pEList->nExpr;
4796ec4ccdbcSdrh endLabel = sqlite3VdbeMakeLabel(pParse);
47972dcef11bSdrh if( (pX = pExpr->pLeft)!=0 ){
47988b65e591Sdan pDel = sqlite3ExprDup(db, pX, 0);
47998b65e591Sdan if( db->mallocFailed ){
48008b65e591Sdan sqlite3ExprDelete(db, pDel);
48018b65e591Sdan break;
48028b65e591Sdan }
480333cd4909Sdrh testcase( pX->op==TK_COLUMN );
48048b65e591Sdan exprToRegister(pDel, exprCodeVector(pParse, pDel, ®Free1));
4805c5499befSdrh testcase( regFree1==0 );
4806abb9d5f1Sdrh memset(&opCompare, 0, sizeof(opCompare));
48072dcef11bSdrh opCompare.op = TK_EQ;
48088b65e591Sdan opCompare.pLeft = pDel;
48092dcef11bSdrh pTest = &opCompare;
48108b1db07fSdrh /* Ticket b351d95f9cd5ef17e9d9dbae18f5ca8611190001:
48118b1db07fSdrh ** The value in regFree1 might get SCopy-ed into the file result.
48128b1db07fSdrh ** So make sure that the regFree1 register is not reused for other
48138b1db07fSdrh ** purposes and possibly overwritten. */
48148b1db07fSdrh regFree1 = 0;
4815cce7d176Sdrh }
4816c5cd1249Sdrh for(i=0; i<nExpr-1; i=i+2){
48172dcef11bSdrh if( pX ){
48181bd10f8aSdrh assert( pTest!=0 );
48192dcef11bSdrh opCompare.pRight = aListelem[i].pExpr;
4820f5905aa7Sdrh }else{
48212dcef11bSdrh pTest = aListelem[i].pExpr;
482217a7f8ddSdrh }
4823ec4ccdbcSdrh nextCase = sqlite3VdbeMakeLabel(pParse);
482433cd4909Sdrh testcase( pTest->op==TK_COLUMN );
48252dcef11bSdrh sqlite3ExprIfFalse(pParse, pTest, nextCase, SQLITE_JUMPIFNULL);
4826c5499befSdrh testcase( aListelem[i+1].pExpr->op==TK_COLUMN );
48279de221dfSdrh sqlite3ExprCode(pParse, aListelem[i+1].pExpr, target);
4828076e85f5Sdrh sqlite3VdbeGoto(v, endLabel);
48292dcef11bSdrh sqlite3VdbeResolveLabel(v, nextCase);
4830f570f011Sdrh }
4831c5cd1249Sdrh if( (nExpr&1)!=0 ){
4832c5cd1249Sdrh sqlite3ExprCode(pParse, pEList->a[nExpr-1].pExpr, target);
483317a7f8ddSdrh }else{
48349de221dfSdrh sqlite3VdbeAddOp2(v, OP_Null, 0, target);
483517a7f8ddSdrh }
48368b65e591Sdan sqlite3ExprDelete(db, pDel);
483792a27f7bSdrh setDoNotMergeFlagOnCopy(v);
48382dcef11bSdrh sqlite3VdbeResolveLabel(v, endLabel);
48396f34903eSdanielk1977 break;
48406f34903eSdanielk1977 }
48415338a5f7Sdanielk1977 #ifndef SQLITE_OMIT_TRIGGER
48426f34903eSdanielk1977 case TK_RAISE: {
48431194904bSdrh assert( pExpr->affExpr==OE_Rollback
48441194904bSdrh || pExpr->affExpr==OE_Abort
48451194904bSdrh || pExpr->affExpr==OE_Fail
48461194904bSdrh || pExpr->affExpr==OE_Ignore
4847165921a7Sdan );
48489e5fdc41Sdrh if( !pParse->pTriggerTab && !pParse->nested ){
4849e0af83acSdan sqlite3ErrorMsg(pParse,
4850e0af83acSdan "RAISE() may only be used within a trigger-program");
4851e0af83acSdan return 0;
4852e0af83acSdan }
48531194904bSdrh if( pExpr->affExpr==OE_Abort ){
4854e0af83acSdan sqlite3MayAbort(pParse);
4855e0af83acSdan }
485633e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) );
48571194904bSdrh if( pExpr->affExpr==OE_Ignore ){
4858e0af83acSdan sqlite3VdbeAddOp4(
4859e0af83acSdan v, OP_Halt, SQLITE_OK, OE_Ignore, 0, pExpr->u.zToken,0);
4860688852abSdrh VdbeCoverage(v);
4861e0af83acSdan }else{
48629e5fdc41Sdrh sqlite3HaltConstraint(pParse,
48639e5fdc41Sdrh pParse->pTriggerTab ? SQLITE_CONSTRAINT_TRIGGER : SQLITE_ERROR,
48641194904bSdrh pExpr->affExpr, pExpr->u.zToken, 0, 0);
4865e0af83acSdan }
4866e0af83acSdan
4867ffe07b2dSdrh break;
486817a7f8ddSdrh }
48695338a5f7Sdanielk1977 #endif
4870ffe07b2dSdrh }
48712dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree1);
48722dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree2);
48732dcef11bSdrh return inReg;
48745b6afba9Sdrh }
48752dcef11bSdrh
48762dcef11bSdrh /*
48779b258c54Sdrh ** Generate code that will evaluate expression pExpr just one time
48789b258c54Sdrh ** per prepared statement execution.
48799b258c54Sdrh **
48809b258c54Sdrh ** If the expression uses functions (that might throw an exception) then
48819b258c54Sdrh ** guard them with an OP_Once opcode to ensure that the code is only executed
48829b258c54Sdrh ** once. If no functions are involved, then factor the code out and put it at
48839b258c54Sdrh ** the end of the prepared statement in the initialization section.
48841e9b53f9Sdrh **
4885ad879ffdSdrh ** If regDest>=0 then the result is always stored in that register and the
4886ad879ffdSdrh ** result is not reusable. If regDest<0 then this routine is free to
4887ad879ffdSdrh ** store the value whereever it wants. The register where the expression
48889b258c54Sdrh ** is stored is returned. When regDest<0, two identical expressions might
48899b258c54Sdrh ** code to the same register, if they do not contain function calls and hence
48909b258c54Sdrh ** are factored out into the initialization section at the end of the
48919b258c54Sdrh ** prepared statement.
4892d1a01edaSdrh */
sqlite3ExprCodeRunJustOnce(Parse * pParse,Expr * pExpr,int regDest)48939b258c54Sdrh int sqlite3ExprCodeRunJustOnce(
4894d673cddaSdrh Parse *pParse, /* Parsing context */
4895d673cddaSdrh Expr *pExpr, /* The expression to code when the VDBE initializes */
4896ad879ffdSdrh int regDest /* Store the value in this register */
4897d673cddaSdrh ){
4898d1a01edaSdrh ExprList *p;
4899d9f158e7Sdrh assert( ConstFactorOk(pParse) );
4900d1a01edaSdrh p = pParse->pConstExpr;
4901ad879ffdSdrh if( regDest<0 && p ){
49021e9b53f9Sdrh struct ExprList_item *pItem;
49031e9b53f9Sdrh int i;
49041e9b53f9Sdrh for(pItem=p->a, i=p->nExpr; i>0; pItem++, i--){
4905d88fd539Sdrh if( pItem->fg.reusable
4906d88fd539Sdrh && sqlite3ExprCompare(0,pItem->pExpr,pExpr,-1)==0
4907d88fd539Sdrh ){
49081e9b53f9Sdrh return pItem->u.iConstExprReg;
49091e9b53f9Sdrh }
49101e9b53f9Sdrh }
49111e9b53f9Sdrh }
4912d1a01edaSdrh pExpr = sqlite3ExprDup(pParse->db, pExpr, 0);
491338dfbdaeSdrh if( pExpr!=0 && ExprHasProperty(pExpr, EP_HasFunc) ){
491438dfbdaeSdrh Vdbe *v = pParse->pVdbe;
491538dfbdaeSdrh int addr;
491638dfbdaeSdrh assert( v );
491738dfbdaeSdrh addr = sqlite3VdbeAddOp0(v, OP_Once); VdbeCoverage(v);
491838dfbdaeSdrh pParse->okConstFactor = 0;
491938dfbdaeSdrh if( !pParse->db->mallocFailed ){
49209b258c54Sdrh if( regDest<0 ) regDest = ++pParse->nMem;
492138dfbdaeSdrh sqlite3ExprCode(pParse, pExpr, regDest);
492238dfbdaeSdrh }
492338dfbdaeSdrh pParse->okConstFactor = 1;
492438dfbdaeSdrh sqlite3ExprDelete(pParse->db, pExpr);
492538dfbdaeSdrh sqlite3VdbeJumpHere(v, addr);
492638dfbdaeSdrh }else{
4927d1a01edaSdrh p = sqlite3ExprListAppend(pParse, p, pExpr);
4928d673cddaSdrh if( p ){
4929d673cddaSdrh struct ExprList_item *pItem = &p->a[p->nExpr-1];
4930d88fd539Sdrh pItem->fg.reusable = regDest<0;
49319b258c54Sdrh if( regDest<0 ) regDest = ++pParse->nMem;
4932d673cddaSdrh pItem->u.iConstExprReg = regDest;
4933d673cddaSdrh }
4934d1a01edaSdrh pParse->pConstExpr = p;
493538dfbdaeSdrh }
49361e9b53f9Sdrh return regDest;
4937d1a01edaSdrh }
4938d1a01edaSdrh
4939d1a01edaSdrh /*
49402dcef11bSdrh ** Generate code to evaluate an expression and store the results
49412dcef11bSdrh ** into a register. Return the register number where the results
49422dcef11bSdrh ** are stored.
49432dcef11bSdrh **
49442dcef11bSdrh ** If the register is a temporary register that can be deallocated,
4945678ccce8Sdrh ** then write its number into *pReg. If the result register is not
49462dcef11bSdrh ** a temporary, then set *pReg to zero.
4947f30a969bSdrh **
4948f30a969bSdrh ** If pExpr is a constant, then this routine might generate this
4949f30a969bSdrh ** code to fill the register in the initialization section of the
4950f30a969bSdrh ** VDBE program, in order to factor it out of the evaluation loop.
49512dcef11bSdrh */
sqlite3ExprCodeTemp(Parse * pParse,Expr * pExpr,int * pReg)49522dcef11bSdrh int sqlite3ExprCodeTemp(Parse *pParse, Expr *pExpr, int *pReg){
4953f30a969bSdrh int r2;
49540d950af3Sdrh pExpr = sqlite3ExprSkipCollateAndLikely(pExpr);
4955d9f158e7Sdrh if( ConstFactorOk(pParse)
4956235667a8Sdrh && ALWAYS(pExpr!=0)
4957f30a969bSdrh && pExpr->op!=TK_REGISTER
4958f30a969bSdrh && sqlite3ExprIsConstantNotJoin(pExpr)
4959f30a969bSdrh ){
4960f30a969bSdrh *pReg = 0;
49619b258c54Sdrh r2 = sqlite3ExprCodeRunJustOnce(pParse, pExpr, -1);
4962f30a969bSdrh }else{
49632dcef11bSdrh int r1 = sqlite3GetTempReg(pParse);
4964f30a969bSdrh r2 = sqlite3ExprCodeTarget(pParse, pExpr, r1);
49652dcef11bSdrh if( r2==r1 ){
49662dcef11bSdrh *pReg = r1;
49672dcef11bSdrh }else{
49682dcef11bSdrh sqlite3ReleaseTempReg(pParse, r1);
49692dcef11bSdrh *pReg = 0;
49702dcef11bSdrh }
4971f30a969bSdrh }
49722dcef11bSdrh return r2;
49732dcef11bSdrh }
49742dcef11bSdrh
49752dcef11bSdrh /*
49762dcef11bSdrh ** Generate code that will evaluate expression pExpr and store the
49772dcef11bSdrh ** results in register target. The results are guaranteed to appear
49782dcef11bSdrh ** in register target.
49792dcef11bSdrh */
sqlite3ExprCode(Parse * pParse,Expr * pExpr,int target)498005a86c5cSdrh void sqlite3ExprCode(Parse *pParse, Expr *pExpr, int target){
49819cbf3425Sdrh int inReg;
49829cbf3425Sdrh
4983e7375bfaSdrh assert( pExpr==0 || !ExprHasVVAProperty(pExpr,EP_Immutable) );
49849cbf3425Sdrh assert( target>0 && target<=pParse->nMem );
49851c75c9d7Sdrh assert( pParse->pVdbe!=0 || pParse->db->mallocFailed );
4986b639a209Sdrh if( pParse->pVdbe==0 ) return;
4987b639a209Sdrh inReg = sqlite3ExprCodeTarget(pParse, pExpr, target);
4988b639a209Sdrh if( inReg!=target ){
4989629b88c6Sdrh u8 op;
4990952f35b2Sdrh if( ALWAYS(pExpr) && ExprHasProperty(pExpr,EP_Subquery) ){
4991629b88c6Sdrh op = OP_Copy;
4992629b88c6Sdrh }else{
4993629b88c6Sdrh op = OP_SCopy;
4994629b88c6Sdrh }
4995629b88c6Sdrh sqlite3VdbeAddOp2(pParse->pVdbe, op, inReg, target);
499617a7f8ddSdrh }
4997ebc16717Sdrh }
4998cce7d176Sdrh
4999cce7d176Sdrh /*
50001c75c9d7Sdrh ** Make a transient copy of expression pExpr and then code it using
50011c75c9d7Sdrh ** sqlite3ExprCode(). This routine works just like sqlite3ExprCode()
50021c75c9d7Sdrh ** except that the input expression is guaranteed to be unchanged.
50031c75c9d7Sdrh */
sqlite3ExprCodeCopy(Parse * pParse,Expr * pExpr,int target)50041c75c9d7Sdrh void sqlite3ExprCodeCopy(Parse *pParse, Expr *pExpr, int target){
50051c75c9d7Sdrh sqlite3 *db = pParse->db;
50061c75c9d7Sdrh pExpr = sqlite3ExprDup(db, pExpr, 0);
50071c75c9d7Sdrh if( !db->mallocFailed ) sqlite3ExprCode(pParse, pExpr, target);
50081c75c9d7Sdrh sqlite3ExprDelete(db, pExpr);
50091c75c9d7Sdrh }
50101c75c9d7Sdrh
50111c75c9d7Sdrh /*
501205a86c5cSdrh ** Generate code that will evaluate expression pExpr and store the
501305a86c5cSdrh ** results in register target. The results are guaranteed to appear
501405a86c5cSdrh ** in register target. If the expression is constant, then this routine
501505a86c5cSdrh ** might choose to code the expression at initialization time.
501605a86c5cSdrh */
sqlite3ExprCodeFactorable(Parse * pParse,Expr * pExpr,int target)501705a86c5cSdrh void sqlite3ExprCodeFactorable(Parse *pParse, Expr *pExpr, int target){
5018b8b06690Sdrh if( pParse->okConstFactor && sqlite3ExprIsConstantNotJoin(pExpr) ){
50199b258c54Sdrh sqlite3ExprCodeRunJustOnce(pParse, pExpr, target);
502005a86c5cSdrh }else{
5021088489e8Sdrh sqlite3ExprCodeCopy(pParse, pExpr, target);
502205a86c5cSdrh }
5023cce7d176Sdrh }
5024cce7d176Sdrh
5025cce7d176Sdrh /*
5026268380caSdrh ** Generate code that pushes the value of every element of the given
50279cbf3425Sdrh ** expression list into a sequence of registers beginning at target.
5028268380caSdrh **
50293df6c3b1Sdrh ** Return the number of elements evaluated. The number returned will
50303df6c3b1Sdrh ** usually be pList->nExpr but might be reduced if SQLITE_ECEL_OMITREF
50313df6c3b1Sdrh ** is defined.
5032d1a01edaSdrh **
5033d1a01edaSdrh ** The SQLITE_ECEL_DUP flag prevents the arguments from being
5034d1a01edaSdrh ** filled using OP_SCopy. OP_Copy must be used instead.
5035d1a01edaSdrh **
5036d1a01edaSdrh ** The SQLITE_ECEL_FACTOR argument allows constant arguments to be
5037d1a01edaSdrh ** factored out into initialization code.
5038b0df9634Sdrh **
5039b0df9634Sdrh ** The SQLITE_ECEL_REF flag means that expressions in the list with
5040b0df9634Sdrh ** ExprList.a[].u.x.iOrderByCol>0 have already been evaluated and stored
5041b0df9634Sdrh ** in registers at srcReg, and so the value can be copied from there.
50423df6c3b1Sdrh ** If SQLITE_ECEL_OMITREF is also set, then the values with u.x.iOrderByCol>0
50433df6c3b1Sdrh ** are simply omitted rather than being copied from srcReg.
5044268380caSdrh */
sqlite3ExprCodeExprList(Parse * pParse,ExprList * pList,int target,int srcReg,u8 flags)50454adee20fSdanielk1977 int sqlite3ExprCodeExprList(
5046268380caSdrh Parse *pParse, /* Parsing context */
5047389a1adbSdrh ExprList *pList, /* The expression list to be coded */
5048191b54cbSdrh int target, /* Where to write results */
50495579d59fSdrh int srcReg, /* Source registers if SQLITE_ECEL_REF */
5050d1a01edaSdrh u8 flags /* SQLITE_ECEL_* flags */
5051268380caSdrh ){
5052268380caSdrh struct ExprList_item *pItem;
50535579d59fSdrh int i, j, n;
5054d1a01edaSdrh u8 copyOp = (flags & SQLITE_ECEL_DUP) ? OP_Copy : OP_SCopy;
50555579d59fSdrh Vdbe *v = pParse->pVdbe;
50569d8b3072Sdrh assert( pList!=0 );
50579cbf3425Sdrh assert( target>0 );
5058d81a142bSdrh assert( pParse->pVdbe!=0 ); /* Never gets this far otherwise */
5059268380caSdrh n = pList->nExpr;
5060d9f158e7Sdrh if( !ConstFactorOk(pParse) ) flags &= ~SQLITE_ECEL_FACTOR;
5061191b54cbSdrh for(pItem=pList->a, i=0; i<n; i++, pItem++){
50627445ffe2Sdrh Expr *pExpr = pItem->pExpr;
506324e25d32Sdan #ifdef SQLITE_ENABLE_SORTER_REFERENCES
5064d88fd539Sdrh if( pItem->fg.bSorterRef ){
506524e25d32Sdan i--;
506624e25d32Sdan n--;
506724e25d32Sdan }else
506824e25d32Sdan #endif
5069257c13faSdan if( (flags & SQLITE_ECEL_REF)!=0 && (j = pItem->u.x.iOrderByCol)>0 ){
5070257c13faSdan if( flags & SQLITE_ECEL_OMITREF ){
5071257c13faSdan i--;
5072257c13faSdan n--;
5073257c13faSdan }else{
50745579d59fSdrh sqlite3VdbeAddOp2(v, copyOp, j+srcReg-1, target+i);
5075257c13faSdan }
5076b8b06690Sdrh }else if( (flags & SQLITE_ECEL_FACTOR)!=0
5077b8b06690Sdrh && sqlite3ExprIsConstantNotJoin(pExpr)
5078b8b06690Sdrh ){
50799b258c54Sdrh sqlite3ExprCodeRunJustOnce(pParse, pExpr, target+i);
5080d1a01edaSdrh }else{
50817445ffe2Sdrh int inReg = sqlite3ExprCodeTarget(pParse, pExpr, target+i);
5082746fd9ccSdrh if( inReg!=target+i ){
50834eded604Sdrh VdbeOp *pOp;
50844eded604Sdrh if( copyOp==OP_Copy
5085058e9950Sdrh && (pOp=sqlite3VdbeGetLastOp(v))->opcode==OP_Copy
50864eded604Sdrh && pOp->p1+pOp->p3+1==inReg
50874eded604Sdrh && pOp->p2+pOp->p3+1==target+i
508890996885Sdrh && pOp->p5==0 /* The do-not-merge flag must be clear */
50894eded604Sdrh ){
50904eded604Sdrh pOp->p3++;
50914eded604Sdrh }else{
50924eded604Sdrh sqlite3VdbeAddOp2(v, copyOp, inReg, target+i);
50934eded604Sdrh }
5094d1a01edaSdrh }
5095d176611bSdrh }
5096268380caSdrh }
5097f9b596ebSdrh return n;
5098268380caSdrh }
5099268380caSdrh
5100268380caSdrh /*
510136c563a2Sdrh ** Generate code for a BETWEEN operator.
510236c563a2Sdrh **
510336c563a2Sdrh ** x BETWEEN y AND z
510436c563a2Sdrh **
510536c563a2Sdrh ** The above is equivalent to
510636c563a2Sdrh **
510736c563a2Sdrh ** x>=y AND x<=z
510836c563a2Sdrh **
510936c563a2Sdrh ** Code it as such, taking care to do the common subexpression
511060ec914cSpeter.d.reid ** elimination of x.
511184b19a3dSdrh **
511284b19a3dSdrh ** The xJumpIf parameter determines details:
511384b19a3dSdrh **
511484b19a3dSdrh ** NULL: Store the boolean result in reg[dest]
511584b19a3dSdrh ** sqlite3ExprIfTrue: Jump to dest if true
511684b19a3dSdrh ** sqlite3ExprIfFalse: Jump to dest if false
511784b19a3dSdrh **
511884b19a3dSdrh ** The jumpIfNull parameter is ignored if xJumpIf is NULL.
511936c563a2Sdrh */
exprCodeBetween(Parse * pParse,Expr * pExpr,int dest,void (* xJump)(Parse *,Expr *,int,int),int jumpIfNull)512036c563a2Sdrh static void exprCodeBetween(
512136c563a2Sdrh Parse *pParse, /* Parsing and code generating context */
512236c563a2Sdrh Expr *pExpr, /* The BETWEEN expression */
512384b19a3dSdrh int dest, /* Jump destination or storage location */
512484b19a3dSdrh void (*xJump)(Parse*,Expr*,int,int), /* Action to take */
512536c563a2Sdrh int jumpIfNull /* Take the jump if the BETWEEN is NULL */
512636c563a2Sdrh ){
512736c563a2Sdrh Expr exprAnd; /* The AND operator in x>=y AND x<=z */
512836c563a2Sdrh Expr compLeft; /* The x>=y term */
512936c563a2Sdrh Expr compRight; /* The x<=z term */
5130db45bd5eSdrh int regFree1 = 0; /* Temporary use register */
51318b65e591Sdan Expr *pDel = 0;
51328b65e591Sdan sqlite3 *db = pParse->db;
513384b19a3dSdrh
513471c57db0Sdan memset(&compLeft, 0, sizeof(Expr));
513571c57db0Sdan memset(&compRight, 0, sizeof(Expr));
513671c57db0Sdan memset(&exprAnd, 0, sizeof(Expr));
5137db45bd5eSdrh
5138a4eeccdfSdrh assert( ExprUseXList(pExpr) );
51398b65e591Sdan pDel = sqlite3ExprDup(db, pExpr->pLeft, 0);
51408b65e591Sdan if( db->mallocFailed==0 ){
514136c563a2Sdrh exprAnd.op = TK_AND;
514236c563a2Sdrh exprAnd.pLeft = &compLeft;
514336c563a2Sdrh exprAnd.pRight = &compRight;
514436c563a2Sdrh compLeft.op = TK_GE;
51458b65e591Sdan compLeft.pLeft = pDel;
514636c563a2Sdrh compLeft.pRight = pExpr->x.pList->a[0].pExpr;
514736c563a2Sdrh compRight.op = TK_LE;
51488b65e591Sdan compRight.pLeft = pDel;
514936c563a2Sdrh compRight.pRight = pExpr->x.pList->a[1].pExpr;
51508b65e591Sdan exprToRegister(pDel, exprCodeVector(pParse, pDel, ®Free1));
515184b19a3dSdrh if( xJump ){
515284b19a3dSdrh xJump(pParse, &exprAnd, dest, jumpIfNull);
515336c563a2Sdrh }else{
515436fd41e5Sdrh /* Mark the expression is being from the ON or USING clause of a join
515536fd41e5Sdrh ** so that the sqlite3ExprCodeTarget() routine will not attempt to move
515636fd41e5Sdrh ** it into the Parse.pConstExpr list. We should use a new bit for this,
515736fd41e5Sdrh ** for clarity, but we are out of bits in the Expr.flags field so we
515867a99dbeSdrh ** have to reuse the EP_OuterON bit. Bummer. */
515967a99dbeSdrh pDel->flags |= EP_OuterON;
516071c57db0Sdan sqlite3ExprCodeTarget(pParse, &exprAnd, dest);
516136c563a2Sdrh }
5162db45bd5eSdrh sqlite3ReleaseTempReg(pParse, regFree1);
51638b65e591Sdan }
51648b65e591Sdan sqlite3ExprDelete(db, pDel);
516536c563a2Sdrh
516636c563a2Sdrh /* Ensure adequate test coverage */
5167db45bd5eSdrh testcase( xJump==sqlite3ExprIfTrue && jumpIfNull==0 && regFree1==0 );
5168db45bd5eSdrh testcase( xJump==sqlite3ExprIfTrue && jumpIfNull==0 && regFree1!=0 );
5169db45bd5eSdrh testcase( xJump==sqlite3ExprIfTrue && jumpIfNull!=0 && regFree1==0 );
5170db45bd5eSdrh testcase( xJump==sqlite3ExprIfTrue && jumpIfNull!=0 && regFree1!=0 );
5171db45bd5eSdrh testcase( xJump==sqlite3ExprIfFalse && jumpIfNull==0 && regFree1==0 );
5172db45bd5eSdrh testcase( xJump==sqlite3ExprIfFalse && jumpIfNull==0 && regFree1!=0 );
5173db45bd5eSdrh testcase( xJump==sqlite3ExprIfFalse && jumpIfNull!=0 && regFree1==0 );
5174db45bd5eSdrh testcase( xJump==sqlite3ExprIfFalse && jumpIfNull!=0 && regFree1!=0 );
517584b19a3dSdrh testcase( xJump==0 );
517636c563a2Sdrh }
517736c563a2Sdrh
517836c563a2Sdrh /*
5179cce7d176Sdrh ** Generate code for a boolean expression such that a jump is made
5180cce7d176Sdrh ** to the label "dest" if the expression is true but execution
5181cce7d176Sdrh ** continues straight thru if the expression is false.
5182f5905aa7Sdrh **
5183f5905aa7Sdrh ** If the expression evaluates to NULL (neither true nor false), then
518435573356Sdrh ** take the jump if the jumpIfNull flag is SQLITE_JUMPIFNULL.
5185f2bc013cSdrh **
5186f2bc013cSdrh ** This code depends on the fact that certain token values (ex: TK_EQ)
5187f2bc013cSdrh ** are the same as opcode values (ex: OP_Eq) that implement the corresponding
5188f2bc013cSdrh ** operation. Special comments in vdbe.c and the mkopcodeh.awk script in
5189f2bc013cSdrh ** the make process cause these values to align. Assert()s in the code
5190f2bc013cSdrh ** below verify that the numbers are aligned correctly.
5191cce7d176Sdrh */
sqlite3ExprIfTrue(Parse * pParse,Expr * pExpr,int dest,int jumpIfNull)51924adee20fSdanielk1977 void sqlite3ExprIfTrue(Parse *pParse, Expr *pExpr, int dest, int jumpIfNull){
5193cce7d176Sdrh Vdbe *v = pParse->pVdbe;
5194cce7d176Sdrh int op = 0;
51952dcef11bSdrh int regFree1 = 0;
51962dcef11bSdrh int regFree2 = 0;
51972dcef11bSdrh int r1, r2;
51982dcef11bSdrh
519935573356Sdrh assert( jumpIfNull==SQLITE_JUMPIFNULL || jumpIfNull==0 );
520048864df9Smistachkin if( NEVER(v==0) ) return; /* Existence of VDBE checked by caller */
520133cd4909Sdrh if( NEVER(pExpr==0) ) return; /* No way this can happen */
5202e7375bfaSdrh assert( !ExprHasVVAProperty(pExpr, EP_Immutable) );
5203f2bc013cSdrh op = pExpr->op;
52047b35a77bSdan switch( op ){
520517180fcaSdrh case TK_AND:
520617180fcaSdrh case TK_OR: {
520717180fcaSdrh Expr *pAlt = sqlite3ExprSimplifiedAndOr(pExpr);
520817180fcaSdrh if( pAlt!=pExpr ){
520917180fcaSdrh sqlite3ExprIfTrue(pParse, pAlt, dest, jumpIfNull);
521017180fcaSdrh }else if( op==TK_AND ){
5211ec4ccdbcSdrh int d2 = sqlite3VdbeMakeLabel(pParse);
5212c5499befSdrh testcase( jumpIfNull==0 );
521317180fcaSdrh sqlite3ExprIfFalse(pParse, pExpr->pLeft, d2,
521417180fcaSdrh jumpIfNull^SQLITE_JUMPIFNULL);
52154adee20fSdanielk1977 sqlite3ExprIfTrue(pParse, pExpr->pRight, dest, jumpIfNull);
52164adee20fSdanielk1977 sqlite3VdbeResolveLabel(v, d2);
521717180fcaSdrh }else{
5218c5499befSdrh testcase( jumpIfNull==0 );
52194adee20fSdanielk1977 sqlite3ExprIfTrue(pParse, pExpr->pLeft, dest, jumpIfNull);
52204adee20fSdanielk1977 sqlite3ExprIfTrue(pParse, pExpr->pRight, dest, jumpIfNull);
522117180fcaSdrh }
5222cce7d176Sdrh break;
5223cce7d176Sdrh }
5224cce7d176Sdrh case TK_NOT: {
5225c5499befSdrh testcase( jumpIfNull==0 );
52264adee20fSdanielk1977 sqlite3ExprIfFalse(pParse, pExpr->pLeft, dest, jumpIfNull);
5227cce7d176Sdrh break;
5228cce7d176Sdrh }
52298abed7b9Sdrh case TK_TRUTH: {
523096acafbeSdrh int isNot; /* IS NOT TRUE or IS NOT FALSE */
523196acafbeSdrh int isTrue; /* IS TRUE or IS NOT TRUE */
5232007c843bSdrh testcase( jumpIfNull==0 );
52338abed7b9Sdrh isNot = pExpr->op2==TK_ISNOT;
523496acafbeSdrh isTrue = sqlite3ExprTruthValue(pExpr->pRight);
523543c4ac8bSdrh testcase( isTrue && isNot );
523696acafbeSdrh testcase( !isTrue && isNot );
523743c4ac8bSdrh if( isTrue ^ isNot ){
52388abed7b9Sdrh sqlite3ExprIfTrue(pParse, pExpr->pLeft, dest,
52398abed7b9Sdrh isNot ? SQLITE_JUMPIFNULL : 0);
52408abed7b9Sdrh }else{
52418abed7b9Sdrh sqlite3ExprIfFalse(pParse, pExpr->pLeft, dest,
52428abed7b9Sdrh isNot ? SQLITE_JUMPIFNULL : 0);
52438abed7b9Sdrh }
5244007c843bSdrh break;
5245007c843bSdrh }
5246de845c2fSdrh case TK_IS:
5247de845c2fSdrh case TK_ISNOT:
5248de845c2fSdrh testcase( op==TK_IS );
5249de845c2fSdrh testcase( op==TK_ISNOT );
5250de845c2fSdrh op = (op==TK_IS) ? TK_EQ : TK_NE;
5251de845c2fSdrh jumpIfNull = SQLITE_NULLEQ;
525208b92086Sdrh /* no break */ deliberate_fall_through
5253cce7d176Sdrh case TK_LT:
5254cce7d176Sdrh case TK_LE:
5255cce7d176Sdrh case TK_GT:
5256cce7d176Sdrh case TK_GE:
5257cce7d176Sdrh case TK_NE:
52580ac65892Sdrh case TK_EQ: {
5259625015e0Sdan if( sqlite3ExprIsVector(pExpr->pLeft) ) goto default_expr;
5260c5499befSdrh testcase( jumpIfNull==0 );
5261b6da74ebSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1);
5262b6da74ebSdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2);
526335573356Sdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op,
5264898c527eSdrh r1, r2, dest, jumpIfNull, ExprHasProperty(pExpr,EP_Commuted));
52657d176105Sdrh assert(TK_LT==OP_Lt); testcase(op==OP_Lt); VdbeCoverageIf(v,op==OP_Lt);
52667d176105Sdrh assert(TK_LE==OP_Le); testcase(op==OP_Le); VdbeCoverageIf(v,op==OP_Le);
52677d176105Sdrh assert(TK_GT==OP_Gt); testcase(op==OP_Gt); VdbeCoverageIf(v,op==OP_Gt);
52687d176105Sdrh assert(TK_GE==OP_Ge); testcase(op==OP_Ge); VdbeCoverageIf(v,op==OP_Ge);
5269de845c2fSdrh assert(TK_EQ==OP_Eq); testcase(op==OP_Eq);
5270de845c2fSdrh VdbeCoverageIf(v, op==OP_Eq && jumpIfNull==SQLITE_NULLEQ);
5271de845c2fSdrh VdbeCoverageIf(v, op==OP_Eq && jumpIfNull!=SQLITE_NULLEQ);
5272de845c2fSdrh assert(TK_NE==OP_Ne); testcase(op==OP_Ne);
5273de845c2fSdrh VdbeCoverageIf(v, op==OP_Ne && jumpIfNull==SQLITE_NULLEQ);
5274de845c2fSdrh VdbeCoverageIf(v, op==OP_Ne && jumpIfNull!=SQLITE_NULLEQ);
52756a2fe093Sdrh testcase( regFree1==0 );
52766a2fe093Sdrh testcase( regFree2==0 );
52776a2fe093Sdrh break;
52786a2fe093Sdrh }
5279cce7d176Sdrh case TK_ISNULL:
5280cce7d176Sdrh case TK_NOTNULL: {
52817d176105Sdrh assert( TK_ISNULL==OP_IsNull ); testcase( op==TK_ISNULL );
52827d176105Sdrh assert( TK_NOTNULL==OP_NotNull ); testcase( op==TK_NOTNULL );
52832dcef11bSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1);
5284e995d2c2Sdrh sqlite3VdbeTypeofColumn(v, r1);
52852dcef11bSdrh sqlite3VdbeAddOp2(v, op, r1, dest);
52867d176105Sdrh VdbeCoverageIf(v, op==TK_ISNULL);
52877d176105Sdrh VdbeCoverageIf(v, op==TK_NOTNULL);
5288c5499befSdrh testcase( regFree1==0 );
5289cce7d176Sdrh break;
5290cce7d176Sdrh }
5291fef5208cSdrh case TK_BETWEEN: {
52925c03f30aSdrh testcase( jumpIfNull==0 );
529371c57db0Sdan exprCodeBetween(pParse, pExpr, dest, sqlite3ExprIfTrue, jumpIfNull);
5294fef5208cSdrh break;
5295fef5208cSdrh }
5296bb201344Sshaneh #ifndef SQLITE_OMIT_SUBQUERY
5297e3365e6cSdrh case TK_IN: {
5298ec4ccdbcSdrh int destIfFalse = sqlite3VdbeMakeLabel(pParse);
5299e3365e6cSdrh int destIfNull = jumpIfNull ? dest : destIfFalse;
5300e3365e6cSdrh sqlite3ExprCodeIN(pParse, pExpr, destIfFalse, destIfNull);
5301076e85f5Sdrh sqlite3VdbeGoto(v, dest);
5302e3365e6cSdrh sqlite3VdbeResolveLabel(v, destIfFalse);
5303e3365e6cSdrh break;
5304e3365e6cSdrh }
5305bb201344Sshaneh #endif
5306cce7d176Sdrh default: {
53077b35a77bSdan default_expr:
5308ad31727fSdrh if( ExprAlwaysTrue(pExpr) ){
5309076e85f5Sdrh sqlite3VdbeGoto(v, dest);
5310ad31727fSdrh }else if( ExprAlwaysFalse(pExpr) ){
5311991a1985Sdrh /* No-op */
5312991a1985Sdrh }else{
53132dcef11bSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr, ®Free1);
53142dcef11bSdrh sqlite3VdbeAddOp3(v, OP_If, r1, dest, jumpIfNull!=0);
5315688852abSdrh VdbeCoverage(v);
5316c5499befSdrh testcase( regFree1==0 );
5317c5499befSdrh testcase( jumpIfNull==0 );
5318991a1985Sdrh }
5319cce7d176Sdrh break;
5320cce7d176Sdrh }
5321cce7d176Sdrh }
53222dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree1);
53232dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree2);
5324cce7d176Sdrh }
5325cce7d176Sdrh
5326cce7d176Sdrh /*
532766b89c8fSdrh ** Generate code for a boolean expression such that a jump is made
5328cce7d176Sdrh ** to the label "dest" if the expression is false but execution
5329cce7d176Sdrh ** continues straight thru if the expression is true.
5330f5905aa7Sdrh **
5331f5905aa7Sdrh ** If the expression evaluates to NULL (neither true nor false) then
533235573356Sdrh ** jump if jumpIfNull is SQLITE_JUMPIFNULL or fall through if jumpIfNull
533335573356Sdrh ** is 0.
5334cce7d176Sdrh */
sqlite3ExprIfFalse(Parse * pParse,Expr * pExpr,int dest,int jumpIfNull)53354adee20fSdanielk1977 void sqlite3ExprIfFalse(Parse *pParse, Expr *pExpr, int dest, int jumpIfNull){
5336cce7d176Sdrh Vdbe *v = pParse->pVdbe;
5337cce7d176Sdrh int op = 0;
53382dcef11bSdrh int regFree1 = 0;
53392dcef11bSdrh int regFree2 = 0;
53402dcef11bSdrh int r1, r2;
53412dcef11bSdrh
534235573356Sdrh assert( jumpIfNull==SQLITE_JUMPIFNULL || jumpIfNull==0 );
534348864df9Smistachkin if( NEVER(v==0) ) return; /* Existence of VDBE checked by caller */
534433cd4909Sdrh if( pExpr==0 ) return;
5345e7375bfaSdrh assert( !ExprHasVVAProperty(pExpr,EP_Immutable) );
5346f2bc013cSdrh
5347f2bc013cSdrh /* The value of pExpr->op and op are related as follows:
5348f2bc013cSdrh **
5349f2bc013cSdrh ** pExpr->op op
5350f2bc013cSdrh ** --------- ----------
5351f2bc013cSdrh ** TK_ISNULL OP_NotNull
5352f2bc013cSdrh ** TK_NOTNULL OP_IsNull
5353f2bc013cSdrh ** TK_NE OP_Eq
5354f2bc013cSdrh ** TK_EQ OP_Ne
5355f2bc013cSdrh ** TK_GT OP_Le
5356f2bc013cSdrh ** TK_LE OP_Gt
5357f2bc013cSdrh ** TK_GE OP_Lt
5358f2bc013cSdrh ** TK_LT OP_Ge
5359f2bc013cSdrh **
5360f2bc013cSdrh ** For other values of pExpr->op, op is undefined and unused.
5361f2bc013cSdrh ** The value of TK_ and OP_ constants are arranged such that we
5362f2bc013cSdrh ** can compute the mapping above using the following expression.
5363f2bc013cSdrh ** Assert()s verify that the computation is correct.
5364f2bc013cSdrh */
5365f2bc013cSdrh op = ((pExpr->op+(TK_ISNULL&1))^1)-(TK_ISNULL&1);
5366f2bc013cSdrh
5367f2bc013cSdrh /* Verify correct alignment of TK_ and OP_ constants
5368f2bc013cSdrh */
5369f2bc013cSdrh assert( pExpr->op!=TK_ISNULL || op==OP_NotNull );
5370f2bc013cSdrh assert( pExpr->op!=TK_NOTNULL || op==OP_IsNull );
5371f2bc013cSdrh assert( pExpr->op!=TK_NE || op==OP_Eq );
5372f2bc013cSdrh assert( pExpr->op!=TK_EQ || op==OP_Ne );
5373f2bc013cSdrh assert( pExpr->op!=TK_LT || op==OP_Ge );
5374f2bc013cSdrh assert( pExpr->op!=TK_LE || op==OP_Gt );
5375f2bc013cSdrh assert( pExpr->op!=TK_GT || op==OP_Le );
5376f2bc013cSdrh assert( pExpr->op!=TK_GE || op==OP_Lt );
5377f2bc013cSdrh
5378ba00e30aSdan switch( pExpr->op ){
537917180fcaSdrh case TK_AND:
538017180fcaSdrh case TK_OR: {
538117180fcaSdrh Expr *pAlt = sqlite3ExprSimplifiedAndOr(pExpr);
538217180fcaSdrh if( pAlt!=pExpr ){
538317180fcaSdrh sqlite3ExprIfFalse(pParse, pAlt, dest, jumpIfNull);
538417180fcaSdrh }else if( pExpr->op==TK_AND ){
5385c5499befSdrh testcase( jumpIfNull==0 );
53864adee20fSdanielk1977 sqlite3ExprIfFalse(pParse, pExpr->pLeft, dest, jumpIfNull);
53874adee20fSdanielk1977 sqlite3ExprIfFalse(pParse, pExpr->pRight, dest, jumpIfNull);
538817180fcaSdrh }else{
5389ec4ccdbcSdrh int d2 = sqlite3VdbeMakeLabel(pParse);
5390c5499befSdrh testcase( jumpIfNull==0 );
539117180fcaSdrh sqlite3ExprIfTrue(pParse, pExpr->pLeft, d2,
539217180fcaSdrh jumpIfNull^SQLITE_JUMPIFNULL);
53934adee20fSdanielk1977 sqlite3ExprIfFalse(pParse, pExpr->pRight, dest, jumpIfNull);
53944adee20fSdanielk1977 sqlite3VdbeResolveLabel(v, d2);
539517180fcaSdrh }
5396cce7d176Sdrh break;
5397cce7d176Sdrh }
5398cce7d176Sdrh case TK_NOT: {
53995c03f30aSdrh testcase( jumpIfNull==0 );
54004adee20fSdanielk1977 sqlite3ExprIfTrue(pParse, pExpr->pLeft, dest, jumpIfNull);
5401cce7d176Sdrh break;
5402cce7d176Sdrh }
54038abed7b9Sdrh case TK_TRUTH: {
540496acafbeSdrh int isNot; /* IS NOT TRUE or IS NOT FALSE */
540596acafbeSdrh int isTrue; /* IS TRUE or IS NOT TRUE */
54068abed7b9Sdrh testcase( jumpIfNull==0 );
54078abed7b9Sdrh isNot = pExpr->op2==TK_ISNOT;
540896acafbeSdrh isTrue = sqlite3ExprTruthValue(pExpr->pRight);
540943c4ac8bSdrh testcase( isTrue && isNot );
541096acafbeSdrh testcase( !isTrue && isNot );
541143c4ac8bSdrh if( isTrue ^ isNot ){
54128abed7b9Sdrh /* IS TRUE and IS NOT FALSE */
54138abed7b9Sdrh sqlite3ExprIfFalse(pParse, pExpr->pLeft, dest,
54148abed7b9Sdrh isNot ? 0 : SQLITE_JUMPIFNULL);
54158abed7b9Sdrh
54168abed7b9Sdrh }else{
54178abed7b9Sdrh /* IS FALSE and IS NOT TRUE */
54188abed7b9Sdrh sqlite3ExprIfTrue(pParse, pExpr->pLeft, dest,
54198abed7b9Sdrh isNot ? 0 : SQLITE_JUMPIFNULL);
54208abed7b9Sdrh }
5421007c843bSdrh break;
5422007c843bSdrh }
5423de845c2fSdrh case TK_IS:
5424de845c2fSdrh case TK_ISNOT:
5425de845c2fSdrh testcase( pExpr->op==TK_IS );
5426de845c2fSdrh testcase( pExpr->op==TK_ISNOT );
5427de845c2fSdrh op = (pExpr->op==TK_IS) ? TK_NE : TK_EQ;
5428de845c2fSdrh jumpIfNull = SQLITE_NULLEQ;
542908b92086Sdrh /* no break */ deliberate_fall_through
5430cce7d176Sdrh case TK_LT:
5431cce7d176Sdrh case TK_LE:
5432cce7d176Sdrh case TK_GT:
5433cce7d176Sdrh case TK_GE:
5434cce7d176Sdrh case TK_NE:
5435cce7d176Sdrh case TK_EQ: {
5436625015e0Sdan if( sqlite3ExprIsVector(pExpr->pLeft) ) goto default_expr;
5437c5499befSdrh testcase( jumpIfNull==0 );
5438b6da74ebSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1);
5439b6da74ebSdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2);
544035573356Sdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op,
5441898c527eSdrh r1, r2, dest, jumpIfNull,ExprHasProperty(pExpr,EP_Commuted));
54427d176105Sdrh assert(TK_LT==OP_Lt); testcase(op==OP_Lt); VdbeCoverageIf(v,op==OP_Lt);
54437d176105Sdrh assert(TK_LE==OP_Le); testcase(op==OP_Le); VdbeCoverageIf(v,op==OP_Le);
54447d176105Sdrh assert(TK_GT==OP_Gt); testcase(op==OP_Gt); VdbeCoverageIf(v,op==OP_Gt);
54457d176105Sdrh assert(TK_GE==OP_Ge); testcase(op==OP_Ge); VdbeCoverageIf(v,op==OP_Ge);
5446de845c2fSdrh assert(TK_EQ==OP_Eq); testcase(op==OP_Eq);
5447de845c2fSdrh VdbeCoverageIf(v, op==OP_Eq && jumpIfNull!=SQLITE_NULLEQ);
5448de845c2fSdrh VdbeCoverageIf(v, op==OP_Eq && jumpIfNull==SQLITE_NULLEQ);
5449de845c2fSdrh assert(TK_NE==OP_Ne); testcase(op==OP_Ne);
5450de845c2fSdrh VdbeCoverageIf(v, op==OP_Ne && jumpIfNull!=SQLITE_NULLEQ);
5451de845c2fSdrh VdbeCoverageIf(v, op==OP_Ne && jumpIfNull==SQLITE_NULLEQ);
54526a2fe093Sdrh testcase( regFree1==0 );
54536a2fe093Sdrh testcase( regFree2==0 );
54546a2fe093Sdrh break;
54556a2fe093Sdrh }
5456cce7d176Sdrh case TK_ISNULL:
5457cce7d176Sdrh case TK_NOTNULL: {
54582dcef11bSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1);
5459e995d2c2Sdrh sqlite3VdbeTypeofColumn(v, r1);
54602dcef11bSdrh sqlite3VdbeAddOp2(v, op, r1, dest);
54617d176105Sdrh testcase( op==TK_ISNULL ); VdbeCoverageIf(v, op==TK_ISNULL);
54627d176105Sdrh testcase( op==TK_NOTNULL ); VdbeCoverageIf(v, op==TK_NOTNULL);
5463c5499befSdrh testcase( regFree1==0 );
5464cce7d176Sdrh break;
5465cce7d176Sdrh }
5466fef5208cSdrh case TK_BETWEEN: {
54675c03f30aSdrh testcase( jumpIfNull==0 );
546871c57db0Sdan exprCodeBetween(pParse, pExpr, dest, sqlite3ExprIfFalse, jumpIfNull);
5469fef5208cSdrh break;
5470fef5208cSdrh }
5471bb201344Sshaneh #ifndef SQLITE_OMIT_SUBQUERY
5472e3365e6cSdrh case TK_IN: {
5473e3365e6cSdrh if( jumpIfNull ){
5474e3365e6cSdrh sqlite3ExprCodeIN(pParse, pExpr, dest, dest);
5475e3365e6cSdrh }else{
5476ec4ccdbcSdrh int destIfNull = sqlite3VdbeMakeLabel(pParse);
5477e3365e6cSdrh sqlite3ExprCodeIN(pParse, pExpr, dest, destIfNull);
5478e3365e6cSdrh sqlite3VdbeResolveLabel(v, destIfNull);
5479e3365e6cSdrh }
5480e3365e6cSdrh break;
5481e3365e6cSdrh }
5482bb201344Sshaneh #endif
5483cce7d176Sdrh default: {
5484ba00e30aSdan default_expr:
5485ad31727fSdrh if( ExprAlwaysFalse(pExpr) ){
5486076e85f5Sdrh sqlite3VdbeGoto(v, dest);
5487ad31727fSdrh }else if( ExprAlwaysTrue(pExpr) ){
5488991a1985Sdrh /* no-op */
5489991a1985Sdrh }else{
54902dcef11bSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr, ®Free1);
54912dcef11bSdrh sqlite3VdbeAddOp3(v, OP_IfNot, r1, dest, jumpIfNull!=0);
5492688852abSdrh VdbeCoverage(v);
5493c5499befSdrh testcase( regFree1==0 );
5494c5499befSdrh testcase( jumpIfNull==0 );
5495991a1985Sdrh }
5496cce7d176Sdrh break;
5497cce7d176Sdrh }
5498cce7d176Sdrh }
54992dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree1);
55002dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree2);
5501cce7d176Sdrh }
55022282792aSdrh
55032282792aSdrh /*
550472bc8208Sdrh ** Like sqlite3ExprIfFalse() except that a copy is made of pExpr before
550572bc8208Sdrh ** code generation, and that copy is deleted after code generation. This
550672bc8208Sdrh ** ensures that the original pExpr is unchanged.
550772bc8208Sdrh */
sqlite3ExprIfFalseDup(Parse * pParse,Expr * pExpr,int dest,int jumpIfNull)550872bc8208Sdrh void sqlite3ExprIfFalseDup(Parse *pParse, Expr *pExpr, int dest,int jumpIfNull){
550972bc8208Sdrh sqlite3 *db = pParse->db;
551072bc8208Sdrh Expr *pCopy = sqlite3ExprDup(db, pExpr, 0);
551172bc8208Sdrh if( db->mallocFailed==0 ){
551272bc8208Sdrh sqlite3ExprIfFalse(pParse, pCopy, dest, jumpIfNull);
551372bc8208Sdrh }
551472bc8208Sdrh sqlite3ExprDelete(db, pCopy);
551572bc8208Sdrh }
551672bc8208Sdrh
55175aa550cfSdan /*
55185aa550cfSdan ** Expression pVar is guaranteed to be an SQL variable. pExpr may be any
55195aa550cfSdan ** type of expression.
55205aa550cfSdan **
55215aa550cfSdan ** If pExpr is a simple SQL value - an integer, real, string, blob
55225aa550cfSdan ** or NULL value - then the VDBE currently being prepared is configured
55235aa550cfSdan ** to re-prepare each time a new value is bound to variable pVar.
55245aa550cfSdan **
55255aa550cfSdan ** Additionally, if pExpr is a simple SQL value and the value is the
55265aa550cfSdan ** same as that currently bound to variable pVar, non-zero is returned.
55275aa550cfSdan ** Otherwise, if the values are not the same or if pExpr is not a simple
55285aa550cfSdan ** SQL value, zero is returned.
55295aa550cfSdan */
exprCompareVariable(const Parse * pParse,const Expr * pVar,const Expr * pExpr)55301580d50bSdrh static int exprCompareVariable(
55311580d50bSdrh const Parse *pParse,
55321580d50bSdrh const Expr *pVar,
55331580d50bSdrh const Expr *pExpr
55341580d50bSdrh ){
55355aa550cfSdan int res = 0;
5536c0804226Sdrh int iVar;
5537c0804226Sdrh sqlite3_value *pL, *pR = 0;
55385aa550cfSdan
55395aa550cfSdan sqlite3ValueFromExpr(pParse->db, pExpr, SQLITE_UTF8, SQLITE_AFF_BLOB, &pR);
5540c0804226Sdrh if( pR ){
5541c0804226Sdrh iVar = pVar->iColumn;
5542c0804226Sdrh sqlite3VdbeSetVarmask(pParse->pVdbe, iVar);
5543c0804226Sdrh pL = sqlite3VdbeGetBoundValue(pParse->pReprepare, iVar, SQLITE_AFF_BLOB);
55445aa307e2Sdrh if( pL ){
55455aa307e2Sdrh if( sqlite3_value_type(pL)==SQLITE_TEXT ){
55465aa307e2Sdrh sqlite3_value_text(pL); /* Make sure the encoding is UTF-8 */
55475aa307e2Sdrh }
55485aa307e2Sdrh res = 0==sqlite3MemCompare(pL, pR, 0);
55495aa550cfSdan }
55505aa550cfSdan sqlite3ValueFree(pR);
55515aa550cfSdan sqlite3ValueFree(pL);
55525aa550cfSdan }
55535aa550cfSdan
55545aa550cfSdan return res;
55555aa550cfSdan }
555672bc8208Sdrh
555772bc8208Sdrh /*
55581d9da70aSdrh ** Do a deep comparison of two expression trees. Return 0 if the two
55591d9da70aSdrh ** expressions are completely identical. Return 1 if they differ only
55601d9da70aSdrh ** by a COLLATE operator at the top level. Return 2 if there are differences
55611d9da70aSdrh ** other than the top-level COLLATE operator.
5562d40aab0eSdrh **
5563619a1305Sdrh ** If any subelement of pB has Expr.iTable==(-1) then it is allowed
5564619a1305Sdrh ** to compare equal to an equivalent element in pA with Expr.iTable==iTab.
5565619a1305Sdrh **
556666518ca7Sdrh ** The pA side might be using TK_REGISTER. If that is the case and pB is
556766518ca7Sdrh ** not using TK_REGISTER but is otherwise equivalent, then still return 0.
556866518ca7Sdrh **
55691d9da70aSdrh ** Sometimes this routine will return 2 even if the two expressions
5570d40aab0eSdrh ** really are equivalent. If we cannot prove that the expressions are
55711d9da70aSdrh ** identical, we return 2 just to be safe. So if this routine
55721d9da70aSdrh ** returns 2, then you do not really know for certain if the two
55731d9da70aSdrh ** expressions are the same. But if you get a 0 or 1 return, then you
5574d40aab0eSdrh ** can be sure the expressions are the same. In the places where
55751d9da70aSdrh ** this routine is used, it does not hurt to get an extra 2 - that
5576d40aab0eSdrh ** just might result in some slightly slower code. But returning
55771d9da70aSdrh ** an incorrect 0 or 1 could lead to a malfunction.
55785aa550cfSdan **
5579c0804226Sdrh ** If pParse is not NULL then TK_VARIABLE terms in pA with bindings in
5580c0804226Sdrh ** pParse->pReprepare can be matched against literals in pB. The
5581c0804226Sdrh ** pParse->pVdbe->expmask bitmask is updated for each variable referenced.
5582c0804226Sdrh ** If pParse is NULL (the normal case) then any TK_VARIABLE term in
5583c0804226Sdrh ** Argument pParse should normally be NULL. If it is not NULL and pA or
5584c0804226Sdrh ** pB causes a return value of 2.
55852282792aSdrh */
sqlite3ExprCompare(const Parse * pParse,const Expr * pA,const Expr * pB,int iTab)55861580d50bSdrh int sqlite3ExprCompare(
55871580d50bSdrh const Parse *pParse,
55881580d50bSdrh const Expr *pA,
55891580d50bSdrh const Expr *pB,
55901580d50bSdrh int iTab
55911580d50bSdrh ){
559210d1edf0Sdrh u32 combinedFlags;
55934b202ae2Sdanielk1977 if( pA==0 || pB==0 ){
55941d9da70aSdrh return pB==pA ? 0 : 2;
55952282792aSdrh }
55965aa550cfSdan if( pParse && pA->op==TK_VARIABLE && exprCompareVariable(pParse, pA, pB) ){
55975aa550cfSdan return 0;
55985aa550cfSdan }
559910d1edf0Sdrh combinedFlags = pA->flags | pB->flags;
560010d1edf0Sdrh if( combinedFlags & EP_IntValue ){
560110d1edf0Sdrh if( (pA->flags&pB->flags&EP_IntValue)!=0 && pA->u.iValue==pB->u.iValue ){
560210d1edf0Sdrh return 0;
560310d1edf0Sdrh }
56041d9da70aSdrh return 2;
56056ab3a2ecSdanielk1977 }
560616dd3985Sdan if( pA->op!=pB->op || pA->op==TK_RAISE ){
56075aa550cfSdan if( pA->op==TK_COLLATE && sqlite3ExprCompare(pParse, pA->pLeft,pB,iTab)<2 ){
5608ae80ddeaSdrh return 1;
5609ae80ddeaSdrh }
56105aa550cfSdan if( pB->op==TK_COLLATE && sqlite3ExprCompare(pParse, pA,pB->pLeft,iTab)<2 ){
5611ae80ddeaSdrh return 1;
5612ae80ddeaSdrh }
5613f3adb7c4Sdrh if( pA->op==TK_AGG_COLUMN && pB->op==TK_COLUMN
5614f3adb7c4Sdrh && pB->iTable<0 && pA->iTable==iTab
5615f3adb7c4Sdrh ){
5616f3adb7c4Sdrh /* fall through */
5617f3adb7c4Sdrh }else{
5618ae80ddeaSdrh return 2;
5619ae80ddeaSdrh }
5620f3adb7c4Sdrh }
5621a51e6007Sdrh assert( !ExprHasProperty(pA, EP_IntValue) );
5622f9751074Sdrh assert( !ExprHasProperty(pB, EP_IntValue) );
5623a51e6007Sdrh if( pA->u.zToken ){
56244f9adee2Sdan if( pA->op==TK_FUNCTION || pA->op==TK_AGG_FUNCTION ){
5625390b88a4Sdrh if( sqlite3StrICmp(pA->u.zToken,pB->u.zToken)!=0 ) return 2;
5626eda079cdSdrh #ifndef SQLITE_OMIT_WINDOWFUNC
56274f9adee2Sdan assert( pA->op==pB->op );
56284f9adee2Sdan if( ExprHasProperty(pA,EP_WinFunc)!=ExprHasProperty(pB,EP_WinFunc) ){
56294f9adee2Sdan return 2;
56304f9adee2Sdan }
5631eda079cdSdrh if( ExprHasProperty(pA,EP_WinFunc) ){
56324f9adee2Sdan if( sqlite3WindowCompare(pParse, pA->y.pWin, pB->y.pWin, 1)!=0 ){
56334f9adee2Sdan return 2;
56344f9adee2Sdan }
5635eda079cdSdrh }
5636eda079cdSdrh #endif
5637f20bbc5fSdrh }else if( pA->op==TK_NULL ){
5638f20bbc5fSdrh return 0;
5639d5af5420Sdrh }else if( pA->op==TK_COLLATE ){
5640e79f6299Sdrh if( sqlite3_stricmp(pA->u.zToken,pB->u.zToken)!=0 ) return 2;
5641a51e6007Sdrh }else
5642a51e6007Sdrh if( pB->u.zToken!=0
5643a51e6007Sdrh && pA->op!=TK_COLUMN
5644a51e6007Sdrh && pA->op!=TK_AGG_COLUMN
5645a51e6007Sdrh && strcmp(pA->u.zToken,pB->u.zToken)!=0
5646a51e6007Sdrh ){
5647d5af5420Sdrh return 2;
564810d1edf0Sdrh }
564910d1edf0Sdrh }
5650898c527eSdrh if( (pA->flags & (EP_Distinct|EP_Commuted))
5651898c527eSdrh != (pB->flags & (EP_Distinct|EP_Commuted)) ) return 2;
5652e7375bfaSdrh if( ALWAYS((combinedFlags & EP_TokenOnly)==0) ){
565310d1edf0Sdrh if( combinedFlags & EP_xIsSelect ) return 2;
5654efad2e23Sdrh if( (combinedFlags & EP_FixedCol)==0
5655efad2e23Sdrh && sqlite3ExprCompare(pParse, pA->pLeft, pB->pLeft, iTab) ) return 2;
56565aa550cfSdan if( sqlite3ExprCompare(pParse, pA->pRight, pB->pRight, iTab) ) return 2;
5657619a1305Sdrh if( sqlite3ExprListCompare(pA->x.pList, pB->x.pList, iTab) ) return 2;
565803c5c213Sdrh if( pA->op!=TK_STRING
565903c5c213Sdrh && pA->op!=TK_TRUEFALSE
5660e7375bfaSdrh && ALWAYS((combinedFlags & EP_Reduced)==0)
566103c5c213Sdrh ){
5662619a1305Sdrh if( pA->iColumn!=pB->iColumn ) return 2;
56639b258c54Sdrh if( pA->op2!=pB->op2 && pA->op==TK_TRUTH ) return 2;
56640f28e1bdSdrh if( pA->op!=TK_IN && pA->iTable!=pB->iTable && pA->iTable!=iTab ){
56650f28e1bdSdrh return 2;
56660f28e1bdSdrh }
56671d9da70aSdrh }
56681d9da70aSdrh }
56692646da7eSdrh return 0;
56702646da7eSdrh }
56712282792aSdrh
56728c6f666bSdrh /*
5673fbb6e9ffSdan ** Compare two ExprList objects. Return 0 if they are identical, 1
5674fbb6e9ffSdan ** if they are certainly different, or 2 if it is not possible to
5675fbb6e9ffSdan ** determine if they are identical or not.
56768c6f666bSdrh **
5677619a1305Sdrh ** If any subelement of pB has Expr.iTable==(-1) then it is allowed
5678619a1305Sdrh ** to compare equal to an equivalent element in pA with Expr.iTable==iTab.
5679619a1305Sdrh **
56808c6f666bSdrh ** This routine might return non-zero for equivalent ExprLists. The
56818c6f666bSdrh ** only consequence will be disabled optimizations. But this routine
56828c6f666bSdrh ** must never return 0 if the two ExprList objects are different, or
56838c6f666bSdrh ** a malfunction will result.
56848c6f666bSdrh **
56858c6f666bSdrh ** Two NULL pointers are considered to be the same. But a NULL pointer
56868c6f666bSdrh ** always differs from a non-NULL pointer.
56878c6f666bSdrh */
sqlite3ExprListCompare(const ExprList * pA,const ExprList * pB,int iTab)56881580d50bSdrh int sqlite3ExprListCompare(const ExprList *pA, const ExprList *pB, int iTab){
56898c6f666bSdrh int i;
56908c6f666bSdrh if( pA==0 && pB==0 ) return 0;
56918c6f666bSdrh if( pA==0 || pB==0 ) return 1;
56928c6f666bSdrh if( pA->nExpr!=pB->nExpr ) return 1;
56938c6f666bSdrh for(i=0; i<pA->nExpr; i++){
5694fbb6e9ffSdan int res;
56958c6f666bSdrh Expr *pExprA = pA->a[i].pExpr;
56968c6f666bSdrh Expr *pExprB = pB->a[i].pExpr;
5697d88fd539Sdrh if( pA->a[i].fg.sortFlags!=pB->a[i].fg.sortFlags ) return 1;
5698fbb6e9ffSdan if( (res = sqlite3ExprCompare(0, pExprA, pExprB, iTab)) ) return res;
56998c6f666bSdrh }
57008c6f666bSdrh return 0;
57018c6f666bSdrh }
570213449892Sdrh
57032282792aSdrh /*
5704f9463dfbSdrh ** Like sqlite3ExprCompare() except COLLATE operators at the top-level
5705f9463dfbSdrh ** are ignored.
5706f9463dfbSdrh */
sqlite3ExprCompareSkip(Expr * pA,Expr * pB,int iTab)5707f9463dfbSdrh int sqlite3ExprCompareSkip(Expr *pA,Expr *pB, int iTab){
57085aa550cfSdan return sqlite3ExprCompare(0,
57090d950af3Sdrh sqlite3ExprSkipCollateAndLikely(pA),
57100d950af3Sdrh sqlite3ExprSkipCollateAndLikely(pB),
5711f9463dfbSdrh iTab);
5712f9463dfbSdrh }
5713f9463dfbSdrh
5714f9463dfbSdrh /*
5715c51cf864Sdrh ** Return non-zero if Expr p can only be true if pNN is not NULL.
57167a231b49Sdrh **
57177a231b49Sdrh ** Or if seenNot is true, return non-zero if Expr p can only be
57187a231b49Sdrh ** non-NULL if pNN is not NULL
5719c51cf864Sdrh */
exprImpliesNotNull(const Parse * pParse,const Expr * p,const Expr * pNN,int iTab,int seenNot)5720c51cf864Sdrh static int exprImpliesNotNull(
57211580d50bSdrh const Parse *pParse,/* Parsing context */
57221580d50bSdrh const Expr *p, /* The expression to be checked */
57231580d50bSdrh const Expr *pNN, /* The expression that is NOT NULL */
5724c51cf864Sdrh int iTab, /* Table being evaluated */
57257a231b49Sdrh int seenNot /* Return true only if p can be any non-NULL value */
5726c51cf864Sdrh ){
5727c51cf864Sdrh assert( p );
5728c51cf864Sdrh assert( pNN );
572914c865e8Sdrh if( sqlite3ExprCompare(pParse, p, pNN, iTab)==0 ){
573014c865e8Sdrh return pNN->op!=TK_NULL;
573114c865e8Sdrh }
5732c51cf864Sdrh switch( p->op ){
5733c51cf864Sdrh case TK_IN: {
5734c51cf864Sdrh if( seenNot && ExprHasProperty(p, EP_xIsSelect) ) return 0;
5735a4eeccdfSdrh assert( ExprUseXSelect(p) || (p->x.pList!=0 && p->x.pList->nExpr>0) );
5736ae144a1cSdrh return exprImpliesNotNull(pParse, p->pLeft, pNN, iTab, 1);
5737c51cf864Sdrh }
5738c51cf864Sdrh case TK_BETWEEN: {
5739a4eeccdfSdrh ExprList *pList;
5740a4eeccdfSdrh assert( ExprUseXList(p) );
5741a4eeccdfSdrh pList = p->x.pList;
5742c51cf864Sdrh assert( pList!=0 );
5743c51cf864Sdrh assert( pList->nExpr==2 );
5744c51cf864Sdrh if( seenNot ) return 0;
57457a231b49Sdrh if( exprImpliesNotNull(pParse, pList->a[0].pExpr, pNN, iTab, 1)
57467a231b49Sdrh || exprImpliesNotNull(pParse, pList->a[1].pExpr, pNN, iTab, 1)
5747c51cf864Sdrh ){
5748c51cf864Sdrh return 1;
5749c51cf864Sdrh }
57507a231b49Sdrh return exprImpliesNotNull(pParse, p->pLeft, pNN, iTab, 1);
5751c51cf864Sdrh }
5752c51cf864Sdrh case TK_EQ:
5753c51cf864Sdrh case TK_NE:
5754c51cf864Sdrh case TK_LT:
5755c51cf864Sdrh case TK_LE:
5756c51cf864Sdrh case TK_GT:
5757c51cf864Sdrh case TK_GE:
5758c51cf864Sdrh case TK_PLUS:
5759c51cf864Sdrh case TK_MINUS:
57609d23ea74Sdan case TK_BITOR:
57619d23ea74Sdan case TK_LSHIFT:
57629d23ea74Sdan case TK_RSHIFT:
57639d23ea74Sdan case TK_CONCAT:
57649d23ea74Sdan seenNot = 1;
576508b92086Sdrh /* no break */ deliberate_fall_through
5766c51cf864Sdrh case TK_STAR:
5767c51cf864Sdrh case TK_REM:
5768c51cf864Sdrh case TK_BITAND:
57699d23ea74Sdan case TK_SLASH: {
5770c51cf864Sdrh if( exprImpliesNotNull(pParse, p->pRight, pNN, iTab, seenNot) ) return 1;
577108b92086Sdrh /* no break */ deliberate_fall_through
5772c51cf864Sdrh }
5773c51cf864Sdrh case TK_SPAN:
5774c51cf864Sdrh case TK_COLLATE:
5775c51cf864Sdrh case TK_UPLUS:
5776c51cf864Sdrh case TK_UMINUS: {
5777c51cf864Sdrh return exprImpliesNotNull(pParse, p->pLeft, pNN, iTab, seenNot);
5778c51cf864Sdrh }
5779c51cf864Sdrh case TK_TRUTH: {
5780c51cf864Sdrh if( seenNot ) return 0;
5781c51cf864Sdrh if( p->op2!=TK_IS ) return 0;
578238cefc83Sdrh return exprImpliesNotNull(pParse, p->pLeft, pNN, iTab, 1);
5783c51cf864Sdrh }
57841cd382e3Sdan case TK_BITNOT:
5785c51cf864Sdrh case TK_NOT: {
5786c51cf864Sdrh return exprImpliesNotNull(pParse, p->pLeft, pNN, iTab, 1);
5787c51cf864Sdrh }
5788c51cf864Sdrh }
5789c51cf864Sdrh return 0;
5790c51cf864Sdrh }
5791c51cf864Sdrh
5792c51cf864Sdrh /*
57934bd5f73fSdrh ** Return true if we can prove the pE2 will always be true if pE1 is
57944bd5f73fSdrh ** true. Return false if we cannot complete the proof or if pE2 might
57954bd5f73fSdrh ** be false. Examples:
57964bd5f73fSdrh **
5797619a1305Sdrh ** pE1: x==5 pE2: x==5 Result: true
57984bd5f73fSdrh ** pE1: x>0 pE2: x==5 Result: false
5799619a1305Sdrh ** pE1: x=21 pE2: x=21 OR y=43 Result: true
58004bd5f73fSdrh ** pE1: x!=123 pE2: x IS NOT NULL Result: true
5801619a1305Sdrh ** pE1: x!=?1 pE2: x IS NOT NULL Result: true
5802619a1305Sdrh ** pE1: x IS NULL pE2: x IS NOT NULL Result: false
5803619a1305Sdrh ** pE1: x IS ?2 pE2: x IS NOT NULL Reuslt: false
58044bd5f73fSdrh **
58054bd5f73fSdrh ** When comparing TK_COLUMN nodes between pE1 and pE2, if pE2 has
58064bd5f73fSdrh ** Expr.iTable<0 then assume a table number given by iTab.
58074bd5f73fSdrh **
5808c0804226Sdrh ** If pParse is not NULL, then the values of bound variables in pE1 are
5809c0804226Sdrh ** compared against literal values in pE2 and pParse->pVdbe->expmask is
5810c0804226Sdrh ** modified to record which bound variables are referenced. If pParse
5811c0804226Sdrh ** is NULL, then false will be returned if pE1 contains any bound variables.
5812c0804226Sdrh **
58134bd5f73fSdrh ** When in doubt, return false. Returning true might give a performance
58144bd5f73fSdrh ** improvement. Returning false might cause a performance reduction, but
58154bd5f73fSdrh ** it will always give the correct answer and is hence always safe.
58164bd5f73fSdrh */
sqlite3ExprImpliesExpr(const Parse * pParse,const Expr * pE1,const Expr * pE2,int iTab)58171580d50bSdrh int sqlite3ExprImpliesExpr(
58181580d50bSdrh const Parse *pParse,
58191580d50bSdrh const Expr *pE1,
58201580d50bSdrh const Expr *pE2,
58211580d50bSdrh int iTab
58221580d50bSdrh ){
58235aa550cfSdan if( sqlite3ExprCompare(pParse, pE1, pE2, iTab)==0 ){
5824619a1305Sdrh return 1;
5825619a1305Sdrh }
5826619a1305Sdrh if( pE2->op==TK_OR
58275aa550cfSdan && (sqlite3ExprImpliesExpr(pParse, pE1, pE2->pLeft, iTab)
58285aa550cfSdan || sqlite3ExprImpliesExpr(pParse, pE1, pE2->pRight, iTab) )
5829619a1305Sdrh ){
5830619a1305Sdrh return 1;
5831619a1305Sdrh }
5832664d6d13Sdrh if( pE2->op==TK_NOTNULL
5833c51cf864Sdrh && exprImpliesNotNull(pParse, pE1, pE2->pLeft, iTab, 0)
5834664d6d13Sdrh ){
5835c51cf864Sdrh return 1;
5836619a1305Sdrh }
5837619a1305Sdrh return 0;
58384bd5f73fSdrh }
58394bd5f73fSdrh
58404bd5f73fSdrh /*
58416c68d759Sdrh ** This is the Expr node callback for sqlite3ExprImpliesNonNullRow().
58422589787cSdrh ** If the expression node requires that the table at pWalker->iCur
5843f8937f90Sdrh ** have one or more non-NULL column, then set pWalker->eCode to 1 and abort.
5844f8937f90Sdrh **
5845f8937f90Sdrh ** This routine controls an optimization. False positives (setting
5846f8937f90Sdrh ** pWalker->eCode to 1 when it should not be) are deadly, but false-negatives
5847f8937f90Sdrh ** (never setting pWalker->eCode) is a harmless missed optimization.
58482589787cSdrh */
impliesNotNullRow(Walker * pWalker,Expr * pExpr)58492589787cSdrh static int impliesNotNullRow(Walker *pWalker, Expr *pExpr){
5850f8937f90Sdrh testcase( pExpr->op==TK_AGG_COLUMN );
5851821b610bSdrh testcase( pExpr->op==TK_AGG_FUNCTION );
585267a99dbeSdrh if( ExprHasProperty(pExpr, EP_OuterON) ) return WRC_Prune;
58532589787cSdrh switch( pExpr->op ){
58540493222fSdan case TK_ISNOT:
58552589787cSdrh case TK_ISNULL:
5856d5793672Sdrh case TK_NOTNULL:
58572589787cSdrh case TK_IS:
58582589787cSdrh case TK_OR:
58596c68d759Sdrh case TK_VECTOR:
58602c492061Sdrh case TK_CASE:
5861e3eff266Sdrh case TK_IN:
58622589787cSdrh case TK_FUNCTION:
5863da03c1e6Sdan case TK_TRUTH:
58640493222fSdan testcase( pExpr->op==TK_ISNOT );
5865821b610bSdrh testcase( pExpr->op==TK_ISNULL );
5866d5793672Sdrh testcase( pExpr->op==TK_NOTNULL );
5867821b610bSdrh testcase( pExpr->op==TK_IS );
5868821b610bSdrh testcase( pExpr->op==TK_OR );
58696c68d759Sdrh testcase( pExpr->op==TK_VECTOR );
5870821b610bSdrh testcase( pExpr->op==TK_CASE );
5871821b610bSdrh testcase( pExpr->op==TK_IN );
5872821b610bSdrh testcase( pExpr->op==TK_FUNCTION );
5873da03c1e6Sdan testcase( pExpr->op==TK_TRUTH );
58742589787cSdrh return WRC_Prune;
58752589787cSdrh case TK_COLUMN:
58762589787cSdrh if( pWalker->u.iCur==pExpr->iTable ){
58772589787cSdrh pWalker->eCode = 1;
58782589787cSdrh return WRC_Abort;
58792589787cSdrh }
58802589787cSdrh return WRC_Prune;
58819881155dSdrh
58829d23ea74Sdan case TK_AND:
5883aef81674Sdrh if( pWalker->eCode==0 ){
58840287c951Sdan sqlite3WalkExpr(pWalker, pExpr->pLeft);
58850287c951Sdan if( pWalker->eCode ){
58860287c951Sdan pWalker->eCode = 0;
58870287c951Sdan sqlite3WalkExpr(pWalker, pExpr->pRight);
58889d23ea74Sdan }
5889aef81674Sdrh }
58909d23ea74Sdan return WRC_Prune;
58919d23ea74Sdan
58929d23ea74Sdan case TK_BETWEEN:
58931d24a531Sdan if( sqlite3WalkExpr(pWalker, pExpr->pLeft)==WRC_Abort ){
58941d24a531Sdan assert( pWalker->eCode );
58951d24a531Sdan return WRC_Abort;
58961d24a531Sdan }
58979d23ea74Sdan return WRC_Prune;
58989d23ea74Sdan
58999881155dSdrh /* Virtual tables are allowed to use constraints like x=NULL. So
59009881155dSdrh ** a term of the form x=y does not prove that y is not null if x
59019881155dSdrh ** is the column of a virtual table */
59029881155dSdrh case TK_EQ:
59039881155dSdrh case TK_NE:
59049881155dSdrh case TK_LT:
59059881155dSdrh case TK_LE:
59069881155dSdrh case TK_GT:
590778d1d225Sdrh case TK_GE: {
590878d1d225Sdrh Expr *pLeft = pExpr->pLeft;
590978d1d225Sdrh Expr *pRight = pExpr->pRight;
59109881155dSdrh testcase( pExpr->op==TK_EQ );
59119881155dSdrh testcase( pExpr->op==TK_NE );
59129881155dSdrh testcase( pExpr->op==TK_LT );
59139881155dSdrh testcase( pExpr->op==TK_LE );
59149881155dSdrh testcase( pExpr->op==TK_GT );
59159881155dSdrh testcase( pExpr->op==TK_GE );
591678d1d225Sdrh /* The y.pTab=0 assignment in wherecode.c always happens after the
591778d1d225Sdrh ** impliesNotNullRow() test */
5918477572b9Sdrh assert( pLeft->op!=TK_COLUMN || ExprUseYTab(pLeft) );
5919477572b9Sdrh assert( pRight->op!=TK_COLUMN || ExprUseYTab(pRight) );
5920477572b9Sdrh if( (pLeft->op==TK_COLUMN
5921*63b3a64cSdrh && ALWAYS(pLeft->y.pTab!=0)
592278d1d225Sdrh && IsVirtual(pLeft->y.pTab))
5923477572b9Sdrh || (pRight->op==TK_COLUMN
5924*63b3a64cSdrh && ALWAYS(pRight->y.pTab!=0)
592578d1d225Sdrh && IsVirtual(pRight->y.pTab))
59269881155dSdrh ){
59279881155dSdrh return WRC_Prune;
59289881155dSdrh }
592908b92086Sdrh /* no break */ deliberate_fall_through
593078d1d225Sdrh }
59312589787cSdrh default:
59322589787cSdrh return WRC_Continue;
59332589787cSdrh }
59342589787cSdrh }
59352589787cSdrh
59362589787cSdrh /*
59372589787cSdrh ** Return true (non-zero) if expression p can only be true if at least
59382589787cSdrh ** one column of table iTab is non-null. In other words, return true
59392589787cSdrh ** if expression p will always be NULL or false if every column of iTab
59402589787cSdrh ** is NULL.
59412589787cSdrh **
5942821b610bSdrh ** False negatives are acceptable. In other words, it is ok to return
5943821b610bSdrh ** zero even if expression p will never be true of every column of iTab
5944821b610bSdrh ** is NULL. A false negative is merely a missed optimization opportunity.
5945821b610bSdrh **
5946821b610bSdrh ** False positives are not allowed, however. A false positive may result
5947821b610bSdrh ** in an incorrect answer.
5948821b610bSdrh **
594967a99dbeSdrh ** Terms of p that are marked with EP_OuterON (and hence that come from
5950b77c07a7Sdrh ** the ON or USING clauses of OUTER JOINS) are excluded from the analysis.
59512589787cSdrh **
59522589787cSdrh ** This routine is used to check if a LEFT JOIN can be converted into
59532589787cSdrh ** an ordinary JOIN. The p argument is the WHERE clause. If the WHERE
59542589787cSdrh ** clause requires that some column of the right table of the LEFT JOIN
59552589787cSdrh ** be non-NULL, then the LEFT JOIN can be safely converted into an
59562589787cSdrh ** ordinary join.
59572589787cSdrh */
sqlite3ExprImpliesNonNullRow(Expr * p,int iTab)59582589787cSdrh int sqlite3ExprImpliesNonNullRow(Expr *p, int iTab){
59592589787cSdrh Walker w;
59600d950af3Sdrh p = sqlite3ExprSkipCollateAndLikely(p);
59614a254f98Sdrh if( p==0 ) return 0;
59624a254f98Sdrh if( p->op==TK_NOTNULL ){
5963d6db6598Sdrh p = p->pLeft;
5964a1698993Sdrh }else{
5965a1698993Sdrh while( p->op==TK_AND ){
59664a254f98Sdrh if( sqlite3ExprImpliesNonNullRow(p->pLeft, iTab) ) return 1;
59674a254f98Sdrh p = p->pRight;
5968d6db6598Sdrh }
5969a1698993Sdrh }
59702589787cSdrh w.xExprCallback = impliesNotNullRow;
59712589787cSdrh w.xSelectCallback = 0;
59722589787cSdrh w.xSelectCallback2 = 0;
59732589787cSdrh w.eCode = 0;
59742589787cSdrh w.u.iCur = iTab;
59752589787cSdrh sqlite3WalkExpr(&w, p);
59762589787cSdrh return w.eCode;
59772589787cSdrh }
59782589787cSdrh
59792589787cSdrh /*
5980030796dfSdrh ** An instance of the following structure is used by the tree walker
59812409f8a1Sdrh ** to determine if an expression can be evaluated by reference to the
59822409f8a1Sdrh ** index only, without having to do a search for the corresponding
59832409f8a1Sdrh ** table entry. The IdxCover.pIdx field is the index. IdxCover.iCur
59842409f8a1Sdrh ** is the cursor for the table.
59852409f8a1Sdrh */
59862409f8a1Sdrh struct IdxCover {
59872409f8a1Sdrh Index *pIdx; /* The index to be tested for coverage */
59882409f8a1Sdrh int iCur; /* Cursor number for the table corresponding to the index */
59892409f8a1Sdrh };
59902409f8a1Sdrh
59912409f8a1Sdrh /*
59922409f8a1Sdrh ** Check to see if there are references to columns in table
59932409f8a1Sdrh ** pWalker->u.pIdxCover->iCur can be satisfied using the index
59942409f8a1Sdrh ** pWalker->u.pIdxCover->pIdx.
59952409f8a1Sdrh */
exprIdxCover(Walker * pWalker,Expr * pExpr)59962409f8a1Sdrh static int exprIdxCover(Walker *pWalker, Expr *pExpr){
59972409f8a1Sdrh if( pExpr->op==TK_COLUMN
59982409f8a1Sdrh && pExpr->iTable==pWalker->u.pIdxCover->iCur
5999b9bcf7caSdrh && sqlite3TableColumnToIndex(pWalker->u.pIdxCover->pIdx, pExpr->iColumn)<0
60002409f8a1Sdrh ){
60012409f8a1Sdrh pWalker->eCode = 1;
60022409f8a1Sdrh return WRC_Abort;
60032409f8a1Sdrh }
60042409f8a1Sdrh return WRC_Continue;
60052409f8a1Sdrh }
60062409f8a1Sdrh
60072409f8a1Sdrh /*
6008e604ec0bSdrh ** Determine if an index pIdx on table with cursor iCur contains will
6009e604ec0bSdrh ** the expression pExpr. Return true if the index does cover the
6010e604ec0bSdrh ** expression and false if the pExpr expression references table columns
6011e604ec0bSdrh ** that are not found in the index pIdx.
60122409f8a1Sdrh **
60132409f8a1Sdrh ** An index covering an expression means that the expression can be
60142409f8a1Sdrh ** evaluated using only the index and without having to lookup the
60152409f8a1Sdrh ** corresponding table entry.
60162409f8a1Sdrh */
sqlite3ExprCoveredByIndex(Expr * pExpr,int iCur,Index * pIdx)60172409f8a1Sdrh int sqlite3ExprCoveredByIndex(
60182409f8a1Sdrh Expr *pExpr, /* The index to be tested */
60192409f8a1Sdrh int iCur, /* The cursor number for the corresponding table */
60202409f8a1Sdrh Index *pIdx /* The index that might be used for coverage */
60212409f8a1Sdrh ){
60222409f8a1Sdrh Walker w;
60232409f8a1Sdrh struct IdxCover xcov;
60242409f8a1Sdrh memset(&w, 0, sizeof(w));
60252409f8a1Sdrh xcov.iCur = iCur;
60262409f8a1Sdrh xcov.pIdx = pIdx;
60272409f8a1Sdrh w.xExprCallback = exprIdxCover;
60282409f8a1Sdrh w.u.pIdxCover = &xcov;
60292409f8a1Sdrh sqlite3WalkExpr(&w, pExpr);
60302409f8a1Sdrh return !w.eCode;
60312409f8a1Sdrh }
60322409f8a1Sdrh
60332409f8a1Sdrh
603490cf38beSdrh /* Structure used to pass information throught the Walker in order to
603590cf38beSdrh ** implement sqlite3ReferencesSrcList().
6036374fdce4Sdrh */
603790cf38beSdrh struct RefSrcList {
603890cf38beSdrh sqlite3 *db; /* Database connection used for sqlite3DbRealloc() */
603990cf38beSdrh SrcList *pRef; /* Looking for references to these tables */
6040913306a5Sdrh i64 nExclude; /* Number of tables to exclude from the search */
604190cf38beSdrh int *aiExclude; /* Cursor IDs for tables to exclude from the search */
6042030796dfSdrh };
6043030796dfSdrh
6044030796dfSdrh /*
604590cf38beSdrh ** Walker SELECT callbacks for sqlite3ReferencesSrcList().
604690cf38beSdrh **
604790cf38beSdrh ** When entering a new subquery on the pExpr argument, add all FROM clause
604890cf38beSdrh ** entries for that subquery to the exclude list.
604990cf38beSdrh **
605090cf38beSdrh ** When leaving the subquery, remove those entries from the exclude list.
6051ed41a96bSdan */
selectRefEnter(Walker * pWalker,Select * pSelect)605290cf38beSdrh static int selectRefEnter(Walker *pWalker, Select *pSelect){
605390cf38beSdrh struct RefSrcList *p = pWalker->u.pRefSrcList;
605490cf38beSdrh SrcList *pSrc = pSelect->pSrc;
6055913306a5Sdrh i64 i, j;
6056913306a5Sdrh int *piNew;
605790cf38beSdrh if( pSrc->nSrc==0 ) return WRC_Continue;
605890cf38beSdrh j = p->nExclude;
605990cf38beSdrh p->nExclude += pSrc->nSrc;
606090cf38beSdrh piNew = sqlite3DbRealloc(p->db, p->aiExclude, p->nExclude*sizeof(int));
606190cf38beSdrh if( piNew==0 ){
606290cf38beSdrh p->nExclude = 0;
606390cf38beSdrh return WRC_Abort;
606490cf38beSdrh }else{
606590cf38beSdrh p->aiExclude = piNew;
606690cf38beSdrh }
606790cf38beSdrh for(i=0; i<pSrc->nSrc; i++, j++){
606890cf38beSdrh p->aiExclude[j] = pSrc->a[i].iCursor;
6069ed41a96bSdan }
6070ed41a96bSdan return WRC_Continue;
6071ed41a96bSdan }
selectRefLeave(Walker * pWalker,Select * pSelect)607290cf38beSdrh static void selectRefLeave(Walker *pWalker, Select *pSelect){
607390cf38beSdrh struct RefSrcList *p = pWalker->u.pRefSrcList;
607490cf38beSdrh SrcList *pSrc = pSelect->pSrc;
607590cf38beSdrh if( p->nExclude ){
607690cf38beSdrh assert( p->nExclude>=pSrc->nSrc );
607790cf38beSdrh p->nExclude -= pSrc->nSrc;
607890cf38beSdrh }
607990cf38beSdrh }
6080ed41a96bSdan
608190cf38beSdrh /* This is the Walker EXPR callback for sqlite3ReferencesSrcList().
608290cf38beSdrh **
608390cf38beSdrh ** Set the 0x01 bit of pWalker->eCode if there is a reference to any
608490cf38beSdrh ** of the tables shown in RefSrcList.pRef.
608590cf38beSdrh **
608690cf38beSdrh ** Set the 0x02 bit of pWalker->eCode if there is a reference to a
608790cf38beSdrh ** table is in neither RefSrcList.pRef nor RefSrcList.aiExclude.
6088030796dfSdrh */
exprRefToSrcList(Walker * pWalker,Expr * pExpr)608990cf38beSdrh static int exprRefToSrcList(Walker *pWalker, Expr *pExpr){
609090cf38beSdrh if( pExpr->op==TK_COLUMN
609190cf38beSdrh || pExpr->op==TK_AGG_COLUMN
609290cf38beSdrh ){
6093374fdce4Sdrh int i;
609490cf38beSdrh struct RefSrcList *p = pWalker->u.pRefSrcList;
609590cf38beSdrh SrcList *pSrc = p->pRef;
6096655814d2Sdrh int nSrc = pSrc ? pSrc->nSrc : 0;
6097655814d2Sdrh for(i=0; i<nSrc; i++){
609890cf38beSdrh if( pExpr->iTable==pSrc->a[i].iCursor ){
609990cf38beSdrh pWalker->eCode |= 1;
610090cf38beSdrh return WRC_Continue;
6101374fdce4Sdrh }
610290cf38beSdrh }
610390cf38beSdrh for(i=0; i<p->nExclude && p->aiExclude[i]!=pExpr->iTable; i++){}
610490cf38beSdrh if( i>=p->nExclude ){
610590cf38beSdrh pWalker->eCode |= 2;
6106374fdce4Sdrh }
6107374fdce4Sdrh }
6108030796dfSdrh return WRC_Continue;
6109030796dfSdrh }
6110374fdce4Sdrh
6111374fdce4Sdrh /*
611290cf38beSdrh ** Check to see if pExpr references any tables in pSrcList.
611390cf38beSdrh ** Possible return values:
611490cf38beSdrh **
611590cf38beSdrh ** 1 pExpr does references a table in pSrcList.
611690cf38beSdrh **
611790cf38beSdrh ** 0 pExpr references some table that is not defined in either
611890cf38beSdrh ** pSrcList or in subqueries of pExpr itself.
611990cf38beSdrh **
612090cf38beSdrh ** -1 pExpr only references no tables at all, or it only
612190cf38beSdrh ** references tables defined in subqueries of pExpr itself.
612290cf38beSdrh **
612390cf38beSdrh ** As currently used, pExpr is always an aggregate function call. That
612490cf38beSdrh ** fact is exploited for efficiency.
6125374fdce4Sdrh */
sqlite3ReferencesSrcList(Parse * pParse,Expr * pExpr,SrcList * pSrcList)612690cf38beSdrh int sqlite3ReferencesSrcList(Parse *pParse, Expr *pExpr, SrcList *pSrcList){
6127374fdce4Sdrh Walker w;
612890cf38beSdrh struct RefSrcList x;
612941ce47c4Sdrh assert( pParse->db!=0 );
613080f6bfc0Sdrh memset(&w, 0, sizeof(w));
613190cf38beSdrh memset(&x, 0, sizeof(x));
613290cf38beSdrh w.xExprCallback = exprRefToSrcList;
613390cf38beSdrh w.xSelectCallback = selectRefEnter;
613490cf38beSdrh w.xSelectCallback2 = selectRefLeave;
613590cf38beSdrh w.u.pRefSrcList = &x;
613690cf38beSdrh x.db = pParse->db;
613790cf38beSdrh x.pRef = pSrcList;
613890cf38beSdrh assert( pExpr->op==TK_AGG_FUNCTION );
6139a4eeccdfSdrh assert( ExprUseXList(pExpr) );
6140030796dfSdrh sqlite3WalkExprList(&w, pExpr->x.pList);
61415e484cb3Sdan #ifndef SQLITE_OMIT_WINDOWFUNC
61425e484cb3Sdan if( ExprHasProperty(pExpr, EP_WinFunc) ){
61435e484cb3Sdan sqlite3WalkExpr(&w, pExpr->y.pWin->pFilter);
61445e484cb3Sdan }
61455e484cb3Sdan #endif
614641ce47c4Sdrh if( x.aiExclude ) sqlite3DbNNFreeNN(pParse->db, x.aiExclude);
614790cf38beSdrh if( w.eCode & 0x01 ){
614890cf38beSdrh return 1;
614990cf38beSdrh }else if( w.eCode ){
615090cf38beSdrh return 0;
615190cf38beSdrh }else{
615290cf38beSdrh return -1;
615390cf38beSdrh }
6154374fdce4Sdrh }
6155374fdce4Sdrh
6156374fdce4Sdrh /*
615789636628Sdrh ** This is a Walker expression node callback.
615889636628Sdrh **
615989636628Sdrh ** For Expr nodes that contain pAggInfo pointers, make sure the AggInfo
616089636628Sdrh ** object that is referenced does not refer directly to the Expr. If
616189636628Sdrh ** it does, make a copy. This is done because the pExpr argument is
616289636628Sdrh ** subject to change.
616389636628Sdrh **
616489636628Sdrh ** The copy is stored on pParse->pConstExpr with a register number of 0.
616589636628Sdrh ** This will cause the expression to be deleted automatically when the
616689636628Sdrh ** Parse object is destroyed, but the zero register number means that it
616789636628Sdrh ** will not generate any code in the preamble.
616889636628Sdrh */
agginfoPersistExprCb(Walker * pWalker,Expr * pExpr)616989636628Sdrh static int agginfoPersistExprCb(Walker *pWalker, Expr *pExpr){
61702f82acc0Sdrh if( ALWAYS(!ExprHasProperty(pExpr, EP_TokenOnly|EP_Reduced))
617189636628Sdrh && pExpr->pAggInfo!=0
617289636628Sdrh ){
617389636628Sdrh AggInfo *pAggInfo = pExpr->pAggInfo;
617489636628Sdrh int iAgg = pExpr->iAgg;
617589636628Sdrh Parse *pParse = pWalker->pParse;
617689636628Sdrh sqlite3 *db = pParse->db;
6177fe888bcfSdrh if( pExpr->op!=TK_AGG_FUNCTION ){
6178fe888bcfSdrh assert( pExpr->op==TK_AGG_COLUMN || pExpr->op==TK_IF_NULL_ROW );
617989636628Sdrh assert( iAgg>=0 && iAgg<pAggInfo->nColumn );
618081185a51Sdrh if( pAggInfo->aCol[iAgg].pCExpr==pExpr ){
618189636628Sdrh pExpr = sqlite3ExprDup(db, pExpr, 0);
618289636628Sdrh if( pExpr ){
618381185a51Sdrh pAggInfo->aCol[iAgg].pCExpr = pExpr;
6184b3ad4e61Sdrh sqlite3ExprDeferredDelete(pParse, pExpr);
618589636628Sdrh }
618689636628Sdrh }
618789636628Sdrh }else{
6188fe888bcfSdrh assert( pExpr->op==TK_AGG_FUNCTION );
618989636628Sdrh assert( iAgg>=0 && iAgg<pAggInfo->nFunc );
619081185a51Sdrh if( pAggInfo->aFunc[iAgg].pFExpr==pExpr ){
619189636628Sdrh pExpr = sqlite3ExprDup(db, pExpr, 0);
619289636628Sdrh if( pExpr ){
619381185a51Sdrh pAggInfo->aFunc[iAgg].pFExpr = pExpr;
6194b3ad4e61Sdrh sqlite3ExprDeferredDelete(pParse, pExpr);
619589636628Sdrh }
619689636628Sdrh }
619789636628Sdrh }
619889636628Sdrh }
619989636628Sdrh return WRC_Continue;
620089636628Sdrh }
620189636628Sdrh
620289636628Sdrh /*
620389636628Sdrh ** Initialize a Walker object so that will persist AggInfo entries referenced
620489636628Sdrh ** by the tree that is walked.
620589636628Sdrh */
sqlite3AggInfoPersistWalkerInit(Walker * pWalker,Parse * pParse)620689636628Sdrh void sqlite3AggInfoPersistWalkerInit(Walker *pWalker, Parse *pParse){
620789636628Sdrh memset(pWalker, 0, sizeof(*pWalker));
620889636628Sdrh pWalker->pParse = pParse;
620989636628Sdrh pWalker->xExprCallback = agginfoPersistExprCb;
621089636628Sdrh pWalker->xSelectCallback = sqlite3SelectWalkNoop;
621189636628Sdrh }
621289636628Sdrh
621389636628Sdrh /*
621413449892Sdrh ** Add a new element to the pAggInfo->aCol[] array. Return the index of
621513449892Sdrh ** the new element. Return a negative number if malloc fails.
62162282792aSdrh */
addAggInfoColumn(sqlite3 * db,AggInfo * pInfo)621717435752Sdrh static int addAggInfoColumn(sqlite3 *db, AggInfo *pInfo){
621813449892Sdrh int i;
6219cf643729Sdrh pInfo->aCol = sqlite3ArrayAllocate(
622017435752Sdrh db,
6221cf643729Sdrh pInfo->aCol,
6222cf643729Sdrh sizeof(pInfo->aCol[0]),
6223cf643729Sdrh &pInfo->nColumn,
6224cf643729Sdrh &i
6225cf643729Sdrh );
622613449892Sdrh return i;
62272282792aSdrh }
622813449892Sdrh
622913449892Sdrh /*
623013449892Sdrh ** Add a new element to the pAggInfo->aFunc[] array. Return the index of
623113449892Sdrh ** the new element. Return a negative number if malloc fails.
623213449892Sdrh */
addAggInfoFunc(sqlite3 * db,AggInfo * pInfo)623317435752Sdrh static int addAggInfoFunc(sqlite3 *db, AggInfo *pInfo){
623413449892Sdrh int i;
6235cf643729Sdrh pInfo->aFunc = sqlite3ArrayAllocate(
623617435752Sdrh db,
6237cf643729Sdrh pInfo->aFunc,
6238cf643729Sdrh sizeof(pInfo->aFunc[0]),
6239cf643729Sdrh &pInfo->nFunc,
6240cf643729Sdrh &i
6241cf643729Sdrh );
624213449892Sdrh return i;
62432282792aSdrh }
62442282792aSdrh
62452282792aSdrh /*
62467d10d5a6Sdrh ** This is the xExprCallback for a tree walker. It is used to
62477d10d5a6Sdrh ** implement sqlite3ExprAnalyzeAggregates(). See sqlite3ExprAnalyzeAggregates
6248626a879aSdrh ** for additional information.
62492282792aSdrh */
analyzeAggregate(Walker * pWalker,Expr * pExpr)62507d10d5a6Sdrh static int analyzeAggregate(Walker *pWalker, Expr *pExpr){
62512282792aSdrh int i;
62527d10d5a6Sdrh NameContext *pNC = pWalker->u.pNC;
6253a58fdfb1Sdanielk1977 Parse *pParse = pNC->pParse;
6254a58fdfb1Sdanielk1977 SrcList *pSrcList = pNC->pSrcList;
625525c3b8caSdrh AggInfo *pAggInfo = pNC->uNC.pAggInfo;
625613449892Sdrh
625725c3b8caSdrh assert( pNC->ncFlags & NC_UAggInfo );
62582282792aSdrh switch( pExpr->op ){
62596b6d6c6bSdrh case TK_IF_NULL_ROW:
626089c69d00Sdrh case TK_AGG_COLUMN:
6261967e8b73Sdrh case TK_COLUMN: {
62628b213899Sdrh testcase( pExpr->op==TK_AGG_COLUMN );
62638b213899Sdrh testcase( pExpr->op==TK_COLUMN );
6264ee373020Sdrh testcase( pExpr->op==TK_IF_NULL_ROW );
626513449892Sdrh /* Check to see if the column is in one of the tables in the FROM
626613449892Sdrh ** clause of the aggregate query */
626720bc393cSdrh if( ALWAYS(pSrcList!=0) ){
62687601294aSdrh SrcItem *pItem = pSrcList->a;
626913449892Sdrh for(i=0; i<pSrcList->nSrc; i++, pItem++){
627013449892Sdrh struct AggInfo_col *pCol;
6271c5cd1249Sdrh assert( !ExprHasProperty(pExpr, EP_TokenOnly|EP_Reduced) );
627213449892Sdrh if( pExpr->iTable==pItem->iCursor ){
627313449892Sdrh /* If we reach this point, it means that pExpr refers to a table
627413449892Sdrh ** that is in the FROM clause of the aggregate query.
627513449892Sdrh **
627613449892Sdrh ** Make an entry for the column in pAggInfo->aCol[] if there
627713449892Sdrh ** is not an entry there already.
627813449892Sdrh */
62797f906d63Sdrh int k;
628013449892Sdrh pCol = pAggInfo->aCol;
62817f906d63Sdrh for(k=0; k<pAggInfo->nColumn; k++, pCol++){
62824b1b65caSdrh if( pCol->iTable==pExpr->iTable
62834b1b65caSdrh && pCol->iColumn==pExpr->iColumn
62844b1b65caSdrh && pExpr->op!=TK_IF_NULL_ROW
62854b1b65caSdrh ){
62862282792aSdrh break;
62872282792aSdrh }
62882282792aSdrh }
62891e536953Sdanielk1977 if( (k>=pAggInfo->nColumn)
62901e536953Sdanielk1977 && (k = addAggInfoColumn(pParse->db, pAggInfo))>=0
62911e536953Sdanielk1977 ){
62927f906d63Sdrh pCol = &pAggInfo->aCol[k];
6293477572b9Sdrh assert( ExprUseYTab(pExpr) );
6294eda079cdSdrh pCol->pTab = pExpr->y.pTab;
629513449892Sdrh pCol->iTable = pExpr->iTable;
629613449892Sdrh pCol->iColumn = pExpr->iColumn;
62970a07c107Sdrh pCol->iMem = ++pParse->nMem;
629813449892Sdrh pCol->iSorterColumn = -1;
629981185a51Sdrh pCol->pCExpr = pExpr;
63004b1b65caSdrh if( pAggInfo->pGroupBy && pExpr->op!=TK_IF_NULL_ROW ){
630113449892Sdrh int j, n;
630213449892Sdrh ExprList *pGB = pAggInfo->pGroupBy;
630313449892Sdrh struct ExprList_item *pTerm = pGB->a;
630413449892Sdrh n = pGB->nExpr;
630513449892Sdrh for(j=0; j<n; j++, pTerm++){
630613449892Sdrh Expr *pE = pTerm->pExpr;
63074b1b65caSdrh if( pE->op==TK_COLUMN
63084b1b65caSdrh && pE->iTable==pExpr->iTable
63094b1b65caSdrh && pE->iColumn==pExpr->iColumn
63104b1b65caSdrh ){
631113449892Sdrh pCol->iSorterColumn = j;
631213449892Sdrh break;
63132282792aSdrh }
631413449892Sdrh }
631513449892Sdrh }
631613449892Sdrh if( pCol->iSorterColumn<0 ){
631713449892Sdrh pCol->iSorterColumn = pAggInfo->nSortingColumn++;
631813449892Sdrh }
631913449892Sdrh }
632013449892Sdrh /* There is now an entry for pExpr in pAggInfo->aCol[] (either
632113449892Sdrh ** because it was there before or because we just created it).
632213449892Sdrh ** Convert the pExpr to be a TK_AGG_COLUMN referring to that
632313449892Sdrh ** pAggInfo->aCol[] entry.
632413449892Sdrh */
6325ebb6a65dSdrh ExprSetVVAProperty(pExpr, EP_NoReduce);
632613449892Sdrh pExpr->pAggInfo = pAggInfo;
6327ee373020Sdrh if( pExpr->op==TK_COLUMN ){
6328ee373020Sdrh pExpr->op = TK_AGG_COLUMN;
6329ee373020Sdrh }
6330cf697396Sshane pExpr->iAgg = (i16)k;
633113449892Sdrh break;
633213449892Sdrh } /* endif pExpr->iTable==pItem->iCursor */
633313449892Sdrh } /* end loop over pSrcList */
6334a58fdfb1Sdanielk1977 }
63357d10d5a6Sdrh return WRC_Prune;
63362282792aSdrh }
63372282792aSdrh case TK_AGG_FUNCTION: {
63383a8c4be7Sdrh if( (pNC->ncFlags & NC_InAggFunc)==0
6339ed551b95Sdrh && pWalker->walkerDepth==pExpr->op2
63403a8c4be7Sdrh ){
634113449892Sdrh /* Check to see if pExpr is a duplicate of another aggregate
634213449892Sdrh ** function that is already in the pAggInfo structure
634313449892Sdrh */
634413449892Sdrh struct AggInfo_func *pItem = pAggInfo->aFunc;
634513449892Sdrh for(i=0; i<pAggInfo->nFunc; i++, pItem++){
634619e4eefbSdan if( pItem->pFExpr==pExpr ) break;
634781185a51Sdrh if( sqlite3ExprCompare(0, pItem->pFExpr, pExpr, -1)==0 ){
63482282792aSdrh break;
63492282792aSdrh }
63502282792aSdrh }
635113449892Sdrh if( i>=pAggInfo->nFunc ){
635213449892Sdrh /* pExpr is original. Make a new entry in pAggInfo->aFunc[]
635313449892Sdrh */
635414db2665Sdanielk1977 u8 enc = ENC(pParse->db);
63551e536953Sdanielk1977 i = addAggInfoFunc(pParse->db, pAggInfo);
635613449892Sdrh if( i>=0 ){
63576ab3a2ecSdanielk1977 assert( !ExprHasProperty(pExpr, EP_xIsSelect) );
635813449892Sdrh pItem = &pAggInfo->aFunc[i];
635981185a51Sdrh pItem->pFExpr = pExpr;
63600a07c107Sdrh pItem->iMem = ++pParse->nMem;
6361a4eeccdfSdrh assert( ExprUseUToken(pExpr) );
636213449892Sdrh pItem->pFunc = sqlite3FindFunction(pParse->db,
636380738d9cSdrh pExpr->u.zToken,
63646ab3a2ecSdanielk1977 pExpr->x.pList ? pExpr->x.pList->nExpr : 0, enc, 0);
6365fd357974Sdrh if( pExpr->flags & EP_Distinct ){
6366fd357974Sdrh pItem->iDistinct = pParse->nTab++;
6367fd357974Sdrh }else{
6368fd357974Sdrh pItem->iDistinct = -1;
6369fd357974Sdrh }
63702282792aSdrh }
637113449892Sdrh }
637213449892Sdrh /* Make pExpr point to the appropriate pAggInfo->aFunc[] entry
637313449892Sdrh */
6374c5cd1249Sdrh assert( !ExprHasProperty(pExpr, EP_TokenOnly|EP_Reduced) );
6375ebb6a65dSdrh ExprSetVVAProperty(pExpr, EP_NoReduce);
6376cf697396Sshane pExpr->iAgg = (i16)i;
637713449892Sdrh pExpr->pAggInfo = pAggInfo;
63783a8c4be7Sdrh return WRC_Prune;
63796e83a57fSdrh }else{
63806e83a57fSdrh return WRC_Continue;
63816e83a57fSdrh }
63822282792aSdrh }
6383a58fdfb1Sdanielk1977 }
63847d10d5a6Sdrh return WRC_Continue;
63857d10d5a6Sdrh }
6386626a879aSdrh
6387626a879aSdrh /*
6388e8abb4caSdrh ** Analyze the pExpr expression looking for aggregate functions and
6389e8abb4caSdrh ** for variables that need to be added to AggInfo object that pNC->pAggInfo
6390e8abb4caSdrh ** points to. Additional entries are made on the AggInfo object as
6391e8abb4caSdrh ** necessary.
6392626a879aSdrh **
6393626a879aSdrh ** This routine should only be called after the expression has been
63947d10d5a6Sdrh ** analyzed by sqlite3ResolveExprNames().
6395626a879aSdrh */
sqlite3ExprAnalyzeAggregates(NameContext * pNC,Expr * pExpr)6396d2b3e23bSdrh void sqlite3ExprAnalyzeAggregates(NameContext *pNC, Expr *pExpr){
63977d10d5a6Sdrh Walker w;
63987d10d5a6Sdrh w.xExprCallback = analyzeAggregate;
6399e40cc16bSdrh w.xSelectCallback = sqlite3WalkerDepthIncrease;
6400e40cc16bSdrh w.xSelectCallback2 = sqlite3WalkerDepthDecrease;
6401979dd1beSdrh w.walkerDepth = 0;
64027d10d5a6Sdrh w.u.pNC = pNC;
6403d9995031Sdan w.pParse = 0;
640420bc393cSdrh assert( pNC->pSrcList!=0 );
64057d10d5a6Sdrh sqlite3WalkExpr(&w, pExpr);
64062282792aSdrh }
64075d9a4af9Sdrh
64085d9a4af9Sdrh /*
64095d9a4af9Sdrh ** Call sqlite3ExprAnalyzeAggregates() for every expression in an
64105d9a4af9Sdrh ** expression list. Return the number of errors.
64115d9a4af9Sdrh **
64125d9a4af9Sdrh ** If an error is found, the analysis is cut short.
64135d9a4af9Sdrh */
sqlite3ExprAnalyzeAggList(NameContext * pNC,ExprList * pList)6414d2b3e23bSdrh void sqlite3ExprAnalyzeAggList(NameContext *pNC, ExprList *pList){
64155d9a4af9Sdrh struct ExprList_item *pItem;
64165d9a4af9Sdrh int i;
64175d9a4af9Sdrh if( pList ){
6418d2b3e23bSdrh for(pItem=pList->a, i=0; i<pList->nExpr; i++, pItem++){
6419d2b3e23bSdrh sqlite3ExprAnalyzeAggregates(pNC, pItem->pExpr);
64205d9a4af9Sdrh }
64215d9a4af9Sdrh }
64225d9a4af9Sdrh }
6423892d3179Sdrh
6424892d3179Sdrh /*
6425ceea3321Sdrh ** Allocate a single new register for use to hold some intermediate result.
6426892d3179Sdrh */
sqlite3GetTempReg(Parse * pParse)6427892d3179Sdrh int sqlite3GetTempReg(Parse *pParse){
6428e55cbd72Sdrh if( pParse->nTempReg==0 ){
6429892d3179Sdrh return ++pParse->nMem;
6430892d3179Sdrh }
64312f425f6bSdanielk1977 return pParse->aTempReg[--pParse->nTempReg];
6432892d3179Sdrh }
6433ceea3321Sdrh
6434ceea3321Sdrh /*
6435ceea3321Sdrh ** Deallocate a register, making available for reuse for some other
6436ceea3321Sdrh ** purpose.
6437ceea3321Sdrh */
sqlite3ReleaseTempReg(Parse * pParse,int iReg)6438892d3179Sdrh void sqlite3ReleaseTempReg(Parse *pParse, int iReg){
643913d79502Sdrh if( iReg ){
64403aef2fb1Sdrh sqlite3VdbeReleaseRegisters(pParse, iReg, 1, 0, 0);
644113d79502Sdrh if( pParse->nTempReg<ArraySize(pParse->aTempReg) ){
6442892d3179Sdrh pParse->aTempReg[pParse->nTempReg++] = iReg;
6443892d3179Sdrh }
6444892d3179Sdrh }
644513d79502Sdrh }
6446892d3179Sdrh
6447892d3179Sdrh /*
6448ed24da4bSdrh ** Allocate or deallocate a block of nReg consecutive registers.
6449892d3179Sdrh */
sqlite3GetTempRange(Parse * pParse,int nReg)6450892d3179Sdrh int sqlite3GetTempRange(Parse *pParse, int nReg){
6451e55cbd72Sdrh int i, n;
6452ed24da4bSdrh if( nReg==1 ) return sqlite3GetTempReg(pParse);
6453892d3179Sdrh i = pParse->iRangeReg;
6454e55cbd72Sdrh n = pParse->nRangeReg;
6455f49f3523Sdrh if( nReg<=n ){
6456892d3179Sdrh pParse->iRangeReg += nReg;
6457892d3179Sdrh pParse->nRangeReg -= nReg;
6458892d3179Sdrh }else{
6459892d3179Sdrh i = pParse->nMem+1;
6460892d3179Sdrh pParse->nMem += nReg;
6461892d3179Sdrh }
6462892d3179Sdrh return i;
6463892d3179Sdrh }
sqlite3ReleaseTempRange(Parse * pParse,int iReg,int nReg)6464892d3179Sdrh void sqlite3ReleaseTempRange(Parse *pParse, int iReg, int nReg){
6465ed24da4bSdrh if( nReg==1 ){
6466ed24da4bSdrh sqlite3ReleaseTempReg(pParse, iReg);
6467ed24da4bSdrh return;
6468ed24da4bSdrh }
64693aef2fb1Sdrh sqlite3VdbeReleaseRegisters(pParse, iReg, nReg, 0, 0);
6470892d3179Sdrh if( nReg>pParse->nRangeReg ){
6471892d3179Sdrh pParse->nRangeReg = nReg;
6472892d3179Sdrh pParse->iRangeReg = iReg;
6473892d3179Sdrh }
6474892d3179Sdrh }
6475cdc69557Sdrh
6476cdc69557Sdrh /*
6477cdc69557Sdrh ** Mark all temporary registers as being unavailable for reuse.
64786d2566dfSdrh **
64796d2566dfSdrh ** Always invoke this procedure after coding a subroutine or co-routine
64806d2566dfSdrh ** that might be invoked from other parts of the code, to ensure that
64816d2566dfSdrh ** the sub/co-routine does not use registers in common with the code that
64826d2566dfSdrh ** invokes the sub/co-routine.
6483cdc69557Sdrh */
sqlite3ClearTempRegCache(Parse * pParse)6484cdc69557Sdrh void sqlite3ClearTempRegCache(Parse *pParse){
6485cdc69557Sdrh pParse->nTempReg = 0;
6486cdc69557Sdrh pParse->nRangeReg = 0;
6487cdc69557Sdrh }
6488bb9b5f26Sdrh
6489bb9b5f26Sdrh /*
6490bb9b5f26Sdrh ** Validate that no temporary register falls within the range of
6491bb9b5f26Sdrh ** iFirst..iLast, inclusive. This routine is only call from within assert()
6492bb9b5f26Sdrh ** statements.
6493bb9b5f26Sdrh */
6494bb9b5f26Sdrh #ifdef SQLITE_DEBUG
sqlite3NoTempsInRange(Parse * pParse,int iFirst,int iLast)6495bb9b5f26Sdrh int sqlite3NoTempsInRange(Parse *pParse, int iFirst, int iLast){
6496bb9b5f26Sdrh int i;
6497bb9b5f26Sdrh if( pParse->nRangeReg>0
64983963e584Sdrh && pParse->iRangeReg+pParse->nRangeReg > iFirst
64993963e584Sdrh && pParse->iRangeReg <= iLast
6500bb9b5f26Sdrh ){
6501bb9b5f26Sdrh return 0;
6502bb9b5f26Sdrh }
6503bb9b5f26Sdrh for(i=0; i<pParse->nTempReg; i++){
6504bb9b5f26Sdrh if( pParse->aTempReg[i]>=iFirst && pParse->aTempReg[i]<=iLast ){
6505bb9b5f26Sdrh return 0;
6506bb9b5f26Sdrh }
6507bb9b5f26Sdrh }
6508bb9b5f26Sdrh return 1;
6509bb9b5f26Sdrh }
6510bb9b5f26Sdrh #endif /* SQLITE_DEBUG */
6511