xref: /sqlite-3.40.0/src/select.c (revision c4a64fac)
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 *************************************************************************
12cce7d176Sdrh ** This file contains C code routines that are called by the parser
13b19a2bc6Sdrh ** to handle SELECT statements in SQLite.
14cce7d176Sdrh **
15*c4a64facSdrh ** $Id: select.c,v 1.513 2009/05/11 20:53:29 drh Exp $
16cce7d176Sdrh */
17cce7d176Sdrh #include "sqliteInt.h"
18cce7d176Sdrh 
19315555caSdrh 
20cce7d176Sdrh /*
21eda639e1Sdrh ** Delete all the content of a Select structure but do not deallocate
22eda639e1Sdrh ** the select structure itself.
23eda639e1Sdrh */
24633e6d57Sdrh static void clearSelect(sqlite3 *db, Select *p){
25633e6d57Sdrh   sqlite3ExprListDelete(db, p->pEList);
26633e6d57Sdrh   sqlite3SrcListDelete(db, p->pSrc);
27633e6d57Sdrh   sqlite3ExprDelete(db, p->pWhere);
28633e6d57Sdrh   sqlite3ExprListDelete(db, p->pGroupBy);
29633e6d57Sdrh   sqlite3ExprDelete(db, p->pHaving);
30633e6d57Sdrh   sqlite3ExprListDelete(db, p->pOrderBy);
31633e6d57Sdrh   sqlite3SelectDelete(db, p->pPrior);
32633e6d57Sdrh   sqlite3ExprDelete(db, p->pLimit);
33633e6d57Sdrh   sqlite3ExprDelete(db, p->pOffset);
34eda639e1Sdrh }
35eda639e1Sdrh 
361013c932Sdrh /*
371013c932Sdrh ** Initialize a SelectDest structure.
381013c932Sdrh */
391013c932Sdrh void sqlite3SelectDestInit(SelectDest *pDest, int eDest, int iParm){
40ea678832Sdrh   pDest->eDest = (u8)eDest;
411013c932Sdrh   pDest->iParm = iParm;
421013c932Sdrh   pDest->affinity = 0;
431013c932Sdrh   pDest->iMem = 0;
44ad27e761Sdrh   pDest->nMem = 0;
451013c932Sdrh }
461013c932Sdrh 
47eda639e1Sdrh 
48eda639e1Sdrh /*
499bb61fe7Sdrh ** Allocate a new Select structure and return a pointer to that
509bb61fe7Sdrh ** structure.
51cce7d176Sdrh */
524adee20fSdanielk1977 Select *sqlite3SelectNew(
5317435752Sdrh   Parse *pParse,        /* Parsing context */
54daffd0e5Sdrh   ExprList *pEList,     /* which columns to include in the result */
55ad3cab52Sdrh   SrcList *pSrc,        /* the FROM clause -- which tables to scan */
56daffd0e5Sdrh   Expr *pWhere,         /* the WHERE clause */
57daffd0e5Sdrh   ExprList *pGroupBy,   /* the GROUP BY clause */
58daffd0e5Sdrh   Expr *pHaving,        /* the HAVING clause */
59daffd0e5Sdrh   ExprList *pOrderBy,   /* the ORDER BY clause */
609bbca4c1Sdrh   int isDistinct,       /* true if the DISTINCT keyword is present */
61a2dc3b1aSdanielk1977   Expr *pLimit,         /* LIMIT value.  NULL means not used */
62a2dc3b1aSdanielk1977   Expr *pOffset         /* OFFSET value.  NULL means no offset */
639bb61fe7Sdrh ){
649bb61fe7Sdrh   Select *pNew;
65eda639e1Sdrh   Select standin;
6617435752Sdrh   sqlite3 *db = pParse->db;
6717435752Sdrh   pNew = sqlite3DbMallocZero(db, sizeof(*pNew) );
68d72a276eSdrh   assert( db->mallocFailed || !pOffset || pLimit ); /* OFFSET implies LIMIT */
69daffd0e5Sdrh   if( pNew==0 ){
70eda639e1Sdrh     pNew = &standin;
71eda639e1Sdrh     memset(pNew, 0, sizeof(*pNew));
72eda639e1Sdrh   }
73b733d037Sdrh   if( pEList==0 ){
74a1644fd8Sdanielk1977     pEList = sqlite3ExprListAppend(pParse, 0, sqlite3Expr(db,TK_ALL,0,0,0), 0);
75b733d037Sdrh   }
769bb61fe7Sdrh   pNew->pEList = pEList;
779bb61fe7Sdrh   pNew->pSrc = pSrc;
789bb61fe7Sdrh   pNew->pWhere = pWhere;
799bb61fe7Sdrh   pNew->pGroupBy = pGroupBy;
809bb61fe7Sdrh   pNew->pHaving = pHaving;
819bb61fe7Sdrh   pNew->pOrderBy = pOrderBy;
827d10d5a6Sdrh   pNew->selFlags = isDistinct ? SF_Distinct : 0;
8382c3d636Sdrh   pNew->op = TK_SELECT;
84a2dc3b1aSdanielk1977   pNew->pLimit = pLimit;
85a2dc3b1aSdanielk1977   pNew->pOffset = pOffset;
86b9bb7c18Sdrh   pNew->addrOpenEphm[0] = -1;
87b9bb7c18Sdrh   pNew->addrOpenEphm[1] = -1;
88b9bb7c18Sdrh   pNew->addrOpenEphm[2] = -1;
890a846f96Sdrh   if( db->mallocFailed ) {
90633e6d57Sdrh     clearSelect(db, pNew);
910a846f96Sdrh     if( pNew!=&standin ) sqlite3DbFree(db, pNew);
92eda639e1Sdrh     pNew = 0;
93daffd0e5Sdrh   }
949bb61fe7Sdrh   return pNew;
959bb61fe7Sdrh }
969bb61fe7Sdrh 
979bb61fe7Sdrh /*
98eda639e1Sdrh ** Delete the given Select structure and all of its substructures.
99eda639e1Sdrh */
100633e6d57Sdrh void sqlite3SelectDelete(sqlite3 *db, Select *p){
101eda639e1Sdrh   if( p ){
102633e6d57Sdrh     clearSelect(db, p);
103633e6d57Sdrh     sqlite3DbFree(db, p);
104eda639e1Sdrh   }
105eda639e1Sdrh }
106eda639e1Sdrh 
107eda639e1Sdrh /*
10801f3f253Sdrh ** Given 1 to 3 identifiers preceeding the JOIN keyword, determine the
10901f3f253Sdrh ** type of join.  Return an integer constant that expresses that type
11001f3f253Sdrh ** in terms of the following bit values:
11101f3f253Sdrh **
11201f3f253Sdrh **     JT_INNER
1133dec223cSdrh **     JT_CROSS
11401f3f253Sdrh **     JT_OUTER
11501f3f253Sdrh **     JT_NATURAL
11601f3f253Sdrh **     JT_LEFT
11701f3f253Sdrh **     JT_RIGHT
11801f3f253Sdrh **
11901f3f253Sdrh ** A full outer join is the combination of JT_LEFT and JT_RIGHT.
12001f3f253Sdrh **
12101f3f253Sdrh ** If an illegal or unsupported join type is seen, then still return
12201f3f253Sdrh ** a join type, but put an error in the pParse structure.
12301f3f253Sdrh */
1244adee20fSdanielk1977 int sqlite3JoinType(Parse *pParse, Token *pA, Token *pB, Token *pC){
12501f3f253Sdrh   int jointype = 0;
12601f3f253Sdrh   Token *apAll[3];
12701f3f253Sdrh   Token *p;
1285719628aSdrh   static const struct {
129c182d163Sdrh     const char zKeyword[8];
130290c1948Sdrh     u8 nChar;
131290c1948Sdrh     u8 code;
13201f3f253Sdrh   } keywords[] = {
13301f3f253Sdrh     { "natural", 7, JT_NATURAL },
134195e6967Sdrh     { "left",    4, JT_LEFT|JT_OUTER },
135195e6967Sdrh     { "right",   5, JT_RIGHT|JT_OUTER },
136195e6967Sdrh     { "full",    4, JT_LEFT|JT_RIGHT|JT_OUTER },
13701f3f253Sdrh     { "outer",   5, JT_OUTER },
13801f3f253Sdrh     { "inner",   5, JT_INNER },
1393dec223cSdrh     { "cross",   5, JT_INNER|JT_CROSS },
14001f3f253Sdrh   };
14101f3f253Sdrh   int i, j;
14201f3f253Sdrh   apAll[0] = pA;
14301f3f253Sdrh   apAll[1] = pB;
14401f3f253Sdrh   apAll[2] = pC;
145195e6967Sdrh   for(i=0; i<3 && apAll[i]; i++){
14601f3f253Sdrh     p = apAll[i];
14700e13613Sdanielk1977     for(j=0; j<ArraySize(keywords); j++){
14801f3f253Sdrh       if( p->n==keywords[j].nChar
1492646da7eSdrh           && sqlite3StrNICmp((char*)p->z, keywords[j].zKeyword, p->n)==0 ){
15001f3f253Sdrh         jointype |= keywords[j].code;
15101f3f253Sdrh         break;
15201f3f253Sdrh       }
15301f3f253Sdrh     }
15400e13613Sdanielk1977     if( j>=ArraySize(keywords) ){
15501f3f253Sdrh       jointype |= JT_ERROR;
15601f3f253Sdrh       break;
15701f3f253Sdrh     }
15801f3f253Sdrh   }
159ad2d8307Sdrh   if(
160ad2d8307Sdrh      (jointype & (JT_INNER|JT_OUTER))==(JT_INNER|JT_OUTER) ||
161195e6967Sdrh      (jointype & JT_ERROR)!=0
162ad2d8307Sdrh   ){
163a9671a22Sdrh     const char *zSp = " ";
164a9671a22Sdrh     assert( pB!=0 );
165a9671a22Sdrh     if( pC==0 ){ zSp++; }
166ae29ffbeSdrh     sqlite3ErrorMsg(pParse, "unknown or unsupported join type: "
167a9671a22Sdrh        "%T %T%s%T", pA, pB, zSp, pC);
16801f3f253Sdrh     jointype = JT_INNER;
169195e6967Sdrh   }else if( jointype & JT_RIGHT ){
1704adee20fSdanielk1977     sqlite3ErrorMsg(pParse,
171da93d238Sdrh       "RIGHT and FULL OUTER JOINs are not currently supported");
172195e6967Sdrh     jointype = JT_INNER;
17301f3f253Sdrh   }
17401f3f253Sdrh   return jointype;
17501f3f253Sdrh }
17601f3f253Sdrh 
17701f3f253Sdrh /*
178ad2d8307Sdrh ** Return the index of a column in a table.  Return -1 if the column
179ad2d8307Sdrh ** is not contained in the table.
180ad2d8307Sdrh */
181ad2d8307Sdrh static int columnIndex(Table *pTab, const char *zCol){
182ad2d8307Sdrh   int i;
183ad2d8307Sdrh   for(i=0; i<pTab->nCol; i++){
1844adee20fSdanielk1977     if( sqlite3StrICmp(pTab->aCol[i].zName, zCol)==0 ) return i;
185ad2d8307Sdrh   }
186ad2d8307Sdrh   return -1;
187ad2d8307Sdrh }
188ad2d8307Sdrh 
189ad2d8307Sdrh /*
19091bb0eedSdrh ** Set the value of a token to a '\000'-terminated string.
19191bb0eedSdrh */
19291bb0eedSdrh static void setToken(Token *p, const char *z){
1932646da7eSdrh   p->z = (u8*)z;
194ea678832Sdrh   p->n = z ? sqlite3Strlen30(z) : 0;
19591bb0eedSdrh   p->dyn = 0;
19624fb627aSdrh   p->quoted = 0;
197f3b863edSdanielk1977 }
198f3b863edSdanielk1977 
199f3b863edSdanielk1977 /*
200c182d163Sdrh ** Create an expression node for an identifier with the name of zName
201c182d163Sdrh */
20217435752Sdrh Expr *sqlite3CreateIdExpr(Parse *pParse, const char *zName){
203c182d163Sdrh   Token dummy;
204c182d163Sdrh   setToken(&dummy, zName);
20517435752Sdrh   return sqlite3PExpr(pParse, TK_ID, 0, 0, &dummy);
206c182d163Sdrh }
207c182d163Sdrh 
20891bb0eedSdrh /*
209ad2d8307Sdrh ** Add a term to the WHERE expression in *ppExpr that requires the
210ad2d8307Sdrh ** zCol column to be equal in the two tables pTab1 and pTab2.
211ad2d8307Sdrh */
212ad2d8307Sdrh static void addWhereTerm(
21317435752Sdrh   Parse *pParse,           /* Parsing context */
214ad2d8307Sdrh   const char *zCol,        /* Name of the column */
215ad2d8307Sdrh   const Table *pTab1,      /* First table */
216030530deSdrh   const char *zAlias1,     /* Alias for first table.  May be NULL */
217ad2d8307Sdrh   const Table *pTab2,      /* Second table */
218030530deSdrh   const char *zAlias2,     /* Alias for second table.  May be NULL */
21922d6a53aSdrh   int iRightJoinTable,     /* VDBE cursor for the right table */
220ad27e761Sdrh   Expr **ppExpr,           /* Add the equality term to this expression */
221ad27e761Sdrh   int isOuterJoin          /* True if dealing with an OUTER join */
222ad2d8307Sdrh ){
223ad2d8307Sdrh   Expr *pE1a, *pE1b, *pE1c;
224ad2d8307Sdrh   Expr *pE2a, *pE2b, *pE2c;
225ad2d8307Sdrh   Expr *pE;
226ad2d8307Sdrh 
22717435752Sdrh   pE1a = sqlite3CreateIdExpr(pParse, zCol);
22817435752Sdrh   pE2a = sqlite3CreateIdExpr(pParse, zCol);
229030530deSdrh   if( zAlias1==0 ){
230030530deSdrh     zAlias1 = pTab1->zName;
231030530deSdrh   }
23217435752Sdrh   pE1b = sqlite3CreateIdExpr(pParse, zAlias1);
233030530deSdrh   if( zAlias2==0 ){
234030530deSdrh     zAlias2 = pTab2->zName;
235030530deSdrh   }
23617435752Sdrh   pE2b = sqlite3CreateIdExpr(pParse, zAlias2);
23717435752Sdrh   pE1c = sqlite3PExpr(pParse, TK_DOT, pE1b, pE1a, 0);
23817435752Sdrh   pE2c = sqlite3PExpr(pParse, TK_DOT, pE2b, pE2a, 0);
2391e536953Sdanielk1977   pE = sqlite3PExpr(pParse, TK_EQ, pE1c, pE2c, 0);
240ad27e761Sdrh   if( pE && isOuterJoin ){
2411f16230bSdrh     ExprSetProperty(pE, EP_FromJoin);
24222d6a53aSdrh     pE->iRightJoinTable = iRightJoinTable;
243206f3d96Sdrh   }
244f4ce8ed0Sdrh   *ppExpr = sqlite3ExprAnd(pParse->db,*ppExpr, pE);
245ad2d8307Sdrh }
246ad2d8307Sdrh 
247ad2d8307Sdrh /*
2481f16230bSdrh ** Set the EP_FromJoin property on all terms of the given expression.
24922d6a53aSdrh ** And set the Expr.iRightJoinTable to iTable for every term in the
25022d6a53aSdrh ** expression.
2511cc093c2Sdrh **
252e78e8284Sdrh ** The EP_FromJoin property is used on terms of an expression to tell
2531cc093c2Sdrh ** the LEFT OUTER JOIN processing logic that this term is part of the
2541f16230bSdrh ** join restriction specified in the ON or USING clause and not a part
2551f16230bSdrh ** of the more general WHERE clause.  These terms are moved over to the
2561f16230bSdrh ** WHERE clause during join processing but we need to remember that they
2571f16230bSdrh ** originated in the ON or USING clause.
25822d6a53aSdrh **
25922d6a53aSdrh ** The Expr.iRightJoinTable tells the WHERE clause processing that the
26022d6a53aSdrh ** expression depends on table iRightJoinTable even if that table is not
26122d6a53aSdrh ** explicitly mentioned in the expression.  That information is needed
26222d6a53aSdrh ** for cases like this:
26322d6a53aSdrh **
26422d6a53aSdrh **    SELECT * FROM t1 LEFT JOIN t2 ON t1.a=t2.b AND t1.x=5
26522d6a53aSdrh **
26622d6a53aSdrh ** The where clause needs to defer the handling of the t1.x=5
26722d6a53aSdrh ** term until after the t2 loop of the join.  In that way, a
26822d6a53aSdrh ** NULL t2 row will be inserted whenever t1.x!=5.  If we do not
26922d6a53aSdrh ** defer the handling of t1.x=5, it will be processed immediately
27022d6a53aSdrh ** after the t1 loop and rows with t1.x!=5 will never appear in
27122d6a53aSdrh ** the output, which is incorrect.
2721cc093c2Sdrh */
27322d6a53aSdrh static void setJoinExpr(Expr *p, int iTable){
2741cc093c2Sdrh   while( p ){
2751f16230bSdrh     ExprSetProperty(p, EP_FromJoin);
27622d6a53aSdrh     p->iRightJoinTable = iTable;
27722d6a53aSdrh     setJoinExpr(p->pLeft, iTable);
2781cc093c2Sdrh     p = p->pRight;
2791cc093c2Sdrh   }
2801cc093c2Sdrh }
2811cc093c2Sdrh 
2821cc093c2Sdrh /*
283ad2d8307Sdrh ** This routine processes the join information for a SELECT statement.
284ad2d8307Sdrh ** ON and USING clauses are converted into extra terms of the WHERE clause.
285ad2d8307Sdrh ** NATURAL joins also create extra WHERE clause terms.
286ad2d8307Sdrh **
28791bb0eedSdrh ** The terms of a FROM clause are contained in the Select.pSrc structure.
28891bb0eedSdrh ** The left most table is the first entry in Select.pSrc.  The right-most
28991bb0eedSdrh ** table is the last entry.  The join operator is held in the entry to
29091bb0eedSdrh ** the left.  Thus entry 0 contains the join operator for the join between
29191bb0eedSdrh ** entries 0 and 1.  Any ON or USING clauses associated with the join are
29291bb0eedSdrh ** also attached to the left entry.
29391bb0eedSdrh **
294ad2d8307Sdrh ** This routine returns the number of errors encountered.
295ad2d8307Sdrh */
296ad2d8307Sdrh static int sqliteProcessJoin(Parse *pParse, Select *p){
29791bb0eedSdrh   SrcList *pSrc;                  /* All tables in the FROM clause */
29891bb0eedSdrh   int i, j;                       /* Loop counters */
29991bb0eedSdrh   struct SrcList_item *pLeft;     /* Left table being joined */
30091bb0eedSdrh   struct SrcList_item *pRight;    /* Right table being joined */
301ad2d8307Sdrh 
30291bb0eedSdrh   pSrc = p->pSrc;
30391bb0eedSdrh   pLeft = &pSrc->a[0];
30491bb0eedSdrh   pRight = &pLeft[1];
30591bb0eedSdrh   for(i=0; i<pSrc->nSrc-1; i++, pRight++, pLeft++){
30691bb0eedSdrh     Table *pLeftTab = pLeft->pTab;
30791bb0eedSdrh     Table *pRightTab = pRight->pTab;
308ad27e761Sdrh     int isOuter;
30991bb0eedSdrh 
3101c767f0dSdrh     if( NEVER(pLeftTab==0 || pRightTab==0) ) continue;
311ad27e761Sdrh     isOuter = (pRight->jointype & JT_OUTER)!=0;
312ad2d8307Sdrh 
313ad2d8307Sdrh     /* When the NATURAL keyword is present, add WHERE clause terms for
314ad2d8307Sdrh     ** every column that the two tables have in common.
315ad2d8307Sdrh     */
31661dfc31dSdrh     if( pRight->jointype & JT_NATURAL ){
31761dfc31dSdrh       if( pRight->pOn || pRight->pUsing ){
3184adee20fSdanielk1977         sqlite3ErrorMsg(pParse, "a NATURAL join may not have "
319ad2d8307Sdrh            "an ON or USING clause", 0);
320ad2d8307Sdrh         return 1;
321ad2d8307Sdrh       }
32291bb0eedSdrh       for(j=0; j<pLeftTab->nCol; j++){
32391bb0eedSdrh         char *zName = pLeftTab->aCol[j].zName;
32491bb0eedSdrh         if( columnIndex(pRightTab, zName)>=0 ){
3251e536953Sdanielk1977           addWhereTerm(pParse, zName, pLeftTab, pLeft->zAlias,
32622d6a53aSdrh                               pRightTab, pRight->zAlias,
327ad27e761Sdrh                               pRight->iCursor, &p->pWhere, isOuter);
32822d6a53aSdrh 
329ad2d8307Sdrh         }
330ad2d8307Sdrh       }
331ad2d8307Sdrh     }
332ad2d8307Sdrh 
333ad2d8307Sdrh     /* Disallow both ON and USING clauses in the same join
334ad2d8307Sdrh     */
33561dfc31dSdrh     if( pRight->pOn && pRight->pUsing ){
3364adee20fSdanielk1977       sqlite3ErrorMsg(pParse, "cannot have both ON and USING "
337da93d238Sdrh         "clauses in the same join");
338ad2d8307Sdrh       return 1;
339ad2d8307Sdrh     }
340ad2d8307Sdrh 
341ad2d8307Sdrh     /* Add the ON clause to the end of the WHERE clause, connected by
34291bb0eedSdrh     ** an AND operator.
343ad2d8307Sdrh     */
34461dfc31dSdrh     if( pRight->pOn ){
345ad27e761Sdrh       if( isOuter ) setJoinExpr(pRight->pOn, pRight->iCursor);
34617435752Sdrh       p->pWhere = sqlite3ExprAnd(pParse->db, p->pWhere, pRight->pOn);
34761dfc31dSdrh       pRight->pOn = 0;
348ad2d8307Sdrh     }
349ad2d8307Sdrh 
350ad2d8307Sdrh     /* Create extra terms on the WHERE clause for each column named
351ad2d8307Sdrh     ** in the USING clause.  Example: If the two tables to be joined are
352ad2d8307Sdrh     ** A and B and the USING clause names X, Y, and Z, then add this
353ad2d8307Sdrh     ** to the WHERE clause:    A.X=B.X AND A.Y=B.Y AND A.Z=B.Z
354ad2d8307Sdrh     ** Report an error if any column mentioned in the USING clause is
355ad2d8307Sdrh     ** not contained in both tables to be joined.
356ad2d8307Sdrh     */
35761dfc31dSdrh     if( pRight->pUsing ){
35861dfc31dSdrh       IdList *pList = pRight->pUsing;
359ad2d8307Sdrh       for(j=0; j<pList->nId; j++){
36091bb0eedSdrh         char *zName = pList->a[j].zName;
36191bb0eedSdrh         if( columnIndex(pLeftTab, zName)<0 || columnIndex(pRightTab, zName)<0 ){
3624adee20fSdanielk1977           sqlite3ErrorMsg(pParse, "cannot join using column %s - column "
36391bb0eedSdrh             "not present in both tables", zName);
364ad2d8307Sdrh           return 1;
365ad2d8307Sdrh         }
3661e536953Sdanielk1977         addWhereTerm(pParse, zName, pLeftTab, pLeft->zAlias,
36722d6a53aSdrh                             pRightTab, pRight->zAlias,
368ad27e761Sdrh                             pRight->iCursor, &p->pWhere, isOuter);
369ad2d8307Sdrh       }
370ad2d8307Sdrh     }
371ad2d8307Sdrh   }
372ad2d8307Sdrh   return 0;
373ad2d8307Sdrh }
374ad2d8307Sdrh 
375ad2d8307Sdrh /*
376c926afbcSdrh ** Insert code into "v" that will push the record on the top of the
377c926afbcSdrh ** stack into the sorter.
378c926afbcSdrh */
379d59ba6ceSdrh static void pushOntoSorter(
380d59ba6ceSdrh   Parse *pParse,         /* Parser context */
381d59ba6ceSdrh   ExprList *pOrderBy,    /* The ORDER BY clause */
382b7654111Sdrh   Select *pSelect,       /* The whole SELECT statement */
383b7654111Sdrh   int regData            /* Register holding data to be sorted */
384d59ba6ceSdrh ){
385d59ba6ceSdrh   Vdbe *v = pParse->pVdbe;
386892d3179Sdrh   int nExpr = pOrderBy->nExpr;
387892d3179Sdrh   int regBase = sqlite3GetTempRange(pParse, nExpr+2);
388892d3179Sdrh   int regRecord = sqlite3GetTempReg(pParse);
389ceea3321Sdrh   sqlite3ExprCacheClear(pParse);
390191b54cbSdrh   sqlite3ExprCodeExprList(pParse, pOrderBy, regBase, 0);
391892d3179Sdrh   sqlite3VdbeAddOp2(v, OP_Sequence, pOrderBy->iECursor, regBase+nExpr);
392b21e7c70Sdrh   sqlite3ExprCodeMove(pParse, regData, regBase+nExpr+1, 1);
3931db639ceSdrh   sqlite3VdbeAddOp3(v, OP_MakeRecord, regBase, nExpr + 2, regRecord);
394892d3179Sdrh   sqlite3VdbeAddOp2(v, OP_IdxInsert, pOrderBy->iECursor, regRecord);
395892d3179Sdrh   sqlite3ReleaseTempReg(pParse, regRecord);
396892d3179Sdrh   sqlite3ReleaseTempRange(pParse, regBase, nExpr+2);
39792b01d53Sdrh   if( pSelect->iLimit ){
39815007a99Sdrh     int addr1, addr2;
399b7654111Sdrh     int iLimit;
4000acb7e48Sdrh     if( pSelect->iOffset ){
401b7654111Sdrh       iLimit = pSelect->iOffset+1;
402b7654111Sdrh     }else{
403b7654111Sdrh       iLimit = pSelect->iLimit;
404b7654111Sdrh     }
405b7654111Sdrh     addr1 = sqlite3VdbeAddOp1(v, OP_IfZero, iLimit);
406b7654111Sdrh     sqlite3VdbeAddOp2(v, OP_AddImm, iLimit, -1);
4073c84ddffSdrh     addr2 = sqlite3VdbeAddOp0(v, OP_Goto);
408d59ba6ceSdrh     sqlite3VdbeJumpHere(v, addr1);
4093c84ddffSdrh     sqlite3VdbeAddOp1(v, OP_Last, pOrderBy->iECursor);
4103c84ddffSdrh     sqlite3VdbeAddOp1(v, OP_Delete, pOrderBy->iECursor);
41115007a99Sdrh     sqlite3VdbeJumpHere(v, addr2);
41292b01d53Sdrh     pSelect->iLimit = 0;
413d59ba6ceSdrh   }
414c926afbcSdrh }
415c926afbcSdrh 
416c926afbcSdrh /*
417ec7429aeSdrh ** Add code to implement the OFFSET
418ea48eb2eSdrh */
419ec7429aeSdrh static void codeOffset(
420bab39e13Sdrh   Vdbe *v,          /* Generate code into this VM */
421ea48eb2eSdrh   Select *p,        /* The SELECT statement being coded */
422b7654111Sdrh   int iContinue     /* Jump here to skip the current record */
423ea48eb2eSdrh ){
42492b01d53Sdrh   if( p->iOffset && iContinue!=0 ){
42515007a99Sdrh     int addr;
4268558cde1Sdrh     sqlite3VdbeAddOp2(v, OP_AddImm, p->iOffset, -1);
4273c84ddffSdrh     addr = sqlite3VdbeAddOp1(v, OP_IfNeg, p->iOffset);
42866a5167bSdrh     sqlite3VdbeAddOp2(v, OP_Goto, 0, iContinue);
429d4e70ebdSdrh     VdbeComment((v, "skip OFFSET records"));
43015007a99Sdrh     sqlite3VdbeJumpHere(v, addr);
431ea48eb2eSdrh   }
432ea48eb2eSdrh }
433ea48eb2eSdrh 
434ea48eb2eSdrh /*
43598757157Sdrh ** Add code that will check to make sure the N registers starting at iMem
43698757157Sdrh ** form a distinct entry.  iTab is a sorting index that holds previously
437a2a49dc9Sdrh ** seen combinations of the N values.  A new entry is made in iTab
438a2a49dc9Sdrh ** if the current N values are new.
439a2a49dc9Sdrh **
440a2a49dc9Sdrh ** A jump to addrRepeat is made and the N+1 values are popped from the
441a2a49dc9Sdrh ** stack if the top N elements are not distinct.
442a2a49dc9Sdrh */
443a2a49dc9Sdrh static void codeDistinct(
4442dcef11bSdrh   Parse *pParse,     /* Parsing and code generating context */
445a2a49dc9Sdrh   int iTab,          /* A sorting index used to test for distinctness */
446a2a49dc9Sdrh   int addrRepeat,    /* Jump to here if not distinct */
447477df4b3Sdrh   int N,             /* Number of elements */
448a2a49dc9Sdrh   int iMem           /* First element */
449a2a49dc9Sdrh ){
4502dcef11bSdrh   Vdbe *v;
4512dcef11bSdrh   int r1;
4522dcef11bSdrh 
4532dcef11bSdrh   v = pParse->pVdbe;
4542dcef11bSdrh   r1 = sqlite3GetTempReg(pParse);
4551db639ceSdrh   sqlite3VdbeAddOp3(v, OP_MakeRecord, iMem, N, r1);
4562dcef11bSdrh   sqlite3VdbeAddOp3(v, OP_Found, iTab, addrRepeat, r1);
4572dcef11bSdrh   sqlite3VdbeAddOp2(v, OP_IdxInsert, iTab, r1);
4582dcef11bSdrh   sqlite3ReleaseTempReg(pParse, r1);
459a2a49dc9Sdrh }
460a2a49dc9Sdrh 
461a2a49dc9Sdrh /*
462e305f43fSdrh ** Generate an error message when a SELECT is used within a subexpression
463e305f43fSdrh ** (example:  "a IN (SELECT * FROM table)") but it has more than 1 result
464e305f43fSdrh ** column.  We do this in a subroutine because the error occurs in multiple
465e305f43fSdrh ** places.
466e305f43fSdrh */
4676c8c8ce0Sdanielk1977 static int checkForMultiColumnSelectError(
4686c8c8ce0Sdanielk1977   Parse *pParse,       /* Parse context. */
4696c8c8ce0Sdanielk1977   SelectDest *pDest,   /* Destination of SELECT results */
4706c8c8ce0Sdanielk1977   int nExpr            /* Number of result columns returned by SELECT */
4716c8c8ce0Sdanielk1977 ){
4726c8c8ce0Sdanielk1977   int eDest = pDest->eDest;
473e305f43fSdrh   if( nExpr>1 && (eDest==SRT_Mem || eDest==SRT_Set) ){
474e305f43fSdrh     sqlite3ErrorMsg(pParse, "only a single result allowed for "
475e305f43fSdrh        "a SELECT that is part of an expression");
476e305f43fSdrh     return 1;
477e305f43fSdrh   }else{
478e305f43fSdrh     return 0;
479e305f43fSdrh   }
480e305f43fSdrh }
481c99130fdSdrh 
482c99130fdSdrh /*
4832282792aSdrh ** This routine generates the code for the inside of the inner loop
4842282792aSdrh ** of a SELECT.
48582c3d636Sdrh **
48638640e15Sdrh ** If srcTab and nColumn are both zero, then the pEList expressions
48738640e15Sdrh ** are evaluated in order to get the data for this row.  If nColumn>0
48838640e15Sdrh ** then data is pulled from srcTab and pEList is used only to get the
48938640e15Sdrh ** datatypes for each column.
4902282792aSdrh */
491d2b3e23bSdrh static void selectInnerLoop(
4922282792aSdrh   Parse *pParse,          /* The parser context */
493df199a25Sdrh   Select *p,              /* The complete select statement being coded */
4942282792aSdrh   ExprList *pEList,       /* List of values being extracted */
49582c3d636Sdrh   int srcTab,             /* Pull data from this table */
496967e8b73Sdrh   int nColumn,            /* Number of columns in the source table */
4972282792aSdrh   ExprList *pOrderBy,     /* If not NULL, sort results using this key */
4982282792aSdrh   int distinct,           /* If >=0, make sure results are distinct */
4996c8c8ce0Sdanielk1977   SelectDest *pDest,      /* How to dispose of the results */
5002282792aSdrh   int iContinue,          /* Jump here to continue with next row */
501a9671a22Sdrh   int iBreak              /* Jump here to break out of the inner loop */
5022282792aSdrh ){
5032282792aSdrh   Vdbe *v = pParse->pVdbe;
504d847eaadSdrh   int i;
505ea48eb2eSdrh   int hasDistinct;        /* True if the DISTINCT keyword is present */
506d847eaadSdrh   int regResult;              /* Start of memory holding result set */
507d847eaadSdrh   int eDest = pDest->eDest;   /* How to dispose of results */
508d847eaadSdrh   int iParm = pDest->iParm;   /* First argument to disposal method */
509d847eaadSdrh   int nResultCol;             /* Number of result columns */
51038640e15Sdrh 
5111c767f0dSdrh   assert( v );
5121c767f0dSdrh   if( NEVER(v==0) ) return;
51338640e15Sdrh   assert( pEList!=0 );
514e49b146fSdrh   hasDistinct = distinct>=0;
515ea48eb2eSdrh   if( pOrderBy==0 && !hasDistinct ){
516b7654111Sdrh     codeOffset(v, p, iContinue);
517df199a25Sdrh   }
518df199a25Sdrh 
519967e8b73Sdrh   /* Pull the requested columns.
5202282792aSdrh   */
52138640e15Sdrh   if( nColumn>0 ){
522d847eaadSdrh     nResultCol = nColumn;
523a2a49dc9Sdrh   }else{
524d847eaadSdrh     nResultCol = pEList->nExpr;
525a2a49dc9Sdrh   }
5261ece7325Sdrh   if( pDest->iMem==0 ){
5270acb7e48Sdrh     pDest->iMem = pParse->nMem+1;
528ad27e761Sdrh     pDest->nMem = nResultCol;
5290acb7e48Sdrh     pParse->nMem += nResultCol;
5301c767f0dSdrh   }else{
5311c767f0dSdrh     assert( pDest->nMem==nResultCol );
5321013c932Sdrh   }
5331ece7325Sdrh   regResult = pDest->iMem;
534a2a49dc9Sdrh   if( nColumn>0 ){
535967e8b73Sdrh     for(i=0; i<nColumn; i++){
536d847eaadSdrh       sqlite3VdbeAddOp3(v, OP_Column, srcTab, i, regResult+i);
53782c3d636Sdrh     }
5389ed1dfa8Sdanielk1977   }else if( eDest!=SRT_Exists ){
5399ed1dfa8Sdanielk1977     /* If the destination is an EXISTS(...) expression, the actual
5409ed1dfa8Sdanielk1977     ** values returned by the SELECT are not required.
5419ed1dfa8Sdanielk1977     */
542ceea3321Sdrh     sqlite3ExprCacheClear(pParse);
5437d10d5a6Sdrh     sqlite3ExprCodeExprList(pParse, pEList, regResult, eDest==SRT_Output);
544a2a49dc9Sdrh   }
545d847eaadSdrh   nColumn = nResultCol;
5462282792aSdrh 
547daffd0e5Sdrh   /* If the DISTINCT keyword was present on the SELECT statement
548daffd0e5Sdrh   ** and this row has been seen before, then do not make this row
549daffd0e5Sdrh   ** part of the result.
5502282792aSdrh   */
551ea48eb2eSdrh   if( hasDistinct ){
552f8875400Sdrh     assert( pEList!=0 );
553f8875400Sdrh     assert( pEList->nExpr==nColumn );
554d847eaadSdrh     codeDistinct(pParse, distinct, iContinue, nColumn, regResult);
555ea48eb2eSdrh     if( pOrderBy==0 ){
556b7654111Sdrh       codeOffset(v, p, iContinue);
557ea48eb2eSdrh     }
5582282792aSdrh   }
55982c3d636Sdrh 
5606c8c8ce0Sdanielk1977   if( checkForMultiColumnSelectError(pParse, pDest, pEList->nExpr) ){
561d2b3e23bSdrh     return;
562e305f43fSdrh   }
563e305f43fSdrh 
564c926afbcSdrh   switch( eDest ){
56582c3d636Sdrh     /* In this mode, write each query result to the key of the temporary
56682c3d636Sdrh     ** table iParm.
5672282792aSdrh     */
56813449892Sdrh #ifndef SQLITE_OMIT_COMPOUND_SELECT
569c926afbcSdrh     case SRT_Union: {
5709cbf3425Sdrh       int r1;
5719cbf3425Sdrh       r1 = sqlite3GetTempReg(pParse);
572d847eaadSdrh       sqlite3VdbeAddOp3(v, OP_MakeRecord, regResult, nColumn, r1);
5739cbf3425Sdrh       sqlite3VdbeAddOp2(v, OP_IdxInsert, iParm, r1);
5749cbf3425Sdrh       sqlite3ReleaseTempReg(pParse, r1);
575c926afbcSdrh       break;
576c926afbcSdrh     }
57782c3d636Sdrh 
57882c3d636Sdrh     /* Construct a record from the query result, but instead of
57982c3d636Sdrh     ** saving that record, use it as a key to delete elements from
58082c3d636Sdrh     ** the temporary table iParm.
58182c3d636Sdrh     */
582c926afbcSdrh     case SRT_Except: {
583e14006d0Sdrh       sqlite3VdbeAddOp3(v, OP_IdxDelete, iParm, regResult, nColumn);
584c926afbcSdrh       break;
585c926afbcSdrh     }
5865338a5f7Sdanielk1977 #endif
5875338a5f7Sdanielk1977 
5885338a5f7Sdanielk1977     /* Store the result as data using a unique key.
5895338a5f7Sdanielk1977     */
5905338a5f7Sdanielk1977     case SRT_Table:
591b9bb7c18Sdrh     case SRT_EphemTab: {
592b7654111Sdrh       int r1 = sqlite3GetTempReg(pParse);
593d847eaadSdrh       sqlite3VdbeAddOp3(v, OP_MakeRecord, regResult, nColumn, r1);
5945338a5f7Sdanielk1977       if( pOrderBy ){
595b7654111Sdrh         pushOntoSorter(pParse, pOrderBy, p, r1);
5965338a5f7Sdanielk1977       }else{
597b7654111Sdrh         int r2 = sqlite3GetTempReg(pParse);
598b7654111Sdrh         sqlite3VdbeAddOp2(v, OP_NewRowid, iParm, r2);
599b7654111Sdrh         sqlite3VdbeAddOp3(v, OP_Insert, iParm, r1, r2);
600b7654111Sdrh         sqlite3VdbeChangeP5(v, OPFLAG_APPEND);
601b7654111Sdrh         sqlite3ReleaseTempReg(pParse, r2);
6025338a5f7Sdanielk1977       }
603b7654111Sdrh       sqlite3ReleaseTempReg(pParse, r1);
6045338a5f7Sdanielk1977       break;
6055338a5f7Sdanielk1977     }
6062282792aSdrh 
60793758c8dSdanielk1977 #ifndef SQLITE_OMIT_SUBQUERY
6082282792aSdrh     /* If we are creating a set for an "expr IN (SELECT ...)" construct,
6092282792aSdrh     ** then there should be a single item on the stack.  Write this
6102282792aSdrh     ** item into the set table with bogus data.
6112282792aSdrh     */
612c926afbcSdrh     case SRT_Set: {
613967e8b73Sdrh       assert( nColumn==1 );
6146c8c8ce0Sdanielk1977       p->affinity = sqlite3CompareAffinity(pEList->a[0].pExpr, pDest->affinity);
615c926afbcSdrh       if( pOrderBy ){
616de941c60Sdrh         /* At first glance you would think we could optimize out the
617de941c60Sdrh         ** ORDER BY in this case since the order of entries in the set
618de941c60Sdrh         ** does not matter.  But there might be a LIMIT clause, in which
619de941c60Sdrh         ** case the order does matter */
620d847eaadSdrh         pushOntoSorter(pParse, pOrderBy, p, regResult);
621c926afbcSdrh       }else{
622b7654111Sdrh         int r1 = sqlite3GetTempReg(pParse);
623d847eaadSdrh         sqlite3VdbeAddOp4(v, OP_MakeRecord, regResult, 1, r1, &p->affinity, 1);
624da250ea5Sdrh         sqlite3ExprCacheAffinityChange(pParse, regResult, 1);
625b7654111Sdrh         sqlite3VdbeAddOp2(v, OP_IdxInsert, iParm, r1);
626b7654111Sdrh         sqlite3ReleaseTempReg(pParse, r1);
627c926afbcSdrh       }
628c926afbcSdrh       break;
629c926afbcSdrh     }
63082c3d636Sdrh 
631504b6989Sdrh     /* If any row exist in the result set, record that fact and abort.
632ec7429aeSdrh     */
633ec7429aeSdrh     case SRT_Exists: {
6344c583128Sdrh       sqlite3VdbeAddOp2(v, OP_Integer, 1, iParm);
635ec7429aeSdrh       /* The LIMIT clause will terminate the loop for us */
636ec7429aeSdrh       break;
637ec7429aeSdrh     }
638ec7429aeSdrh 
6392282792aSdrh     /* If this is a scalar select that is part of an expression, then
6402282792aSdrh     ** store the results in the appropriate memory cell and break out
6412282792aSdrh     ** of the scan loop.
6422282792aSdrh     */
643c926afbcSdrh     case SRT_Mem: {
644967e8b73Sdrh       assert( nColumn==1 );
645c926afbcSdrh       if( pOrderBy ){
646d847eaadSdrh         pushOntoSorter(pParse, pOrderBy, p, regResult);
647c926afbcSdrh       }else{
648b21e7c70Sdrh         sqlite3ExprCodeMove(pParse, regResult, iParm, 1);
649ec7429aeSdrh         /* The LIMIT clause will jump out of the loop for us */
650c926afbcSdrh       }
651c926afbcSdrh       break;
652c926afbcSdrh     }
65393758c8dSdanielk1977 #endif /* #ifndef SQLITE_OMIT_SUBQUERY */
6542282792aSdrh 
655c182d163Sdrh     /* Send the data to the callback function or to a subroutine.  In the
656c182d163Sdrh     ** case of a subroutine, the subroutine itself is responsible for
657c182d163Sdrh     ** popping the data from the stack.
658f46f905aSdrh     */
659e00ee6ebSdrh     case SRT_Coroutine:
6607d10d5a6Sdrh     case SRT_Output: {
661f46f905aSdrh       if( pOrderBy ){
662b7654111Sdrh         int r1 = sqlite3GetTempReg(pParse);
663d847eaadSdrh         sqlite3VdbeAddOp3(v, OP_MakeRecord, regResult, nColumn, r1);
664b7654111Sdrh         pushOntoSorter(pParse, pOrderBy, p, r1);
665b7654111Sdrh         sqlite3ReleaseTempReg(pParse, r1);
666e00ee6ebSdrh       }else if( eDest==SRT_Coroutine ){
66792b01d53Sdrh         sqlite3VdbeAddOp1(v, OP_Yield, pDest->iParm);
668c182d163Sdrh       }else{
669d847eaadSdrh         sqlite3VdbeAddOp2(v, OP_ResultRow, regResult, nColumn);
670da250ea5Sdrh         sqlite3ExprCacheAffinityChange(pParse, regResult, nColumn);
671ac82fcf5Sdrh       }
672142e30dfSdrh       break;
673142e30dfSdrh     }
674142e30dfSdrh 
6756a67fe8eSdanielk1977 #if !defined(SQLITE_OMIT_TRIGGER)
676d7489c39Sdrh     /* Discard the results.  This is used for SELECT statements inside
677d7489c39Sdrh     ** the body of a TRIGGER.  The purpose of such selects is to call
678d7489c39Sdrh     ** user-defined functions that have side effects.  We do not care
679d7489c39Sdrh     ** about the actual results of the select.
680d7489c39Sdrh     */
681c926afbcSdrh     default: {
682f46f905aSdrh       assert( eDest==SRT_Discard );
683c926afbcSdrh       break;
684c926afbcSdrh     }
68593758c8dSdanielk1977 #endif
686c926afbcSdrh   }
687ec7429aeSdrh 
688ec7429aeSdrh   /* Jump to the end of the loop if the LIMIT is reached.
689ec7429aeSdrh   */
690e49b146fSdrh   if( p->iLimit ){
691e49b146fSdrh     assert( pOrderBy==0 );  /* If there is an ORDER BY, the call to
692e49b146fSdrh                             ** pushOntoSorter() would have cleared p->iLimit */
6938558cde1Sdrh     sqlite3VdbeAddOp2(v, OP_AddImm, p->iLimit, -1);
6943c84ddffSdrh     sqlite3VdbeAddOp2(v, OP_IfZero, p->iLimit, iBreak);
695ec7429aeSdrh   }
69682c3d636Sdrh }
69782c3d636Sdrh 
69882c3d636Sdrh /*
699dece1a84Sdrh ** Given an expression list, generate a KeyInfo structure that records
700dece1a84Sdrh ** the collating sequence for each expression in that expression list.
701dece1a84Sdrh **
7020342b1f5Sdrh ** If the ExprList is an ORDER BY or GROUP BY clause then the resulting
7030342b1f5Sdrh ** KeyInfo structure is appropriate for initializing a virtual index to
7040342b1f5Sdrh ** implement that clause.  If the ExprList is the result set of a SELECT
7050342b1f5Sdrh ** then the KeyInfo structure is appropriate for initializing a virtual
7060342b1f5Sdrh ** index to implement a DISTINCT test.
7070342b1f5Sdrh **
708dece1a84Sdrh ** Space to hold the KeyInfo structure is obtain from malloc.  The calling
709dece1a84Sdrh ** function is responsible for seeing that this structure is eventually
71066a5167bSdrh ** freed.  Add the KeyInfo structure to the P4 field of an opcode using
71166a5167bSdrh ** P4_KEYINFO_HANDOFF is the usual way of dealing with this.
712dece1a84Sdrh */
713dece1a84Sdrh static KeyInfo *keyInfoFromExprList(Parse *pParse, ExprList *pList){
714dece1a84Sdrh   sqlite3 *db = pParse->db;
715dece1a84Sdrh   int nExpr;
716dece1a84Sdrh   KeyInfo *pInfo;
717dece1a84Sdrh   struct ExprList_item *pItem;
718dece1a84Sdrh   int i;
719dece1a84Sdrh 
720dece1a84Sdrh   nExpr = pList->nExpr;
72117435752Sdrh   pInfo = sqlite3DbMallocZero(db, sizeof(*pInfo) + nExpr*(sizeof(CollSeq*)+1) );
722dece1a84Sdrh   if( pInfo ){
7232646da7eSdrh     pInfo->aSortOrder = (u8*)&pInfo->aColl[nExpr];
724ea678832Sdrh     pInfo->nField = (u16)nExpr;
72514db2665Sdanielk1977     pInfo->enc = ENC(db);
7262aca5846Sdrh     pInfo->db = db;
727dece1a84Sdrh     for(i=0, pItem=pList->a; i<nExpr; i++, pItem++){
728dece1a84Sdrh       CollSeq *pColl;
729dece1a84Sdrh       pColl = sqlite3ExprCollSeq(pParse, pItem->pExpr);
730dece1a84Sdrh       if( !pColl ){
731dece1a84Sdrh         pColl = db->pDfltColl;
732dece1a84Sdrh       }
733dece1a84Sdrh       pInfo->aColl[i] = pColl;
734dece1a84Sdrh       pInfo->aSortOrder[i] = pItem->sortOrder;
735dece1a84Sdrh     }
736dece1a84Sdrh   }
737dece1a84Sdrh   return pInfo;
738dece1a84Sdrh }
739dece1a84Sdrh 
740dece1a84Sdrh 
741dece1a84Sdrh /*
742d8bc7086Sdrh ** If the inner loop was generated using a non-null pOrderBy argument,
743d8bc7086Sdrh ** then the results were placed in a sorter.  After the loop is terminated
744d8bc7086Sdrh ** we need to run the sorter and output the results.  The following
745d8bc7086Sdrh ** routine generates the code needed to do that.
746d8bc7086Sdrh */
747c926afbcSdrh static void generateSortTail(
748cdd536f0Sdrh   Parse *pParse,    /* Parsing context */
749c926afbcSdrh   Select *p,        /* The SELECT statement */
750c926afbcSdrh   Vdbe *v,          /* Generate code into this VDBE */
751c926afbcSdrh   int nColumn,      /* Number of columns of data */
7526c8c8ce0Sdanielk1977   SelectDest *pDest /* Write the sorted results here */
753c926afbcSdrh ){
754dc5ea5c7Sdrh   int addrBreak = sqlite3VdbeMakeLabel(v);     /* Jump here to exit loop */
755dc5ea5c7Sdrh   int addrContinue = sqlite3VdbeMakeLabel(v);  /* Jump here for next cycle */
756d8bc7086Sdrh   int addr;
7570342b1f5Sdrh   int iTab;
75861fc595fSdrh   int pseudoTab = 0;
7590342b1f5Sdrh   ExprList *pOrderBy = p->pOrderBy;
760ffbc3088Sdrh 
7616c8c8ce0Sdanielk1977   int eDest = pDest->eDest;
7626c8c8ce0Sdanielk1977   int iParm = pDest->iParm;
7636c8c8ce0Sdanielk1977 
7642d401ab8Sdrh   int regRow;
7652d401ab8Sdrh   int regRowid;
7662d401ab8Sdrh 
7679d2985c7Sdrh   iTab = pOrderBy->iECursor;
7687d10d5a6Sdrh   if( eDest==SRT_Output || eDest==SRT_Coroutine ){
769cdd536f0Sdrh     pseudoTab = pParse->nTab++;
770d336e222Sdanielk1977     sqlite3VdbeAddOp3(v, OP_OpenPseudo, pseudoTab, eDest==SRT_Output, nColumn);
771cdd536f0Sdrh   }
772dc5ea5c7Sdrh   addr = 1 + sqlite3VdbeAddOp2(v, OP_Sort, iTab, addrBreak);
773dc5ea5c7Sdrh   codeOffset(v, p, addrContinue);
7742d401ab8Sdrh   regRow = sqlite3GetTempReg(pParse);
7752d401ab8Sdrh   regRowid = sqlite3GetTempReg(pParse);
7762d401ab8Sdrh   sqlite3VdbeAddOp3(v, OP_Column, iTab, pOrderBy->nExpr + 1, regRow);
777c926afbcSdrh   switch( eDest ){
778c926afbcSdrh     case SRT_Table:
779b9bb7c18Sdrh     case SRT_EphemTab: {
7801c767f0dSdrh       testcase( eDest==SRT_Table );
7811c767f0dSdrh       testcase( eDest==SRT_EphemTab );
7822d401ab8Sdrh       sqlite3VdbeAddOp2(v, OP_NewRowid, iParm, regRowid);
7832d401ab8Sdrh       sqlite3VdbeAddOp3(v, OP_Insert, iParm, regRow, regRowid);
7842d401ab8Sdrh       sqlite3VdbeChangeP5(v, OPFLAG_APPEND);
785c926afbcSdrh       break;
786c926afbcSdrh     }
78793758c8dSdanielk1977 #ifndef SQLITE_OMIT_SUBQUERY
788c926afbcSdrh     case SRT_Set: {
789c926afbcSdrh       assert( nColumn==1 );
790a7a8e14bSdanielk1977       sqlite3VdbeAddOp4(v, OP_MakeRecord, regRow, 1, regRowid, &p->affinity, 1);
791da250ea5Sdrh       sqlite3ExprCacheAffinityChange(pParse, regRow, 1);
792a7a8e14bSdanielk1977       sqlite3VdbeAddOp2(v, OP_IdxInsert, iParm, regRowid);
793c926afbcSdrh       break;
794c926afbcSdrh     }
795c926afbcSdrh     case SRT_Mem: {
796c926afbcSdrh       assert( nColumn==1 );
797b21e7c70Sdrh       sqlite3ExprCodeMove(pParse, regRow, iParm, 1);
798ec7429aeSdrh       /* The LIMIT clause will terminate the loop for us */
799c926afbcSdrh       break;
800c926afbcSdrh     }
80193758c8dSdanielk1977 #endif
8027d10d5a6Sdrh     case SRT_Output:
803e00ee6ebSdrh     case SRT_Coroutine: {
804ac82fcf5Sdrh       int i;
8051c767f0dSdrh       testcase( eDest==SRT_Output );
8061c767f0dSdrh       testcase( eDest==SRT_Coroutine );
8072d401ab8Sdrh       sqlite3VdbeAddOp2(v, OP_Integer, 1, regRowid);
8082d401ab8Sdrh       sqlite3VdbeAddOp3(v, OP_Insert, pseudoTab, regRow, regRowid);
809ac82fcf5Sdrh       for(i=0; i<nColumn; i++){
8109882d999Sdanielk1977         assert( regRow!=pDest->iMem+i );
8111013c932Sdrh         sqlite3VdbeAddOp3(v, OP_Column, pseudoTab, i, pDest->iMem+i);
812ac82fcf5Sdrh       }
8137d10d5a6Sdrh       if( eDest==SRT_Output ){
8141013c932Sdrh         sqlite3VdbeAddOp2(v, OP_ResultRow, pDest->iMem, nColumn);
815da250ea5Sdrh         sqlite3ExprCacheAffinityChange(pParse, pDest->iMem, nColumn);
816a9671a22Sdrh       }else{
81792b01d53Sdrh         sqlite3VdbeAddOp1(v, OP_Yield, pDest->iParm);
818ce665cf6Sdrh       }
819ac82fcf5Sdrh       break;
820ac82fcf5Sdrh     }
821c926afbcSdrh     default: {
822f46f905aSdrh       /* Do nothing */
823c926afbcSdrh       break;
824c926afbcSdrh     }
825c926afbcSdrh   }
8262d401ab8Sdrh   sqlite3ReleaseTempReg(pParse, regRow);
8272d401ab8Sdrh   sqlite3ReleaseTempReg(pParse, regRowid);
828ec7429aeSdrh 
829a9671a22Sdrh   /* LIMIT has been implemented by the pushOntoSorter() routine.
830ec7429aeSdrh   */
831a9671a22Sdrh   assert( p->iLimit==0 );
832ec7429aeSdrh 
833ec7429aeSdrh   /* The bottom of the loop
834ec7429aeSdrh   */
835dc5ea5c7Sdrh   sqlite3VdbeResolveLabel(v, addrContinue);
83666a5167bSdrh   sqlite3VdbeAddOp2(v, OP_Next, iTab, addr);
837dc5ea5c7Sdrh   sqlite3VdbeResolveLabel(v, addrBreak);
8387d10d5a6Sdrh   if( eDest==SRT_Output || eDest==SRT_Coroutine ){
83966a5167bSdrh     sqlite3VdbeAddOp2(v, OP_Close, pseudoTab, 0);
840cdd536f0Sdrh   }
841d8bc7086Sdrh }
842d8bc7086Sdrh 
843d8bc7086Sdrh /*
844517eb646Sdanielk1977 ** Return a pointer to a string containing the 'declaration type' of the
845517eb646Sdanielk1977 ** expression pExpr. The string may be treated as static by the caller.
846e78e8284Sdrh **
847955de52cSdanielk1977 ** The declaration type is the exact datatype definition extracted from the
848955de52cSdanielk1977 ** original CREATE TABLE statement if the expression is a column. The
849955de52cSdanielk1977 ** declaration type for a ROWID field is INTEGER. Exactly when an expression
850955de52cSdanielk1977 ** is considered a column can be complex in the presence of subqueries. The
851955de52cSdanielk1977 ** result-set expression in all of the following SELECT statements is
852955de52cSdanielk1977 ** considered a column by this function.
853e78e8284Sdrh **
854955de52cSdanielk1977 **   SELECT col FROM tbl;
855955de52cSdanielk1977 **   SELECT (SELECT col FROM tbl;
856955de52cSdanielk1977 **   SELECT (SELECT col FROM tbl);
857955de52cSdanielk1977 **   SELECT abc FROM (SELECT col AS abc FROM tbl);
858955de52cSdanielk1977 **
859955de52cSdanielk1977 ** The declaration type for any expression other than a column is NULL.
860fcb78a49Sdrh */
861955de52cSdanielk1977 static const char *columnType(
862955de52cSdanielk1977   NameContext *pNC,
863955de52cSdanielk1977   Expr *pExpr,
864955de52cSdanielk1977   const char **pzOriginDb,
865955de52cSdanielk1977   const char **pzOriginTab,
866955de52cSdanielk1977   const char **pzOriginCol
867955de52cSdanielk1977 ){
868955de52cSdanielk1977   char const *zType = 0;
869955de52cSdanielk1977   char const *zOriginDb = 0;
870955de52cSdanielk1977   char const *zOriginTab = 0;
871955de52cSdanielk1977   char const *zOriginCol = 0;
872517eb646Sdanielk1977   int j;
873b3bce662Sdanielk1977   if( pExpr==0 || pNC->pSrcList==0 ) return 0;
8745338a5f7Sdanielk1977 
87500e279d9Sdanielk1977   switch( pExpr->op ){
87630bcf5dbSdrh     case TK_AGG_COLUMN:
87700e279d9Sdanielk1977     case TK_COLUMN: {
878955de52cSdanielk1977       /* The expression is a column. Locate the table the column is being
879955de52cSdanielk1977       ** extracted from in NameContext.pSrcList. This table may be real
880955de52cSdanielk1977       ** database table or a subquery.
881955de52cSdanielk1977       */
882955de52cSdanielk1977       Table *pTab = 0;            /* Table structure column is extracted from */
883955de52cSdanielk1977       Select *pS = 0;             /* Select the column is extracted from */
884955de52cSdanielk1977       int iCol = pExpr->iColumn;  /* Index of column in pTab */
885b3bce662Sdanielk1977       while( pNC && !pTab ){
886b3bce662Sdanielk1977         SrcList *pTabList = pNC->pSrcList;
887b3bce662Sdanielk1977         for(j=0;j<pTabList->nSrc && pTabList->a[j].iCursor!=pExpr->iTable;j++);
888b3bce662Sdanielk1977         if( j<pTabList->nSrc ){
8896a3ea0e6Sdrh           pTab = pTabList->a[j].pTab;
890955de52cSdanielk1977           pS = pTabList->a[j].pSelect;
891b3bce662Sdanielk1977         }else{
892b3bce662Sdanielk1977           pNC = pNC->pNext;
893b3bce662Sdanielk1977         }
894b3bce662Sdanielk1977       }
895955de52cSdanielk1977 
8967e62779aSdrh       if( pTab==0 ){
8977e62779aSdrh         /* FIX ME:
8987e62779aSdrh         ** This can occurs if you have something like "SELECT new.x;" inside
8997e62779aSdrh         ** a trigger.  In other words, if you reference the special "new"
9007e62779aSdrh         ** table in the result set of a select.  We do not have a good way
9017e62779aSdrh         ** to find the actual table type, so call it "TEXT".  This is really
9027e62779aSdrh         ** something of a bug, but I do not know how to fix it.
9037e62779aSdrh         **
9047e62779aSdrh         ** This code does not produce the correct answer - it just prevents
9057e62779aSdrh         ** a segfault.  See ticket #1229.
9067e62779aSdrh         */
9077e62779aSdrh         zType = "TEXT";
9087e62779aSdrh         break;
9097e62779aSdrh       }
910955de52cSdanielk1977 
911b3bce662Sdanielk1977       assert( pTab );
912955de52cSdanielk1977       if( pS ){
913955de52cSdanielk1977         /* The "table" is actually a sub-select or a view in the FROM clause
914955de52cSdanielk1977         ** of the SELECT statement. Return the declaration type and origin
915955de52cSdanielk1977         ** data for the result-set column of the sub-select.
916955de52cSdanielk1977         */
9171c767f0dSdrh         if( ALWAYS(iCol>=0 && iCol<pS->pEList->nExpr) ){
918955de52cSdanielk1977           /* If iCol is less than zero, then the expression requests the
919955de52cSdanielk1977           ** rowid of the sub-select or view. This expression is legal (see
920955de52cSdanielk1977           ** test case misc2.2.2) - it always evaluates to NULL.
921955de52cSdanielk1977           */
922955de52cSdanielk1977           NameContext sNC;
923955de52cSdanielk1977           Expr *p = pS->pEList->a[iCol].pExpr;
924955de52cSdanielk1977           sNC.pSrcList = pS->pSrc;
925955de52cSdanielk1977           sNC.pNext = 0;
926955de52cSdanielk1977           sNC.pParse = pNC->pParse;
927955de52cSdanielk1977           zType = columnType(&sNC, p, &zOriginDb, &zOriginTab, &zOriginCol);
928955de52cSdanielk1977         }
9291c767f0dSdrh       }else if( ALWAYS(pTab->pSchema) ){
930955de52cSdanielk1977         /* A real table */
931955de52cSdanielk1977         assert( !pS );
932fcb78a49Sdrh         if( iCol<0 ) iCol = pTab->iPKey;
933fcb78a49Sdrh         assert( iCol==-1 || (iCol>=0 && iCol<pTab->nCol) );
934fcb78a49Sdrh         if( iCol<0 ){
935fcb78a49Sdrh           zType = "INTEGER";
936955de52cSdanielk1977           zOriginCol = "rowid";
937fcb78a49Sdrh         }else{
938fcb78a49Sdrh           zType = pTab->aCol[iCol].zType;
939955de52cSdanielk1977           zOriginCol = pTab->aCol[iCol].zName;
940955de52cSdanielk1977         }
941955de52cSdanielk1977         zOriginTab = pTab->zName;
942955de52cSdanielk1977         if( pNC->pParse ){
943955de52cSdanielk1977           int iDb = sqlite3SchemaToIndex(pNC->pParse->db, pTab->pSchema);
944955de52cSdanielk1977           zOriginDb = pNC->pParse->db->aDb[iDb].zName;
945955de52cSdanielk1977         }
946fcb78a49Sdrh       }
94700e279d9Sdanielk1977       break;
948736c22b8Sdrh     }
94993758c8dSdanielk1977 #ifndef SQLITE_OMIT_SUBQUERY
95000e279d9Sdanielk1977     case TK_SELECT: {
951955de52cSdanielk1977       /* The expression is a sub-select. Return the declaration type and
952955de52cSdanielk1977       ** origin info for the single column in the result set of the SELECT
953955de52cSdanielk1977       ** statement.
954955de52cSdanielk1977       */
955b3bce662Sdanielk1977       NameContext sNC;
9566ab3a2ecSdanielk1977       Select *pS = pExpr->x.pSelect;
957955de52cSdanielk1977       Expr *p = pS->pEList->a[0].pExpr;
9586ab3a2ecSdanielk1977       assert( ExprHasProperty(pExpr, EP_xIsSelect) );
959955de52cSdanielk1977       sNC.pSrcList = pS->pSrc;
960b3bce662Sdanielk1977       sNC.pNext = pNC;
961955de52cSdanielk1977       sNC.pParse = pNC->pParse;
962955de52cSdanielk1977       zType = columnType(&sNC, p, &zOriginDb, &zOriginTab, &zOriginCol);
96300e279d9Sdanielk1977       break;
964fcb78a49Sdrh     }
96593758c8dSdanielk1977 #endif
96600e279d9Sdanielk1977   }
96700e279d9Sdanielk1977 
968955de52cSdanielk1977   if( pzOriginDb ){
969955de52cSdanielk1977     assert( pzOriginTab && pzOriginCol );
970955de52cSdanielk1977     *pzOriginDb = zOriginDb;
971955de52cSdanielk1977     *pzOriginTab = zOriginTab;
972955de52cSdanielk1977     *pzOriginCol = zOriginCol;
973955de52cSdanielk1977   }
974517eb646Sdanielk1977   return zType;
975517eb646Sdanielk1977 }
976517eb646Sdanielk1977 
977517eb646Sdanielk1977 /*
978517eb646Sdanielk1977 ** Generate code that will tell the VDBE the declaration types of columns
979517eb646Sdanielk1977 ** in the result set.
980517eb646Sdanielk1977 */
981517eb646Sdanielk1977 static void generateColumnTypes(
982517eb646Sdanielk1977   Parse *pParse,      /* Parser context */
983517eb646Sdanielk1977   SrcList *pTabList,  /* List of tables */
984517eb646Sdanielk1977   ExprList *pEList    /* Expressions defining the result set */
985517eb646Sdanielk1977 ){
9863f913576Sdrh #ifndef SQLITE_OMIT_DECLTYPE
987517eb646Sdanielk1977   Vdbe *v = pParse->pVdbe;
988517eb646Sdanielk1977   int i;
989b3bce662Sdanielk1977   NameContext sNC;
990b3bce662Sdanielk1977   sNC.pSrcList = pTabList;
991955de52cSdanielk1977   sNC.pParse = pParse;
992517eb646Sdanielk1977   for(i=0; i<pEList->nExpr; i++){
993517eb646Sdanielk1977     Expr *p = pEList->a[i].pExpr;
9943f913576Sdrh     const char *zType;
9953f913576Sdrh #ifdef SQLITE_ENABLE_COLUMN_METADATA
996955de52cSdanielk1977     const char *zOrigDb = 0;
997955de52cSdanielk1977     const char *zOrigTab = 0;
998955de52cSdanielk1977     const char *zOrigCol = 0;
9993f913576Sdrh     zType = columnType(&sNC, p, &zOrigDb, &zOrigTab, &zOrigCol);
1000955de52cSdanielk1977 
100185b623f2Sdrh     /* The vdbe must make its own copy of the column-type and other
10024b1ae99dSdanielk1977     ** column specific strings, in case the schema is reset before this
10034b1ae99dSdanielk1977     ** virtual machine is deleted.
1004fbcd585fSdanielk1977     */
100510fb749bSdanielk1977     sqlite3VdbeSetColName(v, i, COLNAME_DATABASE, zOrigDb, SQLITE_TRANSIENT);
100610fb749bSdanielk1977     sqlite3VdbeSetColName(v, i, COLNAME_TABLE, zOrigTab, SQLITE_TRANSIENT);
100710fb749bSdanielk1977     sqlite3VdbeSetColName(v, i, COLNAME_COLUMN, zOrigCol, SQLITE_TRANSIENT);
10083f913576Sdrh #else
10093f913576Sdrh     zType = columnType(&sNC, p, 0, 0, 0);
10103f913576Sdrh #endif
101110fb749bSdanielk1977     sqlite3VdbeSetColName(v, i, COLNAME_DECLTYPE, zType, SQLITE_TRANSIENT);
1012fcb78a49Sdrh   }
10133f913576Sdrh #endif /* SQLITE_OMIT_DECLTYPE */
1014fcb78a49Sdrh }
1015fcb78a49Sdrh 
1016fcb78a49Sdrh /*
1017fcb78a49Sdrh ** Generate code that will tell the VDBE the names of columns
1018fcb78a49Sdrh ** in the result set.  This information is used to provide the
1019fcabd464Sdrh ** azCol[] values in the callback.
102082c3d636Sdrh */
1021832508b7Sdrh static void generateColumnNames(
1022832508b7Sdrh   Parse *pParse,      /* Parser context */
1023ad3cab52Sdrh   SrcList *pTabList,  /* List of tables */
1024832508b7Sdrh   ExprList *pEList    /* Expressions defining the result set */
1025832508b7Sdrh ){
1026d8bc7086Sdrh   Vdbe *v = pParse->pVdbe;
10276a3ea0e6Sdrh   int i, j;
10289bb575fdSdrh   sqlite3 *db = pParse->db;
1029fcabd464Sdrh   int fullNames, shortNames;
1030fcabd464Sdrh 
1031fe2093d7Sdrh #ifndef SQLITE_OMIT_EXPLAIN
10323cf86063Sdanielk1977   /* If this is an EXPLAIN, skip this step */
10333cf86063Sdanielk1977   if( pParse->explain ){
103461de0d1bSdanielk1977     return;
10353cf86063Sdanielk1977   }
10365338a5f7Sdanielk1977 #endif
10373cf86063Sdanielk1977 
1038d6502758Sdrh   assert( v!=0 );
1039e2f02bacSdrh   if( pParse->colNamesSet || NEVER(v==0) || db->mallocFailed ) return;
1040d8bc7086Sdrh   pParse->colNamesSet = 1;
1041fcabd464Sdrh   fullNames = (db->flags & SQLITE_FullColNames)!=0;
1042fcabd464Sdrh   shortNames = (db->flags & SQLITE_ShortColNames)!=0;
104322322fd4Sdanielk1977   sqlite3VdbeSetNumCols(v, pEList->nExpr);
104482c3d636Sdrh   for(i=0; i<pEList->nExpr; i++){
104582c3d636Sdrh     Expr *p;
10465a38705eSdrh     p = pEList->a[i].pExpr;
10475a38705eSdrh     if( p==0 ) continue;
104882c3d636Sdrh     if( pEList->a[i].zName ){
104982c3d636Sdrh       char *zName = pEList->a[i].zName;
105010fb749bSdanielk1977       sqlite3VdbeSetColName(v, i, COLNAME_NAME, zName, SQLITE_TRANSIENT);
1051f018cc2eSdrh     }else if( (p->op==TK_COLUMN || p->op==TK_AGG_COLUMN) && pTabList ){
10526a3ea0e6Sdrh       Table *pTab;
105397665873Sdrh       char *zCol;
10548aff1015Sdrh       int iCol = p->iColumn;
1055e2f02bacSdrh       for(j=0; ALWAYS(j<pTabList->nSrc); j++){
1056e2f02bacSdrh         if( pTabList->a[j].iCursor==p->iTable ) break;
1057e2f02bacSdrh       }
10586a3ea0e6Sdrh       assert( j<pTabList->nSrc );
10596a3ea0e6Sdrh       pTab = pTabList->a[j].pTab;
10608aff1015Sdrh       if( iCol<0 ) iCol = pTab->iPKey;
106197665873Sdrh       assert( iCol==-1 || (iCol>=0 && iCol<pTab->nCol) );
1062b1363206Sdrh       if( iCol<0 ){
106347a6db2bSdrh         zCol = "rowid";
1064b1363206Sdrh       }else{
1065b1363206Sdrh         zCol = pTab->aCol[iCol].zName;
1066b1363206Sdrh       }
1067e49b146fSdrh       if( !shortNames && !fullNames ){
106810fb749bSdanielk1977         sqlite3VdbeSetColName(v, i, COLNAME_NAME,
106910fb749bSdanielk1977             sqlite3DbStrNDup(db, (char*)p->span.z, p->span.n), SQLITE_DYNAMIC);
10701c767f0dSdrh       }else if( fullNames ){
107182c3d636Sdrh         char *zName = 0;
10721c767f0dSdrh         zName = sqlite3MPrintf(db, "%s.%s", pTab->zName, zCol);
107310fb749bSdanielk1977         sqlite3VdbeSetColName(v, i, COLNAME_NAME, zName, SQLITE_DYNAMIC);
107482c3d636Sdrh       }else{
107510fb749bSdanielk1977         sqlite3VdbeSetColName(v, i, COLNAME_NAME, zCol, SQLITE_TRANSIENT);
107682c3d636Sdrh       }
10771bee3d7bSdrh     }else{
107810fb749bSdanielk1977       sqlite3VdbeSetColName(v, i, COLNAME_NAME,
107910fb749bSdanielk1977           sqlite3DbStrNDup(db, (char*)p->span.z, p->span.n), SQLITE_DYNAMIC);
108082c3d636Sdrh     }
108182c3d636Sdrh   }
108276d505baSdanielk1977   generateColumnTypes(pParse, pTabList, pEList);
10835080aaa7Sdrh }
108482c3d636Sdrh 
108593758c8dSdanielk1977 #ifndef SQLITE_OMIT_COMPOUND_SELECT
108682c3d636Sdrh /*
1087d8bc7086Sdrh ** Name of the connection operator, used for error messages.
1088d8bc7086Sdrh */
1089d8bc7086Sdrh static const char *selectOpName(int id){
1090d8bc7086Sdrh   char *z;
1091d8bc7086Sdrh   switch( id ){
1092d8bc7086Sdrh     case TK_ALL:       z = "UNION ALL";   break;
1093d8bc7086Sdrh     case TK_INTERSECT: z = "INTERSECT";   break;
1094d8bc7086Sdrh     case TK_EXCEPT:    z = "EXCEPT";      break;
1095d8bc7086Sdrh     default:           z = "UNION";       break;
1096d8bc7086Sdrh   }
1097d8bc7086Sdrh   return z;
1098d8bc7086Sdrh }
109993758c8dSdanielk1977 #endif /* SQLITE_OMIT_COMPOUND_SELECT */
1100d8bc7086Sdrh 
1101d8bc7086Sdrh /*
11027d10d5a6Sdrh ** Given a an expression list (which is really the list of expressions
11037d10d5a6Sdrh ** that form the result set of a SELECT statement) compute appropriate
11047d10d5a6Sdrh ** column names for a table that would hold the expression list.
11057d10d5a6Sdrh **
11067d10d5a6Sdrh ** All column names will be unique.
11077d10d5a6Sdrh **
11087d10d5a6Sdrh ** Only the column names are computed.  Column.zType, Column.zColl,
11097d10d5a6Sdrh ** and other fields of Column are zeroed.
11107d10d5a6Sdrh **
11117d10d5a6Sdrh ** Return SQLITE_OK on success.  If a memory allocation error occurs,
11127d10d5a6Sdrh ** store NULL in *paCol and 0 in *pnCol and return SQLITE_NOMEM.
1113315555caSdrh */
11147d10d5a6Sdrh static int selectColumnsFromExprList(
11157d10d5a6Sdrh   Parse *pParse,          /* Parsing context */
11167d10d5a6Sdrh   ExprList *pEList,       /* Expr list from which to derive column names */
11177d10d5a6Sdrh   int *pnCol,             /* Write the number of columns here */
11187d10d5a6Sdrh   Column **paCol          /* Write the new column list here */
11197d10d5a6Sdrh ){
1120dc5ea5c7Sdrh   sqlite3 *db = pParse->db;   /* Database connection */
1121dc5ea5c7Sdrh   int i, j;                   /* Loop counters */
1122dc5ea5c7Sdrh   int cnt;                    /* Index added to make the name unique */
1123dc5ea5c7Sdrh   Column *aCol, *pCol;        /* For looping over result columns */
1124dc5ea5c7Sdrh   int nCol;                   /* Number of columns in the result set */
1125dc5ea5c7Sdrh   Expr *p;                    /* Expression for a single result column */
1126dc5ea5c7Sdrh   char *zName;                /* Column name */
1127dc5ea5c7Sdrh   int nName;                  /* Size of name in zName[] */
112879d5f63fSdrh 
11297d10d5a6Sdrh   *pnCol = nCol = pEList->nExpr;
11307d10d5a6Sdrh   aCol = *paCol = sqlite3DbMallocZero(db, sizeof(aCol[0])*nCol);
11317d10d5a6Sdrh   if( aCol==0 ) return SQLITE_NOMEM;
11327d10d5a6Sdrh   for(i=0, pCol=aCol; i<nCol; i++, pCol++){
113379d5f63fSdrh     /* Get an appropriate name for the column
113479d5f63fSdrh     */
113579d5f63fSdrh     p = pEList->a[i].pExpr;
1136290c1948Sdrh     assert( p->pRight==0 || p->pRight->token.z==0 || p->pRight->token.z[0]!=0 );
113791bb0eedSdrh     if( (zName = pEList->a[i].zName)!=0 ){
113879d5f63fSdrh       /* If the column contains an "AS <name>" phrase, use <name> as the name */
113917435752Sdrh       zName = sqlite3DbStrDup(db, zName);
11407d10d5a6Sdrh     }else{
1141dc5ea5c7Sdrh       Expr *pColExpr = p;  /* The expression that is the result column name */
1142dc5ea5c7Sdrh       Table *pTab;         /* Table associated with this expression */
1143dc5ea5c7Sdrh       while( pColExpr->op==TK_DOT ) pColExpr = pColExpr->pRight;
1144dc5ea5c7Sdrh       if( pColExpr->op==TK_COLUMN && (pTab = pColExpr->pTab)!=0 ){
114593a960a0Sdrh         /* For columns use the column name name */
1146dc5ea5c7Sdrh         int iCol = pColExpr->iColumn;
1147f0209f74Sdrh         if( iCol<0 ) iCol = pTab->iPKey;
1148f0209f74Sdrh         zName = sqlite3MPrintf(db, "%s",
1149f0209f74Sdrh                  iCol>=0 ? pTab->aCol[iCol].zName : "rowid");
115093a960a0Sdrh       }else{
115179d5f63fSdrh         /* Use the original text of the column expression as its name */
1152dc5ea5c7Sdrh         Token *pToken = (pColExpr->span.z?&pColExpr->span:&pColExpr->token);
1153f7300753Sdanielk1977         zName = sqlite3MPrintf(db, "%T", pToken);
11547d10d5a6Sdrh       }
115522f70c32Sdrh     }
11567ce72f69Sdrh     if( db->mallocFailed ){
1157633e6d57Sdrh       sqlite3DbFree(db, zName);
11587ce72f69Sdrh       break;
1159dd5b2fa5Sdrh     }
116079d5f63fSdrh 
116179d5f63fSdrh     /* Make sure the column name is unique.  If the name is not unique,
116279d5f63fSdrh     ** append a integer to the name so that it becomes unique.
116379d5f63fSdrh     */
1164ea678832Sdrh     nName = sqlite3Strlen30(zName);
116579d5f63fSdrh     for(j=cnt=0; j<i; j++){
116679d5f63fSdrh       if( sqlite3StrICmp(aCol[j].zName, zName)==0 ){
1167633e6d57Sdrh         char *zNewName;
11682564ef97Sdrh         zName[nName] = 0;
1169633e6d57Sdrh         zNewName = sqlite3MPrintf(db, "%s:%d", zName, ++cnt);
1170633e6d57Sdrh         sqlite3DbFree(db, zName);
1171633e6d57Sdrh         zName = zNewName;
117279d5f63fSdrh         j = -1;
1173dd5b2fa5Sdrh         if( zName==0 ) break;
117479d5f63fSdrh       }
117579d5f63fSdrh     }
117691bb0eedSdrh     pCol->zName = zName;
11777d10d5a6Sdrh   }
11787d10d5a6Sdrh   if( db->mallocFailed ){
11797d10d5a6Sdrh     for(j=0; j<i; j++){
11807d10d5a6Sdrh       sqlite3DbFree(db, aCol[j].zName);
11817d10d5a6Sdrh     }
11827d10d5a6Sdrh     sqlite3DbFree(db, aCol);
11837d10d5a6Sdrh     *paCol = 0;
11847d10d5a6Sdrh     *pnCol = 0;
11857d10d5a6Sdrh     return SQLITE_NOMEM;
11867d10d5a6Sdrh   }
11877d10d5a6Sdrh   return SQLITE_OK;
11887d10d5a6Sdrh }
1189e014a838Sdanielk1977 
11907d10d5a6Sdrh /*
11917d10d5a6Sdrh ** Add type and collation information to a column list based on
11927d10d5a6Sdrh ** a SELECT statement.
11937d10d5a6Sdrh **
11947d10d5a6Sdrh ** The column list presumably came from selectColumnNamesFromExprList().
11957d10d5a6Sdrh ** The column list has only names, not types or collations.  This
11967d10d5a6Sdrh ** routine goes through and adds the types and collations.
11977d10d5a6Sdrh **
1198b08a67a7Sshane ** This routine requires that all identifiers in the SELECT
11997d10d5a6Sdrh ** statement be resolved.
120079d5f63fSdrh */
12017d10d5a6Sdrh static void selectAddColumnTypeAndCollation(
12027d10d5a6Sdrh   Parse *pParse,        /* Parsing contexts */
12037d10d5a6Sdrh   int nCol,             /* Number of columns */
12047d10d5a6Sdrh   Column *aCol,         /* List of columns */
12057d10d5a6Sdrh   Select *pSelect       /* SELECT used to determine types and collations */
12067d10d5a6Sdrh ){
12077d10d5a6Sdrh   sqlite3 *db = pParse->db;
12087d10d5a6Sdrh   NameContext sNC;
12097d10d5a6Sdrh   Column *pCol;
12107d10d5a6Sdrh   CollSeq *pColl;
12117d10d5a6Sdrh   int i;
12127d10d5a6Sdrh   Expr *p;
12137d10d5a6Sdrh   struct ExprList_item *a;
12147d10d5a6Sdrh 
12157d10d5a6Sdrh   assert( pSelect!=0 );
12167d10d5a6Sdrh   assert( (pSelect->selFlags & SF_Resolved)!=0 );
12177d10d5a6Sdrh   assert( nCol==pSelect->pEList->nExpr || db->mallocFailed );
12187d10d5a6Sdrh   if( db->mallocFailed ) return;
1219c43e8be8Sdrh   memset(&sNC, 0, sizeof(sNC));
1220b3bce662Sdanielk1977   sNC.pSrcList = pSelect->pSrc;
12217d10d5a6Sdrh   a = pSelect->pEList->a;
12227d10d5a6Sdrh   for(i=0, pCol=aCol; i<nCol; i++, pCol++){
12237d10d5a6Sdrh     p = a[i].pExpr;
12247d10d5a6Sdrh     pCol->zType = sqlite3DbStrDup(db, columnType(&sNC, p, 0, 0, 0));
1225c60e9b82Sdanielk1977     pCol->affinity = sqlite3ExprAffinity(p);
1226*c4a64facSdrh     if( pCol->affinity==0 ) pCol->affinity = SQLITE_AFF_NONE;
1227b3bf556eSdanielk1977     pColl = sqlite3ExprCollSeq(pParse, p);
1228b3bf556eSdanielk1977     if( pColl ){
122917435752Sdrh       pCol->zColl = sqlite3DbStrDup(db, pColl->zName);
12300202b29eSdanielk1977     }
123122f70c32Sdrh   }
12327d10d5a6Sdrh }
12337d10d5a6Sdrh 
12347d10d5a6Sdrh /*
12357d10d5a6Sdrh ** Given a SELECT statement, generate a Table structure that describes
12367d10d5a6Sdrh ** the result set of that SELECT.
12377d10d5a6Sdrh */
12387d10d5a6Sdrh Table *sqlite3ResultSetOfSelect(Parse *pParse, Select *pSelect){
12397d10d5a6Sdrh   Table *pTab;
12407d10d5a6Sdrh   sqlite3 *db = pParse->db;
12417d10d5a6Sdrh   int savedFlags;
12427d10d5a6Sdrh 
12437d10d5a6Sdrh   savedFlags = db->flags;
12447d10d5a6Sdrh   db->flags &= ~SQLITE_FullColNames;
12457d10d5a6Sdrh   db->flags |= SQLITE_ShortColNames;
12467d10d5a6Sdrh   sqlite3SelectPrep(pParse, pSelect, 0);
12477d10d5a6Sdrh   if( pParse->nErr ) return 0;
12487d10d5a6Sdrh   while( pSelect->pPrior ) pSelect = pSelect->pPrior;
12497d10d5a6Sdrh   db->flags = savedFlags;
12507d10d5a6Sdrh   pTab = sqlite3DbMallocZero(db, sizeof(Table) );
12517d10d5a6Sdrh   if( pTab==0 ){
12527d10d5a6Sdrh     return 0;
12537d10d5a6Sdrh   }
1254d9da78a2Sdrh   pTab->dbMem = db->lookaside.bEnabled ? db : 0;
12557d10d5a6Sdrh   pTab->nRef = 1;
12567d10d5a6Sdrh   pTab->zName = 0;
12577d10d5a6Sdrh   selectColumnsFromExprList(pParse, pSelect->pEList, &pTab->nCol, &pTab->aCol);
12587d10d5a6Sdrh   selectAddColumnTypeAndCollation(pParse, pTab->nCol, pTab->aCol, pSelect);
125922f70c32Sdrh   pTab->iPKey = -1;
12607ce72f69Sdrh   if( db->mallocFailed ){
12617ce72f69Sdrh     sqlite3DeleteTable(pTab);
12627ce72f69Sdrh     return 0;
12637ce72f69Sdrh   }
126422f70c32Sdrh   return pTab;
126522f70c32Sdrh }
126622f70c32Sdrh 
126722f70c32Sdrh /*
1268d8bc7086Sdrh ** Get a VDBE for the given parser context.  Create a new one if necessary.
1269d8bc7086Sdrh ** If an error occurs, return NULL and leave a message in pParse.
1270d8bc7086Sdrh */
12714adee20fSdanielk1977 Vdbe *sqlite3GetVdbe(Parse *pParse){
1272d8bc7086Sdrh   Vdbe *v = pParse->pVdbe;
1273d8bc7086Sdrh   if( v==0 ){
12744adee20fSdanielk1977     v = pParse->pVdbe = sqlite3VdbeCreate(pParse->db);
1275949f9cd5Sdrh #ifndef SQLITE_OMIT_TRACE
1276949f9cd5Sdrh     if( v ){
1277949f9cd5Sdrh       sqlite3VdbeAddOp0(v, OP_Trace);
1278949f9cd5Sdrh     }
1279949f9cd5Sdrh #endif
1280d8bc7086Sdrh   }
1281d8bc7086Sdrh   return v;
1282d8bc7086Sdrh }
1283d8bc7086Sdrh 
128415007a99Sdrh 
1285d8bc7086Sdrh /*
12867b58daeaSdrh ** Compute the iLimit and iOffset fields of the SELECT based on the
1287ec7429aeSdrh ** pLimit and pOffset expressions.  pLimit and pOffset hold the expressions
12887b58daeaSdrh ** that appear in the original SQL statement after the LIMIT and OFFSET
1289a2dc3b1aSdanielk1977 ** keywords.  Or NULL if those keywords are omitted. iLimit and iOffset
1290a2dc3b1aSdanielk1977 ** are the integer memory register numbers for counters used to compute
1291a2dc3b1aSdanielk1977 ** the limit and offset.  If there is no limit and/or offset, then
1292a2dc3b1aSdanielk1977 ** iLimit and iOffset are negative.
12937b58daeaSdrh **
1294d59ba6ceSdrh ** This routine changes the values of iLimit and iOffset only if
1295ec7429aeSdrh ** a limit or offset is defined by pLimit and pOffset.  iLimit and
12967b58daeaSdrh ** iOffset should have been preset to appropriate default values
12977b58daeaSdrh ** (usually but not always -1) prior to calling this routine.
1298ec7429aeSdrh ** Only if pLimit!=0 or pOffset!=0 do the limit registers get
12997b58daeaSdrh ** redefined.  The UNION ALL operator uses this property to force
13007b58daeaSdrh ** the reuse of the same limit and offset registers across multiple
13017b58daeaSdrh ** SELECT statements.
13027b58daeaSdrh */
1303ec7429aeSdrh static void computeLimitRegisters(Parse *pParse, Select *p, int iBreak){
130402afc861Sdrh   Vdbe *v = 0;
130502afc861Sdrh   int iLimit = 0;
130615007a99Sdrh   int iOffset;
1307b7654111Sdrh   int addr1;
13080acb7e48Sdrh   if( p->iLimit ) return;
130915007a99Sdrh 
13107b58daeaSdrh   /*
13117b58daeaSdrh   ** "LIMIT -1" always shows all rows.  There is some
13127b58daeaSdrh   ** contraversy about what the correct behavior should be.
13137b58daeaSdrh   ** The current implementation interprets "LIMIT 0" to mean
13147b58daeaSdrh   ** no rows.
13157b58daeaSdrh   */
1316ceea3321Sdrh   sqlite3ExprCacheClear(pParse);
1317a2dc3b1aSdanielk1977   if( p->pLimit ){
13180a07c107Sdrh     p->iLimit = iLimit = ++pParse->nMem;
131915007a99Sdrh     v = sqlite3GetVdbe(pParse);
13207b58daeaSdrh     if( v==0 ) return;
1321b7654111Sdrh     sqlite3ExprCode(pParse, p->pLimit, iLimit);
1322b7654111Sdrh     sqlite3VdbeAddOp1(v, OP_MustBeInt, iLimit);
1323d4e70ebdSdrh     VdbeComment((v, "LIMIT counter"));
13243c84ddffSdrh     sqlite3VdbeAddOp2(v, OP_IfZero, iLimit, iBreak);
13257b58daeaSdrh   }
1326a2dc3b1aSdanielk1977   if( p->pOffset ){
13270a07c107Sdrh     p->iOffset = iOffset = ++pParse->nMem;
1328b7654111Sdrh     if( p->pLimit ){
1329b7654111Sdrh       pParse->nMem++;   /* Allocate an extra register for limit+offset */
1330b7654111Sdrh     }
133115007a99Sdrh     v = sqlite3GetVdbe(pParse);
13327b58daeaSdrh     if( v==0 ) return;
1333b7654111Sdrh     sqlite3ExprCode(pParse, p->pOffset, iOffset);
1334b7654111Sdrh     sqlite3VdbeAddOp1(v, OP_MustBeInt, iOffset);
1335d4e70ebdSdrh     VdbeComment((v, "OFFSET counter"));
13363c84ddffSdrh     addr1 = sqlite3VdbeAddOp1(v, OP_IfPos, iOffset);
1337b7654111Sdrh     sqlite3VdbeAddOp2(v, OP_Integer, 0, iOffset);
133815007a99Sdrh     sqlite3VdbeJumpHere(v, addr1);
1339d59ba6ceSdrh     if( p->pLimit ){
1340b7654111Sdrh       sqlite3VdbeAddOp3(v, OP_Add, iLimit, iOffset, iOffset+1);
1341d4e70ebdSdrh       VdbeComment((v, "LIMIT+OFFSET"));
1342b7654111Sdrh       addr1 = sqlite3VdbeAddOp1(v, OP_IfPos, iLimit);
1343b7654111Sdrh       sqlite3VdbeAddOp2(v, OP_Integer, -1, iOffset+1);
1344b7654111Sdrh       sqlite3VdbeJumpHere(v, addr1);
1345b7654111Sdrh     }
1346d59ba6ceSdrh   }
13477b58daeaSdrh }
13487b58daeaSdrh 
1349b7f9164eSdrh #ifndef SQLITE_OMIT_COMPOUND_SELECT
1350fbc4ee7bSdrh /*
1351fbc4ee7bSdrh ** Return the appropriate collating sequence for the iCol-th column of
1352fbc4ee7bSdrh ** the result set for the compound-select statement "p".  Return NULL if
1353fbc4ee7bSdrh ** the column has no default collating sequence.
1354fbc4ee7bSdrh **
1355fbc4ee7bSdrh ** The collating sequence for the compound select is taken from the
1356fbc4ee7bSdrh ** left-most term of the select that has a collating sequence.
1357fbc4ee7bSdrh */
1358dc1bdc4fSdanielk1977 static CollSeq *multiSelectCollSeq(Parse *pParse, Select *p, int iCol){
1359fbc4ee7bSdrh   CollSeq *pRet;
1360dc1bdc4fSdanielk1977   if( p->pPrior ){
1361dc1bdc4fSdanielk1977     pRet = multiSelectCollSeq(pParse, p->pPrior, iCol);
1362fbc4ee7bSdrh   }else{
1363fbc4ee7bSdrh     pRet = 0;
1364dc1bdc4fSdanielk1977   }
136510c081adSdrh   assert( iCol>=0 );
136610c081adSdrh   if( pRet==0 && iCol<p->pEList->nExpr ){
1367dc1bdc4fSdanielk1977     pRet = sqlite3ExprCollSeq(pParse, p->pEList->a[iCol].pExpr);
1368dc1bdc4fSdanielk1977   }
1369dc1bdc4fSdanielk1977   return pRet;
1370d3d39e93Sdrh }
1371b7f9164eSdrh #endif /* SQLITE_OMIT_COMPOUND_SELECT */
1372d3d39e93Sdrh 
1373b21e7c70Sdrh /* Forward reference */
1374b21e7c70Sdrh static int multiSelectOrderBy(
1375b21e7c70Sdrh   Parse *pParse,        /* Parsing context */
1376b21e7c70Sdrh   Select *p,            /* The right-most of SELECTs to be coded */
1377a9671a22Sdrh   SelectDest *pDest     /* What to do with query results */
1378b21e7c70Sdrh );
1379b21e7c70Sdrh 
1380b21e7c70Sdrh 
1381b7f9164eSdrh #ifndef SQLITE_OMIT_COMPOUND_SELECT
1382d3d39e93Sdrh /*
138316ee60ffSdrh ** This routine is called to process a compound query form from
138416ee60ffSdrh ** two or more separate queries using UNION, UNION ALL, EXCEPT, or
138516ee60ffSdrh ** INTERSECT
1386c926afbcSdrh **
1387e78e8284Sdrh ** "p" points to the right-most of the two queries.  the query on the
1388e78e8284Sdrh ** left is p->pPrior.  The left query could also be a compound query
1389e78e8284Sdrh ** in which case this routine will be called recursively.
1390e78e8284Sdrh **
1391e78e8284Sdrh ** The results of the total query are to be written into a destination
1392e78e8284Sdrh ** of type eDest with parameter iParm.
1393e78e8284Sdrh **
1394e78e8284Sdrh ** Example 1:  Consider a three-way compound SQL statement.
1395e78e8284Sdrh **
1396e78e8284Sdrh **     SELECT a FROM t1 UNION SELECT b FROM t2 UNION SELECT c FROM t3
1397e78e8284Sdrh **
1398e78e8284Sdrh ** This statement is parsed up as follows:
1399e78e8284Sdrh **
1400e78e8284Sdrh **     SELECT c FROM t3
1401e78e8284Sdrh **      |
1402e78e8284Sdrh **      `----->  SELECT b FROM t2
1403e78e8284Sdrh **                |
14044b11c6d3Sjplyon **                `------>  SELECT a FROM t1
1405e78e8284Sdrh **
1406e78e8284Sdrh ** The arrows in the diagram above represent the Select.pPrior pointer.
1407e78e8284Sdrh ** So if this routine is called with p equal to the t3 query, then
1408e78e8284Sdrh ** pPrior will be the t2 query.  p->op will be TK_UNION in this case.
1409e78e8284Sdrh **
1410e78e8284Sdrh ** Notice that because of the way SQLite parses compound SELECTs, the
1411e78e8284Sdrh ** individual selects always group from left to right.
141282c3d636Sdrh */
141384ac9d02Sdanielk1977 static int multiSelect(
1414fbc4ee7bSdrh   Parse *pParse,        /* Parsing context */
1415fbc4ee7bSdrh   Select *p,            /* The right-most of SELECTs to be coded */
1416a9671a22Sdrh   SelectDest *pDest     /* What to do with query results */
141784ac9d02Sdanielk1977 ){
141884ac9d02Sdanielk1977   int rc = SQLITE_OK;   /* Success code from a subroutine */
141910e5e3cfSdrh   Select *pPrior;       /* Another SELECT immediately to our left */
142010e5e3cfSdrh   Vdbe *v;              /* Generate code to this VDBE */
14211013c932Sdrh   SelectDest dest;      /* Alternative data destination */
1422eca7e01aSdanielk1977   Select *pDelete = 0;  /* Chain of simple selects to delete */
1423633e6d57Sdrh   sqlite3 *db;          /* Database connection */
142482c3d636Sdrh 
14257b58daeaSdrh   /* Make sure there is no ORDER BY or LIMIT clause on prior SELECTs.  Only
1426fbc4ee7bSdrh   ** the last (right-most) SELECT in the series may have an ORDER BY or LIMIT.
142782c3d636Sdrh   */
1428701bb3b4Sdrh   assert( p && p->pPrior );  /* Calling function guarantees this much */
1429633e6d57Sdrh   db = pParse->db;
1430d8bc7086Sdrh   pPrior = p->pPrior;
14310342b1f5Sdrh   assert( pPrior->pRightmost!=pPrior );
14320342b1f5Sdrh   assert( pPrior->pRightmost==p->pRightmost );
1433bc10377aSdrh   dest = *pDest;
1434d8bc7086Sdrh   if( pPrior->pOrderBy ){
14354adee20fSdanielk1977     sqlite3ErrorMsg(pParse,"ORDER BY clause should come after %s not before",
1436da93d238Sdrh       selectOpName(p->op));
143784ac9d02Sdanielk1977     rc = 1;
143884ac9d02Sdanielk1977     goto multi_select_end;
143982c3d636Sdrh   }
1440a2dc3b1aSdanielk1977   if( pPrior->pLimit ){
14414adee20fSdanielk1977     sqlite3ErrorMsg(pParse,"LIMIT clause should come after %s not before",
14427b58daeaSdrh       selectOpName(p->op));
144384ac9d02Sdanielk1977     rc = 1;
144484ac9d02Sdanielk1977     goto multi_select_end;
14457b58daeaSdrh   }
144682c3d636Sdrh 
14474adee20fSdanielk1977   v = sqlite3GetVdbe(pParse);
1448701bb3b4Sdrh   assert( v!=0 );  /* The VDBE already created by calling function */
1449d8bc7086Sdrh 
14501cc3d75fSdrh   /* Create the destination temporary table if necessary
14511cc3d75fSdrh   */
14526c8c8ce0Sdanielk1977   if( dest.eDest==SRT_EphemTab ){
1453b4964b72Sdanielk1977     assert( p->pEList );
1454f6e369a1Sdrh     sqlite3VdbeAddOp2(v, OP_OpenEphemeral, dest.iParm, p->pEList->nExpr);
14556c8c8ce0Sdanielk1977     dest.eDest = SRT_Table;
14561cc3d75fSdrh   }
14571cc3d75fSdrh 
1458f6e369a1Sdrh   /* Make sure all SELECTs in the statement have the same number of elements
1459f6e369a1Sdrh   ** in their result sets.
1460f6e369a1Sdrh   */
1461f6e369a1Sdrh   assert( p->pEList && pPrior->pEList );
1462f6e369a1Sdrh   if( p->pEList->nExpr!=pPrior->pEList->nExpr ){
1463f6e369a1Sdrh     sqlite3ErrorMsg(pParse, "SELECTs to the left and right of %s"
1464f6e369a1Sdrh       " do not have the same number of result columns", selectOpName(p->op));
1465f6e369a1Sdrh     rc = 1;
1466f6e369a1Sdrh     goto multi_select_end;
1467f6e369a1Sdrh   }
1468f6e369a1Sdrh 
1469a9671a22Sdrh   /* Compound SELECTs that have an ORDER BY clause are handled separately.
1470a9671a22Sdrh   */
1471f6e369a1Sdrh   if( p->pOrderBy ){
1472a9671a22Sdrh     return multiSelectOrderBy(pParse, p, pDest);
1473f6e369a1Sdrh   }
1474f6e369a1Sdrh 
1475f46f905aSdrh   /* Generate code for the left and right SELECT statements.
1476d8bc7086Sdrh   */
147782c3d636Sdrh   switch( p->op ){
1478f46f905aSdrh     case TK_ALL: {
1479ec7429aeSdrh       int addr = 0;
1480a2dc3b1aSdanielk1977       assert( !pPrior->pLimit );
1481a2dc3b1aSdanielk1977       pPrior->pLimit = p->pLimit;
1482a2dc3b1aSdanielk1977       pPrior->pOffset = p->pOffset;
14837d10d5a6Sdrh       rc = sqlite3Select(pParse, pPrior, &dest);
1484ad68cb6bSdanielk1977       p->pLimit = 0;
1485ad68cb6bSdanielk1977       p->pOffset = 0;
148684ac9d02Sdanielk1977       if( rc ){
148784ac9d02Sdanielk1977         goto multi_select_end;
148884ac9d02Sdanielk1977       }
1489f46f905aSdrh       p->pPrior = 0;
14907b58daeaSdrh       p->iLimit = pPrior->iLimit;
14917b58daeaSdrh       p->iOffset = pPrior->iOffset;
149292b01d53Sdrh       if( p->iLimit ){
14933c84ddffSdrh         addr = sqlite3VdbeAddOp1(v, OP_IfZero, p->iLimit);
1494d4e70ebdSdrh         VdbeComment((v, "Jump ahead if LIMIT reached"));
1495ec7429aeSdrh       }
14967d10d5a6Sdrh       rc = sqlite3Select(pParse, p, &dest);
1497eca7e01aSdanielk1977       pDelete = p->pPrior;
1498f46f905aSdrh       p->pPrior = pPrior;
149984ac9d02Sdanielk1977       if( rc ){
150084ac9d02Sdanielk1977         goto multi_select_end;
150184ac9d02Sdanielk1977       }
1502ec7429aeSdrh       if( addr ){
1503ec7429aeSdrh         sqlite3VdbeJumpHere(v, addr);
1504ec7429aeSdrh       }
1505f46f905aSdrh       break;
1506f46f905aSdrh     }
150782c3d636Sdrh     case TK_EXCEPT:
150882c3d636Sdrh     case TK_UNION: {
1509d8bc7086Sdrh       int unionTab;    /* Cursor number of the temporary table holding result */
1510ea678832Sdrh       u8 op = 0;       /* One of the SRT_ operations to apply to self */
1511d8bc7086Sdrh       int priorOp;     /* The SRT_ operation to apply to prior selects */
1512a2dc3b1aSdanielk1977       Expr *pLimit, *pOffset; /* Saved values of p->nLimit and p->nOffset */
1513dc1bdc4fSdanielk1977       int addr;
15146c8c8ce0Sdanielk1977       SelectDest uniondest;
151582c3d636Sdrh 
151693a960a0Sdrh       priorOp = SRT_Union;
1517e2f02bacSdrh       if( dest.eDest==priorOp && ALWAYS(!p->pLimit &&!p->pOffset) ){
1518d8bc7086Sdrh         /* We can reuse a temporary table generated by a SELECT to our
1519c926afbcSdrh         ** right.
1520d8bc7086Sdrh         */
1521e2f02bacSdrh         assert( p->pRightmost!=p );  /* Can only happen for leftward elements
1522e2f02bacSdrh                                      ** of a 3-way or more compound */
1523e2f02bacSdrh         assert( p->pLimit==0 );      /* Not allowed on leftward elements */
1524e2f02bacSdrh         assert( p->pOffset==0 );     /* Not allowed on leftward elements */
15256c8c8ce0Sdanielk1977         unionTab = dest.iParm;
152682c3d636Sdrh       }else{
1527d8bc7086Sdrh         /* We will need to create our own temporary table to hold the
1528d8bc7086Sdrh         ** intermediate results.
1529d8bc7086Sdrh         */
153082c3d636Sdrh         unionTab = pParse->nTab++;
153193a960a0Sdrh         assert( p->pOrderBy==0 );
153266a5167bSdrh         addr = sqlite3VdbeAddOp2(v, OP_OpenEphemeral, unionTab, 0);
1533b9bb7c18Sdrh         assert( p->addrOpenEphm[0] == -1 );
1534b9bb7c18Sdrh         p->addrOpenEphm[0] = addr;
15357d10d5a6Sdrh         p->pRightmost->selFlags |= SF_UsesEphemeral;
153684ac9d02Sdanielk1977         assert( p->pEList );
1537d8bc7086Sdrh       }
1538d8bc7086Sdrh 
1539d8bc7086Sdrh       /* Code the SELECT statements to our left
1540d8bc7086Sdrh       */
1541b3bce662Sdanielk1977       assert( !pPrior->pOrderBy );
15421013c932Sdrh       sqlite3SelectDestInit(&uniondest, priorOp, unionTab);
15437d10d5a6Sdrh       rc = sqlite3Select(pParse, pPrior, &uniondest);
154484ac9d02Sdanielk1977       if( rc ){
154584ac9d02Sdanielk1977         goto multi_select_end;
154684ac9d02Sdanielk1977       }
1547d8bc7086Sdrh 
1548d8bc7086Sdrh       /* Code the current SELECT statement
1549d8bc7086Sdrh       */
15504cfb22f7Sdrh       if( p->op==TK_EXCEPT ){
15514cfb22f7Sdrh         op = SRT_Except;
15524cfb22f7Sdrh       }else{
15534cfb22f7Sdrh         assert( p->op==TK_UNION );
15544cfb22f7Sdrh         op = SRT_Union;
1555d8bc7086Sdrh       }
155682c3d636Sdrh       p->pPrior = 0;
1557a2dc3b1aSdanielk1977       pLimit = p->pLimit;
1558a2dc3b1aSdanielk1977       p->pLimit = 0;
1559a2dc3b1aSdanielk1977       pOffset = p->pOffset;
1560a2dc3b1aSdanielk1977       p->pOffset = 0;
15616c8c8ce0Sdanielk1977       uniondest.eDest = op;
15627d10d5a6Sdrh       rc = sqlite3Select(pParse, p, &uniondest);
15635bd1bf2eSdrh       /* Query flattening in sqlite3Select() might refill p->pOrderBy.
15645bd1bf2eSdrh       ** Be sure to delete p->pOrderBy, therefore, to avoid a memory leak. */
1565633e6d57Sdrh       sqlite3ExprListDelete(db, p->pOrderBy);
1566eca7e01aSdanielk1977       pDelete = p->pPrior;
156782c3d636Sdrh       p->pPrior = pPrior;
1568a9671a22Sdrh       p->pOrderBy = 0;
1569633e6d57Sdrh       sqlite3ExprDelete(db, p->pLimit);
1570a2dc3b1aSdanielk1977       p->pLimit = pLimit;
1571a2dc3b1aSdanielk1977       p->pOffset = pOffset;
157292b01d53Sdrh       p->iLimit = 0;
157392b01d53Sdrh       p->iOffset = 0;
157484ac9d02Sdanielk1977       if( rc ){
157584ac9d02Sdanielk1977         goto multi_select_end;
157684ac9d02Sdanielk1977       }
157784ac9d02Sdanielk1977 
1578d8bc7086Sdrh 
1579d8bc7086Sdrh       /* Convert the data in the temporary table into whatever form
1580d8bc7086Sdrh       ** it is that we currently need.
1581d8bc7086Sdrh       */
15826c8c8ce0Sdanielk1977       if( dest.eDest!=priorOp || unionTab!=dest.iParm ){
15836b56344dSdrh         int iCont, iBreak, iStart;
158482c3d636Sdrh         assert( p->pEList );
15857d10d5a6Sdrh         if( dest.eDest==SRT_Output ){
158692378253Sdrh           Select *pFirst = p;
158792378253Sdrh           while( pFirst->pPrior ) pFirst = pFirst->pPrior;
158892378253Sdrh           generateColumnNames(pParse, 0, pFirst->pEList);
158941202ccaSdrh         }
15904adee20fSdanielk1977         iBreak = sqlite3VdbeMakeLabel(v);
15914adee20fSdanielk1977         iCont = sqlite3VdbeMakeLabel(v);
1592ec7429aeSdrh         computeLimitRegisters(pParse, p, iBreak);
159366a5167bSdrh         sqlite3VdbeAddOp2(v, OP_Rewind, unionTab, iBreak);
15944adee20fSdanielk1977         iStart = sqlite3VdbeCurrentAddr(v);
1595d2b3e23bSdrh         selectInnerLoop(pParse, p, p->pEList, unionTab, p->pEList->nExpr,
1596a9671a22Sdrh                         0, -1, &dest, iCont, iBreak);
15974adee20fSdanielk1977         sqlite3VdbeResolveLabel(v, iCont);
159866a5167bSdrh         sqlite3VdbeAddOp2(v, OP_Next, unionTab, iStart);
15994adee20fSdanielk1977         sqlite3VdbeResolveLabel(v, iBreak);
160066a5167bSdrh         sqlite3VdbeAddOp2(v, OP_Close, unionTab, 0);
160182c3d636Sdrh       }
160282c3d636Sdrh       break;
160382c3d636Sdrh     }
160482c3d636Sdrh     case TK_INTERSECT: {
160582c3d636Sdrh       int tab1, tab2;
16066b56344dSdrh       int iCont, iBreak, iStart;
1607a2dc3b1aSdanielk1977       Expr *pLimit, *pOffset;
1608dc1bdc4fSdanielk1977       int addr;
16091013c932Sdrh       SelectDest intersectdest;
16109cbf3425Sdrh       int r1;
161182c3d636Sdrh 
1612d8bc7086Sdrh       /* INTERSECT is different from the others since it requires
16136206d50aSdrh       ** two temporary tables.  Hence it has its own case.  Begin
1614d8bc7086Sdrh       ** by allocating the tables we will need.
1615d8bc7086Sdrh       */
161682c3d636Sdrh       tab1 = pParse->nTab++;
161782c3d636Sdrh       tab2 = pParse->nTab++;
161893a960a0Sdrh       assert( p->pOrderBy==0 );
1619dc1bdc4fSdanielk1977 
162066a5167bSdrh       addr = sqlite3VdbeAddOp2(v, OP_OpenEphemeral, tab1, 0);
1621b9bb7c18Sdrh       assert( p->addrOpenEphm[0] == -1 );
1622b9bb7c18Sdrh       p->addrOpenEphm[0] = addr;
16237d10d5a6Sdrh       p->pRightmost->selFlags |= SF_UsesEphemeral;
162484ac9d02Sdanielk1977       assert( p->pEList );
1625d8bc7086Sdrh 
1626d8bc7086Sdrh       /* Code the SELECTs to our left into temporary table "tab1".
1627d8bc7086Sdrh       */
16281013c932Sdrh       sqlite3SelectDestInit(&intersectdest, SRT_Union, tab1);
16297d10d5a6Sdrh       rc = sqlite3Select(pParse, pPrior, &intersectdest);
163084ac9d02Sdanielk1977       if( rc ){
163184ac9d02Sdanielk1977         goto multi_select_end;
163284ac9d02Sdanielk1977       }
1633d8bc7086Sdrh 
1634d8bc7086Sdrh       /* Code the current SELECT into temporary table "tab2"
1635d8bc7086Sdrh       */
163666a5167bSdrh       addr = sqlite3VdbeAddOp2(v, OP_OpenEphemeral, tab2, 0);
1637b9bb7c18Sdrh       assert( p->addrOpenEphm[1] == -1 );
1638b9bb7c18Sdrh       p->addrOpenEphm[1] = addr;
163982c3d636Sdrh       p->pPrior = 0;
1640a2dc3b1aSdanielk1977       pLimit = p->pLimit;
1641a2dc3b1aSdanielk1977       p->pLimit = 0;
1642a2dc3b1aSdanielk1977       pOffset = p->pOffset;
1643a2dc3b1aSdanielk1977       p->pOffset = 0;
16446c8c8ce0Sdanielk1977       intersectdest.iParm = tab2;
16457d10d5a6Sdrh       rc = sqlite3Select(pParse, p, &intersectdest);
1646eca7e01aSdanielk1977       pDelete = p->pPrior;
164782c3d636Sdrh       p->pPrior = pPrior;
1648633e6d57Sdrh       sqlite3ExprDelete(db, p->pLimit);
1649a2dc3b1aSdanielk1977       p->pLimit = pLimit;
1650a2dc3b1aSdanielk1977       p->pOffset = pOffset;
165184ac9d02Sdanielk1977       if( rc ){
165284ac9d02Sdanielk1977         goto multi_select_end;
165384ac9d02Sdanielk1977       }
1654d8bc7086Sdrh 
1655d8bc7086Sdrh       /* Generate code to take the intersection of the two temporary
1656d8bc7086Sdrh       ** tables.
1657d8bc7086Sdrh       */
165882c3d636Sdrh       assert( p->pEList );
16597d10d5a6Sdrh       if( dest.eDest==SRT_Output ){
166092378253Sdrh         Select *pFirst = p;
166192378253Sdrh         while( pFirst->pPrior ) pFirst = pFirst->pPrior;
166292378253Sdrh         generateColumnNames(pParse, 0, pFirst->pEList);
166341202ccaSdrh       }
16644adee20fSdanielk1977       iBreak = sqlite3VdbeMakeLabel(v);
16654adee20fSdanielk1977       iCont = sqlite3VdbeMakeLabel(v);
1666ec7429aeSdrh       computeLimitRegisters(pParse, p, iBreak);
166766a5167bSdrh       sqlite3VdbeAddOp2(v, OP_Rewind, tab1, iBreak);
16689cbf3425Sdrh       r1 = sqlite3GetTempReg(pParse);
16699cbf3425Sdrh       iStart = sqlite3VdbeAddOp2(v, OP_RowKey, tab1, r1);
16709cbf3425Sdrh       sqlite3VdbeAddOp3(v, OP_NotFound, tab2, iCont, r1);
16719cbf3425Sdrh       sqlite3ReleaseTempReg(pParse, r1);
1672d2b3e23bSdrh       selectInnerLoop(pParse, p, p->pEList, tab1, p->pEList->nExpr,
1673a9671a22Sdrh                       0, -1, &dest, iCont, iBreak);
16744adee20fSdanielk1977       sqlite3VdbeResolveLabel(v, iCont);
167566a5167bSdrh       sqlite3VdbeAddOp2(v, OP_Next, tab1, iStart);
16764adee20fSdanielk1977       sqlite3VdbeResolveLabel(v, iBreak);
167766a5167bSdrh       sqlite3VdbeAddOp2(v, OP_Close, tab2, 0);
167866a5167bSdrh       sqlite3VdbeAddOp2(v, OP_Close, tab1, 0);
167982c3d636Sdrh       break;
168082c3d636Sdrh     }
168182c3d636Sdrh   }
16828cdbf836Sdrh 
1683a9671a22Sdrh   /* Compute collating sequences used by
1684a9671a22Sdrh   ** temporary tables needed to implement the compound select.
1685a9671a22Sdrh   ** Attach the KeyInfo structure to all temporary tables.
16868cdbf836Sdrh   **
16878cdbf836Sdrh   ** This section is run by the right-most SELECT statement only.
16888cdbf836Sdrh   ** SELECT statements to the left always skip this part.  The right-most
16898cdbf836Sdrh   ** SELECT might also skip this part if it has no ORDER BY clause and
16908cdbf836Sdrh   ** no temp tables are required.
1691fbc4ee7bSdrh   */
16927d10d5a6Sdrh   if( p->selFlags & SF_UsesEphemeral ){
1693fbc4ee7bSdrh     int i;                        /* Loop counter */
1694fbc4ee7bSdrh     KeyInfo *pKeyInfo;            /* Collating sequence for the result set */
16950342b1f5Sdrh     Select *pLoop;                /* For looping through SELECT statements */
1696f68d7d17Sdrh     CollSeq **apColl;             /* For looping through pKeyInfo->aColl[] */
169793a960a0Sdrh     int nCol;                     /* Number of columns in result set */
1698fbc4ee7bSdrh 
16990342b1f5Sdrh     assert( p->pRightmost==p );
170093a960a0Sdrh     nCol = p->pEList->nExpr;
1701633e6d57Sdrh     pKeyInfo = sqlite3DbMallocZero(db,
1702a9671a22Sdrh                        sizeof(*pKeyInfo)+nCol*(sizeof(CollSeq*) + 1));
1703dc1bdc4fSdanielk1977     if( !pKeyInfo ){
1704dc1bdc4fSdanielk1977       rc = SQLITE_NOMEM;
1705dc1bdc4fSdanielk1977       goto multi_select_end;
1706dc1bdc4fSdanielk1977     }
1707dc1bdc4fSdanielk1977 
1708633e6d57Sdrh     pKeyInfo->enc = ENC(db);
1709ea678832Sdrh     pKeyInfo->nField = (u16)nCol;
1710dc1bdc4fSdanielk1977 
17110342b1f5Sdrh     for(i=0, apColl=pKeyInfo->aColl; i<nCol; i++, apColl++){
17120342b1f5Sdrh       *apColl = multiSelectCollSeq(pParse, p, i);
17130342b1f5Sdrh       if( 0==*apColl ){
1714633e6d57Sdrh         *apColl = db->pDfltColl;
1715dc1bdc4fSdanielk1977       }
1716dc1bdc4fSdanielk1977     }
1717dc1bdc4fSdanielk1977 
17180342b1f5Sdrh     for(pLoop=p; pLoop; pLoop=pLoop->pPrior){
17190342b1f5Sdrh       for(i=0; i<2; i++){
1720b9bb7c18Sdrh         int addr = pLoop->addrOpenEphm[i];
17210342b1f5Sdrh         if( addr<0 ){
17220342b1f5Sdrh           /* If [0] is unused then [1] is also unused.  So we can
17230342b1f5Sdrh           ** always safely abort as soon as the first unused slot is found */
1724b9bb7c18Sdrh           assert( pLoop->addrOpenEphm[1]<0 );
17250342b1f5Sdrh           break;
17260342b1f5Sdrh         }
17270342b1f5Sdrh         sqlite3VdbeChangeP2(v, addr, nCol);
172866a5167bSdrh         sqlite3VdbeChangeP4(v, addr, (char*)pKeyInfo, P4_KEYINFO);
17290ee5a1e7Sdrh         pLoop->addrOpenEphm[i] = -1;
17300342b1f5Sdrh       }
1731dc1bdc4fSdanielk1977     }
1732633e6d57Sdrh     sqlite3DbFree(db, pKeyInfo);
1733dc1bdc4fSdanielk1977   }
1734dc1bdc4fSdanielk1977 
1735dc1bdc4fSdanielk1977 multi_select_end:
17361013c932Sdrh   pDest->iMem = dest.iMem;
1737ad27e761Sdrh   pDest->nMem = dest.nMem;
1738633e6d57Sdrh   sqlite3SelectDelete(db, pDelete);
173984ac9d02Sdanielk1977   return rc;
17402282792aSdrh }
1741b7f9164eSdrh #endif /* SQLITE_OMIT_COMPOUND_SELECT */
17422282792aSdrh 
1743b21e7c70Sdrh /*
1744b21e7c70Sdrh ** Code an output subroutine for a coroutine implementation of a
1745b21e7c70Sdrh ** SELECT statment.
17460acb7e48Sdrh **
17470acb7e48Sdrh ** The data to be output is contained in pIn->iMem.  There are
17480acb7e48Sdrh ** pIn->nMem columns to be output.  pDest is where the output should
17490acb7e48Sdrh ** be sent.
17500acb7e48Sdrh **
17510acb7e48Sdrh ** regReturn is the number of the register holding the subroutine
17520acb7e48Sdrh ** return address.
17530acb7e48Sdrh **
17540acb7e48Sdrh ** If regPrev>0 then it is a the first register in a vector that
17550acb7e48Sdrh ** records the previous output.  mem[regPrev] is a flag that is false
17560acb7e48Sdrh ** if there has been no previous output.  If regPrev>0 then code is
17570acb7e48Sdrh ** generated to suppress duplicates.  pKeyInfo is used for comparing
17580acb7e48Sdrh ** keys.
17590acb7e48Sdrh **
17600acb7e48Sdrh ** If the LIMIT found in p->iLimit is reached, jump immediately to
17610acb7e48Sdrh ** iBreak.
1762b21e7c70Sdrh */
17630acb7e48Sdrh static int generateOutputSubroutine(
176492b01d53Sdrh   Parse *pParse,          /* Parsing context */
176592b01d53Sdrh   Select *p,              /* The SELECT statement */
176692b01d53Sdrh   SelectDest *pIn,        /* Coroutine supplying data */
176792b01d53Sdrh   SelectDest *pDest,      /* Where to send the data */
176892b01d53Sdrh   int regReturn,          /* The return address register */
17690acb7e48Sdrh   int regPrev,            /* Previous result register.  No uniqueness if 0 */
17700acb7e48Sdrh   KeyInfo *pKeyInfo,      /* For comparing with previous entry */
17710acb7e48Sdrh   int p4type,             /* The p4 type for pKeyInfo */
177292b01d53Sdrh   int iBreak              /* Jump here if we hit the LIMIT */
1773b21e7c70Sdrh ){
1774b21e7c70Sdrh   Vdbe *v = pParse->pVdbe;
177592b01d53Sdrh   int iContinue;
177692b01d53Sdrh   int addr;
1777b21e7c70Sdrh 
177892b01d53Sdrh   addr = sqlite3VdbeCurrentAddr(v);
177992b01d53Sdrh   iContinue = sqlite3VdbeMakeLabel(v);
17800acb7e48Sdrh 
17810acb7e48Sdrh   /* Suppress duplicates for UNION, EXCEPT, and INTERSECT
17820acb7e48Sdrh   */
17830acb7e48Sdrh   if( regPrev ){
17840acb7e48Sdrh     int j1, j2;
17850acb7e48Sdrh     j1 = sqlite3VdbeAddOp1(v, OP_IfNot, regPrev);
17860acb7e48Sdrh     j2 = sqlite3VdbeAddOp4(v, OP_Compare, pIn->iMem, regPrev+1, pIn->nMem,
17870acb7e48Sdrh                               (char*)pKeyInfo, p4type);
17880acb7e48Sdrh     sqlite3VdbeAddOp3(v, OP_Jump, j2+2, iContinue, j2+2);
17890acb7e48Sdrh     sqlite3VdbeJumpHere(v, j1);
17900acb7e48Sdrh     sqlite3ExprCodeCopy(pParse, pIn->iMem, regPrev+1, pIn->nMem);
17910acb7e48Sdrh     sqlite3VdbeAddOp2(v, OP_Integer, 1, regPrev);
17920acb7e48Sdrh   }
17931f9caa41Sdanielk1977   if( pParse->db->mallocFailed ) return 0;
17940acb7e48Sdrh 
17950acb7e48Sdrh   /* Suppress the the first OFFSET entries if there is an OFFSET clause
17960acb7e48Sdrh   */
179792b01d53Sdrh   codeOffset(v, p, iContinue);
1798b21e7c70Sdrh 
1799b21e7c70Sdrh   switch( pDest->eDest ){
1800b21e7c70Sdrh     /* Store the result as data using a unique key.
1801b21e7c70Sdrh     */
1802b21e7c70Sdrh     case SRT_Table:
1803b21e7c70Sdrh     case SRT_EphemTab: {
1804b21e7c70Sdrh       int r1 = sqlite3GetTempReg(pParse);
1805b21e7c70Sdrh       int r2 = sqlite3GetTempReg(pParse);
180692b01d53Sdrh       sqlite3VdbeAddOp3(v, OP_MakeRecord, pIn->iMem, pIn->nMem, r1);
180792b01d53Sdrh       sqlite3VdbeAddOp2(v, OP_NewRowid, pDest->iParm, r2);
180892b01d53Sdrh       sqlite3VdbeAddOp3(v, OP_Insert, pDest->iParm, r1, r2);
1809b21e7c70Sdrh       sqlite3VdbeChangeP5(v, OPFLAG_APPEND);
1810b21e7c70Sdrh       sqlite3ReleaseTempReg(pParse, r2);
1811b21e7c70Sdrh       sqlite3ReleaseTempReg(pParse, r1);
1812b21e7c70Sdrh       break;
1813b21e7c70Sdrh     }
1814b21e7c70Sdrh 
1815b21e7c70Sdrh #ifndef SQLITE_OMIT_SUBQUERY
1816b21e7c70Sdrh     /* If we are creating a set for an "expr IN (SELECT ...)" construct,
1817b21e7c70Sdrh     ** then there should be a single item on the stack.  Write this
1818b21e7c70Sdrh     ** item into the set table with bogus data.
1819b21e7c70Sdrh     */
1820b21e7c70Sdrh     case SRT_Set: {
18216fccc35aSdrh       int r1;
182292b01d53Sdrh       assert( pIn->nMem==1 );
182392b01d53Sdrh       p->affinity =
182492b01d53Sdrh          sqlite3CompareAffinity(p->pEList->a[0].pExpr, pDest->affinity);
1825b21e7c70Sdrh       r1 = sqlite3GetTempReg(pParse);
182692b01d53Sdrh       sqlite3VdbeAddOp4(v, OP_MakeRecord, pIn->iMem, 1, r1, &p->affinity, 1);
182792b01d53Sdrh       sqlite3ExprCacheAffinityChange(pParse, pIn->iMem, 1);
182892b01d53Sdrh       sqlite3VdbeAddOp2(v, OP_IdxInsert, pDest->iParm, r1);
1829b21e7c70Sdrh       sqlite3ReleaseTempReg(pParse, r1);
1830b21e7c70Sdrh       break;
1831b21e7c70Sdrh     }
1832b21e7c70Sdrh 
183385e9e22bSdrh #if 0  /* Never occurs on an ORDER BY query */
1834b21e7c70Sdrh     /* If any row exist in the result set, record that fact and abort.
1835b21e7c70Sdrh     */
1836b21e7c70Sdrh     case SRT_Exists: {
183792b01d53Sdrh       sqlite3VdbeAddOp2(v, OP_Integer, 1, pDest->iParm);
1838b21e7c70Sdrh       /* The LIMIT clause will terminate the loop for us */
1839b21e7c70Sdrh       break;
1840b21e7c70Sdrh     }
184185e9e22bSdrh #endif
1842b21e7c70Sdrh 
1843b21e7c70Sdrh     /* If this is a scalar select that is part of an expression, then
1844b21e7c70Sdrh     ** store the results in the appropriate memory cell and break out
1845b21e7c70Sdrh     ** of the scan loop.
1846b21e7c70Sdrh     */
1847b21e7c70Sdrh     case SRT_Mem: {
184892b01d53Sdrh       assert( pIn->nMem==1 );
184992b01d53Sdrh       sqlite3ExprCodeMove(pParse, pIn->iMem, pDest->iParm, 1);
1850b21e7c70Sdrh       /* The LIMIT clause will jump out of the loop for us */
1851b21e7c70Sdrh       break;
1852b21e7c70Sdrh     }
1853b21e7c70Sdrh #endif /* #ifndef SQLITE_OMIT_SUBQUERY */
1854b21e7c70Sdrh 
18557d10d5a6Sdrh     /* The results are stored in a sequence of registers
18567d10d5a6Sdrh     ** starting at pDest->iMem.  Then the co-routine yields.
1857b21e7c70Sdrh     */
185892b01d53Sdrh     case SRT_Coroutine: {
185992b01d53Sdrh       if( pDest->iMem==0 ){
186092b01d53Sdrh         pDest->iMem = sqlite3GetTempRange(pParse, pIn->nMem);
186192b01d53Sdrh         pDest->nMem = pIn->nMem;
1862b21e7c70Sdrh       }
186392b01d53Sdrh       sqlite3ExprCodeMove(pParse, pIn->iMem, pDest->iMem, pDest->nMem);
186492b01d53Sdrh       sqlite3VdbeAddOp1(v, OP_Yield, pDest->iParm);
186592b01d53Sdrh       break;
186692b01d53Sdrh     }
186792b01d53Sdrh 
18687d10d5a6Sdrh     /* Results are stored in a sequence of registers.  Then the
18697d10d5a6Sdrh     ** OP_ResultRow opcode is used to cause sqlite3_step() to return
18707d10d5a6Sdrh     ** the next row of result.
18717d10d5a6Sdrh     */
18727d10d5a6Sdrh     case SRT_Output: {
187392b01d53Sdrh       sqlite3VdbeAddOp2(v, OP_ResultRow, pIn->iMem, pIn->nMem);
187492b01d53Sdrh       sqlite3ExprCacheAffinityChange(pParse, pIn->iMem, pIn->nMem);
1875b21e7c70Sdrh       break;
1876b21e7c70Sdrh     }
1877b21e7c70Sdrh 
1878b21e7c70Sdrh #if !defined(SQLITE_OMIT_TRIGGER)
1879b21e7c70Sdrh     /* Discard the results.  This is used for SELECT statements inside
1880b21e7c70Sdrh     ** the body of a TRIGGER.  The purpose of such selects is to call
1881b21e7c70Sdrh     ** user-defined functions that have side effects.  We do not care
1882b21e7c70Sdrh     ** about the actual results of the select.
1883b21e7c70Sdrh     */
1884b21e7c70Sdrh     default: {
1885b21e7c70Sdrh       break;
1886b21e7c70Sdrh     }
1887b21e7c70Sdrh #endif
1888b21e7c70Sdrh   }
188992b01d53Sdrh 
189092b01d53Sdrh   /* Jump to the end of the loop if the LIMIT is reached.
189192b01d53Sdrh   */
189292b01d53Sdrh   if( p->iLimit ){
189392b01d53Sdrh     sqlite3VdbeAddOp2(v, OP_AddImm, p->iLimit, -1);
189492b01d53Sdrh     sqlite3VdbeAddOp2(v, OP_IfZero, p->iLimit, iBreak);
189592b01d53Sdrh   }
189692b01d53Sdrh 
189792b01d53Sdrh   /* Generate the subroutine return
189892b01d53Sdrh   */
18990acb7e48Sdrh   sqlite3VdbeResolveLabel(v, iContinue);
190092b01d53Sdrh   sqlite3VdbeAddOp1(v, OP_Return, regReturn);
190192b01d53Sdrh 
190292b01d53Sdrh   return addr;
1903b21e7c70Sdrh }
1904b21e7c70Sdrh 
1905b21e7c70Sdrh /*
1906b21e7c70Sdrh ** Alternative compound select code generator for cases when there
1907b21e7c70Sdrh ** is an ORDER BY clause.
1908b21e7c70Sdrh **
1909b21e7c70Sdrh ** We assume a query of the following form:
1910b21e7c70Sdrh **
1911b21e7c70Sdrh **      <selectA>  <operator>  <selectB>  ORDER BY <orderbylist>
1912b21e7c70Sdrh **
1913b21e7c70Sdrh ** <operator> is one of UNION ALL, UNION, EXCEPT, or INTERSECT.  The idea
1914b21e7c70Sdrh ** is to code both <selectA> and <selectB> with the ORDER BY clause as
1915b21e7c70Sdrh ** co-routines.  Then run the co-routines in parallel and merge the results
1916b21e7c70Sdrh ** into the output.  In addition to the two coroutines (called selectA and
1917b21e7c70Sdrh ** selectB) there are 7 subroutines:
1918b21e7c70Sdrh **
1919b21e7c70Sdrh **    outA:    Move the output of the selectA coroutine into the output
1920b21e7c70Sdrh **             of the compound query.
1921b21e7c70Sdrh **
1922b21e7c70Sdrh **    outB:    Move the output of the selectB coroutine into the output
1923b21e7c70Sdrh **             of the compound query.  (Only generated for UNION and
1924b21e7c70Sdrh **             UNION ALL.  EXCEPT and INSERTSECT never output a row that
1925b21e7c70Sdrh **             appears only in B.)
1926b21e7c70Sdrh **
1927b21e7c70Sdrh **    AltB:    Called when there is data from both coroutines and A<B.
1928b21e7c70Sdrh **
1929b21e7c70Sdrh **    AeqB:    Called when there is data from both coroutines and A==B.
1930b21e7c70Sdrh **
1931b21e7c70Sdrh **    AgtB:    Called when there is data from both coroutines and A>B.
1932b21e7c70Sdrh **
1933b21e7c70Sdrh **    EofA:    Called when data is exhausted from selectA.
1934b21e7c70Sdrh **
1935b21e7c70Sdrh **    EofB:    Called when data is exhausted from selectB.
1936b21e7c70Sdrh **
1937b21e7c70Sdrh ** The implementation of the latter five subroutines depend on which
1938b21e7c70Sdrh ** <operator> is used:
1939b21e7c70Sdrh **
1940b21e7c70Sdrh **
1941b21e7c70Sdrh **             UNION ALL         UNION            EXCEPT          INTERSECT
1942b21e7c70Sdrh **          -------------  -----------------  --------------  -----------------
1943b21e7c70Sdrh **   AltB:   outA, nextA      outA, nextA       outA, nextA         nextA
1944b21e7c70Sdrh **
19450acb7e48Sdrh **   AeqB:   outA, nextA         nextA             nextA         outA, nextA
1946b21e7c70Sdrh **
1947b21e7c70Sdrh **   AgtB:   outB, nextB      outB, nextB          nextB            nextB
1948b21e7c70Sdrh **
19490acb7e48Sdrh **   EofA:   outB, nextB      outB, nextB          halt             halt
1950b21e7c70Sdrh **
19510acb7e48Sdrh **   EofB:   outA, nextA      outA, nextA       outA, nextA         halt
19520acb7e48Sdrh **
19530acb7e48Sdrh ** In the AltB, AeqB, and AgtB subroutines, an EOF on A following nextA
19540acb7e48Sdrh ** causes an immediate jump to EofA and an EOF on B following nextB causes
19550acb7e48Sdrh ** an immediate jump to EofB.  Within EofA and EofB, and EOF on entry or
19560acb7e48Sdrh ** following nextX causes a jump to the end of the select processing.
19570acb7e48Sdrh **
19580acb7e48Sdrh ** Duplicate removal in the UNION, EXCEPT, and INTERSECT cases is handled
19590acb7e48Sdrh ** within the output subroutine.  The regPrev register set holds the previously
19600acb7e48Sdrh ** output value.  A comparison is made against this value and the output
19610acb7e48Sdrh ** is skipped if the next results would be the same as the previous.
1962b21e7c70Sdrh **
1963b21e7c70Sdrh ** The implementation plan is to implement the two coroutines and seven
1964b21e7c70Sdrh ** subroutines first, then put the control logic at the bottom.  Like this:
1965b21e7c70Sdrh **
1966b21e7c70Sdrh **          goto Init
1967b21e7c70Sdrh **     coA: coroutine for left query (A)
1968b21e7c70Sdrh **     coB: coroutine for right query (B)
1969b21e7c70Sdrh **    outA: output one row of A
1970b21e7c70Sdrh **    outB: output one row of B (UNION and UNION ALL only)
1971b21e7c70Sdrh **    EofA: ...
1972b21e7c70Sdrh **    EofB: ...
1973b21e7c70Sdrh **    AltB: ...
1974b21e7c70Sdrh **    AeqB: ...
1975b21e7c70Sdrh **    AgtB: ...
1976b21e7c70Sdrh **    Init: initialize coroutine registers
1977b21e7c70Sdrh **          yield coA
1978b21e7c70Sdrh **          if eof(A) goto EofA
1979b21e7c70Sdrh **          yield coB
1980b21e7c70Sdrh **          if eof(B) goto EofB
1981b21e7c70Sdrh **    Cmpr: Compare A, B
1982b21e7c70Sdrh **          Jump AltB, AeqB, AgtB
1983b21e7c70Sdrh **     End: ...
1984b21e7c70Sdrh **
1985b21e7c70Sdrh ** We call AltB, AeqB, AgtB, EofA, and EofB "subroutines" but they are not
1986b21e7c70Sdrh ** actually called using Gosub and they do not Return.  EofA and EofB loop
1987b21e7c70Sdrh ** until all data is exhausted then jump to the "end" labe.  AltB, AeqB,
1988b21e7c70Sdrh ** and AgtB jump to either L2 or to one of EofA or EofB.
1989b21e7c70Sdrh */
1990de3e41e3Sdanielk1977 #ifndef SQLITE_OMIT_COMPOUND_SELECT
1991b21e7c70Sdrh static int multiSelectOrderBy(
1992b21e7c70Sdrh   Parse *pParse,        /* Parsing context */
1993b21e7c70Sdrh   Select *p,            /* The right-most of SELECTs to be coded */
1994a9671a22Sdrh   SelectDest *pDest     /* What to do with query results */
1995b21e7c70Sdrh ){
19960acb7e48Sdrh   int i, j;             /* Loop counters */
1997b21e7c70Sdrh   Select *pPrior;       /* Another SELECT immediately to our left */
1998b21e7c70Sdrh   Vdbe *v;              /* Generate code to this VDBE */
1999b21e7c70Sdrh   SelectDest destA;     /* Destination for coroutine A */
2000b21e7c70Sdrh   SelectDest destB;     /* Destination for coroutine B */
200192b01d53Sdrh   int regAddrA;         /* Address register for select-A coroutine */
200292b01d53Sdrh   int regEofA;          /* Flag to indicate when select-A is complete */
200392b01d53Sdrh   int regAddrB;         /* Address register for select-B coroutine */
200492b01d53Sdrh   int regEofB;          /* Flag to indicate when select-B is complete */
200592b01d53Sdrh   int addrSelectA;      /* Address of the select-A coroutine */
200692b01d53Sdrh   int addrSelectB;      /* Address of the select-B coroutine */
200792b01d53Sdrh   int regOutA;          /* Address register for the output-A subroutine */
200892b01d53Sdrh   int regOutB;          /* Address register for the output-B subroutine */
200992b01d53Sdrh   int addrOutA;         /* Address of the output-A subroutine */
2010b27b7f5dSdrh   int addrOutB = 0;     /* Address of the output-B subroutine */
201192b01d53Sdrh   int addrEofA;         /* Address of the select-A-exhausted subroutine */
201292b01d53Sdrh   int addrEofB;         /* Address of the select-B-exhausted subroutine */
201392b01d53Sdrh   int addrAltB;         /* Address of the A<B subroutine */
201492b01d53Sdrh   int addrAeqB;         /* Address of the A==B subroutine */
201592b01d53Sdrh   int addrAgtB;         /* Address of the A>B subroutine */
201692b01d53Sdrh   int regLimitA;        /* Limit register for select-A */
201792b01d53Sdrh   int regLimitB;        /* Limit register for select-A */
20180acb7e48Sdrh   int regPrev;          /* A range of registers to hold previous output */
201992b01d53Sdrh   int savedLimit;       /* Saved value of p->iLimit */
202092b01d53Sdrh   int savedOffset;      /* Saved value of p->iOffset */
202192b01d53Sdrh   int labelCmpr;        /* Label for the start of the merge algorithm */
202292b01d53Sdrh   int labelEnd;         /* Label for the end of the overall SELECT stmt */
20230acb7e48Sdrh   int j1;               /* Jump instructions that get retargetted */
202492b01d53Sdrh   int op;               /* One of TK_ALL, TK_UNION, TK_EXCEPT, TK_INTERSECT */
202596067816Sdrh   KeyInfo *pKeyDup = 0; /* Comparison information for duplicate removal */
20260acb7e48Sdrh   KeyInfo *pKeyMerge;   /* Comparison information for merging rows */
20270acb7e48Sdrh   sqlite3 *db;          /* Database connection */
20280acb7e48Sdrh   ExprList *pOrderBy;   /* The ORDER BY clause */
20290acb7e48Sdrh   int nOrderBy;         /* Number of terms in the ORDER BY clause */
20300acb7e48Sdrh   int *aPermute;        /* Mapping from ORDER BY terms to result set columns */
2031b21e7c70Sdrh 
203292b01d53Sdrh   assert( p->pOrderBy!=0 );
203396067816Sdrh   assert( pKeyDup==0 ); /* "Managed" code needs this.  Ticket #3382. */
20340acb7e48Sdrh   db = pParse->db;
203592b01d53Sdrh   v = pParse->pVdbe;
203692b01d53Sdrh   if( v==0 ) return SQLITE_NOMEM;
203792b01d53Sdrh   labelEnd = sqlite3VdbeMakeLabel(v);
203892b01d53Sdrh   labelCmpr = sqlite3VdbeMakeLabel(v);
20390acb7e48Sdrh 
2040b21e7c70Sdrh 
204192b01d53Sdrh   /* Patch up the ORDER BY clause
204292b01d53Sdrh   */
204392b01d53Sdrh   op = p->op;
2044b21e7c70Sdrh   pPrior = p->pPrior;
204592b01d53Sdrh   assert( pPrior->pOrderBy==0 );
20460acb7e48Sdrh   pOrderBy = p->pOrderBy;
204793a960a0Sdrh   assert( pOrderBy );
20480acb7e48Sdrh   nOrderBy = pOrderBy->nExpr;
204993a960a0Sdrh 
20500acb7e48Sdrh   /* For operators other than UNION ALL we have to make sure that
20510acb7e48Sdrh   ** the ORDER BY clause covers every term of the result set.  Add
20520acb7e48Sdrh   ** terms to the ORDER BY clause as necessary.
20530acb7e48Sdrh   */
20540acb7e48Sdrh   if( op!=TK_ALL ){
20550acb7e48Sdrh     for(i=1; db->mallocFailed==0 && i<=p->pEList->nExpr; i++){
20567d10d5a6Sdrh       struct ExprList_item *pItem;
20577d10d5a6Sdrh       for(j=0, pItem=pOrderBy->a; j<nOrderBy; j++, pItem++){
20587d10d5a6Sdrh         assert( pItem->iCol>0 );
20597d10d5a6Sdrh         if( pItem->iCol==i ) break;
20600acb7e48Sdrh       }
20610acb7e48Sdrh       if( j==nOrderBy ){
20620acb7e48Sdrh         Expr *pNew = sqlite3PExpr(pParse, TK_INTEGER, 0, 0, 0);
20630acb7e48Sdrh         if( pNew==0 ) return SQLITE_NOMEM;
20640acb7e48Sdrh         pNew->flags |= EP_IntValue;
20650acb7e48Sdrh         pNew->iTable = i;
20660acb7e48Sdrh         pOrderBy = sqlite3ExprListAppend(pParse, pOrderBy, pNew, 0);
2067ea678832Sdrh         pOrderBy->a[nOrderBy++].iCol = (u16)i;
20680acb7e48Sdrh       }
20690acb7e48Sdrh     }
20700acb7e48Sdrh   }
20710acb7e48Sdrh 
20720acb7e48Sdrh   /* Compute the comparison permutation and keyinfo that is used with
207310c081adSdrh   ** the permutation used to determine if the next
20740acb7e48Sdrh   ** row of results comes from selectA or selectB.  Also add explicit
20750acb7e48Sdrh   ** collations to the ORDER BY clause terms so that when the subqueries
20760acb7e48Sdrh   ** to the right and the left are evaluated, they use the correct
20770acb7e48Sdrh   ** collation.
20780acb7e48Sdrh   */
20790acb7e48Sdrh   aPermute = sqlite3DbMallocRaw(db, sizeof(int)*nOrderBy);
20800acb7e48Sdrh   if( aPermute ){
20817d10d5a6Sdrh     struct ExprList_item *pItem;
20827d10d5a6Sdrh     for(i=0, pItem=pOrderBy->a; i<nOrderBy; i++, pItem++){
20837d10d5a6Sdrh       assert( pItem->iCol>0  && pItem->iCol<=p->pEList->nExpr );
20847d10d5a6Sdrh       aPermute[i] = pItem->iCol - 1;
20850acb7e48Sdrh     }
20860acb7e48Sdrh     pKeyMerge =
20870acb7e48Sdrh       sqlite3DbMallocRaw(db, sizeof(*pKeyMerge)+nOrderBy*(sizeof(CollSeq*)+1));
20880acb7e48Sdrh     if( pKeyMerge ){
20890acb7e48Sdrh       pKeyMerge->aSortOrder = (u8*)&pKeyMerge->aColl[nOrderBy];
2090ea678832Sdrh       pKeyMerge->nField = (u16)nOrderBy;
20910acb7e48Sdrh       pKeyMerge->enc = ENC(db);
20920acb7e48Sdrh       for(i=0; i<nOrderBy; i++){
20930acb7e48Sdrh         CollSeq *pColl;
20940acb7e48Sdrh         Expr *pTerm = pOrderBy->a[i].pExpr;
20950acb7e48Sdrh         if( pTerm->flags & EP_ExpCollate ){
20960acb7e48Sdrh           pColl = pTerm->pColl;
20970acb7e48Sdrh         }else{
20980acb7e48Sdrh           pColl = multiSelectCollSeq(pParse, p, aPermute[i]);
20990acb7e48Sdrh           pTerm->flags |= EP_ExpCollate;
21000acb7e48Sdrh           pTerm->pColl = pColl;
21010acb7e48Sdrh         }
21020acb7e48Sdrh         pKeyMerge->aColl[i] = pColl;
21030acb7e48Sdrh         pKeyMerge->aSortOrder[i] = pOrderBy->a[i].sortOrder;
21040acb7e48Sdrh       }
21050acb7e48Sdrh     }
21060acb7e48Sdrh   }else{
21070acb7e48Sdrh     pKeyMerge = 0;
21080acb7e48Sdrh   }
21090acb7e48Sdrh 
21100acb7e48Sdrh   /* Reattach the ORDER BY clause to the query.
21110acb7e48Sdrh   */
21120acb7e48Sdrh   p->pOrderBy = pOrderBy;
21136ab3a2ecSdanielk1977   pPrior->pOrderBy = sqlite3ExprListDup(pParse->db, pOrderBy, 0);
21140acb7e48Sdrh 
21150acb7e48Sdrh   /* Allocate a range of temporary registers and the KeyInfo needed
21160acb7e48Sdrh   ** for the logic that removes duplicate result rows when the
21170acb7e48Sdrh   ** operator is UNION, EXCEPT, or INTERSECT (but not UNION ALL).
21180acb7e48Sdrh   */
21190acb7e48Sdrh   if( op==TK_ALL ){
21200acb7e48Sdrh     regPrev = 0;
21210acb7e48Sdrh   }else{
21220acb7e48Sdrh     int nExpr = p->pEList->nExpr;
21231c0dc825Sdrh     assert( nOrderBy>=nExpr || db->mallocFailed );
21240acb7e48Sdrh     regPrev = sqlite3GetTempRange(pParse, nExpr+1);
21250acb7e48Sdrh     sqlite3VdbeAddOp2(v, OP_Integer, 0, regPrev);
21260acb7e48Sdrh     pKeyDup = sqlite3DbMallocZero(db,
21270acb7e48Sdrh                   sizeof(*pKeyDup) + nExpr*(sizeof(CollSeq*)+1) );
21280acb7e48Sdrh     if( pKeyDup ){
21290acb7e48Sdrh       pKeyDup->aSortOrder = (u8*)&pKeyDup->aColl[nExpr];
2130ea678832Sdrh       pKeyDup->nField = (u16)nExpr;
21310acb7e48Sdrh       pKeyDup->enc = ENC(db);
21320acb7e48Sdrh       for(i=0; i<nExpr; i++){
21330acb7e48Sdrh         pKeyDup->aColl[i] = multiSelectCollSeq(pParse, p, i);
21340acb7e48Sdrh         pKeyDup->aSortOrder[i] = 0;
21350acb7e48Sdrh       }
21360acb7e48Sdrh     }
21370acb7e48Sdrh   }
213892b01d53Sdrh 
213992b01d53Sdrh   /* Separate the left and the right query from one another
214092b01d53Sdrh   */
214192b01d53Sdrh   p->pPrior = 0;
214292b01d53Sdrh   pPrior->pRightmost = 0;
21437d10d5a6Sdrh   sqlite3ResolveOrderGroupBy(pParse, p, p->pOrderBy, "ORDER");
21440acb7e48Sdrh   if( pPrior->pPrior==0 ){
21457d10d5a6Sdrh     sqlite3ResolveOrderGroupBy(pParse, pPrior, pPrior->pOrderBy, "ORDER");
21460acb7e48Sdrh   }
214792b01d53Sdrh 
214892b01d53Sdrh   /* Compute the limit registers */
214992b01d53Sdrh   computeLimitRegisters(pParse, p, labelEnd);
21500acb7e48Sdrh   if( p->iLimit && op==TK_ALL ){
215192b01d53Sdrh     regLimitA = ++pParse->nMem;
215292b01d53Sdrh     regLimitB = ++pParse->nMem;
215392b01d53Sdrh     sqlite3VdbeAddOp2(v, OP_Copy, p->iOffset ? p->iOffset+1 : p->iLimit,
215492b01d53Sdrh                                   regLimitA);
215592b01d53Sdrh     sqlite3VdbeAddOp2(v, OP_Copy, regLimitA, regLimitB);
215692b01d53Sdrh   }else{
215792b01d53Sdrh     regLimitA = regLimitB = 0;
215892b01d53Sdrh   }
2159633e6d57Sdrh   sqlite3ExprDelete(db, p->pLimit);
21600acb7e48Sdrh   p->pLimit = 0;
2161633e6d57Sdrh   sqlite3ExprDelete(db, p->pOffset);
21620acb7e48Sdrh   p->pOffset = 0;
216392b01d53Sdrh 
2164b21e7c70Sdrh   regAddrA = ++pParse->nMem;
2165b21e7c70Sdrh   regEofA = ++pParse->nMem;
2166b21e7c70Sdrh   regAddrB = ++pParse->nMem;
2167b21e7c70Sdrh   regEofB = ++pParse->nMem;
2168b21e7c70Sdrh   regOutA = ++pParse->nMem;
2169b21e7c70Sdrh   regOutB = ++pParse->nMem;
2170b21e7c70Sdrh   sqlite3SelectDestInit(&destA, SRT_Coroutine, regAddrA);
2171b21e7c70Sdrh   sqlite3SelectDestInit(&destB, SRT_Coroutine, regAddrB);
2172b21e7c70Sdrh 
217392b01d53Sdrh   /* Jump past the various subroutines and coroutines to the main
217492b01d53Sdrh   ** merge loop
217592b01d53Sdrh   */
2176b21e7c70Sdrh   j1 = sqlite3VdbeAddOp0(v, OP_Goto);
2177b21e7c70Sdrh   addrSelectA = sqlite3VdbeCurrentAddr(v);
217892b01d53Sdrh 
21790acb7e48Sdrh 
218092b01d53Sdrh   /* Generate a coroutine to evaluate the SELECT statement to the
21810acb7e48Sdrh   ** left of the compound operator - the "A" select.
21820acb7e48Sdrh   */
2183b21e7c70Sdrh   VdbeNoopComment((v, "Begin coroutine for left SELECT"));
218492b01d53Sdrh   pPrior->iLimit = regLimitA;
21857d10d5a6Sdrh   sqlite3Select(pParse, pPrior, &destA);
2186b21e7c70Sdrh   sqlite3VdbeAddOp2(v, OP_Integer, 1, regEofA);
218792b01d53Sdrh   sqlite3VdbeAddOp1(v, OP_Yield, regAddrA);
2188b21e7c70Sdrh   VdbeNoopComment((v, "End coroutine for left SELECT"));
2189b21e7c70Sdrh 
219092b01d53Sdrh   /* Generate a coroutine to evaluate the SELECT statement on
219192b01d53Sdrh   ** the right - the "B" select
219292b01d53Sdrh   */
2193b21e7c70Sdrh   addrSelectB = sqlite3VdbeCurrentAddr(v);
2194b21e7c70Sdrh   VdbeNoopComment((v, "Begin coroutine for right SELECT"));
219592b01d53Sdrh   savedLimit = p->iLimit;
219692b01d53Sdrh   savedOffset = p->iOffset;
219792b01d53Sdrh   p->iLimit = regLimitB;
219892b01d53Sdrh   p->iOffset = 0;
21997d10d5a6Sdrh   sqlite3Select(pParse, p, &destB);
220092b01d53Sdrh   p->iLimit = savedLimit;
220192b01d53Sdrh   p->iOffset = savedOffset;
2202b21e7c70Sdrh   sqlite3VdbeAddOp2(v, OP_Integer, 1, regEofB);
220392b01d53Sdrh   sqlite3VdbeAddOp1(v, OP_Yield, regAddrB);
2204b21e7c70Sdrh   VdbeNoopComment((v, "End coroutine for right SELECT"));
2205b21e7c70Sdrh 
220692b01d53Sdrh   /* Generate a subroutine that outputs the current row of the A
22070acb7e48Sdrh   ** select as the next output row of the compound select.
220892b01d53Sdrh   */
2209b21e7c70Sdrh   VdbeNoopComment((v, "Output routine for A"));
22100acb7e48Sdrh   addrOutA = generateOutputSubroutine(pParse,
22110acb7e48Sdrh                  p, &destA, pDest, regOutA,
22120acb7e48Sdrh                  regPrev, pKeyDup, P4_KEYINFO_HANDOFF, labelEnd);
2213b21e7c70Sdrh 
221492b01d53Sdrh   /* Generate a subroutine that outputs the current row of the B
22150acb7e48Sdrh   ** select as the next output row of the compound select.
221692b01d53Sdrh   */
22170acb7e48Sdrh   if( op==TK_ALL || op==TK_UNION ){
2218b21e7c70Sdrh     VdbeNoopComment((v, "Output routine for B"));
22190acb7e48Sdrh     addrOutB = generateOutputSubroutine(pParse,
22200acb7e48Sdrh                  p, &destB, pDest, regOutB,
22210acb7e48Sdrh                  regPrev, pKeyDup, P4_KEYINFO_STATIC, labelEnd);
22220acb7e48Sdrh   }
2223b21e7c70Sdrh 
222492b01d53Sdrh   /* Generate a subroutine to run when the results from select A
222592b01d53Sdrh   ** are exhausted and only data in select B remains.
222692b01d53Sdrh   */
222792b01d53Sdrh   VdbeNoopComment((v, "eof-A subroutine"));
222892b01d53Sdrh   if( op==TK_EXCEPT || op==TK_INTERSECT ){
22290acb7e48Sdrh     addrEofA = sqlite3VdbeAddOp2(v, OP_Goto, 0, labelEnd);
223092b01d53Sdrh   }else{
22310acb7e48Sdrh     addrEofA = sqlite3VdbeAddOp2(v, OP_If, regEofB, labelEnd);
2232b21e7c70Sdrh     sqlite3VdbeAddOp2(v, OP_Gosub, regOutB, addrOutB);
223392b01d53Sdrh     sqlite3VdbeAddOp1(v, OP_Yield, regAddrB);
22340acb7e48Sdrh     sqlite3VdbeAddOp2(v, OP_Goto, 0, addrEofA);
2235b21e7c70Sdrh   }
2236b21e7c70Sdrh 
223792b01d53Sdrh   /* Generate a subroutine to run when the results from select B
223892b01d53Sdrh   ** are exhausted and only data in select A remains.
223992b01d53Sdrh   */
2240b21e7c70Sdrh   if( op==TK_INTERSECT ){
224192b01d53Sdrh     addrEofB = addrEofA;
2242b21e7c70Sdrh   }else{
224392b01d53Sdrh     VdbeNoopComment((v, "eof-B subroutine"));
22440acb7e48Sdrh     addrEofB = sqlite3VdbeAddOp2(v, OP_If, regEofA, labelEnd);
2245b21e7c70Sdrh     sqlite3VdbeAddOp2(v, OP_Gosub, regOutA, addrOutA);
224692b01d53Sdrh     sqlite3VdbeAddOp1(v, OP_Yield, regAddrA);
22470acb7e48Sdrh     sqlite3VdbeAddOp2(v, OP_Goto, 0, addrEofB);
2248b21e7c70Sdrh   }
2249b21e7c70Sdrh 
225092b01d53Sdrh   /* Generate code to handle the case of A<B
225192b01d53Sdrh   */
2252b21e7c70Sdrh   VdbeNoopComment((v, "A-lt-B subroutine"));
22530acb7e48Sdrh   addrAltB = sqlite3VdbeAddOp2(v, OP_Gosub, regOutA, addrOutA);
225492b01d53Sdrh   sqlite3VdbeAddOp1(v, OP_Yield, regAddrA);
2255b21e7c70Sdrh   sqlite3VdbeAddOp2(v, OP_If, regEofA, addrEofA);
225692b01d53Sdrh   sqlite3VdbeAddOp2(v, OP_Goto, 0, labelCmpr);
2257b21e7c70Sdrh 
225892b01d53Sdrh   /* Generate code to handle the case of A==B
225992b01d53Sdrh   */
2260b21e7c70Sdrh   if( op==TK_ALL ){
2261b21e7c70Sdrh     addrAeqB = addrAltB;
22620acb7e48Sdrh   }else if( op==TK_INTERSECT ){
22630acb7e48Sdrh     addrAeqB = addrAltB;
22640acb7e48Sdrh     addrAltB++;
226592b01d53Sdrh   }else{
2266b21e7c70Sdrh     VdbeNoopComment((v, "A-eq-B subroutine"));
22670acb7e48Sdrh     addrAeqB =
226892b01d53Sdrh     sqlite3VdbeAddOp1(v, OP_Yield, regAddrA);
226992b01d53Sdrh     sqlite3VdbeAddOp2(v, OP_If, regEofA, addrEofA);
227092b01d53Sdrh     sqlite3VdbeAddOp2(v, OP_Goto, 0, labelCmpr);
227192b01d53Sdrh   }
2272b21e7c70Sdrh 
227392b01d53Sdrh   /* Generate code to handle the case of A>B
227492b01d53Sdrh   */
2275b21e7c70Sdrh   VdbeNoopComment((v, "A-gt-B subroutine"));
2276b21e7c70Sdrh   addrAgtB = sqlite3VdbeCurrentAddr(v);
2277b21e7c70Sdrh   if( op==TK_ALL || op==TK_UNION ){
2278b21e7c70Sdrh     sqlite3VdbeAddOp2(v, OP_Gosub, regOutB, addrOutB);
227992b01d53Sdrh   }
22800acb7e48Sdrh   sqlite3VdbeAddOp1(v, OP_Yield, regAddrB);
2281b21e7c70Sdrh   sqlite3VdbeAddOp2(v, OP_If, regEofB, addrEofB);
228292b01d53Sdrh   sqlite3VdbeAddOp2(v, OP_Goto, 0, labelCmpr);
2283b21e7c70Sdrh 
228492b01d53Sdrh   /* This code runs once to initialize everything.
228592b01d53Sdrh   */
2286b21e7c70Sdrh   sqlite3VdbeJumpHere(v, j1);
2287b21e7c70Sdrh   sqlite3VdbeAddOp2(v, OP_Integer, 0, regEofA);
2288b21e7c70Sdrh   sqlite3VdbeAddOp2(v, OP_Integer, 0, regEofB);
228992b01d53Sdrh   sqlite3VdbeAddOp2(v, OP_Gosub, regAddrA, addrSelectA);
22900acb7e48Sdrh   sqlite3VdbeAddOp2(v, OP_Gosub, regAddrB, addrSelectB);
2291b21e7c70Sdrh   sqlite3VdbeAddOp2(v, OP_If, regEofA, addrEofA);
2292b21e7c70Sdrh   sqlite3VdbeAddOp2(v, OP_If, regEofB, addrEofB);
229392b01d53Sdrh 
229492b01d53Sdrh   /* Implement the main merge loop
229592b01d53Sdrh   */
229692b01d53Sdrh   sqlite3VdbeResolveLabel(v, labelCmpr);
22970acb7e48Sdrh   sqlite3VdbeAddOp4(v, OP_Permutation, 0, 0, 0, (char*)aPermute, P4_INTARRAY);
22980acb7e48Sdrh   sqlite3VdbeAddOp4(v, OP_Compare, destA.iMem, destB.iMem, nOrderBy,
22990acb7e48Sdrh                          (char*)pKeyMerge, P4_KEYINFO_HANDOFF);
2300b21e7c70Sdrh   sqlite3VdbeAddOp3(v, OP_Jump, addrAltB, addrAeqB, addrAgtB);
230192b01d53Sdrh 
23020acb7e48Sdrh   /* Release temporary registers
23030acb7e48Sdrh   */
23040acb7e48Sdrh   if( regPrev ){
23050acb7e48Sdrh     sqlite3ReleaseTempRange(pParse, regPrev, nOrderBy+1);
23060acb7e48Sdrh   }
23070acb7e48Sdrh 
230892b01d53Sdrh   /* Jump to the this point in order to terminate the query.
230992b01d53Sdrh   */
2310b21e7c70Sdrh   sqlite3VdbeResolveLabel(v, labelEnd);
2311b21e7c70Sdrh 
231292b01d53Sdrh   /* Set the number of output columns
231392b01d53Sdrh   */
23147d10d5a6Sdrh   if( pDest->eDest==SRT_Output ){
23150acb7e48Sdrh     Select *pFirst = pPrior;
231692b01d53Sdrh     while( pFirst->pPrior ) pFirst = pFirst->pPrior;
231792b01d53Sdrh     generateColumnNames(pParse, 0, pFirst->pEList);
2318b21e7c70Sdrh   }
231992b01d53Sdrh 
23200acb7e48Sdrh   /* Reassembly the compound query so that it will be freed correctly
23210acb7e48Sdrh   ** by the calling function */
23225e7ad508Sdanielk1977   if( p->pPrior ){
2323633e6d57Sdrh     sqlite3SelectDelete(db, p->pPrior);
23245e7ad508Sdanielk1977   }
23250acb7e48Sdrh   p->pPrior = pPrior;
232692b01d53Sdrh 
232792b01d53Sdrh   /*** TBD:  Insert subroutine calls to close cursors on incomplete
232892b01d53Sdrh   **** subqueries ****/
232992b01d53Sdrh   return SQLITE_OK;
233092b01d53Sdrh }
2331de3e41e3Sdanielk1977 #endif
2332b21e7c70Sdrh 
23333514b6f7Sshane #if !defined(SQLITE_OMIT_SUBQUERY) || !defined(SQLITE_OMIT_VIEW)
233417435752Sdrh /* Forward Declarations */
233517435752Sdrh static void substExprList(sqlite3*, ExprList*, int, ExprList*);
233617435752Sdrh static void substSelect(sqlite3*, Select *, int, ExprList *);
233717435752Sdrh 
23382282792aSdrh /*
2339832508b7Sdrh ** Scan through the expression pExpr.  Replace every reference to
23406a3ea0e6Sdrh ** a column in table number iTable with a copy of the iColumn-th
234184e59207Sdrh ** entry in pEList.  (But leave references to the ROWID column
23426a3ea0e6Sdrh ** unchanged.)
2343832508b7Sdrh **
2344832508b7Sdrh ** This routine is part of the flattening procedure.  A subquery
2345832508b7Sdrh ** whose result set is defined by pEList appears as entry in the
2346832508b7Sdrh ** FROM clause of a SELECT such that the VDBE cursor assigned to that
2347832508b7Sdrh ** FORM clause entry is iTable.  This routine make the necessary
2348832508b7Sdrh ** changes to pExpr so that it refers directly to the source table
2349832508b7Sdrh ** of the subquery rather the result set of the subquery.
2350832508b7Sdrh */
235117435752Sdrh static void substExpr(
235217435752Sdrh   sqlite3 *db,        /* Report malloc errors to this connection */
235317435752Sdrh   Expr *pExpr,        /* Expr in which substitution occurs */
235417435752Sdrh   int iTable,         /* Table to be substituted */
235517435752Sdrh   ExprList *pEList    /* Substitute expressions */
235617435752Sdrh ){
2357832508b7Sdrh   if( pExpr==0 ) return;
235850350a15Sdrh   if( pExpr->op==TK_COLUMN && pExpr->iTable==iTable ){
235950350a15Sdrh     if( pExpr->iColumn<0 ){
236050350a15Sdrh       pExpr->op = TK_NULL;
236150350a15Sdrh     }else{
2362832508b7Sdrh       Expr *pNew;
236384e59207Sdrh       assert( pEList!=0 && pExpr->iColumn<pEList->nExpr );
23646ab3a2ecSdanielk1977       assert( pExpr->pLeft==0 && pExpr->pRight==0 );
2365832508b7Sdrh       pNew = pEList->a[pExpr->iColumn].pExpr;
2366832508b7Sdrh       assert( pNew!=0 );
2367832508b7Sdrh       pExpr->op = pNew->op;
2368d94a6698Sdrh       assert( pExpr->pLeft==0 );
23696ab3a2ecSdanielk1977       pExpr->pLeft = sqlite3ExprDup(db, pNew->pLeft, 0);
2370d94a6698Sdrh       assert( pExpr->pRight==0 );
23716ab3a2ecSdanielk1977       pExpr->pRight = sqlite3ExprDup(db, pNew->pRight, 0);
2372832508b7Sdrh       pExpr->iTable = pNew->iTable;
2373fbbe005aSdanielk1977       pExpr->pTab = pNew->pTab;
2374832508b7Sdrh       pExpr->iColumn = pNew->iColumn;
2375832508b7Sdrh       pExpr->iAgg = pNew->iAgg;
237617435752Sdrh       sqlite3TokenCopy(db, &pExpr->token, &pNew->token);
237717435752Sdrh       sqlite3TokenCopy(db, &pExpr->span, &pNew->span);
23786ab3a2ecSdanielk1977       assert( pExpr->x.pList==0 && pExpr->x.pSelect==0 );
23796ab3a2ecSdanielk1977       if( ExprHasProperty(pNew, EP_xIsSelect) ){
23806ab3a2ecSdanielk1977         pExpr->x.pSelect = sqlite3SelectDup(db, pNew->x.pSelect, 0);
23816ab3a2ecSdanielk1977       }else{
23826ab3a2ecSdanielk1977         pExpr->x.pList = sqlite3ExprListDup(db, pNew->x.pList, 0);
23836ab3a2ecSdanielk1977       }
2384a1cb183dSdanielk1977       pExpr->flags = pNew->flags;
238566cd1822Sdrh       pExpr->pAggInfo = pNew->pAggInfo;
238666cd1822Sdrh       pNew->pAggInfo = 0;
238750350a15Sdrh     }
2388832508b7Sdrh   }else{
238917435752Sdrh     substExpr(db, pExpr->pLeft, iTable, pEList);
239017435752Sdrh     substExpr(db, pExpr->pRight, iTable, pEList);
23916ab3a2ecSdanielk1977     if( ExprHasProperty(pExpr, EP_xIsSelect) ){
23926ab3a2ecSdanielk1977       substSelect(db, pExpr->x.pSelect, iTable, pEList);
23936ab3a2ecSdanielk1977     }else{
23946ab3a2ecSdanielk1977       substExprList(db, pExpr->x.pList, iTable, pEList);
23956ab3a2ecSdanielk1977     }
2396832508b7Sdrh   }
2397832508b7Sdrh }
239817435752Sdrh static void substExprList(
239917435752Sdrh   sqlite3 *db,         /* Report malloc errors here */
240017435752Sdrh   ExprList *pList,     /* List to scan and in which to make substitutes */
240117435752Sdrh   int iTable,          /* Table to be substituted */
240217435752Sdrh   ExprList *pEList     /* Substitute values */
240317435752Sdrh ){
2404832508b7Sdrh   int i;
2405832508b7Sdrh   if( pList==0 ) return;
2406832508b7Sdrh   for(i=0; i<pList->nExpr; i++){
240717435752Sdrh     substExpr(db, pList->a[i].pExpr, iTable, pEList);
2408832508b7Sdrh   }
2409832508b7Sdrh }
241017435752Sdrh static void substSelect(
241117435752Sdrh   sqlite3 *db,         /* Report malloc errors here */
241217435752Sdrh   Select *p,           /* SELECT statement in which to make substitutions */
241317435752Sdrh   int iTable,          /* Table to be replaced */
241417435752Sdrh   ExprList *pEList     /* Substitute values */
241517435752Sdrh ){
2416588a9a1aSdrh   SrcList *pSrc;
2417588a9a1aSdrh   struct SrcList_item *pItem;
2418588a9a1aSdrh   int i;
2419b3bce662Sdanielk1977   if( !p ) return;
242017435752Sdrh   substExprList(db, p->pEList, iTable, pEList);
242117435752Sdrh   substExprList(db, p->pGroupBy, iTable, pEList);
242217435752Sdrh   substExprList(db, p->pOrderBy, iTable, pEList);
242317435752Sdrh   substExpr(db, p->pHaving, iTable, pEList);
242417435752Sdrh   substExpr(db, p->pWhere, iTable, pEList);
242517435752Sdrh   substSelect(db, p->pPrior, iTable, pEList);
2426588a9a1aSdrh   pSrc = p->pSrc;
2427e2f02bacSdrh   assert( pSrc );  /* Even for (SELECT 1) we have: pSrc!=0 but pSrc->nSrc==0 */
2428e2f02bacSdrh   if( ALWAYS(pSrc) ){
2429588a9a1aSdrh     for(i=pSrc->nSrc, pItem=pSrc->a; i>0; i--, pItem++){
2430588a9a1aSdrh       substSelect(db, pItem->pSelect, iTable, pEList);
2431588a9a1aSdrh     }
2432588a9a1aSdrh   }
2433b3bce662Sdanielk1977 }
24343514b6f7Sshane #endif /* !defined(SQLITE_OMIT_SUBQUERY) || !defined(SQLITE_OMIT_VIEW) */
2435832508b7Sdrh 
24363514b6f7Sshane #if !defined(SQLITE_OMIT_SUBQUERY) || !defined(SQLITE_OMIT_VIEW)
2437832508b7Sdrh /*
24381350b030Sdrh ** This routine attempts to flatten subqueries in order to speed
24391350b030Sdrh ** execution.  It returns 1 if it makes changes and 0 if no flattening
24401350b030Sdrh ** occurs.
24411350b030Sdrh **
24421350b030Sdrh ** To understand the concept of flattening, consider the following
24431350b030Sdrh ** query:
24441350b030Sdrh **
24451350b030Sdrh **     SELECT a FROM (SELECT x+y AS a FROM t1 WHERE z<100) WHERE a>5
24461350b030Sdrh **
24471350b030Sdrh ** The default way of implementing this query is to execute the
24481350b030Sdrh ** subquery first and store the results in a temporary table, then
24491350b030Sdrh ** run the outer query on that temporary table.  This requires two
24501350b030Sdrh ** passes over the data.  Furthermore, because the temporary table
24511350b030Sdrh ** has no indices, the WHERE clause on the outer query cannot be
2452832508b7Sdrh ** optimized.
24531350b030Sdrh **
2454832508b7Sdrh ** This routine attempts to rewrite queries such as the above into
24551350b030Sdrh ** a single flat select, like this:
24561350b030Sdrh **
24571350b030Sdrh **     SELECT x+y AS a FROM t1 WHERE z<100 AND a>5
24581350b030Sdrh **
24591350b030Sdrh ** The code generated for this simpification gives the same result
2460832508b7Sdrh ** but only has to scan the data once.  And because indices might
2461832508b7Sdrh ** exist on the table t1, a complete scan of the data might be
2462832508b7Sdrh ** avoided.
24631350b030Sdrh **
2464832508b7Sdrh ** Flattening is only attempted if all of the following are true:
24651350b030Sdrh **
2466832508b7Sdrh **   (1)  The subquery and the outer query do not both use aggregates.
24671350b030Sdrh **
2468832508b7Sdrh **   (2)  The subquery is not an aggregate or the outer query is not a join.
2469832508b7Sdrh **
24702b300d5dSdrh **   (3)  The subquery is not the right operand of a left outer join
24712b300d5dSdrh **        (Originally ticket #306.  Strenghtened by ticket #3300)
2472832508b7Sdrh **
2473832508b7Sdrh **   (4)  The subquery is not DISTINCT or the outer query is not a join.
2474832508b7Sdrh **
2475832508b7Sdrh **   (5)  The subquery is not DISTINCT or the outer query does not use
2476832508b7Sdrh **        aggregates.
2477832508b7Sdrh **
2478832508b7Sdrh **   (6)  The subquery does not use aggregates or the outer query is not
2479832508b7Sdrh **        DISTINCT.
2480832508b7Sdrh **
248108192d5fSdrh **   (7)  The subquery has a FROM clause.
248208192d5fSdrh **
2483df199a25Sdrh **   (8)  The subquery does not use LIMIT or the outer query is not a join.
2484df199a25Sdrh **
2485df199a25Sdrh **   (9)  The subquery does not use LIMIT or the outer query does not use
2486df199a25Sdrh **        aggregates.
2487df199a25Sdrh **
2488df199a25Sdrh **  (10)  The subquery does not use aggregates or the outer query does not
2489df199a25Sdrh **        use LIMIT.
2490df199a25Sdrh **
2491174b6195Sdrh **  (11)  The subquery and the outer query do not both have ORDER BY clauses.
2492174b6195Sdrh **
24932b300d5dSdrh **  (12)  Not implemented.  Subsumed into restriction (3).  Was previously
24942b300d5dSdrh **        a separate restriction deriving from ticket #350.
24953fc673e6Sdrh **
2496ac83963aSdrh **  (13)  The subquery and outer query do not both use LIMIT
2497ac83963aSdrh **
2498ac83963aSdrh **  (14)  The subquery does not use OFFSET
2499ac83963aSdrh **
2500ad91c6cdSdrh **  (15)  The outer query is not part of a compound select or the
2501ad91c6cdSdrh **        subquery does not have both an ORDER BY and a LIMIT clause.
2502ad91c6cdSdrh **        (See ticket #2339)
2503ad91c6cdSdrh **
2504c52e355dSdrh **  (16)  The outer query is not an aggregate or the subquery does
2505c52e355dSdrh **        not contain ORDER BY.  (Ticket #2942)  This used to not matter
2506c52e355dSdrh **        until we introduced the group_concat() function.
2507c52e355dSdrh **
2508f23329a2Sdanielk1977 **  (17)  The sub-query is not a compound select, or it is a UNION ALL
25094914cf92Sdanielk1977 **        compound clause made up entirely of non-aggregate queries, and
2510f23329a2Sdanielk1977 **        the parent query:
2511f23329a2Sdanielk1977 **
2512f23329a2Sdanielk1977 **          * is not itself part of a compound select,
2513f23329a2Sdanielk1977 **          * is not an aggregate or DISTINCT query, and
2514f23329a2Sdanielk1977 **          * has no other tables or sub-selects in the FROM clause.
2515f23329a2Sdanielk1977 **
25164914cf92Sdanielk1977 **        The parent and sub-query may contain WHERE clauses. Subject to
25174914cf92Sdanielk1977 **        rules (11), (13) and (14), they may also contain ORDER BY,
25184914cf92Sdanielk1977 **        LIMIT and OFFSET clauses.
2519f23329a2Sdanielk1977 **
252049fc1f60Sdanielk1977 **  (18)  If the sub-query is a compound select, then all terms of the
252149fc1f60Sdanielk1977 **        ORDER by clause of the parent must be simple references to
252249fc1f60Sdanielk1977 **        columns of the sub-query.
252349fc1f60Sdanielk1977 **
2524229cf702Sdrh **  (19)  The subquery does not use LIMIT or the outer query does not
2525229cf702Sdrh **        have a WHERE clause.
2526229cf702Sdrh **
2527e8902a70Sdrh **  (20)  If the sub-query is a compound select, then it must not use
2528e8902a70Sdrh **        an ORDER BY clause.  Ticket #3773.  We could relax this constraint
2529e8902a70Sdrh **        somewhat by saying that the terms of the ORDER BY clause must
2530e8902a70Sdrh **        appear as unmodified result columns in the outer query.  But
2531e8902a70Sdrh **        have other optimizations in mind to deal with that case.
2532e8902a70Sdrh **
2533832508b7Sdrh ** In this routine, the "p" parameter is a pointer to the outer query.
2534832508b7Sdrh ** The subquery is p->pSrc->a[iFrom].  isAgg is true if the outer query
2535832508b7Sdrh ** uses aggregates and subqueryIsAgg is true if the subquery uses aggregates.
2536832508b7Sdrh **
2537665de47aSdrh ** If flattening is not attempted, this routine is a no-op and returns 0.
2538832508b7Sdrh ** If flattening is attempted this routine returns 1.
2539832508b7Sdrh **
2540832508b7Sdrh ** All of the expression analysis must occur on both the outer query and
2541832508b7Sdrh ** the subquery before this routine runs.
25421350b030Sdrh */
25438c74a8caSdrh static int flattenSubquery(
2544524cc21eSdanielk1977   Parse *pParse,       /* Parsing context */
25458c74a8caSdrh   Select *p,           /* The parent or outer SELECT statement */
25468c74a8caSdrh   int iFrom,           /* Index in p->pSrc->a[] of the inner subquery */
25478c74a8caSdrh   int isAgg,           /* True if outer SELECT uses aggregate functions */
25488c74a8caSdrh   int subqueryIsAgg    /* True if the subquery uses aggregate functions */
25498c74a8caSdrh ){
2550524cc21eSdanielk1977   const char *zSavedAuthContext = pParse->zAuthContext;
2551f23329a2Sdanielk1977   Select *pParent;
25520bb28106Sdrh   Select *pSub;       /* The inner query or "subquery" */
2553f23329a2Sdanielk1977   Select *pSub1;      /* Pointer to the rightmost select in sub-query */
2554ad3cab52Sdrh   SrcList *pSrc;      /* The FROM clause of the outer query */
2555ad3cab52Sdrh   SrcList *pSubSrc;   /* The FROM clause of the subquery */
25560bb28106Sdrh   ExprList *pList;    /* The result set of the outer query */
25576a3ea0e6Sdrh   int iParent;        /* VDBE cursor number of the pSub result set temp table */
255891bb0eedSdrh   int i;              /* Loop counter */
255991bb0eedSdrh   Expr *pWhere;                    /* The WHERE clause */
256091bb0eedSdrh   struct SrcList_item *pSubitem;   /* The subquery */
2561524cc21eSdanielk1977   sqlite3 *db = pParse->db;
25621350b030Sdrh 
2563832508b7Sdrh   /* Check to see if flattening is permitted.  Return 0 if not.
2564832508b7Sdrh   */
2565a78c22c4Sdrh   assert( p!=0 );
2566a78c22c4Sdrh   assert( p->pPrior==0 );  /* Unable to flatten compound queries */
2567832508b7Sdrh   pSrc = p->pSrc;
2568ad3cab52Sdrh   assert( pSrc && iFrom>=0 && iFrom<pSrc->nSrc );
256991bb0eedSdrh   pSubitem = &pSrc->a[iFrom];
257049fc1f60Sdanielk1977   iParent = pSubitem->iCursor;
257191bb0eedSdrh   pSub = pSubitem->pSelect;
2572832508b7Sdrh   assert( pSub!=0 );
2573ac83963aSdrh   if( isAgg && subqueryIsAgg ) return 0;                 /* Restriction (1)  */
2574ac83963aSdrh   if( subqueryIsAgg && pSrc->nSrc>1 ) return 0;          /* Restriction (2)  */
2575832508b7Sdrh   pSubSrc = pSub->pSrc;
2576832508b7Sdrh   assert( pSubSrc );
2577ac83963aSdrh   /* Prior to version 3.1.2, when LIMIT and OFFSET had to be simple constants,
2578ac83963aSdrh   ** not arbitrary expresssions, we allowed some combining of LIMIT and OFFSET
2579ac83963aSdrh   ** because they could be computed at compile-time.  But when LIMIT and OFFSET
2580ac83963aSdrh   ** became arbitrary expressions, we were forced to add restrictions (13)
2581ac83963aSdrh   ** and (14). */
2582ac83963aSdrh   if( pSub->pLimit && p->pLimit ) return 0;              /* Restriction (13) */
2583ac83963aSdrh   if( pSub->pOffset ) return 0;                          /* Restriction (14) */
2584ad91c6cdSdrh   if( p->pRightmost && pSub->pLimit && pSub->pOrderBy ){
2585ad91c6cdSdrh     return 0;                                            /* Restriction (15) */
2586ad91c6cdSdrh   }
2587ac83963aSdrh   if( pSubSrc->nSrc==0 ) return 0;                       /* Restriction (7)  */
25887d10d5a6Sdrh   if( ((pSub->selFlags & SF_Distinct)!=0 || pSub->pLimit)
2589ac83963aSdrh          && (pSrc->nSrc>1 || isAgg) ){          /* Restrictions (4)(5)(8)(9) */
2590df199a25Sdrh      return 0;
2591df199a25Sdrh   }
25927d10d5a6Sdrh   if( (p->selFlags & SF_Distinct)!=0 && subqueryIsAgg ){
25937d10d5a6Sdrh      return 0;         /* Restriction (6)  */
25947d10d5a6Sdrh   }
25957d10d5a6Sdrh   if( p->pOrderBy && pSub->pOrderBy ){
2596ac83963aSdrh      return 0;                                           /* Restriction (11) */
2597ac83963aSdrh   }
2598c52e355dSdrh   if( isAgg && pSub->pOrderBy ) return 0;                /* Restriction (16) */
2599229cf702Sdrh   if( pSub->pLimit && p->pWhere ) return 0;              /* Restriction (19) */
2600832508b7Sdrh 
26012b300d5dSdrh   /* OBSOLETE COMMENT 1:
26022b300d5dSdrh   ** Restriction 3:  If the subquery is a join, make sure the subquery is
26038af4d3acSdrh   ** not used as the right operand of an outer join.  Examples of why this
26048af4d3acSdrh   ** is not allowed:
26058af4d3acSdrh   **
26068af4d3acSdrh   **         t1 LEFT OUTER JOIN (t2 JOIN t3)
26078af4d3acSdrh   **
26088af4d3acSdrh   ** If we flatten the above, we would get
26098af4d3acSdrh   **
26108af4d3acSdrh   **         (t1 LEFT OUTER JOIN t2) JOIN t3
26118af4d3acSdrh   **
26128af4d3acSdrh   ** which is not at all the same thing.
26132b300d5dSdrh   **
26142b300d5dSdrh   ** OBSOLETE COMMENT 2:
26152b300d5dSdrh   ** Restriction 12:  If the subquery is the right operand of a left outer
26163fc673e6Sdrh   ** join, make sure the subquery has no WHERE clause.
26173fc673e6Sdrh   ** An examples of why this is not allowed:
26183fc673e6Sdrh   **
26193fc673e6Sdrh   **         t1 LEFT OUTER JOIN (SELECT * FROM t2 WHERE t2.x>0)
26203fc673e6Sdrh   **
26213fc673e6Sdrh   ** If we flatten the above, we would get
26223fc673e6Sdrh   **
26233fc673e6Sdrh   **         (t1 LEFT OUTER JOIN t2) WHERE t2.x>0
26243fc673e6Sdrh   **
26253fc673e6Sdrh   ** But the t2.x>0 test will always fail on a NULL row of t2, which
26263fc673e6Sdrh   ** effectively converts the OUTER JOIN into an INNER JOIN.
26272b300d5dSdrh   **
26282b300d5dSdrh   ** THIS OVERRIDES OBSOLETE COMMENTS 1 AND 2 ABOVE:
26292b300d5dSdrh   ** Ticket #3300 shows that flattening the right term of a LEFT JOIN
26302b300d5dSdrh   ** is fraught with danger.  Best to avoid the whole thing.  If the
26312b300d5dSdrh   ** subquery is the right term of a LEFT JOIN, then do not flatten.
26323fc673e6Sdrh   */
26332b300d5dSdrh   if( (pSubitem->jointype & JT_OUTER)!=0 ){
26343fc673e6Sdrh     return 0;
26353fc673e6Sdrh   }
26363fc673e6Sdrh 
2637f23329a2Sdanielk1977   /* Restriction 17: If the sub-query is a compound SELECT, then it must
2638f23329a2Sdanielk1977   ** use only the UNION ALL operator. And none of the simple select queries
2639f23329a2Sdanielk1977   ** that make up the compound SELECT are allowed to be aggregate or distinct
2640f23329a2Sdanielk1977   ** queries.
2641f23329a2Sdanielk1977   */
2642f23329a2Sdanielk1977   if( pSub->pPrior ){
2643e8902a70Sdrh     if( pSub->pOrderBy ){
2644e8902a70Sdrh       return 0;  /* Restriction 20 */
2645e8902a70Sdrh     }
2646e2f02bacSdrh     if( isAgg || (p->selFlags & SF_Distinct)!=0 || pSrc->nSrc!=1 ){
2647f23329a2Sdanielk1977       return 0;
2648f23329a2Sdanielk1977     }
2649f23329a2Sdanielk1977     for(pSub1=pSub; pSub1; pSub1=pSub1->pPrior){
26507d10d5a6Sdrh       if( (pSub1->selFlags & (SF_Distinct|SF_Aggregate))!=0
265180b3c548Sdanielk1977        || (pSub1->pPrior && pSub1->op!=TK_ALL)
265280b3c548Sdanielk1977        || !pSub1->pSrc || pSub1->pSrc->nSrc!=1
265380b3c548Sdanielk1977       ){
2654f23329a2Sdanielk1977         return 0;
2655f23329a2Sdanielk1977       }
2656f23329a2Sdanielk1977     }
265749fc1f60Sdanielk1977 
265849fc1f60Sdanielk1977     /* Restriction 18. */
265949fc1f60Sdanielk1977     if( p->pOrderBy ){
266049fc1f60Sdanielk1977       int ii;
266149fc1f60Sdanielk1977       for(ii=0; ii<p->pOrderBy->nExpr; ii++){
26627d10d5a6Sdrh         if( p->pOrderBy->a[ii].iCol==0 ) return 0;
266349fc1f60Sdanielk1977       }
266449fc1f60Sdanielk1977     }
2665f23329a2Sdanielk1977   }
2666f23329a2Sdanielk1977 
26677d10d5a6Sdrh   /***** If we reach this point, flattening is permitted. *****/
26687d10d5a6Sdrh 
26697d10d5a6Sdrh   /* Authorize the subquery */
2670524cc21eSdanielk1977   pParse->zAuthContext = pSubitem->zName;
2671524cc21eSdanielk1977   sqlite3AuthCheck(pParse, SQLITE_SELECT, 0, 0, 0);
2672524cc21eSdanielk1977   pParse->zAuthContext = zSavedAuthContext;
2673524cc21eSdanielk1977 
26747d10d5a6Sdrh   /* If the sub-query is a compound SELECT statement, then (by restrictions
26757d10d5a6Sdrh   ** 17 and 18 above) it must be a UNION ALL and the parent query must
26767d10d5a6Sdrh   ** be of the form:
2677f23329a2Sdanielk1977   **
2678f23329a2Sdanielk1977   **     SELECT <expr-list> FROM (<sub-query>) <where-clause>
2679f23329a2Sdanielk1977   **
2680f23329a2Sdanielk1977   ** followed by any ORDER BY, LIMIT and/or OFFSET clauses. This block
2681a78c22c4Sdrh   ** creates N-1 copies of the parent query without any ORDER BY, LIMIT or
2682f23329a2Sdanielk1977   ** OFFSET clauses and joins them to the left-hand-side of the original
2683f23329a2Sdanielk1977   ** using UNION ALL operators. In this case N is the number of simple
2684f23329a2Sdanielk1977   ** select statements in the compound sub-query.
2685a78c22c4Sdrh   **
2686a78c22c4Sdrh   ** Example:
2687a78c22c4Sdrh   **
2688a78c22c4Sdrh   **     SELECT a+1 FROM (
2689a78c22c4Sdrh   **        SELECT x FROM tab
2690a78c22c4Sdrh   **        UNION ALL
2691a78c22c4Sdrh   **        SELECT y FROM tab
2692a78c22c4Sdrh   **        UNION ALL
2693a78c22c4Sdrh   **        SELECT abs(z*2) FROM tab2
2694a78c22c4Sdrh   **     ) WHERE a!=5 ORDER BY 1
2695a78c22c4Sdrh   **
2696a78c22c4Sdrh   ** Transformed into:
2697a78c22c4Sdrh   **
2698a78c22c4Sdrh   **     SELECT x+1 FROM tab WHERE x+1!=5
2699a78c22c4Sdrh   **     UNION ALL
2700a78c22c4Sdrh   **     SELECT y+1 FROM tab WHERE y+1!=5
2701a78c22c4Sdrh   **     UNION ALL
2702a78c22c4Sdrh   **     SELECT abs(z*2)+1 FROM tab2 WHERE abs(z*2)+1!=5
2703a78c22c4Sdrh   **     ORDER BY 1
2704a78c22c4Sdrh   **
2705a78c22c4Sdrh   ** We call this the "compound-subquery flattening".
2706f23329a2Sdanielk1977   */
2707f23329a2Sdanielk1977   for(pSub=pSub->pPrior; pSub; pSub=pSub->pPrior){
2708f23329a2Sdanielk1977     Select *pNew;
2709f23329a2Sdanielk1977     ExprList *pOrderBy = p->pOrderBy;
27104b86ef1dSdanielk1977     Expr *pLimit = p->pLimit;
2711f23329a2Sdanielk1977     Select *pPrior = p->pPrior;
2712f23329a2Sdanielk1977     p->pOrderBy = 0;
2713f23329a2Sdanielk1977     p->pSrc = 0;
2714f23329a2Sdanielk1977     p->pPrior = 0;
27154b86ef1dSdanielk1977     p->pLimit = 0;
27166ab3a2ecSdanielk1977     pNew = sqlite3SelectDup(db, p, 0);
27174b86ef1dSdanielk1977     p->pLimit = pLimit;
2718a78c22c4Sdrh     p->pOrderBy = pOrderBy;
2719a78c22c4Sdrh     p->pSrc = pSrc;
2720a78c22c4Sdrh     p->op = TK_ALL;
2721f23329a2Sdanielk1977     p->pRightmost = 0;
2722a78c22c4Sdrh     if( pNew==0 ){
2723a78c22c4Sdrh       pNew = pPrior;
2724a78c22c4Sdrh     }else{
2725a78c22c4Sdrh       pNew->pPrior = pPrior;
2726f23329a2Sdanielk1977       pNew->pRightmost = 0;
2727f23329a2Sdanielk1977     }
2728a78c22c4Sdrh     p->pPrior = pNew;
2729a78c22c4Sdrh     if( db->mallocFailed ) return 1;
2730a78c22c4Sdrh   }
2731f23329a2Sdanielk1977 
27327d10d5a6Sdrh   /* Begin flattening the iFrom-th entry of the FROM clause
27337d10d5a6Sdrh   ** in the outer query.
2734832508b7Sdrh   */
2735f23329a2Sdanielk1977   pSub = pSub1 = pSubitem->pSelect;
2736c31c2eb8Sdrh 
2737a78c22c4Sdrh   /* Delete the transient table structure associated with the
2738a78c22c4Sdrh   ** subquery
2739a78c22c4Sdrh   */
2740a78c22c4Sdrh   sqlite3DbFree(db, pSubitem->zDatabase);
2741a78c22c4Sdrh   sqlite3DbFree(db, pSubitem->zName);
2742a78c22c4Sdrh   sqlite3DbFree(db, pSubitem->zAlias);
2743a78c22c4Sdrh   pSubitem->zDatabase = 0;
2744a78c22c4Sdrh   pSubitem->zName = 0;
2745a78c22c4Sdrh   pSubitem->zAlias = 0;
2746a78c22c4Sdrh   pSubitem->pSelect = 0;
2747a78c22c4Sdrh 
2748a78c22c4Sdrh   /* Defer deleting the Table object associated with the
2749a78c22c4Sdrh   ** subquery until code generation is
2750a78c22c4Sdrh   ** complete, since there may still exist Expr.pTab entries that
2751a78c22c4Sdrh   ** refer to the subquery even after flattening.  Ticket #3346.
2752a78c22c4Sdrh   */
2753a78c22c4Sdrh   if( pSubitem->pTab!=0 ){
2754a78c22c4Sdrh     Table *pTabToDel = pSubitem->pTab;
2755a78c22c4Sdrh     if( pTabToDel->nRef==1 ){
2756a78c22c4Sdrh       pTabToDel->pNextZombie = pParse->pZombieTab;
2757a78c22c4Sdrh       pParse->pZombieTab = pTabToDel;
2758a78c22c4Sdrh     }else{
2759a78c22c4Sdrh       pTabToDel->nRef--;
2760a78c22c4Sdrh     }
2761a78c22c4Sdrh     pSubitem->pTab = 0;
2762a78c22c4Sdrh   }
2763a78c22c4Sdrh 
2764a78c22c4Sdrh   /* The following loop runs once for each term in a compound-subquery
2765a78c22c4Sdrh   ** flattening (as described above).  If we are doing a different kind
2766a78c22c4Sdrh   ** of flattening - a flattening other than a compound-subquery flattening -
2767a78c22c4Sdrh   ** then this loop only runs once.
2768a78c22c4Sdrh   **
2769a78c22c4Sdrh   ** This loop moves all of the FROM elements of the subquery into the
2770c31c2eb8Sdrh   ** the FROM clause of the outer query.  Before doing this, remember
2771c31c2eb8Sdrh   ** the cursor number for the original outer query FROM element in
2772c31c2eb8Sdrh   ** iParent.  The iParent cursor will never be used.  Subsequent code
2773c31c2eb8Sdrh   ** will scan expressions looking for iParent references and replace
2774c31c2eb8Sdrh   ** those references with expressions that resolve to the subquery FROM
2775c31c2eb8Sdrh   ** elements we are now copying in.
2776c31c2eb8Sdrh   */
2777a78c22c4Sdrh   for(pParent=p; pParent; pParent=pParent->pPrior, pSub=pSub->pPrior){
2778a78c22c4Sdrh     int nSubSrc;
2779ea678832Sdrh     u8 jointype = 0;
2780a78c22c4Sdrh     pSubSrc = pSub->pSrc;     /* FROM clause of subquery */
2781a78c22c4Sdrh     nSubSrc = pSubSrc->nSrc;  /* Number of terms in subquery FROM clause */
2782a78c22c4Sdrh     pSrc = pParent->pSrc;     /* FROM clause of the outer query */
2783588a9a1aSdrh 
2784a78c22c4Sdrh     if( pSrc ){
2785a78c22c4Sdrh       assert( pParent==p );  /* First time through the loop */
2786a78c22c4Sdrh       jointype = pSubitem->jointype;
2787588a9a1aSdrh     }else{
2788a78c22c4Sdrh       assert( pParent!=p );  /* 2nd and subsequent times through the loop */
2789a78c22c4Sdrh       pSrc = pParent->pSrc = sqlite3SrcListAppend(db, 0, 0, 0);
2790cfa063b3Sdrh       if( pSrc==0 ){
2791a78c22c4Sdrh         assert( db->mallocFailed );
2792a78c22c4Sdrh         break;
2793cfa063b3Sdrh       }
2794c31c2eb8Sdrh     }
2795a78c22c4Sdrh 
2796a78c22c4Sdrh     /* The subquery uses a single slot of the FROM clause of the outer
2797a78c22c4Sdrh     ** query.  If the subquery has more than one element in its FROM clause,
2798a78c22c4Sdrh     ** then expand the outer query to make space for it to hold all elements
2799a78c22c4Sdrh     ** of the subquery.
2800a78c22c4Sdrh     **
2801a78c22c4Sdrh     ** Example:
2802a78c22c4Sdrh     **
2803a78c22c4Sdrh     **    SELECT * FROM tabA, (SELECT * FROM sub1, sub2), tabB;
2804a78c22c4Sdrh     **
2805a78c22c4Sdrh     ** The outer query has 3 slots in its FROM clause.  One slot of the
2806a78c22c4Sdrh     ** outer query (the middle slot) is used by the subquery.  The next
2807a78c22c4Sdrh     ** block of code will expand the out query to 4 slots.  The middle
2808a78c22c4Sdrh     ** slot is expanded to two slots in order to make space for the
2809a78c22c4Sdrh     ** two elements in the FROM clause of the subquery.
2810a78c22c4Sdrh     */
2811a78c22c4Sdrh     if( nSubSrc>1 ){
2812a78c22c4Sdrh       pParent->pSrc = pSrc = sqlite3SrcListEnlarge(db, pSrc, nSubSrc-1,iFrom+1);
2813a78c22c4Sdrh       if( db->mallocFailed ){
2814a78c22c4Sdrh         break;
2815c31c2eb8Sdrh       }
2816c31c2eb8Sdrh     }
2817a78c22c4Sdrh 
2818a78c22c4Sdrh     /* Transfer the FROM clause terms from the subquery into the
2819a78c22c4Sdrh     ** outer query.
2820a78c22c4Sdrh     */
2821c31c2eb8Sdrh     for(i=0; i<nSubSrc; i++){
2822c31c2eb8Sdrh       pSrc->a[i+iFrom] = pSubSrc->a[i];
2823c31c2eb8Sdrh       memset(&pSubSrc->a[i], 0, sizeof(pSubSrc->a[i]));
2824c31c2eb8Sdrh     }
282561dfc31dSdrh     pSrc->a[iFrom].jointype = jointype;
2826c31c2eb8Sdrh 
2827c31c2eb8Sdrh     /* Now begin substituting subquery result set expressions for
2828c31c2eb8Sdrh     ** references to the iParent in the outer query.
2829c31c2eb8Sdrh     **
2830c31c2eb8Sdrh     ** Example:
2831c31c2eb8Sdrh     **
2832c31c2eb8Sdrh     **   SELECT a+5, b*10 FROM (SELECT x*3 AS a, y+10 AS b FROM t1) WHERE a>b;
2833c31c2eb8Sdrh     **   \                     \_____________ subquery __________/          /
2834c31c2eb8Sdrh     **    \_____________________ outer query ______________________________/
2835c31c2eb8Sdrh     **
2836c31c2eb8Sdrh     ** We look at every expression in the outer query and every place we see
2837c31c2eb8Sdrh     ** "a" we substitute "x*3" and every place we see "b" we substitute "y+10".
2838c31c2eb8Sdrh     */
2839f23329a2Sdanielk1977     pList = pParent->pEList;
2840832508b7Sdrh     for(i=0; i<pList->nExpr; i++){
28416977fea8Sdrh       Expr *pExpr;
28426977fea8Sdrh       if( pList->a[i].zName==0 && (pExpr = pList->a[i].pExpr)->span.z!=0 ){
284317435752Sdrh         pList->a[i].zName =
284417435752Sdrh                sqlite3DbStrNDup(db, (char*)pExpr->span.z, pExpr->span.n);
2845832508b7Sdrh       }
2846832508b7Sdrh     }
2847f23329a2Sdanielk1977     substExprList(db, pParent->pEList, iParent, pSub->pEList);
28481b2e0329Sdrh     if( isAgg ){
2849f23329a2Sdanielk1977       substExprList(db, pParent->pGroupBy, iParent, pSub->pEList);
2850f23329a2Sdanielk1977       substExpr(db, pParent->pHaving, iParent, pSub->pEList);
28511b2e0329Sdrh     }
2852174b6195Sdrh     if( pSub->pOrderBy ){
2853f23329a2Sdanielk1977       assert( pParent->pOrderBy==0 );
2854f23329a2Sdanielk1977       pParent->pOrderBy = pSub->pOrderBy;
2855174b6195Sdrh       pSub->pOrderBy = 0;
2856f23329a2Sdanielk1977     }else if( pParent->pOrderBy ){
2857f23329a2Sdanielk1977       substExprList(db, pParent->pOrderBy, iParent, pSub->pEList);
2858174b6195Sdrh     }
2859832508b7Sdrh     if( pSub->pWhere ){
28606ab3a2ecSdanielk1977       pWhere = sqlite3ExprDup(db, pSub->pWhere, 0);
2861832508b7Sdrh     }else{
2862832508b7Sdrh       pWhere = 0;
2863832508b7Sdrh     }
2864832508b7Sdrh     if( subqueryIsAgg ){
2865f23329a2Sdanielk1977       assert( pParent->pHaving==0 );
2866f23329a2Sdanielk1977       pParent->pHaving = pParent->pWhere;
2867f23329a2Sdanielk1977       pParent->pWhere = pWhere;
2868f23329a2Sdanielk1977       substExpr(db, pParent->pHaving, iParent, pSub->pEList);
2869f23329a2Sdanielk1977       pParent->pHaving = sqlite3ExprAnd(db, pParent->pHaving,
28706ab3a2ecSdanielk1977                                   sqlite3ExprDup(db, pSub->pHaving, 0));
2871f23329a2Sdanielk1977       assert( pParent->pGroupBy==0 );
28726ab3a2ecSdanielk1977       pParent->pGroupBy = sqlite3ExprListDup(db, pSub->pGroupBy, 0);
2873832508b7Sdrh     }else{
2874f23329a2Sdanielk1977       substExpr(db, pParent->pWhere, iParent, pSub->pEList);
2875f23329a2Sdanielk1977       pParent->pWhere = sqlite3ExprAnd(db, pParent->pWhere, pWhere);
2876832508b7Sdrh     }
2877c31c2eb8Sdrh 
2878c31c2eb8Sdrh     /* The flattened query is distinct if either the inner or the
2879c31c2eb8Sdrh     ** outer query is distinct.
2880c31c2eb8Sdrh     */
28817d10d5a6Sdrh     pParent->selFlags |= pSub->selFlags & SF_Distinct;
28828c74a8caSdrh 
2883a58fdfb1Sdanielk1977     /*
2884a58fdfb1Sdanielk1977     ** SELECT ... FROM (SELECT ... LIMIT a OFFSET b) LIMIT x OFFSET y;
2885ac83963aSdrh     **
2886ac83963aSdrh     ** One is tempted to try to add a and b to combine the limits.  But this
2887ac83963aSdrh     ** does not work if either limit is negative.
2888a58fdfb1Sdanielk1977     */
2889a2dc3b1aSdanielk1977     if( pSub->pLimit ){
2890f23329a2Sdanielk1977       pParent->pLimit = pSub->pLimit;
2891a2dc3b1aSdanielk1977       pSub->pLimit = 0;
2892df199a25Sdrh     }
2893f23329a2Sdanielk1977   }
28948c74a8caSdrh 
2895c31c2eb8Sdrh   /* Finially, delete what is left of the subquery and return
2896c31c2eb8Sdrh   ** success.
2897c31c2eb8Sdrh   */
2898633e6d57Sdrh   sqlite3SelectDelete(db, pSub1);
2899f23329a2Sdanielk1977 
2900832508b7Sdrh   return 1;
29011350b030Sdrh }
29023514b6f7Sshane #endif /* !defined(SQLITE_OMIT_SUBQUERY) || !defined(SQLITE_OMIT_VIEW) */
29031350b030Sdrh 
29041350b030Sdrh /*
2905a9d1ccb9Sdanielk1977 ** Analyze the SELECT statement passed as an argument to see if it
290608c88eb0Sdrh ** is a min() or max() query. Return WHERE_ORDERBY_MIN or WHERE_ORDERBY_MAX if
2907a9d1ccb9Sdanielk1977 ** it is, or 0 otherwise. At present, a query is considered to be
2908a9d1ccb9Sdanielk1977 ** a min()/max() query if:
2909a9d1ccb9Sdanielk1977 **
2910738bdcfbSdanielk1977 **   1. There is a single object in the FROM clause.
2911738bdcfbSdanielk1977 **
2912738bdcfbSdanielk1977 **   2. There is a single expression in the result set, and it is
2913738bdcfbSdanielk1977 **      either min(x) or max(x), where x is a column reference.
2914a9d1ccb9Sdanielk1977 */
29154f21c4afSdrh static u8 minMaxQuery(Select *p){
2916a9d1ccb9Sdanielk1977   Expr *pExpr;
2917a9d1ccb9Sdanielk1977   ExprList *pEList = p->pEList;
2918a9d1ccb9Sdanielk1977 
291908c88eb0Sdrh   if( pEList->nExpr!=1 ) return WHERE_ORDERBY_NORMAL;
2920a9d1ccb9Sdanielk1977   pExpr = pEList->a[0].pExpr;
29216ab3a2ecSdanielk1977   if( ExprHasProperty(pExpr, EP_xIsSelect) ) return 0;
29226ab3a2ecSdanielk1977   pEList = pExpr->x.pList;
2923a9d1ccb9Sdanielk1977   if( pExpr->op!=TK_AGG_FUNCTION || pEList==0 || pEList->nExpr!=1 ) return 0;
292408c88eb0Sdrh   if( pEList->a[0].pExpr->op!=TK_AGG_COLUMN ) return WHERE_ORDERBY_NORMAL;
292508c88eb0Sdrh   if( pExpr->token.n!=3 ) return WHERE_ORDERBY_NORMAL;
2926a9d1ccb9Sdanielk1977   if( sqlite3StrNICmp((char*)pExpr->token.z,"min",3)==0 ){
292708c88eb0Sdrh     return WHERE_ORDERBY_MIN;
2928a9d1ccb9Sdanielk1977   }else if( sqlite3StrNICmp((char*)pExpr->token.z,"max",3)==0 ){
292908c88eb0Sdrh     return WHERE_ORDERBY_MAX;
2930a9d1ccb9Sdanielk1977   }
293108c88eb0Sdrh   return WHERE_ORDERBY_NORMAL;
2932a9d1ccb9Sdanielk1977 }
2933a9d1ccb9Sdanielk1977 
2934a9d1ccb9Sdanielk1977 /*
2935a5533162Sdanielk1977 ** The select statement passed as the first argument is an aggregate query.
2936a5533162Sdanielk1977 ** The second argment is the associated aggregate-info object. This
2937a5533162Sdanielk1977 ** function tests if the SELECT is of the form:
2938a5533162Sdanielk1977 **
2939a5533162Sdanielk1977 **   SELECT count(*) FROM <tbl>
2940a5533162Sdanielk1977 **
2941a5533162Sdanielk1977 ** where table is a database table, not a sub-select or view. If the query
2942a5533162Sdanielk1977 ** does match this pattern, then a pointer to the Table object representing
2943a5533162Sdanielk1977 ** <tbl> is returned. Otherwise, 0 is returned.
2944a5533162Sdanielk1977 */
2945a5533162Sdanielk1977 static Table *isSimpleCount(Select *p, AggInfo *pAggInfo){
2946a5533162Sdanielk1977   Table *pTab;
2947a5533162Sdanielk1977   Expr *pExpr;
2948a5533162Sdanielk1977 
2949a5533162Sdanielk1977   assert( !p->pGroupBy );
2950a5533162Sdanielk1977 
29517a895a80Sdanielk1977   if( p->pWhere || p->pEList->nExpr!=1
2952a5533162Sdanielk1977    || p->pSrc->nSrc!=1 || p->pSrc->a[0].pSelect
2953a5533162Sdanielk1977   ){
2954a5533162Sdanielk1977     return 0;
2955a5533162Sdanielk1977   }
2956a5533162Sdanielk1977   pTab = p->pSrc->a[0].pTab;
2957a5533162Sdanielk1977   pExpr = p->pEList->a[0].pExpr;
295802f33725Sdanielk1977   assert( pTab && !pTab->pSelect && pExpr );
295902f33725Sdanielk1977 
296002f33725Sdanielk1977   if( IsVirtual(pTab) ) return 0;
2961a5533162Sdanielk1977   if( pExpr->op!=TK_AGG_FUNCTION ) return 0;
2962a5533162Sdanielk1977   if( (pAggInfo->aFunc[0].pFunc->flags&SQLITE_FUNC_COUNT)==0 ) return 0;
2963a5533162Sdanielk1977   if( pExpr->flags&EP_Distinct ) return 0;
2964a5533162Sdanielk1977 
2965a5533162Sdanielk1977   return pTab;
2966a5533162Sdanielk1977 }
2967a5533162Sdanielk1977 
2968a5533162Sdanielk1977 /*
2969b1c685b0Sdanielk1977 ** If the source-list item passed as an argument was augmented with an
2970b1c685b0Sdanielk1977 ** INDEXED BY clause, then try to locate the specified index. If there
2971b1c685b0Sdanielk1977 ** was such a clause and the named index cannot be found, return
2972b1c685b0Sdanielk1977 ** SQLITE_ERROR and leave an error in pParse. Otherwise, populate
2973b1c685b0Sdanielk1977 ** pFrom->pIndex and return SQLITE_OK.
2974b1c685b0Sdanielk1977 */
2975b1c685b0Sdanielk1977 int sqlite3IndexedByLookup(Parse *pParse, struct SrcList_item *pFrom){
2976b1c685b0Sdanielk1977   if( pFrom->pTab && pFrom->zIndex ){
2977b1c685b0Sdanielk1977     Table *pTab = pFrom->pTab;
2978b1c685b0Sdanielk1977     char *zIndex = pFrom->zIndex;
2979b1c685b0Sdanielk1977     Index *pIdx;
2980b1c685b0Sdanielk1977     for(pIdx=pTab->pIndex;
2981b1c685b0Sdanielk1977         pIdx && sqlite3StrICmp(pIdx->zName, zIndex);
2982b1c685b0Sdanielk1977         pIdx=pIdx->pNext
2983b1c685b0Sdanielk1977     );
2984b1c685b0Sdanielk1977     if( !pIdx ){
2985b1c685b0Sdanielk1977       sqlite3ErrorMsg(pParse, "no such index: %s", zIndex, 0);
2986b1c685b0Sdanielk1977       return SQLITE_ERROR;
2987b1c685b0Sdanielk1977     }
2988b1c685b0Sdanielk1977     pFrom->pIndex = pIdx;
2989b1c685b0Sdanielk1977   }
2990b1c685b0Sdanielk1977   return SQLITE_OK;
2991b1c685b0Sdanielk1977 }
2992b1c685b0Sdanielk1977 
2993b1c685b0Sdanielk1977 /*
29947d10d5a6Sdrh ** This routine is a Walker callback for "expanding" a SELECT statement.
29957d10d5a6Sdrh ** "Expanding" means to do the following:
29967d10d5a6Sdrh **
29977d10d5a6Sdrh **    (1)  Make sure VDBE cursor numbers have been assigned to every
29987d10d5a6Sdrh **         element of the FROM clause.
29997d10d5a6Sdrh **
30007d10d5a6Sdrh **    (2)  Fill in the pTabList->a[].pTab fields in the SrcList that
30017d10d5a6Sdrh **         defines FROM clause.  When views appear in the FROM clause,
30027d10d5a6Sdrh **         fill pTabList->a[].pSelect with a copy of the SELECT statement
30037d10d5a6Sdrh **         that implements the view.  A copy is made of the view's SELECT
30047d10d5a6Sdrh **         statement so that we can freely modify or delete that statement
30057d10d5a6Sdrh **         without worrying about messing up the presistent representation
30067d10d5a6Sdrh **         of the view.
30077d10d5a6Sdrh **
30087d10d5a6Sdrh **    (3)  Add terms to the WHERE clause to accomodate the NATURAL keyword
30097d10d5a6Sdrh **         on joins and the ON and USING clause of joins.
30107d10d5a6Sdrh **
30117d10d5a6Sdrh **    (4)  Scan the list of columns in the result set (pEList) looking
30127d10d5a6Sdrh **         for instances of the "*" operator or the TABLE.* operator.
30137d10d5a6Sdrh **         If found, expand each "*" to be every column in every table
30147d10d5a6Sdrh **         and TABLE.* to be every column in TABLE.
30157d10d5a6Sdrh **
3016b3bce662Sdanielk1977 */
30177d10d5a6Sdrh static int selectExpander(Walker *pWalker, Select *p){
30187d10d5a6Sdrh   Parse *pParse = pWalker->pParse;
30197d10d5a6Sdrh   int i, j, k;
30207d10d5a6Sdrh   SrcList *pTabList;
30217d10d5a6Sdrh   ExprList *pEList;
30227d10d5a6Sdrh   struct SrcList_item *pFrom;
30237d10d5a6Sdrh   sqlite3 *db = pParse->db;
30247d10d5a6Sdrh 
30257d10d5a6Sdrh   if( db->mallocFailed  ){
30267d10d5a6Sdrh     return WRC_Abort;
30277d10d5a6Sdrh   }
30287d10d5a6Sdrh   if( p->pSrc==0 || (p->selFlags & SF_Expanded)!=0 ){
30297d10d5a6Sdrh     return WRC_Prune;
30307d10d5a6Sdrh   }
30317d10d5a6Sdrh   p->selFlags |= SF_Expanded;
30327d10d5a6Sdrh   pTabList = p->pSrc;
30337d10d5a6Sdrh   pEList = p->pEList;
30347d10d5a6Sdrh 
30357d10d5a6Sdrh   /* Make sure cursor numbers have been assigned to all entries in
30367d10d5a6Sdrh   ** the FROM clause of the SELECT statement.
30377d10d5a6Sdrh   */
30387d10d5a6Sdrh   sqlite3SrcListAssignCursors(pParse, pTabList);
30397d10d5a6Sdrh 
30407d10d5a6Sdrh   /* Look up every table named in the FROM clause of the select.  If
30417d10d5a6Sdrh   ** an entry of the FROM clause is a subquery instead of a table or view,
30427d10d5a6Sdrh   ** then create a transient table structure to describe the subquery.
30437d10d5a6Sdrh   */
30447d10d5a6Sdrh   for(i=0, pFrom=pTabList->a; i<pTabList->nSrc; i++, pFrom++){
30457d10d5a6Sdrh     Table *pTab;
30467d10d5a6Sdrh     if( pFrom->pTab!=0 ){
30477d10d5a6Sdrh       /* This statement has already been prepared.  There is no need
30487d10d5a6Sdrh       ** to go further. */
30497d10d5a6Sdrh       assert( i==0 );
30507d10d5a6Sdrh       return WRC_Prune;
30517d10d5a6Sdrh     }
30527d10d5a6Sdrh     if( pFrom->zName==0 ){
30537d10d5a6Sdrh #ifndef SQLITE_OMIT_SUBQUERY
30547d10d5a6Sdrh       Select *pSel = pFrom->pSelect;
30557d10d5a6Sdrh       /* A sub-query in the FROM clause of a SELECT */
30567d10d5a6Sdrh       assert( pSel!=0 );
30577d10d5a6Sdrh       assert( pFrom->pTab==0 );
30587d10d5a6Sdrh       sqlite3WalkSelect(pWalker, pSel);
30597d10d5a6Sdrh       pFrom->pTab = pTab = sqlite3DbMallocZero(db, sizeof(Table));
30607d10d5a6Sdrh       if( pTab==0 ) return WRC_Abort;
3061d9da78a2Sdrh       pTab->dbMem = db->lookaside.bEnabled ? db : 0;
30627d10d5a6Sdrh       pTab->nRef = 1;
30637d10d5a6Sdrh       pTab->zName = sqlite3MPrintf(db, "sqlite_subquery_%p_", (void*)pTab);
30647d10d5a6Sdrh       while( pSel->pPrior ){ pSel = pSel->pPrior; }
30657d10d5a6Sdrh       selectColumnsFromExprList(pParse, pSel->pEList, &pTab->nCol, &pTab->aCol);
30667d10d5a6Sdrh       pTab->iPKey = -1;
30677d10d5a6Sdrh       pTab->tabFlags |= TF_Ephemeral;
30687d10d5a6Sdrh #endif
30697d10d5a6Sdrh     }else{
30707d10d5a6Sdrh       /* An ordinary table or view name in the FROM clause */
30717d10d5a6Sdrh       assert( pFrom->pTab==0 );
30727d10d5a6Sdrh       pFrom->pTab = pTab =
30737d10d5a6Sdrh         sqlite3LocateTable(pParse,0,pFrom->zName,pFrom->zDatabase);
30747d10d5a6Sdrh       if( pTab==0 ) return WRC_Abort;
30757d10d5a6Sdrh       pTab->nRef++;
30767d10d5a6Sdrh #if !defined(SQLITE_OMIT_VIEW) || !defined (SQLITE_OMIT_VIRTUALTABLE)
30777d10d5a6Sdrh       if( pTab->pSelect || IsVirtual(pTab) ){
30787d10d5a6Sdrh         /* We reach here if the named table is a really a view */
30797d10d5a6Sdrh         if( sqlite3ViewGetColumnNames(pParse, pTab) ) return WRC_Abort;
30807d10d5a6Sdrh 
30817d10d5a6Sdrh         /* If pFrom->pSelect!=0 it means we are dealing with a
30827d10d5a6Sdrh         ** view within a view.  The SELECT structure has already been
30837d10d5a6Sdrh         ** copied by the outer view so we can skip the copy step here
30847d10d5a6Sdrh         ** in the inner view.
30857d10d5a6Sdrh         */
30867d10d5a6Sdrh         if( pFrom->pSelect==0 ){
30876ab3a2ecSdanielk1977           pFrom->pSelect = sqlite3SelectDup(db, pTab->pSelect, 0);
30887d10d5a6Sdrh           sqlite3WalkSelect(pWalker, pFrom->pSelect);
30897d10d5a6Sdrh         }
30907d10d5a6Sdrh       }
30917d10d5a6Sdrh #endif
30927d10d5a6Sdrh     }
309385574e31Sdanielk1977 
309485574e31Sdanielk1977     /* Locate the index named by the INDEXED BY clause, if any. */
3095b1c685b0Sdanielk1977     if( sqlite3IndexedByLookup(pParse, pFrom) ){
309685574e31Sdanielk1977       return WRC_Abort;
309785574e31Sdanielk1977     }
30987d10d5a6Sdrh   }
30997d10d5a6Sdrh 
31007d10d5a6Sdrh   /* Process NATURAL keywords, and ON and USING clauses of joins.
31017d10d5a6Sdrh   */
31027d10d5a6Sdrh   if( db->mallocFailed || sqliteProcessJoin(pParse, p) ){
31037d10d5a6Sdrh     return WRC_Abort;
31047d10d5a6Sdrh   }
31057d10d5a6Sdrh 
31067d10d5a6Sdrh   /* For every "*" that occurs in the column list, insert the names of
31077d10d5a6Sdrh   ** all columns in all tables.  And for every TABLE.* insert the names
31087d10d5a6Sdrh   ** of all columns in TABLE.  The parser inserted a special expression
31097d10d5a6Sdrh   ** with the TK_ALL operator for each "*" that it found in the column list.
31107d10d5a6Sdrh   ** The following code just has to locate the TK_ALL expressions and expand
31117d10d5a6Sdrh   ** each one to the list of all columns in all tables.
31127d10d5a6Sdrh   **
31137d10d5a6Sdrh   ** The first loop just checks to see if there are any "*" operators
31147d10d5a6Sdrh   ** that need expanding.
31157d10d5a6Sdrh   */
31167d10d5a6Sdrh   for(k=0; k<pEList->nExpr; k++){
31177d10d5a6Sdrh     Expr *pE = pEList->a[k].pExpr;
31187d10d5a6Sdrh     if( pE->op==TK_ALL ) break;
31197d10d5a6Sdrh     if( pE->op==TK_DOT && pE->pRight && pE->pRight->op==TK_ALL
31207d10d5a6Sdrh          && pE->pLeft && pE->pLeft->op==TK_ID ) break;
31217d10d5a6Sdrh   }
31227d10d5a6Sdrh   if( k<pEList->nExpr ){
31237d10d5a6Sdrh     /*
31247d10d5a6Sdrh     ** If we get here it means the result set contains one or more "*"
31257d10d5a6Sdrh     ** operators that need to be expanded.  Loop through each expression
31267d10d5a6Sdrh     ** in the result set and expand them one by one.
31277d10d5a6Sdrh     */
31287d10d5a6Sdrh     struct ExprList_item *a = pEList->a;
31297d10d5a6Sdrh     ExprList *pNew = 0;
31307d10d5a6Sdrh     int flags = pParse->db->flags;
31317d10d5a6Sdrh     int longNames = (flags & SQLITE_FullColNames)!=0
31327d10d5a6Sdrh                       && (flags & SQLITE_ShortColNames)==0;
31337d10d5a6Sdrh 
31347d10d5a6Sdrh     for(k=0; k<pEList->nExpr; k++){
31357d10d5a6Sdrh       Expr *pE = a[k].pExpr;
31367d10d5a6Sdrh       if( pE->op!=TK_ALL &&
31377d10d5a6Sdrh            (pE->op!=TK_DOT || pE->pRight==0 || pE->pRight->op!=TK_ALL) ){
31387d10d5a6Sdrh         /* This particular expression does not need to be expanded.
31397d10d5a6Sdrh         */
31407d10d5a6Sdrh         pNew = sqlite3ExprListAppend(pParse, pNew, a[k].pExpr, 0);
31417d10d5a6Sdrh         if( pNew ){
31427d10d5a6Sdrh           pNew->a[pNew->nExpr-1].zName = a[k].zName;
31437d10d5a6Sdrh         }
31447d10d5a6Sdrh         a[k].pExpr = 0;
31457d10d5a6Sdrh         a[k].zName = 0;
31467d10d5a6Sdrh       }else{
31477d10d5a6Sdrh         /* This expression is a "*" or a "TABLE.*" and needs to be
31487d10d5a6Sdrh         ** expanded. */
31497d10d5a6Sdrh         int tableSeen = 0;      /* Set to 1 when TABLE matches */
31507d10d5a6Sdrh         char *zTName;            /* text of name of TABLE */
31517d10d5a6Sdrh         if( pE->op==TK_DOT && pE->pLeft ){
31527d10d5a6Sdrh           zTName = sqlite3NameFromToken(db, &pE->pLeft->token);
31537d10d5a6Sdrh         }else{
31547d10d5a6Sdrh           zTName = 0;
31557d10d5a6Sdrh         }
31567d10d5a6Sdrh         for(i=0, pFrom=pTabList->a; i<pTabList->nSrc; i++, pFrom++){
31577d10d5a6Sdrh           Table *pTab = pFrom->pTab;
31587d10d5a6Sdrh           char *zTabName = pFrom->zAlias;
31597d10d5a6Sdrh           if( zTabName==0 || zTabName[0]==0 ){
31607d10d5a6Sdrh             zTabName = pTab->zName;
31617d10d5a6Sdrh           }
31627d10d5a6Sdrh           if( db->mallocFailed ) break;
31637d10d5a6Sdrh           if( zTName && sqlite3StrICmp(zTName, zTabName)!=0 ){
31647d10d5a6Sdrh             continue;
31657d10d5a6Sdrh           }
31667d10d5a6Sdrh           tableSeen = 1;
31677d10d5a6Sdrh           for(j=0; j<pTab->nCol; j++){
31687d10d5a6Sdrh             Expr *pExpr, *pRight;
31697d10d5a6Sdrh             char *zName = pTab->aCol[j].zName;
31707d10d5a6Sdrh 
31717d10d5a6Sdrh             /* If a column is marked as 'hidden' (currently only possible
31727d10d5a6Sdrh             ** for virtual tables), do not include it in the expanded
31737d10d5a6Sdrh             ** result-set list.
31747d10d5a6Sdrh             */
31757d10d5a6Sdrh             if( IsHiddenColumn(&pTab->aCol[j]) ){
31767d10d5a6Sdrh               assert(IsVirtual(pTab));
31777d10d5a6Sdrh               continue;
31787d10d5a6Sdrh             }
31797d10d5a6Sdrh 
3180da55c48aSdrh             if( i>0 && zTName==0 ){
31817d10d5a6Sdrh               struct SrcList_item *pLeft = &pTabList->a[i-1];
31827d10d5a6Sdrh               if( (pLeft[1].jointype & JT_NATURAL)!=0 &&
31837d10d5a6Sdrh                         columnIndex(pLeft->pTab, zName)>=0 ){
31847d10d5a6Sdrh                 /* In a NATURAL join, omit the join columns from the
31857d10d5a6Sdrh                 ** table on the right */
31867d10d5a6Sdrh                 continue;
31877d10d5a6Sdrh               }
31887d10d5a6Sdrh               if( sqlite3IdListIndex(pLeft[1].pUsing, zName)>=0 ){
31897d10d5a6Sdrh                 /* In a join with a USING clause, omit columns in the
31907d10d5a6Sdrh                 ** using clause from the table on the right. */
31917d10d5a6Sdrh                 continue;
31927d10d5a6Sdrh               }
31937d10d5a6Sdrh             }
31947d10d5a6Sdrh             pRight = sqlite3PExpr(pParse, TK_ID, 0, 0, 0);
31957d10d5a6Sdrh             if( pRight==0 ) break;
319624fb627aSdrh             setToken(&pRight->token, zName);
31977d10d5a6Sdrh             if( longNames || pTabList->nSrc>1 ){
31987d10d5a6Sdrh               Expr *pLeft = sqlite3PExpr(pParse, TK_ID, 0, 0, 0);
31997d10d5a6Sdrh               pExpr = sqlite3PExpr(pParse, TK_DOT, pLeft, pRight, 0);
32007d10d5a6Sdrh               if( pExpr==0 ) break;
320124fb627aSdrh               setToken(&pLeft->token, zTabName);
32027d10d5a6Sdrh               setToken(&pExpr->span,
32037d10d5a6Sdrh                   sqlite3MPrintf(db, "%s.%s", zTabName, zName));
32047d10d5a6Sdrh               pExpr->span.dyn = 1;
32057d10d5a6Sdrh               pExpr->token.z = 0;
32067d10d5a6Sdrh               pExpr->token.n = 0;
32077d10d5a6Sdrh               pExpr->token.dyn = 0;
32087d10d5a6Sdrh             }else{
32097d10d5a6Sdrh               pExpr = pRight;
32107d10d5a6Sdrh               pExpr->span = pExpr->token;
32117d10d5a6Sdrh               pExpr->span.dyn = 0;
32127d10d5a6Sdrh             }
32137d10d5a6Sdrh             if( longNames ){
32147d10d5a6Sdrh               pNew = sqlite3ExprListAppend(pParse, pNew, pExpr, &pExpr->span);
32157d10d5a6Sdrh             }else{
32167d10d5a6Sdrh               pNew = sqlite3ExprListAppend(pParse, pNew, pExpr, &pRight->token);
32177d10d5a6Sdrh             }
32187d10d5a6Sdrh           }
32197d10d5a6Sdrh         }
32207d10d5a6Sdrh         if( !tableSeen ){
32217d10d5a6Sdrh           if( zTName ){
32227d10d5a6Sdrh             sqlite3ErrorMsg(pParse, "no such table: %s", zTName);
32237d10d5a6Sdrh           }else{
32247d10d5a6Sdrh             sqlite3ErrorMsg(pParse, "no tables specified");
32257d10d5a6Sdrh           }
32267d10d5a6Sdrh         }
32277d10d5a6Sdrh         sqlite3DbFree(db, zTName);
32287d10d5a6Sdrh       }
32297d10d5a6Sdrh     }
32307d10d5a6Sdrh     sqlite3ExprListDelete(db, pEList);
32317d10d5a6Sdrh     p->pEList = pNew;
32327d10d5a6Sdrh   }
32337d10d5a6Sdrh #if SQLITE_MAX_COLUMN
32347d10d5a6Sdrh   if( p->pEList && p->pEList->nExpr>db->aLimit[SQLITE_LIMIT_COLUMN] ){
32357d10d5a6Sdrh     sqlite3ErrorMsg(pParse, "too many columns in result set");
32367d10d5a6Sdrh   }
32377d10d5a6Sdrh #endif
32387d10d5a6Sdrh   return WRC_Continue;
32397d10d5a6Sdrh }
32407d10d5a6Sdrh 
32417d10d5a6Sdrh /*
32427d10d5a6Sdrh ** No-op routine for the parse-tree walker.
32437d10d5a6Sdrh **
32447d10d5a6Sdrh ** When this routine is the Walker.xExprCallback then expression trees
32457d10d5a6Sdrh ** are walked without any actions being taken at each node.  Presumably,
32467d10d5a6Sdrh ** when this routine is used for Walker.xExprCallback then
32477d10d5a6Sdrh ** Walker.xSelectCallback is set to do something useful for every
32487d10d5a6Sdrh ** subquery in the parser tree.
32497d10d5a6Sdrh */
325062c14b34Sdanielk1977 static int exprWalkNoop(Walker *NotUsed, Expr *NotUsed2){
325162c14b34Sdanielk1977   UNUSED_PARAMETER2(NotUsed, NotUsed2);
32527d10d5a6Sdrh   return WRC_Continue;
32537d10d5a6Sdrh }
32547d10d5a6Sdrh 
32557d10d5a6Sdrh /*
32567d10d5a6Sdrh ** This routine "expands" a SELECT statement and all of its subqueries.
32577d10d5a6Sdrh ** For additional information on what it means to "expand" a SELECT
32587d10d5a6Sdrh ** statement, see the comment on the selectExpand worker callback above.
32597d10d5a6Sdrh **
32607d10d5a6Sdrh ** Expanding a SELECT statement is the first step in processing a
32617d10d5a6Sdrh ** SELECT statement.  The SELECT statement must be expanded before
32627d10d5a6Sdrh ** name resolution is performed.
32637d10d5a6Sdrh **
32647d10d5a6Sdrh ** If anything goes wrong, an error message is written into pParse.
32657d10d5a6Sdrh ** The calling function can detect the problem by looking at pParse->nErr
32667d10d5a6Sdrh ** and/or pParse->db->mallocFailed.
32677d10d5a6Sdrh */
32687d10d5a6Sdrh static void sqlite3SelectExpand(Parse *pParse, Select *pSelect){
32697d10d5a6Sdrh   Walker w;
32707d10d5a6Sdrh   w.xSelectCallback = selectExpander;
32717d10d5a6Sdrh   w.xExprCallback = exprWalkNoop;
32727d10d5a6Sdrh   w.pParse = pParse;
32737d10d5a6Sdrh   sqlite3WalkSelect(&w, pSelect);
32747d10d5a6Sdrh }
32757d10d5a6Sdrh 
32767d10d5a6Sdrh 
32777d10d5a6Sdrh #ifndef SQLITE_OMIT_SUBQUERY
32787d10d5a6Sdrh /*
32797d10d5a6Sdrh ** This is a Walker.xSelectCallback callback for the sqlite3SelectTypeInfo()
32807d10d5a6Sdrh ** interface.
32817d10d5a6Sdrh **
32827d10d5a6Sdrh ** For each FROM-clause subquery, add Column.zType and Column.zColl
32837d10d5a6Sdrh ** information to the Table structure that represents the result set
32847d10d5a6Sdrh ** of that subquery.
32857d10d5a6Sdrh **
32867d10d5a6Sdrh ** The Table structure that represents the result set was constructed
32877d10d5a6Sdrh ** by selectExpander() but the type and collation information was omitted
32887d10d5a6Sdrh ** at that point because identifiers had not yet been resolved.  This
32897d10d5a6Sdrh ** routine is called after identifier resolution.
32907d10d5a6Sdrh */
32917d10d5a6Sdrh static int selectAddSubqueryTypeInfo(Walker *pWalker, Select *p){
32927d10d5a6Sdrh   Parse *pParse;
32937d10d5a6Sdrh   int i;
32947d10d5a6Sdrh   SrcList *pTabList;
32957d10d5a6Sdrh   struct SrcList_item *pFrom;
32967d10d5a6Sdrh 
32979d8b3072Sdrh   assert( p->selFlags & SF_Resolved );
32987d10d5a6Sdrh   if( (p->selFlags & SF_HasTypeInfo)==0 ){
32997d10d5a6Sdrh     p->selFlags |= SF_HasTypeInfo;
33007d10d5a6Sdrh     pParse = pWalker->pParse;
33017d10d5a6Sdrh     pTabList = p->pSrc;
33027d10d5a6Sdrh     for(i=0, pFrom=pTabList->a; i<pTabList->nSrc; i++, pFrom++){
33037d10d5a6Sdrh       Table *pTab = pFrom->pTab;
33047d10d5a6Sdrh       if( pTab && (pTab->tabFlags & TF_Ephemeral)!=0 ){
33057d10d5a6Sdrh         /* A sub-query in the FROM clause of a SELECT */
33067d10d5a6Sdrh         Select *pSel = pFrom->pSelect;
33077d10d5a6Sdrh         assert( pSel );
33087d10d5a6Sdrh         while( pSel->pPrior ) pSel = pSel->pPrior;
33097d10d5a6Sdrh         selectAddColumnTypeAndCollation(pParse, pTab->nCol, pTab->aCol, pSel);
33107d10d5a6Sdrh       }
33117d10d5a6Sdrh     }
33127d10d5a6Sdrh   }
33137d10d5a6Sdrh   return WRC_Continue;
33147d10d5a6Sdrh }
33157d10d5a6Sdrh #endif
33167d10d5a6Sdrh 
33177d10d5a6Sdrh 
33187d10d5a6Sdrh /*
33197d10d5a6Sdrh ** This routine adds datatype and collating sequence information to
33207d10d5a6Sdrh ** the Table structures of all FROM-clause subqueries in a
33217d10d5a6Sdrh ** SELECT statement.
33227d10d5a6Sdrh **
33237d10d5a6Sdrh ** Use this routine after name resolution.
33247d10d5a6Sdrh */
33257d10d5a6Sdrh static void sqlite3SelectAddTypeInfo(Parse *pParse, Select *pSelect){
33267d10d5a6Sdrh #ifndef SQLITE_OMIT_SUBQUERY
33277d10d5a6Sdrh   Walker w;
33287d10d5a6Sdrh   w.xSelectCallback = selectAddSubqueryTypeInfo;
33297d10d5a6Sdrh   w.xExprCallback = exprWalkNoop;
33307d10d5a6Sdrh   w.pParse = pParse;
33317d10d5a6Sdrh   sqlite3WalkSelect(&w, pSelect);
33327d10d5a6Sdrh #endif
33337d10d5a6Sdrh }
33347d10d5a6Sdrh 
33357d10d5a6Sdrh 
33367d10d5a6Sdrh /*
33377d10d5a6Sdrh ** This routine sets of a SELECT statement for processing.  The
33387d10d5a6Sdrh ** following is accomplished:
33397d10d5a6Sdrh **
33407d10d5a6Sdrh **     *  VDBE Cursor numbers are assigned to all FROM-clause terms.
33417d10d5a6Sdrh **     *  Ephemeral Table objects are created for all FROM-clause subqueries.
33427d10d5a6Sdrh **     *  ON and USING clauses are shifted into WHERE statements
33437d10d5a6Sdrh **     *  Wildcards "*" and "TABLE.*" in result sets are expanded.
33447d10d5a6Sdrh **     *  Identifiers in expression are matched to tables.
33457d10d5a6Sdrh **
33467d10d5a6Sdrh ** This routine acts recursively on all subqueries within the SELECT.
33477d10d5a6Sdrh */
33487d10d5a6Sdrh void sqlite3SelectPrep(
3349b3bce662Sdanielk1977   Parse *pParse,         /* The parser context */
3350b3bce662Sdanielk1977   Select *p,             /* The SELECT statement being coded. */
33517d10d5a6Sdrh   NameContext *pOuterNC  /* Name context for container */
3352b3bce662Sdanielk1977 ){
33537d10d5a6Sdrh   sqlite3 *db;
33547d10d5a6Sdrh   if( p==0 ) return;
33557d10d5a6Sdrh   db = pParse->db;
33567d10d5a6Sdrh   if( p->selFlags & SF_HasTypeInfo ) return;
33577d10d5a6Sdrh   if( pParse->nErr || db->mallocFailed ) return;
33587d10d5a6Sdrh   sqlite3SelectExpand(pParse, p);
33597d10d5a6Sdrh   if( pParse->nErr || db->mallocFailed ) return;
33607d10d5a6Sdrh   sqlite3ResolveSelectNames(pParse, p, pOuterNC);
33617d10d5a6Sdrh   if( pParse->nErr || db->mallocFailed ) return;
33627d10d5a6Sdrh   sqlite3SelectAddTypeInfo(pParse, p);
3363f6bbe022Sdrh }
3364b3bce662Sdanielk1977 
3365b3bce662Sdanielk1977 /*
336613449892Sdrh ** Reset the aggregate accumulator.
336713449892Sdrh **
336813449892Sdrh ** The aggregate accumulator is a set of memory cells that hold
336913449892Sdrh ** intermediate results while calculating an aggregate.  This
337013449892Sdrh ** routine simply stores NULLs in all of those memory cells.
3371b3bce662Sdanielk1977 */
337213449892Sdrh static void resetAccumulator(Parse *pParse, AggInfo *pAggInfo){
337313449892Sdrh   Vdbe *v = pParse->pVdbe;
337413449892Sdrh   int i;
3375c99130fdSdrh   struct AggInfo_func *pFunc;
337613449892Sdrh   if( pAggInfo->nFunc+pAggInfo->nColumn==0 ){
337713449892Sdrh     return;
337813449892Sdrh   }
337913449892Sdrh   for(i=0; i<pAggInfo->nColumn; i++){
33804c583128Sdrh     sqlite3VdbeAddOp2(v, OP_Null, 0, pAggInfo->aCol[i].iMem);
338113449892Sdrh   }
3382c99130fdSdrh   for(pFunc=pAggInfo->aFunc, i=0; i<pAggInfo->nFunc; i++, pFunc++){
33834c583128Sdrh     sqlite3VdbeAddOp2(v, OP_Null, 0, pFunc->iMem);
3384c99130fdSdrh     if( pFunc->iDistinct>=0 ){
3385c99130fdSdrh       Expr *pE = pFunc->pExpr;
33866ab3a2ecSdanielk1977       assert( !ExprHasProperty(pE, EP_xIsSelect) );
33876ab3a2ecSdanielk1977       if( pE->x.pList==0 || pE->x.pList->nExpr!=1 ){
33880daa002cSdrh         sqlite3ErrorMsg(pParse, "DISTINCT aggregates must have exactly one "
33890daa002cSdrh            "argument");
3390c99130fdSdrh         pFunc->iDistinct = -1;
3391c99130fdSdrh       }else{
33926ab3a2ecSdanielk1977         KeyInfo *pKeyInfo = keyInfoFromExprList(pParse, pE->x.pList);
339366a5167bSdrh         sqlite3VdbeAddOp4(v, OP_OpenEphemeral, pFunc->iDistinct, 0, 0,
339466a5167bSdrh                           (char*)pKeyInfo, P4_KEYINFO_HANDOFF);
3395c99130fdSdrh       }
3396c99130fdSdrh     }
339713449892Sdrh   }
3398b3bce662Sdanielk1977 }
3399b3bce662Sdanielk1977 
3400b3bce662Sdanielk1977 /*
340113449892Sdrh ** Invoke the OP_AggFinalize opcode for every aggregate function
340213449892Sdrh ** in the AggInfo structure.
3403b3bce662Sdanielk1977 */
340413449892Sdrh static void finalizeAggFunctions(Parse *pParse, AggInfo *pAggInfo){
340513449892Sdrh   Vdbe *v = pParse->pVdbe;
340613449892Sdrh   int i;
340713449892Sdrh   struct AggInfo_func *pF;
340813449892Sdrh   for(i=0, pF=pAggInfo->aFunc; i<pAggInfo->nFunc; i++, pF++){
34096ab3a2ecSdanielk1977     ExprList *pList = pF->pExpr->x.pList;
34106ab3a2ecSdanielk1977     assert( !ExprHasProperty(pF->pExpr, EP_xIsSelect) );
341166a5167bSdrh     sqlite3VdbeAddOp4(v, OP_AggFinal, pF->iMem, pList ? pList->nExpr : 0, 0,
341266a5167bSdrh                       (void*)pF->pFunc, P4_FUNCDEF);
3413b3bce662Sdanielk1977   }
341413449892Sdrh }
341513449892Sdrh 
341613449892Sdrh /*
341713449892Sdrh ** Update the accumulator memory cells for an aggregate based on
341813449892Sdrh ** the current cursor position.
341913449892Sdrh */
342013449892Sdrh static void updateAccumulator(Parse *pParse, AggInfo *pAggInfo){
342113449892Sdrh   Vdbe *v = pParse->pVdbe;
342213449892Sdrh   int i;
342313449892Sdrh   struct AggInfo_func *pF;
342413449892Sdrh   struct AggInfo_col *pC;
342513449892Sdrh 
342613449892Sdrh   pAggInfo->directMode = 1;
3427ceea3321Sdrh   sqlite3ExprCacheClear(pParse);
342813449892Sdrh   for(i=0, pF=pAggInfo->aFunc; i<pAggInfo->nFunc; i++, pF++){
342913449892Sdrh     int nArg;
3430c99130fdSdrh     int addrNext = 0;
343198757157Sdrh     int regAgg;
34326ab3a2ecSdanielk1977     ExprList *pList = pF->pExpr->x.pList;
34336ab3a2ecSdanielk1977     assert( !ExprHasProperty(pF->pExpr, EP_xIsSelect) );
343413449892Sdrh     if( pList ){
343513449892Sdrh       nArg = pList->nExpr;
3436892d3179Sdrh       regAgg = sqlite3GetTempRange(pParse, nArg);
3437191b54cbSdrh       sqlite3ExprCodeExprList(pParse, pList, regAgg, 0);
343813449892Sdrh     }else{
343913449892Sdrh       nArg = 0;
344098757157Sdrh       regAgg = 0;
344113449892Sdrh     }
3442c99130fdSdrh     if( pF->iDistinct>=0 ){
3443c99130fdSdrh       addrNext = sqlite3VdbeMakeLabel(v);
3444c99130fdSdrh       assert( nArg==1 );
34452dcef11bSdrh       codeDistinct(pParse, pF->iDistinct, addrNext, 1, regAgg);
3446c99130fdSdrh     }
3447e82f5d04Sdrh     if( pF->pFunc->flags & SQLITE_FUNC_NEEDCOLL ){
344813449892Sdrh       CollSeq *pColl = 0;
344913449892Sdrh       struct ExprList_item *pItem;
345013449892Sdrh       int j;
3451e82f5d04Sdrh       assert( pList!=0 );  /* pList!=0 if pF->pFunc has NEEDCOLL */
345243617e9aSdrh       for(j=0, pItem=pList->a; !pColl && j<nArg; j++, pItem++){
345313449892Sdrh         pColl = sqlite3ExprCollSeq(pParse, pItem->pExpr);
345413449892Sdrh       }
345513449892Sdrh       if( !pColl ){
345613449892Sdrh         pColl = pParse->db->pDfltColl;
345713449892Sdrh       }
345866a5167bSdrh       sqlite3VdbeAddOp4(v, OP_CollSeq, 0, 0, 0, (char *)pColl, P4_COLLSEQ);
345913449892Sdrh     }
346098757157Sdrh     sqlite3VdbeAddOp4(v, OP_AggStep, 0, regAgg, pF->iMem,
346166a5167bSdrh                       (void*)pF->pFunc, P4_FUNCDEF);
3462ea678832Sdrh     sqlite3VdbeChangeP5(v, (u8)nArg);
3463892d3179Sdrh     sqlite3ReleaseTempRange(pParse, regAgg, nArg);
3464da250ea5Sdrh     sqlite3ExprCacheAffinityChange(pParse, regAgg, nArg);
3465c99130fdSdrh     if( addrNext ){
3466c99130fdSdrh       sqlite3VdbeResolveLabel(v, addrNext);
3467ceea3321Sdrh       sqlite3ExprCacheClear(pParse);
3468c99130fdSdrh     }
346913449892Sdrh   }
347013449892Sdrh   for(i=0, pC=pAggInfo->aCol; i<pAggInfo->nAccumulator; i++, pC++){
3471389a1adbSdrh     sqlite3ExprCode(pParse, pC->pExpr, pC->iMem);
347213449892Sdrh   }
347313449892Sdrh   pAggInfo->directMode = 0;
3474ceea3321Sdrh   sqlite3ExprCacheClear(pParse);
347513449892Sdrh }
347613449892Sdrh 
3477b3bce662Sdanielk1977 /*
34787d10d5a6Sdrh ** Generate code for the SELECT statement given in the p argument.
34799bb61fe7Sdrh **
3480fef5208cSdrh ** The results are distributed in various ways depending on the
34816c8c8ce0Sdanielk1977 ** contents of the SelectDest structure pointed to by argument pDest
34826c8c8ce0Sdanielk1977 ** as follows:
3483fef5208cSdrh **
34846c8c8ce0Sdanielk1977 **     pDest->eDest    Result
3485fef5208cSdrh **     ------------    -------------------------------------------
34867d10d5a6Sdrh **     SRT_Output      Generate a row of output (using the OP_ResultRow
34877d10d5a6Sdrh **                     opcode) for each row in the result set.
3488fef5208cSdrh **
34897d10d5a6Sdrh **     SRT_Mem         Only valid if the result is a single column.
34907d10d5a6Sdrh **                     Store the first column of the first result row
34917d10d5a6Sdrh **                     in register pDest->iParm then abandon the rest
34927d10d5a6Sdrh **                     of the query.  This destination implies "LIMIT 1".
3493fef5208cSdrh **
34947d10d5a6Sdrh **     SRT_Set         The result must be a single column.  Store each
34957d10d5a6Sdrh **                     row of result as the key in table pDest->iParm.
34967d10d5a6Sdrh **                     Apply the affinity pDest->affinity before storing
34977d10d5a6Sdrh **                     results.  Used to implement "IN (SELECT ...)".
3498fef5208cSdrh **
34996c8c8ce0Sdanielk1977 **     SRT_Union       Store results as a key in a temporary table pDest->iParm.
350082c3d636Sdrh **
35016c8c8ce0Sdanielk1977 **     SRT_Except      Remove results from the temporary table pDest->iParm.
3502c4a3c779Sdrh **
35037d10d5a6Sdrh **     SRT_Table       Store results in temporary table pDest->iParm.
35047d10d5a6Sdrh **                     This is like SRT_EphemTab except that the table
35057d10d5a6Sdrh **                     is assumed to already be open.
35069bb61fe7Sdrh **
35076c8c8ce0Sdanielk1977 **     SRT_EphemTab    Create an temporary table pDest->iParm and store
35086c8c8ce0Sdanielk1977 **                     the result there. The cursor is left open after
35097d10d5a6Sdrh **                     returning.  This is like SRT_Table except that
35107d10d5a6Sdrh **                     this destination uses OP_OpenEphemeral to create
35117d10d5a6Sdrh **                     the table first.
35126c8c8ce0Sdanielk1977 **
35137d10d5a6Sdrh **     SRT_Coroutine   Generate a co-routine that returns a new row of
35147d10d5a6Sdrh **                     results each time it is invoked.  The entry point
35157d10d5a6Sdrh **                     of the co-routine is stored in register pDest->iParm.
35166c8c8ce0Sdanielk1977 **
35176c8c8ce0Sdanielk1977 **     SRT_Exists      Store a 1 in memory cell pDest->iParm if the result
35186c8c8ce0Sdanielk1977 **                     set is not empty.
35196c8c8ce0Sdanielk1977 **
35207d10d5a6Sdrh **     SRT_Discard     Throw the results away.  This is used by SELECT
35217d10d5a6Sdrh **                     statements within triggers whose only purpose is
35227d10d5a6Sdrh **                     the side-effects of functions.
3523e78e8284Sdrh **
35249bb61fe7Sdrh ** This routine returns the number of errors.  If any errors are
35259bb61fe7Sdrh ** encountered, then an appropriate error message is left in
35269bb61fe7Sdrh ** pParse->zErrMsg.
35279bb61fe7Sdrh **
35289bb61fe7Sdrh ** This routine does NOT free the Select structure passed in.  The
35299bb61fe7Sdrh ** calling function needs to do that.
35309bb61fe7Sdrh */
35314adee20fSdanielk1977 int sqlite3Select(
3532cce7d176Sdrh   Parse *pParse,         /* The parser context */
35339bb61fe7Sdrh   Select *p,             /* The SELECT statement being coded. */
35347d10d5a6Sdrh   SelectDest *pDest      /* What to do with the query results */
3535cce7d176Sdrh ){
353613449892Sdrh   int i, j;              /* Loop counters */
353713449892Sdrh   WhereInfo *pWInfo;     /* Return from sqlite3WhereBegin() */
353813449892Sdrh   Vdbe *v;               /* The virtual machine under construction */
3539b3bce662Sdanielk1977   int isAgg;             /* True for select lists like "count(*)" */
3540a2e00042Sdrh   ExprList *pEList;      /* List of columns to extract. */
3541ad3cab52Sdrh   SrcList *pTabList;     /* List of tables to select from */
35429bb61fe7Sdrh   Expr *pWhere;          /* The WHERE clause.  May be NULL */
35439bb61fe7Sdrh   ExprList *pOrderBy;    /* The ORDER BY clause.  May be NULL */
35442282792aSdrh   ExprList *pGroupBy;    /* The GROUP BY clause.  May be NULL */
35452282792aSdrh   Expr *pHaving;         /* The HAVING clause.  May be NULL */
354619a775c2Sdrh   int isDistinct;        /* True if the DISTINCT keyword is present */
354719a775c2Sdrh   int distinct;          /* Table to use for the distinct set */
35481d83f052Sdrh   int rc = 1;            /* Value to return from this function */
3549b9bb7c18Sdrh   int addrSortIndex;     /* Address of an OP_OpenEphemeral instruction */
355013449892Sdrh   AggInfo sAggInfo;      /* Information used by aggregate queries */
3551ec7429aeSdrh   int iEnd;              /* Address of the end of the query */
355217435752Sdrh   sqlite3 *db;           /* The database connection */
35539bb61fe7Sdrh 
355417435752Sdrh   db = pParse->db;
355517435752Sdrh   if( p==0 || db->mallocFailed || pParse->nErr ){
35566f7adc8aSdrh     return 1;
35576f7adc8aSdrh   }
35584adee20fSdanielk1977   if( sqlite3AuthCheck(pParse, SQLITE_SELECT, 0, 0, 0) ) return 1;
355913449892Sdrh   memset(&sAggInfo, 0, sizeof(sAggInfo));
3560daffd0e5Sdrh 
35619a99334dSdrh   pOrderBy = p->pOrderBy;
35626c8c8ce0Sdanielk1977   if( IgnorableOrderby(pDest) ){
35639a99334dSdrh     p->pOrderBy = 0;
35649ed1dfa8Sdanielk1977 
35659ed1dfa8Sdanielk1977     /* In these cases the DISTINCT operator makes no difference to the
35669ed1dfa8Sdanielk1977     ** results, so remove it if it were specified.
35679ed1dfa8Sdanielk1977     */
35689ed1dfa8Sdanielk1977     assert(pDest->eDest==SRT_Exists || pDest->eDest==SRT_Union ||
35699ed1dfa8Sdanielk1977            pDest->eDest==SRT_Except || pDest->eDest==SRT_Discard);
35707d10d5a6Sdrh     p->selFlags &= ~SF_Distinct;
35719a99334dSdrh   }
35727d10d5a6Sdrh   sqlite3SelectPrep(pParse, p, 0);
3573b27b7f5dSdrh   pTabList = p->pSrc;
3574b27b7f5dSdrh   pEList = p->pEList;
3575956f4319Sdanielk1977   if( pParse->nErr || db->mallocFailed ){
35769a99334dSdrh     goto select_end;
35779a99334dSdrh   }
35789a99334dSdrh   p->pOrderBy = pOrderBy;
35797d10d5a6Sdrh   isAgg = (p->selFlags & SF_Aggregate)!=0;
3580b3bce662Sdanielk1977   if( pEList==0 ) goto select_end;
35819bb61fe7Sdrh 
35829bb61fe7Sdrh   /*
35839bb61fe7Sdrh   ** Do not even attempt to generate any code if we have already seen
35849bb61fe7Sdrh   ** errors before this routine starts.
35859bb61fe7Sdrh   */
35861d83f052Sdrh   if( pParse->nErr>0 ) goto select_end;
3587cce7d176Sdrh 
3588c926afbcSdrh   /* ORDER BY is ignored for some destinations.
35892282792aSdrh   */
35906c8c8ce0Sdanielk1977   if( IgnorableOrderby(pDest) ){
3591acd4c695Sdrh     pOrderBy = 0;
35922282792aSdrh   }
35932282792aSdrh 
3594d820cb1bSdrh   /* Begin generating code.
3595d820cb1bSdrh   */
35964adee20fSdanielk1977   v = sqlite3GetVdbe(pParse);
3597d820cb1bSdrh   if( v==0 ) goto select_end;
3598d820cb1bSdrh 
3599d820cb1bSdrh   /* Generate code for all sub-queries in the FROM clause
3600d820cb1bSdrh   */
360151522cd3Sdrh #if !defined(SQLITE_OMIT_SUBQUERY) || !defined(SQLITE_OMIT_VIEW)
3602f23329a2Sdanielk1977   for(i=0; !p->pPrior && i<pTabList->nSrc; i++){
360313449892Sdrh     struct SrcList_item *pItem = &pTabList->a[i];
36041013c932Sdrh     SelectDest dest;
3605daf79acbSdanielk1977     Select *pSub = pItem->pSelect;
3606f23329a2Sdanielk1977     int isAggSub;
3607c31c2eb8Sdrh 
3608daf79acbSdanielk1977     if( pSub==0 || pItem->isPopulated ) continue;
3609daf79acbSdanielk1977 
3610fc976065Sdanielk1977     /* Increment Parse.nHeight by the height of the largest expression
3611fc976065Sdanielk1977     ** tree refered to by this, the parent select. The child select
3612fc976065Sdanielk1977     ** may contain expression trees of at most
3613fc976065Sdanielk1977     ** (SQLITE_MAX_EXPR_DEPTH-Parse.nHeight) height. This is a bit
3614fc976065Sdanielk1977     ** more conservative than necessary, but much easier than enforcing
3615fc976065Sdanielk1977     ** an exact limit.
3616fc976065Sdanielk1977     */
3617fc976065Sdanielk1977     pParse->nHeight += sqlite3SelectExprHeight(p);
3618daf79acbSdanielk1977 
3619daf79acbSdanielk1977     /* Check to see if the subquery can be absorbed into the parent. */
36207d10d5a6Sdrh     isAggSub = (pSub->selFlags & SF_Aggregate)!=0;
3621524cc21eSdanielk1977     if( flattenSubquery(pParse, p, i, isAgg, isAggSub) ){
3622f23329a2Sdanielk1977       if( isAggSub ){
36237d10d5a6Sdrh         isAgg = 1;
36247d10d5a6Sdrh         p->selFlags |= SF_Aggregate;
3625daf79acbSdanielk1977       }
3626daf79acbSdanielk1977       i = -1;
3627daf79acbSdanielk1977     }else{
36281013c932Sdrh       sqlite3SelectDestInit(&dest, SRT_EphemTab, pItem->iCursor);
36297d10d5a6Sdrh       assert( pItem->isPopulated==0 );
36307d10d5a6Sdrh       sqlite3Select(pParse, pSub, &dest);
36317d10d5a6Sdrh       pItem->isPopulated = 1;
3632daf79acbSdanielk1977     }
3633524cc21eSdanielk1977     if( pParse->nErr || db->mallocFailed ){
3634cfa063b3Sdrh       goto select_end;
3635cfa063b3Sdrh     }
3636fc976065Sdanielk1977     pParse->nHeight -= sqlite3SelectExprHeight(p);
3637832508b7Sdrh     pTabList = p->pSrc;
36386c8c8ce0Sdanielk1977     if( !IgnorableOrderby(pDest) ){
3639832508b7Sdrh       pOrderBy = p->pOrderBy;
3640acd4c695Sdrh     }
3641daf79acbSdanielk1977   }
3642daf79acbSdanielk1977   pEList = p->pEList;
3643daf79acbSdanielk1977 #endif
3644daf79acbSdanielk1977   pWhere = p->pWhere;
3645832508b7Sdrh   pGroupBy = p->pGroupBy;
3646832508b7Sdrh   pHaving = p->pHaving;
36477d10d5a6Sdrh   isDistinct = (p->selFlags & SF_Distinct)!=0;
3648832508b7Sdrh 
3649f23329a2Sdanielk1977 #ifndef SQLITE_OMIT_COMPOUND_SELECT
3650f23329a2Sdanielk1977   /* If there is are a sequence of queries, do the earlier ones first.
3651f23329a2Sdanielk1977   */
3652f23329a2Sdanielk1977   if( p->pPrior ){
3653f23329a2Sdanielk1977     if( p->pRightmost==0 ){
3654f23329a2Sdanielk1977       Select *pLoop, *pRight = 0;
3655f23329a2Sdanielk1977       int cnt = 0;
3656f23329a2Sdanielk1977       int mxSelect;
3657f23329a2Sdanielk1977       for(pLoop=p; pLoop; pLoop=pLoop->pPrior, cnt++){
3658f23329a2Sdanielk1977         pLoop->pRightmost = p;
3659f23329a2Sdanielk1977         pLoop->pNext = pRight;
3660f23329a2Sdanielk1977         pRight = pLoop;
3661f23329a2Sdanielk1977       }
3662f23329a2Sdanielk1977       mxSelect = db->aLimit[SQLITE_LIMIT_COMPOUND_SELECT];
3663f23329a2Sdanielk1977       if( mxSelect && cnt>mxSelect ){
3664f23329a2Sdanielk1977         sqlite3ErrorMsg(pParse, "too many terms in compound SELECT");
3665f23329a2Sdanielk1977         return 1;
3666f23329a2Sdanielk1977       }
3667f23329a2Sdanielk1977     }
3668a9671a22Sdrh     return multiSelect(pParse, p, pDest);
3669f23329a2Sdanielk1977   }
3670f23329a2Sdanielk1977 #endif
3671f23329a2Sdanielk1977 
36724914cf92Sdanielk1977   /* If writing to memory or generating a set
36734914cf92Sdanielk1977   ** only a single column may be output.
36744914cf92Sdanielk1977   */
36754914cf92Sdanielk1977 #ifndef SQLITE_OMIT_SUBQUERY
36764914cf92Sdanielk1977   if( checkForMultiColumnSelectError(pParse, pDest, pEList->nExpr) ){
36774914cf92Sdanielk1977     goto select_end;
36784914cf92Sdanielk1977   }
36794914cf92Sdanielk1977 #endif
36804914cf92Sdanielk1977 
36810318d441Sdanielk1977   /* If possible, rewrite the query to use GROUP BY instead of DISTINCT.
36827d10d5a6Sdrh   ** GROUP BY might use an index, DISTINCT never does.
36833c4809a2Sdanielk1977   */
36847d10d5a6Sdrh   if( (p->selFlags & (SF_Distinct|SF_Aggregate))==SF_Distinct && !p->pGroupBy ){
36856ab3a2ecSdanielk1977     p->pGroupBy = sqlite3ExprListDup(db, p->pEList, 0);
36863c4809a2Sdanielk1977     pGroupBy = p->pGroupBy;
36877d10d5a6Sdrh     p->selFlags &= ~SF_Distinct;
36883c4809a2Sdanielk1977     isDistinct = 0;
36893c4809a2Sdanielk1977   }
36903c4809a2Sdanielk1977 
36918b4c40d8Sdrh   /* If there is an ORDER BY clause, then this sorting
36928b4c40d8Sdrh   ** index might end up being unused if the data can be
36939d2985c7Sdrh   ** extracted in pre-sorted order.  If that is the case, then the
3694b9bb7c18Sdrh   ** OP_OpenEphemeral instruction will be changed to an OP_Noop once
36959d2985c7Sdrh   ** we figure out that the sorting index is not needed.  The addrSortIndex
36969d2985c7Sdrh   ** variable is used to facilitate that change.
36977cedc8d4Sdanielk1977   */
36987cedc8d4Sdanielk1977   if( pOrderBy ){
36990342b1f5Sdrh     KeyInfo *pKeyInfo;
37000342b1f5Sdrh     pKeyInfo = keyInfoFromExprList(pParse, pOrderBy);
37019d2985c7Sdrh     pOrderBy->iECursor = pParse->nTab++;
3702b9bb7c18Sdrh     p->addrOpenEphm[2] = addrSortIndex =
370366a5167bSdrh       sqlite3VdbeAddOp4(v, OP_OpenEphemeral,
370466a5167bSdrh                            pOrderBy->iECursor, pOrderBy->nExpr+2, 0,
370566a5167bSdrh                            (char*)pKeyInfo, P4_KEYINFO_HANDOFF);
37069d2985c7Sdrh   }else{
37079d2985c7Sdrh     addrSortIndex = -1;
37087cedc8d4Sdanielk1977   }
37097cedc8d4Sdanielk1977 
37102d0794e3Sdrh   /* If the output is destined for a temporary table, open that table.
37112d0794e3Sdrh   */
37126c8c8ce0Sdanielk1977   if( pDest->eDest==SRT_EphemTab ){
371366a5167bSdrh     sqlite3VdbeAddOp2(v, OP_OpenEphemeral, pDest->iParm, pEList->nExpr);
37142d0794e3Sdrh   }
37152d0794e3Sdrh 
3716f42bacc2Sdrh   /* Set the limiter.
3717f42bacc2Sdrh   */
3718f42bacc2Sdrh   iEnd = sqlite3VdbeMakeLabel(v);
3719f42bacc2Sdrh   computeLimitRegisters(pParse, p, iEnd);
3720f42bacc2Sdrh 
3721dece1a84Sdrh   /* Open a virtual index to use for the distinct set.
3722cce7d176Sdrh   */
372319a775c2Sdrh   if( isDistinct ){
37240342b1f5Sdrh     KeyInfo *pKeyInfo;
37253c4809a2Sdanielk1977     assert( isAgg || pGroupBy );
3726832508b7Sdrh     distinct = pParse->nTab++;
37270342b1f5Sdrh     pKeyInfo = keyInfoFromExprList(pParse, p->pEList);
372866a5167bSdrh     sqlite3VdbeAddOp4(v, OP_OpenEphemeral, distinct, 0, 0,
372966a5167bSdrh                         (char*)pKeyInfo, P4_KEYINFO_HANDOFF);
3730832508b7Sdrh   }else{
3731832508b7Sdrh     distinct = -1;
3732efb7251dSdrh   }
3733832508b7Sdrh 
373413449892Sdrh   /* Aggregate and non-aggregate queries are handled differently */
373513449892Sdrh   if( !isAgg && pGroupBy==0 ){
373613449892Sdrh     /* This case is for non-aggregate queries
373713449892Sdrh     ** Begin the database scan
3738832508b7Sdrh     */
3739336a5300Sdrh     pWInfo = sqlite3WhereBegin(pParse, pTabList, pWhere, &pOrderBy, 0);
37401d83f052Sdrh     if( pWInfo==0 ) goto select_end;
3741cce7d176Sdrh 
3742b9bb7c18Sdrh     /* If sorting index that was created by a prior OP_OpenEphemeral
3743b9bb7c18Sdrh     ** instruction ended up not being needed, then change the OP_OpenEphemeral
37449d2985c7Sdrh     ** into an OP_Noop.
37459d2985c7Sdrh     */
37469d2985c7Sdrh     if( addrSortIndex>=0 && pOrderBy==0 ){
3747f8875400Sdrh       sqlite3VdbeChangeToNoop(v, addrSortIndex, 1);
3748b9bb7c18Sdrh       p->addrOpenEphm[2] = -1;
37499d2985c7Sdrh     }
37509d2985c7Sdrh 
375113449892Sdrh     /* Use the standard inner loop
3752cce7d176Sdrh     */
37533c4809a2Sdanielk1977     assert(!isDistinct);
3754d2b3e23bSdrh     selectInnerLoop(pParse, p, pEList, 0, 0, pOrderBy, -1, pDest,
3755a9671a22Sdrh                     pWInfo->iContinue, pWInfo->iBreak);
37562282792aSdrh 
3757cce7d176Sdrh     /* End the database scan loop.
3758cce7d176Sdrh     */
37594adee20fSdanielk1977     sqlite3WhereEnd(pWInfo);
376013449892Sdrh   }else{
376113449892Sdrh     /* This is the processing for aggregate queries */
376213449892Sdrh     NameContext sNC;    /* Name context for processing aggregate information */
376313449892Sdrh     int iAMem;          /* First Mem address for storing current GROUP BY */
376413449892Sdrh     int iBMem;          /* First Mem address for previous GROUP BY */
376513449892Sdrh     int iUseFlag;       /* Mem address holding flag indicating that at least
376613449892Sdrh                         ** one row of the input to the aggregator has been
376713449892Sdrh                         ** processed */
376813449892Sdrh     int iAbortFlag;     /* Mem address which causes query abort if positive */
376913449892Sdrh     int groupBySort;    /* Rows come from source in GROUP BY order */
3770d176611bSdrh     int addrEnd;        /* End of processing for this SELECT */
3771d176611bSdrh 
3772d176611bSdrh     /* Remove any and all aliases between the result set and the
3773d176611bSdrh     ** GROUP BY clause.
3774d176611bSdrh     */
3775d176611bSdrh     if( pGroupBy ){
3776dc5ea5c7Sdrh       int k;                        /* Loop counter */
3777d176611bSdrh       struct ExprList_item *pItem;  /* For looping over expression in a list */
3778d176611bSdrh 
3779dc5ea5c7Sdrh       for(k=p->pEList->nExpr, pItem=p->pEList->a; k>0; k--, pItem++){
3780d176611bSdrh         pItem->iAlias = 0;
3781d176611bSdrh       }
3782dc5ea5c7Sdrh       for(k=pGroupBy->nExpr, pItem=pGroupBy->a; k>0; k--, pItem++){
3783d176611bSdrh         pItem->iAlias = 0;
3784d176611bSdrh       }
3785d176611bSdrh     }
3786cce7d176Sdrh 
378713449892Sdrh 
3788d176611bSdrh     /* Create a label to jump to when we want to abort the query */
378913449892Sdrh     addrEnd = sqlite3VdbeMakeLabel(v);
379013449892Sdrh 
379113449892Sdrh     /* Convert TK_COLUMN nodes into TK_AGG_COLUMN and make entries in
379213449892Sdrh     ** sAggInfo for all TK_AGG_FUNCTION nodes in expressions of the
379313449892Sdrh     ** SELECT statement.
37942282792aSdrh     */
379513449892Sdrh     memset(&sNC, 0, sizeof(sNC));
379613449892Sdrh     sNC.pParse = pParse;
379713449892Sdrh     sNC.pSrcList = pTabList;
379813449892Sdrh     sNC.pAggInfo = &sAggInfo;
379913449892Sdrh     sAggInfo.nSortingColumn = pGroupBy ? pGroupBy->nExpr+1 : 0;
38009d2985c7Sdrh     sAggInfo.pGroupBy = pGroupBy;
3801d2b3e23bSdrh     sqlite3ExprAnalyzeAggList(&sNC, pEList);
3802d2b3e23bSdrh     sqlite3ExprAnalyzeAggList(&sNC, pOrderBy);
3803d2b3e23bSdrh     if( pHaving ){
3804d2b3e23bSdrh       sqlite3ExprAnalyzeAggregates(&sNC, pHaving);
380513449892Sdrh     }
380613449892Sdrh     sAggInfo.nAccumulator = sAggInfo.nColumn;
380713449892Sdrh     for(i=0; i<sAggInfo.nFunc; i++){
38086ab3a2ecSdanielk1977       assert( !ExprHasProperty(sAggInfo.aFunc[i].pExpr, EP_xIsSelect) );
38096ab3a2ecSdanielk1977       sqlite3ExprAnalyzeAggList(&sNC, sAggInfo.aFunc[i].pExpr->x.pList);
381013449892Sdrh     }
381117435752Sdrh     if( db->mallocFailed ) goto select_end;
381213449892Sdrh 
381313449892Sdrh     /* Processing for aggregates with GROUP BY is very different and
38143c4809a2Sdanielk1977     ** much more complex than aggregates without a GROUP BY.
381513449892Sdrh     */
381613449892Sdrh     if( pGroupBy ){
381713449892Sdrh       KeyInfo *pKeyInfo;  /* Keying information for the group by clause */
3818d176611bSdrh       int j1;             /* A-vs-B comparision jump */
3819d176611bSdrh       int addrOutputRow;  /* Start of subroutine that outputs a result row */
3820d176611bSdrh       int regOutputRow;   /* Return address register for output subroutine */
3821d176611bSdrh       int addrSetAbort;   /* Set the abort flag and return */
3822d176611bSdrh       int addrTopOfLoop;  /* Top of the input loop */
3823d176611bSdrh       int addrSortingIdx; /* The OP_OpenEphemeral for the sorting index */
3824d176611bSdrh       int addrReset;      /* Subroutine for resetting the accumulator */
3825d176611bSdrh       int regReset;       /* Return address register for reset subroutine */
382613449892Sdrh 
382713449892Sdrh       /* If there is a GROUP BY clause we might need a sorting index to
382813449892Sdrh       ** implement it.  Allocate that sorting index now.  If it turns out
3829b9bb7c18Sdrh       ** that we do not need it after all, the OpenEphemeral instruction
383013449892Sdrh       ** will be converted into a Noop.
383113449892Sdrh       */
383213449892Sdrh       sAggInfo.sortingIdx = pParse->nTab++;
383313449892Sdrh       pKeyInfo = keyInfoFromExprList(pParse, pGroupBy);
3834cd3e8f7cSdanielk1977       addrSortingIdx = sqlite3VdbeAddOp4(v, OP_OpenEphemeral,
3835cd3e8f7cSdanielk1977           sAggInfo.sortingIdx, sAggInfo.nSortingColumn,
3836cd3e8f7cSdanielk1977           0, (char*)pKeyInfo, P4_KEYINFO_HANDOFF);
383713449892Sdrh 
383813449892Sdrh       /* Initialize memory locations used by GROUP BY aggregate processing
383913449892Sdrh       */
38400a07c107Sdrh       iUseFlag = ++pParse->nMem;
38410a07c107Sdrh       iAbortFlag = ++pParse->nMem;
3842d176611bSdrh       regOutputRow = ++pParse->nMem;
3843d176611bSdrh       addrOutputRow = sqlite3VdbeMakeLabel(v);
3844d176611bSdrh       regReset = ++pParse->nMem;
3845d176611bSdrh       addrReset = sqlite3VdbeMakeLabel(v);
38460a07c107Sdrh       iAMem = pParse->nMem + 1;
384713449892Sdrh       pParse->nMem += pGroupBy->nExpr;
38480a07c107Sdrh       iBMem = pParse->nMem + 1;
384913449892Sdrh       pParse->nMem += pGroupBy->nExpr;
38504c583128Sdrh       sqlite3VdbeAddOp2(v, OP_Integer, 0, iAbortFlag);
3851d4e70ebdSdrh       VdbeComment((v, "clear abort flag"));
38524c583128Sdrh       sqlite3VdbeAddOp2(v, OP_Integer, 0, iUseFlag);
3853d4e70ebdSdrh       VdbeComment((v, "indicate accumulator empty"));
3854e313382eSdrh 
385513449892Sdrh       /* Begin a loop that will extract all source rows in GROUP BY order.
385613449892Sdrh       ** This might involve two separate loops with an OP_Sort in between, or
385713449892Sdrh       ** it might be a single loop that uses an index to extract information
385813449892Sdrh       ** in the right order to begin with.
385913449892Sdrh       */
38602eb95377Sdrh       sqlite3VdbeAddOp2(v, OP_Gosub, regReset, addrReset);
3861336a5300Sdrh       pWInfo = sqlite3WhereBegin(pParse, pTabList, pWhere, &pGroupBy, 0);
38625360ad34Sdrh       if( pWInfo==0 ) goto select_end;
386313449892Sdrh       if( pGroupBy==0 ){
386413449892Sdrh         /* The optimizer is able to deliver rows in group by order so
3865b9bb7c18Sdrh         ** we do not have to sort.  The OP_OpenEphemeral table will be
386613449892Sdrh         ** cancelled later because we still need to use the pKeyInfo
386713449892Sdrh         */
386813449892Sdrh         pGroupBy = p->pGroupBy;
386913449892Sdrh         groupBySort = 0;
387013449892Sdrh       }else{
387113449892Sdrh         /* Rows are coming out in undetermined order.  We have to push
387213449892Sdrh         ** each row into a sorting index, terminate the first loop,
387313449892Sdrh         ** then loop over the sorting index in order to get the output
387413449892Sdrh         ** in sorted order
387513449892Sdrh         */
3876892d3179Sdrh         int regBase;
3877892d3179Sdrh         int regRecord;
3878892d3179Sdrh         int nCol;
3879892d3179Sdrh         int nGroupBy;
3880892d3179Sdrh 
388113449892Sdrh         groupBySort = 1;
3882892d3179Sdrh         nGroupBy = pGroupBy->nExpr;
3883892d3179Sdrh         nCol = nGroupBy + 1;
3884892d3179Sdrh         j = nGroupBy+1;
388513449892Sdrh         for(i=0; i<sAggInfo.nColumn; i++){
3886892d3179Sdrh           if( sAggInfo.aCol[i].iSorterColumn>=j ){
3887892d3179Sdrh             nCol++;
388813449892Sdrh             j++;
388913449892Sdrh           }
3890892d3179Sdrh         }
3891892d3179Sdrh         regBase = sqlite3GetTempRange(pParse, nCol);
3892ceea3321Sdrh         sqlite3ExprCacheClear(pParse);
3893191b54cbSdrh         sqlite3ExprCodeExprList(pParse, pGroupBy, regBase, 0);
3894892d3179Sdrh         sqlite3VdbeAddOp2(v, OP_Sequence, sAggInfo.sortingIdx,regBase+nGroupBy);
3895892d3179Sdrh         j = nGroupBy+1;
3896892d3179Sdrh         for(i=0; i<sAggInfo.nColumn; i++){
3897892d3179Sdrh           struct AggInfo_col *pCol = &sAggInfo.aCol[i];
3898892d3179Sdrh           if( pCol->iSorterColumn>=j ){
3899e55cbd72Sdrh             int r1 = j + regBase;
39006a012f04Sdrh             int r2;
3901701bb3b4Sdrh 
39026a012f04Sdrh             r2 = sqlite3ExprCodeGetColumn(pParse,
39036a012f04Sdrh                                pCol->pTab, pCol->iColumn, pCol->iTable, r1, 0);
39046a012f04Sdrh             if( r1!=r2 ){
39056a012f04Sdrh               sqlite3VdbeAddOp2(v, OP_SCopy, r2, r1);
39066a012f04Sdrh             }
39076a012f04Sdrh             j++;
3908892d3179Sdrh           }
3909892d3179Sdrh         }
3910892d3179Sdrh         regRecord = sqlite3GetTempReg(pParse);
39111db639ceSdrh         sqlite3VdbeAddOp3(v, OP_MakeRecord, regBase, nCol, regRecord);
3912892d3179Sdrh         sqlite3VdbeAddOp2(v, OP_IdxInsert, sAggInfo.sortingIdx, regRecord);
3913892d3179Sdrh         sqlite3ReleaseTempReg(pParse, regRecord);
3914892d3179Sdrh         sqlite3ReleaseTempRange(pParse, regBase, nCol);
391513449892Sdrh         sqlite3WhereEnd(pWInfo);
391666a5167bSdrh         sqlite3VdbeAddOp2(v, OP_Sort, sAggInfo.sortingIdx, addrEnd);
3917d4e70ebdSdrh         VdbeComment((v, "GROUP BY sort"));
391813449892Sdrh         sAggInfo.useSortingIdx = 1;
3919ceea3321Sdrh         sqlite3ExprCacheClear(pParse);
392013449892Sdrh       }
392113449892Sdrh 
392213449892Sdrh       /* Evaluate the current GROUP BY terms and store in b0, b1, b2...
392313449892Sdrh       ** (b0 is memory location iBMem+0, b1 is iBMem+1, and so forth)
392413449892Sdrh       ** Then compare the current GROUP BY terms against the GROUP BY terms
392513449892Sdrh       ** from the previous row currently stored in a0, a1, a2...
392613449892Sdrh       */
392713449892Sdrh       addrTopOfLoop = sqlite3VdbeCurrentAddr(v);
3928ceea3321Sdrh       sqlite3ExprCacheClear(pParse);
392913449892Sdrh       for(j=0; j<pGroupBy->nExpr; j++){
393013449892Sdrh         if( groupBySort ){
39312dcef11bSdrh           sqlite3VdbeAddOp3(v, OP_Column, sAggInfo.sortingIdx, j, iBMem+j);
393213449892Sdrh         }else{
393313449892Sdrh           sAggInfo.directMode = 1;
39342dcef11bSdrh           sqlite3ExprCode(pParse, pGroupBy->a[j].pExpr, iBMem+j);
393513449892Sdrh         }
393613449892Sdrh       }
393716ee60ffSdrh       sqlite3VdbeAddOp4(v, OP_Compare, iAMem, iBMem, pGroupBy->nExpr,
3938b21e7c70Sdrh                           (char*)pKeyInfo, P4_KEYINFO);
393916ee60ffSdrh       j1 = sqlite3VdbeCurrentAddr(v);
394016ee60ffSdrh       sqlite3VdbeAddOp3(v, OP_Jump, j1+1, 0, j1+1);
394113449892Sdrh 
394213449892Sdrh       /* Generate code that runs whenever the GROUP BY changes.
3943e00ee6ebSdrh       ** Changes in the GROUP BY are detected by the previous code
394413449892Sdrh       ** block.  If there were no changes, this block is skipped.
394513449892Sdrh       **
394613449892Sdrh       ** This code copies current group by terms in b0,b1,b2,...
394713449892Sdrh       ** over to a0,a1,a2.  It then calls the output subroutine
394813449892Sdrh       ** and resets the aggregate accumulator registers in preparation
394913449892Sdrh       ** for the next GROUP BY batch.
395013449892Sdrh       */
3951b21e7c70Sdrh       sqlite3ExprCodeMove(pParse, iBMem, iAMem, pGroupBy->nExpr);
39522eb95377Sdrh       sqlite3VdbeAddOp2(v, OP_Gosub, regOutputRow, addrOutputRow);
3953d4e70ebdSdrh       VdbeComment((v, "output one row"));
39543c84ddffSdrh       sqlite3VdbeAddOp2(v, OP_IfPos, iAbortFlag, addrEnd);
3955d4e70ebdSdrh       VdbeComment((v, "check abort flag"));
39562eb95377Sdrh       sqlite3VdbeAddOp2(v, OP_Gosub, regReset, addrReset);
3957d4e70ebdSdrh       VdbeComment((v, "reset accumulator"));
395813449892Sdrh 
395913449892Sdrh       /* Update the aggregate accumulators based on the content of
396013449892Sdrh       ** the current row
396113449892Sdrh       */
396216ee60ffSdrh       sqlite3VdbeJumpHere(v, j1);
396313449892Sdrh       updateAccumulator(pParse, &sAggInfo);
39644c583128Sdrh       sqlite3VdbeAddOp2(v, OP_Integer, 1, iUseFlag);
3965d4e70ebdSdrh       VdbeComment((v, "indicate data in accumulator"));
396613449892Sdrh 
396713449892Sdrh       /* End of the loop
396813449892Sdrh       */
396913449892Sdrh       if( groupBySort ){
397066a5167bSdrh         sqlite3VdbeAddOp2(v, OP_Next, sAggInfo.sortingIdx, addrTopOfLoop);
397113449892Sdrh       }else{
397213449892Sdrh         sqlite3WhereEnd(pWInfo);
3973f8875400Sdrh         sqlite3VdbeChangeToNoop(v, addrSortingIdx, 1);
397413449892Sdrh       }
397513449892Sdrh 
397613449892Sdrh       /* Output the final row of result
397713449892Sdrh       */
39782eb95377Sdrh       sqlite3VdbeAddOp2(v, OP_Gosub, regOutputRow, addrOutputRow);
3979d4e70ebdSdrh       VdbeComment((v, "output final row"));
398013449892Sdrh 
3981d176611bSdrh       /* Jump over the subroutines
3982d176611bSdrh       */
3983d176611bSdrh       sqlite3VdbeAddOp2(v, OP_Goto, 0, addrEnd);
3984d176611bSdrh 
3985d176611bSdrh       /* Generate a subroutine that outputs a single row of the result
3986d176611bSdrh       ** set.  This subroutine first looks at the iUseFlag.  If iUseFlag
3987d176611bSdrh       ** is less than or equal to zero, the subroutine is a no-op.  If
3988d176611bSdrh       ** the processing calls for the query to abort, this subroutine
3989d176611bSdrh       ** increments the iAbortFlag memory location before returning in
3990d176611bSdrh       ** order to signal the caller to abort.
3991d176611bSdrh       */
3992d176611bSdrh       addrSetAbort = sqlite3VdbeCurrentAddr(v);
3993d176611bSdrh       sqlite3VdbeAddOp2(v, OP_Integer, 1, iAbortFlag);
3994d176611bSdrh       VdbeComment((v, "set abort flag"));
3995d176611bSdrh       sqlite3VdbeAddOp1(v, OP_Return, regOutputRow);
3996d176611bSdrh       sqlite3VdbeResolveLabel(v, addrOutputRow);
3997d176611bSdrh       addrOutputRow = sqlite3VdbeCurrentAddr(v);
3998d176611bSdrh       sqlite3VdbeAddOp2(v, OP_IfPos, iUseFlag, addrOutputRow+2);
3999d176611bSdrh       VdbeComment((v, "Groupby result generator entry point"));
4000d176611bSdrh       sqlite3VdbeAddOp1(v, OP_Return, regOutputRow);
4001d176611bSdrh       finalizeAggFunctions(pParse, &sAggInfo);
4002d176611bSdrh       if( pHaving ){
4003d176611bSdrh         sqlite3ExprIfFalse(pParse, pHaving, addrOutputRow+1, SQLITE_JUMPIFNULL);
4004d176611bSdrh       }
4005d176611bSdrh       selectInnerLoop(pParse, p, p->pEList, 0, 0, pOrderBy,
4006d176611bSdrh                       distinct, pDest,
4007d176611bSdrh                       addrOutputRow+1, addrSetAbort);
4008d176611bSdrh       sqlite3VdbeAddOp1(v, OP_Return, regOutputRow);
4009d176611bSdrh       VdbeComment((v, "end groupby result generator"));
4010d176611bSdrh 
4011d176611bSdrh       /* Generate a subroutine that will reset the group-by accumulator
4012d176611bSdrh       */
4013d176611bSdrh       sqlite3VdbeResolveLabel(v, addrReset);
4014d176611bSdrh       resetAccumulator(pParse, &sAggInfo);
4015d176611bSdrh       sqlite3VdbeAddOp1(v, OP_Return, regReset);
4016d176611bSdrh 
401713449892Sdrh     } /* endif pGroupBy */
401813449892Sdrh     else {
4019dba0137eSdanielk1977       ExprList *pDel = 0;
4020a5533162Sdanielk1977 #ifndef SQLITE_OMIT_BTREECOUNT
4021a5533162Sdanielk1977       Table *pTab;
4022a5533162Sdanielk1977       if( (pTab = isSimpleCount(p, &sAggInfo))!=0 ){
4023a5533162Sdanielk1977         /* If isSimpleCount() returns a pointer to a Table structure, then
4024a5533162Sdanielk1977         ** the SQL statement is of the form:
4025a5533162Sdanielk1977         **
4026a5533162Sdanielk1977         **   SELECT count(*) FROM <tbl>
4027a5533162Sdanielk1977         **
4028a5533162Sdanielk1977         ** where the Table structure returned represents table <tbl>.
4029a5533162Sdanielk1977         **
4030a5533162Sdanielk1977         ** This statement is so common that it is optimized specially. The
4031a5533162Sdanielk1977         ** OP_Count instruction is executed either on the intkey table that
4032a5533162Sdanielk1977         ** contains the data for table <tbl> or on one of its indexes. It
4033a5533162Sdanielk1977         ** is better to execute the op on an index, as indexes are almost
4034a5533162Sdanielk1977         ** always spread across less pages than their corresponding tables.
4035a5533162Sdanielk1977         */
4036a5533162Sdanielk1977         const int iDb = sqlite3SchemaToIndex(pParse->db, pTab->pSchema);
4037a5533162Sdanielk1977         const int iCsr = pParse->nTab++;     /* Cursor to scan b-tree */
4038a5533162Sdanielk1977         Index *pIdx;                         /* Iterator variable */
4039a5533162Sdanielk1977         KeyInfo *pKeyInfo = 0;               /* Keyinfo for scanned index */
4040a5533162Sdanielk1977         Index *pBest = 0;                    /* Best index found so far */
4041a5533162Sdanielk1977         int iRoot = pTab->tnum;              /* Root page of scanned b-tree */
4042a9d1ccb9Sdanielk1977 
4043a5533162Sdanielk1977         sqlite3CodeVerifySchema(pParse, iDb);
4044a5533162Sdanielk1977         sqlite3TableLock(pParse, iDb, pTab->tnum, 0, pTab->zName);
4045a5533162Sdanielk1977 
4046a5533162Sdanielk1977         /* Search for the index that has the least amount of columns. If
4047a5533162Sdanielk1977         ** there is such an index, and it has less columns than the table
4048a5533162Sdanielk1977         ** does, then we can assume that it consumes less space on disk and
4049a5533162Sdanielk1977         ** will therefore be cheaper to scan to determine the query result.
4050a5533162Sdanielk1977         ** In this case set iRoot to the root page number of the index b-tree
4051a5533162Sdanielk1977         ** and pKeyInfo to the KeyInfo structure required to navigate the
4052a5533162Sdanielk1977         ** index.
4053a5533162Sdanielk1977         **
4054a5533162Sdanielk1977         ** In practice the KeyInfo structure will not be used. It is only
4055a5533162Sdanielk1977         ** passed to keep OP_OpenRead happy.
4056a5533162Sdanielk1977         */
4057a5533162Sdanielk1977         for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){
4058a5533162Sdanielk1977           if( !pBest || pIdx->nColumn<pBest->nColumn ){
4059a5533162Sdanielk1977             pBest = pIdx;
4060a5533162Sdanielk1977           }
4061a5533162Sdanielk1977         }
4062a5533162Sdanielk1977         if( pBest && pBest->nColumn<pTab->nCol ){
4063a5533162Sdanielk1977           iRoot = pBest->tnum;
4064a5533162Sdanielk1977           pKeyInfo = sqlite3IndexKeyinfo(pParse, pBest);
4065a5533162Sdanielk1977         }
4066a5533162Sdanielk1977 
4067a5533162Sdanielk1977         /* Open a read-only cursor, execute the OP_Count, close the cursor. */
4068a5533162Sdanielk1977         sqlite3VdbeAddOp3(v, OP_OpenRead, iCsr, iRoot, iDb);
4069a5533162Sdanielk1977         if( pKeyInfo ){
4070a5533162Sdanielk1977           sqlite3VdbeChangeP4(v, -1, (char *)pKeyInfo, P4_KEYINFO_HANDOFF);
4071a5533162Sdanielk1977         }
4072a5533162Sdanielk1977         sqlite3VdbeAddOp2(v, OP_Count, iCsr, sAggInfo.aFunc[0].iMem);
4073a5533162Sdanielk1977         sqlite3VdbeAddOp1(v, OP_Close, iCsr);
4074a5533162Sdanielk1977       }else
4075a5533162Sdanielk1977 #endif /* SQLITE_OMIT_BTREECOUNT */
4076a5533162Sdanielk1977       {
4077738bdcfbSdanielk1977         /* Check if the query is of one of the following forms:
4078738bdcfbSdanielk1977         **
4079738bdcfbSdanielk1977         **   SELECT min(x) FROM ...
4080738bdcfbSdanielk1977         **   SELECT max(x) FROM ...
4081738bdcfbSdanielk1977         **
4082738bdcfbSdanielk1977         ** If it is, then ask the code in where.c to attempt to sort results
4083738bdcfbSdanielk1977         ** as if there was an "ORDER ON x" or "ORDER ON x DESC" clause.
4084738bdcfbSdanielk1977         ** If where.c is able to produce results sorted in this order, then
4085738bdcfbSdanielk1977         ** add vdbe code to break out of the processing loop after the
4086738bdcfbSdanielk1977         ** first iteration (since the first iteration of the loop is
4087738bdcfbSdanielk1977         ** guaranteed to operate on the row with the minimum or maximum
4088738bdcfbSdanielk1977         ** value of x, the only row required).
4089738bdcfbSdanielk1977         **
4090738bdcfbSdanielk1977         ** A special flag must be passed to sqlite3WhereBegin() to slightly
4091738bdcfbSdanielk1977         ** modify behaviour as follows:
4092738bdcfbSdanielk1977         **
4093738bdcfbSdanielk1977         **   + If the query is a "SELECT min(x)", then the loop coded by
4094738bdcfbSdanielk1977         **     where.c should not iterate over any values with a NULL value
4095738bdcfbSdanielk1977         **     for x.
4096738bdcfbSdanielk1977         **
4097738bdcfbSdanielk1977         **   + The optimizer code in where.c (the thing that decides which
4098738bdcfbSdanielk1977         **     index or indices to use) should place a different priority on
4099738bdcfbSdanielk1977         **     satisfying the 'ORDER BY' clause than it does in other cases.
4100738bdcfbSdanielk1977         **     Refer to code and comments in where.c for details.
4101738bdcfbSdanielk1977         */
4102a5533162Sdanielk1977         ExprList *pMinMax = 0;
4103a5533162Sdanielk1977         u8 flag = minMaxQuery(p);
4104a9d1ccb9Sdanielk1977         if( flag ){
41056ab3a2ecSdanielk1977           assert( !ExprHasProperty(p->pEList->a[0].pExpr, EP_xIsSelect) );
41066ab3a2ecSdanielk1977           pMinMax = sqlite3ExprListDup(db, p->pEList->a[0].pExpr->x.pList,0);
41076ab3a2ecSdanielk1977           pDel = pMinMax;
41080e359b30Sdrh           if( pMinMax && !db->mallocFailed ){
4109ea678832Sdrh             pMinMax->a[0].sortOrder = flag!=WHERE_ORDERBY_MIN ?1:0;
4110a9d1ccb9Sdanielk1977             pMinMax->a[0].pExpr->op = TK_COLUMN;
4111a9d1ccb9Sdanielk1977           }
41121013c932Sdrh         }
4113a9d1ccb9Sdanielk1977 
411413449892Sdrh         /* This case runs if the aggregate has no GROUP BY clause.  The
411513449892Sdrh         ** processing is much simpler since there is only a single row
411613449892Sdrh         ** of output.
411713449892Sdrh         */
411813449892Sdrh         resetAccumulator(pParse, &sAggInfo);
4119336a5300Sdrh         pWInfo = sqlite3WhereBegin(pParse, pTabList, pWhere, &pMinMax, flag);
4120dba0137eSdanielk1977         if( pWInfo==0 ){
4121633e6d57Sdrh           sqlite3ExprListDelete(db, pDel);
4122dba0137eSdanielk1977           goto select_end;
4123dba0137eSdanielk1977         }
412413449892Sdrh         updateAccumulator(pParse, &sAggInfo);
4125a9d1ccb9Sdanielk1977         if( !pMinMax && flag ){
4126a9d1ccb9Sdanielk1977           sqlite3VdbeAddOp2(v, OP_Goto, 0, pWInfo->iBreak);
4127a5533162Sdanielk1977           VdbeComment((v, "%s() by index",
4128a5533162Sdanielk1977                 (flag==WHERE_ORDERBY_MIN?"min":"max")));
4129a9d1ccb9Sdanielk1977         }
413013449892Sdrh         sqlite3WhereEnd(pWInfo);
413113449892Sdrh         finalizeAggFunctions(pParse, &sAggInfo);
41327a895a80Sdanielk1977       }
41337a895a80Sdanielk1977 
413413449892Sdrh       pOrderBy = 0;
41355774b806Sdrh       if( pHaving ){
413635573356Sdrh         sqlite3ExprIfFalse(pParse, pHaving, addrEnd, SQLITE_JUMPIFNULL);
41375774b806Sdrh       }
413813449892Sdrh       selectInnerLoop(pParse, p, p->pEList, 0, 0, 0, -1,
4139a9671a22Sdrh                       pDest, addrEnd, addrEnd);
4140633e6d57Sdrh       sqlite3ExprListDelete(db, pDel);
414113449892Sdrh     }
414213449892Sdrh     sqlite3VdbeResolveLabel(v, addrEnd);
414313449892Sdrh 
414413449892Sdrh   } /* endif aggregate query */
41452282792aSdrh 
4146cce7d176Sdrh   /* If there is an ORDER BY clause, then we need to sort the results
4147cce7d176Sdrh   ** and send them to the callback one by one.
4148cce7d176Sdrh   */
4149cce7d176Sdrh   if( pOrderBy ){
41506c8c8ce0Sdanielk1977     generateSortTail(pParse, p, v, pEList->nExpr, pDest);
4151cce7d176Sdrh   }
41526a535340Sdrh 
4153ec7429aeSdrh   /* Jump here to skip this query
4154ec7429aeSdrh   */
4155ec7429aeSdrh   sqlite3VdbeResolveLabel(v, iEnd);
4156ec7429aeSdrh 
41571d83f052Sdrh   /* The SELECT was successfully coded.   Set the return code to 0
41581d83f052Sdrh   ** to indicate no errors.
41591d83f052Sdrh   */
41601d83f052Sdrh   rc = 0;
41611d83f052Sdrh 
41621d83f052Sdrh   /* Control jumps to here if an error is encountered above, or upon
41631d83f052Sdrh   ** successful coding of the SELECT.
41641d83f052Sdrh   */
41651d83f052Sdrh select_end:
4166955de52cSdanielk1977 
41677d10d5a6Sdrh   /* Identify column names if results of the SELECT are to be output.
4168955de52cSdanielk1977   */
41697d10d5a6Sdrh   if( rc==SQLITE_OK && pDest->eDest==SRT_Output ){
4170955de52cSdanielk1977     generateColumnNames(pParse, pTabList, pEList);
4171955de52cSdanielk1977   }
4172955de52cSdanielk1977 
4173633e6d57Sdrh   sqlite3DbFree(db, sAggInfo.aCol);
4174633e6d57Sdrh   sqlite3DbFree(db, sAggInfo.aFunc);
41751d83f052Sdrh   return rc;
4176cce7d176Sdrh }
4177485f0039Sdrh 
417877a2a5e7Sdrh #if defined(SQLITE_DEBUG)
4179485f0039Sdrh /*
4180485f0039Sdrh *******************************************************************************
4181485f0039Sdrh ** The following code is used for testing and debugging only.  The code
4182485f0039Sdrh ** that follows does not appear in normal builds.
4183485f0039Sdrh **
4184485f0039Sdrh ** These routines are used to print out the content of all or part of a
4185485f0039Sdrh ** parse structures such as Select or Expr.  Such printouts are useful
4186485f0039Sdrh ** for helping to understand what is happening inside the code generator
4187485f0039Sdrh ** during the execution of complex SELECT statements.
4188485f0039Sdrh **
4189485f0039Sdrh ** These routine are not called anywhere from within the normal
4190485f0039Sdrh ** code base.  Then are intended to be called from within the debugger
4191485f0039Sdrh ** or from temporary "printf" statements inserted for debugging.
4192485f0039Sdrh */
4193dafc0ce8Sdrh void sqlite3PrintExpr(Expr *p){
4194485f0039Sdrh   if( p->token.z && p->token.n>0 ){
4195485f0039Sdrh     sqlite3DebugPrintf("(%.*s", p->token.n, p->token.z);
4196485f0039Sdrh   }else{
4197485f0039Sdrh     sqlite3DebugPrintf("(%d", p->op);
4198485f0039Sdrh   }
4199485f0039Sdrh   if( p->pLeft ){
4200485f0039Sdrh     sqlite3DebugPrintf(" ");
4201485f0039Sdrh     sqlite3PrintExpr(p->pLeft);
4202485f0039Sdrh   }
4203485f0039Sdrh   if( p->pRight ){
4204485f0039Sdrh     sqlite3DebugPrintf(" ");
4205485f0039Sdrh     sqlite3PrintExpr(p->pRight);
4206485f0039Sdrh   }
4207485f0039Sdrh   sqlite3DebugPrintf(")");
4208485f0039Sdrh }
4209dafc0ce8Sdrh void sqlite3PrintExprList(ExprList *pList){
4210485f0039Sdrh   int i;
4211485f0039Sdrh   for(i=0; i<pList->nExpr; i++){
4212485f0039Sdrh     sqlite3PrintExpr(pList->a[i].pExpr);
4213485f0039Sdrh     if( i<pList->nExpr-1 ){
4214485f0039Sdrh       sqlite3DebugPrintf(", ");
4215485f0039Sdrh     }
4216485f0039Sdrh   }
4217485f0039Sdrh }
4218dafc0ce8Sdrh void sqlite3PrintSelect(Select *p, int indent){
4219485f0039Sdrh   sqlite3DebugPrintf("%*sSELECT(%p) ", indent, "", p);
4220485f0039Sdrh   sqlite3PrintExprList(p->pEList);
4221485f0039Sdrh   sqlite3DebugPrintf("\n");
4222485f0039Sdrh   if( p->pSrc ){
4223485f0039Sdrh     char *zPrefix;
4224485f0039Sdrh     int i;
4225485f0039Sdrh     zPrefix = "FROM";
4226485f0039Sdrh     for(i=0; i<p->pSrc->nSrc; i++){
4227485f0039Sdrh       struct SrcList_item *pItem = &p->pSrc->a[i];
4228485f0039Sdrh       sqlite3DebugPrintf("%*s ", indent+6, zPrefix);
4229485f0039Sdrh       zPrefix = "";
4230485f0039Sdrh       if( pItem->pSelect ){
4231485f0039Sdrh         sqlite3DebugPrintf("(\n");
4232485f0039Sdrh         sqlite3PrintSelect(pItem->pSelect, indent+10);
4233485f0039Sdrh         sqlite3DebugPrintf("%*s)", indent+8, "");
4234485f0039Sdrh       }else if( pItem->zName ){
4235485f0039Sdrh         sqlite3DebugPrintf("%s", pItem->zName);
4236485f0039Sdrh       }
4237485f0039Sdrh       if( pItem->pTab ){
4238485f0039Sdrh         sqlite3DebugPrintf("(table: %s)", pItem->pTab->zName);
4239485f0039Sdrh       }
4240485f0039Sdrh       if( pItem->zAlias ){
4241485f0039Sdrh         sqlite3DebugPrintf(" AS %s", pItem->zAlias);
4242485f0039Sdrh       }
4243485f0039Sdrh       if( i<p->pSrc->nSrc-1 ){
4244485f0039Sdrh         sqlite3DebugPrintf(",");
4245485f0039Sdrh       }
4246485f0039Sdrh       sqlite3DebugPrintf("\n");
4247485f0039Sdrh     }
4248485f0039Sdrh   }
4249485f0039Sdrh   if( p->pWhere ){
4250485f0039Sdrh     sqlite3DebugPrintf("%*s WHERE ", indent, "");
4251485f0039Sdrh     sqlite3PrintExpr(p->pWhere);
4252485f0039Sdrh     sqlite3DebugPrintf("\n");
4253485f0039Sdrh   }
4254485f0039Sdrh   if( p->pGroupBy ){
4255485f0039Sdrh     sqlite3DebugPrintf("%*s GROUP BY ", indent, "");
4256485f0039Sdrh     sqlite3PrintExprList(p->pGroupBy);
4257485f0039Sdrh     sqlite3DebugPrintf("\n");
4258485f0039Sdrh   }
4259485f0039Sdrh   if( p->pHaving ){
4260485f0039Sdrh     sqlite3DebugPrintf("%*s HAVING ", indent, "");
4261485f0039Sdrh     sqlite3PrintExpr(p->pHaving);
4262485f0039Sdrh     sqlite3DebugPrintf("\n");
4263485f0039Sdrh   }
4264485f0039Sdrh   if( p->pOrderBy ){
4265485f0039Sdrh     sqlite3DebugPrintf("%*s ORDER BY ", indent, "");
4266485f0039Sdrh     sqlite3PrintExprList(p->pOrderBy);
4267485f0039Sdrh     sqlite3DebugPrintf("\n");
4268485f0039Sdrh   }
4269485f0039Sdrh }
4270485f0039Sdrh /* End of the structure debug printing code
4271485f0039Sdrh *****************************************************************************/
4272485f0039Sdrh #endif /* defined(SQLITE_TEST) || defined(SQLITE_DEBUG) */
4273