16f82e85aSdrh /* 26f82e85aSdrh ** 2015-06-06 36f82e85aSdrh ** 46f82e85aSdrh ** The author disclaims copyright to this source code. In place of 56f82e85aSdrh ** a legal notice, here is a blessing: 66f82e85aSdrh ** 76f82e85aSdrh ** May you do good and not evil. 86f82e85aSdrh ** May you find forgiveness for yourself and forgive others. 96f82e85aSdrh ** May you share freely, never taking more than you give. 106f82e85aSdrh ** 116f82e85aSdrh ************************************************************************* 126f82e85aSdrh ** This module contains C code that generates VDBE code used to process 136f82e85aSdrh ** the WHERE clause of SQL statements. 146f82e85aSdrh ** 156f82e85aSdrh ** This file was split off from where.c on 2015-06-06 in order to reduce the 166f82e85aSdrh ** size of where.c and make it easier to edit. This file contains the routines 176f82e85aSdrh ** that actually generate the bulk of the WHERE loop code. The original where.c 186f82e85aSdrh ** file retains the code that does query planning and analysis. 196f82e85aSdrh */ 206f82e85aSdrh #include "sqliteInt.h" 216f82e85aSdrh #include "whereInt.h" 226f82e85aSdrh 236f82e85aSdrh #ifndef SQLITE_OMIT_EXPLAIN 241d9bc9b7Sdan 251d9bc9b7Sdan /* 261d9bc9b7Sdan ** Return the name of the i-th column of the pIdx index. 271d9bc9b7Sdan */ 281d9bc9b7Sdan static const char *explainIndexColumnName(Index *pIdx, int i){ 291d9bc9b7Sdan i = pIdx->aiColumn[i]; 301d9bc9b7Sdan if( i==XN_EXPR ) return "<expr>"; 311d9bc9b7Sdan if( i==XN_ROWID ) return "rowid"; 321d9bc9b7Sdan return pIdx->pTable->aCol[i].zName; 331d9bc9b7Sdan } 341d9bc9b7Sdan 356f82e85aSdrh /* 366f82e85aSdrh ** This routine is a helper for explainIndexRange() below 376f82e85aSdrh ** 386f82e85aSdrh ** pStr holds the text of an expression that we are building up one term 396f82e85aSdrh ** at a time. This routine adds a new term to the end of the expression. 406f82e85aSdrh ** Terms are separated by AND so add the "AND" text for second and subsequent 416f82e85aSdrh ** terms only. 426f82e85aSdrh */ 436f82e85aSdrh static void explainAppendTerm( 446f82e85aSdrh StrAccum *pStr, /* The text expression being built */ 451d9bc9b7Sdan Index *pIdx, /* Index to read column names from */ 461d9bc9b7Sdan int nTerm, /* Number of terms */ 471d9bc9b7Sdan int iTerm, /* Zero-based index of first term. */ 481d9bc9b7Sdan int bAnd, /* Non-zero to append " AND " */ 496f82e85aSdrh const char *zOp /* Name of the operator */ 506f82e85aSdrh ){ 511d9bc9b7Sdan int i; 521d9bc9b7Sdan 531d9bc9b7Sdan assert( nTerm>=1 ); 540cdbe1aeSdrh if( bAnd ) sqlite3_str_append(pStr, " AND ", 5); 551d9bc9b7Sdan 560cdbe1aeSdrh if( nTerm>1 ) sqlite3_str_append(pStr, "(", 1); 571d9bc9b7Sdan for(i=0; i<nTerm; i++){ 580cdbe1aeSdrh if( i ) sqlite3_str_append(pStr, ",", 1); 590cdbe1aeSdrh sqlite3_str_appendall(pStr, explainIndexColumnName(pIdx, iTerm+i)); 601d9bc9b7Sdan } 610cdbe1aeSdrh if( nTerm>1 ) sqlite3_str_append(pStr, ")", 1); 621d9bc9b7Sdan 630cdbe1aeSdrh sqlite3_str_append(pStr, zOp, 1); 641d9bc9b7Sdan 650cdbe1aeSdrh if( nTerm>1 ) sqlite3_str_append(pStr, "(", 1); 661d9bc9b7Sdan for(i=0; i<nTerm; i++){ 670cdbe1aeSdrh if( i ) sqlite3_str_append(pStr, ",", 1); 680cdbe1aeSdrh sqlite3_str_append(pStr, "?", 1); 696f82e85aSdrh } 700cdbe1aeSdrh if( nTerm>1 ) sqlite3_str_append(pStr, ")", 1); 71c7c4680fSdrh } 72c7c4680fSdrh 73c7c4680fSdrh /* 746f82e85aSdrh ** Argument pLevel describes a strategy for scanning table pTab. This 756f82e85aSdrh ** function appends text to pStr that describes the subset of table 766f82e85aSdrh ** rows scanned by the strategy in the form of an SQL expression. 776f82e85aSdrh ** 786f82e85aSdrh ** For example, if the query: 796f82e85aSdrh ** 806f82e85aSdrh ** SELECT * FROM t1 WHERE a=1 AND b>2; 816f82e85aSdrh ** 826f82e85aSdrh ** is run and there is an index on (a, b), then this function returns a 836f82e85aSdrh ** string similar to: 846f82e85aSdrh ** 856f82e85aSdrh ** "a=? AND b>?" 866f82e85aSdrh */ 878faee877Sdrh static void explainIndexRange(StrAccum *pStr, WhereLoop *pLoop){ 886f82e85aSdrh Index *pIndex = pLoop->u.btree.pIndex; 896f82e85aSdrh u16 nEq = pLoop->u.btree.nEq; 906f82e85aSdrh u16 nSkip = pLoop->nSkip; 916f82e85aSdrh int i, j; 926f82e85aSdrh 936f82e85aSdrh if( nEq==0 && (pLoop->wsFlags&(WHERE_BTM_LIMIT|WHERE_TOP_LIMIT))==0 ) return; 940cdbe1aeSdrh sqlite3_str_append(pStr, " (", 2); 956f82e85aSdrh for(i=0; i<nEq; i++){ 96c7c4680fSdrh const char *z = explainIndexColumnName(pIndex, i); 970cdbe1aeSdrh if( i ) sqlite3_str_append(pStr, " AND ", 5); 980cdbe1aeSdrh sqlite3_str_appendf(pStr, i>=nSkip ? "%s=?" : "ANY(%s)", z); 996f82e85aSdrh } 1006f82e85aSdrh 1016f82e85aSdrh j = i; 1026f82e85aSdrh if( pLoop->wsFlags&WHERE_BTM_LIMIT ){ 1031d9bc9b7Sdan explainAppendTerm(pStr, pIndex, pLoop->u.btree.nBtm, j, i, ">"); 1041d9bc9b7Sdan i = 1; 1056f82e85aSdrh } 1066f82e85aSdrh if( pLoop->wsFlags&WHERE_TOP_LIMIT ){ 1071d9bc9b7Sdan explainAppendTerm(pStr, pIndex, pLoop->u.btree.nTop, j, i, "<"); 1086f82e85aSdrh } 1090cdbe1aeSdrh sqlite3_str_append(pStr, ")", 1); 1106f82e85aSdrh } 1116f82e85aSdrh 1126f82e85aSdrh /* 1136f82e85aSdrh ** This function is a no-op unless currently processing an EXPLAIN QUERY PLAN 1146f82e85aSdrh ** command, or if either SQLITE_DEBUG or SQLITE_ENABLE_STMT_SCANSTATUS was 1156f82e85aSdrh ** defined at compile-time. If it is not a no-op, a single OP_Explain opcode 1166f82e85aSdrh ** is added to the output to describe the table scan strategy in pLevel. 1176f82e85aSdrh ** 1186f82e85aSdrh ** If an OP_Explain opcode is added to the VM, its address is returned. 1196f82e85aSdrh ** Otherwise, if no OP_Explain is coded, zero is returned. 1206f82e85aSdrh */ 1216f82e85aSdrh int sqlite3WhereExplainOneScan( 1226f82e85aSdrh Parse *pParse, /* Parse context */ 1236f82e85aSdrh SrcList *pTabList, /* Table list this loop refers to */ 1246f82e85aSdrh WhereLevel *pLevel, /* Scan to write OP_Explain opcode for */ 1256f82e85aSdrh u16 wctrlFlags /* Flags passed to sqlite3WhereBegin() */ 1266f82e85aSdrh ){ 1276f82e85aSdrh int ret = 0; 1286f82e85aSdrh #if !defined(SQLITE_DEBUG) && !defined(SQLITE_ENABLE_STMT_SCANSTATUS) 129ef7231b8Sdrh if( sqlite3ParseToplevel(pParse)->explain==2 ) 1306f82e85aSdrh #endif 1316f82e85aSdrh { 1326f82e85aSdrh struct SrcList_item *pItem = &pTabList->a[pLevel->iFrom]; 1336f82e85aSdrh Vdbe *v = pParse->pVdbe; /* VM being constructed */ 1346f82e85aSdrh sqlite3 *db = pParse->db; /* Database handle */ 1356f82e85aSdrh int isSearch; /* True for a SEARCH. False for SCAN. */ 1366f82e85aSdrh WhereLoop *pLoop; /* The controlling WhereLoop object */ 1376f82e85aSdrh u32 flags; /* Flags that describe this loop */ 1386f82e85aSdrh char *zMsg; /* Text to add to EQP output */ 1396f82e85aSdrh StrAccum str; /* EQP output string */ 1406f82e85aSdrh char zBuf[100]; /* Initial space for EQP output string */ 1416f82e85aSdrh 1426f82e85aSdrh pLoop = pLevel->pWLoop; 1436f82e85aSdrh flags = pLoop->wsFlags; 144ce943bc8Sdrh if( (flags&WHERE_MULTI_OR) || (wctrlFlags&WHERE_OR_SUBCLAUSE) ) return 0; 1456f82e85aSdrh 1466f82e85aSdrh isSearch = (flags&(WHERE_BTM_LIMIT|WHERE_TOP_LIMIT))!=0 1476f82e85aSdrh || ((flags&WHERE_VIRTUALTABLE)==0 && (pLoop->u.btree.nEq>0)) 1486f82e85aSdrh || (wctrlFlags&(WHERE_ORDERBY_MIN|WHERE_ORDERBY_MAX)); 1496f82e85aSdrh 1506f82e85aSdrh sqlite3StrAccumInit(&str, db, zBuf, sizeof(zBuf), SQLITE_MAX_LENGTH); 1510cdbe1aeSdrh sqlite3_str_appendall(&str, isSearch ? "SEARCH" : "SCAN"); 1526f82e85aSdrh if( pItem->pSelect ){ 153fef37760Sdrh sqlite3_str_appendf(&str, " SUBQUERY %u", pItem->pSelect->selId); 1546f82e85aSdrh }else{ 1550cdbe1aeSdrh sqlite3_str_appendf(&str, " TABLE %s", pItem->zName); 1566f82e85aSdrh } 1576f82e85aSdrh 1586f82e85aSdrh if( pItem->zAlias ){ 1590cdbe1aeSdrh sqlite3_str_appendf(&str, " AS %s", pItem->zAlias); 1606f82e85aSdrh } 1616f82e85aSdrh if( (flags & (WHERE_IPK|WHERE_VIRTUALTABLE))==0 ){ 1626f82e85aSdrh const char *zFmt = 0; 1636f82e85aSdrh Index *pIdx; 1646f82e85aSdrh 1656f82e85aSdrh assert( pLoop->u.btree.pIndex!=0 ); 1666f82e85aSdrh pIdx = pLoop->u.btree.pIndex; 1676f82e85aSdrh assert( !(flags&WHERE_AUTO_INDEX) || (flags&WHERE_IDX_ONLY) ); 1686f82e85aSdrh if( !HasRowid(pItem->pTab) && IsPrimaryKeyIndex(pIdx) ){ 1696f82e85aSdrh if( isSearch ){ 1706f82e85aSdrh zFmt = "PRIMARY KEY"; 1716f82e85aSdrh } 1726f82e85aSdrh }else if( flags & WHERE_PARTIALIDX ){ 1736f82e85aSdrh zFmt = "AUTOMATIC PARTIAL COVERING INDEX"; 1746f82e85aSdrh }else if( flags & WHERE_AUTO_INDEX ){ 1756f82e85aSdrh zFmt = "AUTOMATIC COVERING INDEX"; 1766f82e85aSdrh }else if( flags & WHERE_IDX_ONLY ){ 1776f82e85aSdrh zFmt = "COVERING INDEX %s"; 1786f82e85aSdrh }else{ 1796f82e85aSdrh zFmt = "INDEX %s"; 1806f82e85aSdrh } 1816f82e85aSdrh if( zFmt ){ 1820cdbe1aeSdrh sqlite3_str_append(&str, " USING ", 7); 1830cdbe1aeSdrh sqlite3_str_appendf(&str, zFmt, pIdx->zName); 1848faee877Sdrh explainIndexRange(&str, pLoop); 1856f82e85aSdrh } 1866f82e85aSdrh }else if( (flags & WHERE_IPK)!=0 && (flags & WHERE_CONSTRAINT)!=0 ){ 187d37bea5bSdrh const char *zRangeOp; 1886f82e85aSdrh if( flags&(WHERE_COLUMN_EQ|WHERE_COLUMN_IN) ){ 189d37bea5bSdrh zRangeOp = "="; 1906f82e85aSdrh }else if( (flags&WHERE_BOTH_LIMIT)==WHERE_BOTH_LIMIT ){ 191d37bea5bSdrh zRangeOp = ">? AND rowid<"; 1926f82e85aSdrh }else if( flags&WHERE_BTM_LIMIT ){ 193d37bea5bSdrh zRangeOp = ">"; 1946f82e85aSdrh }else{ 1956f82e85aSdrh assert( flags&WHERE_TOP_LIMIT); 196d37bea5bSdrh zRangeOp = "<"; 1976f82e85aSdrh } 1980cdbe1aeSdrh sqlite3_str_appendf(&str, 1990cdbe1aeSdrh " USING INTEGER PRIMARY KEY (rowid%s?)",zRangeOp); 2006f82e85aSdrh } 2016f82e85aSdrh #ifndef SQLITE_OMIT_VIRTUALTABLE 2026f82e85aSdrh else if( (flags & WHERE_VIRTUALTABLE)!=0 ){ 2030cdbe1aeSdrh sqlite3_str_appendf(&str, " VIRTUAL TABLE INDEX %d:%s", 2046f82e85aSdrh pLoop->u.vtab.idxNum, pLoop->u.vtab.idxStr); 2056f82e85aSdrh } 2066f82e85aSdrh #endif 2076f82e85aSdrh #ifdef SQLITE_EXPLAIN_ESTIMATED_ROWS 2086f82e85aSdrh if( pLoop->nOut>=10 ){ 2090cdbe1aeSdrh sqlite3_str_appendf(&str, " (~%llu rows)", 2100cdbe1aeSdrh sqlite3LogEstToInt(pLoop->nOut)); 2116f82e85aSdrh }else{ 2120cdbe1aeSdrh sqlite3_str_append(&str, " (~1 row)", 9); 2136f82e85aSdrh } 2146f82e85aSdrh #endif 2156f82e85aSdrh zMsg = sqlite3StrAccumFinish(&str); 216bd462bccSdrh sqlite3ExplainBreakpoint("",zMsg); 217e2ca99c9Sdrh ret = sqlite3VdbeAddOp4(v, OP_Explain, sqlite3VdbeCurrentAddr(v), 218e2ca99c9Sdrh pParse->addrExplain, 0, zMsg,P4_DYNAMIC); 2196f82e85aSdrh } 2206f82e85aSdrh return ret; 2216f82e85aSdrh } 2226f82e85aSdrh #endif /* SQLITE_OMIT_EXPLAIN */ 2236f82e85aSdrh 2246f82e85aSdrh #ifdef SQLITE_ENABLE_STMT_SCANSTATUS 2256f82e85aSdrh /* 2266f82e85aSdrh ** Configure the VM passed as the first argument with an 2276f82e85aSdrh ** sqlite3_stmt_scanstatus() entry corresponding to the scan used to 2286f82e85aSdrh ** implement level pLvl. Argument pSrclist is a pointer to the FROM 2296f82e85aSdrh ** clause that the scan reads data from. 2306f82e85aSdrh ** 2316f82e85aSdrh ** If argument addrExplain is not 0, it must be the address of an 2326f82e85aSdrh ** OP_Explain instruction that describes the same loop. 2336f82e85aSdrh */ 2346f82e85aSdrh void sqlite3WhereAddScanStatus( 2356f82e85aSdrh Vdbe *v, /* Vdbe to add scanstatus entry to */ 2366f82e85aSdrh SrcList *pSrclist, /* FROM clause pLvl reads data from */ 2376f82e85aSdrh WhereLevel *pLvl, /* Level to add scanstatus() entry for */ 2386f82e85aSdrh int addrExplain /* Address of OP_Explain (or 0) */ 2396f82e85aSdrh ){ 2406f82e85aSdrh const char *zObj = 0; 2416f82e85aSdrh WhereLoop *pLoop = pLvl->pWLoop; 2426f82e85aSdrh if( (pLoop->wsFlags & WHERE_VIRTUALTABLE)==0 && pLoop->u.btree.pIndex!=0 ){ 2436f82e85aSdrh zObj = pLoop->u.btree.pIndex->zName; 2446f82e85aSdrh }else{ 2456f82e85aSdrh zObj = pSrclist->a[pLvl->iFrom].zName; 2466f82e85aSdrh } 2476f82e85aSdrh sqlite3VdbeScanStatus( 2486f82e85aSdrh v, addrExplain, pLvl->addrBody, pLvl->addrVisit, pLoop->nOut, zObj 2496f82e85aSdrh ); 2506f82e85aSdrh } 2516f82e85aSdrh #endif 2526f82e85aSdrh 2536f82e85aSdrh 2546f82e85aSdrh /* 2556f82e85aSdrh ** Disable a term in the WHERE clause. Except, do not disable the term 2566f82e85aSdrh ** if it controls a LEFT OUTER JOIN and it did not originate in the ON 2576f82e85aSdrh ** or USING clause of that join. 2586f82e85aSdrh ** 2596f82e85aSdrh ** Consider the term t2.z='ok' in the following queries: 2606f82e85aSdrh ** 2616f82e85aSdrh ** (1) SELECT * FROM t1 LEFT JOIN t2 ON t1.a=t2.x WHERE t2.z='ok' 2626f82e85aSdrh ** (2) SELECT * FROM t1 LEFT JOIN t2 ON t1.a=t2.x AND t2.z='ok' 2636f82e85aSdrh ** (3) SELECT * FROM t1, t2 WHERE t1.a=t2.x AND t2.z='ok' 2646f82e85aSdrh ** 2656f82e85aSdrh ** The t2.z='ok' is disabled in the in (2) because it originates 2666f82e85aSdrh ** in the ON clause. The term is disabled in (3) because it is not part 2676f82e85aSdrh ** of a LEFT OUTER JOIN. In (1), the term is not disabled. 2686f82e85aSdrh ** 2696f82e85aSdrh ** Disabling a term causes that term to not be tested in the inner loop 2706f82e85aSdrh ** of the join. Disabling is an optimization. When terms are satisfied 2716f82e85aSdrh ** by indices, we disable them to prevent redundant tests in the inner 2726f82e85aSdrh ** loop. We would get the correct results if nothing were ever disabled, 2736f82e85aSdrh ** but joins might run a little slower. The trick is to disable as much 2746f82e85aSdrh ** as we can without disabling too much. If we disabled in (1), we'd get 2756f82e85aSdrh ** the wrong answer. See ticket #813. 2766f82e85aSdrh ** 2776f82e85aSdrh ** If all the children of a term are disabled, then that term is also 2786f82e85aSdrh ** automatically disabled. In this way, terms get disabled if derived 2796f82e85aSdrh ** virtual terms are tested first. For example: 2806f82e85aSdrh ** 2816f82e85aSdrh ** x GLOB 'abc*' AND x>='abc' AND x<'acd' 2826f82e85aSdrh ** \___________/ \______/ \_____/ 2836f82e85aSdrh ** parent child1 child2 2846f82e85aSdrh ** 2856f82e85aSdrh ** Only the parent term was in the original WHERE clause. The child1 2866f82e85aSdrh ** and child2 terms were added by the LIKE optimization. If both of 2876f82e85aSdrh ** the virtual child terms are valid, then testing of the parent can be 2886f82e85aSdrh ** skipped. 2896f82e85aSdrh ** 2906f82e85aSdrh ** Usually the parent term is marked as TERM_CODED. But if the parent 2916f82e85aSdrh ** term was originally TERM_LIKE, then the parent gets TERM_LIKECOND instead. 2926f82e85aSdrh ** The TERM_LIKECOND marking indicates that the term should be coded inside 2936f82e85aSdrh ** a conditional such that is only evaluated on the second pass of a 2946f82e85aSdrh ** LIKE-optimization loop, when scanning BLOBs instead of strings. 2956f82e85aSdrh */ 2966f82e85aSdrh static void disableTerm(WhereLevel *pLevel, WhereTerm *pTerm){ 2976f82e85aSdrh int nLoop = 0; 2989d9c41e2Sdrh assert( pTerm!=0 ); 2999d9c41e2Sdrh while( (pTerm->wtFlags & TERM_CODED)==0 3006f82e85aSdrh && (pLevel->iLeftJoin==0 || ExprHasProperty(pTerm->pExpr, EP_FromJoin)) 3016f82e85aSdrh && (pLevel->notReady & pTerm->prereqAll)==0 3026f82e85aSdrh ){ 3036f82e85aSdrh if( nLoop && (pTerm->wtFlags & TERM_LIKE)!=0 ){ 3046f82e85aSdrh pTerm->wtFlags |= TERM_LIKECOND; 3056f82e85aSdrh }else{ 3066f82e85aSdrh pTerm->wtFlags |= TERM_CODED; 3076f82e85aSdrh } 3086f82e85aSdrh if( pTerm->iParent<0 ) break; 3096f82e85aSdrh pTerm = &pTerm->pWC->a[pTerm->iParent]; 3109d9c41e2Sdrh assert( pTerm!=0 ); 3116f82e85aSdrh pTerm->nChild--; 3126f82e85aSdrh if( pTerm->nChild!=0 ) break; 3136f82e85aSdrh nLoop++; 3146f82e85aSdrh } 3156f82e85aSdrh } 3166f82e85aSdrh 3176f82e85aSdrh /* 3186f82e85aSdrh ** Code an OP_Affinity opcode to apply the column affinity string zAff 3196f82e85aSdrh ** to the n registers starting at base. 3206f82e85aSdrh ** 32196fb16eeSdrh ** As an optimization, SQLITE_AFF_BLOB and SQLITE_AFF_NONE entries (which 32296fb16eeSdrh ** are no-ops) at the beginning and end of zAff are ignored. If all entries 32396fb16eeSdrh ** in zAff are SQLITE_AFF_BLOB or SQLITE_AFF_NONE, then no code gets generated. 3246f82e85aSdrh ** 3256f82e85aSdrh ** This routine makes its own copy of zAff so that the caller is free 3266f82e85aSdrh ** to modify zAff after this routine returns. 3276f82e85aSdrh */ 3286f82e85aSdrh static void codeApplyAffinity(Parse *pParse, int base, int n, char *zAff){ 3296f82e85aSdrh Vdbe *v = pParse->pVdbe; 3306f82e85aSdrh if( zAff==0 ){ 3316f82e85aSdrh assert( pParse->db->mallocFailed ); 3326f82e85aSdrh return; 3336f82e85aSdrh } 3346f82e85aSdrh assert( v!=0 ); 3356f82e85aSdrh 33696fb16eeSdrh /* Adjust base and n to skip over SQLITE_AFF_BLOB and SQLITE_AFF_NONE 33796fb16eeSdrh ** entries at the beginning and end of the affinity string. 3386f82e85aSdrh */ 33996fb16eeSdrh assert( SQLITE_AFF_NONE<SQLITE_AFF_BLOB ); 34096fb16eeSdrh while( n>0 && zAff[0]<=SQLITE_AFF_BLOB ){ 3416f82e85aSdrh n--; 3426f82e85aSdrh base++; 3436f82e85aSdrh zAff++; 3446f82e85aSdrh } 34596fb16eeSdrh while( n>1 && zAff[n-1]<=SQLITE_AFF_BLOB ){ 3466f82e85aSdrh n--; 3476f82e85aSdrh } 3486f82e85aSdrh 3496f82e85aSdrh /* Code the OP_Affinity opcode if there is anything left to do. */ 3506f82e85aSdrh if( n>0 ){ 3519b34abeeSdrh sqlite3VdbeAddOp4(v, OP_Affinity, base, n, 0, zAff, n); 3526f82e85aSdrh } 3536f82e85aSdrh } 3546f82e85aSdrh 355b7ca2177Sdan /* 356b7ca2177Sdan ** Expression pRight, which is the RHS of a comparison operation, is 357b7ca2177Sdan ** either a vector of n elements or, if n==1, a scalar expression. 358b7ca2177Sdan ** Before the comparison operation, affinity zAff is to be applied 359b7ca2177Sdan ** to the pRight values. This function modifies characters within the 360b7ca2177Sdan ** affinity string to SQLITE_AFF_BLOB if either: 361b7ca2177Sdan ** 362b7ca2177Sdan ** * the comparison will be performed with no affinity, or 363b7ca2177Sdan ** * the affinity change in zAff is guaranteed not to change the value. 364b7ca2177Sdan */ 365b7ca2177Sdan static void updateRangeAffinityStr( 366b7ca2177Sdan Expr *pRight, /* RHS of comparison */ 367b7ca2177Sdan int n, /* Number of vector elements in comparison */ 368b7ca2177Sdan char *zAff /* Affinity string to modify */ 369b7ca2177Sdan ){ 370b7ca2177Sdan int i; 371b7ca2177Sdan for(i=0; i<n; i++){ 372b7ca2177Sdan Expr *p = sqlite3VectorFieldSubexpr(pRight, i); 373b7ca2177Sdan if( sqlite3CompareAffinity(p, zAff[i])==SQLITE_AFF_BLOB 374b7ca2177Sdan || sqlite3ExprNeedsNoAffinityChange(p, zAff[i]) 375b7ca2177Sdan ){ 376b7ca2177Sdan zAff[i] = SQLITE_AFF_BLOB; 377b7ca2177Sdan } 378b7ca2177Sdan } 379b7ca2177Sdan } 3806f82e85aSdrh 3812410243eSdrh 3822410243eSdrh /* 3832410243eSdrh ** pX is an expression of the form: (vector) IN (SELECT ...) 3842410243eSdrh ** In other words, it is a vector IN operator with a SELECT clause on the 3852410243eSdrh ** LHS. But not all terms in the vector are indexable and the terms might 3862410243eSdrh ** not be in the correct order for indexing. 3879b1ecb67Sdrh ** 3882410243eSdrh ** This routine makes a copy of the input pX expression and then adjusts 3892410243eSdrh ** the vector on the LHS with corresponding changes to the SELECT so that 3902410243eSdrh ** the vector contains only index terms and those terms are in the correct 3912410243eSdrh ** order. The modified IN expression is returned. The caller is responsible 3922410243eSdrh ** for deleting the returned expression. 3932410243eSdrh ** 3942410243eSdrh ** Example: 3952410243eSdrh ** 3962410243eSdrh ** CREATE TABLE t1(a,b,c,d,e,f); 3972410243eSdrh ** CREATE INDEX t1x1 ON t1(e,c); 3982410243eSdrh ** SELECT * FROM t1 WHERE (a,b,c,d,e) IN (SELECT v,w,x,y,z FROM t2) 3992410243eSdrh ** \_______________________________________/ 4002410243eSdrh ** The pX expression 4012410243eSdrh ** 4022410243eSdrh ** Since only columns e and c can be used with the index, in that order, 4032410243eSdrh ** the modified IN expression that is returned will be: 4042410243eSdrh ** 4052410243eSdrh ** (e,c) IN (SELECT z,x FROM t2) 4062410243eSdrh ** 4072410243eSdrh ** The reduced pX is different from the original (obviously) and thus is 4082410243eSdrh ** only used for indexing, to improve performance. The original unaltered 4092410243eSdrh ** IN expression must also be run on each output row for correctness. 4109b1ecb67Sdrh */ 4112410243eSdrh static Expr *removeUnindexableInClauseTerms( 4122410243eSdrh Parse *pParse, /* The parsing context */ 4132410243eSdrh int iEq, /* Look at loop terms starting here */ 4142410243eSdrh WhereLoop *pLoop, /* The current loop */ 4152410243eSdrh Expr *pX /* The IN expression to be reduced */ 4162410243eSdrh ){ 4172410243eSdrh sqlite3 *db = pParse->db; 41869843342Sdan Expr *pNew; 41969843342Sdan pNew = sqlite3ExprDup(db, pX, 0); 4202410243eSdrh if( db->mallocFailed==0 ){ 4212410243eSdrh ExprList *pOrigRhs = pNew->x.pSelect->pEList; /* Original unmodified RHS */ 4222410243eSdrh ExprList *pOrigLhs = pNew->pLeft->x.pList; /* Original unmodified LHS */ 4232410243eSdrh ExprList *pRhs = 0; /* New RHS after modifications */ 4242410243eSdrh ExprList *pLhs = 0; /* New LHS after mods */ 4252410243eSdrh int i; /* Loop counter */ 4262410243eSdrh Select *pSelect; /* Pointer to the SELECT on the RHS */ 4272410243eSdrh 4282410243eSdrh for(i=iEq; i<pLoop->nLTerm; i++){ 4292410243eSdrh if( pLoop->aLTerm[i]->pExpr==pX ){ 43075fa2663Sdrh int iField = pLoop->aLTerm[i]->u.x.iField - 1; 431c6e519f3Sdrh if( pOrigRhs->a[iField].pExpr==0 ) continue; /* Duplicate PK column */ 4322410243eSdrh pRhs = sqlite3ExprListAppend(pParse, pRhs, pOrigRhs->a[iField].pExpr); 4332410243eSdrh pOrigRhs->a[iField].pExpr = 0; 4342410243eSdrh assert( pOrigLhs->a[iField].pExpr!=0 ); 4352410243eSdrh pLhs = sqlite3ExprListAppend(pParse, pLhs, pOrigLhs->a[iField].pExpr); 4362410243eSdrh pOrigLhs->a[iField].pExpr = 0; 4379b1ecb67Sdrh } 4389b1ecb67Sdrh } 4392410243eSdrh sqlite3ExprListDelete(db, pOrigRhs); 4402410243eSdrh sqlite3ExprListDelete(db, pOrigLhs); 4412410243eSdrh pNew->pLeft->x.pList = pLhs; 4422410243eSdrh pNew->x.pSelect->pEList = pRhs; 4432410243eSdrh if( pLhs && pLhs->nExpr==1 ){ 4442410243eSdrh /* Take care here not to generate a TK_VECTOR containing only a 4452410243eSdrh ** single value. Since the parser never creates such a vector, some 4462410243eSdrh ** of the subroutines do not handle this case. */ 4472410243eSdrh Expr *p = pLhs->a[0].pExpr; 4482410243eSdrh pLhs->a[0].pExpr = 0; 4492410243eSdrh sqlite3ExprDelete(db, pNew->pLeft); 4502410243eSdrh pNew->pLeft = p; 4519b1ecb67Sdrh } 4522410243eSdrh pSelect = pNew->x.pSelect; 4532410243eSdrh if( pSelect->pOrderBy ){ 4542410243eSdrh /* If the SELECT statement has an ORDER BY clause, zero the 4552410243eSdrh ** iOrderByCol variables. These are set to non-zero when an 4562410243eSdrh ** ORDER BY term exactly matches one of the terms of the 4572410243eSdrh ** result-set. Since the result-set of the SELECT statement may 4582410243eSdrh ** have been modified or reordered, these variables are no longer 4592410243eSdrh ** set correctly. Since setting them is just an optimization, 4602410243eSdrh ** it's easiest just to zero them here. */ 4612410243eSdrh ExprList *pOrderBy = pSelect->pOrderBy; 4622410243eSdrh for(i=0; i<pOrderBy->nExpr; i++){ 4632410243eSdrh pOrderBy->a[i].u.x.iOrderByCol = 0; 4642410243eSdrh } 4652410243eSdrh } 4662410243eSdrh 4672410243eSdrh #if 0 4682410243eSdrh printf("For indexing, change the IN expr:\n"); 4692410243eSdrh sqlite3TreeViewExpr(0, pX, 0); 4702410243eSdrh printf("Into:\n"); 4712410243eSdrh sqlite3TreeViewExpr(0, pNew, 0); 4722410243eSdrh #endif 4732410243eSdrh } 4742410243eSdrh return pNew; 4752410243eSdrh } 4769b1ecb67Sdrh 4779b1ecb67Sdrh 4786f82e85aSdrh /* 4796f82e85aSdrh ** Generate code for a single equality term of the WHERE clause. An equality 4806f82e85aSdrh ** term can be either X=expr or X IN (...). pTerm is the term to be 4816f82e85aSdrh ** coded. 4826f82e85aSdrh ** 483099a0f5fSdrh ** The current value for the constraint is left in a register, the index 484099a0f5fSdrh ** of which is returned. An attempt is made store the result in iTarget but 485099a0f5fSdrh ** this is only guaranteed for TK_ISNULL and TK_IN constraints. If the 486099a0f5fSdrh ** constraint is a TK_EQ or TK_IS, then the current value might be left in 487099a0f5fSdrh ** some other register and it is the caller's responsibility to compensate. 4886f82e85aSdrh ** 4894602b8e8Sdrh ** For a constraint of the form X=expr, the expression is evaluated in 4904602b8e8Sdrh ** straight-line code. For constraints of the form X IN (...) 4916f82e85aSdrh ** this routine sets up a loop that will iterate over all values of X. 4926f82e85aSdrh */ 4936f82e85aSdrh static int codeEqualityTerm( 4946f82e85aSdrh Parse *pParse, /* The parsing context */ 4956f82e85aSdrh WhereTerm *pTerm, /* The term of the WHERE clause to be coded */ 4966f82e85aSdrh WhereLevel *pLevel, /* The level of the FROM clause we are working on */ 4976f82e85aSdrh int iEq, /* Index of the equality term within this level */ 4986f82e85aSdrh int bRev, /* True for reverse-order IN operations */ 4996f82e85aSdrh int iTarget /* Attempt to leave results in this register */ 5006f82e85aSdrh ){ 5016f82e85aSdrh Expr *pX = pTerm->pExpr; 5026f82e85aSdrh Vdbe *v = pParse->pVdbe; 5036f82e85aSdrh int iReg; /* Register holding results */ 5046f82e85aSdrh 5058da209b1Sdan assert( pLevel->pWLoop->aLTerm[iEq]==pTerm ); 5066f82e85aSdrh assert( iTarget>0 ); 5076f82e85aSdrh if( pX->op==TK_EQ || pX->op==TK_IS ){ 508fc7f27b9Sdrh iReg = sqlite3ExprCodeTarget(pParse, pX->pRight, iTarget); 5096f82e85aSdrh }else if( pX->op==TK_ISNULL ){ 5106f82e85aSdrh iReg = iTarget; 5116f82e85aSdrh sqlite3VdbeAddOp2(v, OP_Null, 0, iReg); 5126f82e85aSdrh #ifndef SQLITE_OMIT_SUBQUERY 5136f82e85aSdrh }else{ 514ac6b47d1Sdrh int eType = IN_INDEX_NOOP; 5156f82e85aSdrh int iTab; 5166f82e85aSdrh struct InLoop *pIn; 5176f82e85aSdrh WhereLoop *pLoop = pLevel->pWLoop; 5188da209b1Sdan int i; 5198da209b1Sdan int nEq = 0; 5208da209b1Sdan int *aiMap = 0; 5216f82e85aSdrh 5226f82e85aSdrh if( (pLoop->wsFlags & WHERE_VIRTUALTABLE)==0 5236f82e85aSdrh && pLoop->u.btree.pIndex!=0 5246f82e85aSdrh && pLoop->u.btree.pIndex->aSortOrder[iEq] 5256f82e85aSdrh ){ 5266f82e85aSdrh testcase( iEq==0 ); 5276f82e85aSdrh testcase( bRev ); 5286f82e85aSdrh bRev = !bRev; 5296f82e85aSdrh } 5306f82e85aSdrh assert( pX->op==TK_IN ); 5316f82e85aSdrh iReg = iTarget; 5328da209b1Sdan 5338da209b1Sdan for(i=0; i<iEq; i++){ 5348da209b1Sdan if( pLoop->aLTerm[i] && pLoop->aLTerm[i]->pExpr==pX ){ 5358da209b1Sdan disableTerm(pLevel, pTerm); 5368da209b1Sdan return iTarget; 5378da209b1Sdan } 5388da209b1Sdan } 5398da209b1Sdan for(i=iEq;i<pLoop->nLTerm; i++){ 5402410243eSdrh assert( pLoop->aLTerm[i]!=0 ); 5412410243eSdrh if( pLoop->aLTerm[i]->pExpr==pX ) nEq++; 5428da209b1Sdan } 5438da209b1Sdan 5442c04131cSdrh iTab = 0; 5458da209b1Sdan if( (pX->flags & EP_xIsSelect)==0 || pX->x.pSelect->pEList->nExpr==1 ){ 5462c04131cSdrh eType = sqlite3FindInIndex(pParse, pX, IN_INDEX_LOOP, 0, 0, &iTab); 5478da209b1Sdan }else{ 5488da209b1Sdan sqlite3 *db = pParse->db; 5492410243eSdrh pX = removeUnindexableInClauseTerms(pParse, iEq, pLoop, pX); 5509b1ecb67Sdrh 551ac6b47d1Sdrh if( !db->mallocFailed ){ 552c7a77ae1Sdrh aiMap = (int*)sqlite3DbMallocZero(pParse->db, sizeof(int)*nEq); 5532c04131cSdrh eType = sqlite3FindInIndex(pParse, pX, IN_INDEX_LOOP, 0, aiMap, &iTab); 5542c04131cSdrh pTerm->pExpr->iTable = iTab; 555ac6b47d1Sdrh } 5562410243eSdrh sqlite3ExprDelete(db, pX); 5572410243eSdrh pX = pTerm->pExpr; 5588da209b1Sdan } 5598da209b1Sdan 5606f82e85aSdrh if( eType==IN_INDEX_INDEX_DESC ){ 5616f82e85aSdrh testcase( bRev ); 5626f82e85aSdrh bRev = !bRev; 5636f82e85aSdrh } 5646f82e85aSdrh sqlite3VdbeAddOp2(v, bRev ? OP_Last : OP_Rewind, iTab, 0); 5656f82e85aSdrh VdbeCoverageIf(v, bRev); 5666f82e85aSdrh VdbeCoverageIf(v, !bRev); 5676f82e85aSdrh assert( (pLoop->wsFlags & WHERE_MULTI_OR)==0 ); 5688da209b1Sdan 5696f82e85aSdrh pLoop->wsFlags |= WHERE_IN_ABLE; 5706f82e85aSdrh if( pLevel->u.in.nIn==0 ){ 571ec4ccdbcSdrh pLevel->addrNxt = sqlite3VdbeMakeLabel(pParse); 5726f82e85aSdrh } 573*46f0f4e5Sdrh if( iEq>0 && (pLoop->wsFlags & WHERE_IN_SEEKSCAN)==0 ){ 574fa17e134Sdrh pLoop->wsFlags |= WHERE_IN_EARLYOUT; 575fa17e134Sdrh } 5768da209b1Sdan 5778da209b1Sdan i = pLevel->u.in.nIn; 5788da209b1Sdan pLevel->u.in.nIn += nEq; 5796f82e85aSdrh pLevel->u.in.aInLoop = 5806f82e85aSdrh sqlite3DbReallocOrFree(pParse->db, pLevel->u.in.aInLoop, 5816f82e85aSdrh sizeof(pLevel->u.in.aInLoop[0])*pLevel->u.in.nIn); 5826f82e85aSdrh pIn = pLevel->u.in.aInLoop; 5836f82e85aSdrh if( pIn ){ 5848da209b1Sdan int iMap = 0; /* Index in aiMap[] */ 5858da209b1Sdan pIn += i; 5867887d7f2Sdan for(i=iEq;i<pLoop->nLTerm; i++){ 5878da209b1Sdan if( pLoop->aLTerm[i]->pExpr==pX ){ 588edc3537cSdan int iOut = iReg + i - iEq; 5896f82e85aSdrh if( eType==IN_INDEX_ROWID ){ 590edc3537cSdan pIn->addrInTop = sqlite3VdbeAddOp2(v, OP_Rowid, iTab, iOut); 5916f82e85aSdrh }else{ 5928da209b1Sdan int iCol = aiMap ? aiMap[iMap++] : 0; 5938da209b1Sdan pIn->addrInTop = sqlite3VdbeAddOp3(v,OP_Column,iTab, iCol, iOut); 5946f82e85aSdrh } 59503181c8cSdrh sqlite3VdbeAddOp1(v, OP_IsNull, iOut); VdbeCoverage(v); 5968da209b1Sdan if( i==iEq ){ 5978da209b1Sdan pIn->iCur = iTab; 598f1949b66Sdrh pIn->eEndLoopOp = bRev ? OP_Prev : OP_Next; 59974ebaadcSdan if( iEq>0 ){ 600a0368d93Sdrh pIn->iBase = iReg - i; 601a0368d93Sdrh pIn->nPrefix = i; 6028da209b1Sdan }else{ 60386d0ea75Sdrh pIn->nPrefix = 0; 60486d0ea75Sdrh } 60586d0ea75Sdrh }else{ 6068da209b1Sdan pIn->eEndLoopOp = OP_Noop; 6078da209b1Sdan } 6087887d7f2Sdan pIn++; 6098da209b1Sdan } 6108da209b1Sdan } 611*46f0f4e5Sdrh if( iEq>0 && (pLoop->wsFlags & WHERE_IN_SEEKSCAN)==0 ){ 612fa17e134Sdrh sqlite3VdbeAddOp3(v, OP_SeekHit, pLevel->iIdxCur, 0, iEq); 613fa17e134Sdrh } 6146f82e85aSdrh }else{ 6156f82e85aSdrh pLevel->u.in.nIn = 0; 6166f82e85aSdrh } 6178da209b1Sdan sqlite3DbFree(pParse->db, aiMap); 6186f82e85aSdrh #endif 6196f82e85aSdrh } 6206f82e85aSdrh disableTerm(pLevel, pTerm); 6216f82e85aSdrh return iReg; 6226f82e85aSdrh } 6236f82e85aSdrh 6246f82e85aSdrh /* 6256f82e85aSdrh ** Generate code that will evaluate all == and IN constraints for an 6266f82e85aSdrh ** index scan. 6276f82e85aSdrh ** 6286f82e85aSdrh ** For example, consider table t1(a,b,c,d,e,f) with index i1(a,b,c). 6296f82e85aSdrh ** Suppose the WHERE clause is this: a==5 AND b IN (1,2,3) AND c>5 AND c<10 6306f82e85aSdrh ** The index has as many as three equality constraints, but in this 6316f82e85aSdrh ** example, the third "c" value is an inequality. So only two 6326f82e85aSdrh ** constraints are coded. This routine will generate code to evaluate 6336f82e85aSdrh ** a==5 and b IN (1,2,3). The current values for a and b will be stored 6346f82e85aSdrh ** in consecutive registers and the index of the first register is returned. 6356f82e85aSdrh ** 6366f82e85aSdrh ** In the example above nEq==2. But this subroutine works for any value 6376f82e85aSdrh ** of nEq including 0. If nEq==0, this routine is nearly a no-op. 6386f82e85aSdrh ** The only thing it does is allocate the pLevel->iMem memory cell and 6396f82e85aSdrh ** compute the affinity string. 6406f82e85aSdrh ** 6416f82e85aSdrh ** The nExtraReg parameter is 0 or 1. It is 0 if all WHERE clause constraints 6426f82e85aSdrh ** are == or IN and are covered by the nEq. nExtraReg is 1 if there is 6436f82e85aSdrh ** an inequality constraint (such as the "c>=5 AND c<10" in the example) that 6446f82e85aSdrh ** occurs after the nEq quality constraints. 6456f82e85aSdrh ** 6466f82e85aSdrh ** This routine allocates a range of nEq+nExtraReg memory cells and returns 6476f82e85aSdrh ** the index of the first memory cell in that range. The code that 6486f82e85aSdrh ** calls this routine will use that memory range to store keys for 6496f82e85aSdrh ** start and termination conditions of the loop. 6506f82e85aSdrh ** key value of the loop. If one or more IN operators appear, then 6516f82e85aSdrh ** this routine allocates an additional nEq memory cells for internal 6526f82e85aSdrh ** use. 6536f82e85aSdrh ** 6546f82e85aSdrh ** Before returning, *pzAff is set to point to a buffer containing a 6556f82e85aSdrh ** copy of the column affinity string of the index allocated using 6566f82e85aSdrh ** sqlite3DbMalloc(). Except, entries in the copy of the string associated 6576f82e85aSdrh ** with equality constraints that use BLOB or NONE affinity are set to 6586f82e85aSdrh ** SQLITE_AFF_BLOB. This is to deal with SQL such as the following: 6596f82e85aSdrh ** 6606f82e85aSdrh ** CREATE TABLE t1(a TEXT PRIMARY KEY, b); 6616f82e85aSdrh ** SELECT ... FROM t1 AS t2, t1 WHERE t1.a = t2.b; 6626f82e85aSdrh ** 6636f82e85aSdrh ** In the example above, the index on t1(a) has TEXT affinity. But since 6646f82e85aSdrh ** the right hand side of the equality constraint (t2.b) has BLOB/NONE affinity, 6656f82e85aSdrh ** no conversion should be attempted before using a t2.b value as part of 6666f82e85aSdrh ** a key to search the index. Hence the first byte in the returned affinity 6676f82e85aSdrh ** string in this example would be set to SQLITE_AFF_BLOB. 6686f82e85aSdrh */ 6696f82e85aSdrh static int codeAllEqualityTerms( 6706f82e85aSdrh Parse *pParse, /* Parsing context */ 6716f82e85aSdrh WhereLevel *pLevel, /* Which nested loop of the FROM we are coding */ 6726f82e85aSdrh int bRev, /* Reverse the order of IN operators */ 6736f82e85aSdrh int nExtraReg, /* Number of extra registers to allocate */ 6746f82e85aSdrh char **pzAff /* OUT: Set to point to affinity string */ 6756f82e85aSdrh ){ 6766f82e85aSdrh u16 nEq; /* The number of == or IN constraints to code */ 6776f82e85aSdrh u16 nSkip; /* Number of left-most columns to skip */ 6786f82e85aSdrh Vdbe *v = pParse->pVdbe; /* The vm under construction */ 6796f82e85aSdrh Index *pIdx; /* The index being used for this loop */ 6806f82e85aSdrh WhereTerm *pTerm; /* A single constraint term */ 6816f82e85aSdrh WhereLoop *pLoop; /* The WhereLoop object */ 6826f82e85aSdrh int j; /* Loop counter */ 6836f82e85aSdrh int regBase; /* Base register */ 6846f82e85aSdrh int nReg; /* Number of registers to allocate */ 6856f82e85aSdrh char *zAff; /* Affinity string to return */ 6866f82e85aSdrh 6876f82e85aSdrh /* This module is only called on query plans that use an index. */ 6886f82e85aSdrh pLoop = pLevel->pWLoop; 6896f82e85aSdrh assert( (pLoop->wsFlags & WHERE_VIRTUALTABLE)==0 ); 6906f82e85aSdrh nEq = pLoop->u.btree.nEq; 6916f82e85aSdrh nSkip = pLoop->nSkip; 6926f82e85aSdrh pIdx = pLoop->u.btree.pIndex; 6936f82e85aSdrh assert( pIdx!=0 ); 6946f82e85aSdrh 6956f82e85aSdrh /* Figure out how many memory cells we will need then allocate them. 6966f82e85aSdrh */ 6976f82e85aSdrh regBase = pParse->nMem + 1; 6986f82e85aSdrh nReg = pLoop->u.btree.nEq + nExtraReg; 6996f82e85aSdrh pParse->nMem += nReg; 7006f82e85aSdrh 701e9107698Sdrh zAff = sqlite3DbStrDup(pParse->db,sqlite3IndexAffinityStr(pParse->db,pIdx)); 7024df86af3Sdrh assert( zAff!=0 || pParse->db->mallocFailed ); 7036f82e85aSdrh 7046f82e85aSdrh if( nSkip ){ 7056f82e85aSdrh int iIdxCur = pLevel->iIdxCur; 7066f82e85aSdrh sqlite3VdbeAddOp1(v, (bRev?OP_Last:OP_Rewind), iIdxCur); 7076f82e85aSdrh VdbeCoverageIf(v, bRev==0); 7086f82e85aSdrh VdbeCoverageIf(v, bRev!=0); 7096f82e85aSdrh VdbeComment((v, "begin skip-scan on %s", pIdx->zName)); 7106f82e85aSdrh j = sqlite3VdbeAddOp0(v, OP_Goto); 7116f82e85aSdrh pLevel->addrSkip = sqlite3VdbeAddOp4Int(v, (bRev?OP_SeekLT:OP_SeekGT), 7126f82e85aSdrh iIdxCur, 0, regBase, nSkip); 7136f82e85aSdrh VdbeCoverageIf(v, bRev==0); 7146f82e85aSdrh VdbeCoverageIf(v, bRev!=0); 7156f82e85aSdrh sqlite3VdbeJumpHere(v, j); 7166f82e85aSdrh for(j=0; j<nSkip; j++){ 7176f82e85aSdrh sqlite3VdbeAddOp3(v, OP_Column, iIdxCur, j, regBase+j); 7184b92f98cSdrh testcase( pIdx->aiColumn[j]==XN_EXPR ); 719e63e8a6cSdrh VdbeComment((v, "%s", explainIndexColumnName(pIdx, j))); 7206f82e85aSdrh } 7216f82e85aSdrh } 7226f82e85aSdrh 7236f82e85aSdrh /* Evaluate the equality constraints 7246f82e85aSdrh */ 7256f82e85aSdrh assert( zAff==0 || (int)strlen(zAff)>=nEq ); 7266f82e85aSdrh for(j=nSkip; j<nEq; j++){ 7276f82e85aSdrh int r1; 7286f82e85aSdrh pTerm = pLoop->aLTerm[j]; 7296f82e85aSdrh assert( pTerm!=0 ); 7306f82e85aSdrh /* The following testcase is true for indices with redundant columns. 7316f82e85aSdrh ** Ex: CREATE INDEX i1 ON t1(a,b,a); SELECT * FROM t1 WHERE a=0 AND b=0; */ 7326f82e85aSdrh testcase( (pTerm->wtFlags & TERM_CODED)!=0 ); 7336f82e85aSdrh testcase( pTerm->wtFlags & TERM_VIRTUAL ); 7346f82e85aSdrh r1 = codeEqualityTerm(pParse, pTerm, pLevel, j, bRev, regBase+j); 7356f82e85aSdrh if( r1!=regBase+j ){ 7366f82e85aSdrh if( nReg==1 ){ 7376f82e85aSdrh sqlite3ReleaseTempReg(pParse, regBase); 7386f82e85aSdrh regBase = r1; 7396f82e85aSdrh }else{ 7406f82e85aSdrh sqlite3VdbeAddOp2(v, OP_SCopy, r1, regBase+j); 7416f82e85aSdrh } 7426f82e85aSdrh } 74327189603Sdan if( pTerm->eOperator & WO_IN ){ 74427189603Sdan if( pTerm->pExpr->flags & EP_xIsSelect ){ 7451c12657fSdan /* No affinity ever needs to be (or should be) applied to a value 7461c12657fSdan ** from the RHS of an "? IN (SELECT ...)" expression. The 7471c12657fSdan ** sqlite3FindInIndex() routine has already ensured that the 7481c12657fSdan ** affinity of the comparison has been applied to the value. */ 749aaf8a064Sdrh if( zAff ) zAff[j] = SQLITE_AFF_BLOB; 75027189603Sdan } 751c097e122Sdrh }else if( (pTerm->eOperator & WO_ISNULL)==0 ){ 7521c12657fSdan Expr *pRight = pTerm->pExpr->pRight; 7536f82e85aSdrh if( (pTerm->wtFlags & TERM_IS)==0 && sqlite3ExprCanBeNull(pRight) ){ 7546f82e85aSdrh sqlite3VdbeAddOp2(v, OP_IsNull, regBase+j, pLevel->addrBrk); 7556f82e85aSdrh VdbeCoverage(v); 7566f82e85aSdrh } 7571c12657fSdan if( zAff ){ 7586f82e85aSdrh if( sqlite3CompareAffinity(pRight, zAff[j])==SQLITE_AFF_BLOB ){ 7596f82e85aSdrh zAff[j] = SQLITE_AFF_BLOB; 7606f82e85aSdrh } 7616f82e85aSdrh if( sqlite3ExprNeedsNoAffinityChange(pRight, zAff[j]) ){ 7626f82e85aSdrh zAff[j] = SQLITE_AFF_BLOB; 7636f82e85aSdrh } 7646f82e85aSdrh } 7656f82e85aSdrh } 7666f82e85aSdrh } 7676f82e85aSdrh *pzAff = zAff; 7686f82e85aSdrh return regBase; 7696f82e85aSdrh } 7706f82e85aSdrh 77141d2e66eSdrh #ifndef SQLITE_LIKE_DOESNT_MATCH_BLOBS 7726f82e85aSdrh /* 77344aebff2Sdrh ** If the most recently coded instruction is a constant range constraint 77444aebff2Sdrh ** (a string literal) that originated from the LIKE optimization, then 77544aebff2Sdrh ** set P3 and P5 on the OP_String opcode so that the string will be cast 77644aebff2Sdrh ** to a BLOB at appropriate times. 7776f82e85aSdrh ** 7786f82e85aSdrh ** The LIKE optimization trys to evaluate "x LIKE 'abc%'" as a range 7796f82e85aSdrh ** expression: "x>='ABC' AND x<'abd'". But this requires that the range 7806f82e85aSdrh ** scan loop run twice, once for strings and a second time for BLOBs. 7816f82e85aSdrh ** The OP_String opcodes on the second pass convert the upper and lower 782e234cfd1Smistachkin ** bound string constants to blobs. This routine makes the necessary changes 7836f82e85aSdrh ** to the OP_String opcodes for that to happen. 78441d2e66eSdrh ** 78541d2e66eSdrh ** Except, of course, if SQLITE_LIKE_DOESNT_MATCH_BLOBS is defined, then 78641d2e66eSdrh ** only the one pass through the string space is required, so this routine 78741d2e66eSdrh ** becomes a no-op. 7886f82e85aSdrh */ 7896f82e85aSdrh static void whereLikeOptimizationStringFixup( 7906f82e85aSdrh Vdbe *v, /* prepared statement under construction */ 7916f82e85aSdrh WhereLevel *pLevel, /* The loop that contains the LIKE operator */ 7926f82e85aSdrh WhereTerm *pTerm /* The upper or lower bound just coded */ 7936f82e85aSdrh ){ 7946f82e85aSdrh if( pTerm->wtFlags & TERM_LIKEOPT ){ 7956f82e85aSdrh VdbeOp *pOp; 7966f82e85aSdrh assert( pLevel->iLikeRepCntr>0 ); 7976f82e85aSdrh pOp = sqlite3VdbeGetOp(v, -1); 7986f82e85aSdrh assert( pOp!=0 ); 7996f82e85aSdrh assert( pOp->opcode==OP_String8 8006f82e85aSdrh || pTerm->pWC->pWInfo->pParse->db->mallocFailed ); 80144aebff2Sdrh pOp->p3 = (int)(pLevel->iLikeRepCntr>>1); /* Register holding counter */ 80244aebff2Sdrh pOp->p5 = (u8)(pLevel->iLikeRepCntr&1); /* ASC or DESC */ 8036f82e85aSdrh } 8046f82e85aSdrh } 80541d2e66eSdrh #else 80641d2e66eSdrh # define whereLikeOptimizationStringFixup(A,B,C) 80741d2e66eSdrh #endif 8086f82e85aSdrh 809bec2476aSdrh #ifdef SQLITE_ENABLE_CURSOR_HINTS 8102f2b0278Sdrh /* 8112f2b0278Sdrh ** Information is passed from codeCursorHint() down to individual nodes of 8122f2b0278Sdrh ** the expression tree (by sqlite3WalkExpr()) using an instance of this 8132f2b0278Sdrh ** structure. 8142f2b0278Sdrh */ 8152f2b0278Sdrh struct CCurHint { 8162f2b0278Sdrh int iTabCur; /* Cursor for the main table */ 8172f2b0278Sdrh int iIdxCur; /* Cursor for the index, if pIdx!=0. Unused otherwise */ 8182f2b0278Sdrh Index *pIdx; /* The index used to access the table */ 8192f2b0278Sdrh }; 8202f2b0278Sdrh 8212f2b0278Sdrh /* 8222f2b0278Sdrh ** This function is called for every node of an expression that is a candidate 8232f2b0278Sdrh ** for a cursor hint on an index cursor. For TK_COLUMN nodes that reference 8242f2b0278Sdrh ** the table CCurHint.iTabCur, verify that the same column can be 8252f2b0278Sdrh ** accessed through the index. If it cannot, then set pWalker->eCode to 1. 8262f2b0278Sdrh */ 8272f2b0278Sdrh static int codeCursorHintCheckExpr(Walker *pWalker, Expr *pExpr){ 8282f2b0278Sdrh struct CCurHint *pHint = pWalker->u.pCCurHint; 8292f2b0278Sdrh assert( pHint->pIdx!=0 ); 8302f2b0278Sdrh if( pExpr->op==TK_COLUMN 8312f2b0278Sdrh && pExpr->iTable==pHint->iTabCur 832b9bcf7caSdrh && sqlite3TableColumnToIndex(pHint->pIdx, pExpr->iColumn)<0 8332f2b0278Sdrh ){ 8342f2b0278Sdrh pWalker->eCode = 1; 8352f2b0278Sdrh } 8362f2b0278Sdrh return WRC_Continue; 8372f2b0278Sdrh } 8382f2b0278Sdrh 839e6912fd8Sdan /* 840e6912fd8Sdan ** Test whether or not expression pExpr, which was part of a WHERE clause, 841e6912fd8Sdan ** should be included in the cursor-hint for a table that is on the rhs 842e6912fd8Sdan ** of a LEFT JOIN. Set Walker.eCode to non-zero before returning if the 843e6912fd8Sdan ** expression is not suitable. 844e6912fd8Sdan ** 845e6912fd8Sdan ** An expression is unsuitable if it might evaluate to non NULL even if 846e6912fd8Sdan ** a TK_COLUMN node that does affect the value of the expression is set 847e6912fd8Sdan ** to NULL. For example: 848e6912fd8Sdan ** 849e6912fd8Sdan ** col IS NULL 850e6912fd8Sdan ** col IS NOT NULL 851e6912fd8Sdan ** coalesce(col, 1) 852e6912fd8Sdan ** CASE WHEN col THEN 0 ELSE 1 END 853e6912fd8Sdan */ 854e6912fd8Sdan static int codeCursorHintIsOrFunction(Walker *pWalker, Expr *pExpr){ 8552b693d63Sdan if( pExpr->op==TK_IS 856e6912fd8Sdan || pExpr->op==TK_ISNULL || pExpr->op==TK_ISNOT 857e6912fd8Sdan || pExpr->op==TK_NOTNULL || pExpr->op==TK_CASE 858e6912fd8Sdan ){ 859e6912fd8Sdan pWalker->eCode = 1; 8602b693d63Sdan }else if( pExpr->op==TK_FUNCTION ){ 8612b693d63Sdan int d1; 8621d42ea71Sdrh char d2[4]; 8632b693d63Sdan if( 0==sqlite3IsLikeFunction(pWalker->pParse->db, pExpr, &d1, d2) ){ 8642b693d63Sdan pWalker->eCode = 1; 865e6912fd8Sdan } 8662b693d63Sdan } 8672b693d63Sdan 868e6912fd8Sdan return WRC_Continue; 869e6912fd8Sdan } 870e6912fd8Sdan 871bec2476aSdrh 872bec2476aSdrh /* 873bec2476aSdrh ** This function is called on every node of an expression tree used as an 874bec2476aSdrh ** argument to the OP_CursorHint instruction. If the node is a TK_COLUMN 8752f2b0278Sdrh ** that accesses any table other than the one identified by 8762f2b0278Sdrh ** CCurHint.iTabCur, then do the following: 877bec2476aSdrh ** 878bec2476aSdrh ** 1) allocate a register and code an OP_Column instruction to read 879bec2476aSdrh ** the specified column into the new register, and 880bec2476aSdrh ** 881bec2476aSdrh ** 2) transform the expression node to a TK_REGISTER node that reads 882bec2476aSdrh ** from the newly populated register. 8832f2b0278Sdrh ** 8842f2b0278Sdrh ** Also, if the node is a TK_COLUMN that does access the table idenified 8852f2b0278Sdrh ** by pCCurHint.iTabCur, and an index is being used (which we will 8862f2b0278Sdrh ** know because CCurHint.pIdx!=0) then transform the TK_COLUMN into 8872f2b0278Sdrh ** an access of the index rather than the original table. 888bec2476aSdrh */ 889bec2476aSdrh static int codeCursorHintFixExpr(Walker *pWalker, Expr *pExpr){ 890bec2476aSdrh int rc = WRC_Continue; 8912f2b0278Sdrh struct CCurHint *pHint = pWalker->u.pCCurHint; 892be312ae9Sdan if( pExpr->op==TK_COLUMN ){ 8932f2b0278Sdrh if( pExpr->iTable!=pHint->iTabCur ){ 894bec2476aSdrh int reg = ++pWalker->pParse->nMem; /* Register for column value */ 895e3e79213Sdan sqlite3ExprCode(pWalker->pParse, pExpr, reg); 896bec2476aSdrh pExpr->op = TK_REGISTER; 897bec2476aSdrh pExpr->iTable = reg; 8982f2b0278Sdrh }else if( pHint->pIdx!=0 ){ 8992f2b0278Sdrh pExpr->iTable = pHint->iIdxCur; 900b9bcf7caSdrh pExpr->iColumn = sqlite3TableColumnToIndex(pHint->pIdx, pExpr->iColumn); 9012f2b0278Sdrh assert( pExpr->iColumn>=0 ); 9022f2b0278Sdrh } 903bec2476aSdrh }else if( pExpr->op==TK_AGG_FUNCTION ){ 904bec2476aSdrh /* An aggregate function in the WHERE clause of a query means this must 905bec2476aSdrh ** be a correlated sub-query, and expression pExpr is an aggregate from 906bec2476aSdrh ** the parent context. Do not walk the function arguments in this case. 907bec2476aSdrh ** 908bec2476aSdrh ** todo: It should be possible to replace this node with a TK_REGISTER 909bec2476aSdrh ** expression, as the result of the expression must be stored in a 910bec2476aSdrh ** register at this point. The same holds for TK_AGG_COLUMN nodes. */ 911bec2476aSdrh rc = WRC_Prune; 912bec2476aSdrh } 913bec2476aSdrh return rc; 914bec2476aSdrh } 915bec2476aSdrh 916bec2476aSdrh /* 917bec2476aSdrh ** Insert an OP_CursorHint instruction if it is appropriate to do so. 918bec2476aSdrh */ 919bec2476aSdrh static void codeCursorHint( 920b324cf75Sdan struct SrcList_item *pTabItem, /* FROM clause item */ 921b413a546Sdrh WhereInfo *pWInfo, /* The where clause */ 922b413a546Sdrh WhereLevel *pLevel, /* Which loop to provide hints for */ 923b413a546Sdrh WhereTerm *pEndRange /* Hint this end-of-scan boundary term if not NULL */ 924bec2476aSdrh ){ 925bec2476aSdrh Parse *pParse = pWInfo->pParse; 926bec2476aSdrh sqlite3 *db = pParse->db; 927bec2476aSdrh Vdbe *v = pParse->pVdbe; 928bec2476aSdrh Expr *pExpr = 0; 9292f2b0278Sdrh WhereLoop *pLoop = pLevel->pWLoop; 930bec2476aSdrh int iCur; 931bec2476aSdrh WhereClause *pWC; 932bec2476aSdrh WhereTerm *pTerm; 933b413a546Sdrh int i, j; 9342f2b0278Sdrh struct CCurHint sHint; 9352f2b0278Sdrh Walker sWalker; 936bec2476aSdrh 937bec2476aSdrh if( OptimizationDisabled(db, SQLITE_CursorHints) ) return; 9382f2b0278Sdrh iCur = pLevel->iTabCur; 9392f2b0278Sdrh assert( iCur==pWInfo->pTabList->a[pLevel->iFrom].iCursor ); 9402f2b0278Sdrh sHint.iTabCur = iCur; 9412f2b0278Sdrh sHint.iIdxCur = pLevel->iIdxCur; 9422f2b0278Sdrh sHint.pIdx = pLoop->u.btree.pIndex; 9432f2b0278Sdrh memset(&sWalker, 0, sizeof(sWalker)); 9442f2b0278Sdrh sWalker.pParse = pParse; 9452f2b0278Sdrh sWalker.u.pCCurHint = &sHint; 946bec2476aSdrh pWC = &pWInfo->sWC; 947bec2476aSdrh for(i=0; i<pWC->nTerm; i++){ 948bec2476aSdrh pTerm = &pWC->a[i]; 949bec2476aSdrh if( pTerm->wtFlags & (TERM_VIRTUAL|TERM_CODED) ) continue; 950bec2476aSdrh if( pTerm->prereqAll & pLevel->notReady ) continue; 951b324cf75Sdan 952b324cf75Sdan /* Any terms specified as part of the ON(...) clause for any LEFT 953b324cf75Sdan ** JOIN for which the current table is not the rhs are omitted 954b324cf75Sdan ** from the cursor-hint. 955b324cf75Sdan ** 956e6912fd8Sdan ** If this table is the rhs of a LEFT JOIN, "IS" or "IS NULL" terms 957e6912fd8Sdan ** that were specified as part of the WHERE clause must be excluded. 958e6912fd8Sdan ** This is to address the following: 959b324cf75Sdan ** 960b324cf75Sdan ** SELECT ... t1 LEFT JOIN t2 ON (t1.a=t2.b) WHERE t2.c IS NULL; 961b324cf75Sdan ** 962e6912fd8Sdan ** Say there is a single row in t2 that matches (t1.a=t2.b), but its 963e6912fd8Sdan ** t2.c values is not NULL. If the (t2.c IS NULL) constraint is 964e6912fd8Sdan ** pushed down to the cursor, this row is filtered out, causing 965e6912fd8Sdan ** SQLite to synthesize a row of NULL values. Which does match the 966e6912fd8Sdan ** WHERE clause, and so the query returns a row. Which is incorrect. 967e6912fd8Sdan ** 968e6912fd8Sdan ** For the same reason, WHERE terms such as: 969e6912fd8Sdan ** 970e6912fd8Sdan ** WHERE 1 = (t2.c IS NULL) 971e6912fd8Sdan ** 972e6912fd8Sdan ** are also excluded. See codeCursorHintIsOrFunction() for details. 973b324cf75Sdan */ 974b324cf75Sdan if( pTabItem->fg.jointype & JT_LEFT ){ 975e6912fd8Sdan Expr *pExpr = pTerm->pExpr; 976e6912fd8Sdan if( !ExprHasProperty(pExpr, EP_FromJoin) 977e6912fd8Sdan || pExpr->iRightJoinTable!=pTabItem->iCursor 978b324cf75Sdan ){ 979e6912fd8Sdan sWalker.eCode = 0; 980e6912fd8Sdan sWalker.xExprCallback = codeCursorHintIsOrFunction; 981e6912fd8Sdan sqlite3WalkExpr(&sWalker, pTerm->pExpr); 982e6912fd8Sdan if( sWalker.eCode ) continue; 983b324cf75Sdan } 984b324cf75Sdan }else{ 985bec2476aSdrh if( ExprHasProperty(pTerm->pExpr, EP_FromJoin) ) continue; 986b324cf75Sdan } 987b413a546Sdrh 988b413a546Sdrh /* All terms in pWLoop->aLTerm[] except pEndRange are used to initialize 989bcf40a7fSdrh ** the cursor. These terms are not needed as hints for a pure range 990bcf40a7fSdrh ** scan (that has no == terms) so omit them. */ 991bcf40a7fSdrh if( pLoop->u.btree.nEq==0 && pTerm!=pEndRange ){ 992bcf40a7fSdrh for(j=0; j<pLoop->nLTerm && pLoop->aLTerm[j]!=pTerm; j++){} 993bcf40a7fSdrh if( j<pLoop->nLTerm ) continue; 994b413a546Sdrh } 995b413a546Sdrh 996b413a546Sdrh /* No subqueries or non-deterministic functions allowed */ 997bec2476aSdrh if( sqlite3ExprContainsSubquery(pTerm->pExpr) ) continue; 998b413a546Sdrh 999b413a546Sdrh /* For an index scan, make sure referenced columns are actually in 1000b413a546Sdrh ** the index. */ 10012f2b0278Sdrh if( sHint.pIdx!=0 ){ 10022f2b0278Sdrh sWalker.eCode = 0; 10032f2b0278Sdrh sWalker.xExprCallback = codeCursorHintCheckExpr; 10042f2b0278Sdrh sqlite3WalkExpr(&sWalker, pTerm->pExpr); 10052f2b0278Sdrh if( sWalker.eCode ) continue; 10062f2b0278Sdrh } 1007b413a546Sdrh 1008b413a546Sdrh /* If we survive all prior tests, that means this term is worth hinting */ 1009d5c851c1Sdrh pExpr = sqlite3ExprAnd(pParse, pExpr, sqlite3ExprDup(db, pTerm->pExpr, 0)); 1010bec2476aSdrh } 1011bec2476aSdrh if( pExpr!=0 ){ 1012bec2476aSdrh sWalker.xExprCallback = codeCursorHintFixExpr; 1013bec2476aSdrh sqlite3WalkExpr(&sWalker, pExpr); 10142f2b0278Sdrh sqlite3VdbeAddOp4(v, OP_CursorHint, 10152f2b0278Sdrh (sHint.pIdx ? sHint.iIdxCur : sHint.iTabCur), 0, 0, 10162f2b0278Sdrh (const char*)pExpr, P4_EXPR); 1017bec2476aSdrh } 1018bec2476aSdrh } 1019bec2476aSdrh #else 1020b324cf75Sdan # define codeCursorHint(A,B,C,D) /* No-op */ 1021bec2476aSdrh #endif /* SQLITE_ENABLE_CURSOR_HINTS */ 10226f82e85aSdrh 10236f82e85aSdrh /* 1024de892d96Sdan ** Cursor iCur is open on an intkey b-tree (a table). Register iRowid contains 1025de892d96Sdan ** a rowid value just read from cursor iIdxCur, open on index pIdx. This 1026de892d96Sdan ** function generates code to do a deferred seek of cursor iCur to the 1027de892d96Sdan ** rowid stored in register iRowid. 1028de892d96Sdan ** 1029de892d96Sdan ** Normally, this is just: 1030de892d96Sdan ** 1031170ad68aSdrh ** OP_DeferredSeek $iCur $iRowid 1032de892d96Sdan ** 1033de892d96Sdan ** However, if the scan currently being coded is a branch of an OR-loop and 1034170ad68aSdrh ** the statement currently being coded is a SELECT, then P3 of OP_DeferredSeek 1035de892d96Sdan ** is set to iIdxCur and P4 is set to point to an array of integers 1036de892d96Sdan ** containing one entry for each column of the table cursor iCur is open 1037de892d96Sdan ** on. For each table column, if the column is the i'th column of the 1038de892d96Sdan ** index, then the corresponding array entry is set to (i+1). If the column 1039de892d96Sdan ** does not appear in the index at all, the array entry is set to 0. 1040de892d96Sdan */ 1041de892d96Sdan static void codeDeferredSeek( 1042de892d96Sdan WhereInfo *pWInfo, /* Where clause context */ 1043de892d96Sdan Index *pIdx, /* Index scan is using */ 1044de892d96Sdan int iCur, /* Cursor for IPK b-tree */ 1045de892d96Sdan int iIdxCur /* Index cursor */ 1046de892d96Sdan ){ 1047de892d96Sdan Parse *pParse = pWInfo->pParse; /* Parse context */ 1048de892d96Sdan Vdbe *v = pParse->pVdbe; /* Vdbe to generate code within */ 1049de892d96Sdan 1050de892d96Sdan assert( iIdxCur>0 ); 1051de892d96Sdan assert( pIdx->aiColumn[pIdx->nColumn-1]==-1 ); 1052de892d96Sdan 1053be3da241Sdrh pWInfo->bDeferredSeek = 1; 1054170ad68aSdrh sqlite3VdbeAddOp3(v, OP_DeferredSeek, iIdxCur, 0, iCur); 1055ce943bc8Sdrh if( (pWInfo->wctrlFlags & WHERE_OR_SUBCLAUSE) 1056cddb6ba0Sdan && DbMaskAllZero(sqlite3ParseToplevel(pParse)->writeMask) 1057de892d96Sdan ){ 1058de892d96Sdan int i; 1059de892d96Sdan Table *pTab = pIdx->pTable; 1060abc38158Sdrh u32 *ai = (u32*)sqlite3DbMallocZero(pParse->db, sizeof(u32)*(pTab->nCol+1)); 1061de892d96Sdan if( ai ){ 1062b1702026Sdrh ai[0] = pTab->nCol; 1063de892d96Sdan for(i=0; i<pIdx->nColumn-1; i++){ 10644fb24c82Sdrh int x1, x2; 1065de892d96Sdan assert( pIdx->aiColumn[i]<pTab->nCol ); 10664fb24c82Sdrh x1 = pIdx->aiColumn[i]; 10674fb24c82Sdrh x2 = sqlite3TableColumnToStorage(pTab, x1); 10684fb24c82Sdrh testcase( x1!=x2 ); 1069bde3a4f6Smistachkin if( x1>=0 ) ai[x2+1] = i+1; 1070de892d96Sdan } 1071de892d96Sdan sqlite3VdbeChangeP4(v, -1, (char*)ai, P4_INTARRAY); 1072de892d96Sdan } 1073de892d96Sdan } 1074de892d96Sdan } 1075de892d96Sdan 1076553168c7Sdan /* 1077553168c7Sdan ** If the expression passed as the second argument is a vector, generate 1078553168c7Sdan ** code to write the first nReg elements of the vector into an array 1079553168c7Sdan ** of registers starting with iReg. 1080553168c7Sdan ** 1081553168c7Sdan ** If the expression is not a vector, then nReg must be passed 1. In 1082553168c7Sdan ** this case, generate code to evaluate the expression and leave the 1083553168c7Sdan ** result in register iReg. 1084553168c7Sdan */ 108571c57db0Sdan static void codeExprOrVector(Parse *pParse, Expr *p, int iReg, int nReg){ 108671c57db0Sdan assert( nReg>0 ); 1087d03024d8Sdan if( p && sqlite3ExprIsVector(p) ){ 1088f9b2e05cSdan #ifndef SQLITE_OMIT_SUBQUERY 1089f9b2e05cSdan if( (p->flags & EP_xIsSelect) ){ 1090f9b2e05cSdan Vdbe *v = pParse->pVdbe; 109185bcdce2Sdrh int iSelect; 109285bcdce2Sdrh assert( p->op==TK_SELECT ); 109385bcdce2Sdrh iSelect = sqlite3CodeSubselect(pParse, p); 1094f9b2e05cSdan sqlite3VdbeAddOp3(v, OP_Copy, iSelect, iReg, nReg-1); 1095f9b2e05cSdan }else 1096f9b2e05cSdan #endif 1097f9b2e05cSdan { 109871c57db0Sdan int i; 109971c57db0Sdan ExprList *pList = p->x.pList; 110071c57db0Sdan assert( nReg<=pList->nExpr ); 110171c57db0Sdan for(i=0; i<nReg; i++){ 110271c57db0Sdan sqlite3ExprCode(pParse, pList->a[i].pExpr, iReg+i); 110371c57db0Sdan } 110471c57db0Sdan } 110571c57db0Sdan }else{ 110671c57db0Sdan assert( nReg==1 ); 110771c57db0Sdan sqlite3ExprCode(pParse, p, iReg); 110871c57db0Sdan } 110971c57db0Sdan } 111071c57db0Sdan 1111eac5fc04Sdrh /* An instance of the IdxExprTrans object carries information about a 1112eac5fc04Sdrh ** mapping from an expression on table columns into a column in an index 1113eac5fc04Sdrh ** down through the Walker. 1114eac5fc04Sdrh */ 1115aca19e19Sdrh typedef struct IdxExprTrans { 1116aca19e19Sdrh Expr *pIdxExpr; /* The index expression */ 1117aca19e19Sdrh int iTabCur; /* The cursor of the corresponding table */ 1118aca19e19Sdrh int iIdxCur; /* The cursor for the index */ 1119aca19e19Sdrh int iIdxCol; /* The column for the index */ 1120c7476735Sdrh int iTabCol; /* The column for the table */ 112136e678bcSdrh WhereInfo *pWInfo; /* Complete WHERE clause information */ 112236e678bcSdrh sqlite3 *db; /* Database connection (for malloc()) */ 1123aca19e19Sdrh } IdxExprTrans; 1124aca19e19Sdrh 112536e678bcSdrh /* 112636e678bcSdrh ** Preserve pExpr on the WhereETrans list of the WhereInfo. 112736e678bcSdrh */ 112836e678bcSdrh static void preserveExpr(IdxExprTrans *pTrans, Expr *pExpr){ 112936e678bcSdrh WhereExprMod *pNew; 113036e678bcSdrh pNew = sqlite3DbMallocRaw(pTrans->db, sizeof(*pNew)); 113136e678bcSdrh if( pNew==0 ) return; 113236e678bcSdrh pNew->pNext = pTrans->pWInfo->pExprMods; 113336e678bcSdrh pTrans->pWInfo->pExprMods = pNew; 113436e678bcSdrh pNew->pExpr = pExpr; 113536e678bcSdrh memcpy(&pNew->orig, pExpr, sizeof(*pExpr)); 113636e678bcSdrh } 113736e678bcSdrh 1138eac5fc04Sdrh /* The walker node callback used to transform matching expressions into 1139eac5fc04Sdrh ** a reference to an index column for an index on an expression. 1140eac5fc04Sdrh ** 1141eac5fc04Sdrh ** If pExpr matches, then transform it into a reference to the index column 1142eac5fc04Sdrh ** that contains the value of pExpr. 1143eac5fc04Sdrh */ 1144aca19e19Sdrh static int whereIndexExprTransNode(Walker *p, Expr *pExpr){ 1145aca19e19Sdrh IdxExprTrans *pX = p->u.pIdxTrans; 11465aa550cfSdan if( sqlite3ExprCompare(0, pExpr, pX->pIdxExpr, pX->iTabCur)==0 ){ 114736e678bcSdrh preserveExpr(pX, pExpr); 1148b6ce71bdSdan pExpr->affExpr = sqlite3ExprAffinity(pExpr); 1149aca19e19Sdrh pExpr->op = TK_COLUMN; 1150aca19e19Sdrh pExpr->iTable = pX->iIdxCur; 1151aca19e19Sdrh pExpr->iColumn = pX->iIdxCol; 1152eda079cdSdrh pExpr->y.pTab = 0; 11536c1c85caSdrh testcase( ExprHasProperty(pExpr, EP_Skip) ); 11546c1c85caSdrh testcase( ExprHasProperty(pExpr, EP_Unlikely) ); 11556c1c85caSdrh ExprClearProperty(pExpr, EP_Skip|EP_Unlikely); 1156aca19e19Sdrh return WRC_Prune; 1157aca19e19Sdrh }else{ 1158aca19e19Sdrh return WRC_Continue; 1159aca19e19Sdrh } 1160aca19e19Sdrh } 1161aca19e19Sdrh 1162c7476735Sdrh #ifndef SQLITE_OMIT_GENERATED_COLUMNS 1163c7476735Sdrh /* A walker node callback that translates a column reference to a table 1164c7476735Sdrh ** into a corresponding column reference of an index. 1165c7476735Sdrh */ 1166c7476735Sdrh static int whereIndexExprTransColumn(Walker *p, Expr *pExpr){ 1167c7476735Sdrh if( pExpr->op==TK_COLUMN ){ 1168c7476735Sdrh IdxExprTrans *pX = p->u.pIdxTrans; 1169c7476735Sdrh if( pExpr->iTable==pX->iTabCur && pExpr->iColumn==pX->iTabCol ){ 117057f7ece7Sdrh assert( pExpr->y.pTab!=0 ); 117136e678bcSdrh preserveExpr(pX, pExpr); 117257f7ece7Sdrh pExpr->affExpr = sqlite3TableColumnAffinity(pExpr->y.pTab,pExpr->iColumn); 1173c7476735Sdrh pExpr->iTable = pX->iIdxCur; 1174c7476735Sdrh pExpr->iColumn = pX->iIdxCol; 11754485ac1aSdrh pExpr->y.pTab = 0; 1176c7476735Sdrh } 1177c7476735Sdrh } 1178c7476735Sdrh return WRC_Continue; 1179c7476735Sdrh } 1180c7476735Sdrh #endif /* SQLITE_OMIT_GENERATED_COLUMNS */ 1181c7476735Sdrh 1182aca19e19Sdrh /* 1183f49759bfSdrh ** For an indexes on expression X, locate every instance of expression X 1184f49759bfSdrh ** in pExpr and change that subexpression into a reference to the appropriate 1185f49759bfSdrh ** column of the index. 1186c7476735Sdrh ** 1187c7476735Sdrh ** 2019-10-24: Updated to also translate references to a VIRTUAL column in 1188c7476735Sdrh ** the table into references to the corresponding (stored) column of the 1189c7476735Sdrh ** index. 1190aca19e19Sdrh */ 1191aca19e19Sdrh static void whereIndexExprTrans( 1192aca19e19Sdrh Index *pIdx, /* The Index */ 1193aca19e19Sdrh int iTabCur, /* Cursor of the table that is being indexed */ 1194aca19e19Sdrh int iIdxCur, /* Cursor of the index itself */ 1195aca19e19Sdrh WhereInfo *pWInfo /* Transform expressions in this WHERE clause */ 1196aca19e19Sdrh ){ 1197aca19e19Sdrh int iIdxCol; /* Column number of the index */ 1198aca19e19Sdrh ExprList *aColExpr; /* Expressions that are indexed */ 1199c7476735Sdrh Table *pTab; 1200aca19e19Sdrh Walker w; 1201aca19e19Sdrh IdxExprTrans x; 1202aca19e19Sdrh aColExpr = pIdx->aColExpr; 1203c7476735Sdrh if( aColExpr==0 && !pIdx->bHasVCol ){ 1204c7476735Sdrh /* The index does not reference any expressions or virtual columns 1205c7476735Sdrh ** so no translations are needed. */ 1206c7476735Sdrh return; 1207c7476735Sdrh } 1208c7476735Sdrh pTab = pIdx->pTable; 1209aca19e19Sdrh memset(&w, 0, sizeof(w)); 1210aca19e19Sdrh w.u.pIdxTrans = &x; 1211aca19e19Sdrh x.iTabCur = iTabCur; 1212aca19e19Sdrh x.iIdxCur = iIdxCur; 121336e678bcSdrh x.pWInfo = pWInfo; 121436e678bcSdrh x.db = pWInfo->pParse->db; 1215c7476735Sdrh for(iIdxCol=0; iIdxCol<pIdx->nColumn; iIdxCol++){ 1216c7476735Sdrh i16 iRef = pIdx->aiColumn[iIdxCol]; 1217c7476735Sdrh if( iRef==XN_EXPR ){ 1218aca19e19Sdrh assert( aColExpr->a[iIdxCol].pExpr!=0 ); 1219aca19e19Sdrh x.pIdxExpr = aColExpr->a[iIdxCol].pExpr; 1220e86f3402Sdrh if( sqlite3ExprIsConstant(x.pIdxExpr) ) continue; 1221c7476735Sdrh w.xExprCallback = whereIndexExprTransNode; 1222c7476735Sdrh #ifndef SQLITE_OMIT_GENERATED_COLUMNS 1223ed0c3485Sdrh }else if( iRef>=0 1224ed0c3485Sdrh && (pTab->aCol[iRef].colFlags & COLFLAG_VIRTUAL)!=0 1225ed0c3485Sdrh && (pTab->aCol[iRef].zColl==0 1226ed0c3485Sdrh || sqlite3StrICmp(pTab->aCol[iRef].zColl, sqlite3StrBINARY)==0) 1227ed0c3485Sdrh ){ 1228ed0c3485Sdrh /* Check to see if there are direct references to generated columns 1229ed0c3485Sdrh ** that are contained in the index. Pulling the generated column 1230ed0c3485Sdrh ** out of the index is an optimization only - the main table is always 1231ed0c3485Sdrh ** available if the index cannot be used. To avoid unnecessary 1232ed0c3485Sdrh ** complication, omit this optimization if the collating sequence for 1233ed0c3485Sdrh ** the column is non-standard */ 1234c7476735Sdrh x.iTabCol = iRef; 1235c7476735Sdrh w.xExprCallback = whereIndexExprTransColumn; 1236c7476735Sdrh #endif /* SQLITE_OMIT_GENERATED_COLUMNS */ 1237c7476735Sdrh }else{ 1238c7476735Sdrh continue; 1239c7476735Sdrh } 1240c7476735Sdrh x.iIdxCol = iIdxCol; 1241aca19e19Sdrh sqlite3WalkExpr(&w, pWInfo->pWhere); 1242aca19e19Sdrh sqlite3WalkExprList(&w, pWInfo->pOrderBy); 1243aca19e19Sdrh sqlite3WalkExprList(&w, pWInfo->pResultSet); 1244aca19e19Sdrh } 1245aca19e19Sdrh } 1246aca19e19Sdrh 1247de892d96Sdan /* 1248610f11deSdrh ** The pTruth expression is always true because it is the WHERE clause 1249b531aa8fSdrh ** a partial index that is driving a query loop. Look through all of the 1250b531aa8fSdrh ** WHERE clause terms on the query, and if any of those terms must be 1251b531aa8fSdrh ** true because pTruth is true, then mark those WHERE clause terms as 1252b531aa8fSdrh ** coded. 1253b531aa8fSdrh */ 1254b531aa8fSdrh static void whereApplyPartialIndexConstraints( 1255b531aa8fSdrh Expr *pTruth, 1256b531aa8fSdrh int iTabCur, 1257b531aa8fSdrh WhereClause *pWC 1258b531aa8fSdrh ){ 1259b531aa8fSdrh int i; 1260b531aa8fSdrh WhereTerm *pTerm; 1261b531aa8fSdrh while( pTruth->op==TK_AND ){ 1262b531aa8fSdrh whereApplyPartialIndexConstraints(pTruth->pLeft, iTabCur, pWC); 1263b531aa8fSdrh pTruth = pTruth->pRight; 1264b531aa8fSdrh } 1265b531aa8fSdrh for(i=0, pTerm=pWC->a; i<pWC->nTerm; i++, pTerm++){ 1266b531aa8fSdrh Expr *pExpr; 1267b531aa8fSdrh if( pTerm->wtFlags & TERM_CODED ) continue; 1268b531aa8fSdrh pExpr = pTerm->pExpr; 1269b531aa8fSdrh if( sqlite3ExprCompare(0, pExpr, pTruth, iTabCur)==0 ){ 1270b531aa8fSdrh pTerm->wtFlags |= TERM_CODED; 1271b531aa8fSdrh } 1272b531aa8fSdrh } 1273b531aa8fSdrh } 1274b531aa8fSdrh 1275b531aa8fSdrh /* 12766f82e85aSdrh ** Generate code for the start of the iLevel-th loop in the WHERE clause 12776f82e85aSdrh ** implementation described by pWInfo. 12786f82e85aSdrh */ 12796f82e85aSdrh Bitmask sqlite3WhereCodeOneLoopStart( 128047df8a2cSdrh Parse *pParse, /* Parsing context */ 128147df8a2cSdrh Vdbe *v, /* Prepared statement under construction */ 12826f82e85aSdrh WhereInfo *pWInfo, /* Complete information about the WHERE clause */ 12836f82e85aSdrh int iLevel, /* Which level of pWInfo->a[] should be coded */ 128447df8a2cSdrh WhereLevel *pLevel, /* The current level pointer */ 12856f82e85aSdrh Bitmask notReady /* Which tables are currently available */ 12866f82e85aSdrh ){ 12876f82e85aSdrh int j, k; /* Loop counters */ 12886f82e85aSdrh int iCur; /* The VDBE cursor for the table */ 12896f82e85aSdrh int addrNxt; /* Where to jump to continue with the next IN case */ 12906f82e85aSdrh int bRev; /* True if we need to scan in reverse order */ 12916f82e85aSdrh WhereLoop *pLoop; /* The WhereLoop object being coded */ 12926f82e85aSdrh WhereClause *pWC; /* Decomposition of the entire WHERE clause */ 12936f82e85aSdrh WhereTerm *pTerm; /* A WHERE clause term */ 12946f82e85aSdrh sqlite3 *db; /* Database connection */ 12956f82e85aSdrh struct SrcList_item *pTabItem; /* FROM clause term being coded */ 12966f82e85aSdrh int addrBrk; /* Jump here to break out of the loop */ 12973a3b420aSdrh int addrHalt; /* addrBrk for the outermost loop */ 12986f82e85aSdrh int addrCont; /* Jump here to continue with next cycle */ 12996f82e85aSdrh int iRowidReg = 0; /* Rowid is stored in this register, if not zero */ 13006f82e85aSdrh int iReleaseReg = 0; /* Temp register to free before returning */ 13016f654a40Sdan Index *pIdx = 0; /* Index used by loop (if any) */ 1302ebc63013Sdan int iLoop; /* Iteration of constraint generator loop */ 13036f82e85aSdrh 13046f82e85aSdrh pWC = &pWInfo->sWC; 13056f82e85aSdrh db = pParse->db; 13066f82e85aSdrh pLoop = pLevel->pWLoop; 13076f82e85aSdrh pTabItem = &pWInfo->pTabList->a[pLevel->iFrom]; 13086f82e85aSdrh iCur = pTabItem->iCursor; 13096f82e85aSdrh pLevel->notReady = notReady & ~sqlite3WhereGetMask(&pWInfo->sMaskSet, iCur); 13106f82e85aSdrh bRev = (pWInfo->revMask>>iLevel)&1; 13116f82e85aSdrh VdbeModuleComment((v, "Begin WHERE-loop%d: %s",iLevel,pTabItem->pTab->zName)); 1312118efd16Sdrh #if WHERETRACE_ENABLED /* 0x20800 */ 1313118efd16Sdrh if( sqlite3WhereTrace & 0x800 ){ 1314a4b2df5cSdrh sqlite3DebugPrintf("Coding level %d of %d: notReady=%llx iFrom=%d\n", 1315a4b2df5cSdrh iLevel, pWInfo->nLevel, (u64)notReady, pLevel->iFrom); 1316118efd16Sdrh sqlite3WhereLoopPrint(pLoop, pWC); 1317118efd16Sdrh } 1318118efd16Sdrh if( sqlite3WhereTrace & 0x20000 ){ 1319f1bb31e2Sdrh if( iLevel==0 ){ 1320f1bb31e2Sdrh sqlite3DebugPrintf("WHERE clause being coded:\n"); 1321f1bb31e2Sdrh sqlite3TreeViewExpr(0, pWInfo->pWhere, 0); 1322f1bb31e2Sdrh } 1323f1bb31e2Sdrh sqlite3DebugPrintf("All WHERE-clause terms before coding:\n"); 1324118efd16Sdrh sqlite3WhereClausePrint(pWC); 1325118efd16Sdrh } 1326118efd16Sdrh #endif 13276f82e85aSdrh 13286f82e85aSdrh /* Create labels for the "break" and "continue" instructions 13296f82e85aSdrh ** for the current loop. Jump to addrBrk to break out of a loop. 13306f82e85aSdrh ** Jump to cont to go immediately to the next iteration of the 13316f82e85aSdrh ** loop. 13326f82e85aSdrh ** 13336f82e85aSdrh ** When there is an IN operator, we also have a "addrNxt" label that 13346f82e85aSdrh ** means to continue with the next IN value combination. When 13356f82e85aSdrh ** there are no IN operators in the constraints, the "addrNxt" label 13366f82e85aSdrh ** is the same as "addrBrk". 13376f82e85aSdrh */ 1338ec4ccdbcSdrh addrBrk = pLevel->addrBrk = pLevel->addrNxt = sqlite3VdbeMakeLabel(pParse); 1339ec4ccdbcSdrh addrCont = pLevel->addrCont = sqlite3VdbeMakeLabel(pParse); 13406f82e85aSdrh 13416f82e85aSdrh /* If this is the right table of a LEFT OUTER JOIN, allocate and 13426f82e85aSdrh ** initialize a memory cell that records if this table matches any 13436f82e85aSdrh ** row of the left table of the join. 13446f82e85aSdrh */ 1345820fcd2cSdan assert( (pWInfo->wctrlFlags & WHERE_OR_SUBCLAUSE) 1346820fcd2cSdan || pLevel->iFrom>0 || (pTabItem[0].fg.jointype & JT_LEFT)==0 1347820fcd2cSdan ); 13488a48b9c0Sdrh if( pLevel->iFrom>0 && (pTabItem[0].fg.jointype & JT_LEFT)!=0 ){ 13496f82e85aSdrh pLevel->iLeftJoin = ++pParse->nMem; 13506f82e85aSdrh sqlite3VdbeAddOp2(v, OP_Integer, 0, pLevel->iLeftJoin); 13516f82e85aSdrh VdbeComment((v, "init LEFT JOIN no-match flag")); 13526f82e85aSdrh } 13536f82e85aSdrh 13543a3b420aSdrh /* Compute a safe address to jump to if we discover that the table for 13553a3b420aSdrh ** this loop is empty and can never contribute content. */ 13563a3b420aSdrh for(j=iLevel; j>0 && pWInfo->a[j].iLeftJoin==0; j--){} 13573a3b420aSdrh addrHalt = pWInfo->a[j].addrBrk; 13583a3b420aSdrh 13596f82e85aSdrh /* Special case of a FROM clause subquery implemented as a co-routine */ 13608a48b9c0Sdrh if( pTabItem->fg.viaCoroutine ){ 13616f82e85aSdrh int regYield = pTabItem->regReturn; 13626f82e85aSdrh sqlite3VdbeAddOp3(v, OP_InitCoroutine, regYield, 0, pTabItem->addrFillSub); 13636f82e85aSdrh pLevel->p2 = sqlite3VdbeAddOp2(v, OP_Yield, regYield, addrBrk); 13646f82e85aSdrh VdbeCoverage(v); 1365fef37760Sdrh VdbeComment((v, "next row of %s", pTabItem->pTab->zName)); 13666f82e85aSdrh pLevel->op = OP_Goto; 13676f82e85aSdrh }else 13686f82e85aSdrh 13696f82e85aSdrh #ifndef SQLITE_OMIT_VIRTUALTABLE 13706f82e85aSdrh if( (pLoop->wsFlags & WHERE_VIRTUALTABLE)!=0 ){ 13716f82e85aSdrh /* Case 1: The table is a virtual-table. Use the VFilter and VNext 13726f82e85aSdrh ** to access the data. 13736f82e85aSdrh */ 13746f82e85aSdrh int iReg; /* P3 Value for OP_VFilter */ 13756f82e85aSdrh int addrNotFound; 13766f82e85aSdrh int nConstraint = pLoop->nLTerm; 1377dbc49161Sdrh int iIn; /* Counter for IN constraints */ 13786f82e85aSdrh 13796f82e85aSdrh iReg = sqlite3GetTempRange(pParse, nConstraint+2); 13806f82e85aSdrh addrNotFound = pLevel->addrBrk; 13816f82e85aSdrh for(j=0; j<nConstraint; j++){ 13826f82e85aSdrh int iTarget = iReg+j+2; 13836f82e85aSdrh pTerm = pLoop->aLTerm[j]; 1384599d5764Sdrh if( NEVER(pTerm==0) ) continue; 13856f82e85aSdrh if( pTerm->eOperator & WO_IN ){ 13866f82e85aSdrh codeEqualityTerm(pParse, pTerm, pLevel, j, bRev, iTarget); 13876f82e85aSdrh addrNotFound = pLevel->addrNxt; 13886f82e85aSdrh }else{ 13896256c1c2Sdan Expr *pRight = pTerm->pExpr->pRight; 13906256c1c2Sdan codeExprOrVector(pParse, pRight, iTarget, 1); 13916256c1c2Sdan } 13926f82e85aSdrh } 13936f82e85aSdrh sqlite3VdbeAddOp2(v, OP_Integer, pLoop->u.vtab.idxNum, iReg); 13946f82e85aSdrh sqlite3VdbeAddOp2(v, OP_Integer, nConstraint, iReg+1); 13956f82e85aSdrh sqlite3VdbeAddOp4(v, OP_VFilter, iCur, addrNotFound, iReg, 13966f82e85aSdrh pLoop->u.vtab.idxStr, 1397861b1307Sdrh pLoop->u.vtab.needFree ? P4_DYNAMIC : P4_STATIC); 13986f82e85aSdrh VdbeCoverage(v); 13996f82e85aSdrh pLoop->u.vtab.needFree = 0; 1400bc2e9514Sdrh /* An OOM inside of AddOp4(OP_VFilter) instruction above might have freed 1401bc2e9514Sdrh ** the u.vtab.idxStr. NULL it out to prevent a use-after-free */ 1402bc2e9514Sdrh if( db->mallocFailed ) pLoop->u.vtab.idxStr = 0; 14036f82e85aSdrh pLevel->p1 = iCur; 1404354474adSdan pLevel->op = pWInfo->eOnePass ? OP_Noop : OP_VNext; 14056f82e85aSdrh pLevel->p2 = sqlite3VdbeCurrentAddr(v); 1406dbc49161Sdrh iIn = pLevel->u.in.nIn; 1407dbc49161Sdrh for(j=nConstraint-1; j>=0; j--){ 1408dbc49161Sdrh pTerm = pLoop->aLTerm[j]; 140968748ec5Sdrh if( (pTerm->eOperator & WO_IN)!=0 ) iIn--; 1410dbc49161Sdrh if( j<16 && (pLoop->u.vtab.omitMask>>j)&1 ){ 1411dbc49161Sdrh disableTerm(pLevel, pTerm); 14124ec3e820Sdrh }else if( (pTerm->eOperator & WO_IN)!=0 14134ec3e820Sdrh && sqlite3ExprVectorSize(pTerm->pExpr->pLeft)==1 14142d82269cSdan ){ 1415dbc49161Sdrh Expr *pCompare; /* The comparison operator */ 1416dbc49161Sdrh Expr *pRight; /* RHS of the comparison */ 1417dbc49161Sdrh VdbeOp *pOp; /* Opcode to access the value of the IN constraint */ 1418dbc49161Sdrh 1419dbc49161Sdrh /* Reload the constraint value into reg[iReg+j+2]. The same value 1420dbc49161Sdrh ** was loaded into the same register prior to the OP_VFilter, but 1421dbc49161Sdrh ** the xFilter implementation might have changed the datatype or 1422dbc49161Sdrh ** encoding of the value in the register, so it *must* be reloaded. */ 1423dbc49161Sdrh assert( pLevel->u.in.aInLoop!=0 || db->mallocFailed ); 1424fb826b8cSdrh if( !db->mallocFailed ){ 142568748ec5Sdrh assert( iIn>=0 && iIn<pLevel->u.in.nIn ); 142668748ec5Sdrh pOp = sqlite3VdbeGetOp(v, pLevel->u.in.aInLoop[iIn].addrInTop); 1427dbc49161Sdrh assert( pOp->opcode==OP_Column || pOp->opcode==OP_Rowid ); 1428dbc49161Sdrh assert( pOp->opcode!=OP_Column || pOp->p3==iReg+j+2 ); 1429dbc49161Sdrh assert( pOp->opcode!=OP_Rowid || pOp->p2==iReg+j+2 ); 1430dbc49161Sdrh testcase( pOp->opcode==OP_Rowid ); 1431dbc49161Sdrh sqlite3VdbeAddOp3(v, pOp->opcode, pOp->p1, pOp->p2, pOp->p3); 1432dbc49161Sdrh } 1433dbc49161Sdrh 1434dbc49161Sdrh /* Generate code that will continue to the next row if 1435dbc49161Sdrh ** the IN constraint is not satisfied */ 1436abfd35eaSdrh pCompare = sqlite3PExpr(pParse, TK_EQ, 0, 0); 1437dbc49161Sdrh assert( pCompare!=0 || db->mallocFailed ); 1438dbc49161Sdrh if( pCompare ){ 1439dbc49161Sdrh pCompare->pLeft = pTerm->pExpr->pLeft; 1440dbc49161Sdrh pCompare->pRight = pRight = sqlite3Expr(db, TK_REGISTER, 0); 1441237b2b71Sdrh if( pRight ){ 1442237b2b71Sdrh pRight->iTable = iReg+j+2; 1443d03f77aeSdan sqlite3ExprIfFalse( 1444d03f77aeSdan pParse, pCompare, pLevel->addrCont, SQLITE_JUMPIFNULL 1445d03f77aeSdan ); 1446237b2b71Sdrh } 1447dbc49161Sdrh pCompare->pLeft = 0; 1448dbc49161Sdrh sqlite3ExprDelete(db, pCompare); 1449dbc49161Sdrh } 1450dbc49161Sdrh } 1451dbc49161Sdrh } 145268748ec5Sdrh assert( iIn==0 || db->mallocFailed ); 1453ba26faa3Sdrh /* These registers need to be preserved in case there is an IN operator 1454ba26faa3Sdrh ** loop. So we could deallocate the registers here (and potentially 1455ba26faa3Sdrh ** reuse them later) if (pLoop->wsFlags & WHERE_IN_ABLE)==0. But it seems 1456ba26faa3Sdrh ** simpler and safer to simply not reuse the registers. 1457ba26faa3Sdrh ** 1458ba26faa3Sdrh ** sqlite3ReleaseTempRange(pParse, iReg, nConstraint+2); 1459ba26faa3Sdrh */ 14606f82e85aSdrh }else 14616f82e85aSdrh #endif /* SQLITE_OMIT_VIRTUALTABLE */ 14626f82e85aSdrh 14636f82e85aSdrh if( (pLoop->wsFlags & WHERE_IPK)!=0 14646f82e85aSdrh && (pLoop->wsFlags & (WHERE_COLUMN_IN|WHERE_COLUMN_EQ))!=0 14656f82e85aSdrh ){ 14666f82e85aSdrh /* Case 2: We can directly reference a single row using an 14676f82e85aSdrh ** equality comparison against the ROWID field. Or 14686f82e85aSdrh ** we reference multiple rows using a "rowid IN (...)" 14696f82e85aSdrh ** construct. 14706f82e85aSdrh */ 14716f82e85aSdrh assert( pLoop->u.btree.nEq==1 ); 14726f82e85aSdrh pTerm = pLoop->aLTerm[0]; 14736f82e85aSdrh assert( pTerm!=0 ); 14746f82e85aSdrh assert( pTerm->pExpr!=0 ); 14756f82e85aSdrh testcase( pTerm->wtFlags & TERM_VIRTUAL ); 14766f82e85aSdrh iReleaseReg = ++pParse->nMem; 14776f82e85aSdrh iRowidReg = codeEqualityTerm(pParse, pTerm, pLevel, 0, bRev, iReleaseReg); 14786f82e85aSdrh if( iRowidReg!=iReleaseReg ) sqlite3ReleaseTempReg(pParse, iReleaseReg); 14796f82e85aSdrh addrNxt = pLevel->addrNxt; 1480eeb9565aSdrh sqlite3VdbeAddOp3(v, OP_SeekRowid, iCur, addrNxt, iRowidReg); 14816f82e85aSdrh VdbeCoverage(v); 14826f82e85aSdrh pLevel->op = OP_Noop; 1483bc0a55cfSdrh if( (pTerm->prereqAll & pLevel->notReady)==0 ){ 1484042666e4Sdrh pTerm->wtFlags |= TERM_CODED; 1485bc0a55cfSdrh } 14866f82e85aSdrh }else if( (pLoop->wsFlags & WHERE_IPK)!=0 14876f82e85aSdrh && (pLoop->wsFlags & WHERE_COLUMN_RANGE)!=0 14886f82e85aSdrh ){ 14896f82e85aSdrh /* Case 3: We have an inequality comparison against the ROWID field. 14906f82e85aSdrh */ 14916f82e85aSdrh int testOp = OP_Noop; 14926f82e85aSdrh int start; 14936f82e85aSdrh int memEndValue = 0; 14946f82e85aSdrh WhereTerm *pStart, *pEnd; 14956f82e85aSdrh 14966f82e85aSdrh j = 0; 14976f82e85aSdrh pStart = pEnd = 0; 14986f82e85aSdrh if( pLoop->wsFlags & WHERE_BTM_LIMIT ) pStart = pLoop->aLTerm[j++]; 14996f82e85aSdrh if( pLoop->wsFlags & WHERE_TOP_LIMIT ) pEnd = pLoop->aLTerm[j++]; 15006f82e85aSdrh assert( pStart!=0 || pEnd!=0 ); 15016f82e85aSdrh if( bRev ){ 15026f82e85aSdrh pTerm = pStart; 15036f82e85aSdrh pStart = pEnd; 15046f82e85aSdrh pEnd = pTerm; 15056f82e85aSdrh } 1506b324cf75Sdan codeCursorHint(pTabItem, pWInfo, pLevel, pEnd); 15076f82e85aSdrh if( pStart ){ 15086f82e85aSdrh Expr *pX; /* The expression that defines the start bound */ 15096f82e85aSdrh int r1, rTemp; /* Registers for holding the start boundary */ 151019ff12ddSdan int op; /* Cursor seek operation */ 15116f82e85aSdrh 15126f82e85aSdrh /* The following constant maps TK_xx codes into corresponding 15136f82e85aSdrh ** seek opcodes. It depends on a particular ordering of TK_xx 15146f82e85aSdrh */ 15156f82e85aSdrh const u8 aMoveOp[] = { 15166f82e85aSdrh /* TK_GT */ OP_SeekGT, 15176f82e85aSdrh /* TK_LE */ OP_SeekLE, 15186f82e85aSdrh /* TK_LT */ OP_SeekLT, 15196f82e85aSdrh /* TK_GE */ OP_SeekGE 15206f82e85aSdrh }; 15216f82e85aSdrh assert( TK_LE==TK_GT+1 ); /* Make sure the ordering.. */ 15226f82e85aSdrh assert( TK_LT==TK_GT+2 ); /* ... of the TK_xx values... */ 15236f82e85aSdrh assert( TK_GE==TK_GT+3 ); /* ... is correcct. */ 15246f82e85aSdrh 15256f82e85aSdrh assert( (pStart->wtFlags & TERM_VNULL)==0 ); 15266f82e85aSdrh testcase( pStart->wtFlags & TERM_VIRTUAL ); 15276f82e85aSdrh pX = pStart->pExpr; 15286f82e85aSdrh assert( pX!=0 ); 15296f82e85aSdrh testcase( pStart->leftCursor!=iCur ); /* transitive constraints */ 1530625015e0Sdan if( sqlite3ExprIsVector(pX->pRight) ){ 153119ff12ddSdan r1 = rTemp = sqlite3GetTempReg(pParse); 153219ff12ddSdan codeExprOrVector(pParse, pX->pRight, r1, 1); 15334d1c6845Sdrh testcase( pX->op==TK_GT ); 15344d1c6845Sdrh testcase( pX->op==TK_GE ); 15354d1c6845Sdrh testcase( pX->op==TK_LT ); 15364d1c6845Sdrh testcase( pX->op==TK_LE ); 15374d1c6845Sdrh op = aMoveOp[((pX->op - TK_GT - 1) & 0x3) | 0x1]; 15384d1c6845Sdrh assert( pX->op!=TK_GT || op==OP_SeekGE ); 15394d1c6845Sdrh assert( pX->op!=TK_GE || op==OP_SeekGE ); 15404d1c6845Sdrh assert( pX->op!=TK_LT || op==OP_SeekLE ); 15414d1c6845Sdrh assert( pX->op!=TK_LE || op==OP_SeekLE ); 154219ff12ddSdan }else{ 15436f82e85aSdrh r1 = sqlite3ExprCodeTemp(pParse, pX->pRight, &rTemp); 154419ff12ddSdan disableTerm(pLevel, pStart); 154519ff12ddSdan op = aMoveOp[(pX->op - TK_GT)]; 154619ff12ddSdan } 154719ff12ddSdan sqlite3VdbeAddOp3(v, op, iCur, addrBrk, r1); 15486f82e85aSdrh VdbeComment((v, "pk")); 15496f82e85aSdrh VdbeCoverageIf(v, pX->op==TK_GT); 15506f82e85aSdrh VdbeCoverageIf(v, pX->op==TK_LE); 15516f82e85aSdrh VdbeCoverageIf(v, pX->op==TK_LT); 15526f82e85aSdrh VdbeCoverageIf(v, pX->op==TK_GE); 15536f82e85aSdrh sqlite3ReleaseTempReg(pParse, rTemp); 15546f82e85aSdrh }else{ 15553a3b420aSdrh sqlite3VdbeAddOp2(v, bRev ? OP_Last : OP_Rewind, iCur, addrHalt); 15566f82e85aSdrh VdbeCoverageIf(v, bRev==0); 15576f82e85aSdrh VdbeCoverageIf(v, bRev!=0); 15586f82e85aSdrh } 15596f82e85aSdrh if( pEnd ){ 15606f82e85aSdrh Expr *pX; 15616f82e85aSdrh pX = pEnd->pExpr; 15626f82e85aSdrh assert( pX!=0 ); 15636f82e85aSdrh assert( (pEnd->wtFlags & TERM_VNULL)==0 ); 15646f82e85aSdrh testcase( pEnd->leftCursor!=iCur ); /* Transitive constraints */ 15656f82e85aSdrh testcase( pEnd->wtFlags & TERM_VIRTUAL ); 15666f82e85aSdrh memEndValue = ++pParse->nMem; 156719ff12ddSdan codeExprOrVector(pParse, pX->pRight, memEndValue, 1); 1568625015e0Sdan if( 0==sqlite3ExprIsVector(pX->pRight) 1569625015e0Sdan && (pX->op==TK_LT || pX->op==TK_GT) 1570625015e0Sdan ){ 15716f82e85aSdrh testOp = bRev ? OP_Le : OP_Ge; 15726f82e85aSdrh }else{ 15736f82e85aSdrh testOp = bRev ? OP_Lt : OP_Gt; 15746f82e85aSdrh } 1575553168c7Sdan if( 0==sqlite3ExprIsVector(pX->pRight) ){ 15766f82e85aSdrh disableTerm(pLevel, pEnd); 15776f82e85aSdrh } 1578553168c7Sdan } 15796f82e85aSdrh start = sqlite3VdbeCurrentAddr(v); 15806f82e85aSdrh pLevel->op = bRev ? OP_Prev : OP_Next; 15816f82e85aSdrh pLevel->p1 = iCur; 15826f82e85aSdrh pLevel->p2 = start; 15836f82e85aSdrh assert( pLevel->p5==0 ); 15846f82e85aSdrh if( testOp!=OP_Noop ){ 15856f82e85aSdrh iRowidReg = ++pParse->nMem; 15866f82e85aSdrh sqlite3VdbeAddOp2(v, OP_Rowid, iCur, iRowidReg); 15876f82e85aSdrh sqlite3VdbeAddOp3(v, testOp, memEndValue, addrBrk, iRowidReg); 15886f82e85aSdrh VdbeCoverageIf(v, testOp==OP_Le); 15896f82e85aSdrh VdbeCoverageIf(v, testOp==OP_Lt); 15906f82e85aSdrh VdbeCoverageIf(v, testOp==OP_Ge); 15916f82e85aSdrh VdbeCoverageIf(v, testOp==OP_Gt); 15926f82e85aSdrh sqlite3VdbeChangeP5(v, SQLITE_AFF_NUMERIC | SQLITE_JUMPIFNULL); 15936f82e85aSdrh } 15946f82e85aSdrh }else if( pLoop->wsFlags & WHERE_INDEXED ){ 15956f82e85aSdrh /* Case 4: A scan using an index. 15966f82e85aSdrh ** 15976f82e85aSdrh ** The WHERE clause may contain zero or more equality 15986f82e85aSdrh ** terms ("==" or "IN" operators) that refer to the N 15996f82e85aSdrh ** left-most columns of the index. It may also contain 16006f82e85aSdrh ** inequality constraints (>, <, >= or <=) on the indexed 16016f82e85aSdrh ** column that immediately follows the N equalities. Only 16026f82e85aSdrh ** the right-most column can be an inequality - the rest must 16036f82e85aSdrh ** use the "==" and "IN" operators. For example, if the 16046f82e85aSdrh ** index is on (x,y,z), then the following clauses are all 16056f82e85aSdrh ** optimized: 16066f82e85aSdrh ** 16076f82e85aSdrh ** x=5 16086f82e85aSdrh ** x=5 AND y=10 16096f82e85aSdrh ** x=5 AND y<10 16106f82e85aSdrh ** x=5 AND y>5 AND y<10 16116f82e85aSdrh ** x=5 AND y=5 AND z<=10 16126f82e85aSdrh ** 16136f82e85aSdrh ** The z<10 term of the following cannot be used, only 16146f82e85aSdrh ** the x=5 term: 16156f82e85aSdrh ** 16166f82e85aSdrh ** x=5 AND z<10 16176f82e85aSdrh ** 16186f82e85aSdrh ** N may be zero if there are inequality constraints. 16196f82e85aSdrh ** If there are no inequality constraints, then N is at 16206f82e85aSdrh ** least one. 16216f82e85aSdrh ** 16226f82e85aSdrh ** This case is also used when there are no WHERE clause 16236f82e85aSdrh ** constraints but an index is selected anyway, in order 16246f82e85aSdrh ** to force the output order to conform to an ORDER BY. 16256f82e85aSdrh */ 16266f82e85aSdrh static const u8 aStartOp[] = { 16276f82e85aSdrh 0, 16286f82e85aSdrh 0, 16296f82e85aSdrh OP_Rewind, /* 2: (!start_constraints && startEq && !bRev) */ 16306f82e85aSdrh OP_Last, /* 3: (!start_constraints && startEq && bRev) */ 16316f82e85aSdrh OP_SeekGT, /* 4: (start_constraints && !startEq && !bRev) */ 16326f82e85aSdrh OP_SeekLT, /* 5: (start_constraints && !startEq && bRev) */ 16336f82e85aSdrh OP_SeekGE, /* 6: (start_constraints && startEq && !bRev) */ 16346f82e85aSdrh OP_SeekLE /* 7: (start_constraints && startEq && bRev) */ 16356f82e85aSdrh }; 16366f82e85aSdrh static const u8 aEndOp[] = { 16376f82e85aSdrh OP_IdxGE, /* 0: (end_constraints && !bRev && !endEq) */ 16386f82e85aSdrh OP_IdxGT, /* 1: (end_constraints && !bRev && endEq) */ 16396f82e85aSdrh OP_IdxLE, /* 2: (end_constraints && bRev && !endEq) */ 16406f82e85aSdrh OP_IdxLT, /* 3: (end_constraints && bRev && endEq) */ 16416f82e85aSdrh }; 16426f82e85aSdrh u16 nEq = pLoop->u.btree.nEq; /* Number of == or IN terms */ 164371c57db0Sdan u16 nBtm = pLoop->u.btree.nBtm; /* Length of BTM vector */ 164471c57db0Sdan u16 nTop = pLoop->u.btree.nTop; /* Length of TOP vector */ 16456f82e85aSdrh int regBase; /* Base register holding constraint values */ 16466f82e85aSdrh WhereTerm *pRangeStart = 0; /* Inequality constraint at range start */ 16476f82e85aSdrh WhereTerm *pRangeEnd = 0; /* Inequality constraint at range end */ 16486f82e85aSdrh int startEq; /* True if range start uses ==, >= or <= */ 16496f82e85aSdrh int endEq; /* True if range end uses ==, >= or <= */ 16506f82e85aSdrh int start_constraints; /* Start of range is constrained */ 16516f82e85aSdrh int nConstraint; /* Number of constraint terms */ 16526f82e85aSdrh int iIdxCur; /* The VDBE cursor for the index */ 16536f82e85aSdrh int nExtraReg = 0; /* Number of extra registers needed */ 16546f82e85aSdrh int op; /* Instruction opcode */ 16556f82e85aSdrh char *zStartAff; /* Affinity for start of range constraint */ 1656b7ca2177Sdan char *zEndAff = 0; /* Affinity for end of range constraint */ 16576f82e85aSdrh u8 bSeekPastNull = 0; /* True to seek past initial nulls */ 16586f82e85aSdrh u8 bStopAtNull = 0; /* Add condition to terminate at NULLs */ 165947df8a2cSdrh int omitTable; /* True if we use the index only */ 166074e1b861Sdrh int regBignull = 0; /* big-null flag register */ 16616f82e85aSdrh 16626f82e85aSdrh pIdx = pLoop->u.btree.pIndex; 16636f82e85aSdrh iIdxCur = pLevel->iIdxCur; 16646f82e85aSdrh assert( nEq>=pLoop->nSkip ); 16656f82e85aSdrh 16666f82e85aSdrh /* Find any inequality constraint terms for the start and end 16676f82e85aSdrh ** of the range. 16686f82e85aSdrh */ 16696f82e85aSdrh j = nEq; 16706f82e85aSdrh if( pLoop->wsFlags & WHERE_BTM_LIMIT ){ 16716f82e85aSdrh pRangeStart = pLoop->aLTerm[j++]; 167271c57db0Sdan nExtraReg = MAX(nExtraReg, pLoop->u.btree.nBtm); 16736f82e85aSdrh /* Like optimization range constraints always occur in pairs */ 16746f82e85aSdrh assert( (pRangeStart->wtFlags & TERM_LIKEOPT)==0 || 16756f82e85aSdrh (pLoop->wsFlags & WHERE_TOP_LIMIT)!=0 ); 16766f82e85aSdrh } 16776f82e85aSdrh if( pLoop->wsFlags & WHERE_TOP_LIMIT ){ 16786f82e85aSdrh pRangeEnd = pLoop->aLTerm[j++]; 167971c57db0Sdan nExtraReg = MAX(nExtraReg, pLoop->u.btree.nTop); 168041d2e66eSdrh #ifndef SQLITE_LIKE_DOESNT_MATCH_BLOBS 16816f82e85aSdrh if( (pRangeEnd->wtFlags & TERM_LIKEOPT)!=0 ){ 16826f82e85aSdrh assert( pRangeStart!=0 ); /* LIKE opt constraints */ 16836f82e85aSdrh assert( pRangeStart->wtFlags & TERM_LIKEOPT ); /* occur in pairs */ 168444aebff2Sdrh pLevel->iLikeRepCntr = (u32)++pParse->nMem; 168544aebff2Sdrh sqlite3VdbeAddOp2(v, OP_Integer, 1, (int)pLevel->iLikeRepCntr); 16866f82e85aSdrh VdbeComment((v, "LIKE loop counter")); 16876f82e85aSdrh pLevel->addrLikeRep = sqlite3VdbeCurrentAddr(v); 168844aebff2Sdrh /* iLikeRepCntr actually stores 2x the counter register number. The 168944aebff2Sdrh ** bottom bit indicates whether the search order is ASC or DESC. */ 169044aebff2Sdrh testcase( bRev ); 169144aebff2Sdrh testcase( pIdx->aSortOrder[nEq]==SQLITE_SO_DESC ); 169244aebff2Sdrh assert( (bRev & ~1)==0 ); 169344aebff2Sdrh pLevel->iLikeRepCntr <<=1; 169444aebff2Sdrh pLevel->iLikeRepCntr |= bRev ^ (pIdx->aSortOrder[nEq]==SQLITE_SO_DESC); 16956f82e85aSdrh } 169641d2e66eSdrh #endif 169748590fcbSdrh if( pRangeStart==0 ){ 169848590fcbSdrh j = pIdx->aiColumn[nEq]; 169948590fcbSdrh if( (j>=0 && pIdx->pTable->aCol[j].notNull==0) || j==XN_EXPR ){ 17006f82e85aSdrh bSeekPastNull = 1; 17016f82e85aSdrh } 17026f82e85aSdrh } 170348590fcbSdrh } 17046f82e85aSdrh assert( pRangeEnd==0 || (pRangeEnd->wtFlags & TERM_VNULL)==0 ); 17056f82e85aSdrh 170615750a26Sdan /* If the WHERE_BIGNULL_SORT flag is set, then index column nEq uses 170715750a26Sdan ** a non-default "big-null" sort (either ASC NULLS LAST or DESC NULLS 170815750a26Sdan ** FIRST). In both cases separate ordered scans are made of those 170915750a26Sdan ** index entries for which the column is null and for those for which 171015750a26Sdan ** it is not. For an ASC sort, the non-NULL entries are scanned first. 171115750a26Sdan ** For DESC, NULL entries are scanned first. 171215750a26Sdan */ 171315750a26Sdan if( (pLoop->wsFlags & (WHERE_TOP_LIMIT|WHERE_BTM_LIMIT))==0 171415750a26Sdan && (pLoop->wsFlags & WHERE_BIGNULL_SORT)!=0 171515750a26Sdan ){ 171615750a26Sdan assert( bSeekPastNull==0 && nExtraReg==0 && nBtm==0 && nTop==0 ); 171715750a26Sdan assert( pRangeEnd==0 && pRangeStart==0 ); 17184adb1d00Sdan testcase( pLoop->nSkip>0 ); 171915750a26Sdan nExtraReg = 1; 172015750a26Sdan bSeekPastNull = 1; 172115750a26Sdan pLevel->regBignull = regBignull = ++pParse->nMem; 17227f05d52cSdrh if( pLevel->iLeftJoin ){ 17237f05d52cSdrh sqlite3VdbeAddOp2(v, OP_Integer, 0, regBignull); 17247f05d52cSdrh } 1725cc491f4bSdan pLevel->addrBignull = sqlite3VdbeMakeLabel(pParse); 172615750a26Sdan } 172715750a26Sdan 17286f82e85aSdrh /* If we are doing a reverse order scan on an ascending index, or 17296f82e85aSdrh ** a forward order scan on a descending index, interchange the 17306f82e85aSdrh ** start and end terms (pRangeStart and pRangeEnd). 17316f82e85aSdrh */ 17326f82e85aSdrh if( (nEq<pIdx->nKeyCol && bRev==(pIdx->aSortOrder[nEq]==SQLITE_SO_ASC)) 17336f82e85aSdrh || (bRev && pIdx->nKeyCol==nEq) 17346f82e85aSdrh ){ 17356f82e85aSdrh SWAP(WhereTerm *, pRangeEnd, pRangeStart); 17366f82e85aSdrh SWAP(u8, bSeekPastNull, bStopAtNull); 173771c57db0Sdan SWAP(u8, nBtm, nTop); 17386f82e85aSdrh } 17396f82e85aSdrh 1740bcf40a7fSdrh /* Generate code to evaluate all constraint terms using == or IN 1741bcf40a7fSdrh ** and store the values of those terms in an array of registers 1742bcf40a7fSdrh ** starting at regBase. 1743bcf40a7fSdrh */ 1744b324cf75Sdan codeCursorHint(pTabItem, pWInfo, pLevel, pRangeEnd); 1745bcf40a7fSdrh regBase = codeAllEqualityTerms(pParse,pLevel,bRev,nExtraReg,&zStartAff); 1746bcf40a7fSdrh assert( zStartAff==0 || sqlite3Strlen30(zStartAff)>=nEq ); 1747b7ca2177Sdan if( zStartAff && nTop ){ 1748b7ca2177Sdan zEndAff = sqlite3DbStrDup(db, &zStartAff[nEq]); 1749b7ca2177Sdan } 1750cc491f4bSdan addrNxt = (regBignull ? pLevel->addrBignull : pLevel->addrNxt); 1751bcf40a7fSdrh 17526f82e85aSdrh testcase( pRangeStart && (pRangeStart->eOperator & WO_LE)!=0 ); 17536f82e85aSdrh testcase( pRangeStart && (pRangeStart->eOperator & WO_GE)!=0 ); 17546f82e85aSdrh testcase( pRangeEnd && (pRangeEnd->eOperator & WO_LE)!=0 ); 17556f82e85aSdrh testcase( pRangeEnd && (pRangeEnd->eOperator & WO_GE)!=0 ); 17566f82e85aSdrh startEq = !pRangeStart || pRangeStart->eOperator & (WO_LE|WO_GE); 17576f82e85aSdrh endEq = !pRangeEnd || pRangeEnd->eOperator & (WO_LE|WO_GE); 17586f82e85aSdrh start_constraints = pRangeStart || nEq>0; 17596f82e85aSdrh 17606f82e85aSdrh /* Seek the index cursor to the start of the range. */ 17616f82e85aSdrh nConstraint = nEq; 17626f82e85aSdrh if( pRangeStart ){ 17636f82e85aSdrh Expr *pRight = pRangeStart->pExpr->pRight; 176471c57db0Sdan codeExprOrVector(pParse, pRight, regBase+nEq, nBtm); 17656f82e85aSdrh whereLikeOptimizationStringFixup(v, pLevel, pRangeStart); 1766398221e2Sdrh if( !bRev 1767398221e2Sdrh && (pRangeStart->wtFlags & TERM_VNULL)==0 17686f82e85aSdrh && sqlite3ExprCanBeNull(pRight) 17696f82e85aSdrh ){ 17706f82e85aSdrh sqlite3VdbeAddOp2(v, OP_IsNull, regBase+nEq, addrNxt); 17716f82e85aSdrh VdbeCoverage(v); 17726f82e85aSdrh } 17736f82e85aSdrh if( zStartAff ){ 1774e3c6b61cSdrh updateRangeAffinityStr(pRight, nBtm, &zStartAff[nEq]); 17756f82e85aSdrh } 177671c57db0Sdan nConstraint += nBtm; 17776f82e85aSdrh testcase( pRangeStart->wtFlags & TERM_VIRTUAL ); 1778625015e0Sdan if( sqlite3ExprIsVector(pRight)==0 ){ 177971c57db0Sdan disableTerm(pLevel, pRangeStart); 178071c57db0Sdan }else{ 178171c57db0Sdan startEq = 1; 178271c57db0Sdan } 1783426f4ab0Sdrh bSeekPastNull = 0; 17846f82e85aSdrh }else if( bSeekPastNull ){ 17856f82e85aSdrh startEq = 0; 17860086e078Sdrh sqlite3VdbeAddOp2(v, OP_Null, 0, regBase+nEq); 17876f82e85aSdrh start_constraints = 1; 17880086e078Sdrh nConstraint++; 178915750a26Sdan }else if( regBignull ){ 179015750a26Sdan sqlite3VdbeAddOp2(v, OP_Null, 0, regBase+nEq); 179115750a26Sdan start_constraints = 1; 179215750a26Sdan nConstraint++; 17936f82e85aSdrh } 17946f82e85aSdrh codeApplyAffinity(pParse, regBase, nConstraint - bSeekPastNull, zStartAff); 17950bf2ad6aSdrh if( pLoop->nSkip>0 && nConstraint==pLoop->nSkip ){ 17960bf2ad6aSdrh /* The skip-scan logic inside the call to codeAllEqualityConstraints() 17970bf2ad6aSdrh ** above has already left the cursor sitting on the correct row, 17980bf2ad6aSdrh ** so no further seeking is needed */ 17990bf2ad6aSdrh }else{ 180015750a26Sdan if( regBignull ){ 1801ec3dda5bSdrh sqlite3VdbeAddOp2(v, OP_Integer, 1, regBignull); 1802a31d3554Sdrh VdbeComment((v, "NULL-scan pass ctr")); 180315750a26Sdan } 180415750a26Sdan 18056f82e85aSdrh op = aStartOp[(start_constraints<<2) + (startEq<<1) + bRev]; 18066f82e85aSdrh assert( op!=0 ); 180768cf0aceSdrh if( (pLoop->wsFlags & WHERE_IN_SEEKSCAN)!=0 ){ 180868cf0aceSdrh assert( op==OP_SeekGE ); 180968cf0aceSdrh assert( regBignull==0 ); 181068cf0aceSdrh sqlite3VdbeAddOp1(v, OP_SeekScan, 10); 181168cf0aceSdrh } 18126f82e85aSdrh sqlite3VdbeAddOp4Int(v, op, iIdxCur, addrNxt, regBase, nConstraint); 18136f82e85aSdrh VdbeCoverage(v); 18146f82e85aSdrh VdbeCoverageIf(v, op==OP_Rewind); testcase( op==OP_Rewind ); 18156f82e85aSdrh VdbeCoverageIf(v, op==OP_Last); testcase( op==OP_Last ); 18166f82e85aSdrh VdbeCoverageIf(v, op==OP_SeekGT); testcase( op==OP_SeekGT ); 18176f82e85aSdrh VdbeCoverageIf(v, op==OP_SeekGE); testcase( op==OP_SeekGE ); 18186f82e85aSdrh VdbeCoverageIf(v, op==OP_SeekLE); testcase( op==OP_SeekLE ); 18196f82e85aSdrh VdbeCoverageIf(v, op==OP_SeekLT); testcase( op==OP_SeekLT ); 1820ddd7421cSdan 18210086e078Sdrh assert( bSeekPastNull==0 || bStopAtNull==0 ); 182215750a26Sdan if( regBignull ){ 18230086e078Sdrh assert( bSeekPastNull==1 || bStopAtNull==1 ); 18245f6a4ea2Sdrh assert( bSeekPastNull==!bStopAtNull ); 18250086e078Sdrh assert( bStopAtNull==startEq ); 1826ddd7421cSdan sqlite3VdbeAddOp2(v, OP_Goto, 0, sqlite3VdbeCurrentAddr(v)+2); 18270086e078Sdrh op = aStartOp[(nConstraint>1)*4 + 2 + bRev]; 18280086e078Sdrh sqlite3VdbeAddOp4Int(v, op, iIdxCur, addrNxt, regBase, 18290086e078Sdrh nConstraint-startEq); 1830505ae9deSdrh VdbeCoverage(v); 1831505ae9deSdrh VdbeCoverageIf(v, op==OP_Rewind); testcase( op==OP_Rewind ); 1832505ae9deSdrh VdbeCoverageIf(v, op==OP_Last); testcase( op==OP_Last ); 1833505ae9deSdrh VdbeCoverageIf(v, op==OP_SeekGE); testcase( op==OP_SeekGE ); 1834505ae9deSdrh VdbeCoverageIf(v, op==OP_SeekLE); testcase( op==OP_SeekLE ); 18350086e078Sdrh assert( op==OP_Rewind || op==OP_Last || op==OP_SeekGE || op==OP_SeekLE); 1836ddd7421cSdan } 1837a6d2f8ebSdrh } 18386f82e85aSdrh 18396f82e85aSdrh /* Load the value for the inequality constraint at the end of the 18406f82e85aSdrh ** range (if any). 18416f82e85aSdrh */ 18426f82e85aSdrh nConstraint = nEq; 18436f82e85aSdrh if( pRangeEnd ){ 18446f82e85aSdrh Expr *pRight = pRangeEnd->pExpr->pRight; 184571c57db0Sdan codeExprOrVector(pParse, pRight, regBase+nEq, nTop); 18466f82e85aSdrh whereLikeOptimizationStringFixup(v, pLevel, pRangeEnd); 1847398221e2Sdrh if( bRev 1848398221e2Sdrh && (pRangeEnd->wtFlags & TERM_VNULL)==0 18496f82e85aSdrh && sqlite3ExprCanBeNull(pRight) 18506f82e85aSdrh ){ 18516f82e85aSdrh sqlite3VdbeAddOp2(v, OP_IsNull, regBase+nEq, addrNxt); 18526f82e85aSdrh VdbeCoverage(v); 18536f82e85aSdrh } 18540c36fca0Sdrh if( zEndAff ){ 1855e3c6b61cSdrh updateRangeAffinityStr(pRight, nTop, zEndAff); 1856b7ca2177Sdan codeApplyAffinity(pParse, regBase+nEq, nTop, zEndAff); 18570c36fca0Sdrh }else{ 18580c36fca0Sdrh assert( pParse->db->mallocFailed ); 18590c36fca0Sdrh } 186071c57db0Sdan nConstraint += nTop; 18616f82e85aSdrh testcase( pRangeEnd->wtFlags & TERM_VIRTUAL ); 186271c57db0Sdan 1863625015e0Sdan if( sqlite3ExprIsVector(pRight)==0 ){ 186471c57db0Sdan disableTerm(pLevel, pRangeEnd); 186571c57db0Sdan }else{ 186671c57db0Sdan endEq = 1; 186771c57db0Sdan } 18686f82e85aSdrh }else if( bStopAtNull ){ 186915750a26Sdan if( regBignull==0 ){ 18706f82e85aSdrh sqlite3VdbeAddOp2(v, OP_Null, 0, regBase+nEq); 18716f82e85aSdrh endEq = 0; 187215750a26Sdan } 18736f82e85aSdrh nConstraint++; 18746f82e85aSdrh } 18756f82e85aSdrh sqlite3DbFree(db, zStartAff); 1876b7ca2177Sdan sqlite3DbFree(db, zEndAff); 18776f82e85aSdrh 18786f82e85aSdrh /* Top of the loop body */ 18796f82e85aSdrh pLevel->p2 = sqlite3VdbeCurrentAddr(v); 18806f82e85aSdrh 18816f82e85aSdrh /* Check if the index cursor is past the end of the range. */ 18826f82e85aSdrh if( nConstraint ){ 188315750a26Sdan if( regBignull ){ 18845f6a4ea2Sdrh /* Except, skip the end-of-range check while doing the NULL-scan */ 1885ec3dda5bSdrh sqlite3VdbeAddOp2(v, OP_IfNot, regBignull, sqlite3VdbeCurrentAddr(v)+3); 1886a31d3554Sdrh VdbeComment((v, "If NULL-scan 2nd pass")); 1887505ae9deSdrh VdbeCoverage(v); 188815750a26Sdan } 18896f82e85aSdrh op = aEndOp[bRev*2 + endEq]; 18906f82e85aSdrh sqlite3VdbeAddOp4Int(v, op, iIdxCur, addrNxt, regBase, nConstraint); 18916f82e85aSdrh testcase( op==OP_IdxGT ); VdbeCoverageIf(v, op==OP_IdxGT ); 18926f82e85aSdrh testcase( op==OP_IdxGE ); VdbeCoverageIf(v, op==OP_IdxGE ); 18936f82e85aSdrh testcase( op==OP_IdxLT ); VdbeCoverageIf(v, op==OP_IdxLT ); 18946f82e85aSdrh testcase( op==OP_IdxLE ); VdbeCoverageIf(v, op==OP_IdxLE ); 18956f82e85aSdrh } 189615750a26Sdan if( regBignull ){ 18975f6a4ea2Sdrh /* During a NULL-scan, check to see if we have reached the end of 18985f6a4ea2Sdrh ** the NULLs */ 18995f6a4ea2Sdrh assert( bSeekPastNull==!bStopAtNull ); 19005f6a4ea2Sdrh assert( bSeekPastNull+bStopAtNull==1 ); 19015f6a4ea2Sdrh assert( nConstraint+bSeekPastNull>0 ); 1902ec3dda5bSdrh sqlite3VdbeAddOp2(v, OP_If, regBignull, sqlite3VdbeCurrentAddr(v)+2); 1903a31d3554Sdrh VdbeComment((v, "If NULL-scan 1st pass")); 1904505ae9deSdrh VdbeCoverage(v); 19055f6a4ea2Sdrh op = aEndOp[bRev*2 + bSeekPastNull]; 19065f6a4ea2Sdrh sqlite3VdbeAddOp4Int(v, op, iIdxCur, addrNxt, regBase, 19075f6a4ea2Sdrh nConstraint+bSeekPastNull); 1908505ae9deSdrh testcase( op==OP_IdxGT ); VdbeCoverageIf(v, op==OP_IdxGT ); 1909505ae9deSdrh testcase( op==OP_IdxGE ); VdbeCoverageIf(v, op==OP_IdxGE ); 1910505ae9deSdrh testcase( op==OP_IdxLT ); VdbeCoverageIf(v, op==OP_IdxLT ); 1911505ae9deSdrh testcase( op==OP_IdxLE ); VdbeCoverageIf(v, op==OP_IdxLE ); 191215750a26Sdan } 19136f82e85aSdrh 1914f761d937Sdrh if( (pLoop->wsFlags & WHERE_IN_EARLYOUT)!=0 ){ 1915fa17e134Sdrh sqlite3VdbeAddOp3(v, OP_SeekHit, iIdxCur, nEq, nEq); 19168c2b6d78Sdrh } 19178c2b6d78Sdrh 19186f82e85aSdrh /* Seek the table cursor, if required */ 191947df8a2cSdrh omitTable = (pLoop->wsFlags & WHERE_IDX_ONLY)!=0 192047df8a2cSdrh && (pWInfo->wctrlFlags & WHERE_OR_SUBCLAUSE)==0; 19216f82e85aSdrh if( omitTable ){ 19226f82e85aSdrh /* pIdx is a covering index. No need to access the main table. */ 19236f82e85aSdrh }else if( HasRowid(pIdx->pTable) ){ 1924784c1b93Sdrh codeDeferredSeek(pWInfo, pIdx, iCur, iIdxCur); 19256f82e85aSdrh }else if( iCur!=iIdxCur ){ 19266f82e85aSdrh Index *pPk = sqlite3PrimaryKeyIndex(pIdx->pTable); 19276f82e85aSdrh iRowidReg = sqlite3GetTempRange(pParse, pPk->nKeyCol); 19286f82e85aSdrh for(j=0; j<pPk->nKeyCol; j++){ 1929b9bcf7caSdrh k = sqlite3TableColumnToIndex(pIdx, pPk->aiColumn[j]); 19306f82e85aSdrh sqlite3VdbeAddOp3(v, OP_Column, iIdxCur, k, iRowidReg+j); 19316f82e85aSdrh } 19326f82e85aSdrh sqlite3VdbeAddOp4Int(v, OP_NotFound, iCur, addrCont, 19336f82e85aSdrh iRowidReg, pPk->nKeyCol); VdbeCoverage(v); 19346f82e85aSdrh } 19356f82e85aSdrh 1936db535390Sdrh if( pLevel->iLeftJoin==0 ){ 1937eac5fc04Sdrh /* If pIdx is an index on one or more expressions, then look through 1938eac5fc04Sdrh ** all the expressions in pWInfo and try to transform matching expressions 1939c7476735Sdrh ** into reference to index columns. Also attempt to translate references 1940c7476735Sdrh ** to virtual columns in the table into references to (stored) columns 1941c7476735Sdrh ** of the index. 19424da04f78Sdan ** 19434da04f78Sdan ** Do not do this for the RHS of a LEFT JOIN. This is because the 19444da04f78Sdan ** expression may be evaluated after OP_NullRow has been executed on 19454da04f78Sdan ** the cursor. In this case it is important to do the full evaluation, 19464da04f78Sdan ** as the result of the expression may not be NULL, even if all table 19475776c139Sdrh ** column values are. https://www.sqlite.org/src/info/7fa8049685b50b5a 19488851e100Sdrh ** 19498851e100Sdrh ** Also, do not do this when processing one index an a multi-index 19508851e100Sdrh ** OR clause, since the transformation will become invalid once we 19518851e100Sdrh ** move forward to the next index. 19528851e100Sdrh ** https://sqlite.org/src/info/4e8e4857d32d401f 1953eac5fc04Sdrh */ 1954db535390Sdrh if( (pWInfo->wctrlFlags & WHERE_OR_SUBCLAUSE)==0 ){ 1955aca19e19Sdrh whereIndexExprTrans(pIdx, iCur, iIdxCur, pWInfo); 19564da04f78Sdan } 1957aca19e19Sdrh 1958b531aa8fSdrh /* If a partial index is driving the loop, try to eliminate WHERE clause 1959b531aa8fSdrh ** terms from the query that must be true due to the WHERE clause of 1960db535390Sdrh ** the partial index. 1961db535390Sdrh ** 1962db535390Sdrh ** 2019-11-02 ticket 623eff57e76d45f6: This optimization does not work 1963db535390Sdrh ** for a LEFT JOIN. 1964b531aa8fSdrh */ 1965b531aa8fSdrh if( pIdx->pPartIdxWhere ){ 1966b531aa8fSdrh whereApplyPartialIndexConstraints(pIdx->pPartIdxWhere, iCur, pWC); 1967b531aa8fSdrh } 1968db535390Sdrh }else{ 1969db535390Sdrh testcase( pIdx->pPartIdxWhere ); 197006fc2455Sdrh /* The following assert() is not a requirement, merely an observation: 197106fc2455Sdrh ** The OR-optimization doesn't work for the right hand table of 197206fc2455Sdrh ** a LEFT JOIN: */ 197306fc2455Sdrh assert( (pWInfo->wctrlFlags & WHERE_OR_SUBCLAUSE)==0 ); 1974db535390Sdrh } 1975b531aa8fSdrh 197671c57db0Sdan /* Record the instruction used to terminate the loop. */ 19776f82e85aSdrh if( pLoop->wsFlags & WHERE_ONEROW ){ 19786f82e85aSdrh pLevel->op = OP_Noop; 19796f82e85aSdrh }else if( bRev ){ 19806f82e85aSdrh pLevel->op = OP_Prev; 19816f82e85aSdrh }else{ 19826f82e85aSdrh pLevel->op = OP_Next; 19836f82e85aSdrh } 19846f82e85aSdrh pLevel->p1 = iIdxCur; 19856f82e85aSdrh pLevel->p3 = (pLoop->wsFlags&WHERE_UNQ_WANTED)!=0 ? 1:0; 19866f82e85aSdrh if( (pLoop->wsFlags & WHERE_CONSTRAINT)==0 ){ 19876f82e85aSdrh pLevel->p5 = SQLITE_STMTSTATUS_FULLSCAN_STEP; 19886f82e85aSdrh }else{ 19896f82e85aSdrh assert( pLevel->p5==0 ); 19906f82e85aSdrh } 19916f654a40Sdan if( omitTable ) pIdx = 0; 19926f82e85aSdrh }else 19936f82e85aSdrh 19946f82e85aSdrh #ifndef SQLITE_OMIT_OR_OPTIMIZATION 19956f82e85aSdrh if( pLoop->wsFlags & WHERE_MULTI_OR ){ 19966f82e85aSdrh /* Case 5: Two or more separately indexed terms connected by OR 19976f82e85aSdrh ** 19986f82e85aSdrh ** Example: 19996f82e85aSdrh ** 20006f82e85aSdrh ** CREATE TABLE t1(a,b,c,d); 20016f82e85aSdrh ** CREATE INDEX i1 ON t1(a); 20026f82e85aSdrh ** CREATE INDEX i2 ON t1(b); 20036f82e85aSdrh ** CREATE INDEX i3 ON t1(c); 20046f82e85aSdrh ** 20056f82e85aSdrh ** SELECT * FROM t1 WHERE a=5 OR b=7 OR (c=11 AND d=13) 20066f82e85aSdrh ** 20076f82e85aSdrh ** In the example, there are three indexed terms connected by OR. 20086f82e85aSdrh ** The top of the loop looks like this: 20096f82e85aSdrh ** 20106f82e85aSdrh ** Null 1 # Zero the rowset in reg 1 20116f82e85aSdrh ** 20126f82e85aSdrh ** Then, for each indexed term, the following. The arguments to 20136f82e85aSdrh ** RowSetTest are such that the rowid of the current row is inserted 20146f82e85aSdrh ** into the RowSet. If it is already present, control skips the 20156f82e85aSdrh ** Gosub opcode and jumps straight to the code generated by WhereEnd(). 20166f82e85aSdrh ** 20176f82e85aSdrh ** sqlite3WhereBegin(<term>) 20186f82e85aSdrh ** RowSetTest # Insert rowid into rowset 20196f82e85aSdrh ** Gosub 2 A 20206f82e85aSdrh ** sqlite3WhereEnd() 20216f82e85aSdrh ** 20226f82e85aSdrh ** Following the above, code to terminate the loop. Label A, the target 20236f82e85aSdrh ** of the Gosub above, jumps to the instruction right after the Goto. 20246f82e85aSdrh ** 20256f82e85aSdrh ** Null 1 # Zero the rowset in reg 1 20266f82e85aSdrh ** Goto B # The loop is finished. 20276f82e85aSdrh ** 20286f82e85aSdrh ** A: <loop body> # Return data, whatever. 20296f82e85aSdrh ** 20306f82e85aSdrh ** Return 2 # Jump back to the Gosub 20316f82e85aSdrh ** 20326f82e85aSdrh ** B: <after the loop> 20336f82e85aSdrh ** 20346f82e85aSdrh ** Added 2014-05-26: If the table is a WITHOUT ROWID table, then 20356f82e85aSdrh ** use an ephemeral index instead of a RowSet to record the primary 20366f82e85aSdrh ** keys of the rows we have already seen. 20376f82e85aSdrh ** 20386f82e85aSdrh */ 20396f82e85aSdrh WhereClause *pOrWc; /* The OR-clause broken out into subterms */ 20406f82e85aSdrh SrcList *pOrTab; /* Shortened table list or OR-clause generation */ 20416f82e85aSdrh Index *pCov = 0; /* Potential covering index (or NULL) */ 20426f82e85aSdrh int iCovCur = pParse->nTab++; /* Cursor used for index scans (if any) */ 20436f82e85aSdrh 20446f82e85aSdrh int regReturn = ++pParse->nMem; /* Register used with OP_Gosub */ 20456f82e85aSdrh int regRowset = 0; /* Register for RowSet object */ 20466f82e85aSdrh int regRowid = 0; /* Register holding rowid */ 2047ec4ccdbcSdrh int iLoopBody = sqlite3VdbeMakeLabel(pParse);/* Start of loop body */ 20486f82e85aSdrh int iRetInit; /* Address of regReturn init */ 20496f82e85aSdrh int untestedTerms = 0; /* Some terms not completely tested */ 20506f82e85aSdrh int ii; /* Loop counter */ 20516f82e85aSdrh Expr *pAndExpr = 0; /* An ".. AND (...)" expression */ 20526f82e85aSdrh Table *pTab = pTabItem->pTab; 20536f82e85aSdrh 20546f82e85aSdrh pTerm = pLoop->aLTerm[0]; 20556f82e85aSdrh assert( pTerm!=0 ); 20566f82e85aSdrh assert( pTerm->eOperator & WO_OR ); 20576f82e85aSdrh assert( (pTerm->wtFlags & TERM_ORINFO)!=0 ); 20586f82e85aSdrh pOrWc = &pTerm->u.pOrInfo->wc; 20596f82e85aSdrh pLevel->op = OP_Return; 20606f82e85aSdrh pLevel->p1 = regReturn; 20616f82e85aSdrh 20626f82e85aSdrh /* Set up a new SrcList in pOrTab containing the table being scanned 20636f82e85aSdrh ** by this loop in the a[0] slot and all notReady tables in a[1..] slots. 20646f82e85aSdrh ** This becomes the SrcList in the recursive call to sqlite3WhereBegin(). 20656f82e85aSdrh */ 20666f82e85aSdrh if( pWInfo->nLevel>1 ){ 20676f82e85aSdrh int nNotReady; /* The number of notReady tables */ 20686f82e85aSdrh struct SrcList_item *origSrc; /* Original list of tables */ 20696f82e85aSdrh nNotReady = pWInfo->nLevel - iLevel - 1; 20706f82e85aSdrh pOrTab = sqlite3StackAllocRaw(db, 20716f82e85aSdrh sizeof(*pOrTab)+ nNotReady*sizeof(pOrTab->a[0])); 20726f82e85aSdrh if( pOrTab==0 ) return notReady; 20736f82e85aSdrh pOrTab->nAlloc = (u8)(nNotReady + 1); 20746f82e85aSdrh pOrTab->nSrc = pOrTab->nAlloc; 20756f82e85aSdrh memcpy(pOrTab->a, pTabItem, sizeof(*pTabItem)); 20766f82e85aSdrh origSrc = pWInfo->pTabList->a; 20776f82e85aSdrh for(k=1; k<=nNotReady; k++){ 20786f82e85aSdrh memcpy(&pOrTab->a[k], &origSrc[pLevel[k].iFrom], sizeof(pOrTab->a[k])); 20796f82e85aSdrh } 20806f82e85aSdrh }else{ 20816f82e85aSdrh pOrTab = pWInfo->pTabList; 20826f82e85aSdrh } 20836f82e85aSdrh 20846f82e85aSdrh /* Initialize the rowset register to contain NULL. An SQL NULL is 20856f82e85aSdrh ** equivalent to an empty rowset. Or, create an ephemeral index 20866f82e85aSdrh ** capable of holding primary keys in the case of a WITHOUT ROWID. 20876f82e85aSdrh ** 20886f82e85aSdrh ** Also initialize regReturn to contain the address of the instruction 20896f82e85aSdrh ** immediately following the OP_Return at the bottom of the loop. This 20906f82e85aSdrh ** is required in a few obscure LEFT JOIN cases where control jumps 20916f82e85aSdrh ** over the top of the loop into the body of it. In this case the 20926f82e85aSdrh ** correct response for the end-of-loop code (the OP_Return) is to 20936f82e85aSdrh ** fall through to the next instruction, just as an OP_Next does if 20946f82e85aSdrh ** called on an uninitialized cursor. 20956f82e85aSdrh */ 20966f82e85aSdrh if( (pWInfo->wctrlFlags & WHERE_DUPLICATES_OK)==0 ){ 20976f82e85aSdrh if( HasRowid(pTab) ){ 20986f82e85aSdrh regRowset = ++pParse->nMem; 20996f82e85aSdrh sqlite3VdbeAddOp2(v, OP_Null, 0, regRowset); 21006f82e85aSdrh }else{ 21016f82e85aSdrh Index *pPk = sqlite3PrimaryKeyIndex(pTab); 21026f82e85aSdrh regRowset = pParse->nTab++; 21036f82e85aSdrh sqlite3VdbeAddOp2(v, OP_OpenEphemeral, regRowset, pPk->nKeyCol); 21046f82e85aSdrh sqlite3VdbeSetP4KeyInfo(pParse, pPk); 21056f82e85aSdrh } 21066f82e85aSdrh regRowid = ++pParse->nMem; 21076f82e85aSdrh } 21086f82e85aSdrh iRetInit = sqlite3VdbeAddOp2(v, OP_Integer, 0, regReturn); 21096f82e85aSdrh 21106f82e85aSdrh /* If the original WHERE clause is z of the form: (x1 OR x2 OR ...) AND y 21116f82e85aSdrh ** Then for every term xN, evaluate as the subexpression: xN AND z 21126f82e85aSdrh ** That way, terms in y that are factored into the disjunction will 21136f82e85aSdrh ** be picked up by the recursive calls to sqlite3WhereBegin() below. 21146f82e85aSdrh ** 21156f82e85aSdrh ** Actually, each subexpression is converted to "xN AND w" where w is 21166f82e85aSdrh ** the "interesting" terms of z - terms that did not originate in the 21176f82e85aSdrh ** ON or USING clause of a LEFT JOIN, and terms that are usable as 21186f82e85aSdrh ** indices. 21196f82e85aSdrh ** 21206f82e85aSdrh ** This optimization also only applies if the (x1 OR x2 OR ...) term 21216f82e85aSdrh ** is not contained in the ON clause of a LEFT JOIN. 21226f82e85aSdrh ** See ticket http://www.sqlite.org/src/info/f2369304e4 21236f82e85aSdrh */ 21246f82e85aSdrh if( pWC->nTerm>1 ){ 21256f82e85aSdrh int iTerm; 21266f82e85aSdrh for(iTerm=0; iTerm<pWC->nTerm; iTerm++){ 21276f82e85aSdrh Expr *pExpr = pWC->a[iTerm].pExpr; 21286f82e85aSdrh if( &pWC->a[iTerm] == pTerm ) continue; 21293b83f0cdSdrh testcase( pWC->a[iTerm].wtFlags & TERM_VIRTUAL ); 21303b83f0cdSdrh testcase( pWC->a[iTerm].wtFlags & TERM_CODED ); 21313b83f0cdSdrh if( (pWC->a[iTerm].wtFlags & (TERM_VIRTUAL|TERM_CODED))!=0 ) continue; 21326f82e85aSdrh if( (pWC->a[iTerm].eOperator & WO_ALL)==0 ) continue; 21336f82e85aSdrh testcase( pWC->a[iTerm].wtFlags & TERM_ORINFO ); 21346f82e85aSdrh pExpr = sqlite3ExprDup(db, pExpr, 0); 2135d5c851c1Sdrh pAndExpr = sqlite3ExprAnd(pParse, pAndExpr, pExpr); 21366f82e85aSdrh } 21376f82e85aSdrh if( pAndExpr ){ 2138f1722baaSdrh /* The extra 0x10000 bit on the opcode is masked off and does not 2139f1722baaSdrh ** become part of the new Expr.op. However, it does make the 2140f1722baaSdrh ** op==TK_AND comparison inside of sqlite3PExpr() false, and this 2141f1722baaSdrh ** prevents sqlite3PExpr() from implementing AND short-circuit 2142f1722baaSdrh ** optimization, which we do not want here. */ 2143f1722baaSdrh pAndExpr = sqlite3PExpr(pParse, TK_AND|0x10000, 0, pAndExpr); 21446f82e85aSdrh } 21456f82e85aSdrh } 21466f82e85aSdrh 21476f82e85aSdrh /* Run a separate WHERE clause for each term of the OR clause. After 21486f82e85aSdrh ** eliminating duplicates from other WHERE clauses, the action for each 21496f82e85aSdrh ** sub-WHERE clause is to to invoke the main loop body as a subroutine. 21506f82e85aSdrh */ 21515d72d924Sdrh ExplainQueryPlan((pParse, 1, "MULTI-INDEX OR")); 21526f82e85aSdrh for(ii=0; ii<pOrWc->nTerm; ii++){ 21536f82e85aSdrh WhereTerm *pOrTerm = &pOrWc->a[ii]; 21546f82e85aSdrh if( pOrTerm->leftCursor==iCur || (pOrTerm->eOperator & WO_AND)!=0 ){ 21556f82e85aSdrh WhereInfo *pSubWInfo; /* Info for single OR-term scan */ 21566f82e85aSdrh Expr *pOrExpr = pOrTerm->pExpr; /* Current OR clause term */ 2157728e0f91Sdrh int jmp1 = 0; /* Address of jump operation */ 21583b8eb08bSdrh testcase( (pTabItem[0].fg.jointype & JT_LEFT)!=0 21593b8eb08bSdrh && !ExprHasProperty(pOrExpr, EP_FromJoin) 21603b8eb08bSdrh ); /* See TH3 vtab25.400 and ticket 614b25314c766238 */ 2161820fcd2cSdan if( pAndExpr ){ 21626f82e85aSdrh pAndExpr->pLeft = pOrExpr; 21636f82e85aSdrh pOrExpr = pAndExpr; 21646f82e85aSdrh } 21656f82e85aSdrh /* Loop through table entries that match term pOrTerm. */ 2166bd462bccSdrh ExplainQueryPlan((pParse, 1, "INDEX %d", ii+1)); 21676f82e85aSdrh WHERETRACE(0xffff, ("Subplan for OR-clause:\n")); 21686f82e85aSdrh pSubWInfo = sqlite3WhereBegin(pParse, pOrTab, pOrExpr, 0, 0, 216968c0c710Sdrh WHERE_OR_SUBCLAUSE, iCovCur); 21706f82e85aSdrh assert( pSubWInfo || pParse->nErr || db->mallocFailed ); 21716f82e85aSdrh if( pSubWInfo ){ 21726f82e85aSdrh WhereLoop *pSubLoop; 21736f82e85aSdrh int addrExplain = sqlite3WhereExplainOneScan( 2174e2188f0bSdrh pParse, pOrTab, &pSubWInfo->a[0], 0 21756f82e85aSdrh ); 21766f82e85aSdrh sqlite3WhereAddScanStatus(v, pOrTab, &pSubWInfo->a[0], addrExplain); 21776f82e85aSdrh 21786f82e85aSdrh /* This is the sub-WHERE clause body. First skip over 21796f82e85aSdrh ** duplicate rows from prior sub-WHERE clauses, and record the 21806f82e85aSdrh ** rowid (or PRIMARY KEY) for the current row so that the same 21816f82e85aSdrh ** row will be skipped in subsequent sub-WHERE clauses. 21826f82e85aSdrh */ 21836f82e85aSdrh if( (pWInfo->wctrlFlags & WHERE_DUPLICATES_OK)==0 ){ 21846f82e85aSdrh int iSet = ((ii==pOrWc->nTerm-1)?-1:ii); 21856f82e85aSdrh if( HasRowid(pTab) ){ 21866df9c4b9Sdrh sqlite3ExprCodeGetColumnOfTable(v, pTab, iCur, -1, regRowid); 2187728e0f91Sdrh jmp1 = sqlite3VdbeAddOp4Int(v, OP_RowSetTest, regRowset, 0, 21888c607191Sdrh regRowid, iSet); 21896f82e85aSdrh VdbeCoverage(v); 21906f82e85aSdrh }else{ 21916f82e85aSdrh Index *pPk = sqlite3PrimaryKeyIndex(pTab); 21926f82e85aSdrh int nPk = pPk->nKeyCol; 21936f82e85aSdrh int iPk; 21948c607191Sdrh int r; 21956f82e85aSdrh 21966f82e85aSdrh /* Read the PK into an array of temp registers. */ 21976f82e85aSdrh r = sqlite3GetTempRange(pParse, nPk); 21986f82e85aSdrh for(iPk=0; iPk<nPk; iPk++){ 21996f82e85aSdrh int iCol = pPk->aiColumn[iPk]; 22006df9c4b9Sdrh sqlite3ExprCodeGetColumnOfTable(v, pTab, iCur, iCol,r+iPk); 22016f82e85aSdrh } 22026f82e85aSdrh 22036f82e85aSdrh /* Check if the temp table already contains this key. If so, 22046f82e85aSdrh ** the row has already been included in the result set and 22056f82e85aSdrh ** can be ignored (by jumping past the Gosub below). Otherwise, 22066f82e85aSdrh ** insert the key into the temp table and proceed with processing 22076f82e85aSdrh ** the row. 22086f82e85aSdrh ** 22096f82e85aSdrh ** Use some of the same optimizations as OP_RowSetTest: If iSet 22106f82e85aSdrh ** is zero, assume that the key cannot already be present in 22116f82e85aSdrh ** the temp table. And if iSet is -1, assume that there is no 22126f82e85aSdrh ** need to insert the key into the temp table, as it will never 22136f82e85aSdrh ** be tested for. */ 22146f82e85aSdrh if( iSet ){ 2215728e0f91Sdrh jmp1 = sqlite3VdbeAddOp4Int(v, OP_Found, regRowset, 0, r, nPk); 22166f82e85aSdrh VdbeCoverage(v); 22176f82e85aSdrh } 22186f82e85aSdrh if( iSet>=0 ){ 22196f82e85aSdrh sqlite3VdbeAddOp3(v, OP_MakeRecord, r, nPk, regRowid); 22209b4eaebcSdrh sqlite3VdbeAddOp4Int(v, OP_IdxInsert, regRowset, regRowid, 22219b4eaebcSdrh r, nPk); 22226f82e85aSdrh if( iSet ) sqlite3VdbeChangeP5(v, OPFLAG_USESEEKRESULT); 22236f82e85aSdrh } 22246f82e85aSdrh 22256f82e85aSdrh /* Release the array of temp registers */ 22266f82e85aSdrh sqlite3ReleaseTempRange(pParse, r, nPk); 22276f82e85aSdrh } 22286f82e85aSdrh } 22296f82e85aSdrh 22306f82e85aSdrh /* Invoke the main loop body as a subroutine */ 22316f82e85aSdrh sqlite3VdbeAddOp2(v, OP_Gosub, regReturn, iLoopBody); 22326f82e85aSdrh 22336f82e85aSdrh /* Jump here (skipping the main loop body subroutine) if the 22346f82e85aSdrh ** current sub-WHERE row is a duplicate from prior sub-WHEREs. */ 2235728e0f91Sdrh if( jmp1 ) sqlite3VdbeJumpHere(v, jmp1); 22366f82e85aSdrh 22376f82e85aSdrh /* The pSubWInfo->untestedTerms flag means that this OR term 22386f82e85aSdrh ** contained one or more AND term from a notReady table. The 22396f82e85aSdrh ** terms from the notReady table could not be tested and will 22406f82e85aSdrh ** need to be tested later. 22416f82e85aSdrh */ 22426f82e85aSdrh if( pSubWInfo->untestedTerms ) untestedTerms = 1; 22436f82e85aSdrh 22446f82e85aSdrh /* If all of the OR-connected terms are optimized using the same 22456f82e85aSdrh ** index, and the index is opened using the same cursor number 22466f82e85aSdrh ** by each call to sqlite3WhereBegin() made by this loop, it may 22476f82e85aSdrh ** be possible to use that index as a covering index. 22486f82e85aSdrh ** 22496f82e85aSdrh ** If the call to sqlite3WhereBegin() above resulted in a scan that 22506f82e85aSdrh ** uses an index, and this is either the first OR-connected term 22516f82e85aSdrh ** processed or the index is the same as that used by all previous 22526f82e85aSdrh ** terms, set pCov to the candidate covering index. Otherwise, set 22536f82e85aSdrh ** pCov to NULL to indicate that no candidate covering index will 22546f82e85aSdrh ** be available. 22556f82e85aSdrh */ 22566f82e85aSdrh pSubLoop = pSubWInfo->a[0].pWLoop; 22576f82e85aSdrh assert( (pSubLoop->wsFlags & WHERE_AUTO_INDEX)==0 ); 22586f82e85aSdrh if( (pSubLoop->wsFlags & WHERE_INDEXED)!=0 22596f82e85aSdrh && (ii==0 || pSubLoop->u.btree.pIndex==pCov) 22606f82e85aSdrh && (HasRowid(pTab) || !IsPrimaryKeyIndex(pSubLoop->u.btree.pIndex)) 22616f82e85aSdrh ){ 22626f82e85aSdrh assert( pSubWInfo->a[0].iIdxCur==iCovCur ); 22636f82e85aSdrh pCov = pSubLoop->u.btree.pIndex; 22646f82e85aSdrh }else{ 22656f82e85aSdrh pCov = 0; 22666f82e85aSdrh } 226768c0c710Sdrh if( sqlite3WhereUsesDeferredSeek(pSubWInfo) ){ 226868c0c710Sdrh pWInfo->bDeferredSeek = 1; 226968c0c710Sdrh } 22706f82e85aSdrh 22716f82e85aSdrh /* Finish the loop through table entries that match term pOrTerm. */ 22726f82e85aSdrh sqlite3WhereEnd(pSubWInfo); 2273bd462bccSdrh ExplainQueryPlanPop(pParse); 22746f82e85aSdrh } 22756f82e85aSdrh } 22766f82e85aSdrh } 22775d72d924Sdrh ExplainQueryPlanPop(pParse); 22786f82e85aSdrh pLevel->u.pCovidx = pCov; 22796f82e85aSdrh if( pCov ) pLevel->iIdxCur = iCovCur; 22806f82e85aSdrh if( pAndExpr ){ 22816f82e85aSdrh pAndExpr->pLeft = 0; 22826f82e85aSdrh sqlite3ExprDelete(db, pAndExpr); 22836f82e85aSdrh } 22846f82e85aSdrh sqlite3VdbeChangeP1(v, iRetInit, sqlite3VdbeCurrentAddr(v)); 2285076e85f5Sdrh sqlite3VdbeGoto(v, pLevel->addrBrk); 22866f82e85aSdrh sqlite3VdbeResolveLabel(v, iLoopBody); 22876f82e85aSdrh 2288dd2d9a3dSdrh if( pWInfo->nLevel>1 ){ sqlite3StackFree(db, pOrTab); } 22896f82e85aSdrh if( !untestedTerms ) disableTerm(pLevel, pTerm); 22906f82e85aSdrh }else 22916f82e85aSdrh #endif /* SQLITE_OMIT_OR_OPTIMIZATION */ 22926f82e85aSdrh 22936f82e85aSdrh { 22946f82e85aSdrh /* Case 6: There is no usable index. We must do a complete 22956f82e85aSdrh ** scan of the entire table. 22966f82e85aSdrh */ 22976f82e85aSdrh static const u8 aStep[] = { OP_Next, OP_Prev }; 22986f82e85aSdrh static const u8 aStart[] = { OP_Rewind, OP_Last }; 22996f82e85aSdrh assert( bRev==0 || bRev==1 ); 23008a48b9c0Sdrh if( pTabItem->fg.isRecursive ){ 23016f82e85aSdrh /* Tables marked isRecursive have only a single row that is stored in 23026f82e85aSdrh ** a pseudo-cursor. No need to Rewind or Next such cursors. */ 23036f82e85aSdrh pLevel->op = OP_Noop; 23046f82e85aSdrh }else{ 2305b324cf75Sdan codeCursorHint(pTabItem, pWInfo, pLevel, 0); 23066f82e85aSdrh pLevel->op = aStep[bRev]; 23076f82e85aSdrh pLevel->p1 = iCur; 23083a3b420aSdrh pLevel->p2 = 1 + sqlite3VdbeAddOp2(v, aStart[bRev], iCur, addrHalt); 23096f82e85aSdrh VdbeCoverageIf(v, bRev==0); 23106f82e85aSdrh VdbeCoverageIf(v, bRev!=0); 23116f82e85aSdrh pLevel->p5 = SQLITE_STMTSTATUS_FULLSCAN_STEP; 23126f82e85aSdrh } 23136f82e85aSdrh } 23146f82e85aSdrh 23156f82e85aSdrh #ifdef SQLITE_ENABLE_STMT_SCANSTATUS 23166f82e85aSdrh pLevel->addrVisit = sqlite3VdbeCurrentAddr(v); 23176f82e85aSdrh #endif 23186f82e85aSdrh 23196f82e85aSdrh /* Insert code to test every subexpression that can be completely 23206f82e85aSdrh ** computed using the current set of tables. 23216f654a40Sdan ** 2322ebc63013Sdan ** This loop may run between one and three times, depending on the 2323ebc63013Sdan ** constraints to be generated. The value of stack variable iLoop 2324ebc63013Sdan ** determines the constraints coded by each iteration, as follows: 2325ebc63013Sdan ** 2326ebc63013Sdan ** iLoop==1: Code only expressions that are entirely covered by pIdx. 2327ebc63013Sdan ** iLoop==2: Code remaining expressions that do not contain correlated 2328ebc63013Sdan ** sub-queries. 2329ebc63013Sdan ** iLoop==3: Code all remaining expressions. 2330ebc63013Sdan ** 2331ebc63013Sdan ** An effort is made to skip unnecessary iterations of the loop. 23326ab3eb5dSdrh */ 2333ebc63013Sdan iLoop = (pIdx ? 1 : 2); 23346ab3eb5dSdrh do{ 2335ebc63013Sdan int iNext = 0; /* Next value for iLoop */ 23366f82e85aSdrh for(pTerm=pWC->a, j=pWC->nTerm; j>0; j--, pTerm++){ 23376f82e85aSdrh Expr *pE; 23386f82e85aSdrh int skipLikeAddr = 0; 23396f82e85aSdrh testcase( pTerm->wtFlags & TERM_VIRTUAL ); 23406f82e85aSdrh testcase( pTerm->wtFlags & TERM_CODED ); 23416f82e85aSdrh if( pTerm->wtFlags & (TERM_VIRTUAL|TERM_CODED) ) continue; 23426f82e85aSdrh if( (pTerm->prereqAll & pLevel->notReady)!=0 ){ 23436f82e85aSdrh testcase( pWInfo->untestedTerms==0 2344ce943bc8Sdrh && (pWInfo->wctrlFlags & WHERE_OR_SUBCLAUSE)!=0 ); 23456f82e85aSdrh pWInfo->untestedTerms = 1; 23466f82e85aSdrh continue; 23476f82e85aSdrh } 23486f82e85aSdrh pE = pTerm->pExpr; 23496f82e85aSdrh assert( pE!=0 ); 2350820fcd2cSdan if( (pTabItem->fg.jointype&JT_LEFT) && !ExprHasProperty(pE,EP_FromJoin) ){ 23516f654a40Sdan continue; 23526f654a40Sdan } 2353ebc63013Sdan 23548674ec5aSdan if( iLoop==1 && !sqlite3ExprCoveredByIndex(pE, pLevel->iTabCur, pIdx) ){ 2355ebc63013Sdan iNext = 2; 23566f82e85aSdrh continue; 23576f82e85aSdrh } 2358d3930b12Sdan if( iLoop<3 && (pTerm->wtFlags & TERM_VARSELECT) ){ 2359ebc63013Sdan if( iNext==0 ) iNext = 3; 2360ebc63013Sdan continue; 2361ebc63013Sdan } 2362ebc63013Sdan 23634de3353dSdrh if( (pTerm->wtFlags & TERM_LIKECOND)!=0 ){ 236444aebff2Sdrh /* If the TERM_LIKECOND flag is set, that means that the range search 236544aebff2Sdrh ** is sufficient to guarantee that the LIKE operator is true, so we 236644aebff2Sdrh ** can skip the call to the like(A,B) function. But this only works 236744aebff2Sdrh ** for strings. So do not skip the call to the function on the pass 236844aebff2Sdrh ** that compares BLOBs. */ 236941d2e66eSdrh #ifdef SQLITE_LIKE_DOESNT_MATCH_BLOBS 237041d2e66eSdrh continue; 237141d2e66eSdrh #else 237244aebff2Sdrh u32 x = pLevel->iLikeRepCntr; 23734de3353dSdrh if( x>0 ){ 237444aebff2Sdrh skipLikeAddr = sqlite3VdbeAddOp1(v, (x&1)?OP_IfNot:OP_If,(int)(x>>1)); 23756f88359dSdrh VdbeCoverageIf(v, (x&1)==1); 23766f88359dSdrh VdbeCoverageIf(v, (x&1)==0); 23774de3353dSdrh } 237841d2e66eSdrh #endif 23796f82e85aSdrh } 238066a0bf31Sdrh #ifdef WHERETRACE_ENABLED /* 0xffff */ 238166a0bf31Sdrh if( sqlite3WhereTrace ){ 238266a0bf31Sdrh VdbeNoopComment((v, "WhereTerm[%d] (%p) priority=%d", 238366a0bf31Sdrh pWC->nTerm-j, pTerm, iLoop)); 238466a0bf31Sdrh } 2385118efd16Sdrh if( sqlite3WhereTrace & 0x800 ){ 2386118efd16Sdrh sqlite3DebugPrintf("Coding auxiliary constraint:\n"); 2387118efd16Sdrh sqlite3WhereTermPrint(pTerm, pWC->nTerm-j); 2388118efd16Sdrh } 238966a0bf31Sdrh #endif 23906f82e85aSdrh sqlite3ExprIfFalse(pParse, pE, addrCont, SQLITE_JUMPIFNULL); 23916f82e85aSdrh if( skipLikeAddr ) sqlite3VdbeJumpHere(v, skipLikeAddr); 23926f82e85aSdrh pTerm->wtFlags |= TERM_CODED; 23936f82e85aSdrh } 2394ebc63013Sdan iLoop = iNext; 2395ebc63013Sdan }while( iLoop>0 ); 23966f82e85aSdrh 23976f82e85aSdrh /* Insert code to test for implied constraints based on transitivity 23986f82e85aSdrh ** of the "==" operator. 23996f82e85aSdrh ** 24006f82e85aSdrh ** Example: If the WHERE clause contains "t1.a=t2.b" and "t2.b=123" 24016f82e85aSdrh ** and we are coding the t1 loop and the t2 loop has not yet coded, 24026f82e85aSdrh ** then we cannot use the "t1.a=t2.b" constraint, but we can code 24036f82e85aSdrh ** the implied "t1.a=123" constraint. 24046f82e85aSdrh */ 24056f82e85aSdrh for(pTerm=pWC->a, j=pWC->nTerm; j>0; j--, pTerm++){ 2406cb43a937Sdrh Expr *pE, sEAlt; 24076f82e85aSdrh WhereTerm *pAlt; 24086f82e85aSdrh if( pTerm->wtFlags & (TERM_VIRTUAL|TERM_CODED) ) continue; 24096f82e85aSdrh if( (pTerm->eOperator & (WO_EQ|WO_IS))==0 ) continue; 24106f82e85aSdrh if( (pTerm->eOperator & WO_EQUIV)==0 ) continue; 24116f82e85aSdrh if( pTerm->leftCursor!=iCur ) continue; 2412a4b2df5cSdrh if( pTabItem->fg.jointype & JT_LEFT ) continue; 24136f82e85aSdrh pE = pTerm->pExpr; 2414118efd16Sdrh #ifdef WHERETRACE_ENABLED /* 0x800 */ 2415118efd16Sdrh if( sqlite3WhereTrace & 0x800 ){ 2416118efd16Sdrh sqlite3DebugPrintf("Coding transitive constraint:\n"); 2417118efd16Sdrh sqlite3WhereTermPrint(pTerm, pWC->nTerm-j); 2418118efd16Sdrh } 2419118efd16Sdrh #endif 2420f1bb31e2Sdrh assert( !ExprHasProperty(pE, EP_FromJoin) ); 24216f82e85aSdrh assert( (pTerm->prereqRight & pLevel->notReady)!=0 ); 242275fa2663Sdrh pAlt = sqlite3WhereFindTerm(pWC, iCur, pTerm->u.x.leftColumn, notReady, 24236f82e85aSdrh WO_EQ|WO_IN|WO_IS, 0); 24246f82e85aSdrh if( pAlt==0 ) continue; 24256f82e85aSdrh if( pAlt->wtFlags & (TERM_CODED) ) continue; 2426a916b570Sdan if( (pAlt->eOperator & WO_IN) 2427a916b570Sdan && (pAlt->pExpr->flags & EP_xIsSelect) 2428a599e150Sdrh && (pAlt->pExpr->x.pSelect->pEList->nExpr>1) 2429a916b570Sdan ){ 2430a916b570Sdan continue; 2431a916b570Sdan } 24326f82e85aSdrh testcase( pAlt->eOperator & WO_EQ ); 24336f82e85aSdrh testcase( pAlt->eOperator & WO_IS ); 24346f82e85aSdrh testcase( pAlt->eOperator & WO_IN ); 24356f82e85aSdrh VdbeModuleComment((v, "begin transitive constraint")); 2436cb43a937Sdrh sEAlt = *pAlt->pExpr; 2437cb43a937Sdrh sEAlt.pLeft = pE->pLeft; 2438cb43a937Sdrh sqlite3ExprIfFalse(pParse, &sEAlt, addrCont, SQLITE_JUMPIFNULL); 24396f82e85aSdrh } 24406f82e85aSdrh 24416f82e85aSdrh /* For a LEFT OUTER JOIN, generate code that will record the fact that 24426f82e85aSdrh ** at least one row of the right table has matched the left table. 24436f82e85aSdrh */ 24446f82e85aSdrh if( pLevel->iLeftJoin ){ 24456f82e85aSdrh pLevel->addrFirst = sqlite3VdbeCurrentAddr(v); 24466f82e85aSdrh sqlite3VdbeAddOp2(v, OP_Integer, 1, pLevel->iLeftJoin); 24476f82e85aSdrh VdbeComment((v, "record LEFT JOIN hit")); 24486f82e85aSdrh for(pTerm=pWC->a, j=0; j<pWC->nTerm; j++, pTerm++){ 24496f82e85aSdrh testcase( pTerm->wtFlags & TERM_VIRTUAL ); 24506f82e85aSdrh testcase( pTerm->wtFlags & TERM_CODED ); 24516f82e85aSdrh if( pTerm->wtFlags & (TERM_VIRTUAL|TERM_CODED) ) continue; 24526f82e85aSdrh if( (pTerm->prereqAll & pLevel->notReady)!=0 ){ 24536f82e85aSdrh assert( pWInfo->untestedTerms ); 24546f82e85aSdrh continue; 24556f82e85aSdrh } 24566f82e85aSdrh assert( pTerm->pExpr ); 24576f82e85aSdrh sqlite3ExprIfFalse(pParse, pTerm->pExpr, addrCont, SQLITE_JUMPIFNULL); 24586f82e85aSdrh pTerm->wtFlags |= TERM_CODED; 24596f82e85aSdrh } 24606f82e85aSdrh } 24616f82e85aSdrh 2462118efd16Sdrh #if WHERETRACE_ENABLED /* 0x20800 */ 2463118efd16Sdrh if( sqlite3WhereTrace & 0x20000 ){ 2464f1bb31e2Sdrh sqlite3DebugPrintf("All WHERE-clause terms after coding level %d:\n", 2465f1bb31e2Sdrh iLevel); 2466118efd16Sdrh sqlite3WhereClausePrint(pWC); 2467118efd16Sdrh } 2468118efd16Sdrh if( sqlite3WhereTrace & 0x800 ){ 2469118efd16Sdrh sqlite3DebugPrintf("End Coding level %d: notReady=%llx\n", 2470118efd16Sdrh iLevel, (u64)pLevel->notReady); 2471118efd16Sdrh } 2472118efd16Sdrh #endif 24736f82e85aSdrh return pLevel->notReady; 24746f82e85aSdrh } 2475