blob: 65079872e14d1faa0a29d38f3bdd3a06118b3167 [file] [log] [blame]
drh6f82e852015-06-06 20:12:09 +00001/*
2** 2015-06-06
3**
4** The author disclaims copyright to this source code. In place of
5** a legal notice, here is a blessing:
6**
7** May you do good and not evil.
8** May you find forgiveness for yourself and forgive others.
9** May you share freely, never taking more than you give.
10**
11*************************************************************************
12** This module contains C code that generates VDBE code used to process
13** the WHERE clause of SQL statements.
14**
15** This file was split off from where.c on 2015-06-06 in order to reduce the
16** size of where.c and make it easier to edit. This file contains the routines
17** that actually generate the bulk of the WHERE loop code. The original where.c
18** file retains the code that does query planning and analysis.
19*/
20#include "sqliteInt.h"
21#include "whereInt.h"
22
23#ifndef SQLITE_OMIT_EXPLAIN
dan1d9bc9b2016-08-08 18:42:08 +000024
25/*
26** Return the name of the i-th column of the pIdx index.
27*/
28static const char *explainIndexColumnName(Index *pIdx, int i){
29 i = pIdx->aiColumn[i];
30 if( i==XN_EXPR ) return "<expr>";
31 if( i==XN_ROWID ) return "rowid";
32 return pIdx->pTable->aCol[i].zName;
33}
34
drh6f82e852015-06-06 20:12:09 +000035/*
36** This routine is a helper for explainIndexRange() below
37**
38** pStr holds the text of an expression that we are building up one term
39** at a time. This routine adds a new term to the end of the expression.
40** Terms are separated by AND so add the "AND" text for second and subsequent
41** terms only.
42*/
43static void explainAppendTerm(
44 StrAccum *pStr, /* The text expression being built */
dan1d9bc9b2016-08-08 18:42:08 +000045 Index *pIdx, /* Index to read column names from */
46 int nTerm, /* Number of terms */
47 int iTerm, /* Zero-based index of first term. */
48 int bAnd, /* Non-zero to append " AND " */
drh6f82e852015-06-06 20:12:09 +000049 const char *zOp /* Name of the operator */
50){
dan1d9bc9b2016-08-08 18:42:08 +000051 int i;
drh6f82e852015-06-06 20:12:09 +000052
dan1d9bc9b2016-08-08 18:42:08 +000053 assert( nTerm>=1 );
54 if( bAnd ) sqlite3StrAccumAppend(pStr, " AND ", 5);
55
56 if( nTerm>1 ) sqlite3StrAccumAppend(pStr, "(", 1);
57 for(i=0; i<nTerm; i++){
58 if( i ) sqlite3StrAccumAppend(pStr, ",", 1);
59 sqlite3StrAccumAppendAll(pStr, explainIndexColumnName(pIdx, iTerm+i));
60 }
61 if( nTerm>1 ) sqlite3StrAccumAppend(pStr, ")", 1);
62
63 sqlite3StrAccumAppend(pStr, zOp, 1);
64
65 if( nTerm>1 ) sqlite3StrAccumAppend(pStr, "(", 1);
66 for(i=0; i<nTerm; i++){
67 if( i ) sqlite3StrAccumAppend(pStr, ",", 1);
68 sqlite3StrAccumAppend(pStr, "?", 1);
69 }
70 if( nTerm>1 ) sqlite3StrAccumAppend(pStr, ")", 1);
drhc7c46802015-08-27 20:33:38 +000071}
72
73/*
drh6f82e852015-06-06 20:12:09 +000074** Argument pLevel describes a strategy for scanning table pTab. This
75** function appends text to pStr that describes the subset of table
76** rows scanned by the strategy in the form of an SQL expression.
77**
78** For example, if the query:
79**
80** SELECT * FROM t1 WHERE a=1 AND b>2;
81**
82** is run and there is an index on (a, b), then this function returns a
83** string similar to:
84**
85** "a=? AND b>?"
86*/
drh8faee872015-09-19 18:08:13 +000087static void explainIndexRange(StrAccum *pStr, WhereLoop *pLoop){
drh6f82e852015-06-06 20:12:09 +000088 Index *pIndex = pLoop->u.btree.pIndex;
89 u16 nEq = pLoop->u.btree.nEq;
90 u16 nSkip = pLoop->nSkip;
91 int i, j;
drh6f82e852015-06-06 20:12:09 +000092
93 if( nEq==0 && (pLoop->wsFlags&(WHERE_BTM_LIMIT|WHERE_TOP_LIMIT))==0 ) return;
94 sqlite3StrAccumAppend(pStr, " (", 2);
95 for(i=0; i<nEq; i++){
drhc7c46802015-08-27 20:33:38 +000096 const char *z = explainIndexColumnName(pIndex, i);
drh2ed0d802015-09-02 16:51:37 +000097 if( i ) sqlite3StrAccumAppend(pStr, " AND ", 5);
drh5f4a6862016-01-30 12:50:25 +000098 sqlite3XPrintf(pStr, i>=nSkip ? "%s=?" : "ANY(%s)", z);
drh6f82e852015-06-06 20:12:09 +000099 }
100
101 j = i;
102 if( pLoop->wsFlags&WHERE_BTM_LIMIT ){
dan1d9bc9b2016-08-08 18:42:08 +0000103 explainAppendTerm(pStr, pIndex, pLoop->u.btree.nBtm, j, i, ">");
104 i = 1;
drh6f82e852015-06-06 20:12:09 +0000105 }
106 if( pLoop->wsFlags&WHERE_TOP_LIMIT ){
dan1d9bc9b2016-08-08 18:42:08 +0000107 explainAppendTerm(pStr, pIndex, pLoop->u.btree.nTop, j, i, "<");
drh6f82e852015-06-06 20:12:09 +0000108 }
109 sqlite3StrAccumAppend(pStr, ")", 1);
110}
111
112/*
113** This function is a no-op unless currently processing an EXPLAIN QUERY PLAN
114** command, or if either SQLITE_DEBUG or SQLITE_ENABLE_STMT_SCANSTATUS was
115** defined at compile-time. If it is not a no-op, a single OP_Explain opcode
116** is added to the output to describe the table scan strategy in pLevel.
117**
118** If an OP_Explain opcode is added to the VM, its address is returned.
119** Otherwise, if no OP_Explain is coded, zero is returned.
120*/
121int sqlite3WhereExplainOneScan(
122 Parse *pParse, /* Parse context */
123 SrcList *pTabList, /* Table list this loop refers to */
124 WhereLevel *pLevel, /* Scan to write OP_Explain opcode for */
125 int iLevel, /* Value for "level" column of output */
126 int iFrom, /* Value for "from" column of output */
127 u16 wctrlFlags /* Flags passed to sqlite3WhereBegin() */
128){
129 int ret = 0;
130#if !defined(SQLITE_DEBUG) && !defined(SQLITE_ENABLE_STMT_SCANSTATUS)
131 if( pParse->explain==2 )
132#endif
133 {
134 struct SrcList_item *pItem = &pTabList->a[pLevel->iFrom];
135 Vdbe *v = pParse->pVdbe; /* VM being constructed */
136 sqlite3 *db = pParse->db; /* Database handle */
137 int iId = pParse->iSelectId; /* Select id (left-most output column) */
138 int isSearch; /* True for a SEARCH. False for SCAN. */
139 WhereLoop *pLoop; /* The controlling WhereLoop object */
140 u32 flags; /* Flags that describe this loop */
141 char *zMsg; /* Text to add to EQP output */
142 StrAccum str; /* EQP output string */
143 char zBuf[100]; /* Initial space for EQP output string */
144
145 pLoop = pLevel->pWLoop;
146 flags = pLoop->wsFlags;
drhce943bc2016-05-19 18:56:33 +0000147 if( (flags&WHERE_MULTI_OR) || (wctrlFlags&WHERE_OR_SUBCLAUSE) ) return 0;
drh6f82e852015-06-06 20:12:09 +0000148
149 isSearch = (flags&(WHERE_BTM_LIMIT|WHERE_TOP_LIMIT))!=0
150 || ((flags&WHERE_VIRTUALTABLE)==0 && (pLoop->u.btree.nEq>0))
151 || (wctrlFlags&(WHERE_ORDERBY_MIN|WHERE_ORDERBY_MAX));
152
153 sqlite3StrAccumInit(&str, db, zBuf, sizeof(zBuf), SQLITE_MAX_LENGTH);
154 sqlite3StrAccumAppendAll(&str, isSearch ? "SEARCH" : "SCAN");
155 if( pItem->pSelect ){
drh5f4a6862016-01-30 12:50:25 +0000156 sqlite3XPrintf(&str, " SUBQUERY %d", pItem->iSelectId);
drh6f82e852015-06-06 20:12:09 +0000157 }else{
drh5f4a6862016-01-30 12:50:25 +0000158 sqlite3XPrintf(&str, " TABLE %s", pItem->zName);
drh6f82e852015-06-06 20:12:09 +0000159 }
160
161 if( pItem->zAlias ){
drh5f4a6862016-01-30 12:50:25 +0000162 sqlite3XPrintf(&str, " AS %s", pItem->zAlias);
drh6f82e852015-06-06 20:12:09 +0000163 }
164 if( (flags & (WHERE_IPK|WHERE_VIRTUALTABLE))==0 ){
165 const char *zFmt = 0;
166 Index *pIdx;
167
168 assert( pLoop->u.btree.pIndex!=0 );
169 pIdx = pLoop->u.btree.pIndex;
170 assert( !(flags&WHERE_AUTO_INDEX) || (flags&WHERE_IDX_ONLY) );
171 if( !HasRowid(pItem->pTab) && IsPrimaryKeyIndex(pIdx) ){
172 if( isSearch ){
173 zFmt = "PRIMARY KEY";
174 }
175 }else if( flags & WHERE_PARTIALIDX ){
176 zFmt = "AUTOMATIC PARTIAL COVERING INDEX";
177 }else if( flags & WHERE_AUTO_INDEX ){
178 zFmt = "AUTOMATIC COVERING INDEX";
179 }else if( flags & WHERE_IDX_ONLY ){
180 zFmt = "COVERING INDEX %s";
181 }else{
182 zFmt = "INDEX %s";
183 }
184 if( zFmt ){
185 sqlite3StrAccumAppend(&str, " USING ", 7);
drh5f4a6862016-01-30 12:50:25 +0000186 sqlite3XPrintf(&str, zFmt, pIdx->zName);
drh8faee872015-09-19 18:08:13 +0000187 explainIndexRange(&str, pLoop);
drh6f82e852015-06-06 20:12:09 +0000188 }
189 }else if( (flags & WHERE_IPK)!=0 && (flags & WHERE_CONSTRAINT)!=0 ){
drhd37bea52015-09-02 15:37:50 +0000190 const char *zRangeOp;
drh6f82e852015-06-06 20:12:09 +0000191 if( flags&(WHERE_COLUMN_EQ|WHERE_COLUMN_IN) ){
drhd37bea52015-09-02 15:37:50 +0000192 zRangeOp = "=";
drh6f82e852015-06-06 20:12:09 +0000193 }else if( (flags&WHERE_BOTH_LIMIT)==WHERE_BOTH_LIMIT ){
drhd37bea52015-09-02 15:37:50 +0000194 zRangeOp = ">? AND rowid<";
drh6f82e852015-06-06 20:12:09 +0000195 }else if( flags&WHERE_BTM_LIMIT ){
drhd37bea52015-09-02 15:37:50 +0000196 zRangeOp = ">";
drh6f82e852015-06-06 20:12:09 +0000197 }else{
198 assert( flags&WHERE_TOP_LIMIT);
drhd37bea52015-09-02 15:37:50 +0000199 zRangeOp = "<";
drh6f82e852015-06-06 20:12:09 +0000200 }
drh5f4a6862016-01-30 12:50:25 +0000201 sqlite3XPrintf(&str, " USING INTEGER PRIMARY KEY (rowid%s?)",zRangeOp);
drh6f82e852015-06-06 20:12:09 +0000202 }
203#ifndef SQLITE_OMIT_VIRTUALTABLE
204 else if( (flags & WHERE_VIRTUALTABLE)!=0 ){
drh5f4a6862016-01-30 12:50:25 +0000205 sqlite3XPrintf(&str, " VIRTUAL TABLE INDEX %d:%s",
drh6f82e852015-06-06 20:12:09 +0000206 pLoop->u.vtab.idxNum, pLoop->u.vtab.idxStr);
207 }
208#endif
209#ifdef SQLITE_EXPLAIN_ESTIMATED_ROWS
210 if( pLoop->nOut>=10 ){
drh5f4a6862016-01-30 12:50:25 +0000211 sqlite3XPrintf(&str, " (~%llu rows)", sqlite3LogEstToInt(pLoop->nOut));
drh6f82e852015-06-06 20:12:09 +0000212 }else{
213 sqlite3StrAccumAppend(&str, " (~1 row)", 9);
214 }
215#endif
216 zMsg = sqlite3StrAccumFinish(&str);
217 ret = sqlite3VdbeAddOp4(v, OP_Explain, iId, iLevel, iFrom, zMsg,P4_DYNAMIC);
218 }
219 return ret;
220}
221#endif /* SQLITE_OMIT_EXPLAIN */
222
223#ifdef SQLITE_ENABLE_STMT_SCANSTATUS
224/*
225** Configure the VM passed as the first argument with an
226** sqlite3_stmt_scanstatus() entry corresponding to the scan used to
227** implement level pLvl. Argument pSrclist is a pointer to the FROM
228** clause that the scan reads data from.
229**
230** If argument addrExplain is not 0, it must be the address of an
231** OP_Explain instruction that describes the same loop.
232*/
233void sqlite3WhereAddScanStatus(
234 Vdbe *v, /* Vdbe to add scanstatus entry to */
235 SrcList *pSrclist, /* FROM clause pLvl reads data from */
236 WhereLevel *pLvl, /* Level to add scanstatus() entry for */
237 int addrExplain /* Address of OP_Explain (or 0) */
238){
239 const char *zObj = 0;
240 WhereLoop *pLoop = pLvl->pWLoop;
241 if( (pLoop->wsFlags & WHERE_VIRTUALTABLE)==0 && pLoop->u.btree.pIndex!=0 ){
242 zObj = pLoop->u.btree.pIndex->zName;
243 }else{
244 zObj = pSrclist->a[pLvl->iFrom].zName;
245 }
246 sqlite3VdbeScanStatus(
247 v, addrExplain, pLvl->addrBody, pLvl->addrVisit, pLoop->nOut, zObj
248 );
249}
250#endif
251
252
253/*
254** Disable a term in the WHERE clause. Except, do not disable the term
255** if it controls a LEFT OUTER JOIN and it did not originate in the ON
256** or USING clause of that join.
257**
258** Consider the term t2.z='ok' in the following queries:
259**
260** (1) SELECT * FROM t1 LEFT JOIN t2 ON t1.a=t2.x WHERE t2.z='ok'
261** (2) SELECT * FROM t1 LEFT JOIN t2 ON t1.a=t2.x AND t2.z='ok'
262** (3) SELECT * FROM t1, t2 WHERE t1.a=t2.x AND t2.z='ok'
263**
264** The t2.z='ok' is disabled in the in (2) because it originates
265** in the ON clause. The term is disabled in (3) because it is not part
266** of a LEFT OUTER JOIN. In (1), the term is not disabled.
267**
268** Disabling a term causes that term to not be tested in the inner loop
269** of the join. Disabling is an optimization. When terms are satisfied
270** by indices, we disable them to prevent redundant tests in the inner
271** loop. We would get the correct results if nothing were ever disabled,
272** but joins might run a little slower. The trick is to disable as much
273** as we can without disabling too much. If we disabled in (1), we'd get
274** the wrong answer. See ticket #813.
275**
276** If all the children of a term are disabled, then that term is also
277** automatically disabled. In this way, terms get disabled if derived
278** virtual terms are tested first. For example:
279**
280** x GLOB 'abc*' AND x>='abc' AND x<'acd'
281** \___________/ \______/ \_____/
282** parent child1 child2
283**
284** Only the parent term was in the original WHERE clause. The child1
285** and child2 terms were added by the LIKE optimization. If both of
286** the virtual child terms are valid, then testing of the parent can be
287** skipped.
288**
289** Usually the parent term is marked as TERM_CODED. But if the parent
290** term was originally TERM_LIKE, then the parent gets TERM_LIKECOND instead.
291** The TERM_LIKECOND marking indicates that the term should be coded inside
292** a conditional such that is only evaluated on the second pass of a
293** LIKE-optimization loop, when scanning BLOBs instead of strings.
294*/
295static void disableTerm(WhereLevel *pLevel, WhereTerm *pTerm){
296 int nLoop = 0;
297 while( pTerm
298 && (pTerm->wtFlags & TERM_CODED)==0
299 && (pLevel->iLeftJoin==0 || ExprHasProperty(pTerm->pExpr, EP_FromJoin))
300 && (pLevel->notReady & pTerm->prereqAll)==0
301 ){
302 if( nLoop && (pTerm->wtFlags & TERM_LIKE)!=0 ){
303 pTerm->wtFlags |= TERM_LIKECOND;
304 }else{
305 pTerm->wtFlags |= TERM_CODED;
306 }
307 if( pTerm->iParent<0 ) break;
308 pTerm = &pTerm->pWC->a[pTerm->iParent];
309 pTerm->nChild--;
310 if( pTerm->nChild!=0 ) break;
311 nLoop++;
312 }
313}
314
315/*
316** Code an OP_Affinity opcode to apply the column affinity string zAff
317** to the n registers starting at base.
318**
319** As an optimization, SQLITE_AFF_BLOB entries (which are no-ops) at the
320** beginning and end of zAff are ignored. If all entries in zAff are
321** SQLITE_AFF_BLOB, then no code gets generated.
322**
323** This routine makes its own copy of zAff so that the caller is free
324** to modify zAff after this routine returns.
325*/
326static void codeApplyAffinity(Parse *pParse, int base, int n, char *zAff){
327 Vdbe *v = pParse->pVdbe;
328 if( zAff==0 ){
329 assert( pParse->db->mallocFailed );
330 return;
331 }
332 assert( v!=0 );
333
334 /* Adjust base and n to skip over SQLITE_AFF_BLOB entries at the beginning
335 ** and end of the affinity string.
336 */
337 while( n>0 && zAff[0]==SQLITE_AFF_BLOB ){
338 n--;
339 base++;
340 zAff++;
341 }
342 while( n>1 && zAff[n-1]==SQLITE_AFF_BLOB ){
343 n--;
344 }
345
346 /* Code the OP_Affinity opcode if there is anything left to do. */
347 if( n>0 ){
drh9b34abe2016-01-16 15:12:35 +0000348 sqlite3VdbeAddOp4(v, OP_Affinity, base, n, 0, zAff, n);
drh6f82e852015-06-06 20:12:09 +0000349 sqlite3ExprCacheAffinityChange(pParse, base, n);
350 }
351}
352
353
354/*
355** Generate code for a single equality term of the WHERE clause. An equality
356** term can be either X=expr or X IN (...). pTerm is the term to be
357** coded.
358**
359** The current value for the constraint is left in register iReg.
360**
drh4602b8e2016-08-19 18:28:00 +0000361** For a constraint of the form X=expr, the expression is evaluated in
362** straight-line code. For constraints of the form X IN (...)
drh6f82e852015-06-06 20:12:09 +0000363** this routine sets up a loop that will iterate over all values of X.
364*/
365static int codeEqualityTerm(
366 Parse *pParse, /* The parsing context */
367 WhereTerm *pTerm, /* The term of the WHERE clause to be coded */
368 WhereLevel *pLevel, /* The level of the FROM clause we are working on */
369 int iEq, /* Index of the equality term within this level */
370 int bRev, /* True for reverse-order IN operations */
371 int iTarget /* Attempt to leave results in this register */
372){
373 Expr *pX = pTerm->pExpr;
374 Vdbe *v = pParse->pVdbe;
375 int iReg; /* Register holding results */
376
dan8da209b2016-07-26 18:06:08 +0000377 assert( pLevel->pWLoop->aLTerm[iEq]==pTerm );
drh6f82e852015-06-06 20:12:09 +0000378 assert( iTarget>0 );
379 if( pX->op==TK_EQ || pX->op==TK_IS ){
drhfc7f27b2016-08-20 00:07:01 +0000380 iReg = sqlite3ExprCodeTarget(pParse, pX->pRight, iTarget);
drh6f82e852015-06-06 20:12:09 +0000381 }else if( pX->op==TK_ISNULL ){
382 iReg = iTarget;
383 sqlite3VdbeAddOp2(v, OP_Null, 0, iReg);
384#ifndef SQLITE_OMIT_SUBQUERY
385 }else{
drhac6b47d2016-08-24 00:51:48 +0000386 int eType = IN_INDEX_NOOP;
drh6f82e852015-06-06 20:12:09 +0000387 int iTab;
388 struct InLoop *pIn;
389 WhereLoop *pLoop = pLevel->pWLoop;
dan8da209b2016-07-26 18:06:08 +0000390 int i;
391 int nEq = 0;
392 int *aiMap = 0;
drh6f82e852015-06-06 20:12:09 +0000393
394 if( (pLoop->wsFlags & WHERE_VIRTUALTABLE)==0
395 && pLoop->u.btree.pIndex!=0
396 && pLoop->u.btree.pIndex->aSortOrder[iEq]
397 ){
398 testcase( iEq==0 );
399 testcase( bRev );
400 bRev = !bRev;
401 }
402 assert( pX->op==TK_IN );
403 iReg = iTarget;
dan8da209b2016-07-26 18:06:08 +0000404
405 for(i=0; i<iEq; i++){
406 if( pLoop->aLTerm[i] && pLoop->aLTerm[i]->pExpr==pX ){
407 disableTerm(pLevel, pTerm);
408 return iTarget;
409 }
410 }
411 for(i=iEq;i<pLoop->nLTerm; i++){
412 if( pLoop->aLTerm[i] && pLoop->aLTerm[i]->pExpr==pX ) nEq++;
413 }
414
415 if( nEq>1 ){
416 aiMap = (int*)sqlite3DbMallocZero(pParse->db, sizeof(int) * nEq);
417 if( !aiMap ) return 0;
418 }
419
420 if( (pX->flags & EP_xIsSelect)==0 || pX->x.pSelect->pEList->nExpr==1 ){
421 eType = sqlite3FindInIndex(pParse, pX, IN_INDEX_LOOP, 0, 0);
422 }else{
423 sqlite3 *db = pParse->db;
424 ExprList *pOrigRhs = pX->x.pSelect->pEList;
425 ExprList *pOrigLhs = pX->pLeft->x.pList;
426 ExprList *pRhs = 0; /* New Select.pEList for RHS */
427 ExprList *pLhs = 0; /* New pX->pLeft vector */
428
429 for(i=iEq;i<pLoop->nLTerm; i++){
430 if( pLoop->aLTerm[i]->pExpr==pX ){
431 int iField = pLoop->aLTerm[i]->iField - 1;
432 Expr *pNewRhs = sqlite3ExprDup(db, pOrigRhs->a[iField].pExpr, 0);
433 Expr *pNewLhs = sqlite3ExprDup(db, pOrigLhs->a[iField].pExpr, 0);
434
435 pRhs = sqlite3ExprListAppend(pParse, pRhs, pNewRhs);
436 pLhs = sqlite3ExprListAppend(pParse, pLhs, pNewLhs);
437 }
438 }
drhac6b47d2016-08-24 00:51:48 +0000439 if( !db->mallocFailed ){
440 pX->x.pSelect->pEList = pRhs;
441 pX->pLeft->x.pList = pLhs;
442 eType = sqlite3FindInIndex(pParse, pX, IN_INDEX_LOOP, 0, aiMap);
443 pX->x.pSelect->pEList = pOrigRhs;
444 pX->pLeft->x.pList = pOrigLhs;
445 }
dan8da209b2016-07-26 18:06:08 +0000446 sqlite3ExprListDelete(pParse->db, pLhs);
447 sqlite3ExprListDelete(pParse->db, pRhs);
448 }
449
drh6f82e852015-06-06 20:12:09 +0000450 if( eType==IN_INDEX_INDEX_DESC ){
451 testcase( bRev );
452 bRev = !bRev;
453 }
454 iTab = pX->iTable;
455 sqlite3VdbeAddOp2(v, bRev ? OP_Last : OP_Rewind, iTab, 0);
456 VdbeCoverageIf(v, bRev);
457 VdbeCoverageIf(v, !bRev);
458 assert( (pLoop->wsFlags & WHERE_MULTI_OR)==0 );
dan8da209b2016-07-26 18:06:08 +0000459
drh6f82e852015-06-06 20:12:09 +0000460 pLoop->wsFlags |= WHERE_IN_ABLE;
461 if( pLevel->u.in.nIn==0 ){
462 pLevel->addrNxt = sqlite3VdbeMakeLabel(v);
463 }
dan8da209b2016-07-26 18:06:08 +0000464
465 i = pLevel->u.in.nIn;
466 pLevel->u.in.nIn += nEq;
drh6f82e852015-06-06 20:12:09 +0000467 pLevel->u.in.aInLoop =
468 sqlite3DbReallocOrFree(pParse->db, pLevel->u.in.aInLoop,
469 sizeof(pLevel->u.in.aInLoop[0])*pLevel->u.in.nIn);
470 pIn = pLevel->u.in.aInLoop;
471 if( pIn ){
dan8da209b2016-07-26 18:06:08 +0000472 int iMap = 0; /* Index in aiMap[] */
473 pIn += i;
dan7887d7f2016-08-24 12:22:17 +0000474 for(i=iEq;i<pLoop->nLTerm; i++){
drh03181c82016-08-18 19:04:57 +0000475 int iOut = iReg;
dan8da209b2016-07-26 18:06:08 +0000476 if( pLoop->aLTerm[i]->pExpr==pX ){
477 if( eType==IN_INDEX_ROWID ){
478 assert( nEq==1 && i==iEq );
479 pIn->addrInTop = sqlite3VdbeAddOp2(v, OP_Rowid, iTab, iReg);
480 }else{
481 int iCol = aiMap ? aiMap[iMap++] : 0;
drh03181c82016-08-18 19:04:57 +0000482 iOut = iReg + i - iEq;
dan8da209b2016-07-26 18:06:08 +0000483 pIn->addrInTop = sqlite3VdbeAddOp3(v,OP_Column,iTab, iCol, iOut);
484 }
drh03181c82016-08-18 19:04:57 +0000485 sqlite3VdbeAddOp1(v, OP_IsNull, iOut); VdbeCoverage(v);
dan8da209b2016-07-26 18:06:08 +0000486 if( i==iEq ){
487 pIn->iCur = iTab;
488 pIn->eEndLoopOp = bRev ? OP_PrevIfOpen : OP_NextIfOpen;
489 }else{
490 pIn->eEndLoopOp = OP_Noop;
491 }
dan7887d7f2016-08-24 12:22:17 +0000492 pIn++;
dan8da209b2016-07-26 18:06:08 +0000493 }
drh6f82e852015-06-06 20:12:09 +0000494 }
drh6f82e852015-06-06 20:12:09 +0000495 }else{
496 pLevel->u.in.nIn = 0;
497 }
dan8da209b2016-07-26 18:06:08 +0000498 sqlite3DbFree(pParse->db, aiMap);
drh6f82e852015-06-06 20:12:09 +0000499#endif
500 }
501 disableTerm(pLevel, pTerm);
502 return iReg;
503}
504
505/*
506** Generate code that will evaluate all == and IN constraints for an
507** index scan.
508**
509** For example, consider table t1(a,b,c,d,e,f) with index i1(a,b,c).
510** Suppose the WHERE clause is this: a==5 AND b IN (1,2,3) AND c>5 AND c<10
511** The index has as many as three equality constraints, but in this
512** example, the third "c" value is an inequality. So only two
513** constraints are coded. This routine will generate code to evaluate
514** a==5 and b IN (1,2,3). The current values for a and b will be stored
515** in consecutive registers and the index of the first register is returned.
516**
517** In the example above nEq==2. But this subroutine works for any value
518** of nEq including 0. If nEq==0, this routine is nearly a no-op.
519** The only thing it does is allocate the pLevel->iMem memory cell and
520** compute the affinity string.
521**
522** The nExtraReg parameter is 0 or 1. It is 0 if all WHERE clause constraints
523** are == or IN and are covered by the nEq. nExtraReg is 1 if there is
524** an inequality constraint (such as the "c>=5 AND c<10" in the example) that
525** occurs after the nEq quality constraints.
526**
527** This routine allocates a range of nEq+nExtraReg memory cells and returns
528** the index of the first memory cell in that range. The code that
529** calls this routine will use that memory range to store keys for
530** start and termination conditions of the loop.
531** key value of the loop. If one or more IN operators appear, then
532** this routine allocates an additional nEq memory cells for internal
533** use.
534**
535** Before returning, *pzAff is set to point to a buffer containing a
536** copy of the column affinity string of the index allocated using
537** sqlite3DbMalloc(). Except, entries in the copy of the string associated
538** with equality constraints that use BLOB or NONE affinity are set to
539** SQLITE_AFF_BLOB. This is to deal with SQL such as the following:
540**
541** CREATE TABLE t1(a TEXT PRIMARY KEY, b);
542** SELECT ... FROM t1 AS t2, t1 WHERE t1.a = t2.b;
543**
544** In the example above, the index on t1(a) has TEXT affinity. But since
545** the right hand side of the equality constraint (t2.b) has BLOB/NONE affinity,
546** no conversion should be attempted before using a t2.b value as part of
547** a key to search the index. Hence the first byte in the returned affinity
548** string in this example would be set to SQLITE_AFF_BLOB.
549*/
550static int codeAllEqualityTerms(
551 Parse *pParse, /* Parsing context */
552 WhereLevel *pLevel, /* Which nested loop of the FROM we are coding */
553 int bRev, /* Reverse the order of IN operators */
554 int nExtraReg, /* Number of extra registers to allocate */
555 char **pzAff /* OUT: Set to point to affinity string */
556){
557 u16 nEq; /* The number of == or IN constraints to code */
558 u16 nSkip; /* Number of left-most columns to skip */
559 Vdbe *v = pParse->pVdbe; /* The vm under construction */
560 Index *pIdx; /* The index being used for this loop */
561 WhereTerm *pTerm; /* A single constraint term */
562 WhereLoop *pLoop; /* The WhereLoop object */
563 int j; /* Loop counter */
564 int regBase; /* Base register */
565 int nReg; /* Number of registers to allocate */
566 char *zAff; /* Affinity string to return */
567
568 /* This module is only called on query plans that use an index. */
569 pLoop = pLevel->pWLoop;
570 assert( (pLoop->wsFlags & WHERE_VIRTUALTABLE)==0 );
571 nEq = pLoop->u.btree.nEq;
572 nSkip = pLoop->nSkip;
573 pIdx = pLoop->u.btree.pIndex;
574 assert( pIdx!=0 );
575
576 /* Figure out how many memory cells we will need then allocate them.
577 */
578 regBase = pParse->nMem + 1;
579 nReg = pLoop->u.btree.nEq + nExtraReg;
580 pParse->nMem += nReg;
581
drhe9107692015-08-25 19:20:04 +0000582 zAff = sqlite3DbStrDup(pParse->db,sqlite3IndexAffinityStr(pParse->db,pIdx));
drh4df86af2016-02-04 11:48:00 +0000583 assert( zAff!=0 || pParse->db->mallocFailed );
drh6f82e852015-06-06 20:12:09 +0000584
585 if( nSkip ){
586 int iIdxCur = pLevel->iIdxCur;
587 sqlite3VdbeAddOp1(v, (bRev?OP_Last:OP_Rewind), iIdxCur);
588 VdbeCoverageIf(v, bRev==0);
589 VdbeCoverageIf(v, bRev!=0);
590 VdbeComment((v, "begin skip-scan on %s", pIdx->zName));
591 j = sqlite3VdbeAddOp0(v, OP_Goto);
592 pLevel->addrSkip = sqlite3VdbeAddOp4Int(v, (bRev?OP_SeekLT:OP_SeekGT),
593 iIdxCur, 0, regBase, nSkip);
594 VdbeCoverageIf(v, bRev==0);
595 VdbeCoverageIf(v, bRev!=0);
596 sqlite3VdbeJumpHere(v, j);
597 for(j=0; j<nSkip; j++){
598 sqlite3VdbeAddOp3(v, OP_Column, iIdxCur, j, regBase+j);
drh4b92f982015-09-29 17:20:14 +0000599 testcase( pIdx->aiColumn[j]==XN_EXPR );
drhe63e8a62015-09-18 18:09:28 +0000600 VdbeComment((v, "%s", explainIndexColumnName(pIdx, j)));
drh6f82e852015-06-06 20:12:09 +0000601 }
602 }
603
604 /* Evaluate the equality constraints
605 */
606 assert( zAff==0 || (int)strlen(zAff)>=nEq );
607 for(j=nSkip; j<nEq; j++){
608 int r1;
609 pTerm = pLoop->aLTerm[j];
610 assert( pTerm!=0 );
611 /* The following testcase is true for indices with redundant columns.
612 ** Ex: CREATE INDEX i1 ON t1(a,b,a); SELECT * FROM t1 WHERE a=0 AND b=0; */
613 testcase( (pTerm->wtFlags & TERM_CODED)!=0 );
614 testcase( pTerm->wtFlags & TERM_VIRTUAL );
615 r1 = codeEqualityTerm(pParse, pTerm, pLevel, j, bRev, regBase+j);
616 if( r1!=regBase+j ){
617 if( nReg==1 ){
618 sqlite3ReleaseTempReg(pParse, regBase);
619 regBase = r1;
620 }else{
621 sqlite3VdbeAddOp2(v, OP_SCopy, r1, regBase+j);
622 }
623 }
624 testcase( pTerm->eOperator & WO_ISNULL );
625 testcase( pTerm->eOperator & WO_IN );
626 if( (pTerm->eOperator & (WO_ISNULL|WO_IN))==0 ){
627 Expr *pRight = pTerm->pExpr->pRight;
628 if( (pTerm->wtFlags & TERM_IS)==0 && sqlite3ExprCanBeNull(pRight) ){
629 sqlite3VdbeAddOp2(v, OP_IsNull, regBase+j, pLevel->addrBrk);
630 VdbeCoverage(v);
631 }
632 if( zAff ){
633 if( sqlite3CompareAffinity(pRight, zAff[j])==SQLITE_AFF_BLOB ){
634 zAff[j] = SQLITE_AFF_BLOB;
635 }
636 if( sqlite3ExprNeedsNoAffinityChange(pRight, zAff[j]) ){
637 zAff[j] = SQLITE_AFF_BLOB;
638 }
639 }
640 }
641 }
642 *pzAff = zAff;
643 return regBase;
644}
645
drh41d2e662015-12-01 21:23:07 +0000646#ifndef SQLITE_LIKE_DOESNT_MATCH_BLOBS
drh6f82e852015-06-06 20:12:09 +0000647/*
drh44aebff2016-05-02 10:25:42 +0000648** If the most recently coded instruction is a constant range constraint
649** (a string literal) that originated from the LIKE optimization, then
650** set P3 and P5 on the OP_String opcode so that the string will be cast
651** to a BLOB at appropriate times.
drh6f82e852015-06-06 20:12:09 +0000652**
653** The LIKE optimization trys to evaluate "x LIKE 'abc%'" as a range
654** expression: "x>='ABC' AND x<'abd'". But this requires that the range
655** scan loop run twice, once for strings and a second time for BLOBs.
656** The OP_String opcodes on the second pass convert the upper and lower
mistachkine234cfd2016-07-10 19:35:10 +0000657** bound string constants to blobs. This routine makes the necessary changes
drh6f82e852015-06-06 20:12:09 +0000658** to the OP_String opcodes for that to happen.
drh41d2e662015-12-01 21:23:07 +0000659**
660** Except, of course, if SQLITE_LIKE_DOESNT_MATCH_BLOBS is defined, then
661** only the one pass through the string space is required, so this routine
662** becomes a no-op.
drh6f82e852015-06-06 20:12:09 +0000663*/
664static void whereLikeOptimizationStringFixup(
665 Vdbe *v, /* prepared statement under construction */
666 WhereLevel *pLevel, /* The loop that contains the LIKE operator */
667 WhereTerm *pTerm /* The upper or lower bound just coded */
668){
669 if( pTerm->wtFlags & TERM_LIKEOPT ){
670 VdbeOp *pOp;
671 assert( pLevel->iLikeRepCntr>0 );
672 pOp = sqlite3VdbeGetOp(v, -1);
673 assert( pOp!=0 );
674 assert( pOp->opcode==OP_String8
675 || pTerm->pWC->pWInfo->pParse->db->mallocFailed );
drh44aebff2016-05-02 10:25:42 +0000676 pOp->p3 = (int)(pLevel->iLikeRepCntr>>1); /* Register holding counter */
677 pOp->p5 = (u8)(pLevel->iLikeRepCntr&1); /* ASC or DESC */
drh6f82e852015-06-06 20:12:09 +0000678 }
679}
drh41d2e662015-12-01 21:23:07 +0000680#else
681# define whereLikeOptimizationStringFixup(A,B,C)
682#endif
drh6f82e852015-06-06 20:12:09 +0000683
drhbec24762015-08-13 20:07:13 +0000684#ifdef SQLITE_ENABLE_CURSOR_HINTS
drh2f2b0272015-08-14 18:50:04 +0000685/*
686** Information is passed from codeCursorHint() down to individual nodes of
687** the expression tree (by sqlite3WalkExpr()) using an instance of this
688** structure.
689*/
690struct CCurHint {
691 int iTabCur; /* Cursor for the main table */
692 int iIdxCur; /* Cursor for the index, if pIdx!=0. Unused otherwise */
693 Index *pIdx; /* The index used to access the table */
694};
695
696/*
697** This function is called for every node of an expression that is a candidate
698** for a cursor hint on an index cursor. For TK_COLUMN nodes that reference
699** the table CCurHint.iTabCur, verify that the same column can be
700** accessed through the index. If it cannot, then set pWalker->eCode to 1.
701*/
702static int codeCursorHintCheckExpr(Walker *pWalker, Expr *pExpr){
703 struct CCurHint *pHint = pWalker->u.pCCurHint;
704 assert( pHint->pIdx!=0 );
705 if( pExpr->op==TK_COLUMN
706 && pExpr->iTable==pHint->iTabCur
707 && sqlite3ColumnOfIndex(pHint->pIdx, pExpr->iColumn)<0
708 ){
709 pWalker->eCode = 1;
710 }
711 return WRC_Continue;
712}
713
dane6912fd2016-06-17 19:27:13 +0000714/*
715** Test whether or not expression pExpr, which was part of a WHERE clause,
716** should be included in the cursor-hint for a table that is on the rhs
717** of a LEFT JOIN. Set Walker.eCode to non-zero before returning if the
718** expression is not suitable.
719**
720** An expression is unsuitable if it might evaluate to non NULL even if
721** a TK_COLUMN node that does affect the value of the expression is set
722** to NULL. For example:
723**
724** col IS NULL
725** col IS NOT NULL
726** coalesce(col, 1)
727** CASE WHEN col THEN 0 ELSE 1 END
728*/
729static int codeCursorHintIsOrFunction(Walker *pWalker, Expr *pExpr){
dan2b693d62016-06-20 17:22:06 +0000730 if( pExpr->op==TK_IS
dane6912fd2016-06-17 19:27:13 +0000731 || pExpr->op==TK_ISNULL || pExpr->op==TK_ISNOT
732 || pExpr->op==TK_NOTNULL || pExpr->op==TK_CASE
733 ){
734 pWalker->eCode = 1;
dan2b693d62016-06-20 17:22:06 +0000735 }else if( pExpr->op==TK_FUNCTION ){
736 int d1;
737 char d2[3];
738 if( 0==sqlite3IsLikeFunction(pWalker->pParse->db, pExpr, &d1, d2) ){
739 pWalker->eCode = 1;
740 }
dane6912fd2016-06-17 19:27:13 +0000741 }
dan2b693d62016-06-20 17:22:06 +0000742
dane6912fd2016-06-17 19:27:13 +0000743 return WRC_Continue;
744}
745
drhbec24762015-08-13 20:07:13 +0000746
747/*
748** This function is called on every node of an expression tree used as an
749** argument to the OP_CursorHint instruction. If the node is a TK_COLUMN
drh2f2b0272015-08-14 18:50:04 +0000750** that accesses any table other than the one identified by
751** CCurHint.iTabCur, then do the following:
drhbec24762015-08-13 20:07:13 +0000752**
753** 1) allocate a register and code an OP_Column instruction to read
754** the specified column into the new register, and
755**
756** 2) transform the expression node to a TK_REGISTER node that reads
757** from the newly populated register.
drh2f2b0272015-08-14 18:50:04 +0000758**
759** Also, if the node is a TK_COLUMN that does access the table idenified
760** by pCCurHint.iTabCur, and an index is being used (which we will
761** know because CCurHint.pIdx!=0) then transform the TK_COLUMN into
762** an access of the index rather than the original table.
drhbec24762015-08-13 20:07:13 +0000763*/
764static int codeCursorHintFixExpr(Walker *pWalker, Expr *pExpr){
765 int rc = WRC_Continue;
drh2f2b0272015-08-14 18:50:04 +0000766 struct CCurHint *pHint = pWalker->u.pCCurHint;
767 if( pExpr->op==TK_COLUMN ){
768 if( pExpr->iTable!=pHint->iTabCur ){
769 Vdbe *v = pWalker->pParse->pVdbe;
770 int reg = ++pWalker->pParse->nMem; /* Register for column value */
771 sqlite3ExprCodeGetColumnOfTable(
772 v, pExpr->pTab, pExpr->iTable, pExpr->iColumn, reg
773 );
774 pExpr->op = TK_REGISTER;
775 pExpr->iTable = reg;
776 }else if( pHint->pIdx!=0 ){
777 pExpr->iTable = pHint->iIdxCur;
778 pExpr->iColumn = sqlite3ColumnOfIndex(pHint->pIdx, pExpr->iColumn);
779 assert( pExpr->iColumn>=0 );
780 }
drhbec24762015-08-13 20:07:13 +0000781 }else if( pExpr->op==TK_AGG_FUNCTION ){
782 /* An aggregate function in the WHERE clause of a query means this must
783 ** be a correlated sub-query, and expression pExpr is an aggregate from
784 ** the parent context. Do not walk the function arguments in this case.
785 **
786 ** todo: It should be possible to replace this node with a TK_REGISTER
787 ** expression, as the result of the expression must be stored in a
788 ** register at this point. The same holds for TK_AGG_COLUMN nodes. */
789 rc = WRC_Prune;
790 }
791 return rc;
792}
793
794/*
795** Insert an OP_CursorHint instruction if it is appropriate to do so.
796*/
797static void codeCursorHint(
danb324cf72016-06-17 14:33:32 +0000798 struct SrcList_item *pTabItem, /* FROM clause item */
drhb413a542015-08-17 17:19:28 +0000799 WhereInfo *pWInfo, /* The where clause */
800 WhereLevel *pLevel, /* Which loop to provide hints for */
801 WhereTerm *pEndRange /* Hint this end-of-scan boundary term if not NULL */
drhbec24762015-08-13 20:07:13 +0000802){
803 Parse *pParse = pWInfo->pParse;
804 sqlite3 *db = pParse->db;
805 Vdbe *v = pParse->pVdbe;
drhbec24762015-08-13 20:07:13 +0000806 Expr *pExpr = 0;
drh2f2b0272015-08-14 18:50:04 +0000807 WhereLoop *pLoop = pLevel->pWLoop;
drhbec24762015-08-13 20:07:13 +0000808 int iCur;
809 WhereClause *pWC;
810 WhereTerm *pTerm;
drhb413a542015-08-17 17:19:28 +0000811 int i, j;
drh2f2b0272015-08-14 18:50:04 +0000812 struct CCurHint sHint;
813 Walker sWalker;
drhbec24762015-08-13 20:07:13 +0000814
815 if( OptimizationDisabled(db, SQLITE_CursorHints) ) return;
drh2f2b0272015-08-14 18:50:04 +0000816 iCur = pLevel->iTabCur;
817 assert( iCur==pWInfo->pTabList->a[pLevel->iFrom].iCursor );
818 sHint.iTabCur = iCur;
819 sHint.iIdxCur = pLevel->iIdxCur;
820 sHint.pIdx = pLoop->u.btree.pIndex;
821 memset(&sWalker, 0, sizeof(sWalker));
822 sWalker.pParse = pParse;
823 sWalker.u.pCCurHint = &sHint;
drhbec24762015-08-13 20:07:13 +0000824 pWC = &pWInfo->sWC;
825 for(i=0; i<pWC->nTerm; i++){
826 pTerm = &pWC->a[i];
827 if( pTerm->wtFlags & (TERM_VIRTUAL|TERM_CODED) ) continue;
828 if( pTerm->prereqAll & pLevel->notReady ) continue;
danb324cf72016-06-17 14:33:32 +0000829
830 /* Any terms specified as part of the ON(...) clause for any LEFT
831 ** JOIN for which the current table is not the rhs are omitted
832 ** from the cursor-hint.
833 **
dane6912fd2016-06-17 19:27:13 +0000834 ** If this table is the rhs of a LEFT JOIN, "IS" or "IS NULL" terms
835 ** that were specified as part of the WHERE clause must be excluded.
836 ** This is to address the following:
danb324cf72016-06-17 14:33:32 +0000837 **
838 ** SELECT ... t1 LEFT JOIN t2 ON (t1.a=t2.b) WHERE t2.c IS NULL;
839 **
dane6912fd2016-06-17 19:27:13 +0000840 ** Say there is a single row in t2 that matches (t1.a=t2.b), but its
841 ** t2.c values is not NULL. If the (t2.c IS NULL) constraint is
842 ** pushed down to the cursor, this row is filtered out, causing
843 ** SQLite to synthesize a row of NULL values. Which does match the
844 ** WHERE clause, and so the query returns a row. Which is incorrect.
845 **
846 ** For the same reason, WHERE terms such as:
847 **
848 ** WHERE 1 = (t2.c IS NULL)
849 **
850 ** are also excluded. See codeCursorHintIsOrFunction() for details.
danb324cf72016-06-17 14:33:32 +0000851 */
852 if( pTabItem->fg.jointype & JT_LEFT ){
dane6912fd2016-06-17 19:27:13 +0000853 Expr *pExpr = pTerm->pExpr;
854 if( !ExprHasProperty(pExpr, EP_FromJoin)
855 || pExpr->iRightJoinTable!=pTabItem->iCursor
danb324cf72016-06-17 14:33:32 +0000856 ){
dane6912fd2016-06-17 19:27:13 +0000857 sWalker.eCode = 0;
858 sWalker.xExprCallback = codeCursorHintIsOrFunction;
859 sqlite3WalkExpr(&sWalker, pTerm->pExpr);
860 if( sWalker.eCode ) continue;
danb324cf72016-06-17 14:33:32 +0000861 }
862 }else{
863 if( ExprHasProperty(pTerm->pExpr, EP_FromJoin) ) continue;
864 }
drhb413a542015-08-17 17:19:28 +0000865
866 /* All terms in pWLoop->aLTerm[] except pEndRange are used to initialize
drhbcf40a72015-08-18 15:58:05 +0000867 ** the cursor. These terms are not needed as hints for a pure range
868 ** scan (that has no == terms) so omit them. */
869 if( pLoop->u.btree.nEq==0 && pTerm!=pEndRange ){
870 for(j=0; j<pLoop->nLTerm && pLoop->aLTerm[j]!=pTerm; j++){}
871 if( j<pLoop->nLTerm ) continue;
drhb413a542015-08-17 17:19:28 +0000872 }
873
874 /* No subqueries or non-deterministic functions allowed */
drhbec24762015-08-13 20:07:13 +0000875 if( sqlite3ExprContainsSubquery(pTerm->pExpr) ) continue;
drhb413a542015-08-17 17:19:28 +0000876
877 /* For an index scan, make sure referenced columns are actually in
878 ** the index. */
drh2f2b0272015-08-14 18:50:04 +0000879 if( sHint.pIdx!=0 ){
880 sWalker.eCode = 0;
881 sWalker.xExprCallback = codeCursorHintCheckExpr;
882 sqlite3WalkExpr(&sWalker, pTerm->pExpr);
883 if( sWalker.eCode ) continue;
884 }
drhb413a542015-08-17 17:19:28 +0000885
886 /* If we survive all prior tests, that means this term is worth hinting */
drhbec24762015-08-13 20:07:13 +0000887 pExpr = sqlite3ExprAnd(db, pExpr, sqlite3ExprDup(db, pTerm->pExpr, 0));
888 }
889 if( pExpr!=0 ){
drhbec24762015-08-13 20:07:13 +0000890 sWalker.xExprCallback = codeCursorHintFixExpr;
drhbec24762015-08-13 20:07:13 +0000891 sqlite3WalkExpr(&sWalker, pExpr);
drh2f2b0272015-08-14 18:50:04 +0000892 sqlite3VdbeAddOp4(v, OP_CursorHint,
893 (sHint.pIdx ? sHint.iIdxCur : sHint.iTabCur), 0, 0,
894 (const char*)pExpr, P4_EXPR);
drhbec24762015-08-13 20:07:13 +0000895 }
896}
897#else
danb324cf72016-06-17 14:33:32 +0000898# define codeCursorHint(A,B,C,D) /* No-op */
drhbec24762015-08-13 20:07:13 +0000899#endif /* SQLITE_ENABLE_CURSOR_HINTS */
drh6f82e852015-06-06 20:12:09 +0000900
901/*
dande892d92016-01-29 19:29:45 +0000902** Cursor iCur is open on an intkey b-tree (a table). Register iRowid contains
903** a rowid value just read from cursor iIdxCur, open on index pIdx. This
904** function generates code to do a deferred seek of cursor iCur to the
905** rowid stored in register iRowid.
906**
907** Normally, this is just:
908**
909** OP_Seek $iCur $iRowid
910**
911** However, if the scan currently being coded is a branch of an OR-loop and
912** the statement currently being coded is a SELECT, then P3 of the OP_Seek
913** is set to iIdxCur and P4 is set to point to an array of integers
914** containing one entry for each column of the table cursor iCur is open
915** on. For each table column, if the column is the i'th column of the
916** index, then the corresponding array entry is set to (i+1). If the column
917** does not appear in the index at all, the array entry is set to 0.
918*/
919static void codeDeferredSeek(
920 WhereInfo *pWInfo, /* Where clause context */
921 Index *pIdx, /* Index scan is using */
922 int iCur, /* Cursor for IPK b-tree */
dande892d92016-01-29 19:29:45 +0000923 int iIdxCur /* Index cursor */
924){
925 Parse *pParse = pWInfo->pParse; /* Parse context */
926 Vdbe *v = pParse->pVdbe; /* Vdbe to generate code within */
927
928 assert( iIdxCur>0 );
929 assert( pIdx->aiColumn[pIdx->nColumn-1]==-1 );
930
drh784c1b92016-01-30 16:59:56 +0000931 sqlite3VdbeAddOp3(v, OP_Seek, iIdxCur, 0, iCur);
drhce943bc2016-05-19 18:56:33 +0000932 if( (pWInfo->wctrlFlags & WHERE_OR_SUBCLAUSE)
dancddb6ba2016-02-01 13:58:56 +0000933 && DbMaskAllZero(sqlite3ParseToplevel(pParse)->writeMask)
dande892d92016-01-29 19:29:45 +0000934 ){
935 int i;
936 Table *pTab = pIdx->pTable;
drhb1702022016-01-30 00:45:18 +0000937 int *ai = (int*)sqlite3DbMallocZero(pParse->db, sizeof(int)*(pTab->nCol+1));
dande892d92016-01-29 19:29:45 +0000938 if( ai ){
drhb1702022016-01-30 00:45:18 +0000939 ai[0] = pTab->nCol;
dande892d92016-01-29 19:29:45 +0000940 for(i=0; i<pIdx->nColumn-1; i++){
941 assert( pIdx->aiColumn[i]<pTab->nCol );
drhb1702022016-01-30 00:45:18 +0000942 if( pIdx->aiColumn[i]>=0 ) ai[pIdx->aiColumn[i]+1] = i+1;
dande892d92016-01-29 19:29:45 +0000943 }
944 sqlite3VdbeChangeP4(v, -1, (char*)ai, P4_INTARRAY);
945 }
946 }
947}
948
dan553168c2016-08-01 20:14:31 +0000949/*
950** If the expression passed as the second argument is a vector, generate
951** code to write the first nReg elements of the vector into an array
952** of registers starting with iReg.
953**
954** If the expression is not a vector, then nReg must be passed 1. In
955** this case, generate code to evaluate the expression and leave the
956** result in register iReg.
957*/
dan71c57db2016-07-09 20:23:55 +0000958static void codeExprOrVector(Parse *pParse, Expr *p, int iReg, int nReg){
959 assert( nReg>0 );
dan625015e2016-07-30 16:39:28 +0000960 if( sqlite3ExprIsVector(p) ){
danf9b2e052016-08-02 17:45:00 +0000961#ifndef SQLITE_OMIT_SUBQUERY
962 if( (p->flags & EP_xIsSelect) ){
963 Vdbe *v = pParse->pVdbe;
964 int iSelect = sqlite3CodeSubselect(pParse, p, 0, 0);
965 sqlite3VdbeAddOp3(v, OP_Copy, iSelect, iReg, nReg-1);
966 }else
967#endif
968 {
969 int i;
dan71c57db2016-07-09 20:23:55 +0000970 ExprList *pList = p->x.pList;
971 assert( nReg<=pList->nExpr );
972 for(i=0; i<nReg; i++){
973 sqlite3ExprCode(pParse, pList->a[i].pExpr, iReg+i);
974 }
dan71c57db2016-07-09 20:23:55 +0000975 }
976 }else{
977 assert( nReg==1 );
978 sqlite3ExprCode(pParse, p, iReg);
979 }
980}
981
dande892d92016-01-29 19:29:45 +0000982/*
drh6f82e852015-06-06 20:12:09 +0000983** Generate code for the start of the iLevel-th loop in the WHERE clause
984** implementation described by pWInfo.
985*/
986Bitmask sqlite3WhereCodeOneLoopStart(
987 WhereInfo *pWInfo, /* Complete information about the WHERE clause */
988 int iLevel, /* Which level of pWInfo->a[] should be coded */
989 Bitmask notReady /* Which tables are currently available */
990){
991 int j, k; /* Loop counters */
992 int iCur; /* The VDBE cursor for the table */
993 int addrNxt; /* Where to jump to continue with the next IN case */
994 int omitTable; /* True if we use the index only */
995 int bRev; /* True if we need to scan in reverse order */
996 WhereLevel *pLevel; /* The where level to be coded */
997 WhereLoop *pLoop; /* The WhereLoop object being coded */
998 WhereClause *pWC; /* Decomposition of the entire WHERE clause */
999 WhereTerm *pTerm; /* A WHERE clause term */
1000 Parse *pParse; /* Parsing context */
1001 sqlite3 *db; /* Database connection */
1002 Vdbe *v; /* The prepared stmt under constructions */
1003 struct SrcList_item *pTabItem; /* FROM clause term being coded */
1004 int addrBrk; /* Jump here to break out of the loop */
1005 int addrCont; /* Jump here to continue with next cycle */
1006 int iRowidReg = 0; /* Rowid is stored in this register, if not zero */
1007 int iReleaseReg = 0; /* Temp register to free before returning */
1008
1009 pParse = pWInfo->pParse;
1010 v = pParse->pVdbe;
1011 pWC = &pWInfo->sWC;
1012 db = pParse->db;
1013 pLevel = &pWInfo->a[iLevel];
1014 pLoop = pLevel->pWLoop;
1015 pTabItem = &pWInfo->pTabList->a[pLevel->iFrom];
1016 iCur = pTabItem->iCursor;
1017 pLevel->notReady = notReady & ~sqlite3WhereGetMask(&pWInfo->sMaskSet, iCur);
1018 bRev = (pWInfo->revMask>>iLevel)&1;
1019 omitTable = (pLoop->wsFlags & WHERE_IDX_ONLY)!=0
drhce943bc2016-05-19 18:56:33 +00001020 && (pWInfo->wctrlFlags & WHERE_OR_SUBCLAUSE)==0;
drh6f82e852015-06-06 20:12:09 +00001021 VdbeModuleComment((v, "Begin WHERE-loop%d: %s",iLevel,pTabItem->pTab->zName));
1022
1023 /* Create labels for the "break" and "continue" instructions
1024 ** for the current loop. Jump to addrBrk to break out of a loop.
1025 ** Jump to cont to go immediately to the next iteration of the
1026 ** loop.
1027 **
1028 ** When there is an IN operator, we also have a "addrNxt" label that
1029 ** means to continue with the next IN value combination. When
1030 ** there are no IN operators in the constraints, the "addrNxt" label
1031 ** is the same as "addrBrk".
1032 */
1033 addrBrk = pLevel->addrBrk = pLevel->addrNxt = sqlite3VdbeMakeLabel(v);
1034 addrCont = pLevel->addrCont = sqlite3VdbeMakeLabel(v);
1035
1036 /* If this is the right table of a LEFT OUTER JOIN, allocate and
1037 ** initialize a memory cell that records if this table matches any
1038 ** row of the left table of the join.
1039 */
drh8a48b9c2015-08-19 15:20:00 +00001040 if( pLevel->iFrom>0 && (pTabItem[0].fg.jointype & JT_LEFT)!=0 ){
drh6f82e852015-06-06 20:12:09 +00001041 pLevel->iLeftJoin = ++pParse->nMem;
1042 sqlite3VdbeAddOp2(v, OP_Integer, 0, pLevel->iLeftJoin);
1043 VdbeComment((v, "init LEFT JOIN no-match flag"));
1044 }
1045
1046 /* Special case of a FROM clause subquery implemented as a co-routine */
drh8a48b9c2015-08-19 15:20:00 +00001047 if( pTabItem->fg.viaCoroutine ){
drh6f82e852015-06-06 20:12:09 +00001048 int regYield = pTabItem->regReturn;
1049 sqlite3VdbeAddOp3(v, OP_InitCoroutine, regYield, 0, pTabItem->addrFillSub);
1050 pLevel->p2 = sqlite3VdbeAddOp2(v, OP_Yield, regYield, addrBrk);
1051 VdbeCoverage(v);
1052 VdbeComment((v, "next row of \"%s\"", pTabItem->pTab->zName));
1053 pLevel->op = OP_Goto;
1054 }else
1055
1056#ifndef SQLITE_OMIT_VIRTUALTABLE
1057 if( (pLoop->wsFlags & WHERE_VIRTUALTABLE)!=0 ){
1058 /* Case 1: The table is a virtual-table. Use the VFilter and VNext
1059 ** to access the data.
1060 */
1061 int iReg; /* P3 Value for OP_VFilter */
1062 int addrNotFound;
1063 int nConstraint = pLoop->nLTerm;
drhdbc49162016-03-02 03:28:07 +00001064 int iIn; /* Counter for IN constraints */
drh6f82e852015-06-06 20:12:09 +00001065
1066 sqlite3ExprCachePush(pParse);
1067 iReg = sqlite3GetTempRange(pParse, nConstraint+2);
1068 addrNotFound = pLevel->addrBrk;
1069 for(j=0; j<nConstraint; j++){
1070 int iTarget = iReg+j+2;
1071 pTerm = pLoop->aLTerm[j];
drh599d5762016-03-08 01:11:51 +00001072 if( NEVER(pTerm==0) ) continue;
drh6f82e852015-06-06 20:12:09 +00001073 if( pTerm->eOperator & WO_IN ){
1074 codeEqualityTerm(pParse, pTerm, pLevel, j, bRev, iTarget);
1075 addrNotFound = pLevel->addrNxt;
1076 }else{
dan6256c1c2016-08-08 20:15:41 +00001077 Expr *pRight = pTerm->pExpr->pRight;
drhfc7f27b2016-08-20 00:07:01 +00001078 codeExprOrVector(pParse, pRight, iTarget, 1);
drh6f82e852015-06-06 20:12:09 +00001079 }
1080 }
1081 sqlite3VdbeAddOp2(v, OP_Integer, pLoop->u.vtab.idxNum, iReg);
1082 sqlite3VdbeAddOp2(v, OP_Integer, nConstraint, iReg+1);
1083 sqlite3VdbeAddOp4(v, OP_VFilter, iCur, addrNotFound, iReg,
1084 pLoop->u.vtab.idxStr,
1085 pLoop->u.vtab.needFree ? P4_MPRINTF : P4_STATIC);
1086 VdbeCoverage(v);
1087 pLoop->u.vtab.needFree = 0;
drh6f82e852015-06-06 20:12:09 +00001088 pLevel->p1 = iCur;
dan354474a2015-09-29 10:11:26 +00001089 pLevel->op = pWInfo->eOnePass ? OP_Noop : OP_VNext;
drh6f82e852015-06-06 20:12:09 +00001090 pLevel->p2 = sqlite3VdbeCurrentAddr(v);
drhdbc49162016-03-02 03:28:07 +00001091 iIn = pLevel->u.in.nIn;
1092 for(j=nConstraint-1; j>=0; j--){
1093 pTerm = pLoop->aLTerm[j];
1094 if( j<16 && (pLoop->u.vtab.omitMask>>j)&1 ){
1095 disableTerm(pLevel, pTerm);
1096 }else if( (pTerm->eOperator & WO_IN)!=0 ){
1097 Expr *pCompare; /* The comparison operator */
1098 Expr *pRight; /* RHS of the comparison */
1099 VdbeOp *pOp; /* Opcode to access the value of the IN constraint */
1100
1101 /* Reload the constraint value into reg[iReg+j+2]. The same value
1102 ** was loaded into the same register prior to the OP_VFilter, but
1103 ** the xFilter implementation might have changed the datatype or
1104 ** encoding of the value in the register, so it *must* be reloaded. */
1105 assert( pLevel->u.in.aInLoop!=0 || db->mallocFailed );
drhfb826b82016-03-08 00:39:58 +00001106 if( !db->mallocFailed ){
drhdbc49162016-03-02 03:28:07 +00001107 assert( iIn>0 );
1108 pOp = sqlite3VdbeGetOp(v, pLevel->u.in.aInLoop[--iIn].addrInTop);
1109 assert( pOp->opcode==OP_Column || pOp->opcode==OP_Rowid );
1110 assert( pOp->opcode!=OP_Column || pOp->p3==iReg+j+2 );
1111 assert( pOp->opcode!=OP_Rowid || pOp->p2==iReg+j+2 );
1112 testcase( pOp->opcode==OP_Rowid );
1113 sqlite3VdbeAddOp3(v, pOp->opcode, pOp->p1, pOp->p2, pOp->p3);
1114 }
1115
1116 /* Generate code that will continue to the next row if
1117 ** the IN constraint is not satisfied */
1118 pCompare = sqlite3PExpr(pParse, TK_EQ, 0, 0, 0);
1119 assert( pCompare!=0 || db->mallocFailed );
1120 if( pCompare ){
1121 pCompare->pLeft = pTerm->pExpr->pLeft;
1122 pCompare->pRight = pRight = sqlite3Expr(db, TK_REGISTER, 0);
drh237b2b72016-03-07 19:08:27 +00001123 if( pRight ){
1124 pRight->iTable = iReg+j+2;
1125 sqlite3ExprIfFalse(pParse, pCompare, pLevel->addrCont, 0);
1126 }
drhdbc49162016-03-02 03:28:07 +00001127 pCompare->pLeft = 0;
1128 sqlite3ExprDelete(db, pCompare);
1129 }
1130 }
1131 }
drhba26faa2016-04-09 18:04:28 +00001132 /* These registers need to be preserved in case there is an IN operator
1133 ** loop. So we could deallocate the registers here (and potentially
1134 ** reuse them later) if (pLoop->wsFlags & WHERE_IN_ABLE)==0. But it seems
1135 ** simpler and safer to simply not reuse the registers.
1136 **
1137 ** sqlite3ReleaseTempRange(pParse, iReg, nConstraint+2);
1138 */
drh6f82e852015-06-06 20:12:09 +00001139 sqlite3ExprCachePop(pParse);
1140 }else
1141#endif /* SQLITE_OMIT_VIRTUALTABLE */
1142
1143 if( (pLoop->wsFlags & WHERE_IPK)!=0
1144 && (pLoop->wsFlags & (WHERE_COLUMN_IN|WHERE_COLUMN_EQ))!=0
1145 ){
1146 /* Case 2: We can directly reference a single row using an
1147 ** equality comparison against the ROWID field. Or
1148 ** we reference multiple rows using a "rowid IN (...)"
1149 ** construct.
1150 */
1151 assert( pLoop->u.btree.nEq==1 );
1152 pTerm = pLoop->aLTerm[0];
1153 assert( pTerm!=0 );
1154 assert( pTerm->pExpr!=0 );
1155 assert( omitTable==0 );
1156 testcase( pTerm->wtFlags & TERM_VIRTUAL );
1157 iReleaseReg = ++pParse->nMem;
1158 iRowidReg = codeEqualityTerm(pParse, pTerm, pLevel, 0, bRev, iReleaseReg);
1159 if( iRowidReg!=iReleaseReg ) sqlite3ReleaseTempReg(pParse, iReleaseReg);
1160 addrNxt = pLevel->addrNxt;
drheeb95652016-05-26 20:56:38 +00001161 sqlite3VdbeAddOp3(v, OP_SeekRowid, iCur, addrNxt, iRowidReg);
drh6f82e852015-06-06 20:12:09 +00001162 VdbeCoverage(v);
1163 sqlite3ExprCacheAffinityChange(pParse, iRowidReg, 1);
1164 sqlite3ExprCacheStore(pParse, iCur, -1, iRowidReg);
1165 VdbeComment((v, "pk"));
1166 pLevel->op = OP_Noop;
1167 }else if( (pLoop->wsFlags & WHERE_IPK)!=0
1168 && (pLoop->wsFlags & WHERE_COLUMN_RANGE)!=0
1169 ){
1170 /* Case 3: We have an inequality comparison against the ROWID field.
1171 */
1172 int testOp = OP_Noop;
1173 int start;
1174 int memEndValue = 0;
1175 WhereTerm *pStart, *pEnd;
1176
1177 assert( omitTable==0 );
1178 j = 0;
1179 pStart = pEnd = 0;
1180 if( pLoop->wsFlags & WHERE_BTM_LIMIT ) pStart = pLoop->aLTerm[j++];
1181 if( pLoop->wsFlags & WHERE_TOP_LIMIT ) pEnd = pLoop->aLTerm[j++];
1182 assert( pStart!=0 || pEnd!=0 );
1183 if( bRev ){
1184 pTerm = pStart;
1185 pStart = pEnd;
1186 pEnd = pTerm;
1187 }
danb324cf72016-06-17 14:33:32 +00001188 codeCursorHint(pTabItem, pWInfo, pLevel, pEnd);
drh6f82e852015-06-06 20:12:09 +00001189 if( pStart ){
1190 Expr *pX; /* The expression that defines the start bound */
1191 int r1, rTemp; /* Registers for holding the start boundary */
dan19ff12d2016-07-29 20:58:19 +00001192 int op; /* Cursor seek operation */
drh6f82e852015-06-06 20:12:09 +00001193
1194 /* The following constant maps TK_xx codes into corresponding
1195 ** seek opcodes. It depends on a particular ordering of TK_xx
1196 */
1197 const u8 aMoveOp[] = {
1198 /* TK_GT */ OP_SeekGT,
1199 /* TK_LE */ OP_SeekLE,
1200 /* TK_LT */ OP_SeekLT,
1201 /* TK_GE */ OP_SeekGE
1202 };
1203 assert( TK_LE==TK_GT+1 ); /* Make sure the ordering.. */
1204 assert( TK_LT==TK_GT+2 ); /* ... of the TK_xx values... */
1205 assert( TK_GE==TK_GT+3 ); /* ... is correcct. */
1206
1207 assert( (pStart->wtFlags & TERM_VNULL)==0 );
1208 testcase( pStart->wtFlags & TERM_VIRTUAL );
1209 pX = pStart->pExpr;
1210 assert( pX!=0 );
1211 testcase( pStart->leftCursor!=iCur ); /* transitive constraints */
dan625015e2016-07-30 16:39:28 +00001212 if( sqlite3ExprIsVector(pX->pRight) ){
dan19ff12d2016-07-29 20:58:19 +00001213 r1 = rTemp = sqlite3GetTempReg(pParse);
1214 codeExprOrVector(pParse, pX->pRight, r1, 1);
1215 op = aMoveOp[(pX->op - TK_GT) | 0x0001];
1216 }else{
1217 r1 = sqlite3ExprCodeTemp(pParse, pX->pRight, &rTemp);
1218 disableTerm(pLevel, pStart);
1219 op = aMoveOp[(pX->op - TK_GT)];
1220 }
1221 sqlite3VdbeAddOp3(v, op, iCur, addrBrk, r1);
drh6f82e852015-06-06 20:12:09 +00001222 VdbeComment((v, "pk"));
1223 VdbeCoverageIf(v, pX->op==TK_GT);
1224 VdbeCoverageIf(v, pX->op==TK_LE);
1225 VdbeCoverageIf(v, pX->op==TK_LT);
1226 VdbeCoverageIf(v, pX->op==TK_GE);
1227 sqlite3ExprCacheAffinityChange(pParse, r1, 1);
1228 sqlite3ReleaseTempReg(pParse, rTemp);
drh6f82e852015-06-06 20:12:09 +00001229 }else{
1230 sqlite3VdbeAddOp2(v, bRev ? OP_Last : OP_Rewind, iCur, addrBrk);
1231 VdbeCoverageIf(v, bRev==0);
1232 VdbeCoverageIf(v, bRev!=0);
1233 }
1234 if( pEnd ){
1235 Expr *pX;
1236 pX = pEnd->pExpr;
1237 assert( pX!=0 );
1238 assert( (pEnd->wtFlags & TERM_VNULL)==0 );
1239 testcase( pEnd->leftCursor!=iCur ); /* Transitive constraints */
1240 testcase( pEnd->wtFlags & TERM_VIRTUAL );
1241 memEndValue = ++pParse->nMem;
dan19ff12d2016-07-29 20:58:19 +00001242 codeExprOrVector(pParse, pX->pRight, memEndValue, 1);
dan625015e2016-07-30 16:39:28 +00001243 if( 0==sqlite3ExprIsVector(pX->pRight)
1244 && (pX->op==TK_LT || pX->op==TK_GT)
1245 ){
drh6f82e852015-06-06 20:12:09 +00001246 testOp = bRev ? OP_Le : OP_Ge;
1247 }else{
1248 testOp = bRev ? OP_Lt : OP_Gt;
1249 }
dan553168c2016-08-01 20:14:31 +00001250 if( 0==sqlite3ExprIsVector(pX->pRight) ){
1251 disableTerm(pLevel, pEnd);
1252 }
drh6f82e852015-06-06 20:12:09 +00001253 }
1254 start = sqlite3VdbeCurrentAddr(v);
1255 pLevel->op = bRev ? OP_Prev : OP_Next;
1256 pLevel->p1 = iCur;
1257 pLevel->p2 = start;
1258 assert( pLevel->p5==0 );
1259 if( testOp!=OP_Noop ){
1260 iRowidReg = ++pParse->nMem;
1261 sqlite3VdbeAddOp2(v, OP_Rowid, iCur, iRowidReg);
1262 sqlite3ExprCacheStore(pParse, iCur, -1, iRowidReg);
1263 sqlite3VdbeAddOp3(v, testOp, memEndValue, addrBrk, iRowidReg);
1264 VdbeCoverageIf(v, testOp==OP_Le);
1265 VdbeCoverageIf(v, testOp==OP_Lt);
1266 VdbeCoverageIf(v, testOp==OP_Ge);
1267 VdbeCoverageIf(v, testOp==OP_Gt);
1268 sqlite3VdbeChangeP5(v, SQLITE_AFF_NUMERIC | SQLITE_JUMPIFNULL);
1269 }
1270 }else if( pLoop->wsFlags & WHERE_INDEXED ){
1271 /* Case 4: A scan using an index.
1272 **
1273 ** The WHERE clause may contain zero or more equality
1274 ** terms ("==" or "IN" operators) that refer to the N
1275 ** left-most columns of the index. It may also contain
1276 ** inequality constraints (>, <, >= or <=) on the indexed
1277 ** column that immediately follows the N equalities. Only
1278 ** the right-most column can be an inequality - the rest must
1279 ** use the "==" and "IN" operators. For example, if the
1280 ** index is on (x,y,z), then the following clauses are all
1281 ** optimized:
1282 **
1283 ** x=5
1284 ** x=5 AND y=10
1285 ** x=5 AND y<10
1286 ** x=5 AND y>5 AND y<10
1287 ** x=5 AND y=5 AND z<=10
1288 **
1289 ** The z<10 term of the following cannot be used, only
1290 ** the x=5 term:
1291 **
1292 ** x=5 AND z<10
1293 **
1294 ** N may be zero if there are inequality constraints.
1295 ** If there are no inequality constraints, then N is at
1296 ** least one.
1297 **
1298 ** This case is also used when there are no WHERE clause
1299 ** constraints but an index is selected anyway, in order
1300 ** to force the output order to conform to an ORDER BY.
1301 */
1302 static const u8 aStartOp[] = {
1303 0,
1304 0,
1305 OP_Rewind, /* 2: (!start_constraints && startEq && !bRev) */
1306 OP_Last, /* 3: (!start_constraints && startEq && bRev) */
1307 OP_SeekGT, /* 4: (start_constraints && !startEq && !bRev) */
1308 OP_SeekLT, /* 5: (start_constraints && !startEq && bRev) */
1309 OP_SeekGE, /* 6: (start_constraints && startEq && !bRev) */
1310 OP_SeekLE /* 7: (start_constraints && startEq && bRev) */
1311 };
1312 static const u8 aEndOp[] = {
1313 OP_IdxGE, /* 0: (end_constraints && !bRev && !endEq) */
1314 OP_IdxGT, /* 1: (end_constraints && !bRev && endEq) */
1315 OP_IdxLE, /* 2: (end_constraints && bRev && !endEq) */
1316 OP_IdxLT, /* 3: (end_constraints && bRev && endEq) */
1317 };
1318 u16 nEq = pLoop->u.btree.nEq; /* Number of == or IN terms */
dan71c57db2016-07-09 20:23:55 +00001319 u16 nBtm = pLoop->u.btree.nBtm; /* Length of BTM vector */
1320 u16 nTop = pLoop->u.btree.nTop; /* Length of TOP vector */
drh6f82e852015-06-06 20:12:09 +00001321 int regBase; /* Base register holding constraint values */
1322 WhereTerm *pRangeStart = 0; /* Inequality constraint at range start */
1323 WhereTerm *pRangeEnd = 0; /* Inequality constraint at range end */
1324 int startEq; /* True if range start uses ==, >= or <= */
1325 int endEq; /* True if range end uses ==, >= or <= */
1326 int start_constraints; /* Start of range is constrained */
1327 int nConstraint; /* Number of constraint terms */
1328 Index *pIdx; /* The index we will be using */
1329 int iIdxCur; /* The VDBE cursor for the index */
1330 int nExtraReg = 0; /* Number of extra registers needed */
1331 int op; /* Instruction opcode */
1332 char *zStartAff; /* Affinity for start of range constraint */
1333 char cEndAff = 0; /* Affinity for end of range constraint */
1334 u8 bSeekPastNull = 0; /* True to seek past initial nulls */
1335 u8 bStopAtNull = 0; /* Add condition to terminate at NULLs */
1336
1337 pIdx = pLoop->u.btree.pIndex;
1338 iIdxCur = pLevel->iIdxCur;
1339 assert( nEq>=pLoop->nSkip );
1340
1341 /* If this loop satisfies a sort order (pOrderBy) request that
1342 ** was passed to this function to implement a "SELECT min(x) ..."
1343 ** query, then the caller will only allow the loop to run for
1344 ** a single iteration. This means that the first row returned
1345 ** should not have a NULL value stored in 'x'. If column 'x' is
1346 ** the first one after the nEq equality constraints in the index,
1347 ** this requires some special handling.
1348 */
1349 assert( pWInfo->pOrderBy==0
1350 || pWInfo->pOrderBy->nExpr==1
1351 || (pWInfo->wctrlFlags&WHERE_ORDERBY_MIN)==0 );
1352 if( (pWInfo->wctrlFlags&WHERE_ORDERBY_MIN)!=0
1353 && pWInfo->nOBSat>0
1354 && (pIdx->nKeyCol>nEq)
1355 ){
1356 assert( pLoop->nSkip==0 );
1357 bSeekPastNull = 1;
1358 nExtraReg = 1;
1359 }
1360
1361 /* Find any inequality constraint terms for the start and end
1362 ** of the range.
1363 */
1364 j = nEq;
1365 if( pLoop->wsFlags & WHERE_BTM_LIMIT ){
1366 pRangeStart = pLoop->aLTerm[j++];
dan71c57db2016-07-09 20:23:55 +00001367 nExtraReg = MAX(nExtraReg, pLoop->u.btree.nBtm);
drh6f82e852015-06-06 20:12:09 +00001368 /* Like optimization range constraints always occur in pairs */
1369 assert( (pRangeStart->wtFlags & TERM_LIKEOPT)==0 ||
1370 (pLoop->wsFlags & WHERE_TOP_LIMIT)!=0 );
1371 }
1372 if( pLoop->wsFlags & WHERE_TOP_LIMIT ){
1373 pRangeEnd = pLoop->aLTerm[j++];
dan71c57db2016-07-09 20:23:55 +00001374 nExtraReg = MAX(nExtraReg, pLoop->u.btree.nTop);
drh41d2e662015-12-01 21:23:07 +00001375#ifndef SQLITE_LIKE_DOESNT_MATCH_BLOBS
drh6f82e852015-06-06 20:12:09 +00001376 if( (pRangeEnd->wtFlags & TERM_LIKEOPT)!=0 ){
1377 assert( pRangeStart!=0 ); /* LIKE opt constraints */
1378 assert( pRangeStart->wtFlags & TERM_LIKEOPT ); /* occur in pairs */
drh44aebff2016-05-02 10:25:42 +00001379 pLevel->iLikeRepCntr = (u32)++pParse->nMem;
1380 sqlite3VdbeAddOp2(v, OP_Integer, 1, (int)pLevel->iLikeRepCntr);
drh6f82e852015-06-06 20:12:09 +00001381 VdbeComment((v, "LIKE loop counter"));
1382 pLevel->addrLikeRep = sqlite3VdbeCurrentAddr(v);
drh44aebff2016-05-02 10:25:42 +00001383 /* iLikeRepCntr actually stores 2x the counter register number. The
1384 ** bottom bit indicates whether the search order is ASC or DESC. */
1385 testcase( bRev );
1386 testcase( pIdx->aSortOrder[nEq]==SQLITE_SO_DESC );
1387 assert( (bRev & ~1)==0 );
1388 pLevel->iLikeRepCntr <<=1;
1389 pLevel->iLikeRepCntr |= bRev ^ (pIdx->aSortOrder[nEq]==SQLITE_SO_DESC);
drh6f82e852015-06-06 20:12:09 +00001390 }
drh41d2e662015-12-01 21:23:07 +00001391#endif
drh6f82e852015-06-06 20:12:09 +00001392 if( pRangeStart==0
1393 && (j = pIdx->aiColumn[nEq])>=0
1394 && pIdx->pTable->aCol[j].notNull==0
1395 ){
1396 bSeekPastNull = 1;
1397 }
1398 }
1399 assert( pRangeEnd==0 || (pRangeEnd->wtFlags & TERM_VNULL)==0 );
1400
drh6f82e852015-06-06 20:12:09 +00001401 /* If we are doing a reverse order scan on an ascending index, or
1402 ** a forward order scan on a descending index, interchange the
1403 ** start and end terms (pRangeStart and pRangeEnd).
1404 */
1405 if( (nEq<pIdx->nKeyCol && bRev==(pIdx->aSortOrder[nEq]==SQLITE_SO_ASC))
1406 || (bRev && pIdx->nKeyCol==nEq)
1407 ){
1408 SWAP(WhereTerm *, pRangeEnd, pRangeStart);
1409 SWAP(u8, bSeekPastNull, bStopAtNull);
dan71c57db2016-07-09 20:23:55 +00001410 SWAP(u8, nBtm, nTop);
drh6f82e852015-06-06 20:12:09 +00001411 }
1412
drhbcf40a72015-08-18 15:58:05 +00001413 /* Generate code to evaluate all constraint terms using == or IN
1414 ** and store the values of those terms in an array of registers
1415 ** starting at regBase.
1416 */
danb324cf72016-06-17 14:33:32 +00001417 codeCursorHint(pTabItem, pWInfo, pLevel, pRangeEnd);
drhbcf40a72015-08-18 15:58:05 +00001418 regBase = codeAllEqualityTerms(pParse,pLevel,bRev,nExtraReg,&zStartAff);
1419 assert( zStartAff==0 || sqlite3Strlen30(zStartAff)>=nEq );
1420 if( zStartAff ) cEndAff = zStartAff[nEq];
1421 addrNxt = pLevel->addrNxt;
1422
drh6f82e852015-06-06 20:12:09 +00001423 testcase( pRangeStart && (pRangeStart->eOperator & WO_LE)!=0 );
1424 testcase( pRangeStart && (pRangeStart->eOperator & WO_GE)!=0 );
1425 testcase( pRangeEnd && (pRangeEnd->eOperator & WO_LE)!=0 );
1426 testcase( pRangeEnd && (pRangeEnd->eOperator & WO_GE)!=0 );
1427 startEq = !pRangeStart || pRangeStart->eOperator & (WO_LE|WO_GE);
1428 endEq = !pRangeEnd || pRangeEnd->eOperator & (WO_LE|WO_GE);
1429 start_constraints = pRangeStart || nEq>0;
1430
1431 /* Seek the index cursor to the start of the range. */
1432 nConstraint = nEq;
1433 if( pRangeStart ){
1434 Expr *pRight = pRangeStart->pExpr->pRight;
dan71c57db2016-07-09 20:23:55 +00001435 codeExprOrVector(pParse, pRight, regBase+nEq, nBtm);
drh6f82e852015-06-06 20:12:09 +00001436 whereLikeOptimizationStringFixup(v, pLevel, pRangeStart);
1437 if( (pRangeStart->wtFlags & TERM_VNULL)==0
1438 && sqlite3ExprCanBeNull(pRight)
1439 ){
1440 sqlite3VdbeAddOp2(v, OP_IsNull, regBase+nEq, addrNxt);
1441 VdbeCoverage(v);
1442 }
1443 if( zStartAff ){
1444 if( sqlite3CompareAffinity(pRight, zStartAff[nEq])==SQLITE_AFF_BLOB){
1445 /* Since the comparison is to be performed with no conversions
1446 ** applied to the operands, set the affinity to apply to pRight to
1447 ** SQLITE_AFF_BLOB. */
1448 zStartAff[nEq] = SQLITE_AFF_BLOB;
1449 }
1450 if( sqlite3ExprNeedsNoAffinityChange(pRight, zStartAff[nEq]) ){
1451 zStartAff[nEq] = SQLITE_AFF_BLOB;
1452 }
1453 }
dan71c57db2016-07-09 20:23:55 +00001454 nConstraint += nBtm;
drh6f82e852015-06-06 20:12:09 +00001455 testcase( pRangeStart->wtFlags & TERM_VIRTUAL );
dan625015e2016-07-30 16:39:28 +00001456 if( sqlite3ExprIsVector(pRight)==0 ){
dan71c57db2016-07-09 20:23:55 +00001457 disableTerm(pLevel, pRangeStart);
1458 }else{
1459 startEq = 1;
1460 }
drh426f4ab2016-07-26 04:31:14 +00001461 bSeekPastNull = 0;
drh6f82e852015-06-06 20:12:09 +00001462 }else if( bSeekPastNull ){
1463 sqlite3VdbeAddOp2(v, OP_Null, 0, regBase+nEq);
1464 nConstraint++;
1465 startEq = 0;
1466 start_constraints = 1;
1467 }
1468 codeApplyAffinity(pParse, regBase, nConstraint - bSeekPastNull, zStartAff);
drh0bf2ad62016-02-22 21:19:54 +00001469 if( pLoop->nSkip>0 && nConstraint==pLoop->nSkip ){
1470 /* The skip-scan logic inside the call to codeAllEqualityConstraints()
1471 ** above has already left the cursor sitting on the correct row,
1472 ** so no further seeking is needed */
1473 }else{
drha6d2f8e2016-02-22 20:52:26 +00001474 op = aStartOp[(start_constraints<<2) + (startEq<<1) + bRev];
1475 assert( op!=0 );
1476 sqlite3VdbeAddOp4Int(v, op, iIdxCur, addrNxt, regBase, nConstraint);
1477 VdbeCoverage(v);
1478 VdbeCoverageIf(v, op==OP_Rewind); testcase( op==OP_Rewind );
1479 VdbeCoverageIf(v, op==OP_Last); testcase( op==OP_Last );
1480 VdbeCoverageIf(v, op==OP_SeekGT); testcase( op==OP_SeekGT );
1481 VdbeCoverageIf(v, op==OP_SeekGE); testcase( op==OP_SeekGE );
1482 VdbeCoverageIf(v, op==OP_SeekLE); testcase( op==OP_SeekLE );
1483 VdbeCoverageIf(v, op==OP_SeekLT); testcase( op==OP_SeekLT );
1484 }
drh0bf2ad62016-02-22 21:19:54 +00001485
drh6f82e852015-06-06 20:12:09 +00001486 /* Load the value for the inequality constraint at the end of the
1487 ** range (if any).
1488 */
1489 nConstraint = nEq;
1490 if( pRangeEnd ){
1491 Expr *pRight = pRangeEnd->pExpr->pRight;
1492 sqlite3ExprCacheRemove(pParse, regBase+nEq, 1);
dan71c57db2016-07-09 20:23:55 +00001493 codeExprOrVector(pParse, pRight, regBase+nEq, nTop);
drh6f82e852015-06-06 20:12:09 +00001494 whereLikeOptimizationStringFixup(v, pLevel, pRangeEnd);
1495 if( (pRangeEnd->wtFlags & TERM_VNULL)==0
1496 && sqlite3ExprCanBeNull(pRight)
1497 ){
1498 sqlite3VdbeAddOp2(v, OP_IsNull, regBase+nEq, addrNxt);
1499 VdbeCoverage(v);
1500 }
1501 if( sqlite3CompareAffinity(pRight, cEndAff)!=SQLITE_AFF_BLOB
1502 && !sqlite3ExprNeedsNoAffinityChange(pRight, cEndAff)
1503 ){
1504 codeApplyAffinity(pParse, regBase+nEq, 1, &cEndAff);
1505 }
dan71c57db2016-07-09 20:23:55 +00001506 nConstraint += nTop;
drh6f82e852015-06-06 20:12:09 +00001507 testcase( pRangeEnd->wtFlags & TERM_VIRTUAL );
dan71c57db2016-07-09 20:23:55 +00001508
dan625015e2016-07-30 16:39:28 +00001509 if( sqlite3ExprIsVector(pRight)==0 ){
dan71c57db2016-07-09 20:23:55 +00001510 disableTerm(pLevel, pRangeEnd);
1511 }else{
1512 endEq = 1;
1513 }
drh6f82e852015-06-06 20:12:09 +00001514 }else if( bStopAtNull ){
1515 sqlite3VdbeAddOp2(v, OP_Null, 0, regBase+nEq);
1516 endEq = 0;
1517 nConstraint++;
1518 }
1519 sqlite3DbFree(db, zStartAff);
1520
1521 /* Top of the loop body */
1522 pLevel->p2 = sqlite3VdbeCurrentAddr(v);
1523
1524 /* Check if the index cursor is past the end of the range. */
1525 if( nConstraint ){
1526 op = aEndOp[bRev*2 + endEq];
1527 sqlite3VdbeAddOp4Int(v, op, iIdxCur, addrNxt, regBase, nConstraint);
1528 testcase( op==OP_IdxGT ); VdbeCoverageIf(v, op==OP_IdxGT );
1529 testcase( op==OP_IdxGE ); VdbeCoverageIf(v, op==OP_IdxGE );
1530 testcase( op==OP_IdxLT ); VdbeCoverageIf(v, op==OP_IdxLT );
1531 testcase( op==OP_IdxLE ); VdbeCoverageIf(v, op==OP_IdxLE );
1532 }
1533
1534 /* Seek the table cursor, if required */
drh6f82e852015-06-06 20:12:09 +00001535 if( omitTable ){
1536 /* pIdx is a covering index. No need to access the main table. */
1537 }else if( HasRowid(pIdx->pTable) ){
drhf09c4822016-05-06 20:23:12 +00001538 if( (pWInfo->wctrlFlags & WHERE_SEEK_TABLE)!=0 ){
drh784c1b92016-01-30 16:59:56 +00001539 iRowidReg = ++pParse->nMem;
1540 sqlite3VdbeAddOp2(v, OP_IdxRowid, iIdxCur, iRowidReg);
1541 sqlite3ExprCacheStore(pParse, iCur, -1, iRowidReg);
danc6157e12015-09-14 09:23:47 +00001542 sqlite3VdbeAddOp3(v, OP_NotExists, iCur, 0, iRowidReg);
drh66336f32015-09-14 14:08:25 +00001543 VdbeCoverage(v);
danc6157e12015-09-14 09:23:47 +00001544 }else{
drh784c1b92016-01-30 16:59:56 +00001545 codeDeferredSeek(pWInfo, pIdx, iCur, iIdxCur);
danc6157e12015-09-14 09:23:47 +00001546 }
drh6f82e852015-06-06 20:12:09 +00001547 }else if( iCur!=iIdxCur ){
1548 Index *pPk = sqlite3PrimaryKeyIndex(pIdx->pTable);
1549 iRowidReg = sqlite3GetTempRange(pParse, pPk->nKeyCol);
1550 for(j=0; j<pPk->nKeyCol; j++){
1551 k = sqlite3ColumnOfIndex(pIdx, pPk->aiColumn[j]);
1552 sqlite3VdbeAddOp3(v, OP_Column, iIdxCur, k, iRowidReg+j);
1553 }
1554 sqlite3VdbeAddOp4Int(v, OP_NotFound, iCur, addrCont,
1555 iRowidReg, pPk->nKeyCol); VdbeCoverage(v);
1556 }
1557
dan71c57db2016-07-09 20:23:55 +00001558 /* Record the instruction used to terminate the loop. */
drh6f82e852015-06-06 20:12:09 +00001559 if( pLoop->wsFlags & WHERE_ONEROW ){
1560 pLevel->op = OP_Noop;
1561 }else if( bRev ){
1562 pLevel->op = OP_Prev;
1563 }else{
1564 pLevel->op = OP_Next;
1565 }
1566 pLevel->p1 = iIdxCur;
1567 pLevel->p3 = (pLoop->wsFlags&WHERE_UNQ_WANTED)!=0 ? 1:0;
1568 if( (pLoop->wsFlags & WHERE_CONSTRAINT)==0 ){
1569 pLevel->p5 = SQLITE_STMTSTATUS_FULLSCAN_STEP;
1570 }else{
1571 assert( pLevel->p5==0 );
1572 }
1573 }else
1574
1575#ifndef SQLITE_OMIT_OR_OPTIMIZATION
1576 if( pLoop->wsFlags & WHERE_MULTI_OR ){
1577 /* Case 5: Two or more separately indexed terms connected by OR
1578 **
1579 ** Example:
1580 **
1581 ** CREATE TABLE t1(a,b,c,d);
1582 ** CREATE INDEX i1 ON t1(a);
1583 ** CREATE INDEX i2 ON t1(b);
1584 ** CREATE INDEX i3 ON t1(c);
1585 **
1586 ** SELECT * FROM t1 WHERE a=5 OR b=7 OR (c=11 AND d=13)
1587 **
1588 ** In the example, there are three indexed terms connected by OR.
1589 ** The top of the loop looks like this:
1590 **
1591 ** Null 1 # Zero the rowset in reg 1
1592 **
1593 ** Then, for each indexed term, the following. The arguments to
1594 ** RowSetTest are such that the rowid of the current row is inserted
1595 ** into the RowSet. If it is already present, control skips the
1596 ** Gosub opcode and jumps straight to the code generated by WhereEnd().
1597 **
1598 ** sqlite3WhereBegin(<term>)
1599 ** RowSetTest # Insert rowid into rowset
1600 ** Gosub 2 A
1601 ** sqlite3WhereEnd()
1602 **
1603 ** Following the above, code to terminate the loop. Label A, the target
1604 ** of the Gosub above, jumps to the instruction right after the Goto.
1605 **
1606 ** Null 1 # Zero the rowset in reg 1
1607 ** Goto B # The loop is finished.
1608 **
1609 ** A: <loop body> # Return data, whatever.
1610 **
1611 ** Return 2 # Jump back to the Gosub
1612 **
1613 ** B: <after the loop>
1614 **
1615 ** Added 2014-05-26: If the table is a WITHOUT ROWID table, then
1616 ** use an ephemeral index instead of a RowSet to record the primary
1617 ** keys of the rows we have already seen.
1618 **
1619 */
1620 WhereClause *pOrWc; /* The OR-clause broken out into subterms */
1621 SrcList *pOrTab; /* Shortened table list or OR-clause generation */
1622 Index *pCov = 0; /* Potential covering index (or NULL) */
1623 int iCovCur = pParse->nTab++; /* Cursor used for index scans (if any) */
1624
1625 int regReturn = ++pParse->nMem; /* Register used with OP_Gosub */
1626 int regRowset = 0; /* Register for RowSet object */
1627 int regRowid = 0; /* Register holding rowid */
1628 int iLoopBody = sqlite3VdbeMakeLabel(v); /* Start of loop body */
1629 int iRetInit; /* Address of regReturn init */
1630 int untestedTerms = 0; /* Some terms not completely tested */
1631 int ii; /* Loop counter */
1632 u16 wctrlFlags; /* Flags for sub-WHERE clause */
1633 Expr *pAndExpr = 0; /* An ".. AND (...)" expression */
1634 Table *pTab = pTabItem->pTab;
dan145b4ea2016-07-29 18:12:12 +00001635
drh6f82e852015-06-06 20:12:09 +00001636 pTerm = pLoop->aLTerm[0];
1637 assert( pTerm!=0 );
1638 assert( pTerm->eOperator & WO_OR );
1639 assert( (pTerm->wtFlags & TERM_ORINFO)!=0 );
1640 pOrWc = &pTerm->u.pOrInfo->wc;
1641 pLevel->op = OP_Return;
1642 pLevel->p1 = regReturn;
1643
1644 /* Set up a new SrcList in pOrTab containing the table being scanned
1645 ** by this loop in the a[0] slot and all notReady tables in a[1..] slots.
1646 ** This becomes the SrcList in the recursive call to sqlite3WhereBegin().
1647 */
1648 if( pWInfo->nLevel>1 ){
1649 int nNotReady; /* The number of notReady tables */
1650 struct SrcList_item *origSrc; /* Original list of tables */
1651 nNotReady = pWInfo->nLevel - iLevel - 1;
1652 pOrTab = sqlite3StackAllocRaw(db,
1653 sizeof(*pOrTab)+ nNotReady*sizeof(pOrTab->a[0]));
1654 if( pOrTab==0 ) return notReady;
1655 pOrTab->nAlloc = (u8)(nNotReady + 1);
1656 pOrTab->nSrc = pOrTab->nAlloc;
1657 memcpy(pOrTab->a, pTabItem, sizeof(*pTabItem));
1658 origSrc = pWInfo->pTabList->a;
1659 for(k=1; k<=nNotReady; k++){
1660 memcpy(&pOrTab->a[k], &origSrc[pLevel[k].iFrom], sizeof(pOrTab->a[k]));
1661 }
1662 }else{
1663 pOrTab = pWInfo->pTabList;
1664 }
1665
1666 /* Initialize the rowset register to contain NULL. An SQL NULL is
1667 ** equivalent to an empty rowset. Or, create an ephemeral index
1668 ** capable of holding primary keys in the case of a WITHOUT ROWID.
1669 **
1670 ** Also initialize regReturn to contain the address of the instruction
1671 ** immediately following the OP_Return at the bottom of the loop. This
1672 ** is required in a few obscure LEFT JOIN cases where control jumps
1673 ** over the top of the loop into the body of it. In this case the
1674 ** correct response for the end-of-loop code (the OP_Return) is to
1675 ** fall through to the next instruction, just as an OP_Next does if
1676 ** called on an uninitialized cursor.
1677 */
1678 if( (pWInfo->wctrlFlags & WHERE_DUPLICATES_OK)==0 ){
1679 if( HasRowid(pTab) ){
1680 regRowset = ++pParse->nMem;
1681 sqlite3VdbeAddOp2(v, OP_Null, 0, regRowset);
1682 }else{
1683 Index *pPk = sqlite3PrimaryKeyIndex(pTab);
1684 regRowset = pParse->nTab++;
1685 sqlite3VdbeAddOp2(v, OP_OpenEphemeral, regRowset, pPk->nKeyCol);
1686 sqlite3VdbeSetP4KeyInfo(pParse, pPk);
1687 }
1688 regRowid = ++pParse->nMem;
1689 }
1690 iRetInit = sqlite3VdbeAddOp2(v, OP_Integer, 0, regReturn);
1691
1692 /* If the original WHERE clause is z of the form: (x1 OR x2 OR ...) AND y
1693 ** Then for every term xN, evaluate as the subexpression: xN AND z
1694 ** That way, terms in y that are factored into the disjunction will
1695 ** be picked up by the recursive calls to sqlite3WhereBegin() below.
1696 **
1697 ** Actually, each subexpression is converted to "xN AND w" where w is
1698 ** the "interesting" terms of z - terms that did not originate in the
1699 ** ON or USING clause of a LEFT JOIN, and terms that are usable as
1700 ** indices.
1701 **
1702 ** This optimization also only applies if the (x1 OR x2 OR ...) term
1703 ** is not contained in the ON clause of a LEFT JOIN.
1704 ** See ticket http://www.sqlite.org/src/info/f2369304e4
1705 */
1706 if( pWC->nTerm>1 ){
1707 int iTerm;
1708 for(iTerm=0; iTerm<pWC->nTerm; iTerm++){
1709 Expr *pExpr = pWC->a[iTerm].pExpr;
1710 if( &pWC->a[iTerm] == pTerm ) continue;
1711 if( ExprHasProperty(pExpr, EP_FromJoin) ) continue;
drh3b83f0c2016-01-29 16:57:06 +00001712 testcase( pWC->a[iTerm].wtFlags & TERM_VIRTUAL );
1713 testcase( pWC->a[iTerm].wtFlags & TERM_CODED );
1714 if( (pWC->a[iTerm].wtFlags & (TERM_VIRTUAL|TERM_CODED))!=0 ) continue;
drh6f82e852015-06-06 20:12:09 +00001715 if( (pWC->a[iTerm].eOperator & WO_ALL)==0 ) continue;
1716 testcase( pWC->a[iTerm].wtFlags & TERM_ORINFO );
1717 pExpr = sqlite3ExprDup(db, pExpr, 0);
1718 pAndExpr = sqlite3ExprAnd(db, pAndExpr, pExpr);
1719 }
1720 if( pAndExpr ){
drh1167d322015-10-28 20:01:45 +00001721 pAndExpr = sqlite3PExpr(pParse, TK_AND|TKFLG_DONTFOLD, 0, pAndExpr, 0);
drh6f82e852015-06-06 20:12:09 +00001722 }
1723 }
1724
1725 /* Run a separate WHERE clause for each term of the OR clause. After
1726 ** eliminating duplicates from other WHERE clauses, the action for each
1727 ** sub-WHERE clause is to to invoke the main loop body as a subroutine.
1728 */
drhce943bc2016-05-19 18:56:33 +00001729 wctrlFlags = WHERE_OR_SUBCLAUSE | (pWInfo->wctrlFlags & WHERE_SEEK_TABLE);
drh6f82e852015-06-06 20:12:09 +00001730 for(ii=0; ii<pOrWc->nTerm; ii++){
1731 WhereTerm *pOrTerm = &pOrWc->a[ii];
1732 if( pOrTerm->leftCursor==iCur || (pOrTerm->eOperator & WO_AND)!=0 ){
1733 WhereInfo *pSubWInfo; /* Info for single OR-term scan */
1734 Expr *pOrExpr = pOrTerm->pExpr; /* Current OR clause term */
drh728e0f92015-10-10 14:41:28 +00001735 int jmp1 = 0; /* Address of jump operation */
drh6f82e852015-06-06 20:12:09 +00001736 if( pAndExpr && !ExprHasProperty(pOrExpr, EP_FromJoin) ){
1737 pAndExpr->pLeft = pOrExpr;
1738 pOrExpr = pAndExpr;
1739 }
1740 /* Loop through table entries that match term pOrTerm. */
1741 WHERETRACE(0xffff, ("Subplan for OR-clause:\n"));
1742 pSubWInfo = sqlite3WhereBegin(pParse, pOrTab, pOrExpr, 0, 0,
1743 wctrlFlags, iCovCur);
1744 assert( pSubWInfo || pParse->nErr || db->mallocFailed );
1745 if( pSubWInfo ){
1746 WhereLoop *pSubLoop;
1747 int addrExplain = sqlite3WhereExplainOneScan(
1748 pParse, pOrTab, &pSubWInfo->a[0], iLevel, pLevel->iFrom, 0
1749 );
1750 sqlite3WhereAddScanStatus(v, pOrTab, &pSubWInfo->a[0], addrExplain);
1751
1752 /* This is the sub-WHERE clause body. First skip over
1753 ** duplicate rows from prior sub-WHERE clauses, and record the
1754 ** rowid (or PRIMARY KEY) for the current row so that the same
1755 ** row will be skipped in subsequent sub-WHERE clauses.
1756 */
1757 if( (pWInfo->wctrlFlags & WHERE_DUPLICATES_OK)==0 ){
1758 int r;
1759 int iSet = ((ii==pOrWc->nTerm-1)?-1:ii);
1760 if( HasRowid(pTab) ){
1761 r = sqlite3ExprCodeGetColumn(pParse, pTab, -1, iCur, regRowid, 0);
drh728e0f92015-10-10 14:41:28 +00001762 jmp1 = sqlite3VdbeAddOp4Int(v, OP_RowSetTest, regRowset, 0,
1763 r,iSet);
drh6f82e852015-06-06 20:12:09 +00001764 VdbeCoverage(v);
1765 }else{
1766 Index *pPk = sqlite3PrimaryKeyIndex(pTab);
1767 int nPk = pPk->nKeyCol;
1768 int iPk;
1769
1770 /* Read the PK into an array of temp registers. */
1771 r = sqlite3GetTempRange(pParse, nPk);
1772 for(iPk=0; iPk<nPk; iPk++){
1773 int iCol = pPk->aiColumn[iPk];
drhce78bc62015-10-15 19:21:51 +00001774 sqlite3ExprCodeGetColumnToReg(pParse, pTab, iCol, iCur, r+iPk);
drh6f82e852015-06-06 20:12:09 +00001775 }
1776
1777 /* Check if the temp table already contains this key. If so,
1778 ** the row has already been included in the result set and
1779 ** can be ignored (by jumping past the Gosub below). Otherwise,
1780 ** insert the key into the temp table and proceed with processing
1781 ** the row.
1782 **
1783 ** Use some of the same optimizations as OP_RowSetTest: If iSet
1784 ** is zero, assume that the key cannot already be present in
1785 ** the temp table. And if iSet is -1, assume that there is no
1786 ** need to insert the key into the temp table, as it will never
1787 ** be tested for. */
1788 if( iSet ){
drh728e0f92015-10-10 14:41:28 +00001789 jmp1 = sqlite3VdbeAddOp4Int(v, OP_Found, regRowset, 0, r, nPk);
drh6f82e852015-06-06 20:12:09 +00001790 VdbeCoverage(v);
1791 }
1792 if( iSet>=0 ){
1793 sqlite3VdbeAddOp3(v, OP_MakeRecord, r, nPk, regRowid);
1794 sqlite3VdbeAddOp3(v, OP_IdxInsert, regRowset, regRowid, 0);
1795 if( iSet ) sqlite3VdbeChangeP5(v, OPFLAG_USESEEKRESULT);
1796 }
1797
1798 /* Release the array of temp registers */
1799 sqlite3ReleaseTempRange(pParse, r, nPk);
1800 }
1801 }
1802
1803 /* Invoke the main loop body as a subroutine */
1804 sqlite3VdbeAddOp2(v, OP_Gosub, regReturn, iLoopBody);
1805
1806 /* Jump here (skipping the main loop body subroutine) if the
1807 ** current sub-WHERE row is a duplicate from prior sub-WHEREs. */
drh728e0f92015-10-10 14:41:28 +00001808 if( jmp1 ) sqlite3VdbeJumpHere(v, jmp1);
drh6f82e852015-06-06 20:12:09 +00001809
1810 /* The pSubWInfo->untestedTerms flag means that this OR term
1811 ** contained one or more AND term from a notReady table. The
1812 ** terms from the notReady table could not be tested and will
1813 ** need to be tested later.
1814 */
1815 if( pSubWInfo->untestedTerms ) untestedTerms = 1;
1816
1817 /* If all of the OR-connected terms are optimized using the same
1818 ** index, and the index is opened using the same cursor number
1819 ** by each call to sqlite3WhereBegin() made by this loop, it may
1820 ** be possible to use that index as a covering index.
1821 **
1822 ** If the call to sqlite3WhereBegin() above resulted in a scan that
1823 ** uses an index, and this is either the first OR-connected term
1824 ** processed or the index is the same as that used by all previous
1825 ** terms, set pCov to the candidate covering index. Otherwise, set
1826 ** pCov to NULL to indicate that no candidate covering index will
1827 ** be available.
1828 */
1829 pSubLoop = pSubWInfo->a[0].pWLoop;
1830 assert( (pSubLoop->wsFlags & WHERE_AUTO_INDEX)==0 );
1831 if( (pSubLoop->wsFlags & WHERE_INDEXED)!=0
1832 && (ii==0 || pSubLoop->u.btree.pIndex==pCov)
1833 && (HasRowid(pTab) || !IsPrimaryKeyIndex(pSubLoop->u.btree.pIndex))
1834 ){
1835 assert( pSubWInfo->a[0].iIdxCur==iCovCur );
1836 pCov = pSubLoop->u.btree.pIndex;
drh6f82e852015-06-06 20:12:09 +00001837 }else{
1838 pCov = 0;
1839 }
1840
1841 /* Finish the loop through table entries that match term pOrTerm. */
1842 sqlite3WhereEnd(pSubWInfo);
1843 }
1844 }
1845 }
1846 pLevel->u.pCovidx = pCov;
1847 if( pCov ) pLevel->iIdxCur = iCovCur;
1848 if( pAndExpr ){
1849 pAndExpr->pLeft = 0;
1850 sqlite3ExprDelete(db, pAndExpr);
1851 }
1852 sqlite3VdbeChangeP1(v, iRetInit, sqlite3VdbeCurrentAddr(v));
drh076e85f2015-09-03 13:46:12 +00001853 sqlite3VdbeGoto(v, pLevel->addrBrk);
drh6f82e852015-06-06 20:12:09 +00001854 sqlite3VdbeResolveLabel(v, iLoopBody);
1855
1856 if( pWInfo->nLevel>1 ) sqlite3StackFree(db, pOrTab);
1857 if( !untestedTerms ) disableTerm(pLevel, pTerm);
1858 }else
1859#endif /* SQLITE_OMIT_OR_OPTIMIZATION */
1860
1861 {
1862 /* Case 6: There is no usable index. We must do a complete
1863 ** scan of the entire table.
1864 */
1865 static const u8 aStep[] = { OP_Next, OP_Prev };
1866 static const u8 aStart[] = { OP_Rewind, OP_Last };
1867 assert( bRev==0 || bRev==1 );
drh8a48b9c2015-08-19 15:20:00 +00001868 if( pTabItem->fg.isRecursive ){
drh6f82e852015-06-06 20:12:09 +00001869 /* Tables marked isRecursive have only a single row that is stored in
1870 ** a pseudo-cursor. No need to Rewind or Next such cursors. */
1871 pLevel->op = OP_Noop;
1872 }else{
danb324cf72016-06-17 14:33:32 +00001873 codeCursorHint(pTabItem, pWInfo, pLevel, 0);
drh6f82e852015-06-06 20:12:09 +00001874 pLevel->op = aStep[bRev];
1875 pLevel->p1 = iCur;
1876 pLevel->p2 = 1 + sqlite3VdbeAddOp2(v, aStart[bRev], iCur, addrBrk);
1877 VdbeCoverageIf(v, bRev==0);
1878 VdbeCoverageIf(v, bRev!=0);
1879 pLevel->p5 = SQLITE_STMTSTATUS_FULLSCAN_STEP;
1880 }
1881 }
1882
1883#ifdef SQLITE_ENABLE_STMT_SCANSTATUS
1884 pLevel->addrVisit = sqlite3VdbeCurrentAddr(v);
1885#endif
1886
1887 /* Insert code to test every subexpression that can be completely
1888 ** computed using the current set of tables.
1889 */
1890 for(pTerm=pWC->a, j=pWC->nTerm; j>0; j--, pTerm++){
1891 Expr *pE;
1892 int skipLikeAddr = 0;
1893 testcase( pTerm->wtFlags & TERM_VIRTUAL );
1894 testcase( pTerm->wtFlags & TERM_CODED );
1895 if( pTerm->wtFlags & (TERM_VIRTUAL|TERM_CODED) ) continue;
1896 if( (pTerm->prereqAll & pLevel->notReady)!=0 ){
1897 testcase( pWInfo->untestedTerms==0
drhce943bc2016-05-19 18:56:33 +00001898 && (pWInfo->wctrlFlags & WHERE_OR_SUBCLAUSE)!=0 );
drh6f82e852015-06-06 20:12:09 +00001899 pWInfo->untestedTerms = 1;
1900 continue;
1901 }
1902 pE = pTerm->pExpr;
1903 assert( pE!=0 );
1904 if( pLevel->iLeftJoin && !ExprHasProperty(pE, EP_FromJoin) ){
1905 continue;
1906 }
1907 if( pTerm->wtFlags & TERM_LIKECOND ){
drh44aebff2016-05-02 10:25:42 +00001908 /* If the TERM_LIKECOND flag is set, that means that the range search
1909 ** is sufficient to guarantee that the LIKE operator is true, so we
1910 ** can skip the call to the like(A,B) function. But this only works
1911 ** for strings. So do not skip the call to the function on the pass
1912 ** that compares BLOBs. */
drh41d2e662015-12-01 21:23:07 +00001913#ifdef SQLITE_LIKE_DOESNT_MATCH_BLOBS
1914 continue;
1915#else
drh44aebff2016-05-02 10:25:42 +00001916 u32 x = pLevel->iLikeRepCntr;
1917 assert( x>0 );
1918 skipLikeAddr = sqlite3VdbeAddOp1(v, (x&1)? OP_IfNot : OP_If, (int)(x>>1));
drh6f82e852015-06-06 20:12:09 +00001919 VdbeCoverage(v);
drh41d2e662015-12-01 21:23:07 +00001920#endif
drh6f82e852015-06-06 20:12:09 +00001921 }
1922 sqlite3ExprIfFalse(pParse, pE, addrCont, SQLITE_JUMPIFNULL);
1923 if( skipLikeAddr ) sqlite3VdbeJumpHere(v, skipLikeAddr);
1924 pTerm->wtFlags |= TERM_CODED;
1925 }
1926
1927 /* Insert code to test for implied constraints based on transitivity
1928 ** of the "==" operator.
1929 **
1930 ** Example: If the WHERE clause contains "t1.a=t2.b" and "t2.b=123"
1931 ** and we are coding the t1 loop and the t2 loop has not yet coded,
1932 ** then we cannot use the "t1.a=t2.b" constraint, but we can code
1933 ** the implied "t1.a=123" constraint.
1934 */
1935 for(pTerm=pWC->a, j=pWC->nTerm; j>0; j--, pTerm++){
1936 Expr *pE, *pEAlt;
1937 WhereTerm *pAlt;
1938 if( pTerm->wtFlags & (TERM_VIRTUAL|TERM_CODED) ) continue;
1939 if( (pTerm->eOperator & (WO_EQ|WO_IS))==0 ) continue;
1940 if( (pTerm->eOperator & WO_EQUIV)==0 ) continue;
1941 if( pTerm->leftCursor!=iCur ) continue;
1942 if( pLevel->iLeftJoin ) continue;
1943 pE = pTerm->pExpr;
1944 assert( !ExprHasProperty(pE, EP_FromJoin) );
1945 assert( (pTerm->prereqRight & pLevel->notReady)!=0 );
1946 pAlt = sqlite3WhereFindTerm(pWC, iCur, pTerm->u.leftColumn, notReady,
1947 WO_EQ|WO_IN|WO_IS, 0);
1948 if( pAlt==0 ) continue;
1949 if( pAlt->wtFlags & (TERM_CODED) ) continue;
1950 testcase( pAlt->eOperator & WO_EQ );
1951 testcase( pAlt->eOperator & WO_IS );
1952 testcase( pAlt->eOperator & WO_IN );
1953 VdbeModuleComment((v, "begin transitive constraint"));
1954 pEAlt = sqlite3StackAllocRaw(db, sizeof(*pEAlt));
1955 if( pEAlt ){
1956 *pEAlt = *pAlt->pExpr;
1957 pEAlt->pLeft = pE->pLeft;
1958 sqlite3ExprIfFalse(pParse, pEAlt, addrCont, SQLITE_JUMPIFNULL);
1959 sqlite3StackFree(db, pEAlt);
1960 }
1961 }
1962
1963 /* For a LEFT OUTER JOIN, generate code that will record the fact that
1964 ** at least one row of the right table has matched the left table.
1965 */
1966 if( pLevel->iLeftJoin ){
1967 pLevel->addrFirst = sqlite3VdbeCurrentAddr(v);
1968 sqlite3VdbeAddOp2(v, OP_Integer, 1, pLevel->iLeftJoin);
1969 VdbeComment((v, "record LEFT JOIN hit"));
1970 sqlite3ExprCacheClear(pParse);
1971 for(pTerm=pWC->a, j=0; j<pWC->nTerm; j++, pTerm++){
1972 testcase( pTerm->wtFlags & TERM_VIRTUAL );
1973 testcase( pTerm->wtFlags & TERM_CODED );
1974 if( pTerm->wtFlags & (TERM_VIRTUAL|TERM_CODED) ) continue;
1975 if( (pTerm->prereqAll & pLevel->notReady)!=0 ){
1976 assert( pWInfo->untestedTerms );
1977 continue;
1978 }
1979 assert( pTerm->pExpr );
1980 sqlite3ExprIfFalse(pParse, pTerm->pExpr, addrCont, SQLITE_JUMPIFNULL);
1981 pTerm->wtFlags |= TERM_CODED;
1982 }
1983 }
1984
1985 return pLevel->notReady;
1986}