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*d9da78a2Sdrh ** $Id: select.c,v 1.505 2009/03/24 15:08:10 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; 19691bb0eedSdrh } 19791bb0eedSdrh 198c182d163Sdrh /* 199f3b863edSdanielk1977 ** Set the token to the double-quoted and escaped version of the string pointed 200f3b863edSdanielk1977 ** to by z. For example; 201f3b863edSdanielk1977 ** 202f3b863edSdanielk1977 ** {a"bc} -> {"a""bc"} 203f3b863edSdanielk1977 */ 2041e536953Sdanielk1977 static void setQuotedToken(Parse *pParse, Token *p, const char *z){ 205a686bfcfSdanielk1977 206f018cc2eSdrh /* Check if the string appears to be quoted using "..." or `...` 207f018cc2eSdrh ** or [...] or '...' or if the string contains any " characters. 208f018cc2eSdrh ** If it does, then record a version of the string with the special 209f018cc2eSdrh ** characters escaped. 210a686bfcfSdanielk1977 */ 211a686bfcfSdanielk1977 const char *z2 = z; 212f018cc2eSdrh if( *z2!='[' && *z2!='`' && *z2!='\'' ){ 213a686bfcfSdanielk1977 while( *z2 ){ 214a686bfcfSdanielk1977 if( *z2=='"' ) break; 215a686bfcfSdanielk1977 z2++; 216a686bfcfSdanielk1977 } 217f018cc2eSdrh } 218a686bfcfSdanielk1977 219a686bfcfSdanielk1977 if( *z2 ){ 220a686bfcfSdanielk1977 /* String contains " characters - copy and quote the string. */ 221a686bfcfSdanielk1977 p->z = (u8 *)sqlite3MPrintf(pParse->db, "\"%w\"", z); 222f3b863edSdanielk1977 if( p->z ){ 223ea678832Sdrh p->n = sqlite3Strlen30((char *)p->z); 224a686bfcfSdanielk1977 p->dyn = 1; 225a686bfcfSdanielk1977 } 2261e536953Sdanielk1977 }else{ 227a686bfcfSdanielk1977 /* String contains no " characters - copy the pointer. */ 228a686bfcfSdanielk1977 p->z = (u8*)z; 229ea678832Sdrh p->n = (int)(z2 - z); 230a686bfcfSdanielk1977 p->dyn = 0; 231f3b863edSdanielk1977 } 232f3b863edSdanielk1977 } 233f3b863edSdanielk1977 234f3b863edSdanielk1977 /* 235c182d163Sdrh ** Create an expression node for an identifier with the name of zName 236c182d163Sdrh */ 23717435752Sdrh Expr *sqlite3CreateIdExpr(Parse *pParse, const char *zName){ 238c182d163Sdrh Token dummy; 239c182d163Sdrh setToken(&dummy, zName); 24017435752Sdrh return sqlite3PExpr(pParse, TK_ID, 0, 0, &dummy); 241c182d163Sdrh } 242c182d163Sdrh 24391bb0eedSdrh /* 244ad2d8307Sdrh ** Add a term to the WHERE expression in *ppExpr that requires the 245ad2d8307Sdrh ** zCol column to be equal in the two tables pTab1 and pTab2. 246ad2d8307Sdrh */ 247ad2d8307Sdrh static void addWhereTerm( 24817435752Sdrh Parse *pParse, /* Parsing context */ 249ad2d8307Sdrh const char *zCol, /* Name of the column */ 250ad2d8307Sdrh const Table *pTab1, /* First table */ 251030530deSdrh const char *zAlias1, /* Alias for first table. May be NULL */ 252ad2d8307Sdrh const Table *pTab2, /* Second table */ 253030530deSdrh const char *zAlias2, /* Alias for second table. May be NULL */ 25422d6a53aSdrh int iRightJoinTable, /* VDBE cursor for the right table */ 255ad27e761Sdrh Expr **ppExpr, /* Add the equality term to this expression */ 256ad27e761Sdrh int isOuterJoin /* True if dealing with an OUTER join */ 257ad2d8307Sdrh ){ 258ad2d8307Sdrh Expr *pE1a, *pE1b, *pE1c; 259ad2d8307Sdrh Expr *pE2a, *pE2b, *pE2c; 260ad2d8307Sdrh Expr *pE; 261ad2d8307Sdrh 26217435752Sdrh pE1a = sqlite3CreateIdExpr(pParse, zCol); 26317435752Sdrh pE2a = sqlite3CreateIdExpr(pParse, zCol); 264030530deSdrh if( zAlias1==0 ){ 265030530deSdrh zAlias1 = pTab1->zName; 266030530deSdrh } 26717435752Sdrh pE1b = sqlite3CreateIdExpr(pParse, zAlias1); 268030530deSdrh if( zAlias2==0 ){ 269030530deSdrh zAlias2 = pTab2->zName; 270030530deSdrh } 27117435752Sdrh pE2b = sqlite3CreateIdExpr(pParse, zAlias2); 27217435752Sdrh pE1c = sqlite3PExpr(pParse, TK_DOT, pE1b, pE1a, 0); 27317435752Sdrh pE2c = sqlite3PExpr(pParse, TK_DOT, pE2b, pE2a, 0); 2741e536953Sdanielk1977 pE = sqlite3PExpr(pParse, TK_EQ, pE1c, pE2c, 0); 275ad27e761Sdrh if( pE && isOuterJoin ){ 2761f16230bSdrh ExprSetProperty(pE, EP_FromJoin); 27722d6a53aSdrh pE->iRightJoinTable = iRightJoinTable; 278206f3d96Sdrh } 279f4ce8ed0Sdrh *ppExpr = sqlite3ExprAnd(pParse->db,*ppExpr, pE); 280ad2d8307Sdrh } 281ad2d8307Sdrh 282ad2d8307Sdrh /* 2831f16230bSdrh ** Set the EP_FromJoin property on all terms of the given expression. 28422d6a53aSdrh ** And set the Expr.iRightJoinTable to iTable for every term in the 28522d6a53aSdrh ** expression. 2861cc093c2Sdrh ** 287e78e8284Sdrh ** The EP_FromJoin property is used on terms of an expression to tell 2881cc093c2Sdrh ** the LEFT OUTER JOIN processing logic that this term is part of the 2891f16230bSdrh ** join restriction specified in the ON or USING clause and not a part 2901f16230bSdrh ** of the more general WHERE clause. These terms are moved over to the 2911f16230bSdrh ** WHERE clause during join processing but we need to remember that they 2921f16230bSdrh ** originated in the ON or USING clause. 29322d6a53aSdrh ** 29422d6a53aSdrh ** The Expr.iRightJoinTable tells the WHERE clause processing that the 29522d6a53aSdrh ** expression depends on table iRightJoinTable even if that table is not 29622d6a53aSdrh ** explicitly mentioned in the expression. That information is needed 29722d6a53aSdrh ** for cases like this: 29822d6a53aSdrh ** 29922d6a53aSdrh ** SELECT * FROM t1 LEFT JOIN t2 ON t1.a=t2.b AND t1.x=5 30022d6a53aSdrh ** 30122d6a53aSdrh ** The where clause needs to defer the handling of the t1.x=5 30222d6a53aSdrh ** term until after the t2 loop of the join. In that way, a 30322d6a53aSdrh ** NULL t2 row will be inserted whenever t1.x!=5. If we do not 30422d6a53aSdrh ** defer the handling of t1.x=5, it will be processed immediately 30522d6a53aSdrh ** after the t1 loop and rows with t1.x!=5 will never appear in 30622d6a53aSdrh ** the output, which is incorrect. 3071cc093c2Sdrh */ 30822d6a53aSdrh static void setJoinExpr(Expr *p, int iTable){ 3091cc093c2Sdrh while( p ){ 3101f16230bSdrh ExprSetProperty(p, EP_FromJoin); 31122d6a53aSdrh p->iRightJoinTable = iTable; 31222d6a53aSdrh setJoinExpr(p->pLeft, iTable); 3131cc093c2Sdrh p = p->pRight; 3141cc093c2Sdrh } 3151cc093c2Sdrh } 3161cc093c2Sdrh 3171cc093c2Sdrh /* 318ad2d8307Sdrh ** This routine processes the join information for a SELECT statement. 319ad2d8307Sdrh ** ON and USING clauses are converted into extra terms of the WHERE clause. 320ad2d8307Sdrh ** NATURAL joins also create extra WHERE clause terms. 321ad2d8307Sdrh ** 32291bb0eedSdrh ** The terms of a FROM clause are contained in the Select.pSrc structure. 32391bb0eedSdrh ** The left most table is the first entry in Select.pSrc. The right-most 32491bb0eedSdrh ** table is the last entry. The join operator is held in the entry to 32591bb0eedSdrh ** the left. Thus entry 0 contains the join operator for the join between 32691bb0eedSdrh ** entries 0 and 1. Any ON or USING clauses associated with the join are 32791bb0eedSdrh ** also attached to the left entry. 32891bb0eedSdrh ** 329ad2d8307Sdrh ** This routine returns the number of errors encountered. 330ad2d8307Sdrh */ 331ad2d8307Sdrh static int sqliteProcessJoin(Parse *pParse, Select *p){ 33291bb0eedSdrh SrcList *pSrc; /* All tables in the FROM clause */ 33391bb0eedSdrh int i, j; /* Loop counters */ 33491bb0eedSdrh struct SrcList_item *pLeft; /* Left table being joined */ 33591bb0eedSdrh struct SrcList_item *pRight; /* Right table being joined */ 336ad2d8307Sdrh 33791bb0eedSdrh pSrc = p->pSrc; 33891bb0eedSdrh pLeft = &pSrc->a[0]; 33991bb0eedSdrh pRight = &pLeft[1]; 34091bb0eedSdrh for(i=0; i<pSrc->nSrc-1; i++, pRight++, pLeft++){ 34191bb0eedSdrh Table *pLeftTab = pLeft->pTab; 34291bb0eedSdrh Table *pRightTab = pRight->pTab; 343ad27e761Sdrh int isOuter; 34491bb0eedSdrh 3451c767f0dSdrh if( NEVER(pLeftTab==0 || pRightTab==0) ) continue; 346ad27e761Sdrh isOuter = (pRight->jointype & JT_OUTER)!=0; 347ad2d8307Sdrh 348ad2d8307Sdrh /* When the NATURAL keyword is present, add WHERE clause terms for 349ad2d8307Sdrh ** every column that the two tables have in common. 350ad2d8307Sdrh */ 35161dfc31dSdrh if( pRight->jointype & JT_NATURAL ){ 35261dfc31dSdrh if( pRight->pOn || pRight->pUsing ){ 3534adee20fSdanielk1977 sqlite3ErrorMsg(pParse, "a NATURAL join may not have " 354ad2d8307Sdrh "an ON or USING clause", 0); 355ad2d8307Sdrh return 1; 356ad2d8307Sdrh } 35791bb0eedSdrh for(j=0; j<pLeftTab->nCol; j++){ 35891bb0eedSdrh char *zName = pLeftTab->aCol[j].zName; 35991bb0eedSdrh if( columnIndex(pRightTab, zName)>=0 ){ 3601e536953Sdanielk1977 addWhereTerm(pParse, zName, pLeftTab, pLeft->zAlias, 36122d6a53aSdrh pRightTab, pRight->zAlias, 362ad27e761Sdrh pRight->iCursor, &p->pWhere, isOuter); 36322d6a53aSdrh 364ad2d8307Sdrh } 365ad2d8307Sdrh } 366ad2d8307Sdrh } 367ad2d8307Sdrh 368ad2d8307Sdrh /* Disallow both ON and USING clauses in the same join 369ad2d8307Sdrh */ 37061dfc31dSdrh if( pRight->pOn && pRight->pUsing ){ 3714adee20fSdanielk1977 sqlite3ErrorMsg(pParse, "cannot have both ON and USING " 372da93d238Sdrh "clauses in the same join"); 373ad2d8307Sdrh return 1; 374ad2d8307Sdrh } 375ad2d8307Sdrh 376ad2d8307Sdrh /* Add the ON clause to the end of the WHERE clause, connected by 37791bb0eedSdrh ** an AND operator. 378ad2d8307Sdrh */ 37961dfc31dSdrh if( pRight->pOn ){ 380ad27e761Sdrh if( isOuter ) setJoinExpr(pRight->pOn, pRight->iCursor); 38117435752Sdrh p->pWhere = sqlite3ExprAnd(pParse->db, p->pWhere, pRight->pOn); 38261dfc31dSdrh pRight->pOn = 0; 383ad2d8307Sdrh } 384ad2d8307Sdrh 385ad2d8307Sdrh /* Create extra terms on the WHERE clause for each column named 386ad2d8307Sdrh ** in the USING clause. Example: If the two tables to be joined are 387ad2d8307Sdrh ** A and B and the USING clause names X, Y, and Z, then add this 388ad2d8307Sdrh ** to the WHERE clause: A.X=B.X AND A.Y=B.Y AND A.Z=B.Z 389ad2d8307Sdrh ** Report an error if any column mentioned in the USING clause is 390ad2d8307Sdrh ** not contained in both tables to be joined. 391ad2d8307Sdrh */ 39261dfc31dSdrh if( pRight->pUsing ){ 39361dfc31dSdrh IdList *pList = pRight->pUsing; 394ad2d8307Sdrh for(j=0; j<pList->nId; j++){ 39591bb0eedSdrh char *zName = pList->a[j].zName; 39691bb0eedSdrh if( columnIndex(pLeftTab, zName)<0 || columnIndex(pRightTab, zName)<0 ){ 3974adee20fSdanielk1977 sqlite3ErrorMsg(pParse, "cannot join using column %s - column " 39891bb0eedSdrh "not present in both tables", zName); 399ad2d8307Sdrh return 1; 400ad2d8307Sdrh } 4011e536953Sdanielk1977 addWhereTerm(pParse, zName, pLeftTab, pLeft->zAlias, 40222d6a53aSdrh pRightTab, pRight->zAlias, 403ad27e761Sdrh pRight->iCursor, &p->pWhere, isOuter); 404ad2d8307Sdrh } 405ad2d8307Sdrh } 406ad2d8307Sdrh } 407ad2d8307Sdrh return 0; 408ad2d8307Sdrh } 409ad2d8307Sdrh 410ad2d8307Sdrh /* 411c926afbcSdrh ** Insert code into "v" that will push the record on the top of the 412c926afbcSdrh ** stack into the sorter. 413c926afbcSdrh */ 414d59ba6ceSdrh static void pushOntoSorter( 415d59ba6ceSdrh Parse *pParse, /* Parser context */ 416d59ba6ceSdrh ExprList *pOrderBy, /* The ORDER BY clause */ 417b7654111Sdrh Select *pSelect, /* The whole SELECT statement */ 418b7654111Sdrh int regData /* Register holding data to be sorted */ 419d59ba6ceSdrh ){ 420d59ba6ceSdrh Vdbe *v = pParse->pVdbe; 421892d3179Sdrh int nExpr = pOrderBy->nExpr; 422892d3179Sdrh int regBase = sqlite3GetTempRange(pParse, nExpr+2); 423892d3179Sdrh int regRecord = sqlite3GetTempReg(pParse); 424191b54cbSdrh sqlite3ExprCodeExprList(pParse, pOrderBy, regBase, 0); 425892d3179Sdrh sqlite3VdbeAddOp2(v, OP_Sequence, pOrderBy->iECursor, regBase+nExpr); 426b21e7c70Sdrh sqlite3ExprCodeMove(pParse, regData, regBase+nExpr+1, 1); 4271db639ceSdrh sqlite3VdbeAddOp3(v, OP_MakeRecord, regBase, nExpr + 2, regRecord); 428892d3179Sdrh sqlite3VdbeAddOp2(v, OP_IdxInsert, pOrderBy->iECursor, regRecord); 429892d3179Sdrh sqlite3ReleaseTempReg(pParse, regRecord); 430892d3179Sdrh sqlite3ReleaseTempRange(pParse, regBase, nExpr+2); 43192b01d53Sdrh if( pSelect->iLimit ){ 43215007a99Sdrh int addr1, addr2; 433b7654111Sdrh int iLimit; 4340acb7e48Sdrh if( pSelect->iOffset ){ 435b7654111Sdrh iLimit = pSelect->iOffset+1; 436b7654111Sdrh }else{ 437b7654111Sdrh iLimit = pSelect->iLimit; 438b7654111Sdrh } 439b7654111Sdrh addr1 = sqlite3VdbeAddOp1(v, OP_IfZero, iLimit); 440b7654111Sdrh sqlite3VdbeAddOp2(v, OP_AddImm, iLimit, -1); 4413c84ddffSdrh addr2 = sqlite3VdbeAddOp0(v, OP_Goto); 442d59ba6ceSdrh sqlite3VdbeJumpHere(v, addr1); 4433c84ddffSdrh sqlite3VdbeAddOp1(v, OP_Last, pOrderBy->iECursor); 4443c84ddffSdrh sqlite3VdbeAddOp1(v, OP_Delete, pOrderBy->iECursor); 44515007a99Sdrh sqlite3VdbeJumpHere(v, addr2); 44692b01d53Sdrh pSelect->iLimit = 0; 447d59ba6ceSdrh } 448c926afbcSdrh } 449c926afbcSdrh 450c926afbcSdrh /* 451ec7429aeSdrh ** Add code to implement the OFFSET 452ea48eb2eSdrh */ 453ec7429aeSdrh static void codeOffset( 454bab39e13Sdrh Vdbe *v, /* Generate code into this VM */ 455ea48eb2eSdrh Select *p, /* The SELECT statement being coded */ 456b7654111Sdrh int iContinue /* Jump here to skip the current record */ 457ea48eb2eSdrh ){ 45892b01d53Sdrh if( p->iOffset && iContinue!=0 ){ 45915007a99Sdrh int addr; 4608558cde1Sdrh sqlite3VdbeAddOp2(v, OP_AddImm, p->iOffset, -1); 4613c84ddffSdrh addr = sqlite3VdbeAddOp1(v, OP_IfNeg, p->iOffset); 46266a5167bSdrh sqlite3VdbeAddOp2(v, OP_Goto, 0, iContinue); 463d4e70ebdSdrh VdbeComment((v, "skip OFFSET records")); 46415007a99Sdrh sqlite3VdbeJumpHere(v, addr); 465ea48eb2eSdrh } 466ea48eb2eSdrh } 467ea48eb2eSdrh 468ea48eb2eSdrh /* 46998757157Sdrh ** Add code that will check to make sure the N registers starting at iMem 47098757157Sdrh ** form a distinct entry. iTab is a sorting index that holds previously 471a2a49dc9Sdrh ** seen combinations of the N values. A new entry is made in iTab 472a2a49dc9Sdrh ** if the current N values are new. 473a2a49dc9Sdrh ** 474a2a49dc9Sdrh ** A jump to addrRepeat is made and the N+1 values are popped from the 475a2a49dc9Sdrh ** stack if the top N elements are not distinct. 476a2a49dc9Sdrh */ 477a2a49dc9Sdrh static void codeDistinct( 4782dcef11bSdrh Parse *pParse, /* Parsing and code generating context */ 479a2a49dc9Sdrh int iTab, /* A sorting index used to test for distinctness */ 480a2a49dc9Sdrh int addrRepeat, /* Jump to here if not distinct */ 481477df4b3Sdrh int N, /* Number of elements */ 482a2a49dc9Sdrh int iMem /* First element */ 483a2a49dc9Sdrh ){ 4842dcef11bSdrh Vdbe *v; 4852dcef11bSdrh int r1; 4862dcef11bSdrh 4872dcef11bSdrh v = pParse->pVdbe; 4882dcef11bSdrh r1 = sqlite3GetTempReg(pParse); 4891db639ceSdrh sqlite3VdbeAddOp3(v, OP_MakeRecord, iMem, N, r1); 4902dcef11bSdrh sqlite3VdbeAddOp3(v, OP_Found, iTab, addrRepeat, r1); 4912dcef11bSdrh sqlite3VdbeAddOp2(v, OP_IdxInsert, iTab, r1); 4922dcef11bSdrh sqlite3ReleaseTempReg(pParse, r1); 493a2a49dc9Sdrh } 494a2a49dc9Sdrh 495a2a49dc9Sdrh /* 496e305f43fSdrh ** Generate an error message when a SELECT is used within a subexpression 497e305f43fSdrh ** (example: "a IN (SELECT * FROM table)") but it has more than 1 result 498e305f43fSdrh ** column. We do this in a subroutine because the error occurs in multiple 499e305f43fSdrh ** places. 500e305f43fSdrh */ 5016c8c8ce0Sdanielk1977 static int checkForMultiColumnSelectError( 5026c8c8ce0Sdanielk1977 Parse *pParse, /* Parse context. */ 5036c8c8ce0Sdanielk1977 SelectDest *pDest, /* Destination of SELECT results */ 5046c8c8ce0Sdanielk1977 int nExpr /* Number of result columns returned by SELECT */ 5056c8c8ce0Sdanielk1977 ){ 5066c8c8ce0Sdanielk1977 int eDest = pDest->eDest; 507e305f43fSdrh if( nExpr>1 && (eDest==SRT_Mem || eDest==SRT_Set) ){ 508e305f43fSdrh sqlite3ErrorMsg(pParse, "only a single result allowed for " 509e305f43fSdrh "a SELECT that is part of an expression"); 510e305f43fSdrh return 1; 511e305f43fSdrh }else{ 512e305f43fSdrh return 0; 513e305f43fSdrh } 514e305f43fSdrh } 515c99130fdSdrh 516c99130fdSdrh /* 5172282792aSdrh ** This routine generates the code for the inside of the inner loop 5182282792aSdrh ** of a SELECT. 51982c3d636Sdrh ** 52038640e15Sdrh ** If srcTab and nColumn are both zero, then the pEList expressions 52138640e15Sdrh ** are evaluated in order to get the data for this row. If nColumn>0 52238640e15Sdrh ** then data is pulled from srcTab and pEList is used only to get the 52338640e15Sdrh ** datatypes for each column. 5242282792aSdrh */ 525d2b3e23bSdrh static void selectInnerLoop( 5262282792aSdrh Parse *pParse, /* The parser context */ 527df199a25Sdrh Select *p, /* The complete select statement being coded */ 5282282792aSdrh ExprList *pEList, /* List of values being extracted */ 52982c3d636Sdrh int srcTab, /* Pull data from this table */ 530967e8b73Sdrh int nColumn, /* Number of columns in the source table */ 5312282792aSdrh ExprList *pOrderBy, /* If not NULL, sort results using this key */ 5322282792aSdrh int distinct, /* If >=0, make sure results are distinct */ 5336c8c8ce0Sdanielk1977 SelectDest *pDest, /* How to dispose of the results */ 5342282792aSdrh int iContinue, /* Jump here to continue with next row */ 535a9671a22Sdrh int iBreak /* Jump here to break out of the inner loop */ 5362282792aSdrh ){ 5372282792aSdrh Vdbe *v = pParse->pVdbe; 538d847eaadSdrh int i; 539ea48eb2eSdrh int hasDistinct; /* True if the DISTINCT keyword is present */ 540d847eaadSdrh int regResult; /* Start of memory holding result set */ 541d847eaadSdrh int eDest = pDest->eDest; /* How to dispose of results */ 542d847eaadSdrh int iParm = pDest->iParm; /* First argument to disposal method */ 543d847eaadSdrh int nResultCol; /* Number of result columns */ 54438640e15Sdrh 5451c767f0dSdrh assert( v ); 5461c767f0dSdrh if( NEVER(v==0) ) return; 54738640e15Sdrh assert( pEList!=0 ); 548e49b146fSdrh hasDistinct = distinct>=0; 549ea48eb2eSdrh if( pOrderBy==0 && !hasDistinct ){ 550b7654111Sdrh codeOffset(v, p, iContinue); 551df199a25Sdrh } 552df199a25Sdrh 553967e8b73Sdrh /* Pull the requested columns. 5542282792aSdrh */ 55538640e15Sdrh if( nColumn>0 ){ 556d847eaadSdrh nResultCol = nColumn; 557a2a49dc9Sdrh }else{ 558d847eaadSdrh nResultCol = pEList->nExpr; 559a2a49dc9Sdrh } 5601ece7325Sdrh if( pDest->iMem==0 ){ 5610acb7e48Sdrh pDest->iMem = pParse->nMem+1; 562ad27e761Sdrh pDest->nMem = nResultCol; 5630acb7e48Sdrh pParse->nMem += nResultCol; 5641c767f0dSdrh }else{ 5651c767f0dSdrh assert( pDest->nMem==nResultCol ); 5661013c932Sdrh } 5671ece7325Sdrh regResult = pDest->iMem; 568a2a49dc9Sdrh if( nColumn>0 ){ 569967e8b73Sdrh for(i=0; i<nColumn; i++){ 570d847eaadSdrh sqlite3VdbeAddOp3(v, OP_Column, srcTab, i, regResult+i); 57182c3d636Sdrh } 5729ed1dfa8Sdanielk1977 }else if( eDest!=SRT_Exists ){ 5739ed1dfa8Sdanielk1977 /* If the destination is an EXISTS(...) expression, the actual 5749ed1dfa8Sdanielk1977 ** values returned by the SELECT are not required. 5759ed1dfa8Sdanielk1977 */ 5767d10d5a6Sdrh sqlite3ExprCodeExprList(pParse, pEList, regResult, eDest==SRT_Output); 577a2a49dc9Sdrh } 578d847eaadSdrh nColumn = nResultCol; 5792282792aSdrh 580daffd0e5Sdrh /* If the DISTINCT keyword was present on the SELECT statement 581daffd0e5Sdrh ** and this row has been seen before, then do not make this row 582daffd0e5Sdrh ** part of the result. 5832282792aSdrh */ 584ea48eb2eSdrh if( hasDistinct ){ 585f8875400Sdrh assert( pEList!=0 ); 586f8875400Sdrh assert( pEList->nExpr==nColumn ); 587d847eaadSdrh codeDistinct(pParse, distinct, iContinue, nColumn, regResult); 588ea48eb2eSdrh if( pOrderBy==0 ){ 589b7654111Sdrh codeOffset(v, p, iContinue); 590ea48eb2eSdrh } 5912282792aSdrh } 59282c3d636Sdrh 5936c8c8ce0Sdanielk1977 if( checkForMultiColumnSelectError(pParse, pDest, pEList->nExpr) ){ 594d2b3e23bSdrh return; 595e305f43fSdrh } 596e305f43fSdrh 597c926afbcSdrh switch( eDest ){ 59882c3d636Sdrh /* In this mode, write each query result to the key of the temporary 59982c3d636Sdrh ** table iParm. 6002282792aSdrh */ 60113449892Sdrh #ifndef SQLITE_OMIT_COMPOUND_SELECT 602c926afbcSdrh case SRT_Union: { 6039cbf3425Sdrh int r1; 6049cbf3425Sdrh r1 = sqlite3GetTempReg(pParse); 605d847eaadSdrh sqlite3VdbeAddOp3(v, OP_MakeRecord, regResult, nColumn, r1); 6069cbf3425Sdrh sqlite3VdbeAddOp2(v, OP_IdxInsert, iParm, r1); 6079cbf3425Sdrh sqlite3ReleaseTempReg(pParse, r1); 608c926afbcSdrh break; 609c926afbcSdrh } 61082c3d636Sdrh 61182c3d636Sdrh /* Construct a record from the query result, but instead of 61282c3d636Sdrh ** saving that record, use it as a key to delete elements from 61382c3d636Sdrh ** the temporary table iParm. 61482c3d636Sdrh */ 615c926afbcSdrh case SRT_Except: { 616e14006d0Sdrh sqlite3VdbeAddOp3(v, OP_IdxDelete, iParm, regResult, nColumn); 617c926afbcSdrh break; 618c926afbcSdrh } 6195338a5f7Sdanielk1977 #endif 6205338a5f7Sdanielk1977 6215338a5f7Sdanielk1977 /* Store the result as data using a unique key. 6225338a5f7Sdanielk1977 */ 6235338a5f7Sdanielk1977 case SRT_Table: 624b9bb7c18Sdrh case SRT_EphemTab: { 625b7654111Sdrh int r1 = sqlite3GetTempReg(pParse); 626d847eaadSdrh sqlite3VdbeAddOp3(v, OP_MakeRecord, regResult, nColumn, r1); 6275338a5f7Sdanielk1977 if( pOrderBy ){ 628b7654111Sdrh pushOntoSorter(pParse, pOrderBy, p, r1); 6295338a5f7Sdanielk1977 }else{ 630b7654111Sdrh int r2 = sqlite3GetTempReg(pParse); 631b7654111Sdrh sqlite3VdbeAddOp2(v, OP_NewRowid, iParm, r2); 632b7654111Sdrh sqlite3VdbeAddOp3(v, OP_Insert, iParm, r1, r2); 633b7654111Sdrh sqlite3VdbeChangeP5(v, OPFLAG_APPEND); 634b7654111Sdrh sqlite3ReleaseTempReg(pParse, r2); 6355338a5f7Sdanielk1977 } 636b7654111Sdrh sqlite3ReleaseTempReg(pParse, r1); 6375338a5f7Sdanielk1977 break; 6385338a5f7Sdanielk1977 } 6392282792aSdrh 64093758c8dSdanielk1977 #ifndef SQLITE_OMIT_SUBQUERY 6412282792aSdrh /* If we are creating a set for an "expr IN (SELECT ...)" construct, 6422282792aSdrh ** then there should be a single item on the stack. Write this 6432282792aSdrh ** item into the set table with bogus data. 6442282792aSdrh */ 645c926afbcSdrh case SRT_Set: { 646967e8b73Sdrh assert( nColumn==1 ); 6476c8c8ce0Sdanielk1977 p->affinity = sqlite3CompareAffinity(pEList->a[0].pExpr, pDest->affinity); 648c926afbcSdrh if( pOrderBy ){ 649de941c60Sdrh /* At first glance you would think we could optimize out the 650de941c60Sdrh ** ORDER BY in this case since the order of entries in the set 651de941c60Sdrh ** does not matter. But there might be a LIMIT clause, in which 652de941c60Sdrh ** case the order does matter */ 653d847eaadSdrh pushOntoSorter(pParse, pOrderBy, p, regResult); 654c926afbcSdrh }else{ 655b7654111Sdrh int r1 = sqlite3GetTempReg(pParse); 656d847eaadSdrh sqlite3VdbeAddOp4(v, OP_MakeRecord, regResult, 1, r1, &p->affinity, 1); 657da250ea5Sdrh sqlite3ExprCacheAffinityChange(pParse, regResult, 1); 658b7654111Sdrh sqlite3VdbeAddOp2(v, OP_IdxInsert, iParm, r1); 659b7654111Sdrh sqlite3ReleaseTempReg(pParse, r1); 660c926afbcSdrh } 661c926afbcSdrh break; 662c926afbcSdrh } 66382c3d636Sdrh 664504b6989Sdrh /* If any row exist in the result set, record that fact and abort. 665ec7429aeSdrh */ 666ec7429aeSdrh case SRT_Exists: { 6674c583128Sdrh sqlite3VdbeAddOp2(v, OP_Integer, 1, iParm); 668ec7429aeSdrh /* The LIMIT clause will terminate the loop for us */ 669ec7429aeSdrh break; 670ec7429aeSdrh } 671ec7429aeSdrh 6722282792aSdrh /* If this is a scalar select that is part of an expression, then 6732282792aSdrh ** store the results in the appropriate memory cell and break out 6742282792aSdrh ** of the scan loop. 6752282792aSdrh */ 676c926afbcSdrh case SRT_Mem: { 677967e8b73Sdrh assert( nColumn==1 ); 678c926afbcSdrh if( pOrderBy ){ 679d847eaadSdrh pushOntoSorter(pParse, pOrderBy, p, regResult); 680c926afbcSdrh }else{ 681b21e7c70Sdrh sqlite3ExprCodeMove(pParse, regResult, iParm, 1); 682ec7429aeSdrh /* The LIMIT clause will jump out of the loop for us */ 683c926afbcSdrh } 684c926afbcSdrh break; 685c926afbcSdrh } 68693758c8dSdanielk1977 #endif /* #ifndef SQLITE_OMIT_SUBQUERY */ 6872282792aSdrh 688c182d163Sdrh /* Send the data to the callback function or to a subroutine. In the 689c182d163Sdrh ** case of a subroutine, the subroutine itself is responsible for 690c182d163Sdrh ** popping the data from the stack. 691f46f905aSdrh */ 692e00ee6ebSdrh case SRT_Coroutine: 6937d10d5a6Sdrh case SRT_Output: { 694f46f905aSdrh if( pOrderBy ){ 695b7654111Sdrh int r1 = sqlite3GetTempReg(pParse); 696d847eaadSdrh sqlite3VdbeAddOp3(v, OP_MakeRecord, regResult, nColumn, r1); 697b7654111Sdrh pushOntoSorter(pParse, pOrderBy, p, r1); 698b7654111Sdrh sqlite3ReleaseTempReg(pParse, r1); 699e00ee6ebSdrh }else if( eDest==SRT_Coroutine ){ 70092b01d53Sdrh sqlite3VdbeAddOp1(v, OP_Yield, pDest->iParm); 701c182d163Sdrh }else{ 702d847eaadSdrh sqlite3VdbeAddOp2(v, OP_ResultRow, regResult, nColumn); 703da250ea5Sdrh sqlite3ExprCacheAffinityChange(pParse, regResult, nColumn); 704ac82fcf5Sdrh } 705142e30dfSdrh break; 706142e30dfSdrh } 707142e30dfSdrh 7086a67fe8eSdanielk1977 #if !defined(SQLITE_OMIT_TRIGGER) 709d7489c39Sdrh /* Discard the results. This is used for SELECT statements inside 710d7489c39Sdrh ** the body of a TRIGGER. The purpose of such selects is to call 711d7489c39Sdrh ** user-defined functions that have side effects. We do not care 712d7489c39Sdrh ** about the actual results of the select. 713d7489c39Sdrh */ 714c926afbcSdrh default: { 715f46f905aSdrh assert( eDest==SRT_Discard ); 716c926afbcSdrh break; 717c926afbcSdrh } 71893758c8dSdanielk1977 #endif 719c926afbcSdrh } 720ec7429aeSdrh 721ec7429aeSdrh /* Jump to the end of the loop if the LIMIT is reached. 722ec7429aeSdrh */ 723e49b146fSdrh if( p->iLimit ){ 724e49b146fSdrh assert( pOrderBy==0 ); /* If there is an ORDER BY, the call to 725e49b146fSdrh ** pushOntoSorter() would have cleared p->iLimit */ 7268558cde1Sdrh sqlite3VdbeAddOp2(v, OP_AddImm, p->iLimit, -1); 7273c84ddffSdrh sqlite3VdbeAddOp2(v, OP_IfZero, p->iLimit, iBreak); 728ec7429aeSdrh } 72982c3d636Sdrh } 73082c3d636Sdrh 73182c3d636Sdrh /* 732dece1a84Sdrh ** Given an expression list, generate a KeyInfo structure that records 733dece1a84Sdrh ** the collating sequence for each expression in that expression list. 734dece1a84Sdrh ** 7350342b1f5Sdrh ** If the ExprList is an ORDER BY or GROUP BY clause then the resulting 7360342b1f5Sdrh ** KeyInfo structure is appropriate for initializing a virtual index to 7370342b1f5Sdrh ** implement that clause. If the ExprList is the result set of a SELECT 7380342b1f5Sdrh ** then the KeyInfo structure is appropriate for initializing a virtual 7390342b1f5Sdrh ** index to implement a DISTINCT test. 7400342b1f5Sdrh ** 741dece1a84Sdrh ** Space to hold the KeyInfo structure is obtain from malloc. The calling 742dece1a84Sdrh ** function is responsible for seeing that this structure is eventually 74366a5167bSdrh ** freed. Add the KeyInfo structure to the P4 field of an opcode using 74466a5167bSdrh ** P4_KEYINFO_HANDOFF is the usual way of dealing with this. 745dece1a84Sdrh */ 746dece1a84Sdrh static KeyInfo *keyInfoFromExprList(Parse *pParse, ExprList *pList){ 747dece1a84Sdrh sqlite3 *db = pParse->db; 748dece1a84Sdrh int nExpr; 749dece1a84Sdrh KeyInfo *pInfo; 750dece1a84Sdrh struct ExprList_item *pItem; 751dece1a84Sdrh int i; 752dece1a84Sdrh 753dece1a84Sdrh nExpr = pList->nExpr; 75417435752Sdrh pInfo = sqlite3DbMallocZero(db, sizeof(*pInfo) + nExpr*(sizeof(CollSeq*)+1) ); 755dece1a84Sdrh if( pInfo ){ 7562646da7eSdrh pInfo->aSortOrder = (u8*)&pInfo->aColl[nExpr]; 757ea678832Sdrh pInfo->nField = (u16)nExpr; 75814db2665Sdanielk1977 pInfo->enc = ENC(db); 7592aca5846Sdrh pInfo->db = db; 760dece1a84Sdrh for(i=0, pItem=pList->a; i<nExpr; i++, pItem++){ 761dece1a84Sdrh CollSeq *pColl; 762dece1a84Sdrh pColl = sqlite3ExprCollSeq(pParse, pItem->pExpr); 763dece1a84Sdrh if( !pColl ){ 764dece1a84Sdrh pColl = db->pDfltColl; 765dece1a84Sdrh } 766dece1a84Sdrh pInfo->aColl[i] = pColl; 767dece1a84Sdrh pInfo->aSortOrder[i] = pItem->sortOrder; 768dece1a84Sdrh } 769dece1a84Sdrh } 770dece1a84Sdrh return pInfo; 771dece1a84Sdrh } 772dece1a84Sdrh 773dece1a84Sdrh 774dece1a84Sdrh /* 775d8bc7086Sdrh ** If the inner loop was generated using a non-null pOrderBy argument, 776d8bc7086Sdrh ** then the results were placed in a sorter. After the loop is terminated 777d8bc7086Sdrh ** we need to run the sorter and output the results. The following 778d8bc7086Sdrh ** routine generates the code needed to do that. 779d8bc7086Sdrh */ 780c926afbcSdrh static void generateSortTail( 781cdd536f0Sdrh Parse *pParse, /* Parsing context */ 782c926afbcSdrh Select *p, /* The SELECT statement */ 783c926afbcSdrh Vdbe *v, /* Generate code into this VDBE */ 784c926afbcSdrh int nColumn, /* Number of columns of data */ 7856c8c8ce0Sdanielk1977 SelectDest *pDest /* Write the sorted results here */ 786c926afbcSdrh ){ 787dc5ea5c7Sdrh int addrBreak = sqlite3VdbeMakeLabel(v); /* Jump here to exit loop */ 788dc5ea5c7Sdrh int addrContinue = sqlite3VdbeMakeLabel(v); /* Jump here for next cycle */ 789d8bc7086Sdrh int addr; 7900342b1f5Sdrh int iTab; 79161fc595fSdrh int pseudoTab = 0; 7920342b1f5Sdrh ExprList *pOrderBy = p->pOrderBy; 793ffbc3088Sdrh 7946c8c8ce0Sdanielk1977 int eDest = pDest->eDest; 7956c8c8ce0Sdanielk1977 int iParm = pDest->iParm; 7966c8c8ce0Sdanielk1977 7972d401ab8Sdrh int regRow; 7982d401ab8Sdrh int regRowid; 7992d401ab8Sdrh 8009d2985c7Sdrh iTab = pOrderBy->iECursor; 8017d10d5a6Sdrh if( eDest==SRT_Output || eDest==SRT_Coroutine ){ 802cdd536f0Sdrh pseudoTab = pParse->nTab++; 803d336e222Sdanielk1977 sqlite3VdbeAddOp3(v, OP_OpenPseudo, pseudoTab, eDest==SRT_Output, nColumn); 804cdd536f0Sdrh } 805dc5ea5c7Sdrh addr = 1 + sqlite3VdbeAddOp2(v, OP_Sort, iTab, addrBreak); 806dc5ea5c7Sdrh codeOffset(v, p, addrContinue); 8072d401ab8Sdrh regRow = sqlite3GetTempReg(pParse); 8082d401ab8Sdrh regRowid = sqlite3GetTempReg(pParse); 8092d401ab8Sdrh sqlite3VdbeAddOp3(v, OP_Column, iTab, pOrderBy->nExpr + 1, regRow); 810c926afbcSdrh switch( eDest ){ 811c926afbcSdrh case SRT_Table: 812b9bb7c18Sdrh case SRT_EphemTab: { 8131c767f0dSdrh testcase( eDest==SRT_Table ); 8141c767f0dSdrh testcase( eDest==SRT_EphemTab ); 8152d401ab8Sdrh sqlite3VdbeAddOp2(v, OP_NewRowid, iParm, regRowid); 8162d401ab8Sdrh sqlite3VdbeAddOp3(v, OP_Insert, iParm, regRow, regRowid); 8172d401ab8Sdrh sqlite3VdbeChangeP5(v, OPFLAG_APPEND); 818c926afbcSdrh break; 819c926afbcSdrh } 82093758c8dSdanielk1977 #ifndef SQLITE_OMIT_SUBQUERY 821c926afbcSdrh case SRT_Set: { 822c926afbcSdrh assert( nColumn==1 ); 823a7a8e14bSdanielk1977 sqlite3VdbeAddOp4(v, OP_MakeRecord, regRow, 1, regRowid, &p->affinity, 1); 824da250ea5Sdrh sqlite3ExprCacheAffinityChange(pParse, regRow, 1); 825a7a8e14bSdanielk1977 sqlite3VdbeAddOp2(v, OP_IdxInsert, iParm, regRowid); 826c926afbcSdrh break; 827c926afbcSdrh } 828c926afbcSdrh case SRT_Mem: { 829c926afbcSdrh assert( nColumn==1 ); 830b21e7c70Sdrh sqlite3ExprCodeMove(pParse, regRow, iParm, 1); 831ec7429aeSdrh /* The LIMIT clause will terminate the loop for us */ 832c926afbcSdrh break; 833c926afbcSdrh } 83493758c8dSdanielk1977 #endif 8357d10d5a6Sdrh case SRT_Output: 836e00ee6ebSdrh case SRT_Coroutine: { 837ac82fcf5Sdrh int i; 8381c767f0dSdrh testcase( eDest==SRT_Output ); 8391c767f0dSdrh testcase( eDest==SRT_Coroutine ); 8402d401ab8Sdrh sqlite3VdbeAddOp2(v, OP_Integer, 1, regRowid); 8412d401ab8Sdrh sqlite3VdbeAddOp3(v, OP_Insert, pseudoTab, regRow, regRowid); 842ac82fcf5Sdrh for(i=0; i<nColumn; i++){ 8439882d999Sdanielk1977 assert( regRow!=pDest->iMem+i ); 8441013c932Sdrh sqlite3VdbeAddOp3(v, OP_Column, pseudoTab, i, pDest->iMem+i); 845ac82fcf5Sdrh } 8467d10d5a6Sdrh if( eDest==SRT_Output ){ 8471013c932Sdrh sqlite3VdbeAddOp2(v, OP_ResultRow, pDest->iMem, nColumn); 848da250ea5Sdrh sqlite3ExprCacheAffinityChange(pParse, pDest->iMem, nColumn); 849a9671a22Sdrh }else{ 85092b01d53Sdrh sqlite3VdbeAddOp1(v, OP_Yield, pDest->iParm); 851ce665cf6Sdrh } 852ac82fcf5Sdrh break; 853ac82fcf5Sdrh } 854c926afbcSdrh default: { 855f46f905aSdrh /* Do nothing */ 856c926afbcSdrh break; 857c926afbcSdrh } 858c926afbcSdrh } 8592d401ab8Sdrh sqlite3ReleaseTempReg(pParse, regRow); 8602d401ab8Sdrh sqlite3ReleaseTempReg(pParse, regRowid); 861ec7429aeSdrh 862a9671a22Sdrh /* LIMIT has been implemented by the pushOntoSorter() routine. 863ec7429aeSdrh */ 864a9671a22Sdrh assert( p->iLimit==0 ); 865ec7429aeSdrh 866ec7429aeSdrh /* The bottom of the loop 867ec7429aeSdrh */ 868dc5ea5c7Sdrh sqlite3VdbeResolveLabel(v, addrContinue); 86966a5167bSdrh sqlite3VdbeAddOp2(v, OP_Next, iTab, addr); 870dc5ea5c7Sdrh sqlite3VdbeResolveLabel(v, addrBreak); 8717d10d5a6Sdrh if( eDest==SRT_Output || eDest==SRT_Coroutine ){ 87266a5167bSdrh sqlite3VdbeAddOp2(v, OP_Close, pseudoTab, 0); 873cdd536f0Sdrh } 874d8bc7086Sdrh } 875d8bc7086Sdrh 876d8bc7086Sdrh /* 877517eb646Sdanielk1977 ** Return a pointer to a string containing the 'declaration type' of the 878517eb646Sdanielk1977 ** expression pExpr. The string may be treated as static by the caller. 879e78e8284Sdrh ** 880955de52cSdanielk1977 ** The declaration type is the exact datatype definition extracted from the 881955de52cSdanielk1977 ** original CREATE TABLE statement if the expression is a column. The 882955de52cSdanielk1977 ** declaration type for a ROWID field is INTEGER. Exactly when an expression 883955de52cSdanielk1977 ** is considered a column can be complex in the presence of subqueries. The 884955de52cSdanielk1977 ** result-set expression in all of the following SELECT statements is 885955de52cSdanielk1977 ** considered a column by this function. 886e78e8284Sdrh ** 887955de52cSdanielk1977 ** SELECT col FROM tbl; 888955de52cSdanielk1977 ** SELECT (SELECT col FROM tbl; 889955de52cSdanielk1977 ** SELECT (SELECT col FROM tbl); 890955de52cSdanielk1977 ** SELECT abc FROM (SELECT col AS abc FROM tbl); 891955de52cSdanielk1977 ** 892955de52cSdanielk1977 ** The declaration type for any expression other than a column is NULL. 893fcb78a49Sdrh */ 894955de52cSdanielk1977 static const char *columnType( 895955de52cSdanielk1977 NameContext *pNC, 896955de52cSdanielk1977 Expr *pExpr, 897955de52cSdanielk1977 const char **pzOriginDb, 898955de52cSdanielk1977 const char **pzOriginTab, 899955de52cSdanielk1977 const char **pzOriginCol 900955de52cSdanielk1977 ){ 901955de52cSdanielk1977 char const *zType = 0; 902955de52cSdanielk1977 char const *zOriginDb = 0; 903955de52cSdanielk1977 char const *zOriginTab = 0; 904955de52cSdanielk1977 char const *zOriginCol = 0; 905517eb646Sdanielk1977 int j; 906b3bce662Sdanielk1977 if( pExpr==0 || pNC->pSrcList==0 ) return 0; 9075338a5f7Sdanielk1977 90800e279d9Sdanielk1977 switch( pExpr->op ){ 90930bcf5dbSdrh case TK_AGG_COLUMN: 91000e279d9Sdanielk1977 case TK_COLUMN: { 911955de52cSdanielk1977 /* The expression is a column. Locate the table the column is being 912955de52cSdanielk1977 ** extracted from in NameContext.pSrcList. This table may be real 913955de52cSdanielk1977 ** database table or a subquery. 914955de52cSdanielk1977 */ 915955de52cSdanielk1977 Table *pTab = 0; /* Table structure column is extracted from */ 916955de52cSdanielk1977 Select *pS = 0; /* Select the column is extracted from */ 917955de52cSdanielk1977 int iCol = pExpr->iColumn; /* Index of column in pTab */ 918b3bce662Sdanielk1977 while( pNC && !pTab ){ 919b3bce662Sdanielk1977 SrcList *pTabList = pNC->pSrcList; 920b3bce662Sdanielk1977 for(j=0;j<pTabList->nSrc && pTabList->a[j].iCursor!=pExpr->iTable;j++); 921b3bce662Sdanielk1977 if( j<pTabList->nSrc ){ 9226a3ea0e6Sdrh pTab = pTabList->a[j].pTab; 923955de52cSdanielk1977 pS = pTabList->a[j].pSelect; 924b3bce662Sdanielk1977 }else{ 925b3bce662Sdanielk1977 pNC = pNC->pNext; 926b3bce662Sdanielk1977 } 927b3bce662Sdanielk1977 } 928955de52cSdanielk1977 9297e62779aSdrh if( pTab==0 ){ 9307e62779aSdrh /* FIX ME: 9317e62779aSdrh ** This can occurs if you have something like "SELECT new.x;" inside 9327e62779aSdrh ** a trigger. In other words, if you reference the special "new" 9337e62779aSdrh ** table in the result set of a select. We do not have a good way 9347e62779aSdrh ** to find the actual table type, so call it "TEXT". This is really 9357e62779aSdrh ** something of a bug, but I do not know how to fix it. 9367e62779aSdrh ** 9377e62779aSdrh ** This code does not produce the correct answer - it just prevents 9387e62779aSdrh ** a segfault. See ticket #1229. 9397e62779aSdrh */ 9407e62779aSdrh zType = "TEXT"; 9417e62779aSdrh break; 9427e62779aSdrh } 943955de52cSdanielk1977 944b3bce662Sdanielk1977 assert( pTab ); 945955de52cSdanielk1977 if( pS ){ 946955de52cSdanielk1977 /* The "table" is actually a sub-select or a view in the FROM clause 947955de52cSdanielk1977 ** of the SELECT statement. Return the declaration type and origin 948955de52cSdanielk1977 ** data for the result-set column of the sub-select. 949955de52cSdanielk1977 */ 9501c767f0dSdrh if( ALWAYS(iCol>=0 && iCol<pS->pEList->nExpr) ){ 951955de52cSdanielk1977 /* If iCol is less than zero, then the expression requests the 952955de52cSdanielk1977 ** rowid of the sub-select or view. This expression is legal (see 953955de52cSdanielk1977 ** test case misc2.2.2) - it always evaluates to NULL. 954955de52cSdanielk1977 */ 955955de52cSdanielk1977 NameContext sNC; 956955de52cSdanielk1977 Expr *p = pS->pEList->a[iCol].pExpr; 957955de52cSdanielk1977 sNC.pSrcList = pS->pSrc; 958955de52cSdanielk1977 sNC.pNext = 0; 959955de52cSdanielk1977 sNC.pParse = pNC->pParse; 960955de52cSdanielk1977 zType = columnType(&sNC, p, &zOriginDb, &zOriginTab, &zOriginCol); 961955de52cSdanielk1977 } 9621c767f0dSdrh }else if( ALWAYS(pTab->pSchema) ){ 963955de52cSdanielk1977 /* A real table */ 964955de52cSdanielk1977 assert( !pS ); 965fcb78a49Sdrh if( iCol<0 ) iCol = pTab->iPKey; 966fcb78a49Sdrh assert( iCol==-1 || (iCol>=0 && iCol<pTab->nCol) ); 967fcb78a49Sdrh if( iCol<0 ){ 968fcb78a49Sdrh zType = "INTEGER"; 969955de52cSdanielk1977 zOriginCol = "rowid"; 970fcb78a49Sdrh }else{ 971fcb78a49Sdrh zType = pTab->aCol[iCol].zType; 972955de52cSdanielk1977 zOriginCol = pTab->aCol[iCol].zName; 973955de52cSdanielk1977 } 974955de52cSdanielk1977 zOriginTab = pTab->zName; 975955de52cSdanielk1977 if( pNC->pParse ){ 976955de52cSdanielk1977 int iDb = sqlite3SchemaToIndex(pNC->pParse->db, pTab->pSchema); 977955de52cSdanielk1977 zOriginDb = pNC->pParse->db->aDb[iDb].zName; 978955de52cSdanielk1977 } 979fcb78a49Sdrh } 98000e279d9Sdanielk1977 break; 981736c22b8Sdrh } 98293758c8dSdanielk1977 #ifndef SQLITE_OMIT_SUBQUERY 98300e279d9Sdanielk1977 case TK_SELECT: { 984955de52cSdanielk1977 /* The expression is a sub-select. Return the declaration type and 985955de52cSdanielk1977 ** origin info for the single column in the result set of the SELECT 986955de52cSdanielk1977 ** statement. 987955de52cSdanielk1977 */ 988b3bce662Sdanielk1977 NameContext sNC; 9896ab3a2ecSdanielk1977 Select *pS = pExpr->x.pSelect; 990955de52cSdanielk1977 Expr *p = pS->pEList->a[0].pExpr; 9916ab3a2ecSdanielk1977 assert( ExprHasProperty(pExpr, EP_xIsSelect) ); 992955de52cSdanielk1977 sNC.pSrcList = pS->pSrc; 993b3bce662Sdanielk1977 sNC.pNext = pNC; 994955de52cSdanielk1977 sNC.pParse = pNC->pParse; 995955de52cSdanielk1977 zType = columnType(&sNC, p, &zOriginDb, &zOriginTab, &zOriginCol); 99600e279d9Sdanielk1977 break; 997fcb78a49Sdrh } 99893758c8dSdanielk1977 #endif 99900e279d9Sdanielk1977 } 100000e279d9Sdanielk1977 1001955de52cSdanielk1977 if( pzOriginDb ){ 1002955de52cSdanielk1977 assert( pzOriginTab && pzOriginCol ); 1003955de52cSdanielk1977 *pzOriginDb = zOriginDb; 1004955de52cSdanielk1977 *pzOriginTab = zOriginTab; 1005955de52cSdanielk1977 *pzOriginCol = zOriginCol; 1006955de52cSdanielk1977 } 1007517eb646Sdanielk1977 return zType; 1008517eb646Sdanielk1977 } 1009517eb646Sdanielk1977 1010517eb646Sdanielk1977 /* 1011517eb646Sdanielk1977 ** Generate code that will tell the VDBE the declaration types of columns 1012517eb646Sdanielk1977 ** in the result set. 1013517eb646Sdanielk1977 */ 1014517eb646Sdanielk1977 static void generateColumnTypes( 1015517eb646Sdanielk1977 Parse *pParse, /* Parser context */ 1016517eb646Sdanielk1977 SrcList *pTabList, /* List of tables */ 1017517eb646Sdanielk1977 ExprList *pEList /* Expressions defining the result set */ 1018517eb646Sdanielk1977 ){ 10193f913576Sdrh #ifndef SQLITE_OMIT_DECLTYPE 1020517eb646Sdanielk1977 Vdbe *v = pParse->pVdbe; 1021517eb646Sdanielk1977 int i; 1022b3bce662Sdanielk1977 NameContext sNC; 1023b3bce662Sdanielk1977 sNC.pSrcList = pTabList; 1024955de52cSdanielk1977 sNC.pParse = pParse; 1025517eb646Sdanielk1977 for(i=0; i<pEList->nExpr; i++){ 1026517eb646Sdanielk1977 Expr *p = pEList->a[i].pExpr; 10273f913576Sdrh const char *zType; 10283f913576Sdrh #ifdef SQLITE_ENABLE_COLUMN_METADATA 1029955de52cSdanielk1977 const char *zOrigDb = 0; 1030955de52cSdanielk1977 const char *zOrigTab = 0; 1031955de52cSdanielk1977 const char *zOrigCol = 0; 10323f913576Sdrh zType = columnType(&sNC, p, &zOrigDb, &zOrigTab, &zOrigCol); 1033955de52cSdanielk1977 103485b623f2Sdrh /* The vdbe must make its own copy of the column-type and other 10354b1ae99dSdanielk1977 ** column specific strings, in case the schema is reset before this 10364b1ae99dSdanielk1977 ** virtual machine is deleted. 1037fbcd585fSdanielk1977 */ 103810fb749bSdanielk1977 sqlite3VdbeSetColName(v, i, COLNAME_DATABASE, zOrigDb, SQLITE_TRANSIENT); 103910fb749bSdanielk1977 sqlite3VdbeSetColName(v, i, COLNAME_TABLE, zOrigTab, SQLITE_TRANSIENT); 104010fb749bSdanielk1977 sqlite3VdbeSetColName(v, i, COLNAME_COLUMN, zOrigCol, SQLITE_TRANSIENT); 10413f913576Sdrh #else 10423f913576Sdrh zType = columnType(&sNC, p, 0, 0, 0); 10433f913576Sdrh #endif 104410fb749bSdanielk1977 sqlite3VdbeSetColName(v, i, COLNAME_DECLTYPE, zType, SQLITE_TRANSIENT); 1045fcb78a49Sdrh } 10463f913576Sdrh #endif /* SQLITE_OMIT_DECLTYPE */ 1047fcb78a49Sdrh } 1048fcb78a49Sdrh 1049fcb78a49Sdrh /* 1050fcb78a49Sdrh ** Generate code that will tell the VDBE the names of columns 1051fcb78a49Sdrh ** in the result set. This information is used to provide the 1052fcabd464Sdrh ** azCol[] values in the callback. 105382c3d636Sdrh */ 1054832508b7Sdrh static void generateColumnNames( 1055832508b7Sdrh Parse *pParse, /* Parser context */ 1056ad3cab52Sdrh SrcList *pTabList, /* List of tables */ 1057832508b7Sdrh ExprList *pEList /* Expressions defining the result set */ 1058832508b7Sdrh ){ 1059d8bc7086Sdrh Vdbe *v = pParse->pVdbe; 10606a3ea0e6Sdrh int i, j; 10619bb575fdSdrh sqlite3 *db = pParse->db; 1062fcabd464Sdrh int fullNames, shortNames; 1063fcabd464Sdrh 1064fe2093d7Sdrh #ifndef SQLITE_OMIT_EXPLAIN 10653cf86063Sdanielk1977 /* If this is an EXPLAIN, skip this step */ 10663cf86063Sdanielk1977 if( pParse->explain ){ 106761de0d1bSdanielk1977 return; 10683cf86063Sdanielk1977 } 10695338a5f7Sdanielk1977 #endif 10703cf86063Sdanielk1977 1071d6502758Sdrh assert( v!=0 ); 1072e2f02bacSdrh if( pParse->colNamesSet || NEVER(v==0) || db->mallocFailed ) return; 1073d8bc7086Sdrh pParse->colNamesSet = 1; 1074fcabd464Sdrh fullNames = (db->flags & SQLITE_FullColNames)!=0; 1075fcabd464Sdrh shortNames = (db->flags & SQLITE_ShortColNames)!=0; 107622322fd4Sdanielk1977 sqlite3VdbeSetNumCols(v, pEList->nExpr); 107782c3d636Sdrh for(i=0; i<pEList->nExpr; i++){ 107882c3d636Sdrh Expr *p; 10795a38705eSdrh p = pEList->a[i].pExpr; 10805a38705eSdrh if( p==0 ) continue; 108182c3d636Sdrh if( pEList->a[i].zName ){ 108282c3d636Sdrh char *zName = pEList->a[i].zName; 108310fb749bSdanielk1977 sqlite3VdbeSetColName(v, i, COLNAME_NAME, zName, SQLITE_TRANSIENT); 1084f018cc2eSdrh }else if( (p->op==TK_COLUMN || p->op==TK_AGG_COLUMN) && pTabList ){ 10856a3ea0e6Sdrh Table *pTab; 108697665873Sdrh char *zCol; 10878aff1015Sdrh int iCol = p->iColumn; 1088e2f02bacSdrh for(j=0; ALWAYS(j<pTabList->nSrc); j++){ 1089e2f02bacSdrh if( pTabList->a[j].iCursor==p->iTable ) break; 1090e2f02bacSdrh } 10916a3ea0e6Sdrh assert( j<pTabList->nSrc ); 10926a3ea0e6Sdrh pTab = pTabList->a[j].pTab; 10938aff1015Sdrh if( iCol<0 ) iCol = pTab->iPKey; 109497665873Sdrh assert( iCol==-1 || (iCol>=0 && iCol<pTab->nCol) ); 1095b1363206Sdrh if( iCol<0 ){ 109647a6db2bSdrh zCol = "rowid"; 1097b1363206Sdrh }else{ 1098b1363206Sdrh zCol = pTab->aCol[iCol].zName; 1099b1363206Sdrh } 1100e49b146fSdrh if( !shortNames && !fullNames ){ 110110fb749bSdanielk1977 sqlite3VdbeSetColName(v, i, COLNAME_NAME, 110210fb749bSdanielk1977 sqlite3DbStrNDup(db, (char*)p->span.z, p->span.n), SQLITE_DYNAMIC); 11031c767f0dSdrh }else if( fullNames ){ 110482c3d636Sdrh char *zName = 0; 11051c767f0dSdrh zName = sqlite3MPrintf(db, "%s.%s", pTab->zName, zCol); 110610fb749bSdanielk1977 sqlite3VdbeSetColName(v, i, COLNAME_NAME, zName, SQLITE_DYNAMIC); 110782c3d636Sdrh }else{ 110810fb749bSdanielk1977 sqlite3VdbeSetColName(v, i, COLNAME_NAME, zCol, SQLITE_TRANSIENT); 110982c3d636Sdrh } 11101bee3d7bSdrh }else{ 111110fb749bSdanielk1977 sqlite3VdbeSetColName(v, i, COLNAME_NAME, 111210fb749bSdanielk1977 sqlite3DbStrNDup(db, (char*)p->span.z, p->span.n), SQLITE_DYNAMIC); 111382c3d636Sdrh } 111482c3d636Sdrh } 111576d505baSdanielk1977 generateColumnTypes(pParse, pTabList, pEList); 11165080aaa7Sdrh } 111782c3d636Sdrh 111893758c8dSdanielk1977 #ifndef SQLITE_OMIT_COMPOUND_SELECT 111982c3d636Sdrh /* 1120d8bc7086Sdrh ** Name of the connection operator, used for error messages. 1121d8bc7086Sdrh */ 1122d8bc7086Sdrh static const char *selectOpName(int id){ 1123d8bc7086Sdrh char *z; 1124d8bc7086Sdrh switch( id ){ 1125d8bc7086Sdrh case TK_ALL: z = "UNION ALL"; break; 1126d8bc7086Sdrh case TK_INTERSECT: z = "INTERSECT"; break; 1127d8bc7086Sdrh case TK_EXCEPT: z = "EXCEPT"; break; 1128d8bc7086Sdrh default: z = "UNION"; break; 1129d8bc7086Sdrh } 1130d8bc7086Sdrh return z; 1131d8bc7086Sdrh } 113293758c8dSdanielk1977 #endif /* SQLITE_OMIT_COMPOUND_SELECT */ 1133d8bc7086Sdrh 1134d8bc7086Sdrh /* 11357d10d5a6Sdrh ** Given a an expression list (which is really the list of expressions 11367d10d5a6Sdrh ** that form the result set of a SELECT statement) compute appropriate 11377d10d5a6Sdrh ** column names for a table that would hold the expression list. 11387d10d5a6Sdrh ** 11397d10d5a6Sdrh ** All column names will be unique. 11407d10d5a6Sdrh ** 11417d10d5a6Sdrh ** Only the column names are computed. Column.zType, Column.zColl, 11427d10d5a6Sdrh ** and other fields of Column are zeroed. 11437d10d5a6Sdrh ** 11447d10d5a6Sdrh ** Return SQLITE_OK on success. If a memory allocation error occurs, 11457d10d5a6Sdrh ** store NULL in *paCol and 0 in *pnCol and return SQLITE_NOMEM. 1146315555caSdrh */ 11477d10d5a6Sdrh static int selectColumnsFromExprList( 11487d10d5a6Sdrh Parse *pParse, /* Parsing context */ 11497d10d5a6Sdrh ExprList *pEList, /* Expr list from which to derive column names */ 11507d10d5a6Sdrh int *pnCol, /* Write the number of columns here */ 11517d10d5a6Sdrh Column **paCol /* Write the new column list here */ 11527d10d5a6Sdrh ){ 1153dc5ea5c7Sdrh sqlite3 *db = pParse->db; /* Database connection */ 1154dc5ea5c7Sdrh int i, j; /* Loop counters */ 1155dc5ea5c7Sdrh int cnt; /* Index added to make the name unique */ 1156dc5ea5c7Sdrh Column *aCol, *pCol; /* For looping over result columns */ 1157dc5ea5c7Sdrh int nCol; /* Number of columns in the result set */ 1158dc5ea5c7Sdrh Expr *p; /* Expression for a single result column */ 1159dc5ea5c7Sdrh char *zName; /* Column name */ 1160dc5ea5c7Sdrh int nName; /* Size of name in zName[] */ 116179d5f63fSdrh 11627d10d5a6Sdrh *pnCol = nCol = pEList->nExpr; 11637d10d5a6Sdrh aCol = *paCol = sqlite3DbMallocZero(db, sizeof(aCol[0])*nCol); 11647d10d5a6Sdrh if( aCol==0 ) return SQLITE_NOMEM; 11657d10d5a6Sdrh for(i=0, pCol=aCol; i<nCol; i++, pCol++){ 116679d5f63fSdrh /* Get an appropriate name for the column 116779d5f63fSdrh */ 116879d5f63fSdrh p = pEList->a[i].pExpr; 1169290c1948Sdrh assert( p->pRight==0 || p->pRight->token.z==0 || p->pRight->token.z[0]!=0 ); 117091bb0eedSdrh if( (zName = pEList->a[i].zName)!=0 ){ 117179d5f63fSdrh /* If the column contains an "AS <name>" phrase, use <name> as the name */ 117217435752Sdrh zName = sqlite3DbStrDup(db, zName); 11737d10d5a6Sdrh }else{ 1174dc5ea5c7Sdrh Expr *pColExpr = p; /* The expression that is the result column name */ 1175dc5ea5c7Sdrh Table *pTab; /* Table associated with this expression */ 1176dc5ea5c7Sdrh while( pColExpr->op==TK_DOT ) pColExpr = pColExpr->pRight; 1177dc5ea5c7Sdrh if( pColExpr->op==TK_COLUMN && (pTab = pColExpr->pTab)!=0 ){ 117893a960a0Sdrh /* For columns use the column name name */ 1179dc5ea5c7Sdrh int iCol = pColExpr->iColumn; 1180f0209f74Sdrh if( iCol<0 ) iCol = pTab->iPKey; 1181f0209f74Sdrh zName = sqlite3MPrintf(db, "%s", 1182f0209f74Sdrh iCol>=0 ? pTab->aCol[iCol].zName : "rowid"); 118393a960a0Sdrh }else{ 118479d5f63fSdrh /* Use the original text of the column expression as its name */ 1185dc5ea5c7Sdrh Token *pToken = (pColExpr->span.z?&pColExpr->span:&pColExpr->token); 1186f7300753Sdanielk1977 zName = sqlite3MPrintf(db, "%T", pToken); 11877d10d5a6Sdrh } 118822f70c32Sdrh } 11897ce72f69Sdrh if( db->mallocFailed ){ 1190633e6d57Sdrh sqlite3DbFree(db, zName); 11917ce72f69Sdrh break; 1192dd5b2fa5Sdrh } 11937751940dSdanielk1977 sqlite3Dequote(zName); 119479d5f63fSdrh 119579d5f63fSdrh /* Make sure the column name is unique. If the name is not unique, 119679d5f63fSdrh ** append a integer to the name so that it becomes unique. 119779d5f63fSdrh */ 1198ea678832Sdrh nName = sqlite3Strlen30(zName); 119979d5f63fSdrh for(j=cnt=0; j<i; j++){ 120079d5f63fSdrh if( sqlite3StrICmp(aCol[j].zName, zName)==0 ){ 1201633e6d57Sdrh char *zNewName; 12022564ef97Sdrh zName[nName] = 0; 1203633e6d57Sdrh zNewName = sqlite3MPrintf(db, "%s:%d", zName, ++cnt); 1204633e6d57Sdrh sqlite3DbFree(db, zName); 1205633e6d57Sdrh zName = zNewName; 120679d5f63fSdrh j = -1; 1207dd5b2fa5Sdrh if( zName==0 ) break; 120879d5f63fSdrh } 120979d5f63fSdrh } 121091bb0eedSdrh pCol->zName = zName; 12117d10d5a6Sdrh } 12127d10d5a6Sdrh if( db->mallocFailed ){ 12137d10d5a6Sdrh for(j=0; j<i; j++){ 12147d10d5a6Sdrh sqlite3DbFree(db, aCol[j].zName); 12157d10d5a6Sdrh } 12167d10d5a6Sdrh sqlite3DbFree(db, aCol); 12177d10d5a6Sdrh *paCol = 0; 12187d10d5a6Sdrh *pnCol = 0; 12197d10d5a6Sdrh return SQLITE_NOMEM; 12207d10d5a6Sdrh } 12217d10d5a6Sdrh return SQLITE_OK; 12227d10d5a6Sdrh } 1223e014a838Sdanielk1977 12247d10d5a6Sdrh /* 12257d10d5a6Sdrh ** Add type and collation information to a column list based on 12267d10d5a6Sdrh ** a SELECT statement. 12277d10d5a6Sdrh ** 12287d10d5a6Sdrh ** The column list presumably came from selectColumnNamesFromExprList(). 12297d10d5a6Sdrh ** The column list has only names, not types or collations. This 12307d10d5a6Sdrh ** routine goes through and adds the types and collations. 12317d10d5a6Sdrh ** 12327d10d5a6Sdrh ** This routine requires that all indentifiers in the SELECT 12337d10d5a6Sdrh ** statement be resolved. 123479d5f63fSdrh */ 12357d10d5a6Sdrh static void selectAddColumnTypeAndCollation( 12367d10d5a6Sdrh Parse *pParse, /* Parsing contexts */ 12377d10d5a6Sdrh int nCol, /* Number of columns */ 12387d10d5a6Sdrh Column *aCol, /* List of columns */ 12397d10d5a6Sdrh Select *pSelect /* SELECT used to determine types and collations */ 12407d10d5a6Sdrh ){ 12417d10d5a6Sdrh sqlite3 *db = pParse->db; 12427d10d5a6Sdrh NameContext sNC; 12437d10d5a6Sdrh Column *pCol; 12447d10d5a6Sdrh CollSeq *pColl; 12457d10d5a6Sdrh int i; 12467d10d5a6Sdrh Expr *p; 12477d10d5a6Sdrh struct ExprList_item *a; 12487d10d5a6Sdrh 12497d10d5a6Sdrh assert( pSelect!=0 ); 12507d10d5a6Sdrh assert( (pSelect->selFlags & SF_Resolved)!=0 ); 12517d10d5a6Sdrh assert( nCol==pSelect->pEList->nExpr || db->mallocFailed ); 12527d10d5a6Sdrh if( db->mallocFailed ) return; 1253c43e8be8Sdrh memset(&sNC, 0, sizeof(sNC)); 1254b3bce662Sdanielk1977 sNC.pSrcList = pSelect->pSrc; 12557d10d5a6Sdrh a = pSelect->pEList->a; 12567d10d5a6Sdrh for(i=0, pCol=aCol; i<nCol; i++, pCol++){ 12577d10d5a6Sdrh p = a[i].pExpr; 12587d10d5a6Sdrh pCol->zType = sqlite3DbStrDup(db, columnType(&sNC, p, 0, 0, 0)); 1259c60e9b82Sdanielk1977 pCol->affinity = sqlite3ExprAffinity(p); 1260b3bf556eSdanielk1977 pColl = sqlite3ExprCollSeq(pParse, p); 1261b3bf556eSdanielk1977 if( pColl ){ 126217435752Sdrh pCol->zColl = sqlite3DbStrDup(db, pColl->zName); 12630202b29eSdanielk1977 } 126422f70c32Sdrh } 12657d10d5a6Sdrh } 12667d10d5a6Sdrh 12677d10d5a6Sdrh /* 12687d10d5a6Sdrh ** Given a SELECT statement, generate a Table structure that describes 12697d10d5a6Sdrh ** the result set of that SELECT. 12707d10d5a6Sdrh */ 12717d10d5a6Sdrh Table *sqlite3ResultSetOfSelect(Parse *pParse, Select *pSelect){ 12727d10d5a6Sdrh Table *pTab; 12737d10d5a6Sdrh sqlite3 *db = pParse->db; 12747d10d5a6Sdrh int savedFlags; 12757d10d5a6Sdrh 12767d10d5a6Sdrh savedFlags = db->flags; 12777d10d5a6Sdrh db->flags &= ~SQLITE_FullColNames; 12787d10d5a6Sdrh db->flags |= SQLITE_ShortColNames; 12797d10d5a6Sdrh sqlite3SelectPrep(pParse, pSelect, 0); 12807d10d5a6Sdrh if( pParse->nErr ) return 0; 12817d10d5a6Sdrh while( pSelect->pPrior ) pSelect = pSelect->pPrior; 12827d10d5a6Sdrh db->flags = savedFlags; 12837d10d5a6Sdrh pTab = sqlite3DbMallocZero(db, sizeof(Table) ); 12847d10d5a6Sdrh if( pTab==0 ){ 12857d10d5a6Sdrh return 0; 12867d10d5a6Sdrh } 1287*d9da78a2Sdrh pTab->dbMem = db->lookaside.bEnabled ? db : 0; 12887d10d5a6Sdrh pTab->nRef = 1; 12897d10d5a6Sdrh pTab->zName = 0; 12907d10d5a6Sdrh selectColumnsFromExprList(pParse, pSelect->pEList, &pTab->nCol, &pTab->aCol); 12917d10d5a6Sdrh selectAddColumnTypeAndCollation(pParse, pTab->nCol, pTab->aCol, pSelect); 129222f70c32Sdrh pTab->iPKey = -1; 12937ce72f69Sdrh if( db->mallocFailed ){ 12947ce72f69Sdrh sqlite3DeleteTable(pTab); 12957ce72f69Sdrh return 0; 12967ce72f69Sdrh } 129722f70c32Sdrh return pTab; 129822f70c32Sdrh } 129922f70c32Sdrh 130022f70c32Sdrh /* 1301d8bc7086Sdrh ** Get a VDBE for the given parser context. Create a new one if necessary. 1302d8bc7086Sdrh ** If an error occurs, return NULL and leave a message in pParse. 1303d8bc7086Sdrh */ 13044adee20fSdanielk1977 Vdbe *sqlite3GetVdbe(Parse *pParse){ 1305d8bc7086Sdrh Vdbe *v = pParse->pVdbe; 1306d8bc7086Sdrh if( v==0 ){ 13074adee20fSdanielk1977 v = pParse->pVdbe = sqlite3VdbeCreate(pParse->db); 1308949f9cd5Sdrh #ifndef SQLITE_OMIT_TRACE 1309949f9cd5Sdrh if( v ){ 1310949f9cd5Sdrh sqlite3VdbeAddOp0(v, OP_Trace); 1311949f9cd5Sdrh } 1312949f9cd5Sdrh #endif 1313d8bc7086Sdrh } 1314d8bc7086Sdrh return v; 1315d8bc7086Sdrh } 1316d8bc7086Sdrh 131715007a99Sdrh 1318d8bc7086Sdrh /* 13197b58daeaSdrh ** Compute the iLimit and iOffset fields of the SELECT based on the 1320ec7429aeSdrh ** pLimit and pOffset expressions. pLimit and pOffset hold the expressions 13217b58daeaSdrh ** that appear in the original SQL statement after the LIMIT and OFFSET 1322a2dc3b1aSdanielk1977 ** keywords. Or NULL if those keywords are omitted. iLimit and iOffset 1323a2dc3b1aSdanielk1977 ** are the integer memory register numbers for counters used to compute 1324a2dc3b1aSdanielk1977 ** the limit and offset. If there is no limit and/or offset, then 1325a2dc3b1aSdanielk1977 ** iLimit and iOffset are negative. 13267b58daeaSdrh ** 1327d59ba6ceSdrh ** This routine changes the values of iLimit and iOffset only if 1328ec7429aeSdrh ** a limit or offset is defined by pLimit and pOffset. iLimit and 13297b58daeaSdrh ** iOffset should have been preset to appropriate default values 13307b58daeaSdrh ** (usually but not always -1) prior to calling this routine. 1331ec7429aeSdrh ** Only if pLimit!=0 or pOffset!=0 do the limit registers get 13327b58daeaSdrh ** redefined. The UNION ALL operator uses this property to force 13337b58daeaSdrh ** the reuse of the same limit and offset registers across multiple 13347b58daeaSdrh ** SELECT statements. 13357b58daeaSdrh */ 1336ec7429aeSdrh static void computeLimitRegisters(Parse *pParse, Select *p, int iBreak){ 133702afc861Sdrh Vdbe *v = 0; 133802afc861Sdrh int iLimit = 0; 133915007a99Sdrh int iOffset; 1340b7654111Sdrh int addr1; 13410acb7e48Sdrh if( p->iLimit ) return; 134215007a99Sdrh 13437b58daeaSdrh /* 13447b58daeaSdrh ** "LIMIT -1" always shows all rows. There is some 13457b58daeaSdrh ** contraversy about what the correct behavior should be. 13467b58daeaSdrh ** The current implementation interprets "LIMIT 0" to mean 13477b58daeaSdrh ** no rows. 13487b58daeaSdrh */ 1349a2dc3b1aSdanielk1977 if( p->pLimit ){ 13500a07c107Sdrh p->iLimit = iLimit = ++pParse->nMem; 135115007a99Sdrh v = sqlite3GetVdbe(pParse); 13527b58daeaSdrh if( v==0 ) return; 1353b7654111Sdrh sqlite3ExprCode(pParse, p->pLimit, iLimit); 1354b7654111Sdrh sqlite3VdbeAddOp1(v, OP_MustBeInt, iLimit); 1355d4e70ebdSdrh VdbeComment((v, "LIMIT counter")); 13563c84ddffSdrh sqlite3VdbeAddOp2(v, OP_IfZero, iLimit, iBreak); 13577b58daeaSdrh } 1358a2dc3b1aSdanielk1977 if( p->pOffset ){ 13590a07c107Sdrh p->iOffset = iOffset = ++pParse->nMem; 1360b7654111Sdrh if( p->pLimit ){ 1361b7654111Sdrh pParse->nMem++; /* Allocate an extra register for limit+offset */ 1362b7654111Sdrh } 136315007a99Sdrh v = sqlite3GetVdbe(pParse); 13647b58daeaSdrh if( v==0 ) return; 1365b7654111Sdrh sqlite3ExprCode(pParse, p->pOffset, iOffset); 1366b7654111Sdrh sqlite3VdbeAddOp1(v, OP_MustBeInt, iOffset); 1367d4e70ebdSdrh VdbeComment((v, "OFFSET counter")); 13683c84ddffSdrh addr1 = sqlite3VdbeAddOp1(v, OP_IfPos, iOffset); 1369b7654111Sdrh sqlite3VdbeAddOp2(v, OP_Integer, 0, iOffset); 137015007a99Sdrh sqlite3VdbeJumpHere(v, addr1); 1371d59ba6ceSdrh if( p->pLimit ){ 1372b7654111Sdrh sqlite3VdbeAddOp3(v, OP_Add, iLimit, iOffset, iOffset+1); 1373d4e70ebdSdrh VdbeComment((v, "LIMIT+OFFSET")); 1374b7654111Sdrh addr1 = sqlite3VdbeAddOp1(v, OP_IfPos, iLimit); 1375b7654111Sdrh sqlite3VdbeAddOp2(v, OP_Integer, -1, iOffset+1); 1376b7654111Sdrh sqlite3VdbeJumpHere(v, addr1); 1377b7654111Sdrh } 1378d59ba6ceSdrh } 13797b58daeaSdrh } 13807b58daeaSdrh 1381b7f9164eSdrh #ifndef SQLITE_OMIT_COMPOUND_SELECT 1382fbc4ee7bSdrh /* 1383fbc4ee7bSdrh ** Return the appropriate collating sequence for the iCol-th column of 1384fbc4ee7bSdrh ** the result set for the compound-select statement "p". Return NULL if 1385fbc4ee7bSdrh ** the column has no default collating sequence. 1386fbc4ee7bSdrh ** 1387fbc4ee7bSdrh ** The collating sequence for the compound select is taken from the 1388fbc4ee7bSdrh ** left-most term of the select that has a collating sequence. 1389fbc4ee7bSdrh */ 1390dc1bdc4fSdanielk1977 static CollSeq *multiSelectCollSeq(Parse *pParse, Select *p, int iCol){ 1391fbc4ee7bSdrh CollSeq *pRet; 1392dc1bdc4fSdanielk1977 if( p->pPrior ){ 1393dc1bdc4fSdanielk1977 pRet = multiSelectCollSeq(pParse, p->pPrior, iCol); 1394fbc4ee7bSdrh }else{ 1395fbc4ee7bSdrh pRet = 0; 1396dc1bdc4fSdanielk1977 } 1397fbc4ee7bSdrh if( pRet==0 ){ 1398dc1bdc4fSdanielk1977 pRet = sqlite3ExprCollSeq(pParse, p->pEList->a[iCol].pExpr); 1399dc1bdc4fSdanielk1977 } 1400dc1bdc4fSdanielk1977 return pRet; 1401d3d39e93Sdrh } 1402b7f9164eSdrh #endif /* SQLITE_OMIT_COMPOUND_SELECT */ 1403d3d39e93Sdrh 1404b21e7c70Sdrh /* Forward reference */ 1405b21e7c70Sdrh static int multiSelectOrderBy( 1406b21e7c70Sdrh Parse *pParse, /* Parsing context */ 1407b21e7c70Sdrh Select *p, /* The right-most of SELECTs to be coded */ 1408a9671a22Sdrh SelectDest *pDest /* What to do with query results */ 1409b21e7c70Sdrh ); 1410b21e7c70Sdrh 1411b21e7c70Sdrh 1412b7f9164eSdrh #ifndef SQLITE_OMIT_COMPOUND_SELECT 1413d3d39e93Sdrh /* 141416ee60ffSdrh ** This routine is called to process a compound query form from 141516ee60ffSdrh ** two or more separate queries using UNION, UNION ALL, EXCEPT, or 141616ee60ffSdrh ** INTERSECT 1417c926afbcSdrh ** 1418e78e8284Sdrh ** "p" points to the right-most of the two queries. the query on the 1419e78e8284Sdrh ** left is p->pPrior. The left query could also be a compound query 1420e78e8284Sdrh ** in which case this routine will be called recursively. 1421e78e8284Sdrh ** 1422e78e8284Sdrh ** The results of the total query are to be written into a destination 1423e78e8284Sdrh ** of type eDest with parameter iParm. 1424e78e8284Sdrh ** 1425e78e8284Sdrh ** Example 1: Consider a three-way compound SQL statement. 1426e78e8284Sdrh ** 1427e78e8284Sdrh ** SELECT a FROM t1 UNION SELECT b FROM t2 UNION SELECT c FROM t3 1428e78e8284Sdrh ** 1429e78e8284Sdrh ** This statement is parsed up as follows: 1430e78e8284Sdrh ** 1431e78e8284Sdrh ** SELECT c FROM t3 1432e78e8284Sdrh ** | 1433e78e8284Sdrh ** `-----> SELECT b FROM t2 1434e78e8284Sdrh ** | 14354b11c6d3Sjplyon ** `------> SELECT a FROM t1 1436e78e8284Sdrh ** 1437e78e8284Sdrh ** The arrows in the diagram above represent the Select.pPrior pointer. 1438e78e8284Sdrh ** So if this routine is called with p equal to the t3 query, then 1439e78e8284Sdrh ** pPrior will be the t2 query. p->op will be TK_UNION in this case. 1440e78e8284Sdrh ** 1441e78e8284Sdrh ** Notice that because of the way SQLite parses compound SELECTs, the 1442e78e8284Sdrh ** individual selects always group from left to right. 144382c3d636Sdrh */ 144484ac9d02Sdanielk1977 static int multiSelect( 1445fbc4ee7bSdrh Parse *pParse, /* Parsing context */ 1446fbc4ee7bSdrh Select *p, /* The right-most of SELECTs to be coded */ 1447a9671a22Sdrh SelectDest *pDest /* What to do with query results */ 144884ac9d02Sdanielk1977 ){ 144984ac9d02Sdanielk1977 int rc = SQLITE_OK; /* Success code from a subroutine */ 145010e5e3cfSdrh Select *pPrior; /* Another SELECT immediately to our left */ 145110e5e3cfSdrh Vdbe *v; /* Generate code to this VDBE */ 14521013c932Sdrh SelectDest dest; /* Alternative data destination */ 1453eca7e01aSdanielk1977 Select *pDelete = 0; /* Chain of simple selects to delete */ 1454633e6d57Sdrh sqlite3 *db; /* Database connection */ 145582c3d636Sdrh 14567b58daeaSdrh /* Make sure there is no ORDER BY or LIMIT clause on prior SELECTs. Only 1457fbc4ee7bSdrh ** the last (right-most) SELECT in the series may have an ORDER BY or LIMIT. 145882c3d636Sdrh */ 1459701bb3b4Sdrh assert( p && p->pPrior ); /* Calling function guarantees this much */ 1460633e6d57Sdrh db = pParse->db; 1461d8bc7086Sdrh pPrior = p->pPrior; 14620342b1f5Sdrh assert( pPrior->pRightmost!=pPrior ); 14630342b1f5Sdrh assert( pPrior->pRightmost==p->pRightmost ); 1464bc10377aSdrh dest = *pDest; 1465d8bc7086Sdrh if( pPrior->pOrderBy ){ 14664adee20fSdanielk1977 sqlite3ErrorMsg(pParse,"ORDER BY clause should come after %s not before", 1467da93d238Sdrh selectOpName(p->op)); 146884ac9d02Sdanielk1977 rc = 1; 146984ac9d02Sdanielk1977 goto multi_select_end; 147082c3d636Sdrh } 1471a2dc3b1aSdanielk1977 if( pPrior->pLimit ){ 14724adee20fSdanielk1977 sqlite3ErrorMsg(pParse,"LIMIT clause should come after %s not before", 14737b58daeaSdrh selectOpName(p->op)); 147484ac9d02Sdanielk1977 rc = 1; 147584ac9d02Sdanielk1977 goto multi_select_end; 14767b58daeaSdrh } 147782c3d636Sdrh 14784adee20fSdanielk1977 v = sqlite3GetVdbe(pParse); 1479701bb3b4Sdrh assert( v!=0 ); /* The VDBE already created by calling function */ 1480d8bc7086Sdrh 14811cc3d75fSdrh /* Create the destination temporary table if necessary 14821cc3d75fSdrh */ 14836c8c8ce0Sdanielk1977 if( dest.eDest==SRT_EphemTab ){ 1484b4964b72Sdanielk1977 assert( p->pEList ); 1485f6e369a1Sdrh sqlite3VdbeAddOp2(v, OP_OpenEphemeral, dest.iParm, p->pEList->nExpr); 14866c8c8ce0Sdanielk1977 dest.eDest = SRT_Table; 14871cc3d75fSdrh } 14881cc3d75fSdrh 1489f6e369a1Sdrh /* Make sure all SELECTs in the statement have the same number of elements 1490f6e369a1Sdrh ** in their result sets. 1491f6e369a1Sdrh */ 1492f6e369a1Sdrh assert( p->pEList && pPrior->pEList ); 1493f6e369a1Sdrh if( p->pEList->nExpr!=pPrior->pEList->nExpr ){ 1494f6e369a1Sdrh sqlite3ErrorMsg(pParse, "SELECTs to the left and right of %s" 1495f6e369a1Sdrh " do not have the same number of result columns", selectOpName(p->op)); 1496f6e369a1Sdrh rc = 1; 1497f6e369a1Sdrh goto multi_select_end; 1498f6e369a1Sdrh } 1499f6e369a1Sdrh 1500a9671a22Sdrh /* Compound SELECTs that have an ORDER BY clause are handled separately. 1501a9671a22Sdrh */ 1502f6e369a1Sdrh if( p->pOrderBy ){ 1503a9671a22Sdrh return multiSelectOrderBy(pParse, p, pDest); 1504f6e369a1Sdrh } 1505f6e369a1Sdrh 1506f46f905aSdrh /* Generate code for the left and right SELECT statements. 1507d8bc7086Sdrh */ 150882c3d636Sdrh switch( p->op ){ 1509f46f905aSdrh case TK_ALL: { 1510ec7429aeSdrh int addr = 0; 1511a2dc3b1aSdanielk1977 assert( !pPrior->pLimit ); 1512a2dc3b1aSdanielk1977 pPrior->pLimit = p->pLimit; 1513a2dc3b1aSdanielk1977 pPrior->pOffset = p->pOffset; 15147d10d5a6Sdrh rc = sqlite3Select(pParse, pPrior, &dest); 1515ad68cb6bSdanielk1977 p->pLimit = 0; 1516ad68cb6bSdanielk1977 p->pOffset = 0; 151784ac9d02Sdanielk1977 if( rc ){ 151884ac9d02Sdanielk1977 goto multi_select_end; 151984ac9d02Sdanielk1977 } 1520f46f905aSdrh p->pPrior = 0; 15217b58daeaSdrh p->iLimit = pPrior->iLimit; 15227b58daeaSdrh p->iOffset = pPrior->iOffset; 152392b01d53Sdrh if( p->iLimit ){ 15243c84ddffSdrh addr = sqlite3VdbeAddOp1(v, OP_IfZero, p->iLimit); 1525d4e70ebdSdrh VdbeComment((v, "Jump ahead if LIMIT reached")); 1526ec7429aeSdrh } 15277d10d5a6Sdrh rc = sqlite3Select(pParse, p, &dest); 1528eca7e01aSdanielk1977 pDelete = p->pPrior; 1529f46f905aSdrh p->pPrior = pPrior; 153084ac9d02Sdanielk1977 if( rc ){ 153184ac9d02Sdanielk1977 goto multi_select_end; 153284ac9d02Sdanielk1977 } 1533ec7429aeSdrh if( addr ){ 1534ec7429aeSdrh sqlite3VdbeJumpHere(v, addr); 1535ec7429aeSdrh } 1536f46f905aSdrh break; 1537f46f905aSdrh } 153882c3d636Sdrh case TK_EXCEPT: 153982c3d636Sdrh case TK_UNION: { 1540d8bc7086Sdrh int unionTab; /* Cursor number of the temporary table holding result */ 1541ea678832Sdrh u8 op = 0; /* One of the SRT_ operations to apply to self */ 1542d8bc7086Sdrh int priorOp; /* The SRT_ operation to apply to prior selects */ 1543a2dc3b1aSdanielk1977 Expr *pLimit, *pOffset; /* Saved values of p->nLimit and p->nOffset */ 1544dc1bdc4fSdanielk1977 int addr; 15456c8c8ce0Sdanielk1977 SelectDest uniondest; 154682c3d636Sdrh 154793a960a0Sdrh priorOp = SRT_Union; 1548e2f02bacSdrh if( dest.eDest==priorOp && ALWAYS(!p->pLimit &&!p->pOffset) ){ 1549d8bc7086Sdrh /* We can reuse a temporary table generated by a SELECT to our 1550c926afbcSdrh ** right. 1551d8bc7086Sdrh */ 1552e2f02bacSdrh assert( p->pRightmost!=p ); /* Can only happen for leftward elements 1553e2f02bacSdrh ** of a 3-way or more compound */ 1554e2f02bacSdrh assert( p->pLimit==0 ); /* Not allowed on leftward elements */ 1555e2f02bacSdrh assert( p->pOffset==0 ); /* Not allowed on leftward elements */ 15566c8c8ce0Sdanielk1977 unionTab = dest.iParm; 155782c3d636Sdrh }else{ 1558d8bc7086Sdrh /* We will need to create our own temporary table to hold the 1559d8bc7086Sdrh ** intermediate results. 1560d8bc7086Sdrh */ 156182c3d636Sdrh unionTab = pParse->nTab++; 156293a960a0Sdrh assert( p->pOrderBy==0 ); 156366a5167bSdrh addr = sqlite3VdbeAddOp2(v, OP_OpenEphemeral, unionTab, 0); 1564b9bb7c18Sdrh assert( p->addrOpenEphm[0] == -1 ); 1565b9bb7c18Sdrh p->addrOpenEphm[0] = addr; 15667d10d5a6Sdrh p->pRightmost->selFlags |= SF_UsesEphemeral; 156784ac9d02Sdanielk1977 assert( p->pEList ); 1568d8bc7086Sdrh } 1569d8bc7086Sdrh 1570d8bc7086Sdrh /* Code the SELECT statements to our left 1571d8bc7086Sdrh */ 1572b3bce662Sdanielk1977 assert( !pPrior->pOrderBy ); 15731013c932Sdrh sqlite3SelectDestInit(&uniondest, priorOp, unionTab); 15747d10d5a6Sdrh rc = sqlite3Select(pParse, pPrior, &uniondest); 157584ac9d02Sdanielk1977 if( rc ){ 157684ac9d02Sdanielk1977 goto multi_select_end; 157784ac9d02Sdanielk1977 } 1578d8bc7086Sdrh 1579d8bc7086Sdrh /* Code the current SELECT statement 1580d8bc7086Sdrh */ 15814cfb22f7Sdrh if( p->op==TK_EXCEPT ){ 15824cfb22f7Sdrh op = SRT_Except; 15834cfb22f7Sdrh }else{ 15844cfb22f7Sdrh assert( p->op==TK_UNION ); 15854cfb22f7Sdrh op = SRT_Union; 1586d8bc7086Sdrh } 158782c3d636Sdrh p->pPrior = 0; 1588a2dc3b1aSdanielk1977 pLimit = p->pLimit; 1589a2dc3b1aSdanielk1977 p->pLimit = 0; 1590a2dc3b1aSdanielk1977 pOffset = p->pOffset; 1591a2dc3b1aSdanielk1977 p->pOffset = 0; 15926c8c8ce0Sdanielk1977 uniondest.eDest = op; 15937d10d5a6Sdrh rc = sqlite3Select(pParse, p, &uniondest); 15945bd1bf2eSdrh /* Query flattening in sqlite3Select() might refill p->pOrderBy. 15955bd1bf2eSdrh ** Be sure to delete p->pOrderBy, therefore, to avoid a memory leak. */ 1596633e6d57Sdrh sqlite3ExprListDelete(db, p->pOrderBy); 1597eca7e01aSdanielk1977 pDelete = p->pPrior; 159882c3d636Sdrh p->pPrior = pPrior; 1599a9671a22Sdrh p->pOrderBy = 0; 1600633e6d57Sdrh sqlite3ExprDelete(db, p->pLimit); 1601a2dc3b1aSdanielk1977 p->pLimit = pLimit; 1602a2dc3b1aSdanielk1977 p->pOffset = pOffset; 160392b01d53Sdrh p->iLimit = 0; 160492b01d53Sdrh p->iOffset = 0; 160584ac9d02Sdanielk1977 if( rc ){ 160684ac9d02Sdanielk1977 goto multi_select_end; 160784ac9d02Sdanielk1977 } 160884ac9d02Sdanielk1977 1609d8bc7086Sdrh 1610d8bc7086Sdrh /* Convert the data in the temporary table into whatever form 1611d8bc7086Sdrh ** it is that we currently need. 1612d8bc7086Sdrh */ 16136c8c8ce0Sdanielk1977 if( dest.eDest!=priorOp || unionTab!=dest.iParm ){ 16146b56344dSdrh int iCont, iBreak, iStart; 161582c3d636Sdrh assert( p->pEList ); 16167d10d5a6Sdrh if( dest.eDest==SRT_Output ){ 161792378253Sdrh Select *pFirst = p; 161892378253Sdrh while( pFirst->pPrior ) pFirst = pFirst->pPrior; 161992378253Sdrh generateColumnNames(pParse, 0, pFirst->pEList); 162041202ccaSdrh } 16214adee20fSdanielk1977 iBreak = sqlite3VdbeMakeLabel(v); 16224adee20fSdanielk1977 iCont = sqlite3VdbeMakeLabel(v); 1623ec7429aeSdrh computeLimitRegisters(pParse, p, iBreak); 162466a5167bSdrh sqlite3VdbeAddOp2(v, OP_Rewind, unionTab, iBreak); 16254adee20fSdanielk1977 iStart = sqlite3VdbeCurrentAddr(v); 1626d2b3e23bSdrh selectInnerLoop(pParse, p, p->pEList, unionTab, p->pEList->nExpr, 1627a9671a22Sdrh 0, -1, &dest, iCont, iBreak); 16284adee20fSdanielk1977 sqlite3VdbeResolveLabel(v, iCont); 162966a5167bSdrh sqlite3VdbeAddOp2(v, OP_Next, unionTab, iStart); 16304adee20fSdanielk1977 sqlite3VdbeResolveLabel(v, iBreak); 163166a5167bSdrh sqlite3VdbeAddOp2(v, OP_Close, unionTab, 0); 163282c3d636Sdrh } 163382c3d636Sdrh break; 163482c3d636Sdrh } 163582c3d636Sdrh case TK_INTERSECT: { 163682c3d636Sdrh int tab1, tab2; 16376b56344dSdrh int iCont, iBreak, iStart; 1638a2dc3b1aSdanielk1977 Expr *pLimit, *pOffset; 1639dc1bdc4fSdanielk1977 int addr; 16401013c932Sdrh SelectDest intersectdest; 16419cbf3425Sdrh int r1; 164282c3d636Sdrh 1643d8bc7086Sdrh /* INTERSECT is different from the others since it requires 16446206d50aSdrh ** two temporary tables. Hence it has its own case. Begin 1645d8bc7086Sdrh ** by allocating the tables we will need. 1646d8bc7086Sdrh */ 164782c3d636Sdrh tab1 = pParse->nTab++; 164882c3d636Sdrh tab2 = pParse->nTab++; 164993a960a0Sdrh assert( p->pOrderBy==0 ); 1650dc1bdc4fSdanielk1977 165166a5167bSdrh addr = sqlite3VdbeAddOp2(v, OP_OpenEphemeral, tab1, 0); 1652b9bb7c18Sdrh assert( p->addrOpenEphm[0] == -1 ); 1653b9bb7c18Sdrh p->addrOpenEphm[0] = addr; 16547d10d5a6Sdrh p->pRightmost->selFlags |= SF_UsesEphemeral; 165584ac9d02Sdanielk1977 assert( p->pEList ); 1656d8bc7086Sdrh 1657d8bc7086Sdrh /* Code the SELECTs to our left into temporary table "tab1". 1658d8bc7086Sdrh */ 16591013c932Sdrh sqlite3SelectDestInit(&intersectdest, SRT_Union, tab1); 16607d10d5a6Sdrh rc = sqlite3Select(pParse, pPrior, &intersectdest); 166184ac9d02Sdanielk1977 if( rc ){ 166284ac9d02Sdanielk1977 goto multi_select_end; 166384ac9d02Sdanielk1977 } 1664d8bc7086Sdrh 1665d8bc7086Sdrh /* Code the current SELECT into temporary table "tab2" 1666d8bc7086Sdrh */ 166766a5167bSdrh addr = sqlite3VdbeAddOp2(v, OP_OpenEphemeral, tab2, 0); 1668b9bb7c18Sdrh assert( p->addrOpenEphm[1] == -1 ); 1669b9bb7c18Sdrh p->addrOpenEphm[1] = addr; 167082c3d636Sdrh p->pPrior = 0; 1671a2dc3b1aSdanielk1977 pLimit = p->pLimit; 1672a2dc3b1aSdanielk1977 p->pLimit = 0; 1673a2dc3b1aSdanielk1977 pOffset = p->pOffset; 1674a2dc3b1aSdanielk1977 p->pOffset = 0; 16756c8c8ce0Sdanielk1977 intersectdest.iParm = tab2; 16767d10d5a6Sdrh rc = sqlite3Select(pParse, p, &intersectdest); 1677eca7e01aSdanielk1977 pDelete = p->pPrior; 167882c3d636Sdrh p->pPrior = pPrior; 1679633e6d57Sdrh sqlite3ExprDelete(db, p->pLimit); 1680a2dc3b1aSdanielk1977 p->pLimit = pLimit; 1681a2dc3b1aSdanielk1977 p->pOffset = pOffset; 168284ac9d02Sdanielk1977 if( rc ){ 168384ac9d02Sdanielk1977 goto multi_select_end; 168484ac9d02Sdanielk1977 } 1685d8bc7086Sdrh 1686d8bc7086Sdrh /* Generate code to take the intersection of the two temporary 1687d8bc7086Sdrh ** tables. 1688d8bc7086Sdrh */ 168982c3d636Sdrh assert( p->pEList ); 16907d10d5a6Sdrh if( dest.eDest==SRT_Output ){ 169192378253Sdrh Select *pFirst = p; 169292378253Sdrh while( pFirst->pPrior ) pFirst = pFirst->pPrior; 169392378253Sdrh generateColumnNames(pParse, 0, pFirst->pEList); 169441202ccaSdrh } 16954adee20fSdanielk1977 iBreak = sqlite3VdbeMakeLabel(v); 16964adee20fSdanielk1977 iCont = sqlite3VdbeMakeLabel(v); 1697ec7429aeSdrh computeLimitRegisters(pParse, p, iBreak); 169866a5167bSdrh sqlite3VdbeAddOp2(v, OP_Rewind, tab1, iBreak); 16999cbf3425Sdrh r1 = sqlite3GetTempReg(pParse); 17009cbf3425Sdrh iStart = sqlite3VdbeAddOp2(v, OP_RowKey, tab1, r1); 17019cbf3425Sdrh sqlite3VdbeAddOp3(v, OP_NotFound, tab2, iCont, r1); 17029cbf3425Sdrh sqlite3ReleaseTempReg(pParse, r1); 1703d2b3e23bSdrh selectInnerLoop(pParse, p, p->pEList, tab1, p->pEList->nExpr, 1704a9671a22Sdrh 0, -1, &dest, iCont, iBreak); 17054adee20fSdanielk1977 sqlite3VdbeResolveLabel(v, iCont); 170666a5167bSdrh sqlite3VdbeAddOp2(v, OP_Next, tab1, iStart); 17074adee20fSdanielk1977 sqlite3VdbeResolveLabel(v, iBreak); 170866a5167bSdrh sqlite3VdbeAddOp2(v, OP_Close, tab2, 0); 170966a5167bSdrh sqlite3VdbeAddOp2(v, OP_Close, tab1, 0); 171082c3d636Sdrh break; 171182c3d636Sdrh } 171282c3d636Sdrh } 17138cdbf836Sdrh 1714a9671a22Sdrh /* Compute collating sequences used by 1715a9671a22Sdrh ** temporary tables needed to implement the compound select. 1716a9671a22Sdrh ** Attach the KeyInfo structure to all temporary tables. 17178cdbf836Sdrh ** 17188cdbf836Sdrh ** This section is run by the right-most SELECT statement only. 17198cdbf836Sdrh ** SELECT statements to the left always skip this part. The right-most 17208cdbf836Sdrh ** SELECT might also skip this part if it has no ORDER BY clause and 17218cdbf836Sdrh ** no temp tables are required. 1722fbc4ee7bSdrh */ 17237d10d5a6Sdrh if( p->selFlags & SF_UsesEphemeral ){ 1724fbc4ee7bSdrh int i; /* Loop counter */ 1725fbc4ee7bSdrh KeyInfo *pKeyInfo; /* Collating sequence for the result set */ 17260342b1f5Sdrh Select *pLoop; /* For looping through SELECT statements */ 1727f68d7d17Sdrh CollSeq **apColl; /* For looping through pKeyInfo->aColl[] */ 172893a960a0Sdrh int nCol; /* Number of columns in result set */ 1729fbc4ee7bSdrh 17300342b1f5Sdrh assert( p->pRightmost==p ); 173193a960a0Sdrh nCol = p->pEList->nExpr; 1732633e6d57Sdrh pKeyInfo = sqlite3DbMallocZero(db, 1733a9671a22Sdrh sizeof(*pKeyInfo)+nCol*(sizeof(CollSeq*) + 1)); 1734dc1bdc4fSdanielk1977 if( !pKeyInfo ){ 1735dc1bdc4fSdanielk1977 rc = SQLITE_NOMEM; 1736dc1bdc4fSdanielk1977 goto multi_select_end; 1737dc1bdc4fSdanielk1977 } 1738dc1bdc4fSdanielk1977 1739633e6d57Sdrh pKeyInfo->enc = ENC(db); 1740ea678832Sdrh pKeyInfo->nField = (u16)nCol; 1741dc1bdc4fSdanielk1977 17420342b1f5Sdrh for(i=0, apColl=pKeyInfo->aColl; i<nCol; i++, apColl++){ 17430342b1f5Sdrh *apColl = multiSelectCollSeq(pParse, p, i); 17440342b1f5Sdrh if( 0==*apColl ){ 1745633e6d57Sdrh *apColl = db->pDfltColl; 1746dc1bdc4fSdanielk1977 } 1747dc1bdc4fSdanielk1977 } 1748dc1bdc4fSdanielk1977 17490342b1f5Sdrh for(pLoop=p; pLoop; pLoop=pLoop->pPrior){ 17500342b1f5Sdrh for(i=0; i<2; i++){ 1751b9bb7c18Sdrh int addr = pLoop->addrOpenEphm[i]; 17520342b1f5Sdrh if( addr<0 ){ 17530342b1f5Sdrh /* If [0] is unused then [1] is also unused. So we can 17540342b1f5Sdrh ** always safely abort as soon as the first unused slot is found */ 1755b9bb7c18Sdrh assert( pLoop->addrOpenEphm[1]<0 ); 17560342b1f5Sdrh break; 17570342b1f5Sdrh } 17580342b1f5Sdrh sqlite3VdbeChangeP2(v, addr, nCol); 175966a5167bSdrh sqlite3VdbeChangeP4(v, addr, (char*)pKeyInfo, P4_KEYINFO); 17600ee5a1e7Sdrh pLoop->addrOpenEphm[i] = -1; 17610342b1f5Sdrh } 1762dc1bdc4fSdanielk1977 } 1763633e6d57Sdrh sqlite3DbFree(db, pKeyInfo); 1764dc1bdc4fSdanielk1977 } 1765dc1bdc4fSdanielk1977 1766dc1bdc4fSdanielk1977 multi_select_end: 17671013c932Sdrh pDest->iMem = dest.iMem; 1768ad27e761Sdrh pDest->nMem = dest.nMem; 1769633e6d57Sdrh sqlite3SelectDelete(db, pDelete); 177084ac9d02Sdanielk1977 return rc; 17712282792aSdrh } 1772b7f9164eSdrh #endif /* SQLITE_OMIT_COMPOUND_SELECT */ 17732282792aSdrh 1774b21e7c70Sdrh /* 1775b21e7c70Sdrh ** Code an output subroutine for a coroutine implementation of a 1776b21e7c70Sdrh ** SELECT statment. 17770acb7e48Sdrh ** 17780acb7e48Sdrh ** The data to be output is contained in pIn->iMem. There are 17790acb7e48Sdrh ** pIn->nMem columns to be output. pDest is where the output should 17800acb7e48Sdrh ** be sent. 17810acb7e48Sdrh ** 17820acb7e48Sdrh ** regReturn is the number of the register holding the subroutine 17830acb7e48Sdrh ** return address. 17840acb7e48Sdrh ** 17850acb7e48Sdrh ** If regPrev>0 then it is a the first register in a vector that 17860acb7e48Sdrh ** records the previous output. mem[regPrev] is a flag that is false 17870acb7e48Sdrh ** if there has been no previous output. If regPrev>0 then code is 17880acb7e48Sdrh ** generated to suppress duplicates. pKeyInfo is used for comparing 17890acb7e48Sdrh ** keys. 17900acb7e48Sdrh ** 17910acb7e48Sdrh ** If the LIMIT found in p->iLimit is reached, jump immediately to 17920acb7e48Sdrh ** iBreak. 1793b21e7c70Sdrh */ 17940acb7e48Sdrh static int generateOutputSubroutine( 179592b01d53Sdrh Parse *pParse, /* Parsing context */ 179692b01d53Sdrh Select *p, /* The SELECT statement */ 179792b01d53Sdrh SelectDest *pIn, /* Coroutine supplying data */ 179892b01d53Sdrh SelectDest *pDest, /* Where to send the data */ 179992b01d53Sdrh int regReturn, /* The return address register */ 18000acb7e48Sdrh int regPrev, /* Previous result register. No uniqueness if 0 */ 18010acb7e48Sdrh KeyInfo *pKeyInfo, /* For comparing with previous entry */ 18020acb7e48Sdrh int p4type, /* The p4 type for pKeyInfo */ 180392b01d53Sdrh int iBreak /* Jump here if we hit the LIMIT */ 1804b21e7c70Sdrh ){ 1805b21e7c70Sdrh Vdbe *v = pParse->pVdbe; 180692b01d53Sdrh int iContinue; 180792b01d53Sdrh int addr; 1808b21e7c70Sdrh 180992b01d53Sdrh addr = sqlite3VdbeCurrentAddr(v); 181092b01d53Sdrh iContinue = sqlite3VdbeMakeLabel(v); 18110acb7e48Sdrh 18120acb7e48Sdrh /* Suppress duplicates for UNION, EXCEPT, and INTERSECT 18130acb7e48Sdrh */ 18140acb7e48Sdrh if( regPrev ){ 18150acb7e48Sdrh int j1, j2; 18160acb7e48Sdrh j1 = sqlite3VdbeAddOp1(v, OP_IfNot, regPrev); 18170acb7e48Sdrh j2 = sqlite3VdbeAddOp4(v, OP_Compare, pIn->iMem, regPrev+1, pIn->nMem, 18180acb7e48Sdrh (char*)pKeyInfo, p4type); 18190acb7e48Sdrh sqlite3VdbeAddOp3(v, OP_Jump, j2+2, iContinue, j2+2); 18200acb7e48Sdrh sqlite3VdbeJumpHere(v, j1); 18210acb7e48Sdrh sqlite3ExprCodeCopy(pParse, pIn->iMem, regPrev+1, pIn->nMem); 18220acb7e48Sdrh sqlite3VdbeAddOp2(v, OP_Integer, 1, regPrev); 18230acb7e48Sdrh } 18241f9caa41Sdanielk1977 if( pParse->db->mallocFailed ) return 0; 18250acb7e48Sdrh 18260acb7e48Sdrh /* Suppress the the first OFFSET entries if there is an OFFSET clause 18270acb7e48Sdrh */ 182892b01d53Sdrh codeOffset(v, p, iContinue); 1829b21e7c70Sdrh 1830b21e7c70Sdrh switch( pDest->eDest ){ 1831b21e7c70Sdrh /* Store the result as data using a unique key. 1832b21e7c70Sdrh */ 1833b21e7c70Sdrh case SRT_Table: 1834b21e7c70Sdrh case SRT_EphemTab: { 1835b21e7c70Sdrh int r1 = sqlite3GetTempReg(pParse); 1836b21e7c70Sdrh int r2 = sqlite3GetTempReg(pParse); 183792b01d53Sdrh sqlite3VdbeAddOp3(v, OP_MakeRecord, pIn->iMem, pIn->nMem, r1); 183892b01d53Sdrh sqlite3VdbeAddOp2(v, OP_NewRowid, pDest->iParm, r2); 183992b01d53Sdrh sqlite3VdbeAddOp3(v, OP_Insert, pDest->iParm, r1, r2); 1840b21e7c70Sdrh sqlite3VdbeChangeP5(v, OPFLAG_APPEND); 1841b21e7c70Sdrh sqlite3ReleaseTempReg(pParse, r2); 1842b21e7c70Sdrh sqlite3ReleaseTempReg(pParse, r1); 1843b21e7c70Sdrh break; 1844b21e7c70Sdrh } 1845b21e7c70Sdrh 1846b21e7c70Sdrh #ifndef SQLITE_OMIT_SUBQUERY 1847b21e7c70Sdrh /* If we are creating a set for an "expr IN (SELECT ...)" construct, 1848b21e7c70Sdrh ** then there should be a single item on the stack. Write this 1849b21e7c70Sdrh ** item into the set table with bogus data. 1850b21e7c70Sdrh */ 1851b21e7c70Sdrh case SRT_Set: { 18526fccc35aSdrh int r1; 185392b01d53Sdrh assert( pIn->nMem==1 ); 185492b01d53Sdrh p->affinity = 185592b01d53Sdrh sqlite3CompareAffinity(p->pEList->a[0].pExpr, pDest->affinity); 1856b21e7c70Sdrh r1 = sqlite3GetTempReg(pParse); 185792b01d53Sdrh sqlite3VdbeAddOp4(v, OP_MakeRecord, pIn->iMem, 1, r1, &p->affinity, 1); 185892b01d53Sdrh sqlite3ExprCacheAffinityChange(pParse, pIn->iMem, 1); 185992b01d53Sdrh sqlite3VdbeAddOp2(v, OP_IdxInsert, pDest->iParm, r1); 1860b21e7c70Sdrh sqlite3ReleaseTempReg(pParse, r1); 1861b21e7c70Sdrh break; 1862b21e7c70Sdrh } 1863b21e7c70Sdrh 186485e9e22bSdrh #if 0 /* Never occurs on an ORDER BY query */ 1865b21e7c70Sdrh /* If any row exist in the result set, record that fact and abort. 1866b21e7c70Sdrh */ 1867b21e7c70Sdrh case SRT_Exists: { 186892b01d53Sdrh sqlite3VdbeAddOp2(v, OP_Integer, 1, pDest->iParm); 1869b21e7c70Sdrh /* The LIMIT clause will terminate the loop for us */ 1870b21e7c70Sdrh break; 1871b21e7c70Sdrh } 187285e9e22bSdrh #endif 1873b21e7c70Sdrh 1874b21e7c70Sdrh /* If this is a scalar select that is part of an expression, then 1875b21e7c70Sdrh ** store the results in the appropriate memory cell and break out 1876b21e7c70Sdrh ** of the scan loop. 1877b21e7c70Sdrh */ 1878b21e7c70Sdrh case SRT_Mem: { 187992b01d53Sdrh assert( pIn->nMem==1 ); 188092b01d53Sdrh sqlite3ExprCodeMove(pParse, pIn->iMem, pDest->iParm, 1); 1881b21e7c70Sdrh /* The LIMIT clause will jump out of the loop for us */ 1882b21e7c70Sdrh break; 1883b21e7c70Sdrh } 1884b21e7c70Sdrh #endif /* #ifndef SQLITE_OMIT_SUBQUERY */ 1885b21e7c70Sdrh 18867d10d5a6Sdrh /* The results are stored in a sequence of registers 18877d10d5a6Sdrh ** starting at pDest->iMem. Then the co-routine yields. 1888b21e7c70Sdrh */ 188992b01d53Sdrh case SRT_Coroutine: { 189092b01d53Sdrh if( pDest->iMem==0 ){ 189192b01d53Sdrh pDest->iMem = sqlite3GetTempRange(pParse, pIn->nMem); 189292b01d53Sdrh pDest->nMem = pIn->nMem; 1893b21e7c70Sdrh } 189492b01d53Sdrh sqlite3ExprCodeMove(pParse, pIn->iMem, pDest->iMem, pDest->nMem); 189592b01d53Sdrh sqlite3VdbeAddOp1(v, OP_Yield, pDest->iParm); 189692b01d53Sdrh break; 189792b01d53Sdrh } 189892b01d53Sdrh 18997d10d5a6Sdrh /* Results are stored in a sequence of registers. Then the 19007d10d5a6Sdrh ** OP_ResultRow opcode is used to cause sqlite3_step() to return 19017d10d5a6Sdrh ** the next row of result. 19027d10d5a6Sdrh */ 19037d10d5a6Sdrh case SRT_Output: { 190492b01d53Sdrh sqlite3VdbeAddOp2(v, OP_ResultRow, pIn->iMem, pIn->nMem); 190592b01d53Sdrh sqlite3ExprCacheAffinityChange(pParse, pIn->iMem, pIn->nMem); 1906b21e7c70Sdrh break; 1907b21e7c70Sdrh } 1908b21e7c70Sdrh 1909b21e7c70Sdrh #if !defined(SQLITE_OMIT_TRIGGER) 1910b21e7c70Sdrh /* Discard the results. This is used for SELECT statements inside 1911b21e7c70Sdrh ** the body of a TRIGGER. The purpose of such selects is to call 1912b21e7c70Sdrh ** user-defined functions that have side effects. We do not care 1913b21e7c70Sdrh ** about the actual results of the select. 1914b21e7c70Sdrh */ 1915b21e7c70Sdrh default: { 1916b21e7c70Sdrh break; 1917b21e7c70Sdrh } 1918b21e7c70Sdrh #endif 1919b21e7c70Sdrh } 192092b01d53Sdrh 192192b01d53Sdrh /* Jump to the end of the loop if the LIMIT is reached. 192292b01d53Sdrh */ 192392b01d53Sdrh if( p->iLimit ){ 192492b01d53Sdrh sqlite3VdbeAddOp2(v, OP_AddImm, p->iLimit, -1); 192592b01d53Sdrh sqlite3VdbeAddOp2(v, OP_IfZero, p->iLimit, iBreak); 192692b01d53Sdrh } 192792b01d53Sdrh 192892b01d53Sdrh /* Generate the subroutine return 192992b01d53Sdrh */ 19300acb7e48Sdrh sqlite3VdbeResolveLabel(v, iContinue); 193192b01d53Sdrh sqlite3VdbeAddOp1(v, OP_Return, regReturn); 193292b01d53Sdrh 193392b01d53Sdrh return addr; 1934b21e7c70Sdrh } 1935b21e7c70Sdrh 1936b21e7c70Sdrh /* 1937b21e7c70Sdrh ** Alternative compound select code generator for cases when there 1938b21e7c70Sdrh ** is an ORDER BY clause. 1939b21e7c70Sdrh ** 1940b21e7c70Sdrh ** We assume a query of the following form: 1941b21e7c70Sdrh ** 1942b21e7c70Sdrh ** <selectA> <operator> <selectB> ORDER BY <orderbylist> 1943b21e7c70Sdrh ** 1944b21e7c70Sdrh ** <operator> is one of UNION ALL, UNION, EXCEPT, or INTERSECT. The idea 1945b21e7c70Sdrh ** is to code both <selectA> and <selectB> with the ORDER BY clause as 1946b21e7c70Sdrh ** co-routines. Then run the co-routines in parallel and merge the results 1947b21e7c70Sdrh ** into the output. In addition to the two coroutines (called selectA and 1948b21e7c70Sdrh ** selectB) there are 7 subroutines: 1949b21e7c70Sdrh ** 1950b21e7c70Sdrh ** outA: Move the output of the selectA coroutine into the output 1951b21e7c70Sdrh ** of the compound query. 1952b21e7c70Sdrh ** 1953b21e7c70Sdrh ** outB: Move the output of the selectB coroutine into the output 1954b21e7c70Sdrh ** of the compound query. (Only generated for UNION and 1955b21e7c70Sdrh ** UNION ALL. EXCEPT and INSERTSECT never output a row that 1956b21e7c70Sdrh ** appears only in B.) 1957b21e7c70Sdrh ** 1958b21e7c70Sdrh ** AltB: Called when there is data from both coroutines and A<B. 1959b21e7c70Sdrh ** 1960b21e7c70Sdrh ** AeqB: Called when there is data from both coroutines and A==B. 1961b21e7c70Sdrh ** 1962b21e7c70Sdrh ** AgtB: Called when there is data from both coroutines and A>B. 1963b21e7c70Sdrh ** 1964b21e7c70Sdrh ** EofA: Called when data is exhausted from selectA. 1965b21e7c70Sdrh ** 1966b21e7c70Sdrh ** EofB: Called when data is exhausted from selectB. 1967b21e7c70Sdrh ** 1968b21e7c70Sdrh ** The implementation of the latter five subroutines depend on which 1969b21e7c70Sdrh ** <operator> is used: 1970b21e7c70Sdrh ** 1971b21e7c70Sdrh ** 1972b21e7c70Sdrh ** UNION ALL UNION EXCEPT INTERSECT 1973b21e7c70Sdrh ** ------------- ----------------- -------------- ----------------- 1974b21e7c70Sdrh ** AltB: outA, nextA outA, nextA outA, nextA nextA 1975b21e7c70Sdrh ** 19760acb7e48Sdrh ** AeqB: outA, nextA nextA nextA outA, nextA 1977b21e7c70Sdrh ** 1978b21e7c70Sdrh ** AgtB: outB, nextB outB, nextB nextB nextB 1979b21e7c70Sdrh ** 19800acb7e48Sdrh ** EofA: outB, nextB outB, nextB halt halt 1981b21e7c70Sdrh ** 19820acb7e48Sdrh ** EofB: outA, nextA outA, nextA outA, nextA halt 19830acb7e48Sdrh ** 19840acb7e48Sdrh ** In the AltB, AeqB, and AgtB subroutines, an EOF on A following nextA 19850acb7e48Sdrh ** causes an immediate jump to EofA and an EOF on B following nextB causes 19860acb7e48Sdrh ** an immediate jump to EofB. Within EofA and EofB, and EOF on entry or 19870acb7e48Sdrh ** following nextX causes a jump to the end of the select processing. 19880acb7e48Sdrh ** 19890acb7e48Sdrh ** Duplicate removal in the UNION, EXCEPT, and INTERSECT cases is handled 19900acb7e48Sdrh ** within the output subroutine. The regPrev register set holds the previously 19910acb7e48Sdrh ** output value. A comparison is made against this value and the output 19920acb7e48Sdrh ** is skipped if the next results would be the same as the previous. 1993b21e7c70Sdrh ** 1994b21e7c70Sdrh ** The implementation plan is to implement the two coroutines and seven 1995b21e7c70Sdrh ** subroutines first, then put the control logic at the bottom. Like this: 1996b21e7c70Sdrh ** 1997b21e7c70Sdrh ** goto Init 1998b21e7c70Sdrh ** coA: coroutine for left query (A) 1999b21e7c70Sdrh ** coB: coroutine for right query (B) 2000b21e7c70Sdrh ** outA: output one row of A 2001b21e7c70Sdrh ** outB: output one row of B (UNION and UNION ALL only) 2002b21e7c70Sdrh ** EofA: ... 2003b21e7c70Sdrh ** EofB: ... 2004b21e7c70Sdrh ** AltB: ... 2005b21e7c70Sdrh ** AeqB: ... 2006b21e7c70Sdrh ** AgtB: ... 2007b21e7c70Sdrh ** Init: initialize coroutine registers 2008b21e7c70Sdrh ** yield coA 2009b21e7c70Sdrh ** if eof(A) goto EofA 2010b21e7c70Sdrh ** yield coB 2011b21e7c70Sdrh ** if eof(B) goto EofB 2012b21e7c70Sdrh ** Cmpr: Compare A, B 2013b21e7c70Sdrh ** Jump AltB, AeqB, AgtB 2014b21e7c70Sdrh ** End: ... 2015b21e7c70Sdrh ** 2016b21e7c70Sdrh ** We call AltB, AeqB, AgtB, EofA, and EofB "subroutines" but they are not 2017b21e7c70Sdrh ** actually called using Gosub and they do not Return. EofA and EofB loop 2018b21e7c70Sdrh ** until all data is exhausted then jump to the "end" labe. AltB, AeqB, 2019b21e7c70Sdrh ** and AgtB jump to either L2 or to one of EofA or EofB. 2020b21e7c70Sdrh */ 2021de3e41e3Sdanielk1977 #ifndef SQLITE_OMIT_COMPOUND_SELECT 2022b21e7c70Sdrh static int multiSelectOrderBy( 2023b21e7c70Sdrh Parse *pParse, /* Parsing context */ 2024b21e7c70Sdrh Select *p, /* The right-most of SELECTs to be coded */ 2025a9671a22Sdrh SelectDest *pDest /* What to do with query results */ 2026b21e7c70Sdrh ){ 20270acb7e48Sdrh int i, j; /* Loop counters */ 2028b21e7c70Sdrh Select *pPrior; /* Another SELECT immediately to our left */ 2029b21e7c70Sdrh Vdbe *v; /* Generate code to this VDBE */ 2030b21e7c70Sdrh SelectDest destA; /* Destination for coroutine A */ 2031b21e7c70Sdrh SelectDest destB; /* Destination for coroutine B */ 203292b01d53Sdrh int regAddrA; /* Address register for select-A coroutine */ 203392b01d53Sdrh int regEofA; /* Flag to indicate when select-A is complete */ 203492b01d53Sdrh int regAddrB; /* Address register for select-B coroutine */ 203592b01d53Sdrh int regEofB; /* Flag to indicate when select-B is complete */ 203692b01d53Sdrh int addrSelectA; /* Address of the select-A coroutine */ 203792b01d53Sdrh int addrSelectB; /* Address of the select-B coroutine */ 203892b01d53Sdrh int regOutA; /* Address register for the output-A subroutine */ 203992b01d53Sdrh int regOutB; /* Address register for the output-B subroutine */ 204092b01d53Sdrh int addrOutA; /* Address of the output-A subroutine */ 2041b27b7f5dSdrh int addrOutB = 0; /* Address of the output-B subroutine */ 204292b01d53Sdrh int addrEofA; /* Address of the select-A-exhausted subroutine */ 204392b01d53Sdrh int addrEofB; /* Address of the select-B-exhausted subroutine */ 204492b01d53Sdrh int addrAltB; /* Address of the A<B subroutine */ 204592b01d53Sdrh int addrAeqB; /* Address of the A==B subroutine */ 204692b01d53Sdrh int addrAgtB; /* Address of the A>B subroutine */ 204792b01d53Sdrh int regLimitA; /* Limit register for select-A */ 204892b01d53Sdrh int regLimitB; /* Limit register for select-A */ 20490acb7e48Sdrh int regPrev; /* A range of registers to hold previous output */ 205092b01d53Sdrh int savedLimit; /* Saved value of p->iLimit */ 205192b01d53Sdrh int savedOffset; /* Saved value of p->iOffset */ 205292b01d53Sdrh int labelCmpr; /* Label for the start of the merge algorithm */ 205392b01d53Sdrh int labelEnd; /* Label for the end of the overall SELECT stmt */ 20540acb7e48Sdrh int j1; /* Jump instructions that get retargetted */ 205592b01d53Sdrh int op; /* One of TK_ALL, TK_UNION, TK_EXCEPT, TK_INTERSECT */ 205696067816Sdrh KeyInfo *pKeyDup = 0; /* Comparison information for duplicate removal */ 20570acb7e48Sdrh KeyInfo *pKeyMerge; /* Comparison information for merging rows */ 20580acb7e48Sdrh sqlite3 *db; /* Database connection */ 20590acb7e48Sdrh ExprList *pOrderBy; /* The ORDER BY clause */ 20600acb7e48Sdrh int nOrderBy; /* Number of terms in the ORDER BY clause */ 20610acb7e48Sdrh int *aPermute; /* Mapping from ORDER BY terms to result set columns */ 2062b21e7c70Sdrh 206392b01d53Sdrh assert( p->pOrderBy!=0 ); 206496067816Sdrh assert( pKeyDup==0 ); /* "Managed" code needs this. Ticket #3382. */ 20650acb7e48Sdrh db = pParse->db; 206692b01d53Sdrh v = pParse->pVdbe; 206792b01d53Sdrh if( v==0 ) return SQLITE_NOMEM; 206892b01d53Sdrh labelEnd = sqlite3VdbeMakeLabel(v); 206992b01d53Sdrh labelCmpr = sqlite3VdbeMakeLabel(v); 20700acb7e48Sdrh 2071b21e7c70Sdrh 207292b01d53Sdrh /* Patch up the ORDER BY clause 207392b01d53Sdrh */ 207492b01d53Sdrh op = p->op; 2075b21e7c70Sdrh pPrior = p->pPrior; 207692b01d53Sdrh assert( pPrior->pOrderBy==0 ); 20770acb7e48Sdrh pOrderBy = p->pOrderBy; 207893a960a0Sdrh assert( pOrderBy ); 20790acb7e48Sdrh nOrderBy = pOrderBy->nExpr; 208093a960a0Sdrh 20810acb7e48Sdrh /* For operators other than UNION ALL we have to make sure that 20820acb7e48Sdrh ** the ORDER BY clause covers every term of the result set. Add 20830acb7e48Sdrh ** terms to the ORDER BY clause as necessary. 20840acb7e48Sdrh */ 20850acb7e48Sdrh if( op!=TK_ALL ){ 20860acb7e48Sdrh for(i=1; db->mallocFailed==0 && i<=p->pEList->nExpr; i++){ 20877d10d5a6Sdrh struct ExprList_item *pItem; 20887d10d5a6Sdrh for(j=0, pItem=pOrderBy->a; j<nOrderBy; j++, pItem++){ 20897d10d5a6Sdrh assert( pItem->iCol>0 ); 20907d10d5a6Sdrh if( pItem->iCol==i ) break; 20910acb7e48Sdrh } 20920acb7e48Sdrh if( j==nOrderBy ){ 20930acb7e48Sdrh Expr *pNew = sqlite3PExpr(pParse, TK_INTEGER, 0, 0, 0); 20940acb7e48Sdrh if( pNew==0 ) return SQLITE_NOMEM; 20950acb7e48Sdrh pNew->flags |= EP_IntValue; 20960acb7e48Sdrh pNew->iTable = i; 20970acb7e48Sdrh pOrderBy = sqlite3ExprListAppend(pParse, pOrderBy, pNew, 0); 2098ea678832Sdrh pOrderBy->a[nOrderBy++].iCol = (u16)i; 20990acb7e48Sdrh } 21000acb7e48Sdrh } 21010acb7e48Sdrh } 21020acb7e48Sdrh 21030acb7e48Sdrh /* Compute the comparison permutation and keyinfo that is used with 21040acb7e48Sdrh ** the permutation in order to comparisons to determine if the next 21050acb7e48Sdrh ** row of results comes from selectA or selectB. Also add explicit 21060acb7e48Sdrh ** collations to the ORDER BY clause terms so that when the subqueries 21070acb7e48Sdrh ** to the right and the left are evaluated, they use the correct 21080acb7e48Sdrh ** collation. 21090acb7e48Sdrh */ 21100acb7e48Sdrh aPermute = sqlite3DbMallocRaw(db, sizeof(int)*nOrderBy); 21110acb7e48Sdrh if( aPermute ){ 21127d10d5a6Sdrh struct ExprList_item *pItem; 21137d10d5a6Sdrh for(i=0, pItem=pOrderBy->a; i<nOrderBy; i++, pItem++){ 21147d10d5a6Sdrh assert( pItem->iCol>0 && pItem->iCol<=p->pEList->nExpr ); 21157d10d5a6Sdrh aPermute[i] = pItem->iCol - 1; 21160acb7e48Sdrh } 21170acb7e48Sdrh pKeyMerge = 21180acb7e48Sdrh sqlite3DbMallocRaw(db, sizeof(*pKeyMerge)+nOrderBy*(sizeof(CollSeq*)+1)); 21190acb7e48Sdrh if( pKeyMerge ){ 21200acb7e48Sdrh pKeyMerge->aSortOrder = (u8*)&pKeyMerge->aColl[nOrderBy]; 2121ea678832Sdrh pKeyMerge->nField = (u16)nOrderBy; 21220acb7e48Sdrh pKeyMerge->enc = ENC(db); 21230acb7e48Sdrh for(i=0; i<nOrderBy; i++){ 21240acb7e48Sdrh CollSeq *pColl; 21250acb7e48Sdrh Expr *pTerm = pOrderBy->a[i].pExpr; 21260acb7e48Sdrh if( pTerm->flags & EP_ExpCollate ){ 21270acb7e48Sdrh pColl = pTerm->pColl; 21280acb7e48Sdrh }else{ 21290acb7e48Sdrh pColl = multiSelectCollSeq(pParse, p, aPermute[i]); 21300acb7e48Sdrh pTerm->flags |= EP_ExpCollate; 21310acb7e48Sdrh pTerm->pColl = pColl; 21320acb7e48Sdrh } 21330acb7e48Sdrh pKeyMerge->aColl[i] = pColl; 21340acb7e48Sdrh pKeyMerge->aSortOrder[i] = pOrderBy->a[i].sortOrder; 21350acb7e48Sdrh } 21360acb7e48Sdrh } 21370acb7e48Sdrh }else{ 21380acb7e48Sdrh pKeyMerge = 0; 21390acb7e48Sdrh } 21400acb7e48Sdrh 21410acb7e48Sdrh /* Reattach the ORDER BY clause to the query. 21420acb7e48Sdrh */ 21430acb7e48Sdrh p->pOrderBy = pOrderBy; 21446ab3a2ecSdanielk1977 pPrior->pOrderBy = sqlite3ExprListDup(pParse->db, pOrderBy, 0); 21450acb7e48Sdrh 21460acb7e48Sdrh /* Allocate a range of temporary registers and the KeyInfo needed 21470acb7e48Sdrh ** for the logic that removes duplicate result rows when the 21480acb7e48Sdrh ** operator is UNION, EXCEPT, or INTERSECT (but not UNION ALL). 21490acb7e48Sdrh */ 21500acb7e48Sdrh if( op==TK_ALL ){ 21510acb7e48Sdrh regPrev = 0; 21520acb7e48Sdrh }else{ 21530acb7e48Sdrh int nExpr = p->pEList->nExpr; 21541c0dc825Sdrh assert( nOrderBy>=nExpr || db->mallocFailed ); 21550acb7e48Sdrh regPrev = sqlite3GetTempRange(pParse, nExpr+1); 21560acb7e48Sdrh sqlite3VdbeAddOp2(v, OP_Integer, 0, regPrev); 21570acb7e48Sdrh pKeyDup = sqlite3DbMallocZero(db, 21580acb7e48Sdrh sizeof(*pKeyDup) + nExpr*(sizeof(CollSeq*)+1) ); 21590acb7e48Sdrh if( pKeyDup ){ 21600acb7e48Sdrh pKeyDup->aSortOrder = (u8*)&pKeyDup->aColl[nExpr]; 2161ea678832Sdrh pKeyDup->nField = (u16)nExpr; 21620acb7e48Sdrh pKeyDup->enc = ENC(db); 21630acb7e48Sdrh for(i=0; i<nExpr; i++){ 21640acb7e48Sdrh pKeyDup->aColl[i] = multiSelectCollSeq(pParse, p, i); 21650acb7e48Sdrh pKeyDup->aSortOrder[i] = 0; 21660acb7e48Sdrh } 21670acb7e48Sdrh } 21680acb7e48Sdrh } 216992b01d53Sdrh 217092b01d53Sdrh /* Separate the left and the right query from one another 217192b01d53Sdrh */ 217292b01d53Sdrh p->pPrior = 0; 217392b01d53Sdrh pPrior->pRightmost = 0; 21747d10d5a6Sdrh sqlite3ResolveOrderGroupBy(pParse, p, p->pOrderBy, "ORDER"); 21750acb7e48Sdrh if( pPrior->pPrior==0 ){ 21767d10d5a6Sdrh sqlite3ResolveOrderGroupBy(pParse, pPrior, pPrior->pOrderBy, "ORDER"); 21770acb7e48Sdrh } 217892b01d53Sdrh 217992b01d53Sdrh /* Compute the limit registers */ 218092b01d53Sdrh computeLimitRegisters(pParse, p, labelEnd); 21810acb7e48Sdrh if( p->iLimit && op==TK_ALL ){ 218292b01d53Sdrh regLimitA = ++pParse->nMem; 218392b01d53Sdrh regLimitB = ++pParse->nMem; 218492b01d53Sdrh sqlite3VdbeAddOp2(v, OP_Copy, p->iOffset ? p->iOffset+1 : p->iLimit, 218592b01d53Sdrh regLimitA); 218692b01d53Sdrh sqlite3VdbeAddOp2(v, OP_Copy, regLimitA, regLimitB); 218792b01d53Sdrh }else{ 218892b01d53Sdrh regLimitA = regLimitB = 0; 218992b01d53Sdrh } 2190633e6d57Sdrh sqlite3ExprDelete(db, p->pLimit); 21910acb7e48Sdrh p->pLimit = 0; 2192633e6d57Sdrh sqlite3ExprDelete(db, p->pOffset); 21930acb7e48Sdrh p->pOffset = 0; 219492b01d53Sdrh 2195b21e7c70Sdrh regAddrA = ++pParse->nMem; 2196b21e7c70Sdrh regEofA = ++pParse->nMem; 2197b21e7c70Sdrh regAddrB = ++pParse->nMem; 2198b21e7c70Sdrh regEofB = ++pParse->nMem; 2199b21e7c70Sdrh regOutA = ++pParse->nMem; 2200b21e7c70Sdrh regOutB = ++pParse->nMem; 2201b21e7c70Sdrh sqlite3SelectDestInit(&destA, SRT_Coroutine, regAddrA); 2202b21e7c70Sdrh sqlite3SelectDestInit(&destB, SRT_Coroutine, regAddrB); 2203b21e7c70Sdrh 220492b01d53Sdrh /* Jump past the various subroutines and coroutines to the main 220592b01d53Sdrh ** merge loop 220692b01d53Sdrh */ 2207b21e7c70Sdrh j1 = sqlite3VdbeAddOp0(v, OP_Goto); 2208b21e7c70Sdrh addrSelectA = sqlite3VdbeCurrentAddr(v); 220992b01d53Sdrh 22100acb7e48Sdrh 221192b01d53Sdrh /* Generate a coroutine to evaluate the SELECT statement to the 22120acb7e48Sdrh ** left of the compound operator - the "A" select. 22130acb7e48Sdrh */ 2214b21e7c70Sdrh VdbeNoopComment((v, "Begin coroutine for left SELECT")); 221592b01d53Sdrh pPrior->iLimit = regLimitA; 22167d10d5a6Sdrh sqlite3Select(pParse, pPrior, &destA); 2217b21e7c70Sdrh sqlite3VdbeAddOp2(v, OP_Integer, 1, regEofA); 221892b01d53Sdrh sqlite3VdbeAddOp1(v, OP_Yield, regAddrA); 2219b21e7c70Sdrh VdbeNoopComment((v, "End coroutine for left SELECT")); 2220b21e7c70Sdrh 222192b01d53Sdrh /* Generate a coroutine to evaluate the SELECT statement on 222292b01d53Sdrh ** the right - the "B" select 222392b01d53Sdrh */ 2224b21e7c70Sdrh addrSelectB = sqlite3VdbeCurrentAddr(v); 2225b21e7c70Sdrh VdbeNoopComment((v, "Begin coroutine for right SELECT")); 222692b01d53Sdrh savedLimit = p->iLimit; 222792b01d53Sdrh savedOffset = p->iOffset; 222892b01d53Sdrh p->iLimit = regLimitB; 222992b01d53Sdrh p->iOffset = 0; 22307d10d5a6Sdrh sqlite3Select(pParse, p, &destB); 223192b01d53Sdrh p->iLimit = savedLimit; 223292b01d53Sdrh p->iOffset = savedOffset; 2233b21e7c70Sdrh sqlite3VdbeAddOp2(v, OP_Integer, 1, regEofB); 223492b01d53Sdrh sqlite3VdbeAddOp1(v, OP_Yield, regAddrB); 2235b21e7c70Sdrh VdbeNoopComment((v, "End coroutine for right SELECT")); 2236b21e7c70Sdrh 223792b01d53Sdrh /* Generate a subroutine that outputs the current row of the A 22380acb7e48Sdrh ** select as the next output row of the compound select. 223992b01d53Sdrh */ 2240b21e7c70Sdrh VdbeNoopComment((v, "Output routine for A")); 22410acb7e48Sdrh addrOutA = generateOutputSubroutine(pParse, 22420acb7e48Sdrh p, &destA, pDest, regOutA, 22430acb7e48Sdrh regPrev, pKeyDup, P4_KEYINFO_HANDOFF, labelEnd); 2244b21e7c70Sdrh 224592b01d53Sdrh /* Generate a subroutine that outputs the current row of the B 22460acb7e48Sdrh ** select as the next output row of the compound select. 224792b01d53Sdrh */ 22480acb7e48Sdrh if( op==TK_ALL || op==TK_UNION ){ 2249b21e7c70Sdrh VdbeNoopComment((v, "Output routine for B")); 22500acb7e48Sdrh addrOutB = generateOutputSubroutine(pParse, 22510acb7e48Sdrh p, &destB, pDest, regOutB, 22520acb7e48Sdrh regPrev, pKeyDup, P4_KEYINFO_STATIC, labelEnd); 22530acb7e48Sdrh } 2254b21e7c70Sdrh 225592b01d53Sdrh /* Generate a subroutine to run when the results from select A 225692b01d53Sdrh ** are exhausted and only data in select B remains. 225792b01d53Sdrh */ 225892b01d53Sdrh VdbeNoopComment((v, "eof-A subroutine")); 225992b01d53Sdrh if( op==TK_EXCEPT || op==TK_INTERSECT ){ 22600acb7e48Sdrh addrEofA = sqlite3VdbeAddOp2(v, OP_Goto, 0, labelEnd); 226192b01d53Sdrh }else{ 22620acb7e48Sdrh addrEofA = sqlite3VdbeAddOp2(v, OP_If, regEofB, labelEnd); 2263b21e7c70Sdrh sqlite3VdbeAddOp2(v, OP_Gosub, regOutB, addrOutB); 226492b01d53Sdrh sqlite3VdbeAddOp1(v, OP_Yield, regAddrB); 22650acb7e48Sdrh sqlite3VdbeAddOp2(v, OP_Goto, 0, addrEofA); 2266b21e7c70Sdrh } 2267b21e7c70Sdrh 226892b01d53Sdrh /* Generate a subroutine to run when the results from select B 226992b01d53Sdrh ** are exhausted and only data in select A remains. 227092b01d53Sdrh */ 2271b21e7c70Sdrh if( op==TK_INTERSECT ){ 227292b01d53Sdrh addrEofB = addrEofA; 2273b21e7c70Sdrh }else{ 227492b01d53Sdrh VdbeNoopComment((v, "eof-B subroutine")); 22750acb7e48Sdrh addrEofB = sqlite3VdbeAddOp2(v, OP_If, regEofA, labelEnd); 2276b21e7c70Sdrh sqlite3VdbeAddOp2(v, OP_Gosub, regOutA, addrOutA); 227792b01d53Sdrh sqlite3VdbeAddOp1(v, OP_Yield, regAddrA); 22780acb7e48Sdrh sqlite3VdbeAddOp2(v, OP_Goto, 0, addrEofB); 2279b21e7c70Sdrh } 2280b21e7c70Sdrh 228192b01d53Sdrh /* Generate code to handle the case of A<B 228292b01d53Sdrh */ 2283b21e7c70Sdrh VdbeNoopComment((v, "A-lt-B subroutine")); 22840acb7e48Sdrh addrAltB = sqlite3VdbeAddOp2(v, OP_Gosub, regOutA, addrOutA); 228592b01d53Sdrh sqlite3VdbeAddOp1(v, OP_Yield, regAddrA); 2286b21e7c70Sdrh sqlite3VdbeAddOp2(v, OP_If, regEofA, addrEofA); 228792b01d53Sdrh sqlite3VdbeAddOp2(v, OP_Goto, 0, labelCmpr); 2288b21e7c70Sdrh 228992b01d53Sdrh /* Generate code to handle the case of A==B 229092b01d53Sdrh */ 2291b21e7c70Sdrh if( op==TK_ALL ){ 2292b21e7c70Sdrh addrAeqB = addrAltB; 22930acb7e48Sdrh }else if( op==TK_INTERSECT ){ 22940acb7e48Sdrh addrAeqB = addrAltB; 22950acb7e48Sdrh addrAltB++; 229692b01d53Sdrh }else{ 2297b21e7c70Sdrh VdbeNoopComment((v, "A-eq-B subroutine")); 22980acb7e48Sdrh addrAeqB = 229992b01d53Sdrh sqlite3VdbeAddOp1(v, OP_Yield, regAddrA); 230092b01d53Sdrh sqlite3VdbeAddOp2(v, OP_If, regEofA, addrEofA); 230192b01d53Sdrh sqlite3VdbeAddOp2(v, OP_Goto, 0, labelCmpr); 230292b01d53Sdrh } 2303b21e7c70Sdrh 230492b01d53Sdrh /* Generate code to handle the case of A>B 230592b01d53Sdrh */ 2306b21e7c70Sdrh VdbeNoopComment((v, "A-gt-B subroutine")); 2307b21e7c70Sdrh addrAgtB = sqlite3VdbeCurrentAddr(v); 2308b21e7c70Sdrh if( op==TK_ALL || op==TK_UNION ){ 2309b21e7c70Sdrh sqlite3VdbeAddOp2(v, OP_Gosub, regOutB, addrOutB); 231092b01d53Sdrh } 23110acb7e48Sdrh sqlite3VdbeAddOp1(v, OP_Yield, regAddrB); 2312b21e7c70Sdrh sqlite3VdbeAddOp2(v, OP_If, regEofB, addrEofB); 231392b01d53Sdrh sqlite3VdbeAddOp2(v, OP_Goto, 0, labelCmpr); 2314b21e7c70Sdrh 231592b01d53Sdrh /* This code runs once to initialize everything. 231692b01d53Sdrh */ 2317b21e7c70Sdrh sqlite3VdbeJumpHere(v, j1); 2318b21e7c70Sdrh sqlite3VdbeAddOp2(v, OP_Integer, 0, regEofA); 2319b21e7c70Sdrh sqlite3VdbeAddOp2(v, OP_Integer, 0, regEofB); 232092b01d53Sdrh sqlite3VdbeAddOp2(v, OP_Gosub, regAddrA, addrSelectA); 23210acb7e48Sdrh sqlite3VdbeAddOp2(v, OP_Gosub, regAddrB, addrSelectB); 2322b21e7c70Sdrh sqlite3VdbeAddOp2(v, OP_If, regEofA, addrEofA); 2323b21e7c70Sdrh sqlite3VdbeAddOp2(v, OP_If, regEofB, addrEofB); 232492b01d53Sdrh 232592b01d53Sdrh /* Implement the main merge loop 232692b01d53Sdrh */ 232792b01d53Sdrh sqlite3VdbeResolveLabel(v, labelCmpr); 23280acb7e48Sdrh sqlite3VdbeAddOp4(v, OP_Permutation, 0, 0, 0, (char*)aPermute, P4_INTARRAY); 23290acb7e48Sdrh sqlite3VdbeAddOp4(v, OP_Compare, destA.iMem, destB.iMem, nOrderBy, 23300acb7e48Sdrh (char*)pKeyMerge, P4_KEYINFO_HANDOFF); 2331b21e7c70Sdrh sqlite3VdbeAddOp3(v, OP_Jump, addrAltB, addrAeqB, addrAgtB); 233292b01d53Sdrh 23330acb7e48Sdrh /* Release temporary registers 23340acb7e48Sdrh */ 23350acb7e48Sdrh if( regPrev ){ 23360acb7e48Sdrh sqlite3ReleaseTempRange(pParse, regPrev, nOrderBy+1); 23370acb7e48Sdrh } 23380acb7e48Sdrh 233992b01d53Sdrh /* Jump to the this point in order to terminate the query. 234092b01d53Sdrh */ 2341b21e7c70Sdrh sqlite3VdbeResolveLabel(v, labelEnd); 2342b21e7c70Sdrh 234392b01d53Sdrh /* Set the number of output columns 234492b01d53Sdrh */ 23457d10d5a6Sdrh if( pDest->eDest==SRT_Output ){ 23460acb7e48Sdrh Select *pFirst = pPrior; 234792b01d53Sdrh while( pFirst->pPrior ) pFirst = pFirst->pPrior; 234892b01d53Sdrh generateColumnNames(pParse, 0, pFirst->pEList); 2349b21e7c70Sdrh } 235092b01d53Sdrh 23510acb7e48Sdrh /* Reassembly the compound query so that it will be freed correctly 23520acb7e48Sdrh ** by the calling function */ 23535e7ad508Sdanielk1977 if( p->pPrior ){ 2354633e6d57Sdrh sqlite3SelectDelete(db, p->pPrior); 23555e7ad508Sdanielk1977 } 23560acb7e48Sdrh p->pPrior = pPrior; 235792b01d53Sdrh 235892b01d53Sdrh /*** TBD: Insert subroutine calls to close cursors on incomplete 235992b01d53Sdrh **** subqueries ****/ 236092b01d53Sdrh return SQLITE_OK; 236192b01d53Sdrh } 2362de3e41e3Sdanielk1977 #endif 2363b21e7c70Sdrh 23643514b6f7Sshane #if !defined(SQLITE_OMIT_SUBQUERY) || !defined(SQLITE_OMIT_VIEW) 236517435752Sdrh /* Forward Declarations */ 236617435752Sdrh static void substExprList(sqlite3*, ExprList*, int, ExprList*); 236717435752Sdrh static void substSelect(sqlite3*, Select *, int, ExprList *); 236817435752Sdrh 23692282792aSdrh /* 2370832508b7Sdrh ** Scan through the expression pExpr. Replace every reference to 23716a3ea0e6Sdrh ** a column in table number iTable with a copy of the iColumn-th 237284e59207Sdrh ** entry in pEList. (But leave references to the ROWID column 23736a3ea0e6Sdrh ** unchanged.) 2374832508b7Sdrh ** 2375832508b7Sdrh ** This routine is part of the flattening procedure. A subquery 2376832508b7Sdrh ** whose result set is defined by pEList appears as entry in the 2377832508b7Sdrh ** FROM clause of a SELECT such that the VDBE cursor assigned to that 2378832508b7Sdrh ** FORM clause entry is iTable. This routine make the necessary 2379832508b7Sdrh ** changes to pExpr so that it refers directly to the source table 2380832508b7Sdrh ** of the subquery rather the result set of the subquery. 2381832508b7Sdrh */ 238217435752Sdrh static void substExpr( 238317435752Sdrh sqlite3 *db, /* Report malloc errors to this connection */ 238417435752Sdrh Expr *pExpr, /* Expr in which substitution occurs */ 238517435752Sdrh int iTable, /* Table to be substituted */ 238617435752Sdrh ExprList *pEList /* Substitute expressions */ 238717435752Sdrh ){ 2388832508b7Sdrh if( pExpr==0 ) return; 238950350a15Sdrh if( pExpr->op==TK_COLUMN && pExpr->iTable==iTable ){ 239050350a15Sdrh if( pExpr->iColumn<0 ){ 239150350a15Sdrh pExpr->op = TK_NULL; 239250350a15Sdrh }else{ 2393832508b7Sdrh Expr *pNew; 239484e59207Sdrh assert( pEList!=0 && pExpr->iColumn<pEList->nExpr ); 23956ab3a2ecSdanielk1977 assert( pExpr->pLeft==0 && pExpr->pRight==0 ); 2396832508b7Sdrh pNew = pEList->a[pExpr->iColumn].pExpr; 2397832508b7Sdrh assert( pNew!=0 ); 2398832508b7Sdrh pExpr->op = pNew->op; 2399d94a6698Sdrh assert( pExpr->pLeft==0 ); 24006ab3a2ecSdanielk1977 pExpr->pLeft = sqlite3ExprDup(db, pNew->pLeft, 0); 2401d94a6698Sdrh assert( pExpr->pRight==0 ); 24026ab3a2ecSdanielk1977 pExpr->pRight = sqlite3ExprDup(db, pNew->pRight, 0); 2403832508b7Sdrh pExpr->iTable = pNew->iTable; 2404fbbe005aSdanielk1977 pExpr->pTab = pNew->pTab; 2405832508b7Sdrh pExpr->iColumn = pNew->iColumn; 2406832508b7Sdrh pExpr->iAgg = pNew->iAgg; 240717435752Sdrh sqlite3TokenCopy(db, &pExpr->token, &pNew->token); 240817435752Sdrh sqlite3TokenCopy(db, &pExpr->span, &pNew->span); 24096ab3a2ecSdanielk1977 assert( pExpr->x.pList==0 && pExpr->x.pSelect==0 ); 24106ab3a2ecSdanielk1977 if( ExprHasProperty(pNew, EP_xIsSelect) ){ 24116ab3a2ecSdanielk1977 pExpr->x.pSelect = sqlite3SelectDup(db, pNew->x.pSelect, 0); 24126ab3a2ecSdanielk1977 }else{ 24136ab3a2ecSdanielk1977 pExpr->x.pList = sqlite3ExprListDup(db, pNew->x.pList, 0); 24146ab3a2ecSdanielk1977 } 2415a1cb183dSdanielk1977 pExpr->flags = pNew->flags; 241666cd1822Sdrh pExpr->pAggInfo = pNew->pAggInfo; 241766cd1822Sdrh pNew->pAggInfo = 0; 241850350a15Sdrh } 2419832508b7Sdrh }else{ 242017435752Sdrh substExpr(db, pExpr->pLeft, iTable, pEList); 242117435752Sdrh substExpr(db, pExpr->pRight, iTable, pEList); 24226ab3a2ecSdanielk1977 if( ExprHasProperty(pExpr, EP_xIsSelect) ){ 24236ab3a2ecSdanielk1977 substSelect(db, pExpr->x.pSelect, iTable, pEList); 24246ab3a2ecSdanielk1977 }else{ 24256ab3a2ecSdanielk1977 substExprList(db, pExpr->x.pList, iTable, pEList); 24266ab3a2ecSdanielk1977 } 2427832508b7Sdrh } 2428832508b7Sdrh } 242917435752Sdrh static void substExprList( 243017435752Sdrh sqlite3 *db, /* Report malloc errors here */ 243117435752Sdrh ExprList *pList, /* List to scan and in which to make substitutes */ 243217435752Sdrh int iTable, /* Table to be substituted */ 243317435752Sdrh ExprList *pEList /* Substitute values */ 243417435752Sdrh ){ 2435832508b7Sdrh int i; 2436832508b7Sdrh if( pList==0 ) return; 2437832508b7Sdrh for(i=0; i<pList->nExpr; i++){ 243817435752Sdrh substExpr(db, pList->a[i].pExpr, iTable, pEList); 2439832508b7Sdrh } 2440832508b7Sdrh } 244117435752Sdrh static void substSelect( 244217435752Sdrh sqlite3 *db, /* Report malloc errors here */ 244317435752Sdrh Select *p, /* SELECT statement in which to make substitutions */ 244417435752Sdrh int iTable, /* Table to be replaced */ 244517435752Sdrh ExprList *pEList /* Substitute values */ 244617435752Sdrh ){ 2447588a9a1aSdrh SrcList *pSrc; 2448588a9a1aSdrh struct SrcList_item *pItem; 2449588a9a1aSdrh int i; 2450b3bce662Sdanielk1977 if( !p ) return; 245117435752Sdrh substExprList(db, p->pEList, iTable, pEList); 245217435752Sdrh substExprList(db, p->pGroupBy, iTable, pEList); 245317435752Sdrh substExprList(db, p->pOrderBy, iTable, pEList); 245417435752Sdrh substExpr(db, p->pHaving, iTable, pEList); 245517435752Sdrh substExpr(db, p->pWhere, iTable, pEList); 245617435752Sdrh substSelect(db, p->pPrior, iTable, pEList); 2457588a9a1aSdrh pSrc = p->pSrc; 2458e2f02bacSdrh assert( pSrc ); /* Even for (SELECT 1) we have: pSrc!=0 but pSrc->nSrc==0 */ 2459e2f02bacSdrh if( ALWAYS(pSrc) ){ 2460588a9a1aSdrh for(i=pSrc->nSrc, pItem=pSrc->a; i>0; i--, pItem++){ 2461588a9a1aSdrh substSelect(db, pItem->pSelect, iTable, pEList); 2462588a9a1aSdrh } 2463588a9a1aSdrh } 2464b3bce662Sdanielk1977 } 24653514b6f7Sshane #endif /* !defined(SQLITE_OMIT_SUBQUERY) || !defined(SQLITE_OMIT_VIEW) */ 2466832508b7Sdrh 24673514b6f7Sshane #if !defined(SQLITE_OMIT_SUBQUERY) || !defined(SQLITE_OMIT_VIEW) 2468832508b7Sdrh /* 24691350b030Sdrh ** This routine attempts to flatten subqueries in order to speed 24701350b030Sdrh ** execution. It returns 1 if it makes changes and 0 if no flattening 24711350b030Sdrh ** occurs. 24721350b030Sdrh ** 24731350b030Sdrh ** To understand the concept of flattening, consider the following 24741350b030Sdrh ** query: 24751350b030Sdrh ** 24761350b030Sdrh ** SELECT a FROM (SELECT x+y AS a FROM t1 WHERE z<100) WHERE a>5 24771350b030Sdrh ** 24781350b030Sdrh ** The default way of implementing this query is to execute the 24791350b030Sdrh ** subquery first and store the results in a temporary table, then 24801350b030Sdrh ** run the outer query on that temporary table. This requires two 24811350b030Sdrh ** passes over the data. Furthermore, because the temporary table 24821350b030Sdrh ** has no indices, the WHERE clause on the outer query cannot be 2483832508b7Sdrh ** optimized. 24841350b030Sdrh ** 2485832508b7Sdrh ** This routine attempts to rewrite queries such as the above into 24861350b030Sdrh ** a single flat select, like this: 24871350b030Sdrh ** 24881350b030Sdrh ** SELECT x+y AS a FROM t1 WHERE z<100 AND a>5 24891350b030Sdrh ** 24901350b030Sdrh ** The code generated for this simpification gives the same result 2491832508b7Sdrh ** but only has to scan the data once. And because indices might 2492832508b7Sdrh ** exist on the table t1, a complete scan of the data might be 2493832508b7Sdrh ** avoided. 24941350b030Sdrh ** 2495832508b7Sdrh ** Flattening is only attempted if all of the following are true: 24961350b030Sdrh ** 2497832508b7Sdrh ** (1) The subquery and the outer query do not both use aggregates. 24981350b030Sdrh ** 2499832508b7Sdrh ** (2) The subquery is not an aggregate or the outer query is not a join. 2500832508b7Sdrh ** 25012b300d5dSdrh ** (3) The subquery is not the right operand of a left outer join 25022b300d5dSdrh ** (Originally ticket #306. Strenghtened by ticket #3300) 2503832508b7Sdrh ** 2504832508b7Sdrh ** (4) The subquery is not DISTINCT or the outer query is not a join. 2505832508b7Sdrh ** 2506832508b7Sdrh ** (5) The subquery is not DISTINCT or the outer query does not use 2507832508b7Sdrh ** aggregates. 2508832508b7Sdrh ** 2509832508b7Sdrh ** (6) The subquery does not use aggregates or the outer query is not 2510832508b7Sdrh ** DISTINCT. 2511832508b7Sdrh ** 251208192d5fSdrh ** (7) The subquery has a FROM clause. 251308192d5fSdrh ** 2514df199a25Sdrh ** (8) The subquery does not use LIMIT or the outer query is not a join. 2515df199a25Sdrh ** 2516df199a25Sdrh ** (9) The subquery does not use LIMIT or the outer query does not use 2517df199a25Sdrh ** aggregates. 2518df199a25Sdrh ** 2519df199a25Sdrh ** (10) The subquery does not use aggregates or the outer query does not 2520df199a25Sdrh ** use LIMIT. 2521df199a25Sdrh ** 2522174b6195Sdrh ** (11) The subquery and the outer query do not both have ORDER BY clauses. 2523174b6195Sdrh ** 25242b300d5dSdrh ** (12) Not implemented. Subsumed into restriction (3). Was previously 25252b300d5dSdrh ** a separate restriction deriving from ticket #350. 25263fc673e6Sdrh ** 2527ac83963aSdrh ** (13) The subquery and outer query do not both use LIMIT 2528ac83963aSdrh ** 2529ac83963aSdrh ** (14) The subquery does not use OFFSET 2530ac83963aSdrh ** 2531ad91c6cdSdrh ** (15) The outer query is not part of a compound select or the 2532ad91c6cdSdrh ** subquery does not have both an ORDER BY and a LIMIT clause. 2533ad91c6cdSdrh ** (See ticket #2339) 2534ad91c6cdSdrh ** 2535c52e355dSdrh ** (16) The outer query is not an aggregate or the subquery does 2536c52e355dSdrh ** not contain ORDER BY. (Ticket #2942) This used to not matter 2537c52e355dSdrh ** until we introduced the group_concat() function. 2538c52e355dSdrh ** 2539f23329a2Sdanielk1977 ** (17) The sub-query is not a compound select, or it is a UNION ALL 25404914cf92Sdanielk1977 ** compound clause made up entirely of non-aggregate queries, and 2541f23329a2Sdanielk1977 ** the parent query: 2542f23329a2Sdanielk1977 ** 2543f23329a2Sdanielk1977 ** * is not itself part of a compound select, 2544f23329a2Sdanielk1977 ** * is not an aggregate or DISTINCT query, and 2545f23329a2Sdanielk1977 ** * has no other tables or sub-selects in the FROM clause. 2546f23329a2Sdanielk1977 ** 25474914cf92Sdanielk1977 ** The parent and sub-query may contain WHERE clauses. Subject to 25484914cf92Sdanielk1977 ** rules (11), (13) and (14), they may also contain ORDER BY, 25494914cf92Sdanielk1977 ** LIMIT and OFFSET clauses. 2550f23329a2Sdanielk1977 ** 255149fc1f60Sdanielk1977 ** (18) If the sub-query is a compound select, then all terms of the 255249fc1f60Sdanielk1977 ** ORDER by clause of the parent must be simple references to 255349fc1f60Sdanielk1977 ** columns of the sub-query. 255449fc1f60Sdanielk1977 ** 2555229cf702Sdrh ** (19) The subquery does not use LIMIT or the outer query does not 2556229cf702Sdrh ** have a WHERE clause. 2557229cf702Sdrh ** 2558832508b7Sdrh ** In this routine, the "p" parameter is a pointer to the outer query. 2559832508b7Sdrh ** The subquery is p->pSrc->a[iFrom]. isAgg is true if the outer query 2560832508b7Sdrh ** uses aggregates and subqueryIsAgg is true if the subquery uses aggregates. 2561832508b7Sdrh ** 2562665de47aSdrh ** If flattening is not attempted, this routine is a no-op and returns 0. 2563832508b7Sdrh ** If flattening is attempted this routine returns 1. 2564832508b7Sdrh ** 2565832508b7Sdrh ** All of the expression analysis must occur on both the outer query and 2566832508b7Sdrh ** the subquery before this routine runs. 25671350b030Sdrh */ 25688c74a8caSdrh static int flattenSubquery( 2569524cc21eSdanielk1977 Parse *pParse, /* Parsing context */ 25708c74a8caSdrh Select *p, /* The parent or outer SELECT statement */ 25718c74a8caSdrh int iFrom, /* Index in p->pSrc->a[] of the inner subquery */ 25728c74a8caSdrh int isAgg, /* True if outer SELECT uses aggregate functions */ 25738c74a8caSdrh int subqueryIsAgg /* True if the subquery uses aggregate functions */ 25748c74a8caSdrh ){ 2575524cc21eSdanielk1977 const char *zSavedAuthContext = pParse->zAuthContext; 2576f23329a2Sdanielk1977 Select *pParent; 25770bb28106Sdrh Select *pSub; /* The inner query or "subquery" */ 2578f23329a2Sdanielk1977 Select *pSub1; /* Pointer to the rightmost select in sub-query */ 2579ad3cab52Sdrh SrcList *pSrc; /* The FROM clause of the outer query */ 2580ad3cab52Sdrh SrcList *pSubSrc; /* The FROM clause of the subquery */ 25810bb28106Sdrh ExprList *pList; /* The result set of the outer query */ 25826a3ea0e6Sdrh int iParent; /* VDBE cursor number of the pSub result set temp table */ 258391bb0eedSdrh int i; /* Loop counter */ 258491bb0eedSdrh Expr *pWhere; /* The WHERE clause */ 258591bb0eedSdrh struct SrcList_item *pSubitem; /* The subquery */ 2586524cc21eSdanielk1977 sqlite3 *db = pParse->db; 25871350b030Sdrh 2588832508b7Sdrh /* Check to see if flattening is permitted. Return 0 if not. 2589832508b7Sdrh */ 2590a78c22c4Sdrh assert( p!=0 ); 2591a78c22c4Sdrh assert( p->pPrior==0 ); /* Unable to flatten compound queries */ 2592832508b7Sdrh pSrc = p->pSrc; 2593ad3cab52Sdrh assert( pSrc && iFrom>=0 && iFrom<pSrc->nSrc ); 259491bb0eedSdrh pSubitem = &pSrc->a[iFrom]; 259549fc1f60Sdanielk1977 iParent = pSubitem->iCursor; 259691bb0eedSdrh pSub = pSubitem->pSelect; 2597832508b7Sdrh assert( pSub!=0 ); 2598ac83963aSdrh if( isAgg && subqueryIsAgg ) return 0; /* Restriction (1) */ 2599ac83963aSdrh if( subqueryIsAgg && pSrc->nSrc>1 ) return 0; /* Restriction (2) */ 2600832508b7Sdrh pSubSrc = pSub->pSrc; 2601832508b7Sdrh assert( pSubSrc ); 2602ac83963aSdrh /* Prior to version 3.1.2, when LIMIT and OFFSET had to be simple constants, 2603ac83963aSdrh ** not arbitrary expresssions, we allowed some combining of LIMIT and OFFSET 2604ac83963aSdrh ** because they could be computed at compile-time. But when LIMIT and OFFSET 2605ac83963aSdrh ** became arbitrary expressions, we were forced to add restrictions (13) 2606ac83963aSdrh ** and (14). */ 2607ac83963aSdrh if( pSub->pLimit && p->pLimit ) return 0; /* Restriction (13) */ 2608ac83963aSdrh if( pSub->pOffset ) return 0; /* Restriction (14) */ 2609ad91c6cdSdrh if( p->pRightmost && pSub->pLimit && pSub->pOrderBy ){ 2610ad91c6cdSdrh return 0; /* Restriction (15) */ 2611ad91c6cdSdrh } 2612ac83963aSdrh if( pSubSrc->nSrc==0 ) return 0; /* Restriction (7) */ 26137d10d5a6Sdrh if( ((pSub->selFlags & SF_Distinct)!=0 || pSub->pLimit) 2614ac83963aSdrh && (pSrc->nSrc>1 || isAgg) ){ /* Restrictions (4)(5)(8)(9) */ 2615df199a25Sdrh return 0; 2616df199a25Sdrh } 26177d10d5a6Sdrh if( (p->selFlags & SF_Distinct)!=0 && subqueryIsAgg ){ 26187d10d5a6Sdrh return 0; /* Restriction (6) */ 26197d10d5a6Sdrh } 26207d10d5a6Sdrh if( p->pOrderBy && pSub->pOrderBy ){ 2621ac83963aSdrh return 0; /* Restriction (11) */ 2622ac83963aSdrh } 2623c52e355dSdrh if( isAgg && pSub->pOrderBy ) return 0; /* Restriction (16) */ 2624229cf702Sdrh if( pSub->pLimit && p->pWhere ) return 0; /* Restriction (19) */ 2625832508b7Sdrh 26262b300d5dSdrh /* OBSOLETE COMMENT 1: 26272b300d5dSdrh ** Restriction 3: If the subquery is a join, make sure the subquery is 26288af4d3acSdrh ** not used as the right operand of an outer join. Examples of why this 26298af4d3acSdrh ** is not allowed: 26308af4d3acSdrh ** 26318af4d3acSdrh ** t1 LEFT OUTER JOIN (t2 JOIN t3) 26328af4d3acSdrh ** 26338af4d3acSdrh ** If we flatten the above, we would get 26348af4d3acSdrh ** 26358af4d3acSdrh ** (t1 LEFT OUTER JOIN t2) JOIN t3 26368af4d3acSdrh ** 26378af4d3acSdrh ** which is not at all the same thing. 26382b300d5dSdrh ** 26392b300d5dSdrh ** OBSOLETE COMMENT 2: 26402b300d5dSdrh ** Restriction 12: If the subquery is the right operand of a left outer 26413fc673e6Sdrh ** join, make sure the subquery has no WHERE clause. 26423fc673e6Sdrh ** An examples of why this is not allowed: 26433fc673e6Sdrh ** 26443fc673e6Sdrh ** t1 LEFT OUTER JOIN (SELECT * FROM t2 WHERE t2.x>0) 26453fc673e6Sdrh ** 26463fc673e6Sdrh ** If we flatten the above, we would get 26473fc673e6Sdrh ** 26483fc673e6Sdrh ** (t1 LEFT OUTER JOIN t2) WHERE t2.x>0 26493fc673e6Sdrh ** 26503fc673e6Sdrh ** But the t2.x>0 test will always fail on a NULL row of t2, which 26513fc673e6Sdrh ** effectively converts the OUTER JOIN into an INNER JOIN. 26522b300d5dSdrh ** 26532b300d5dSdrh ** THIS OVERRIDES OBSOLETE COMMENTS 1 AND 2 ABOVE: 26542b300d5dSdrh ** Ticket #3300 shows that flattening the right term of a LEFT JOIN 26552b300d5dSdrh ** is fraught with danger. Best to avoid the whole thing. If the 26562b300d5dSdrh ** subquery is the right term of a LEFT JOIN, then do not flatten. 26573fc673e6Sdrh */ 26582b300d5dSdrh if( (pSubitem->jointype & JT_OUTER)!=0 ){ 26593fc673e6Sdrh return 0; 26603fc673e6Sdrh } 26613fc673e6Sdrh 2662f23329a2Sdanielk1977 /* Restriction 17: If the sub-query is a compound SELECT, then it must 2663f23329a2Sdanielk1977 ** use only the UNION ALL operator. And none of the simple select queries 2664f23329a2Sdanielk1977 ** that make up the compound SELECT are allowed to be aggregate or distinct 2665f23329a2Sdanielk1977 ** queries. 2666f23329a2Sdanielk1977 */ 2667f23329a2Sdanielk1977 if( pSub->pPrior ){ 2668e2f02bacSdrh if( isAgg || (p->selFlags & SF_Distinct)!=0 || pSrc->nSrc!=1 ){ 2669f23329a2Sdanielk1977 return 0; 2670f23329a2Sdanielk1977 } 2671f23329a2Sdanielk1977 for(pSub1=pSub; pSub1; pSub1=pSub1->pPrior){ 26727d10d5a6Sdrh if( (pSub1->selFlags & (SF_Distinct|SF_Aggregate))!=0 267380b3c548Sdanielk1977 || (pSub1->pPrior && pSub1->op!=TK_ALL) 267480b3c548Sdanielk1977 || !pSub1->pSrc || pSub1->pSrc->nSrc!=1 267580b3c548Sdanielk1977 ){ 2676f23329a2Sdanielk1977 return 0; 2677f23329a2Sdanielk1977 } 2678f23329a2Sdanielk1977 } 267949fc1f60Sdanielk1977 268049fc1f60Sdanielk1977 /* Restriction 18. */ 268149fc1f60Sdanielk1977 if( p->pOrderBy ){ 268249fc1f60Sdanielk1977 int ii; 268349fc1f60Sdanielk1977 for(ii=0; ii<p->pOrderBy->nExpr; ii++){ 26847d10d5a6Sdrh if( p->pOrderBy->a[ii].iCol==0 ) return 0; 268549fc1f60Sdanielk1977 } 268649fc1f60Sdanielk1977 } 2687f23329a2Sdanielk1977 } 2688f23329a2Sdanielk1977 26897d10d5a6Sdrh /***** If we reach this point, flattening is permitted. *****/ 26907d10d5a6Sdrh 26917d10d5a6Sdrh /* Authorize the subquery */ 2692524cc21eSdanielk1977 pParse->zAuthContext = pSubitem->zName; 2693524cc21eSdanielk1977 sqlite3AuthCheck(pParse, SQLITE_SELECT, 0, 0, 0); 2694524cc21eSdanielk1977 pParse->zAuthContext = zSavedAuthContext; 2695524cc21eSdanielk1977 26967d10d5a6Sdrh /* If the sub-query is a compound SELECT statement, then (by restrictions 26977d10d5a6Sdrh ** 17 and 18 above) it must be a UNION ALL and the parent query must 26987d10d5a6Sdrh ** be of the form: 2699f23329a2Sdanielk1977 ** 2700f23329a2Sdanielk1977 ** SELECT <expr-list> FROM (<sub-query>) <where-clause> 2701f23329a2Sdanielk1977 ** 2702f23329a2Sdanielk1977 ** followed by any ORDER BY, LIMIT and/or OFFSET clauses. This block 2703a78c22c4Sdrh ** creates N-1 copies of the parent query without any ORDER BY, LIMIT or 2704f23329a2Sdanielk1977 ** OFFSET clauses and joins them to the left-hand-side of the original 2705f23329a2Sdanielk1977 ** using UNION ALL operators. In this case N is the number of simple 2706f23329a2Sdanielk1977 ** select statements in the compound sub-query. 2707a78c22c4Sdrh ** 2708a78c22c4Sdrh ** Example: 2709a78c22c4Sdrh ** 2710a78c22c4Sdrh ** SELECT a+1 FROM ( 2711a78c22c4Sdrh ** SELECT x FROM tab 2712a78c22c4Sdrh ** UNION ALL 2713a78c22c4Sdrh ** SELECT y FROM tab 2714a78c22c4Sdrh ** UNION ALL 2715a78c22c4Sdrh ** SELECT abs(z*2) FROM tab2 2716a78c22c4Sdrh ** ) WHERE a!=5 ORDER BY 1 2717a78c22c4Sdrh ** 2718a78c22c4Sdrh ** Transformed into: 2719a78c22c4Sdrh ** 2720a78c22c4Sdrh ** SELECT x+1 FROM tab WHERE x+1!=5 2721a78c22c4Sdrh ** UNION ALL 2722a78c22c4Sdrh ** SELECT y+1 FROM tab WHERE y+1!=5 2723a78c22c4Sdrh ** UNION ALL 2724a78c22c4Sdrh ** SELECT abs(z*2)+1 FROM tab2 WHERE abs(z*2)+1!=5 2725a78c22c4Sdrh ** ORDER BY 1 2726a78c22c4Sdrh ** 2727a78c22c4Sdrh ** We call this the "compound-subquery flattening". 2728f23329a2Sdanielk1977 */ 2729f23329a2Sdanielk1977 for(pSub=pSub->pPrior; pSub; pSub=pSub->pPrior){ 2730f23329a2Sdanielk1977 Select *pNew; 2731f23329a2Sdanielk1977 ExprList *pOrderBy = p->pOrderBy; 27324b86ef1dSdanielk1977 Expr *pLimit = p->pLimit; 2733f23329a2Sdanielk1977 Select *pPrior = p->pPrior; 2734f23329a2Sdanielk1977 p->pOrderBy = 0; 2735f23329a2Sdanielk1977 p->pSrc = 0; 2736f23329a2Sdanielk1977 p->pPrior = 0; 27374b86ef1dSdanielk1977 p->pLimit = 0; 27386ab3a2ecSdanielk1977 pNew = sqlite3SelectDup(db, p, 0); 27394b86ef1dSdanielk1977 p->pLimit = pLimit; 2740a78c22c4Sdrh p->pOrderBy = pOrderBy; 2741a78c22c4Sdrh p->pSrc = pSrc; 2742a78c22c4Sdrh p->op = TK_ALL; 2743f23329a2Sdanielk1977 p->pRightmost = 0; 2744a78c22c4Sdrh if( pNew==0 ){ 2745a78c22c4Sdrh pNew = pPrior; 2746a78c22c4Sdrh }else{ 2747a78c22c4Sdrh pNew->pPrior = pPrior; 2748f23329a2Sdanielk1977 pNew->pRightmost = 0; 2749f23329a2Sdanielk1977 } 2750a78c22c4Sdrh p->pPrior = pNew; 2751a78c22c4Sdrh if( db->mallocFailed ) return 1; 2752a78c22c4Sdrh } 2753f23329a2Sdanielk1977 27547d10d5a6Sdrh /* Begin flattening the iFrom-th entry of the FROM clause 27557d10d5a6Sdrh ** in the outer query. 2756832508b7Sdrh */ 2757f23329a2Sdanielk1977 pSub = pSub1 = pSubitem->pSelect; 2758c31c2eb8Sdrh 2759a78c22c4Sdrh /* Delete the transient table structure associated with the 2760a78c22c4Sdrh ** subquery 2761a78c22c4Sdrh */ 2762a78c22c4Sdrh sqlite3DbFree(db, pSubitem->zDatabase); 2763a78c22c4Sdrh sqlite3DbFree(db, pSubitem->zName); 2764a78c22c4Sdrh sqlite3DbFree(db, pSubitem->zAlias); 2765a78c22c4Sdrh pSubitem->zDatabase = 0; 2766a78c22c4Sdrh pSubitem->zName = 0; 2767a78c22c4Sdrh pSubitem->zAlias = 0; 2768a78c22c4Sdrh pSubitem->pSelect = 0; 2769a78c22c4Sdrh 2770a78c22c4Sdrh /* Defer deleting the Table object associated with the 2771a78c22c4Sdrh ** subquery until code generation is 2772a78c22c4Sdrh ** complete, since there may still exist Expr.pTab entries that 2773a78c22c4Sdrh ** refer to the subquery even after flattening. Ticket #3346. 2774a78c22c4Sdrh */ 2775a78c22c4Sdrh if( pSubitem->pTab!=0 ){ 2776a78c22c4Sdrh Table *pTabToDel = pSubitem->pTab; 2777a78c22c4Sdrh if( pTabToDel->nRef==1 ){ 2778a78c22c4Sdrh pTabToDel->pNextZombie = pParse->pZombieTab; 2779a78c22c4Sdrh pParse->pZombieTab = pTabToDel; 2780a78c22c4Sdrh }else{ 2781a78c22c4Sdrh pTabToDel->nRef--; 2782a78c22c4Sdrh } 2783a78c22c4Sdrh pSubitem->pTab = 0; 2784a78c22c4Sdrh } 2785a78c22c4Sdrh 2786a78c22c4Sdrh /* The following loop runs once for each term in a compound-subquery 2787a78c22c4Sdrh ** flattening (as described above). If we are doing a different kind 2788a78c22c4Sdrh ** of flattening - a flattening other than a compound-subquery flattening - 2789a78c22c4Sdrh ** then this loop only runs once. 2790a78c22c4Sdrh ** 2791a78c22c4Sdrh ** This loop moves all of the FROM elements of the subquery into the 2792c31c2eb8Sdrh ** the FROM clause of the outer query. Before doing this, remember 2793c31c2eb8Sdrh ** the cursor number for the original outer query FROM element in 2794c31c2eb8Sdrh ** iParent. The iParent cursor will never be used. Subsequent code 2795c31c2eb8Sdrh ** will scan expressions looking for iParent references and replace 2796c31c2eb8Sdrh ** those references with expressions that resolve to the subquery FROM 2797c31c2eb8Sdrh ** elements we are now copying in. 2798c31c2eb8Sdrh */ 2799a78c22c4Sdrh for(pParent=p; pParent; pParent=pParent->pPrior, pSub=pSub->pPrior){ 2800a78c22c4Sdrh int nSubSrc; 2801ea678832Sdrh u8 jointype = 0; 2802a78c22c4Sdrh pSubSrc = pSub->pSrc; /* FROM clause of subquery */ 2803a78c22c4Sdrh nSubSrc = pSubSrc->nSrc; /* Number of terms in subquery FROM clause */ 2804a78c22c4Sdrh pSrc = pParent->pSrc; /* FROM clause of the outer query */ 2805588a9a1aSdrh 2806a78c22c4Sdrh if( pSrc ){ 2807a78c22c4Sdrh assert( pParent==p ); /* First time through the loop */ 2808a78c22c4Sdrh jointype = pSubitem->jointype; 2809588a9a1aSdrh }else{ 2810a78c22c4Sdrh assert( pParent!=p ); /* 2nd and subsequent times through the loop */ 2811a78c22c4Sdrh pSrc = pParent->pSrc = sqlite3SrcListAppend(db, 0, 0, 0); 2812cfa063b3Sdrh if( pSrc==0 ){ 2813a78c22c4Sdrh assert( db->mallocFailed ); 2814a78c22c4Sdrh break; 2815cfa063b3Sdrh } 2816c31c2eb8Sdrh } 2817a78c22c4Sdrh 2818a78c22c4Sdrh /* The subquery uses a single slot of the FROM clause of the outer 2819a78c22c4Sdrh ** query. If the subquery has more than one element in its FROM clause, 2820a78c22c4Sdrh ** then expand the outer query to make space for it to hold all elements 2821a78c22c4Sdrh ** of the subquery. 2822a78c22c4Sdrh ** 2823a78c22c4Sdrh ** Example: 2824a78c22c4Sdrh ** 2825a78c22c4Sdrh ** SELECT * FROM tabA, (SELECT * FROM sub1, sub2), tabB; 2826a78c22c4Sdrh ** 2827a78c22c4Sdrh ** The outer query has 3 slots in its FROM clause. One slot of the 2828a78c22c4Sdrh ** outer query (the middle slot) is used by the subquery. The next 2829a78c22c4Sdrh ** block of code will expand the out query to 4 slots. The middle 2830a78c22c4Sdrh ** slot is expanded to two slots in order to make space for the 2831a78c22c4Sdrh ** two elements in the FROM clause of the subquery. 2832a78c22c4Sdrh */ 2833a78c22c4Sdrh if( nSubSrc>1 ){ 2834a78c22c4Sdrh pParent->pSrc = pSrc = sqlite3SrcListEnlarge(db, pSrc, nSubSrc-1,iFrom+1); 2835a78c22c4Sdrh if( db->mallocFailed ){ 2836a78c22c4Sdrh break; 2837c31c2eb8Sdrh } 2838c31c2eb8Sdrh } 2839a78c22c4Sdrh 2840a78c22c4Sdrh /* Transfer the FROM clause terms from the subquery into the 2841a78c22c4Sdrh ** outer query. 2842a78c22c4Sdrh */ 2843c31c2eb8Sdrh for(i=0; i<nSubSrc; i++){ 2844c31c2eb8Sdrh pSrc->a[i+iFrom] = pSubSrc->a[i]; 2845c31c2eb8Sdrh memset(&pSubSrc->a[i], 0, sizeof(pSubSrc->a[i])); 2846c31c2eb8Sdrh } 284761dfc31dSdrh pSrc->a[iFrom].jointype = jointype; 2848c31c2eb8Sdrh 2849c31c2eb8Sdrh /* Now begin substituting subquery result set expressions for 2850c31c2eb8Sdrh ** references to the iParent in the outer query. 2851c31c2eb8Sdrh ** 2852c31c2eb8Sdrh ** Example: 2853c31c2eb8Sdrh ** 2854c31c2eb8Sdrh ** SELECT a+5, b*10 FROM (SELECT x*3 AS a, y+10 AS b FROM t1) WHERE a>b; 2855c31c2eb8Sdrh ** \ \_____________ subquery __________/ / 2856c31c2eb8Sdrh ** \_____________________ outer query ______________________________/ 2857c31c2eb8Sdrh ** 2858c31c2eb8Sdrh ** We look at every expression in the outer query and every place we see 2859c31c2eb8Sdrh ** "a" we substitute "x*3" and every place we see "b" we substitute "y+10". 2860c31c2eb8Sdrh */ 2861f23329a2Sdanielk1977 pList = pParent->pEList; 2862832508b7Sdrh for(i=0; i<pList->nExpr; i++){ 28636977fea8Sdrh Expr *pExpr; 28646977fea8Sdrh if( pList->a[i].zName==0 && (pExpr = pList->a[i].pExpr)->span.z!=0 ){ 286517435752Sdrh pList->a[i].zName = 286617435752Sdrh sqlite3DbStrNDup(db, (char*)pExpr->span.z, pExpr->span.n); 2867832508b7Sdrh } 2868832508b7Sdrh } 2869f23329a2Sdanielk1977 substExprList(db, pParent->pEList, iParent, pSub->pEList); 28701b2e0329Sdrh if( isAgg ){ 2871f23329a2Sdanielk1977 substExprList(db, pParent->pGroupBy, iParent, pSub->pEList); 2872f23329a2Sdanielk1977 substExpr(db, pParent->pHaving, iParent, pSub->pEList); 28731b2e0329Sdrh } 2874174b6195Sdrh if( pSub->pOrderBy ){ 2875f23329a2Sdanielk1977 assert( pParent->pOrderBy==0 ); 2876f23329a2Sdanielk1977 pParent->pOrderBy = pSub->pOrderBy; 2877174b6195Sdrh pSub->pOrderBy = 0; 2878f23329a2Sdanielk1977 }else if( pParent->pOrderBy ){ 2879f23329a2Sdanielk1977 substExprList(db, pParent->pOrderBy, iParent, pSub->pEList); 2880174b6195Sdrh } 2881832508b7Sdrh if( pSub->pWhere ){ 28826ab3a2ecSdanielk1977 pWhere = sqlite3ExprDup(db, pSub->pWhere, 0); 2883832508b7Sdrh }else{ 2884832508b7Sdrh pWhere = 0; 2885832508b7Sdrh } 2886832508b7Sdrh if( subqueryIsAgg ){ 2887f23329a2Sdanielk1977 assert( pParent->pHaving==0 ); 2888f23329a2Sdanielk1977 pParent->pHaving = pParent->pWhere; 2889f23329a2Sdanielk1977 pParent->pWhere = pWhere; 2890f23329a2Sdanielk1977 substExpr(db, pParent->pHaving, iParent, pSub->pEList); 2891f23329a2Sdanielk1977 pParent->pHaving = sqlite3ExprAnd(db, pParent->pHaving, 28926ab3a2ecSdanielk1977 sqlite3ExprDup(db, pSub->pHaving, 0)); 2893f23329a2Sdanielk1977 assert( pParent->pGroupBy==0 ); 28946ab3a2ecSdanielk1977 pParent->pGroupBy = sqlite3ExprListDup(db, pSub->pGroupBy, 0); 2895832508b7Sdrh }else{ 2896f23329a2Sdanielk1977 substExpr(db, pParent->pWhere, iParent, pSub->pEList); 2897f23329a2Sdanielk1977 pParent->pWhere = sqlite3ExprAnd(db, pParent->pWhere, pWhere); 2898832508b7Sdrh } 2899c31c2eb8Sdrh 2900c31c2eb8Sdrh /* The flattened query is distinct if either the inner or the 2901c31c2eb8Sdrh ** outer query is distinct. 2902c31c2eb8Sdrh */ 29037d10d5a6Sdrh pParent->selFlags |= pSub->selFlags & SF_Distinct; 29048c74a8caSdrh 2905a58fdfb1Sdanielk1977 /* 2906a58fdfb1Sdanielk1977 ** SELECT ... FROM (SELECT ... LIMIT a OFFSET b) LIMIT x OFFSET y; 2907ac83963aSdrh ** 2908ac83963aSdrh ** One is tempted to try to add a and b to combine the limits. But this 2909ac83963aSdrh ** does not work if either limit is negative. 2910a58fdfb1Sdanielk1977 */ 2911a2dc3b1aSdanielk1977 if( pSub->pLimit ){ 2912f23329a2Sdanielk1977 pParent->pLimit = pSub->pLimit; 2913a2dc3b1aSdanielk1977 pSub->pLimit = 0; 2914df199a25Sdrh } 2915f23329a2Sdanielk1977 } 29168c74a8caSdrh 2917c31c2eb8Sdrh /* Finially, delete what is left of the subquery and return 2918c31c2eb8Sdrh ** success. 2919c31c2eb8Sdrh */ 2920633e6d57Sdrh sqlite3SelectDelete(db, pSub1); 2921f23329a2Sdanielk1977 2922832508b7Sdrh return 1; 29231350b030Sdrh } 29243514b6f7Sshane #endif /* !defined(SQLITE_OMIT_SUBQUERY) || !defined(SQLITE_OMIT_VIEW) */ 29251350b030Sdrh 29261350b030Sdrh /* 2927a9d1ccb9Sdanielk1977 ** Analyze the SELECT statement passed as an argument to see if it 292808c88eb0Sdrh ** is a min() or max() query. Return WHERE_ORDERBY_MIN or WHERE_ORDERBY_MAX if 2929a9d1ccb9Sdanielk1977 ** it is, or 0 otherwise. At present, a query is considered to be 2930a9d1ccb9Sdanielk1977 ** a min()/max() query if: 2931a9d1ccb9Sdanielk1977 ** 2932738bdcfbSdanielk1977 ** 1. There is a single object in the FROM clause. 2933738bdcfbSdanielk1977 ** 2934738bdcfbSdanielk1977 ** 2. There is a single expression in the result set, and it is 2935738bdcfbSdanielk1977 ** either min(x) or max(x), where x is a column reference. 2936a9d1ccb9Sdanielk1977 */ 29374f21c4afSdrh static u8 minMaxQuery(Select *p){ 2938a9d1ccb9Sdanielk1977 Expr *pExpr; 2939a9d1ccb9Sdanielk1977 ExprList *pEList = p->pEList; 2940a9d1ccb9Sdanielk1977 294108c88eb0Sdrh if( pEList->nExpr!=1 ) return WHERE_ORDERBY_NORMAL; 2942a9d1ccb9Sdanielk1977 pExpr = pEList->a[0].pExpr; 29436ab3a2ecSdanielk1977 if( ExprHasProperty(pExpr, EP_xIsSelect) ) return 0; 29446ab3a2ecSdanielk1977 pEList = pExpr->x.pList; 2945a9d1ccb9Sdanielk1977 if( pExpr->op!=TK_AGG_FUNCTION || pEList==0 || pEList->nExpr!=1 ) return 0; 294608c88eb0Sdrh if( pEList->a[0].pExpr->op!=TK_AGG_COLUMN ) return WHERE_ORDERBY_NORMAL; 294708c88eb0Sdrh if( pExpr->token.n!=3 ) return WHERE_ORDERBY_NORMAL; 2948a9d1ccb9Sdanielk1977 if( sqlite3StrNICmp((char*)pExpr->token.z,"min",3)==0 ){ 294908c88eb0Sdrh return WHERE_ORDERBY_MIN; 2950a9d1ccb9Sdanielk1977 }else if( sqlite3StrNICmp((char*)pExpr->token.z,"max",3)==0 ){ 295108c88eb0Sdrh return WHERE_ORDERBY_MAX; 2952a9d1ccb9Sdanielk1977 } 295308c88eb0Sdrh return WHERE_ORDERBY_NORMAL; 2954a9d1ccb9Sdanielk1977 } 2955a9d1ccb9Sdanielk1977 2956a9d1ccb9Sdanielk1977 /* 2957a5533162Sdanielk1977 ** The select statement passed as the first argument is an aggregate query. 2958a5533162Sdanielk1977 ** The second argment is the associated aggregate-info object. This 2959a5533162Sdanielk1977 ** function tests if the SELECT is of the form: 2960a5533162Sdanielk1977 ** 2961a5533162Sdanielk1977 ** SELECT count(*) FROM <tbl> 2962a5533162Sdanielk1977 ** 2963a5533162Sdanielk1977 ** where table is a database table, not a sub-select or view. If the query 2964a5533162Sdanielk1977 ** does match this pattern, then a pointer to the Table object representing 2965a5533162Sdanielk1977 ** <tbl> is returned. Otherwise, 0 is returned. 2966a5533162Sdanielk1977 */ 2967a5533162Sdanielk1977 static Table *isSimpleCount(Select *p, AggInfo *pAggInfo){ 2968a5533162Sdanielk1977 Table *pTab; 2969a5533162Sdanielk1977 Expr *pExpr; 2970a5533162Sdanielk1977 2971a5533162Sdanielk1977 assert( !p->pGroupBy ); 2972a5533162Sdanielk1977 29737a895a80Sdanielk1977 if( p->pWhere || p->pEList->nExpr!=1 2974a5533162Sdanielk1977 || p->pSrc->nSrc!=1 || p->pSrc->a[0].pSelect 2975a5533162Sdanielk1977 ){ 2976a5533162Sdanielk1977 return 0; 2977a5533162Sdanielk1977 } 2978a5533162Sdanielk1977 pTab = p->pSrc->a[0].pTab; 2979a5533162Sdanielk1977 pExpr = p->pEList->a[0].pExpr; 298002f33725Sdanielk1977 assert( pTab && !pTab->pSelect && pExpr ); 298102f33725Sdanielk1977 298202f33725Sdanielk1977 if( IsVirtual(pTab) ) return 0; 2983a5533162Sdanielk1977 if( pExpr->op!=TK_AGG_FUNCTION ) return 0; 2984a5533162Sdanielk1977 if( (pAggInfo->aFunc[0].pFunc->flags&SQLITE_FUNC_COUNT)==0 ) return 0; 2985a5533162Sdanielk1977 if( pExpr->flags&EP_Distinct ) return 0; 2986a5533162Sdanielk1977 2987a5533162Sdanielk1977 return pTab; 2988a5533162Sdanielk1977 } 2989a5533162Sdanielk1977 2990a5533162Sdanielk1977 /* 2991b1c685b0Sdanielk1977 ** If the source-list item passed as an argument was augmented with an 2992b1c685b0Sdanielk1977 ** INDEXED BY clause, then try to locate the specified index. If there 2993b1c685b0Sdanielk1977 ** was such a clause and the named index cannot be found, return 2994b1c685b0Sdanielk1977 ** SQLITE_ERROR and leave an error in pParse. Otherwise, populate 2995b1c685b0Sdanielk1977 ** pFrom->pIndex and return SQLITE_OK. 2996b1c685b0Sdanielk1977 */ 2997b1c685b0Sdanielk1977 int sqlite3IndexedByLookup(Parse *pParse, struct SrcList_item *pFrom){ 2998b1c685b0Sdanielk1977 if( pFrom->pTab && pFrom->zIndex ){ 2999b1c685b0Sdanielk1977 Table *pTab = pFrom->pTab; 3000b1c685b0Sdanielk1977 char *zIndex = pFrom->zIndex; 3001b1c685b0Sdanielk1977 Index *pIdx; 3002b1c685b0Sdanielk1977 for(pIdx=pTab->pIndex; 3003b1c685b0Sdanielk1977 pIdx && sqlite3StrICmp(pIdx->zName, zIndex); 3004b1c685b0Sdanielk1977 pIdx=pIdx->pNext 3005b1c685b0Sdanielk1977 ); 3006b1c685b0Sdanielk1977 if( !pIdx ){ 3007b1c685b0Sdanielk1977 sqlite3ErrorMsg(pParse, "no such index: %s", zIndex, 0); 3008b1c685b0Sdanielk1977 return SQLITE_ERROR; 3009b1c685b0Sdanielk1977 } 3010b1c685b0Sdanielk1977 pFrom->pIndex = pIdx; 3011b1c685b0Sdanielk1977 } 3012b1c685b0Sdanielk1977 return SQLITE_OK; 3013b1c685b0Sdanielk1977 } 3014b1c685b0Sdanielk1977 3015b1c685b0Sdanielk1977 /* 30167d10d5a6Sdrh ** This routine is a Walker callback for "expanding" a SELECT statement. 30177d10d5a6Sdrh ** "Expanding" means to do the following: 30187d10d5a6Sdrh ** 30197d10d5a6Sdrh ** (1) Make sure VDBE cursor numbers have been assigned to every 30207d10d5a6Sdrh ** element of the FROM clause. 30217d10d5a6Sdrh ** 30227d10d5a6Sdrh ** (2) Fill in the pTabList->a[].pTab fields in the SrcList that 30237d10d5a6Sdrh ** defines FROM clause. When views appear in the FROM clause, 30247d10d5a6Sdrh ** fill pTabList->a[].pSelect with a copy of the SELECT statement 30257d10d5a6Sdrh ** that implements the view. A copy is made of the view's SELECT 30267d10d5a6Sdrh ** statement so that we can freely modify or delete that statement 30277d10d5a6Sdrh ** without worrying about messing up the presistent representation 30287d10d5a6Sdrh ** of the view. 30297d10d5a6Sdrh ** 30307d10d5a6Sdrh ** (3) Add terms to the WHERE clause to accomodate the NATURAL keyword 30317d10d5a6Sdrh ** on joins and the ON and USING clause of joins. 30327d10d5a6Sdrh ** 30337d10d5a6Sdrh ** (4) Scan the list of columns in the result set (pEList) looking 30347d10d5a6Sdrh ** for instances of the "*" operator or the TABLE.* operator. 30357d10d5a6Sdrh ** If found, expand each "*" to be every column in every table 30367d10d5a6Sdrh ** and TABLE.* to be every column in TABLE. 30377d10d5a6Sdrh ** 3038b3bce662Sdanielk1977 */ 30397d10d5a6Sdrh static int selectExpander(Walker *pWalker, Select *p){ 30407d10d5a6Sdrh Parse *pParse = pWalker->pParse; 30417d10d5a6Sdrh int i, j, k; 30427d10d5a6Sdrh SrcList *pTabList; 30437d10d5a6Sdrh ExprList *pEList; 30447d10d5a6Sdrh struct SrcList_item *pFrom; 30457d10d5a6Sdrh sqlite3 *db = pParse->db; 30467d10d5a6Sdrh 30477d10d5a6Sdrh if( db->mallocFailed ){ 30487d10d5a6Sdrh return WRC_Abort; 30497d10d5a6Sdrh } 30507d10d5a6Sdrh if( p->pSrc==0 || (p->selFlags & SF_Expanded)!=0 ){ 30517d10d5a6Sdrh return WRC_Prune; 30527d10d5a6Sdrh } 30537d10d5a6Sdrh p->selFlags |= SF_Expanded; 30547d10d5a6Sdrh pTabList = p->pSrc; 30557d10d5a6Sdrh pEList = p->pEList; 30567d10d5a6Sdrh 30577d10d5a6Sdrh /* Make sure cursor numbers have been assigned to all entries in 30587d10d5a6Sdrh ** the FROM clause of the SELECT statement. 30597d10d5a6Sdrh */ 30607d10d5a6Sdrh sqlite3SrcListAssignCursors(pParse, pTabList); 30617d10d5a6Sdrh 30627d10d5a6Sdrh /* Look up every table named in the FROM clause of the select. If 30637d10d5a6Sdrh ** an entry of the FROM clause is a subquery instead of a table or view, 30647d10d5a6Sdrh ** then create a transient table structure to describe the subquery. 30657d10d5a6Sdrh */ 30667d10d5a6Sdrh for(i=0, pFrom=pTabList->a; i<pTabList->nSrc; i++, pFrom++){ 30677d10d5a6Sdrh Table *pTab; 30687d10d5a6Sdrh if( pFrom->pTab!=0 ){ 30697d10d5a6Sdrh /* This statement has already been prepared. There is no need 30707d10d5a6Sdrh ** to go further. */ 30717d10d5a6Sdrh assert( i==0 ); 30727d10d5a6Sdrh return WRC_Prune; 30737d10d5a6Sdrh } 30747d10d5a6Sdrh if( pFrom->zName==0 ){ 30757d10d5a6Sdrh #ifndef SQLITE_OMIT_SUBQUERY 30767d10d5a6Sdrh Select *pSel = pFrom->pSelect; 30777d10d5a6Sdrh /* A sub-query in the FROM clause of a SELECT */ 30787d10d5a6Sdrh assert( pSel!=0 ); 30797d10d5a6Sdrh assert( pFrom->pTab==0 ); 30807d10d5a6Sdrh sqlite3WalkSelect(pWalker, pSel); 30817d10d5a6Sdrh pFrom->pTab = pTab = sqlite3DbMallocZero(db, sizeof(Table)); 30827d10d5a6Sdrh if( pTab==0 ) return WRC_Abort; 3083*d9da78a2Sdrh pTab->dbMem = db->lookaside.bEnabled ? db : 0; 30847d10d5a6Sdrh pTab->nRef = 1; 30857d10d5a6Sdrh pTab->zName = sqlite3MPrintf(db, "sqlite_subquery_%p_", (void*)pTab); 30867d10d5a6Sdrh while( pSel->pPrior ){ pSel = pSel->pPrior; } 30877d10d5a6Sdrh selectColumnsFromExprList(pParse, pSel->pEList, &pTab->nCol, &pTab->aCol); 30887d10d5a6Sdrh pTab->iPKey = -1; 30897d10d5a6Sdrh pTab->tabFlags |= TF_Ephemeral; 30907d10d5a6Sdrh #endif 30917d10d5a6Sdrh }else{ 30927d10d5a6Sdrh /* An ordinary table or view name in the FROM clause */ 30937d10d5a6Sdrh assert( pFrom->pTab==0 ); 30947d10d5a6Sdrh pFrom->pTab = pTab = 30957d10d5a6Sdrh sqlite3LocateTable(pParse,0,pFrom->zName,pFrom->zDatabase); 30967d10d5a6Sdrh if( pTab==0 ) return WRC_Abort; 30977d10d5a6Sdrh pTab->nRef++; 30987d10d5a6Sdrh #if !defined(SQLITE_OMIT_VIEW) || !defined (SQLITE_OMIT_VIRTUALTABLE) 30997d10d5a6Sdrh if( pTab->pSelect || IsVirtual(pTab) ){ 31007d10d5a6Sdrh /* We reach here if the named table is a really a view */ 31017d10d5a6Sdrh if( sqlite3ViewGetColumnNames(pParse, pTab) ) return WRC_Abort; 31027d10d5a6Sdrh 31037d10d5a6Sdrh /* If pFrom->pSelect!=0 it means we are dealing with a 31047d10d5a6Sdrh ** view within a view. The SELECT structure has already been 31057d10d5a6Sdrh ** copied by the outer view so we can skip the copy step here 31067d10d5a6Sdrh ** in the inner view. 31077d10d5a6Sdrh */ 31087d10d5a6Sdrh if( pFrom->pSelect==0 ){ 31096ab3a2ecSdanielk1977 pFrom->pSelect = sqlite3SelectDup(db, pTab->pSelect, 0); 31107d10d5a6Sdrh sqlite3WalkSelect(pWalker, pFrom->pSelect); 31117d10d5a6Sdrh } 31127d10d5a6Sdrh } 31137d10d5a6Sdrh #endif 31147d10d5a6Sdrh } 311585574e31Sdanielk1977 311685574e31Sdanielk1977 /* Locate the index named by the INDEXED BY clause, if any. */ 3117b1c685b0Sdanielk1977 if( sqlite3IndexedByLookup(pParse, pFrom) ){ 311885574e31Sdanielk1977 return WRC_Abort; 311985574e31Sdanielk1977 } 31207d10d5a6Sdrh } 31217d10d5a6Sdrh 31227d10d5a6Sdrh /* Process NATURAL keywords, and ON and USING clauses of joins. 31237d10d5a6Sdrh */ 31247d10d5a6Sdrh if( db->mallocFailed || sqliteProcessJoin(pParse, p) ){ 31257d10d5a6Sdrh return WRC_Abort; 31267d10d5a6Sdrh } 31277d10d5a6Sdrh 31287d10d5a6Sdrh /* For every "*" that occurs in the column list, insert the names of 31297d10d5a6Sdrh ** all columns in all tables. And for every TABLE.* insert the names 31307d10d5a6Sdrh ** of all columns in TABLE. The parser inserted a special expression 31317d10d5a6Sdrh ** with the TK_ALL operator for each "*" that it found in the column list. 31327d10d5a6Sdrh ** The following code just has to locate the TK_ALL expressions and expand 31337d10d5a6Sdrh ** each one to the list of all columns in all tables. 31347d10d5a6Sdrh ** 31357d10d5a6Sdrh ** The first loop just checks to see if there are any "*" operators 31367d10d5a6Sdrh ** that need expanding. 31377d10d5a6Sdrh */ 31387d10d5a6Sdrh for(k=0; k<pEList->nExpr; k++){ 31397d10d5a6Sdrh Expr *pE = pEList->a[k].pExpr; 31407d10d5a6Sdrh if( pE->op==TK_ALL ) break; 31417d10d5a6Sdrh if( pE->op==TK_DOT && pE->pRight && pE->pRight->op==TK_ALL 31427d10d5a6Sdrh && pE->pLeft && pE->pLeft->op==TK_ID ) break; 31437d10d5a6Sdrh } 31447d10d5a6Sdrh if( k<pEList->nExpr ){ 31457d10d5a6Sdrh /* 31467d10d5a6Sdrh ** If we get here it means the result set contains one or more "*" 31477d10d5a6Sdrh ** operators that need to be expanded. Loop through each expression 31487d10d5a6Sdrh ** in the result set and expand them one by one. 31497d10d5a6Sdrh */ 31507d10d5a6Sdrh struct ExprList_item *a = pEList->a; 31517d10d5a6Sdrh ExprList *pNew = 0; 31527d10d5a6Sdrh int flags = pParse->db->flags; 31537d10d5a6Sdrh int longNames = (flags & SQLITE_FullColNames)!=0 31547d10d5a6Sdrh && (flags & SQLITE_ShortColNames)==0; 31557d10d5a6Sdrh 31567d10d5a6Sdrh for(k=0; k<pEList->nExpr; k++){ 31577d10d5a6Sdrh Expr *pE = a[k].pExpr; 31587d10d5a6Sdrh if( pE->op!=TK_ALL && 31597d10d5a6Sdrh (pE->op!=TK_DOT || pE->pRight==0 || pE->pRight->op!=TK_ALL) ){ 31607d10d5a6Sdrh /* This particular expression does not need to be expanded. 31617d10d5a6Sdrh */ 31627d10d5a6Sdrh pNew = sqlite3ExprListAppend(pParse, pNew, a[k].pExpr, 0); 31637d10d5a6Sdrh if( pNew ){ 31647d10d5a6Sdrh pNew->a[pNew->nExpr-1].zName = a[k].zName; 31657d10d5a6Sdrh } 31667d10d5a6Sdrh a[k].pExpr = 0; 31677d10d5a6Sdrh a[k].zName = 0; 31687d10d5a6Sdrh }else{ 31697d10d5a6Sdrh /* This expression is a "*" or a "TABLE.*" and needs to be 31707d10d5a6Sdrh ** expanded. */ 31717d10d5a6Sdrh int tableSeen = 0; /* Set to 1 when TABLE matches */ 31727d10d5a6Sdrh char *zTName; /* text of name of TABLE */ 31737d10d5a6Sdrh if( pE->op==TK_DOT && pE->pLeft ){ 31747d10d5a6Sdrh zTName = sqlite3NameFromToken(db, &pE->pLeft->token); 31757d10d5a6Sdrh }else{ 31767d10d5a6Sdrh zTName = 0; 31777d10d5a6Sdrh } 31787d10d5a6Sdrh for(i=0, pFrom=pTabList->a; i<pTabList->nSrc; i++, pFrom++){ 31797d10d5a6Sdrh Table *pTab = pFrom->pTab; 31807d10d5a6Sdrh char *zTabName = pFrom->zAlias; 31817d10d5a6Sdrh if( zTabName==0 || zTabName[0]==0 ){ 31827d10d5a6Sdrh zTabName = pTab->zName; 31837d10d5a6Sdrh } 31847d10d5a6Sdrh if( db->mallocFailed ) break; 31857d10d5a6Sdrh if( zTName && sqlite3StrICmp(zTName, zTabName)!=0 ){ 31867d10d5a6Sdrh continue; 31877d10d5a6Sdrh } 31887d10d5a6Sdrh tableSeen = 1; 31897d10d5a6Sdrh for(j=0; j<pTab->nCol; j++){ 31907d10d5a6Sdrh Expr *pExpr, *pRight; 31917d10d5a6Sdrh char *zName = pTab->aCol[j].zName; 31927d10d5a6Sdrh 31937d10d5a6Sdrh /* If a column is marked as 'hidden' (currently only possible 31947d10d5a6Sdrh ** for virtual tables), do not include it in the expanded 31957d10d5a6Sdrh ** result-set list. 31967d10d5a6Sdrh */ 31977d10d5a6Sdrh if( IsHiddenColumn(&pTab->aCol[j]) ){ 31987d10d5a6Sdrh assert(IsVirtual(pTab)); 31997d10d5a6Sdrh continue; 32007d10d5a6Sdrh } 32017d10d5a6Sdrh 3202da55c48aSdrh if( i>0 && zTName==0 ){ 32037d10d5a6Sdrh struct SrcList_item *pLeft = &pTabList->a[i-1]; 32047d10d5a6Sdrh if( (pLeft[1].jointype & JT_NATURAL)!=0 && 32057d10d5a6Sdrh columnIndex(pLeft->pTab, zName)>=0 ){ 32067d10d5a6Sdrh /* In a NATURAL join, omit the join columns from the 32077d10d5a6Sdrh ** table on the right */ 32087d10d5a6Sdrh continue; 32097d10d5a6Sdrh } 32107d10d5a6Sdrh if( sqlite3IdListIndex(pLeft[1].pUsing, zName)>=0 ){ 32117d10d5a6Sdrh /* In a join with a USING clause, omit columns in the 32127d10d5a6Sdrh ** using clause from the table on the right. */ 32137d10d5a6Sdrh continue; 32147d10d5a6Sdrh } 32157d10d5a6Sdrh } 32167d10d5a6Sdrh pRight = sqlite3PExpr(pParse, TK_ID, 0, 0, 0); 32177d10d5a6Sdrh if( pRight==0 ) break; 32187d10d5a6Sdrh setQuotedToken(pParse, &pRight->token, zName); 32197d10d5a6Sdrh if( longNames || pTabList->nSrc>1 ){ 32207d10d5a6Sdrh Expr *pLeft = sqlite3PExpr(pParse, TK_ID, 0, 0, 0); 32217d10d5a6Sdrh pExpr = sqlite3PExpr(pParse, TK_DOT, pLeft, pRight, 0); 32227d10d5a6Sdrh if( pExpr==0 ) break; 32237d10d5a6Sdrh setQuotedToken(pParse, &pLeft->token, zTabName); 32247d10d5a6Sdrh setToken(&pExpr->span, 32257d10d5a6Sdrh sqlite3MPrintf(db, "%s.%s", zTabName, zName)); 32267d10d5a6Sdrh pExpr->span.dyn = 1; 32277d10d5a6Sdrh pExpr->token.z = 0; 32287d10d5a6Sdrh pExpr->token.n = 0; 32297d10d5a6Sdrh pExpr->token.dyn = 0; 32307d10d5a6Sdrh }else{ 32317d10d5a6Sdrh pExpr = pRight; 32327d10d5a6Sdrh pExpr->span = pExpr->token; 32337d10d5a6Sdrh pExpr->span.dyn = 0; 32347d10d5a6Sdrh } 32357d10d5a6Sdrh if( longNames ){ 32367d10d5a6Sdrh pNew = sqlite3ExprListAppend(pParse, pNew, pExpr, &pExpr->span); 32377d10d5a6Sdrh }else{ 32387d10d5a6Sdrh pNew = sqlite3ExprListAppend(pParse, pNew, pExpr, &pRight->token); 32397d10d5a6Sdrh } 32407d10d5a6Sdrh } 32417d10d5a6Sdrh } 32427d10d5a6Sdrh if( !tableSeen ){ 32437d10d5a6Sdrh if( zTName ){ 32447d10d5a6Sdrh sqlite3ErrorMsg(pParse, "no such table: %s", zTName); 32457d10d5a6Sdrh }else{ 32467d10d5a6Sdrh sqlite3ErrorMsg(pParse, "no tables specified"); 32477d10d5a6Sdrh } 32487d10d5a6Sdrh } 32497d10d5a6Sdrh sqlite3DbFree(db, zTName); 32507d10d5a6Sdrh } 32517d10d5a6Sdrh } 32527d10d5a6Sdrh sqlite3ExprListDelete(db, pEList); 32537d10d5a6Sdrh p->pEList = pNew; 32547d10d5a6Sdrh } 32557d10d5a6Sdrh #if SQLITE_MAX_COLUMN 32567d10d5a6Sdrh if( p->pEList && p->pEList->nExpr>db->aLimit[SQLITE_LIMIT_COLUMN] ){ 32577d10d5a6Sdrh sqlite3ErrorMsg(pParse, "too many columns in result set"); 32587d10d5a6Sdrh } 32597d10d5a6Sdrh #endif 32607d10d5a6Sdrh return WRC_Continue; 32617d10d5a6Sdrh } 32627d10d5a6Sdrh 32637d10d5a6Sdrh /* 32647d10d5a6Sdrh ** No-op routine for the parse-tree walker. 32657d10d5a6Sdrh ** 32667d10d5a6Sdrh ** When this routine is the Walker.xExprCallback then expression trees 32677d10d5a6Sdrh ** are walked without any actions being taken at each node. Presumably, 32687d10d5a6Sdrh ** when this routine is used for Walker.xExprCallback then 32697d10d5a6Sdrh ** Walker.xSelectCallback is set to do something useful for every 32707d10d5a6Sdrh ** subquery in the parser tree. 32717d10d5a6Sdrh */ 327262c14b34Sdanielk1977 static int exprWalkNoop(Walker *NotUsed, Expr *NotUsed2){ 327362c14b34Sdanielk1977 UNUSED_PARAMETER2(NotUsed, NotUsed2); 32747d10d5a6Sdrh return WRC_Continue; 32757d10d5a6Sdrh } 32767d10d5a6Sdrh 32777d10d5a6Sdrh /* 32787d10d5a6Sdrh ** This routine "expands" a SELECT statement and all of its subqueries. 32797d10d5a6Sdrh ** For additional information on what it means to "expand" a SELECT 32807d10d5a6Sdrh ** statement, see the comment on the selectExpand worker callback above. 32817d10d5a6Sdrh ** 32827d10d5a6Sdrh ** Expanding a SELECT statement is the first step in processing a 32837d10d5a6Sdrh ** SELECT statement. The SELECT statement must be expanded before 32847d10d5a6Sdrh ** name resolution is performed. 32857d10d5a6Sdrh ** 32867d10d5a6Sdrh ** If anything goes wrong, an error message is written into pParse. 32877d10d5a6Sdrh ** The calling function can detect the problem by looking at pParse->nErr 32887d10d5a6Sdrh ** and/or pParse->db->mallocFailed. 32897d10d5a6Sdrh */ 32907d10d5a6Sdrh static void sqlite3SelectExpand(Parse *pParse, Select *pSelect){ 32917d10d5a6Sdrh Walker w; 32927d10d5a6Sdrh w.xSelectCallback = selectExpander; 32937d10d5a6Sdrh w.xExprCallback = exprWalkNoop; 32947d10d5a6Sdrh w.pParse = pParse; 32957d10d5a6Sdrh sqlite3WalkSelect(&w, pSelect); 32967d10d5a6Sdrh } 32977d10d5a6Sdrh 32987d10d5a6Sdrh 32997d10d5a6Sdrh #ifndef SQLITE_OMIT_SUBQUERY 33007d10d5a6Sdrh /* 33017d10d5a6Sdrh ** This is a Walker.xSelectCallback callback for the sqlite3SelectTypeInfo() 33027d10d5a6Sdrh ** interface. 33037d10d5a6Sdrh ** 33047d10d5a6Sdrh ** For each FROM-clause subquery, add Column.zType and Column.zColl 33057d10d5a6Sdrh ** information to the Table structure that represents the result set 33067d10d5a6Sdrh ** of that subquery. 33077d10d5a6Sdrh ** 33087d10d5a6Sdrh ** The Table structure that represents the result set was constructed 33097d10d5a6Sdrh ** by selectExpander() but the type and collation information was omitted 33107d10d5a6Sdrh ** at that point because identifiers had not yet been resolved. This 33117d10d5a6Sdrh ** routine is called after identifier resolution. 33127d10d5a6Sdrh */ 33137d10d5a6Sdrh static int selectAddSubqueryTypeInfo(Walker *pWalker, Select *p){ 33147d10d5a6Sdrh Parse *pParse; 33157d10d5a6Sdrh int i; 33167d10d5a6Sdrh SrcList *pTabList; 33177d10d5a6Sdrh struct SrcList_item *pFrom; 33187d10d5a6Sdrh 33199d8b3072Sdrh assert( p->selFlags & SF_Resolved ); 33207d10d5a6Sdrh if( (p->selFlags & SF_HasTypeInfo)==0 ){ 33217d10d5a6Sdrh p->selFlags |= SF_HasTypeInfo; 33227d10d5a6Sdrh pParse = pWalker->pParse; 33237d10d5a6Sdrh pTabList = p->pSrc; 33247d10d5a6Sdrh for(i=0, pFrom=pTabList->a; i<pTabList->nSrc; i++, pFrom++){ 33257d10d5a6Sdrh Table *pTab = pFrom->pTab; 33267d10d5a6Sdrh if( pTab && (pTab->tabFlags & TF_Ephemeral)!=0 ){ 33277d10d5a6Sdrh /* A sub-query in the FROM clause of a SELECT */ 33287d10d5a6Sdrh Select *pSel = pFrom->pSelect; 33297d10d5a6Sdrh assert( pSel ); 33307d10d5a6Sdrh while( pSel->pPrior ) pSel = pSel->pPrior; 33317d10d5a6Sdrh selectAddColumnTypeAndCollation(pParse, pTab->nCol, pTab->aCol, pSel); 33327d10d5a6Sdrh } 33337d10d5a6Sdrh } 33347d10d5a6Sdrh } 33357d10d5a6Sdrh return WRC_Continue; 33367d10d5a6Sdrh } 33377d10d5a6Sdrh #endif 33387d10d5a6Sdrh 33397d10d5a6Sdrh 33407d10d5a6Sdrh /* 33417d10d5a6Sdrh ** This routine adds datatype and collating sequence information to 33427d10d5a6Sdrh ** the Table structures of all FROM-clause subqueries in a 33437d10d5a6Sdrh ** SELECT statement. 33447d10d5a6Sdrh ** 33457d10d5a6Sdrh ** Use this routine after name resolution. 33467d10d5a6Sdrh */ 33477d10d5a6Sdrh static void sqlite3SelectAddTypeInfo(Parse *pParse, Select *pSelect){ 33487d10d5a6Sdrh #ifndef SQLITE_OMIT_SUBQUERY 33497d10d5a6Sdrh Walker w; 33507d10d5a6Sdrh w.xSelectCallback = selectAddSubqueryTypeInfo; 33517d10d5a6Sdrh w.xExprCallback = exprWalkNoop; 33527d10d5a6Sdrh w.pParse = pParse; 33537d10d5a6Sdrh sqlite3WalkSelect(&w, pSelect); 33547d10d5a6Sdrh #endif 33557d10d5a6Sdrh } 33567d10d5a6Sdrh 33577d10d5a6Sdrh 33587d10d5a6Sdrh /* 33597d10d5a6Sdrh ** This routine sets of a SELECT statement for processing. The 33607d10d5a6Sdrh ** following is accomplished: 33617d10d5a6Sdrh ** 33627d10d5a6Sdrh ** * VDBE Cursor numbers are assigned to all FROM-clause terms. 33637d10d5a6Sdrh ** * Ephemeral Table objects are created for all FROM-clause subqueries. 33647d10d5a6Sdrh ** * ON and USING clauses are shifted into WHERE statements 33657d10d5a6Sdrh ** * Wildcards "*" and "TABLE.*" in result sets are expanded. 33667d10d5a6Sdrh ** * Identifiers in expression are matched to tables. 33677d10d5a6Sdrh ** 33687d10d5a6Sdrh ** This routine acts recursively on all subqueries within the SELECT. 33697d10d5a6Sdrh */ 33707d10d5a6Sdrh void sqlite3SelectPrep( 3371b3bce662Sdanielk1977 Parse *pParse, /* The parser context */ 3372b3bce662Sdanielk1977 Select *p, /* The SELECT statement being coded. */ 33737d10d5a6Sdrh NameContext *pOuterNC /* Name context for container */ 3374b3bce662Sdanielk1977 ){ 33757d10d5a6Sdrh sqlite3 *db; 33767d10d5a6Sdrh if( p==0 ) return; 33777d10d5a6Sdrh db = pParse->db; 33787d10d5a6Sdrh if( p->selFlags & SF_HasTypeInfo ) return; 33797d10d5a6Sdrh if( pParse->nErr || db->mallocFailed ) return; 33807d10d5a6Sdrh sqlite3SelectExpand(pParse, p); 33817d10d5a6Sdrh if( pParse->nErr || db->mallocFailed ) return; 33827d10d5a6Sdrh sqlite3ResolveSelectNames(pParse, p, pOuterNC); 33837d10d5a6Sdrh if( pParse->nErr || db->mallocFailed ) return; 33847d10d5a6Sdrh sqlite3SelectAddTypeInfo(pParse, p); 3385f6bbe022Sdrh } 3386b3bce662Sdanielk1977 3387b3bce662Sdanielk1977 /* 338813449892Sdrh ** Reset the aggregate accumulator. 338913449892Sdrh ** 339013449892Sdrh ** The aggregate accumulator is a set of memory cells that hold 339113449892Sdrh ** intermediate results while calculating an aggregate. This 339213449892Sdrh ** routine simply stores NULLs in all of those memory cells. 3393b3bce662Sdanielk1977 */ 339413449892Sdrh static void resetAccumulator(Parse *pParse, AggInfo *pAggInfo){ 339513449892Sdrh Vdbe *v = pParse->pVdbe; 339613449892Sdrh int i; 3397c99130fdSdrh struct AggInfo_func *pFunc; 339813449892Sdrh if( pAggInfo->nFunc+pAggInfo->nColumn==0 ){ 339913449892Sdrh return; 340013449892Sdrh } 340113449892Sdrh for(i=0; i<pAggInfo->nColumn; i++){ 34024c583128Sdrh sqlite3VdbeAddOp2(v, OP_Null, 0, pAggInfo->aCol[i].iMem); 340313449892Sdrh } 3404c99130fdSdrh for(pFunc=pAggInfo->aFunc, i=0; i<pAggInfo->nFunc; i++, pFunc++){ 34054c583128Sdrh sqlite3VdbeAddOp2(v, OP_Null, 0, pFunc->iMem); 3406c99130fdSdrh if( pFunc->iDistinct>=0 ){ 3407c99130fdSdrh Expr *pE = pFunc->pExpr; 34086ab3a2ecSdanielk1977 assert( !ExprHasProperty(pE, EP_xIsSelect) ); 34096ab3a2ecSdanielk1977 if( pE->x.pList==0 || pE->x.pList->nExpr!=1 ){ 34100daa002cSdrh sqlite3ErrorMsg(pParse, "DISTINCT aggregates must have exactly one " 34110daa002cSdrh "argument"); 3412c99130fdSdrh pFunc->iDistinct = -1; 3413c99130fdSdrh }else{ 34146ab3a2ecSdanielk1977 KeyInfo *pKeyInfo = keyInfoFromExprList(pParse, pE->x.pList); 341566a5167bSdrh sqlite3VdbeAddOp4(v, OP_OpenEphemeral, pFunc->iDistinct, 0, 0, 341666a5167bSdrh (char*)pKeyInfo, P4_KEYINFO_HANDOFF); 3417c99130fdSdrh } 3418c99130fdSdrh } 341913449892Sdrh } 3420b3bce662Sdanielk1977 } 3421b3bce662Sdanielk1977 3422b3bce662Sdanielk1977 /* 342313449892Sdrh ** Invoke the OP_AggFinalize opcode for every aggregate function 342413449892Sdrh ** in the AggInfo structure. 3425b3bce662Sdanielk1977 */ 342613449892Sdrh static void finalizeAggFunctions(Parse *pParse, AggInfo *pAggInfo){ 342713449892Sdrh Vdbe *v = pParse->pVdbe; 342813449892Sdrh int i; 342913449892Sdrh struct AggInfo_func *pF; 343013449892Sdrh for(i=0, pF=pAggInfo->aFunc; i<pAggInfo->nFunc; i++, pF++){ 34316ab3a2ecSdanielk1977 ExprList *pList = pF->pExpr->x.pList; 34326ab3a2ecSdanielk1977 assert( !ExprHasProperty(pF->pExpr, EP_xIsSelect) ); 343366a5167bSdrh sqlite3VdbeAddOp4(v, OP_AggFinal, pF->iMem, pList ? pList->nExpr : 0, 0, 343466a5167bSdrh (void*)pF->pFunc, P4_FUNCDEF); 3435b3bce662Sdanielk1977 } 343613449892Sdrh } 343713449892Sdrh 343813449892Sdrh /* 343913449892Sdrh ** Update the accumulator memory cells for an aggregate based on 344013449892Sdrh ** the current cursor position. 344113449892Sdrh */ 344213449892Sdrh static void updateAccumulator(Parse *pParse, AggInfo *pAggInfo){ 344313449892Sdrh Vdbe *v = pParse->pVdbe; 344413449892Sdrh int i; 344513449892Sdrh struct AggInfo_func *pF; 344613449892Sdrh struct AggInfo_col *pC; 344713449892Sdrh 344813449892Sdrh pAggInfo->directMode = 1; 344913449892Sdrh for(i=0, pF=pAggInfo->aFunc; i<pAggInfo->nFunc; i++, pF++){ 345013449892Sdrh int nArg; 3451c99130fdSdrh int addrNext = 0; 345298757157Sdrh int regAgg; 34536ab3a2ecSdanielk1977 ExprList *pList = pF->pExpr->x.pList; 34546ab3a2ecSdanielk1977 assert( !ExprHasProperty(pF->pExpr, EP_xIsSelect) ); 345513449892Sdrh if( pList ){ 345613449892Sdrh nArg = pList->nExpr; 3457892d3179Sdrh regAgg = sqlite3GetTempRange(pParse, nArg); 3458191b54cbSdrh sqlite3ExprCodeExprList(pParse, pList, regAgg, 0); 345913449892Sdrh }else{ 346013449892Sdrh nArg = 0; 346198757157Sdrh regAgg = 0; 346213449892Sdrh } 3463c99130fdSdrh if( pF->iDistinct>=0 ){ 3464c99130fdSdrh addrNext = sqlite3VdbeMakeLabel(v); 3465c99130fdSdrh assert( nArg==1 ); 34662dcef11bSdrh codeDistinct(pParse, pF->iDistinct, addrNext, 1, regAgg); 3467c99130fdSdrh } 3468e82f5d04Sdrh if( pF->pFunc->flags & SQLITE_FUNC_NEEDCOLL ){ 346913449892Sdrh CollSeq *pColl = 0; 347013449892Sdrh struct ExprList_item *pItem; 347113449892Sdrh int j; 3472e82f5d04Sdrh assert( pList!=0 ); /* pList!=0 if pF->pFunc has NEEDCOLL */ 347343617e9aSdrh for(j=0, pItem=pList->a; !pColl && j<nArg; j++, pItem++){ 347413449892Sdrh pColl = sqlite3ExprCollSeq(pParse, pItem->pExpr); 347513449892Sdrh } 347613449892Sdrh if( !pColl ){ 347713449892Sdrh pColl = pParse->db->pDfltColl; 347813449892Sdrh } 347966a5167bSdrh sqlite3VdbeAddOp4(v, OP_CollSeq, 0, 0, 0, (char *)pColl, P4_COLLSEQ); 348013449892Sdrh } 348198757157Sdrh sqlite3VdbeAddOp4(v, OP_AggStep, 0, regAgg, pF->iMem, 348266a5167bSdrh (void*)pF->pFunc, P4_FUNCDEF); 3483ea678832Sdrh sqlite3VdbeChangeP5(v, (u8)nArg); 3484892d3179Sdrh sqlite3ReleaseTempRange(pParse, regAgg, nArg); 3485da250ea5Sdrh sqlite3ExprCacheAffinityChange(pParse, regAgg, nArg); 3486c99130fdSdrh if( addrNext ){ 3487c99130fdSdrh sqlite3VdbeResolveLabel(v, addrNext); 3488c99130fdSdrh } 348913449892Sdrh } 349013449892Sdrh for(i=0, pC=pAggInfo->aCol; i<pAggInfo->nAccumulator; i++, pC++){ 3491389a1adbSdrh sqlite3ExprCode(pParse, pC->pExpr, pC->iMem); 349213449892Sdrh } 349313449892Sdrh pAggInfo->directMode = 0; 349413449892Sdrh } 349513449892Sdrh 3496b3bce662Sdanielk1977 /* 34977d10d5a6Sdrh ** Generate code for the SELECT statement given in the p argument. 34989bb61fe7Sdrh ** 3499fef5208cSdrh ** The results are distributed in various ways depending on the 35006c8c8ce0Sdanielk1977 ** contents of the SelectDest structure pointed to by argument pDest 35016c8c8ce0Sdanielk1977 ** as follows: 3502fef5208cSdrh ** 35036c8c8ce0Sdanielk1977 ** pDest->eDest Result 3504fef5208cSdrh ** ------------ ------------------------------------------- 35057d10d5a6Sdrh ** SRT_Output Generate a row of output (using the OP_ResultRow 35067d10d5a6Sdrh ** opcode) for each row in the result set. 3507fef5208cSdrh ** 35087d10d5a6Sdrh ** SRT_Mem Only valid if the result is a single column. 35097d10d5a6Sdrh ** Store the first column of the first result row 35107d10d5a6Sdrh ** in register pDest->iParm then abandon the rest 35117d10d5a6Sdrh ** of the query. This destination implies "LIMIT 1". 3512fef5208cSdrh ** 35137d10d5a6Sdrh ** SRT_Set The result must be a single column. Store each 35147d10d5a6Sdrh ** row of result as the key in table pDest->iParm. 35157d10d5a6Sdrh ** Apply the affinity pDest->affinity before storing 35167d10d5a6Sdrh ** results. Used to implement "IN (SELECT ...)". 3517fef5208cSdrh ** 35186c8c8ce0Sdanielk1977 ** SRT_Union Store results as a key in a temporary table pDest->iParm. 351982c3d636Sdrh ** 35206c8c8ce0Sdanielk1977 ** SRT_Except Remove results from the temporary table pDest->iParm. 3521c4a3c779Sdrh ** 35227d10d5a6Sdrh ** SRT_Table Store results in temporary table pDest->iParm. 35237d10d5a6Sdrh ** This is like SRT_EphemTab except that the table 35247d10d5a6Sdrh ** is assumed to already be open. 35259bb61fe7Sdrh ** 35266c8c8ce0Sdanielk1977 ** SRT_EphemTab Create an temporary table pDest->iParm and store 35276c8c8ce0Sdanielk1977 ** the result there. The cursor is left open after 35287d10d5a6Sdrh ** returning. This is like SRT_Table except that 35297d10d5a6Sdrh ** this destination uses OP_OpenEphemeral to create 35307d10d5a6Sdrh ** the table first. 35316c8c8ce0Sdanielk1977 ** 35327d10d5a6Sdrh ** SRT_Coroutine Generate a co-routine that returns a new row of 35337d10d5a6Sdrh ** results each time it is invoked. The entry point 35347d10d5a6Sdrh ** of the co-routine is stored in register pDest->iParm. 35356c8c8ce0Sdanielk1977 ** 35366c8c8ce0Sdanielk1977 ** SRT_Exists Store a 1 in memory cell pDest->iParm if the result 35376c8c8ce0Sdanielk1977 ** set is not empty. 35386c8c8ce0Sdanielk1977 ** 35397d10d5a6Sdrh ** SRT_Discard Throw the results away. This is used by SELECT 35407d10d5a6Sdrh ** statements within triggers whose only purpose is 35417d10d5a6Sdrh ** the side-effects of functions. 3542e78e8284Sdrh ** 35439bb61fe7Sdrh ** This routine returns the number of errors. If any errors are 35449bb61fe7Sdrh ** encountered, then an appropriate error message is left in 35459bb61fe7Sdrh ** pParse->zErrMsg. 35469bb61fe7Sdrh ** 35479bb61fe7Sdrh ** This routine does NOT free the Select structure passed in. The 35489bb61fe7Sdrh ** calling function needs to do that. 35499bb61fe7Sdrh */ 35504adee20fSdanielk1977 int sqlite3Select( 3551cce7d176Sdrh Parse *pParse, /* The parser context */ 35529bb61fe7Sdrh Select *p, /* The SELECT statement being coded. */ 35537d10d5a6Sdrh SelectDest *pDest /* What to do with the query results */ 3554cce7d176Sdrh ){ 355513449892Sdrh int i, j; /* Loop counters */ 355613449892Sdrh WhereInfo *pWInfo; /* Return from sqlite3WhereBegin() */ 355713449892Sdrh Vdbe *v; /* The virtual machine under construction */ 3558b3bce662Sdanielk1977 int isAgg; /* True for select lists like "count(*)" */ 3559a2e00042Sdrh ExprList *pEList; /* List of columns to extract. */ 3560ad3cab52Sdrh SrcList *pTabList; /* List of tables to select from */ 35619bb61fe7Sdrh Expr *pWhere; /* The WHERE clause. May be NULL */ 35629bb61fe7Sdrh ExprList *pOrderBy; /* The ORDER BY clause. May be NULL */ 35632282792aSdrh ExprList *pGroupBy; /* The GROUP BY clause. May be NULL */ 35642282792aSdrh Expr *pHaving; /* The HAVING clause. May be NULL */ 356519a775c2Sdrh int isDistinct; /* True if the DISTINCT keyword is present */ 356619a775c2Sdrh int distinct; /* Table to use for the distinct set */ 35671d83f052Sdrh int rc = 1; /* Value to return from this function */ 3568b9bb7c18Sdrh int addrSortIndex; /* Address of an OP_OpenEphemeral instruction */ 356913449892Sdrh AggInfo sAggInfo; /* Information used by aggregate queries */ 3570ec7429aeSdrh int iEnd; /* Address of the end of the query */ 357117435752Sdrh sqlite3 *db; /* The database connection */ 35729bb61fe7Sdrh 357317435752Sdrh db = pParse->db; 357417435752Sdrh if( p==0 || db->mallocFailed || pParse->nErr ){ 35756f7adc8aSdrh return 1; 35766f7adc8aSdrh } 35774adee20fSdanielk1977 if( sqlite3AuthCheck(pParse, SQLITE_SELECT, 0, 0, 0) ) return 1; 357813449892Sdrh memset(&sAggInfo, 0, sizeof(sAggInfo)); 3579daffd0e5Sdrh 35809a99334dSdrh pOrderBy = p->pOrderBy; 35816c8c8ce0Sdanielk1977 if( IgnorableOrderby(pDest) ){ 35829a99334dSdrh p->pOrderBy = 0; 35839ed1dfa8Sdanielk1977 35849ed1dfa8Sdanielk1977 /* In these cases the DISTINCT operator makes no difference to the 35859ed1dfa8Sdanielk1977 ** results, so remove it if it were specified. 35869ed1dfa8Sdanielk1977 */ 35879ed1dfa8Sdanielk1977 assert(pDest->eDest==SRT_Exists || pDest->eDest==SRT_Union || 35889ed1dfa8Sdanielk1977 pDest->eDest==SRT_Except || pDest->eDest==SRT_Discard); 35897d10d5a6Sdrh p->selFlags &= ~SF_Distinct; 35909a99334dSdrh } 35917d10d5a6Sdrh sqlite3SelectPrep(pParse, p, 0); 3592b27b7f5dSdrh pTabList = p->pSrc; 3593b27b7f5dSdrh pEList = p->pEList; 3594956f4319Sdanielk1977 if( pParse->nErr || db->mallocFailed ){ 35959a99334dSdrh goto select_end; 35969a99334dSdrh } 35979a99334dSdrh p->pOrderBy = pOrderBy; 35987d10d5a6Sdrh isAgg = (p->selFlags & SF_Aggregate)!=0; 3599b3bce662Sdanielk1977 if( pEList==0 ) goto select_end; 36009bb61fe7Sdrh 36019bb61fe7Sdrh /* 36029bb61fe7Sdrh ** Do not even attempt to generate any code if we have already seen 36039bb61fe7Sdrh ** errors before this routine starts. 36049bb61fe7Sdrh */ 36051d83f052Sdrh if( pParse->nErr>0 ) goto select_end; 3606cce7d176Sdrh 3607c926afbcSdrh /* ORDER BY is ignored for some destinations. 36082282792aSdrh */ 36096c8c8ce0Sdanielk1977 if( IgnorableOrderby(pDest) ){ 3610acd4c695Sdrh pOrderBy = 0; 36112282792aSdrh } 36122282792aSdrh 3613d820cb1bSdrh /* Begin generating code. 3614d820cb1bSdrh */ 36154adee20fSdanielk1977 v = sqlite3GetVdbe(pParse); 3616d820cb1bSdrh if( v==0 ) goto select_end; 3617d820cb1bSdrh 3618d820cb1bSdrh /* Generate code for all sub-queries in the FROM clause 3619d820cb1bSdrh */ 362051522cd3Sdrh #if !defined(SQLITE_OMIT_SUBQUERY) || !defined(SQLITE_OMIT_VIEW) 3621f23329a2Sdanielk1977 for(i=0; !p->pPrior && i<pTabList->nSrc; i++){ 362213449892Sdrh struct SrcList_item *pItem = &pTabList->a[i]; 36231013c932Sdrh SelectDest dest; 3624daf79acbSdanielk1977 Select *pSub = pItem->pSelect; 3625f23329a2Sdanielk1977 int isAggSub; 3626c31c2eb8Sdrh 3627daf79acbSdanielk1977 if( pSub==0 || pItem->isPopulated ) continue; 3628daf79acbSdanielk1977 3629fc976065Sdanielk1977 /* Increment Parse.nHeight by the height of the largest expression 3630fc976065Sdanielk1977 ** tree refered to by this, the parent select. The child select 3631fc976065Sdanielk1977 ** may contain expression trees of at most 3632fc976065Sdanielk1977 ** (SQLITE_MAX_EXPR_DEPTH-Parse.nHeight) height. This is a bit 3633fc976065Sdanielk1977 ** more conservative than necessary, but much easier than enforcing 3634fc976065Sdanielk1977 ** an exact limit. 3635fc976065Sdanielk1977 */ 3636fc976065Sdanielk1977 pParse->nHeight += sqlite3SelectExprHeight(p); 3637daf79acbSdanielk1977 3638daf79acbSdanielk1977 /* Check to see if the subquery can be absorbed into the parent. */ 36397d10d5a6Sdrh isAggSub = (pSub->selFlags & SF_Aggregate)!=0; 3640524cc21eSdanielk1977 if( flattenSubquery(pParse, p, i, isAgg, isAggSub) ){ 3641f23329a2Sdanielk1977 if( isAggSub ){ 36427d10d5a6Sdrh isAgg = 1; 36437d10d5a6Sdrh p->selFlags |= SF_Aggregate; 3644daf79acbSdanielk1977 } 3645daf79acbSdanielk1977 i = -1; 3646daf79acbSdanielk1977 }else{ 36471013c932Sdrh sqlite3SelectDestInit(&dest, SRT_EphemTab, pItem->iCursor); 36487d10d5a6Sdrh assert( pItem->isPopulated==0 ); 36497d10d5a6Sdrh sqlite3Select(pParse, pSub, &dest); 36507d10d5a6Sdrh pItem->isPopulated = 1; 3651daf79acbSdanielk1977 } 3652524cc21eSdanielk1977 if( pParse->nErr || db->mallocFailed ){ 3653cfa063b3Sdrh goto select_end; 3654cfa063b3Sdrh } 3655fc976065Sdanielk1977 pParse->nHeight -= sqlite3SelectExprHeight(p); 3656832508b7Sdrh pTabList = p->pSrc; 36576c8c8ce0Sdanielk1977 if( !IgnorableOrderby(pDest) ){ 3658832508b7Sdrh pOrderBy = p->pOrderBy; 3659acd4c695Sdrh } 3660daf79acbSdanielk1977 } 3661daf79acbSdanielk1977 pEList = p->pEList; 3662daf79acbSdanielk1977 #endif 3663daf79acbSdanielk1977 pWhere = p->pWhere; 3664832508b7Sdrh pGroupBy = p->pGroupBy; 3665832508b7Sdrh pHaving = p->pHaving; 36667d10d5a6Sdrh isDistinct = (p->selFlags & SF_Distinct)!=0; 3667832508b7Sdrh 3668f23329a2Sdanielk1977 #ifndef SQLITE_OMIT_COMPOUND_SELECT 3669f23329a2Sdanielk1977 /* If there is are a sequence of queries, do the earlier ones first. 3670f23329a2Sdanielk1977 */ 3671f23329a2Sdanielk1977 if( p->pPrior ){ 3672f23329a2Sdanielk1977 if( p->pRightmost==0 ){ 3673f23329a2Sdanielk1977 Select *pLoop, *pRight = 0; 3674f23329a2Sdanielk1977 int cnt = 0; 3675f23329a2Sdanielk1977 int mxSelect; 3676f23329a2Sdanielk1977 for(pLoop=p; pLoop; pLoop=pLoop->pPrior, cnt++){ 3677f23329a2Sdanielk1977 pLoop->pRightmost = p; 3678f23329a2Sdanielk1977 pLoop->pNext = pRight; 3679f23329a2Sdanielk1977 pRight = pLoop; 3680f23329a2Sdanielk1977 } 3681f23329a2Sdanielk1977 mxSelect = db->aLimit[SQLITE_LIMIT_COMPOUND_SELECT]; 3682f23329a2Sdanielk1977 if( mxSelect && cnt>mxSelect ){ 3683f23329a2Sdanielk1977 sqlite3ErrorMsg(pParse, "too many terms in compound SELECT"); 3684f23329a2Sdanielk1977 return 1; 3685f23329a2Sdanielk1977 } 3686f23329a2Sdanielk1977 } 3687a9671a22Sdrh return multiSelect(pParse, p, pDest); 3688f23329a2Sdanielk1977 } 3689f23329a2Sdanielk1977 #endif 3690f23329a2Sdanielk1977 36914914cf92Sdanielk1977 /* If writing to memory or generating a set 36924914cf92Sdanielk1977 ** only a single column may be output. 36934914cf92Sdanielk1977 */ 36944914cf92Sdanielk1977 #ifndef SQLITE_OMIT_SUBQUERY 36954914cf92Sdanielk1977 if( checkForMultiColumnSelectError(pParse, pDest, pEList->nExpr) ){ 36964914cf92Sdanielk1977 goto select_end; 36974914cf92Sdanielk1977 } 36984914cf92Sdanielk1977 #endif 36994914cf92Sdanielk1977 37000318d441Sdanielk1977 /* If possible, rewrite the query to use GROUP BY instead of DISTINCT. 37017d10d5a6Sdrh ** GROUP BY might use an index, DISTINCT never does. 37023c4809a2Sdanielk1977 */ 37037d10d5a6Sdrh if( (p->selFlags & (SF_Distinct|SF_Aggregate))==SF_Distinct && !p->pGroupBy ){ 37046ab3a2ecSdanielk1977 p->pGroupBy = sqlite3ExprListDup(db, p->pEList, 0); 37053c4809a2Sdanielk1977 pGroupBy = p->pGroupBy; 37067d10d5a6Sdrh p->selFlags &= ~SF_Distinct; 37073c4809a2Sdanielk1977 isDistinct = 0; 37083c4809a2Sdanielk1977 } 37093c4809a2Sdanielk1977 37108b4c40d8Sdrh /* If there is an ORDER BY clause, then this sorting 37118b4c40d8Sdrh ** index might end up being unused if the data can be 37129d2985c7Sdrh ** extracted in pre-sorted order. If that is the case, then the 3713b9bb7c18Sdrh ** OP_OpenEphemeral instruction will be changed to an OP_Noop once 37149d2985c7Sdrh ** we figure out that the sorting index is not needed. The addrSortIndex 37159d2985c7Sdrh ** variable is used to facilitate that change. 37167cedc8d4Sdanielk1977 */ 37177cedc8d4Sdanielk1977 if( pOrderBy ){ 37180342b1f5Sdrh KeyInfo *pKeyInfo; 37190342b1f5Sdrh pKeyInfo = keyInfoFromExprList(pParse, pOrderBy); 37209d2985c7Sdrh pOrderBy->iECursor = pParse->nTab++; 3721b9bb7c18Sdrh p->addrOpenEphm[2] = addrSortIndex = 372266a5167bSdrh sqlite3VdbeAddOp4(v, OP_OpenEphemeral, 372366a5167bSdrh pOrderBy->iECursor, pOrderBy->nExpr+2, 0, 372466a5167bSdrh (char*)pKeyInfo, P4_KEYINFO_HANDOFF); 37259d2985c7Sdrh }else{ 37269d2985c7Sdrh addrSortIndex = -1; 37277cedc8d4Sdanielk1977 } 37287cedc8d4Sdanielk1977 37292d0794e3Sdrh /* If the output is destined for a temporary table, open that table. 37302d0794e3Sdrh */ 37316c8c8ce0Sdanielk1977 if( pDest->eDest==SRT_EphemTab ){ 373266a5167bSdrh sqlite3VdbeAddOp2(v, OP_OpenEphemeral, pDest->iParm, pEList->nExpr); 37332d0794e3Sdrh } 37342d0794e3Sdrh 3735f42bacc2Sdrh /* Set the limiter. 3736f42bacc2Sdrh */ 3737f42bacc2Sdrh iEnd = sqlite3VdbeMakeLabel(v); 3738f42bacc2Sdrh computeLimitRegisters(pParse, p, iEnd); 3739f42bacc2Sdrh 3740dece1a84Sdrh /* Open a virtual index to use for the distinct set. 3741cce7d176Sdrh */ 374219a775c2Sdrh if( isDistinct ){ 37430342b1f5Sdrh KeyInfo *pKeyInfo; 37443c4809a2Sdanielk1977 assert( isAgg || pGroupBy ); 3745832508b7Sdrh distinct = pParse->nTab++; 37460342b1f5Sdrh pKeyInfo = keyInfoFromExprList(pParse, p->pEList); 374766a5167bSdrh sqlite3VdbeAddOp4(v, OP_OpenEphemeral, distinct, 0, 0, 374866a5167bSdrh (char*)pKeyInfo, P4_KEYINFO_HANDOFF); 3749832508b7Sdrh }else{ 3750832508b7Sdrh distinct = -1; 3751efb7251dSdrh } 3752832508b7Sdrh 375313449892Sdrh /* Aggregate and non-aggregate queries are handled differently */ 375413449892Sdrh if( !isAgg && pGroupBy==0 ){ 375513449892Sdrh /* This case is for non-aggregate queries 375613449892Sdrh ** Begin the database scan 3757832508b7Sdrh */ 375823d04d5aSdrh pWInfo = sqlite3WhereBegin(pParse, pTabList, pWhere, &pOrderBy, 0, 0); 37591d83f052Sdrh if( pWInfo==0 ) goto select_end; 3760cce7d176Sdrh 3761b9bb7c18Sdrh /* If sorting index that was created by a prior OP_OpenEphemeral 3762b9bb7c18Sdrh ** instruction ended up not being needed, then change the OP_OpenEphemeral 37639d2985c7Sdrh ** into an OP_Noop. 37649d2985c7Sdrh */ 37659d2985c7Sdrh if( addrSortIndex>=0 && pOrderBy==0 ){ 3766f8875400Sdrh sqlite3VdbeChangeToNoop(v, addrSortIndex, 1); 3767b9bb7c18Sdrh p->addrOpenEphm[2] = -1; 37689d2985c7Sdrh } 37699d2985c7Sdrh 377013449892Sdrh /* Use the standard inner loop 3771cce7d176Sdrh */ 37723c4809a2Sdanielk1977 assert(!isDistinct); 3773d2b3e23bSdrh selectInnerLoop(pParse, p, pEList, 0, 0, pOrderBy, -1, pDest, 3774a9671a22Sdrh pWInfo->iContinue, pWInfo->iBreak); 37752282792aSdrh 3776cce7d176Sdrh /* End the database scan loop. 3777cce7d176Sdrh */ 37784adee20fSdanielk1977 sqlite3WhereEnd(pWInfo); 377913449892Sdrh }else{ 378013449892Sdrh /* This is the processing for aggregate queries */ 378113449892Sdrh NameContext sNC; /* Name context for processing aggregate information */ 378213449892Sdrh int iAMem; /* First Mem address for storing current GROUP BY */ 378313449892Sdrh int iBMem; /* First Mem address for previous GROUP BY */ 378413449892Sdrh int iUseFlag; /* Mem address holding flag indicating that at least 378513449892Sdrh ** one row of the input to the aggregator has been 378613449892Sdrh ** processed */ 378713449892Sdrh int iAbortFlag; /* Mem address which causes query abort if positive */ 378813449892Sdrh int groupBySort; /* Rows come from source in GROUP BY order */ 3789d176611bSdrh int addrEnd; /* End of processing for this SELECT */ 3790d176611bSdrh 3791d176611bSdrh /* Remove any and all aliases between the result set and the 3792d176611bSdrh ** GROUP BY clause. 3793d176611bSdrh */ 3794d176611bSdrh if( pGroupBy ){ 3795dc5ea5c7Sdrh int k; /* Loop counter */ 3796d176611bSdrh struct ExprList_item *pItem; /* For looping over expression in a list */ 3797d176611bSdrh 3798dc5ea5c7Sdrh for(k=p->pEList->nExpr, pItem=p->pEList->a; k>0; k--, pItem++){ 3799d176611bSdrh pItem->iAlias = 0; 3800d176611bSdrh } 3801dc5ea5c7Sdrh for(k=pGroupBy->nExpr, pItem=pGroupBy->a; k>0; k--, pItem++){ 3802d176611bSdrh pItem->iAlias = 0; 3803d176611bSdrh } 3804d176611bSdrh } 3805cce7d176Sdrh 380613449892Sdrh 3807d176611bSdrh /* Create a label to jump to when we want to abort the query */ 380813449892Sdrh addrEnd = sqlite3VdbeMakeLabel(v); 380913449892Sdrh 381013449892Sdrh /* Convert TK_COLUMN nodes into TK_AGG_COLUMN and make entries in 381113449892Sdrh ** sAggInfo for all TK_AGG_FUNCTION nodes in expressions of the 381213449892Sdrh ** SELECT statement. 38132282792aSdrh */ 381413449892Sdrh memset(&sNC, 0, sizeof(sNC)); 381513449892Sdrh sNC.pParse = pParse; 381613449892Sdrh sNC.pSrcList = pTabList; 381713449892Sdrh sNC.pAggInfo = &sAggInfo; 381813449892Sdrh sAggInfo.nSortingColumn = pGroupBy ? pGroupBy->nExpr+1 : 0; 38199d2985c7Sdrh sAggInfo.pGroupBy = pGroupBy; 3820d2b3e23bSdrh sqlite3ExprAnalyzeAggList(&sNC, pEList); 3821d2b3e23bSdrh sqlite3ExprAnalyzeAggList(&sNC, pOrderBy); 3822d2b3e23bSdrh if( pHaving ){ 3823d2b3e23bSdrh sqlite3ExprAnalyzeAggregates(&sNC, pHaving); 382413449892Sdrh } 382513449892Sdrh sAggInfo.nAccumulator = sAggInfo.nColumn; 382613449892Sdrh for(i=0; i<sAggInfo.nFunc; i++){ 38276ab3a2ecSdanielk1977 assert( !ExprHasProperty(sAggInfo.aFunc[i].pExpr, EP_xIsSelect) ); 38286ab3a2ecSdanielk1977 sqlite3ExprAnalyzeAggList(&sNC, sAggInfo.aFunc[i].pExpr->x.pList); 382913449892Sdrh } 383017435752Sdrh if( db->mallocFailed ) goto select_end; 383113449892Sdrh 383213449892Sdrh /* Processing for aggregates with GROUP BY is very different and 38333c4809a2Sdanielk1977 ** much more complex than aggregates without a GROUP BY. 383413449892Sdrh */ 383513449892Sdrh if( pGroupBy ){ 383613449892Sdrh KeyInfo *pKeyInfo; /* Keying information for the group by clause */ 3837d176611bSdrh int j1; /* A-vs-B comparision jump */ 3838d176611bSdrh int addrOutputRow; /* Start of subroutine that outputs a result row */ 3839d176611bSdrh int regOutputRow; /* Return address register for output subroutine */ 3840d176611bSdrh int addrSetAbort; /* Set the abort flag and return */ 3841d176611bSdrh int addrTopOfLoop; /* Top of the input loop */ 3842d176611bSdrh int addrSortingIdx; /* The OP_OpenEphemeral for the sorting index */ 3843d176611bSdrh int addrReset; /* Subroutine for resetting the accumulator */ 3844d176611bSdrh int regReset; /* Return address register for reset subroutine */ 384513449892Sdrh 384613449892Sdrh /* If there is a GROUP BY clause we might need a sorting index to 384713449892Sdrh ** implement it. Allocate that sorting index now. If it turns out 3848b9bb7c18Sdrh ** that we do not need it after all, the OpenEphemeral instruction 384913449892Sdrh ** will be converted into a Noop. 385013449892Sdrh */ 385113449892Sdrh sAggInfo.sortingIdx = pParse->nTab++; 385213449892Sdrh pKeyInfo = keyInfoFromExprList(pParse, pGroupBy); 3853cd3e8f7cSdanielk1977 addrSortingIdx = sqlite3VdbeAddOp4(v, OP_OpenEphemeral, 3854cd3e8f7cSdanielk1977 sAggInfo.sortingIdx, sAggInfo.nSortingColumn, 3855cd3e8f7cSdanielk1977 0, (char*)pKeyInfo, P4_KEYINFO_HANDOFF); 385613449892Sdrh 385713449892Sdrh /* Initialize memory locations used by GROUP BY aggregate processing 385813449892Sdrh */ 38590a07c107Sdrh iUseFlag = ++pParse->nMem; 38600a07c107Sdrh iAbortFlag = ++pParse->nMem; 3861d176611bSdrh regOutputRow = ++pParse->nMem; 3862d176611bSdrh addrOutputRow = sqlite3VdbeMakeLabel(v); 3863d176611bSdrh regReset = ++pParse->nMem; 3864d176611bSdrh addrReset = sqlite3VdbeMakeLabel(v); 38650a07c107Sdrh iAMem = pParse->nMem + 1; 386613449892Sdrh pParse->nMem += pGroupBy->nExpr; 38670a07c107Sdrh iBMem = pParse->nMem + 1; 386813449892Sdrh pParse->nMem += pGroupBy->nExpr; 38694c583128Sdrh sqlite3VdbeAddOp2(v, OP_Integer, 0, iAbortFlag); 3870d4e70ebdSdrh VdbeComment((v, "clear abort flag")); 38714c583128Sdrh sqlite3VdbeAddOp2(v, OP_Integer, 0, iUseFlag); 3872d4e70ebdSdrh VdbeComment((v, "indicate accumulator empty")); 3873e313382eSdrh 387413449892Sdrh /* Begin a loop that will extract all source rows in GROUP BY order. 387513449892Sdrh ** This might involve two separate loops with an OP_Sort in between, or 387613449892Sdrh ** it might be a single loop that uses an index to extract information 387713449892Sdrh ** in the right order to begin with. 387813449892Sdrh */ 38792eb95377Sdrh sqlite3VdbeAddOp2(v, OP_Gosub, regReset, addrReset); 388023d04d5aSdrh pWInfo = sqlite3WhereBegin(pParse, pTabList, pWhere, &pGroupBy, 0, 0); 38815360ad34Sdrh if( pWInfo==0 ) goto select_end; 388213449892Sdrh if( pGroupBy==0 ){ 388313449892Sdrh /* The optimizer is able to deliver rows in group by order so 3884b9bb7c18Sdrh ** we do not have to sort. The OP_OpenEphemeral table will be 388513449892Sdrh ** cancelled later because we still need to use the pKeyInfo 388613449892Sdrh */ 388713449892Sdrh pGroupBy = p->pGroupBy; 388813449892Sdrh groupBySort = 0; 388913449892Sdrh }else{ 389013449892Sdrh /* Rows are coming out in undetermined order. We have to push 389113449892Sdrh ** each row into a sorting index, terminate the first loop, 389213449892Sdrh ** then loop over the sorting index in order to get the output 389313449892Sdrh ** in sorted order 389413449892Sdrh */ 3895892d3179Sdrh int regBase; 3896892d3179Sdrh int regRecord; 3897892d3179Sdrh int nCol; 3898892d3179Sdrh int nGroupBy; 3899892d3179Sdrh 390013449892Sdrh groupBySort = 1; 3901892d3179Sdrh nGroupBy = pGroupBy->nExpr; 3902892d3179Sdrh nCol = nGroupBy + 1; 3903892d3179Sdrh j = nGroupBy+1; 390413449892Sdrh for(i=0; i<sAggInfo.nColumn; i++){ 3905892d3179Sdrh if( sAggInfo.aCol[i].iSorterColumn>=j ){ 3906892d3179Sdrh nCol++; 390713449892Sdrh j++; 390813449892Sdrh } 3909892d3179Sdrh } 3910892d3179Sdrh regBase = sqlite3GetTempRange(pParse, nCol); 3911191b54cbSdrh sqlite3ExprCodeExprList(pParse, pGroupBy, regBase, 0); 3912892d3179Sdrh sqlite3VdbeAddOp2(v, OP_Sequence, sAggInfo.sortingIdx,regBase+nGroupBy); 3913892d3179Sdrh j = nGroupBy+1; 3914892d3179Sdrh for(i=0; i<sAggInfo.nColumn; i++){ 3915892d3179Sdrh struct AggInfo_col *pCol = &sAggInfo.aCol[i]; 3916892d3179Sdrh if( pCol->iSorterColumn>=j ){ 3917e55cbd72Sdrh int r1 = j + regBase; 39186a012f04Sdrh int r2; 3919701bb3b4Sdrh 39206a012f04Sdrh r2 = sqlite3ExprCodeGetColumn(pParse, 39216a012f04Sdrh pCol->pTab, pCol->iColumn, pCol->iTable, r1, 0); 39226a012f04Sdrh if( r1!=r2 ){ 39236a012f04Sdrh sqlite3VdbeAddOp2(v, OP_SCopy, r2, r1); 39246a012f04Sdrh } 39256a012f04Sdrh j++; 3926892d3179Sdrh } 3927892d3179Sdrh } 3928892d3179Sdrh regRecord = sqlite3GetTempReg(pParse); 39291db639ceSdrh sqlite3VdbeAddOp3(v, OP_MakeRecord, regBase, nCol, regRecord); 3930892d3179Sdrh sqlite3VdbeAddOp2(v, OP_IdxInsert, sAggInfo.sortingIdx, regRecord); 3931892d3179Sdrh sqlite3ReleaseTempReg(pParse, regRecord); 3932892d3179Sdrh sqlite3ReleaseTempRange(pParse, regBase, nCol); 393313449892Sdrh sqlite3WhereEnd(pWInfo); 393466a5167bSdrh sqlite3VdbeAddOp2(v, OP_Sort, sAggInfo.sortingIdx, addrEnd); 3935d4e70ebdSdrh VdbeComment((v, "GROUP BY sort")); 393613449892Sdrh sAggInfo.useSortingIdx = 1; 393713449892Sdrh } 393813449892Sdrh 393913449892Sdrh /* Evaluate the current GROUP BY terms and store in b0, b1, b2... 394013449892Sdrh ** (b0 is memory location iBMem+0, b1 is iBMem+1, and so forth) 394113449892Sdrh ** Then compare the current GROUP BY terms against the GROUP BY terms 394213449892Sdrh ** from the previous row currently stored in a0, a1, a2... 394313449892Sdrh */ 394413449892Sdrh addrTopOfLoop = sqlite3VdbeCurrentAddr(v); 394513449892Sdrh for(j=0; j<pGroupBy->nExpr; j++){ 394613449892Sdrh if( groupBySort ){ 39472dcef11bSdrh sqlite3VdbeAddOp3(v, OP_Column, sAggInfo.sortingIdx, j, iBMem+j); 394813449892Sdrh }else{ 394913449892Sdrh sAggInfo.directMode = 1; 39502dcef11bSdrh sqlite3ExprCode(pParse, pGroupBy->a[j].pExpr, iBMem+j); 395113449892Sdrh } 395213449892Sdrh } 395316ee60ffSdrh sqlite3VdbeAddOp4(v, OP_Compare, iAMem, iBMem, pGroupBy->nExpr, 3954b21e7c70Sdrh (char*)pKeyInfo, P4_KEYINFO); 395516ee60ffSdrh j1 = sqlite3VdbeCurrentAddr(v); 395616ee60ffSdrh sqlite3VdbeAddOp3(v, OP_Jump, j1+1, 0, j1+1); 395713449892Sdrh 395813449892Sdrh /* Generate code that runs whenever the GROUP BY changes. 3959e00ee6ebSdrh ** Changes in the GROUP BY are detected by the previous code 396013449892Sdrh ** block. If there were no changes, this block is skipped. 396113449892Sdrh ** 396213449892Sdrh ** This code copies current group by terms in b0,b1,b2,... 396313449892Sdrh ** over to a0,a1,a2. It then calls the output subroutine 396413449892Sdrh ** and resets the aggregate accumulator registers in preparation 396513449892Sdrh ** for the next GROUP BY batch. 396613449892Sdrh */ 3967b21e7c70Sdrh sqlite3ExprCodeMove(pParse, iBMem, iAMem, pGroupBy->nExpr); 39682eb95377Sdrh sqlite3VdbeAddOp2(v, OP_Gosub, regOutputRow, addrOutputRow); 3969d4e70ebdSdrh VdbeComment((v, "output one row")); 39703c84ddffSdrh sqlite3VdbeAddOp2(v, OP_IfPos, iAbortFlag, addrEnd); 3971d4e70ebdSdrh VdbeComment((v, "check abort flag")); 39722eb95377Sdrh sqlite3VdbeAddOp2(v, OP_Gosub, regReset, addrReset); 3973d4e70ebdSdrh VdbeComment((v, "reset accumulator")); 397413449892Sdrh 397513449892Sdrh /* Update the aggregate accumulators based on the content of 397613449892Sdrh ** the current row 397713449892Sdrh */ 397816ee60ffSdrh sqlite3VdbeJumpHere(v, j1); 397913449892Sdrh updateAccumulator(pParse, &sAggInfo); 39804c583128Sdrh sqlite3VdbeAddOp2(v, OP_Integer, 1, iUseFlag); 3981d4e70ebdSdrh VdbeComment((v, "indicate data in accumulator")); 398213449892Sdrh 398313449892Sdrh /* End of the loop 398413449892Sdrh */ 398513449892Sdrh if( groupBySort ){ 398666a5167bSdrh sqlite3VdbeAddOp2(v, OP_Next, sAggInfo.sortingIdx, addrTopOfLoop); 398713449892Sdrh }else{ 398813449892Sdrh sqlite3WhereEnd(pWInfo); 3989f8875400Sdrh sqlite3VdbeChangeToNoop(v, addrSortingIdx, 1); 399013449892Sdrh } 399113449892Sdrh 399213449892Sdrh /* Output the final row of result 399313449892Sdrh */ 39942eb95377Sdrh sqlite3VdbeAddOp2(v, OP_Gosub, regOutputRow, addrOutputRow); 3995d4e70ebdSdrh VdbeComment((v, "output final row")); 399613449892Sdrh 3997d176611bSdrh /* Jump over the subroutines 3998d176611bSdrh */ 3999d176611bSdrh sqlite3VdbeAddOp2(v, OP_Goto, 0, addrEnd); 4000d176611bSdrh 4001d176611bSdrh /* Generate a subroutine that outputs a single row of the result 4002d176611bSdrh ** set. This subroutine first looks at the iUseFlag. If iUseFlag 4003d176611bSdrh ** is less than or equal to zero, the subroutine is a no-op. If 4004d176611bSdrh ** the processing calls for the query to abort, this subroutine 4005d176611bSdrh ** increments the iAbortFlag memory location before returning in 4006d176611bSdrh ** order to signal the caller to abort. 4007d176611bSdrh */ 4008d176611bSdrh addrSetAbort = sqlite3VdbeCurrentAddr(v); 4009d176611bSdrh sqlite3VdbeAddOp2(v, OP_Integer, 1, iAbortFlag); 4010d176611bSdrh VdbeComment((v, "set abort flag")); 4011d176611bSdrh sqlite3VdbeAddOp1(v, OP_Return, regOutputRow); 4012d176611bSdrh sqlite3VdbeResolveLabel(v, addrOutputRow); 4013d176611bSdrh addrOutputRow = sqlite3VdbeCurrentAddr(v); 4014d176611bSdrh sqlite3VdbeAddOp2(v, OP_IfPos, iUseFlag, addrOutputRow+2); 4015d176611bSdrh VdbeComment((v, "Groupby result generator entry point")); 4016d176611bSdrh sqlite3VdbeAddOp1(v, OP_Return, regOutputRow); 4017d176611bSdrh finalizeAggFunctions(pParse, &sAggInfo); 4018d176611bSdrh if( pHaving ){ 4019d176611bSdrh sqlite3ExprIfFalse(pParse, pHaving, addrOutputRow+1, SQLITE_JUMPIFNULL); 4020d176611bSdrh } 4021d176611bSdrh selectInnerLoop(pParse, p, p->pEList, 0, 0, pOrderBy, 4022d176611bSdrh distinct, pDest, 4023d176611bSdrh addrOutputRow+1, addrSetAbort); 4024d176611bSdrh sqlite3VdbeAddOp1(v, OP_Return, regOutputRow); 4025d176611bSdrh VdbeComment((v, "end groupby result generator")); 4026d176611bSdrh 4027d176611bSdrh /* Generate a subroutine that will reset the group-by accumulator 4028d176611bSdrh */ 4029d176611bSdrh sqlite3VdbeResolveLabel(v, addrReset); 4030d176611bSdrh resetAccumulator(pParse, &sAggInfo); 4031d176611bSdrh sqlite3VdbeAddOp1(v, OP_Return, regReset); 4032d176611bSdrh 403313449892Sdrh } /* endif pGroupBy */ 403413449892Sdrh else { 4035dba0137eSdanielk1977 ExprList *pDel = 0; 4036a5533162Sdanielk1977 #ifndef SQLITE_OMIT_BTREECOUNT 4037a5533162Sdanielk1977 Table *pTab; 4038a5533162Sdanielk1977 if( (pTab = isSimpleCount(p, &sAggInfo))!=0 ){ 4039a5533162Sdanielk1977 /* If isSimpleCount() returns a pointer to a Table structure, then 4040a5533162Sdanielk1977 ** the SQL statement is of the form: 4041a5533162Sdanielk1977 ** 4042a5533162Sdanielk1977 ** SELECT count(*) FROM <tbl> 4043a5533162Sdanielk1977 ** 4044a5533162Sdanielk1977 ** where the Table structure returned represents table <tbl>. 4045a5533162Sdanielk1977 ** 4046a5533162Sdanielk1977 ** This statement is so common that it is optimized specially. The 4047a5533162Sdanielk1977 ** OP_Count instruction is executed either on the intkey table that 4048a5533162Sdanielk1977 ** contains the data for table <tbl> or on one of its indexes. It 4049a5533162Sdanielk1977 ** is better to execute the op on an index, as indexes are almost 4050a5533162Sdanielk1977 ** always spread across less pages than their corresponding tables. 4051a5533162Sdanielk1977 */ 4052a5533162Sdanielk1977 const int iDb = sqlite3SchemaToIndex(pParse->db, pTab->pSchema); 4053a5533162Sdanielk1977 const int iCsr = pParse->nTab++; /* Cursor to scan b-tree */ 4054a5533162Sdanielk1977 Index *pIdx; /* Iterator variable */ 4055a5533162Sdanielk1977 KeyInfo *pKeyInfo = 0; /* Keyinfo for scanned index */ 4056a5533162Sdanielk1977 Index *pBest = 0; /* Best index found so far */ 4057a5533162Sdanielk1977 int iRoot = pTab->tnum; /* Root page of scanned b-tree */ 4058a9d1ccb9Sdanielk1977 4059a5533162Sdanielk1977 sqlite3CodeVerifySchema(pParse, iDb); 4060a5533162Sdanielk1977 sqlite3TableLock(pParse, iDb, pTab->tnum, 0, pTab->zName); 4061a5533162Sdanielk1977 4062a5533162Sdanielk1977 /* Search for the index that has the least amount of columns. If 4063a5533162Sdanielk1977 ** there is such an index, and it has less columns than the table 4064a5533162Sdanielk1977 ** does, then we can assume that it consumes less space on disk and 4065a5533162Sdanielk1977 ** will therefore be cheaper to scan to determine the query result. 4066a5533162Sdanielk1977 ** In this case set iRoot to the root page number of the index b-tree 4067a5533162Sdanielk1977 ** and pKeyInfo to the KeyInfo structure required to navigate the 4068a5533162Sdanielk1977 ** index. 4069a5533162Sdanielk1977 ** 4070a5533162Sdanielk1977 ** In practice the KeyInfo structure will not be used. It is only 4071a5533162Sdanielk1977 ** passed to keep OP_OpenRead happy. 4072a5533162Sdanielk1977 */ 4073a5533162Sdanielk1977 for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){ 4074a5533162Sdanielk1977 if( !pBest || pIdx->nColumn<pBest->nColumn ){ 4075a5533162Sdanielk1977 pBest = pIdx; 4076a5533162Sdanielk1977 } 4077a5533162Sdanielk1977 } 4078a5533162Sdanielk1977 if( pBest && pBest->nColumn<pTab->nCol ){ 4079a5533162Sdanielk1977 iRoot = pBest->tnum; 4080a5533162Sdanielk1977 pKeyInfo = sqlite3IndexKeyinfo(pParse, pBest); 4081a5533162Sdanielk1977 } 4082a5533162Sdanielk1977 4083a5533162Sdanielk1977 /* Open a read-only cursor, execute the OP_Count, close the cursor. */ 4084a5533162Sdanielk1977 sqlite3VdbeAddOp3(v, OP_OpenRead, iCsr, iRoot, iDb); 4085a5533162Sdanielk1977 if( pKeyInfo ){ 4086a5533162Sdanielk1977 sqlite3VdbeChangeP4(v, -1, (char *)pKeyInfo, P4_KEYINFO_HANDOFF); 4087a5533162Sdanielk1977 } 4088a5533162Sdanielk1977 sqlite3VdbeAddOp2(v, OP_Count, iCsr, sAggInfo.aFunc[0].iMem); 4089a5533162Sdanielk1977 sqlite3VdbeAddOp1(v, OP_Close, iCsr); 4090a5533162Sdanielk1977 }else 4091a5533162Sdanielk1977 #endif /* SQLITE_OMIT_BTREECOUNT */ 4092a5533162Sdanielk1977 { 4093738bdcfbSdanielk1977 /* Check if the query is of one of the following forms: 4094738bdcfbSdanielk1977 ** 4095738bdcfbSdanielk1977 ** SELECT min(x) FROM ... 4096738bdcfbSdanielk1977 ** SELECT max(x) FROM ... 4097738bdcfbSdanielk1977 ** 4098738bdcfbSdanielk1977 ** If it is, then ask the code in where.c to attempt to sort results 4099738bdcfbSdanielk1977 ** as if there was an "ORDER ON x" or "ORDER ON x DESC" clause. 4100738bdcfbSdanielk1977 ** If where.c is able to produce results sorted in this order, then 4101738bdcfbSdanielk1977 ** add vdbe code to break out of the processing loop after the 4102738bdcfbSdanielk1977 ** first iteration (since the first iteration of the loop is 4103738bdcfbSdanielk1977 ** guaranteed to operate on the row with the minimum or maximum 4104738bdcfbSdanielk1977 ** value of x, the only row required). 4105738bdcfbSdanielk1977 ** 4106738bdcfbSdanielk1977 ** A special flag must be passed to sqlite3WhereBegin() to slightly 4107738bdcfbSdanielk1977 ** modify behaviour as follows: 4108738bdcfbSdanielk1977 ** 4109738bdcfbSdanielk1977 ** + If the query is a "SELECT min(x)", then the loop coded by 4110738bdcfbSdanielk1977 ** where.c should not iterate over any values with a NULL value 4111738bdcfbSdanielk1977 ** for x. 4112738bdcfbSdanielk1977 ** 4113738bdcfbSdanielk1977 ** + The optimizer code in where.c (the thing that decides which 4114738bdcfbSdanielk1977 ** index or indices to use) should place a different priority on 4115738bdcfbSdanielk1977 ** satisfying the 'ORDER BY' clause than it does in other cases. 4116738bdcfbSdanielk1977 ** Refer to code and comments in where.c for details. 4117738bdcfbSdanielk1977 */ 4118a5533162Sdanielk1977 ExprList *pMinMax = 0; 4119a5533162Sdanielk1977 u8 flag = minMaxQuery(p); 4120a9d1ccb9Sdanielk1977 if( flag ){ 41216ab3a2ecSdanielk1977 assert( !ExprHasProperty(p->pEList->a[0].pExpr, EP_xIsSelect) ); 41226ab3a2ecSdanielk1977 pMinMax = sqlite3ExprListDup(db, p->pEList->a[0].pExpr->x.pList,0); 41236ab3a2ecSdanielk1977 pDel = pMinMax; 41240e359b30Sdrh if( pMinMax && !db->mallocFailed ){ 4125ea678832Sdrh pMinMax->a[0].sortOrder = flag!=WHERE_ORDERBY_MIN ?1:0; 4126a9d1ccb9Sdanielk1977 pMinMax->a[0].pExpr->op = TK_COLUMN; 4127a9d1ccb9Sdanielk1977 } 41281013c932Sdrh } 4129a9d1ccb9Sdanielk1977 413013449892Sdrh /* This case runs if the aggregate has no GROUP BY clause. The 413113449892Sdrh ** processing is much simpler since there is only a single row 413213449892Sdrh ** of output. 413313449892Sdrh */ 413413449892Sdrh resetAccumulator(pParse, &sAggInfo); 413523d04d5aSdrh pWInfo = sqlite3WhereBegin(pParse, pTabList, pWhere, &pMinMax, flag, 0); 4136dba0137eSdanielk1977 if( pWInfo==0 ){ 4137633e6d57Sdrh sqlite3ExprListDelete(db, pDel); 4138dba0137eSdanielk1977 goto select_end; 4139dba0137eSdanielk1977 } 414013449892Sdrh updateAccumulator(pParse, &sAggInfo); 4141a9d1ccb9Sdanielk1977 if( !pMinMax && flag ){ 4142a9d1ccb9Sdanielk1977 sqlite3VdbeAddOp2(v, OP_Goto, 0, pWInfo->iBreak); 4143a5533162Sdanielk1977 VdbeComment((v, "%s() by index", 4144a5533162Sdanielk1977 (flag==WHERE_ORDERBY_MIN?"min":"max"))); 4145a9d1ccb9Sdanielk1977 } 414613449892Sdrh sqlite3WhereEnd(pWInfo); 414713449892Sdrh finalizeAggFunctions(pParse, &sAggInfo); 41487a895a80Sdanielk1977 } 41497a895a80Sdanielk1977 415013449892Sdrh pOrderBy = 0; 41515774b806Sdrh if( pHaving ){ 415235573356Sdrh sqlite3ExprIfFalse(pParse, pHaving, addrEnd, SQLITE_JUMPIFNULL); 41535774b806Sdrh } 415413449892Sdrh selectInnerLoop(pParse, p, p->pEList, 0, 0, 0, -1, 4155a9671a22Sdrh pDest, addrEnd, addrEnd); 4156633e6d57Sdrh sqlite3ExprListDelete(db, pDel); 415713449892Sdrh } 415813449892Sdrh sqlite3VdbeResolveLabel(v, addrEnd); 415913449892Sdrh 416013449892Sdrh } /* endif aggregate query */ 41612282792aSdrh 4162cce7d176Sdrh /* If there is an ORDER BY clause, then we need to sort the results 4163cce7d176Sdrh ** and send them to the callback one by one. 4164cce7d176Sdrh */ 4165cce7d176Sdrh if( pOrderBy ){ 41666c8c8ce0Sdanielk1977 generateSortTail(pParse, p, v, pEList->nExpr, pDest); 4167cce7d176Sdrh } 41686a535340Sdrh 4169ec7429aeSdrh /* Jump here to skip this query 4170ec7429aeSdrh */ 4171ec7429aeSdrh sqlite3VdbeResolveLabel(v, iEnd); 4172ec7429aeSdrh 41731d83f052Sdrh /* The SELECT was successfully coded. Set the return code to 0 41741d83f052Sdrh ** to indicate no errors. 41751d83f052Sdrh */ 41761d83f052Sdrh rc = 0; 41771d83f052Sdrh 41781d83f052Sdrh /* Control jumps to here if an error is encountered above, or upon 41791d83f052Sdrh ** successful coding of the SELECT. 41801d83f052Sdrh */ 41811d83f052Sdrh select_end: 4182955de52cSdanielk1977 41837d10d5a6Sdrh /* Identify column names if results of the SELECT are to be output. 4184955de52cSdanielk1977 */ 41857d10d5a6Sdrh if( rc==SQLITE_OK && pDest->eDest==SRT_Output ){ 4186955de52cSdanielk1977 generateColumnNames(pParse, pTabList, pEList); 4187955de52cSdanielk1977 } 4188955de52cSdanielk1977 4189633e6d57Sdrh sqlite3DbFree(db, sAggInfo.aCol); 4190633e6d57Sdrh sqlite3DbFree(db, sAggInfo.aFunc); 41911d83f052Sdrh return rc; 4192cce7d176Sdrh } 4193485f0039Sdrh 419477a2a5e7Sdrh #if defined(SQLITE_DEBUG) 4195485f0039Sdrh /* 4196485f0039Sdrh ******************************************************************************* 4197485f0039Sdrh ** The following code is used for testing and debugging only. The code 4198485f0039Sdrh ** that follows does not appear in normal builds. 4199485f0039Sdrh ** 4200485f0039Sdrh ** These routines are used to print out the content of all or part of a 4201485f0039Sdrh ** parse structures such as Select or Expr. Such printouts are useful 4202485f0039Sdrh ** for helping to understand what is happening inside the code generator 4203485f0039Sdrh ** during the execution of complex SELECT statements. 4204485f0039Sdrh ** 4205485f0039Sdrh ** These routine are not called anywhere from within the normal 4206485f0039Sdrh ** code base. Then are intended to be called from within the debugger 4207485f0039Sdrh ** or from temporary "printf" statements inserted for debugging. 4208485f0039Sdrh */ 4209dafc0ce8Sdrh void sqlite3PrintExpr(Expr *p){ 4210485f0039Sdrh if( p->token.z && p->token.n>0 ){ 4211485f0039Sdrh sqlite3DebugPrintf("(%.*s", p->token.n, p->token.z); 4212485f0039Sdrh }else{ 4213485f0039Sdrh sqlite3DebugPrintf("(%d", p->op); 4214485f0039Sdrh } 4215485f0039Sdrh if( p->pLeft ){ 4216485f0039Sdrh sqlite3DebugPrintf(" "); 4217485f0039Sdrh sqlite3PrintExpr(p->pLeft); 4218485f0039Sdrh } 4219485f0039Sdrh if( p->pRight ){ 4220485f0039Sdrh sqlite3DebugPrintf(" "); 4221485f0039Sdrh sqlite3PrintExpr(p->pRight); 4222485f0039Sdrh } 4223485f0039Sdrh sqlite3DebugPrintf(")"); 4224485f0039Sdrh } 4225dafc0ce8Sdrh void sqlite3PrintExprList(ExprList *pList){ 4226485f0039Sdrh int i; 4227485f0039Sdrh for(i=0; i<pList->nExpr; i++){ 4228485f0039Sdrh sqlite3PrintExpr(pList->a[i].pExpr); 4229485f0039Sdrh if( i<pList->nExpr-1 ){ 4230485f0039Sdrh sqlite3DebugPrintf(", "); 4231485f0039Sdrh } 4232485f0039Sdrh } 4233485f0039Sdrh } 4234dafc0ce8Sdrh void sqlite3PrintSelect(Select *p, int indent){ 4235485f0039Sdrh sqlite3DebugPrintf("%*sSELECT(%p) ", indent, "", p); 4236485f0039Sdrh sqlite3PrintExprList(p->pEList); 4237485f0039Sdrh sqlite3DebugPrintf("\n"); 4238485f0039Sdrh if( p->pSrc ){ 4239485f0039Sdrh char *zPrefix; 4240485f0039Sdrh int i; 4241485f0039Sdrh zPrefix = "FROM"; 4242485f0039Sdrh for(i=0; i<p->pSrc->nSrc; i++){ 4243485f0039Sdrh struct SrcList_item *pItem = &p->pSrc->a[i]; 4244485f0039Sdrh sqlite3DebugPrintf("%*s ", indent+6, zPrefix); 4245485f0039Sdrh zPrefix = ""; 4246485f0039Sdrh if( pItem->pSelect ){ 4247485f0039Sdrh sqlite3DebugPrintf("(\n"); 4248485f0039Sdrh sqlite3PrintSelect(pItem->pSelect, indent+10); 4249485f0039Sdrh sqlite3DebugPrintf("%*s)", indent+8, ""); 4250485f0039Sdrh }else if( pItem->zName ){ 4251485f0039Sdrh sqlite3DebugPrintf("%s", pItem->zName); 4252485f0039Sdrh } 4253485f0039Sdrh if( pItem->pTab ){ 4254485f0039Sdrh sqlite3DebugPrintf("(table: %s)", pItem->pTab->zName); 4255485f0039Sdrh } 4256485f0039Sdrh if( pItem->zAlias ){ 4257485f0039Sdrh sqlite3DebugPrintf(" AS %s", pItem->zAlias); 4258485f0039Sdrh } 4259485f0039Sdrh if( i<p->pSrc->nSrc-1 ){ 4260485f0039Sdrh sqlite3DebugPrintf(","); 4261485f0039Sdrh } 4262485f0039Sdrh sqlite3DebugPrintf("\n"); 4263485f0039Sdrh } 4264485f0039Sdrh } 4265485f0039Sdrh if( p->pWhere ){ 4266485f0039Sdrh sqlite3DebugPrintf("%*s WHERE ", indent, ""); 4267485f0039Sdrh sqlite3PrintExpr(p->pWhere); 4268485f0039Sdrh sqlite3DebugPrintf("\n"); 4269485f0039Sdrh } 4270485f0039Sdrh if( p->pGroupBy ){ 4271485f0039Sdrh sqlite3DebugPrintf("%*s GROUP BY ", indent, ""); 4272485f0039Sdrh sqlite3PrintExprList(p->pGroupBy); 4273485f0039Sdrh sqlite3DebugPrintf("\n"); 4274485f0039Sdrh } 4275485f0039Sdrh if( p->pHaving ){ 4276485f0039Sdrh sqlite3DebugPrintf("%*s HAVING ", indent, ""); 4277485f0039Sdrh sqlite3PrintExpr(p->pHaving); 4278485f0039Sdrh sqlite3DebugPrintf("\n"); 4279485f0039Sdrh } 4280485f0039Sdrh if( p->pOrderBy ){ 4281485f0039Sdrh sqlite3DebugPrintf("%*s ORDER BY ", indent, ""); 4282485f0039Sdrh sqlite3PrintExprList(p->pOrderBy); 4283485f0039Sdrh sqlite3DebugPrintf("\n"); 4284485f0039Sdrh } 4285485f0039Sdrh } 4286485f0039Sdrh /* End of the structure debug printing code 4287485f0039Sdrh *****************************************************************************/ 4288485f0039Sdrh #endif /* defined(SQLITE_TEST) || defined(SQLITE_DEBUG) */ 4289