blob: e02a736428e7d4e12a537020e5721ab8e0be56fe [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";
drhcf9d36d2021-08-02 18:03:43 +000032 return pIdx->pTable->aCol[i].zCnName;
dan1d9bc9b2016-08-08 18:42:08 +000033}
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 );
drh0cdbe1a2018-05-09 13:46:26 +000054 if( bAnd ) sqlite3_str_append(pStr, " AND ", 5);
dan1d9bc9b2016-08-08 18:42:08 +000055
drh0cdbe1a2018-05-09 13:46:26 +000056 if( nTerm>1 ) sqlite3_str_append(pStr, "(", 1);
dan1d9bc9b2016-08-08 18:42:08 +000057 for(i=0; i<nTerm; i++){
drh0cdbe1a2018-05-09 13:46:26 +000058 if( i ) sqlite3_str_append(pStr, ",", 1);
59 sqlite3_str_appendall(pStr, explainIndexColumnName(pIdx, iTerm+i));
dan1d9bc9b2016-08-08 18:42:08 +000060 }
drh0cdbe1a2018-05-09 13:46:26 +000061 if( nTerm>1 ) sqlite3_str_append(pStr, ")", 1);
dan1d9bc9b2016-08-08 18:42:08 +000062
drh0cdbe1a2018-05-09 13:46:26 +000063 sqlite3_str_append(pStr, zOp, 1);
dan1d9bc9b2016-08-08 18:42:08 +000064
drh0cdbe1a2018-05-09 13:46:26 +000065 if( nTerm>1 ) sqlite3_str_append(pStr, "(", 1);
dan1d9bc9b2016-08-08 18:42:08 +000066 for(i=0; i<nTerm; i++){
drh0cdbe1a2018-05-09 13:46:26 +000067 if( i ) sqlite3_str_append(pStr, ",", 1);
68 sqlite3_str_append(pStr, "?", 1);
dan1d9bc9b2016-08-08 18:42:08 +000069 }
drh0cdbe1a2018-05-09 13:46:26 +000070 if( nTerm>1 ) sqlite3_str_append(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;
drh0cdbe1a2018-05-09 13:46:26 +000094 sqlite3_str_append(pStr, " (", 2);
drh6f82e852015-06-06 20:12:09 +000095 for(i=0; i<nEq; i++){
drhc7c46802015-08-27 20:33:38 +000096 const char *z = explainIndexColumnName(pIndex, i);
drh0cdbe1a2018-05-09 13:46:26 +000097 if( i ) sqlite3_str_append(pStr, " AND ", 5);
98 sqlite3_str_appendf(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 }
drh0cdbe1a2018-05-09 13:46:26 +0000109 sqlite3_str_append(pStr, ")", 1);
drh6f82e852015-06-06 20:12:09 +0000110}
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 */
drh6f82e852015-06-06 20:12:09 +0000125 u16 wctrlFlags /* Flags passed to sqlite3WhereBegin() */
126){
127 int ret = 0;
128#if !defined(SQLITE_DEBUG) && !defined(SQLITE_ENABLE_STMT_SCANSTATUS)
drhef7231b2017-12-21 21:41:13 +0000129 if( sqlite3ParseToplevel(pParse)->explain==2 )
drh6f82e852015-06-06 20:12:09 +0000130#endif
131 {
drh76012942021-02-21 21:04:54 +0000132 SrcItem *pItem = &pTabList->a[pLevel->iFrom];
drh6f82e852015-06-06 20:12:09 +0000133 Vdbe *v = pParse->pVdbe; /* VM being constructed */
134 sqlite3 *db = pParse->db; /* Database handle */
drh6f82e852015-06-06 20:12:09 +0000135 int isSearch; /* True for a SEARCH. False for SCAN. */
136 WhereLoop *pLoop; /* The controlling WhereLoop object */
137 u32 flags; /* Flags that describe this loop */
138 char *zMsg; /* Text to add to EQP output */
139 StrAccum str; /* EQP output string */
140 char zBuf[100]; /* Initial space for EQP output string */
141
142 pLoop = pLevel->pWLoop;
143 flags = pLoop->wsFlags;
drhce943bc2016-05-19 18:56:33 +0000144 if( (flags&WHERE_MULTI_OR) || (wctrlFlags&WHERE_OR_SUBCLAUSE) ) return 0;
drh6f82e852015-06-06 20:12:09 +0000145
146 isSearch = (flags&(WHERE_BTM_LIMIT|WHERE_TOP_LIMIT))!=0
147 || ((flags&WHERE_VIRTUALTABLE)==0 && (pLoop->u.btree.nEq>0))
148 || (wctrlFlags&(WHERE_ORDERBY_MIN|WHERE_ORDERBY_MAX));
149
150 sqlite3StrAccumInit(&str, db, zBuf, sizeof(zBuf), SQLITE_MAX_LENGTH);
drha9799932021-03-19 13:00:28 +0000151 str.printfFlags = SQLITE_PRINTF_INTERNAL;
drh2f2091b2021-03-20 15:46:01 +0000152 sqlite3_str_appendf(&str, "%s %S", isSearch ? "SEARCH" : "SCAN", pItem);
drh6f82e852015-06-06 20:12:09 +0000153 if( (flags & (WHERE_IPK|WHERE_VIRTUALTABLE))==0 ){
154 const char *zFmt = 0;
155 Index *pIdx;
156
157 assert( pLoop->u.btree.pIndex!=0 );
158 pIdx = pLoop->u.btree.pIndex;
159 assert( !(flags&WHERE_AUTO_INDEX) || (flags&WHERE_IDX_ONLY) );
160 if( !HasRowid(pItem->pTab) && IsPrimaryKeyIndex(pIdx) ){
161 if( isSearch ){
162 zFmt = "PRIMARY KEY";
163 }
164 }else if( flags & WHERE_PARTIALIDX ){
165 zFmt = "AUTOMATIC PARTIAL COVERING INDEX";
166 }else if( flags & WHERE_AUTO_INDEX ){
167 zFmt = "AUTOMATIC COVERING INDEX";
168 }else if( flags & WHERE_IDX_ONLY ){
169 zFmt = "COVERING INDEX %s";
170 }else{
171 zFmt = "INDEX %s";
172 }
173 if( zFmt ){
drh0cdbe1a2018-05-09 13:46:26 +0000174 sqlite3_str_append(&str, " USING ", 7);
175 sqlite3_str_appendf(&str, zFmt, pIdx->zName);
drh8faee872015-09-19 18:08:13 +0000176 explainIndexRange(&str, pLoop);
drh6f82e852015-06-06 20:12:09 +0000177 }
178 }else if( (flags & WHERE_IPK)!=0 && (flags & WHERE_CONSTRAINT)!=0 ){
drhd37bea52015-09-02 15:37:50 +0000179 const char *zRangeOp;
drh6f82e852015-06-06 20:12:09 +0000180 if( flags&(WHERE_COLUMN_EQ|WHERE_COLUMN_IN) ){
drhd37bea52015-09-02 15:37:50 +0000181 zRangeOp = "=";
drh6f82e852015-06-06 20:12:09 +0000182 }else if( (flags&WHERE_BOTH_LIMIT)==WHERE_BOTH_LIMIT ){
drhd37bea52015-09-02 15:37:50 +0000183 zRangeOp = ">? AND rowid<";
drh6f82e852015-06-06 20:12:09 +0000184 }else if( flags&WHERE_BTM_LIMIT ){
drhd37bea52015-09-02 15:37:50 +0000185 zRangeOp = ">";
drh6f82e852015-06-06 20:12:09 +0000186 }else{
187 assert( flags&WHERE_TOP_LIMIT);
drhd37bea52015-09-02 15:37:50 +0000188 zRangeOp = "<";
drh6f82e852015-06-06 20:12:09 +0000189 }
drh0cdbe1a2018-05-09 13:46:26 +0000190 sqlite3_str_appendf(&str,
191 " USING INTEGER PRIMARY KEY (rowid%s?)",zRangeOp);
drh6f82e852015-06-06 20:12:09 +0000192 }
193#ifndef SQLITE_OMIT_VIRTUALTABLE
194 else if( (flags & WHERE_VIRTUALTABLE)!=0 ){
drh0cdbe1a2018-05-09 13:46:26 +0000195 sqlite3_str_appendf(&str, " VIRTUAL TABLE INDEX %d:%s",
drh6f82e852015-06-06 20:12:09 +0000196 pLoop->u.vtab.idxNum, pLoop->u.vtab.idxStr);
197 }
198#endif
drh19ce9aa2021-12-04 13:52:08 +0000199 if( flags & WHERE_BLOOMFILTER ){
200 sqlite3_str_appendf(&str, " WITH BLOOM FILTER");
201 }
drh6f82e852015-06-06 20:12:09 +0000202#ifdef SQLITE_EXPLAIN_ESTIMATED_ROWS
203 if( pLoop->nOut>=10 ){
drh0cdbe1a2018-05-09 13:46:26 +0000204 sqlite3_str_appendf(&str, " (~%llu rows)",
205 sqlite3LogEstToInt(pLoop->nOut));
drh6f82e852015-06-06 20:12:09 +0000206 }else{
drh0cdbe1a2018-05-09 13:46:26 +0000207 sqlite3_str_append(&str, " (~1 row)", 9);
drh6f82e852015-06-06 20:12:09 +0000208 }
209#endif
210 zMsg = sqlite3StrAccumFinish(&str);
drhbd462bc2018-12-24 20:21:06 +0000211 sqlite3ExplainBreakpoint("",zMsg);
drhe2ca99c2018-05-02 00:33:43 +0000212 ret = sqlite3VdbeAddOp4(v, OP_Explain, sqlite3VdbeCurrentAddr(v),
213 pParse->addrExplain, 0, zMsg,P4_DYNAMIC);
drh6f82e852015-06-06 20:12:09 +0000214 }
215 return ret;
216}
217#endif /* SQLITE_OMIT_EXPLAIN */
218
219#ifdef SQLITE_ENABLE_STMT_SCANSTATUS
220/*
221** Configure the VM passed as the first argument with an
222** sqlite3_stmt_scanstatus() entry corresponding to the scan used to
223** implement level pLvl. Argument pSrclist is a pointer to the FROM
224** clause that the scan reads data from.
225**
226** If argument addrExplain is not 0, it must be the address of an
227** OP_Explain instruction that describes the same loop.
228*/
229void sqlite3WhereAddScanStatus(
230 Vdbe *v, /* Vdbe to add scanstatus entry to */
231 SrcList *pSrclist, /* FROM clause pLvl reads data from */
232 WhereLevel *pLvl, /* Level to add scanstatus() entry for */
233 int addrExplain /* Address of OP_Explain (or 0) */
234){
235 const char *zObj = 0;
236 WhereLoop *pLoop = pLvl->pWLoop;
237 if( (pLoop->wsFlags & WHERE_VIRTUALTABLE)==0 && pLoop->u.btree.pIndex!=0 ){
238 zObj = pLoop->u.btree.pIndex->zName;
239 }else{
240 zObj = pSrclist->a[pLvl->iFrom].zName;
241 }
242 sqlite3VdbeScanStatus(
243 v, addrExplain, pLvl->addrBody, pLvl->addrVisit, pLoop->nOut, zObj
244 );
245}
246#endif
247
248
249/*
250** Disable a term in the WHERE clause. Except, do not disable the term
251** if it controls a LEFT OUTER JOIN and it did not originate in the ON
252** or USING clause of that join.
253**
254** Consider the term t2.z='ok' in the following queries:
255**
256** (1) SELECT * FROM t1 LEFT JOIN t2 ON t1.a=t2.x WHERE t2.z='ok'
257** (2) SELECT * FROM t1 LEFT JOIN t2 ON t1.a=t2.x AND t2.z='ok'
258** (3) SELECT * FROM t1, t2 WHERE t1.a=t2.x AND t2.z='ok'
259**
260** The t2.z='ok' is disabled in the in (2) because it originates
261** in the ON clause. The term is disabled in (3) because it is not part
262** of a LEFT OUTER JOIN. In (1), the term is not disabled.
263**
264** Disabling a term causes that term to not be tested in the inner loop
265** of the join. Disabling is an optimization. When terms are satisfied
266** by indices, we disable them to prevent redundant tests in the inner
267** loop. We would get the correct results if nothing were ever disabled,
268** but joins might run a little slower. The trick is to disable as much
269** as we can without disabling too much. If we disabled in (1), we'd get
270** the wrong answer. See ticket #813.
271**
272** If all the children of a term are disabled, then that term is also
273** automatically disabled. In this way, terms get disabled if derived
274** virtual terms are tested first. For example:
275**
276** x GLOB 'abc*' AND x>='abc' AND x<'acd'
277** \___________/ \______/ \_____/
278** parent child1 child2
279**
280** Only the parent term was in the original WHERE clause. The child1
281** and child2 terms were added by the LIKE optimization. If both of
282** the virtual child terms are valid, then testing of the parent can be
283** skipped.
284**
285** Usually the parent term is marked as TERM_CODED. But if the parent
286** term was originally TERM_LIKE, then the parent gets TERM_LIKECOND instead.
287** The TERM_LIKECOND marking indicates that the term should be coded inside
288** a conditional such that is only evaluated on the second pass of a
289** LIKE-optimization loop, when scanning BLOBs instead of strings.
290*/
291static void disableTerm(WhereLevel *pLevel, WhereTerm *pTerm){
292 int nLoop = 0;
drh9d9c41e2017-10-31 03:40:15 +0000293 assert( pTerm!=0 );
294 while( (pTerm->wtFlags & TERM_CODED)==0
drh6f82e852015-06-06 20:12:09 +0000295 && (pLevel->iLeftJoin==0 || ExprHasProperty(pTerm->pExpr, EP_FromJoin))
296 && (pLevel->notReady & pTerm->prereqAll)==0
297 ){
298 if( nLoop && (pTerm->wtFlags & TERM_LIKE)!=0 ){
299 pTerm->wtFlags |= TERM_LIKECOND;
300 }else{
301 pTerm->wtFlags |= TERM_CODED;
302 }
drh23634892021-05-04 18:24:56 +0000303#ifdef WHERETRACE_ENABLED
304 if( sqlite3WhereTrace & 0x20000 ){
305 sqlite3DebugPrintf("DISABLE-");
306 sqlite3WhereTermPrint(pTerm, (int)(pTerm - (pTerm->pWC->a)));
307 }
308#endif
drh6f82e852015-06-06 20:12:09 +0000309 if( pTerm->iParent<0 ) break;
310 pTerm = &pTerm->pWC->a[pTerm->iParent];
drh9d9c41e2017-10-31 03:40:15 +0000311 assert( pTerm!=0 );
drh6f82e852015-06-06 20:12:09 +0000312 pTerm->nChild--;
313 if( pTerm->nChild!=0 ) break;
314 nLoop++;
315 }
316}
317
318/*
319** Code an OP_Affinity opcode to apply the column affinity string zAff
320** to the n registers starting at base.
321**
drh96fb16e2019-08-06 14:37:24 +0000322** As an optimization, SQLITE_AFF_BLOB and SQLITE_AFF_NONE entries (which
323** are no-ops) at the beginning and end of zAff are ignored. If all entries
324** in zAff are SQLITE_AFF_BLOB or SQLITE_AFF_NONE, then no code gets generated.
drh6f82e852015-06-06 20:12:09 +0000325**
326** This routine makes its own copy of zAff so that the caller is free
327** to modify zAff after this routine returns.
328*/
329static void codeApplyAffinity(Parse *pParse, int base, int n, char *zAff){
330 Vdbe *v = pParse->pVdbe;
331 if( zAff==0 ){
332 assert( pParse->db->mallocFailed );
333 return;
334 }
335 assert( v!=0 );
336
drh96fb16e2019-08-06 14:37:24 +0000337 /* Adjust base and n to skip over SQLITE_AFF_BLOB and SQLITE_AFF_NONE
338 ** entries at the beginning and end of the affinity string.
drh6f82e852015-06-06 20:12:09 +0000339 */
drh96fb16e2019-08-06 14:37:24 +0000340 assert( SQLITE_AFF_NONE<SQLITE_AFF_BLOB );
341 while( n>0 && zAff[0]<=SQLITE_AFF_BLOB ){
drh6f82e852015-06-06 20:12:09 +0000342 n--;
343 base++;
344 zAff++;
345 }
drh96fb16e2019-08-06 14:37:24 +0000346 while( n>1 && zAff[n-1]<=SQLITE_AFF_BLOB ){
drh6f82e852015-06-06 20:12:09 +0000347 n--;
348 }
349
350 /* Code the OP_Affinity opcode if there is anything left to do. */
351 if( n>0 ){
drh9b34abe2016-01-16 15:12:35 +0000352 sqlite3VdbeAddOp4(v, OP_Affinity, base, n, 0, zAff, n);
drh6f82e852015-06-06 20:12:09 +0000353 }
354}
355
danb7ca2172016-08-26 17:54:46 +0000356/*
357** Expression pRight, which is the RHS of a comparison operation, is
358** either a vector of n elements or, if n==1, a scalar expression.
359** Before the comparison operation, affinity zAff is to be applied
360** to the pRight values. This function modifies characters within the
361** affinity string to SQLITE_AFF_BLOB if either:
362**
363** * the comparison will be performed with no affinity, or
364** * the affinity change in zAff is guaranteed not to change the value.
365*/
366static void updateRangeAffinityStr(
danb7ca2172016-08-26 17:54:46 +0000367 Expr *pRight, /* RHS of comparison */
368 int n, /* Number of vector elements in comparison */
369 char *zAff /* Affinity string to modify */
370){
371 int i;
372 for(i=0; i<n; i++){
373 Expr *p = sqlite3VectorFieldSubexpr(pRight, i);
374 if( sqlite3CompareAffinity(p, zAff[i])==SQLITE_AFF_BLOB
375 || sqlite3ExprNeedsNoAffinityChange(p, zAff[i])
376 ){
377 zAff[i] = SQLITE_AFF_BLOB;
378 }
379 }
380}
drh6f82e852015-06-06 20:12:09 +0000381
drh24102432017-11-17 21:01:04 +0000382
383/*
384** pX is an expression of the form: (vector) IN (SELECT ...)
385** In other words, it is a vector IN operator with a SELECT clause on the
386** LHS. But not all terms in the vector are indexable and the terms might
387** not be in the correct order for indexing.
drh9b1ecb62017-11-17 17:32:40 +0000388**
drh24102432017-11-17 21:01:04 +0000389** This routine makes a copy of the input pX expression and then adjusts
390** the vector on the LHS with corresponding changes to the SELECT so that
391** the vector contains only index terms and those terms are in the correct
392** order. The modified IN expression is returned. The caller is responsible
393** for deleting the returned expression.
394**
395** Example:
396**
397** CREATE TABLE t1(a,b,c,d,e,f);
398** CREATE INDEX t1x1 ON t1(e,c);
399** SELECT * FROM t1 WHERE (a,b,c,d,e) IN (SELECT v,w,x,y,z FROM t2)
400** \_______________________________________/
401** The pX expression
402**
403** Since only columns e and c can be used with the index, in that order,
404** the modified IN expression that is returned will be:
405**
406** (e,c) IN (SELECT z,x FROM t2)
407**
408** The reduced pX is different from the original (obviously) and thus is
409** only used for indexing, to improve performance. The original unaltered
410** IN expression must also be run on each output row for correctness.
drh9b1ecb62017-11-17 17:32:40 +0000411*/
drh24102432017-11-17 21:01:04 +0000412static Expr *removeUnindexableInClauseTerms(
413 Parse *pParse, /* The parsing context */
414 int iEq, /* Look at loop terms starting here */
415 WhereLoop *pLoop, /* The current loop */
416 Expr *pX /* The IN expression to be reduced */
417){
418 sqlite3 *db = pParse->db;
dan69843342019-12-22 17:32:25 +0000419 Expr *pNew;
dan69843342019-12-22 17:32:25 +0000420 pNew = sqlite3ExprDup(db, pX, 0);
drh24102432017-11-17 21:01:04 +0000421 if( db->mallocFailed==0 ){
drha4eeccd2021-10-07 17:43:30 +0000422 ExprList *pOrigRhs; /* Original unmodified RHS */
423 ExprList *pOrigLhs; /* Original unmodified LHS */
drh24102432017-11-17 21:01:04 +0000424 ExprList *pRhs = 0; /* New RHS after modifications */
425 ExprList *pLhs = 0; /* New LHS after mods */
426 int i; /* Loop counter */
427 Select *pSelect; /* Pointer to the SELECT on the RHS */
428
drha4eeccd2021-10-07 17:43:30 +0000429 assert( ExprUseXSelect(pNew) );
430 pOrigRhs = pNew->x.pSelect->pEList;
431 assert( pNew->pLeft!=0 );
432 assert( ExprUseXList(pNew->pLeft) );
433 pOrigLhs = pNew->pLeft->x.pList;
drh24102432017-11-17 21:01:04 +0000434 for(i=iEq; i<pLoop->nLTerm; i++){
435 if( pLoop->aLTerm[i]->pExpr==pX ){
drh220f0d62021-10-15 17:06:16 +0000436 int iField;
437 assert( (pLoop->aLTerm[i]->eOperator & (WO_OR|WO_AND))==0 );
438 iField = pLoop->aLTerm[i]->u.x.iField - 1;
drhc6e519f2018-11-03 13:11:24 +0000439 if( pOrigRhs->a[iField].pExpr==0 ) continue; /* Duplicate PK column */
drh24102432017-11-17 21:01:04 +0000440 pRhs = sqlite3ExprListAppend(pParse, pRhs, pOrigRhs->a[iField].pExpr);
441 pOrigRhs->a[iField].pExpr = 0;
442 assert( pOrigLhs->a[iField].pExpr!=0 );
443 pLhs = sqlite3ExprListAppend(pParse, pLhs, pOrigLhs->a[iField].pExpr);
444 pOrigLhs->a[iField].pExpr = 0;
445 }
drh9b1ecb62017-11-17 17:32:40 +0000446 }
drh24102432017-11-17 21:01:04 +0000447 sqlite3ExprListDelete(db, pOrigRhs);
448 sqlite3ExprListDelete(db, pOrigLhs);
449 pNew->pLeft->x.pList = pLhs;
450 pNew->x.pSelect->pEList = pRhs;
451 if( pLhs && pLhs->nExpr==1 ){
452 /* Take care here not to generate a TK_VECTOR containing only a
453 ** single value. Since the parser never creates such a vector, some
454 ** of the subroutines do not handle this case. */
455 Expr *p = pLhs->a[0].pExpr;
456 pLhs->a[0].pExpr = 0;
457 sqlite3ExprDelete(db, pNew->pLeft);
458 pNew->pLeft = p;
459 }
460 pSelect = pNew->x.pSelect;
461 if( pSelect->pOrderBy ){
462 /* If the SELECT statement has an ORDER BY clause, zero the
463 ** iOrderByCol variables. These are set to non-zero when an
464 ** ORDER BY term exactly matches one of the terms of the
465 ** result-set. Since the result-set of the SELECT statement may
466 ** have been modified or reordered, these variables are no longer
467 ** set correctly. Since setting them is just an optimization,
468 ** it's easiest just to zero them here. */
469 ExprList *pOrderBy = pSelect->pOrderBy;
470 for(i=0; i<pOrderBy->nExpr; i++){
471 pOrderBy->a[i].u.x.iOrderByCol = 0;
472 }
473 }
474
475#if 0
476 printf("For indexing, change the IN expr:\n");
477 sqlite3TreeViewExpr(0, pX, 0);
478 printf("Into:\n");
479 sqlite3TreeViewExpr(0, pNew, 0);
480#endif
drh9b1ecb62017-11-17 17:32:40 +0000481 }
drh24102432017-11-17 21:01:04 +0000482 return pNew;
drh9b1ecb62017-11-17 17:32:40 +0000483}
drh9b1ecb62017-11-17 17:32:40 +0000484
485
drh6f82e852015-06-06 20:12:09 +0000486/*
487** Generate code for a single equality term of the WHERE clause. An equality
488** term can be either X=expr or X IN (...). pTerm is the term to be
489** coded.
490**
drh099a0f52016-09-06 15:25:53 +0000491** The current value for the constraint is left in a register, the index
492** of which is returned. An attempt is made store the result in iTarget but
493** this is only guaranteed for TK_ISNULL and TK_IN constraints. If the
494** constraint is a TK_EQ or TK_IS, then the current value might be left in
495** some other register and it is the caller's responsibility to compensate.
drh6f82e852015-06-06 20:12:09 +0000496**
drh4602b8e2016-08-19 18:28:00 +0000497** For a constraint of the form X=expr, the expression is evaluated in
498** straight-line code. For constraints of the form X IN (...)
drh6f82e852015-06-06 20:12:09 +0000499** this routine sets up a loop that will iterate over all values of X.
500*/
501static int codeEqualityTerm(
502 Parse *pParse, /* The parsing context */
503 WhereTerm *pTerm, /* The term of the WHERE clause to be coded */
504 WhereLevel *pLevel, /* The level of the FROM clause we are working on */
505 int iEq, /* Index of the equality term within this level */
506 int bRev, /* True for reverse-order IN operations */
507 int iTarget /* Attempt to leave results in this register */
508){
509 Expr *pX = pTerm->pExpr;
510 Vdbe *v = pParse->pVdbe;
511 int iReg; /* Register holding results */
512
dan8da209b2016-07-26 18:06:08 +0000513 assert( pLevel->pWLoop->aLTerm[iEq]==pTerm );
drh6f82e852015-06-06 20:12:09 +0000514 assert( iTarget>0 );
515 if( pX->op==TK_EQ || pX->op==TK_IS ){
drhfc7f27b2016-08-20 00:07:01 +0000516 iReg = sqlite3ExprCodeTarget(pParse, pX->pRight, iTarget);
drh6f82e852015-06-06 20:12:09 +0000517 }else if( pX->op==TK_ISNULL ){
518 iReg = iTarget;
519 sqlite3VdbeAddOp2(v, OP_Null, 0, iReg);
520#ifndef SQLITE_OMIT_SUBQUERY
521 }else{
drhac6b47d2016-08-24 00:51:48 +0000522 int eType = IN_INDEX_NOOP;
drh6f82e852015-06-06 20:12:09 +0000523 int iTab;
524 struct InLoop *pIn;
525 WhereLoop *pLoop = pLevel->pWLoop;
dan8da209b2016-07-26 18:06:08 +0000526 int i;
527 int nEq = 0;
528 int *aiMap = 0;
drh6f82e852015-06-06 20:12:09 +0000529
530 if( (pLoop->wsFlags & WHERE_VIRTUALTABLE)==0
531 && pLoop->u.btree.pIndex!=0
532 && pLoop->u.btree.pIndex->aSortOrder[iEq]
533 ){
534 testcase( iEq==0 );
535 testcase( bRev );
536 bRev = !bRev;
537 }
538 assert( pX->op==TK_IN );
539 iReg = iTarget;
dan8da209b2016-07-26 18:06:08 +0000540
541 for(i=0; i<iEq; i++){
542 if( pLoop->aLTerm[i] && pLoop->aLTerm[i]->pExpr==pX ){
543 disableTerm(pLevel, pTerm);
544 return iTarget;
545 }
546 }
547 for(i=iEq;i<pLoop->nLTerm; i++){
drh24102432017-11-17 21:01:04 +0000548 assert( pLoop->aLTerm[i]!=0 );
549 if( pLoop->aLTerm[i]->pExpr==pX ) nEq++;
dan8da209b2016-07-26 18:06:08 +0000550 }
551
drh2c041312018-12-24 02:34:49 +0000552 iTab = 0;
drha4eeccd2021-10-07 17:43:30 +0000553 if( !ExprUseXSelect(pX) || pX->x.pSelect->pEList->nExpr==1 ){
drh2c041312018-12-24 02:34:49 +0000554 eType = sqlite3FindInIndex(pParse, pX, IN_INDEX_LOOP, 0, 0, &iTab);
dan8da209b2016-07-26 18:06:08 +0000555 }else{
556 sqlite3 *db = pParse->db;
drh24102432017-11-17 21:01:04 +0000557 pX = removeUnindexableInClauseTerms(pParse, iEq, pLoop, pX);
drh9b1ecb62017-11-17 17:32:40 +0000558
drhac6b47d2016-08-24 00:51:48 +0000559 if( !db->mallocFailed ){
drh24102432017-11-17 21:01:04 +0000560 aiMap = (int*)sqlite3DbMallocZero(pParse->db, sizeof(int)*nEq);
drh2c041312018-12-24 02:34:49 +0000561 eType = sqlite3FindInIndex(pParse, pX, IN_INDEX_LOOP, 0, aiMap, &iTab);
562 pTerm->pExpr->iTable = iTab;
drhac6b47d2016-08-24 00:51:48 +0000563 }
drh24102432017-11-17 21:01:04 +0000564 sqlite3ExprDelete(db, pX);
565 pX = pTerm->pExpr;
dan8da209b2016-07-26 18:06:08 +0000566 }
567
drh6f82e852015-06-06 20:12:09 +0000568 if( eType==IN_INDEX_INDEX_DESC ){
569 testcase( bRev );
570 bRev = !bRev;
571 }
drh6f82e852015-06-06 20:12:09 +0000572 sqlite3VdbeAddOp2(v, bRev ? OP_Last : OP_Rewind, iTab, 0);
573 VdbeCoverageIf(v, bRev);
574 VdbeCoverageIf(v, !bRev);
dan8da209b2016-07-26 18:06:08 +0000575
drh04756292021-10-14 19:28:28 +0000576 assert( (pLoop->wsFlags & WHERE_MULTI_OR)==0 );
drh6f82e852015-06-06 20:12:09 +0000577 pLoop->wsFlags |= WHERE_IN_ABLE;
578 if( pLevel->u.in.nIn==0 ){
drhec4ccdb2018-12-29 02:26:59 +0000579 pLevel->addrNxt = sqlite3VdbeMakeLabel(pParse);
drh6f82e852015-06-06 20:12:09 +0000580 }
drh46f0f4e2020-09-29 15:32:54 +0000581 if( iEq>0 && (pLoop->wsFlags & WHERE_IN_SEEKSCAN)==0 ){
drhfa17e132020-09-01 01:52:03 +0000582 pLoop->wsFlags |= WHERE_IN_EARLYOUT;
583 }
dan8da209b2016-07-26 18:06:08 +0000584
585 i = pLevel->u.in.nIn;
586 pLevel->u.in.nIn += nEq;
drh6f82e852015-06-06 20:12:09 +0000587 pLevel->u.in.aInLoop =
588 sqlite3DbReallocOrFree(pParse->db, pLevel->u.in.aInLoop,
589 sizeof(pLevel->u.in.aInLoop[0])*pLevel->u.in.nIn);
590 pIn = pLevel->u.in.aInLoop;
591 if( pIn ){
dan8da209b2016-07-26 18:06:08 +0000592 int iMap = 0; /* Index in aiMap[] */
593 pIn += i;
dan7887d7f2016-08-24 12:22:17 +0000594 for(i=iEq;i<pLoop->nLTerm; i++){
dan8da209b2016-07-26 18:06:08 +0000595 if( pLoop->aLTerm[i]->pExpr==pX ){
danedc35372016-09-16 16:30:57 +0000596 int iOut = iReg + i - iEq;
dan8da209b2016-07-26 18:06:08 +0000597 if( eType==IN_INDEX_ROWID ){
danedc35372016-09-16 16:30:57 +0000598 pIn->addrInTop = sqlite3VdbeAddOp2(v, OP_Rowid, iTab, iOut);
dan8da209b2016-07-26 18:06:08 +0000599 }else{
600 int iCol = aiMap ? aiMap[iMap++] : 0;
dan8da209b2016-07-26 18:06:08 +0000601 pIn->addrInTop = sqlite3VdbeAddOp3(v,OP_Column,iTab, iCol, iOut);
602 }
drh03181c82016-08-18 19:04:57 +0000603 sqlite3VdbeAddOp1(v, OP_IsNull, iOut); VdbeCoverage(v);
dan8da209b2016-07-26 18:06:08 +0000604 if( i==iEq ){
605 pIn->iCur = iTab;
drhf1949b62018-06-07 17:32:59 +0000606 pIn->eEndLoopOp = bRev ? OP_Prev : OP_Next;
dan74ebaad2020-01-04 16:55:57 +0000607 if( iEq>0 ){
drh86d0ea72018-06-05 15:16:25 +0000608 pIn->iBase = iReg - i;
609 pIn->nPrefix = i;
610 }else{
611 pIn->nPrefix = 0;
612 }
dan8da209b2016-07-26 18:06:08 +0000613 }else{
614 pIn->eEndLoopOp = OP_Noop;
615 }
dan7887d7f2016-08-24 12:22:17 +0000616 pIn++;
dan8da209b2016-07-26 18:06:08 +0000617 }
drh6f82e852015-06-06 20:12:09 +0000618 }
drh67306cb2020-10-01 14:36:15 +0000619 testcase( iEq>0
620 && (pLoop->wsFlags & WHERE_IN_SEEKSCAN)==0
621 && (pLoop->wsFlags & WHERE_VIRTUALTABLE)!=0 );
622 if( iEq>0
623 && (pLoop->wsFlags & (WHERE_IN_SEEKSCAN|WHERE_VIRTUALTABLE))==0
624 ){
drhfa17e132020-09-01 01:52:03 +0000625 sqlite3VdbeAddOp3(v, OP_SeekHit, pLevel->iIdxCur, 0, iEq);
626 }
drh6f82e852015-06-06 20:12:09 +0000627 }else{
628 pLevel->u.in.nIn = 0;
629 }
dan8da209b2016-07-26 18:06:08 +0000630 sqlite3DbFree(pParse->db, aiMap);
drh6f82e852015-06-06 20:12:09 +0000631#endif
632 }
drh67656ac2021-05-04 23:21:35 +0000633
634 /* As an optimization, try to disable the WHERE clause term that is
635 ** driving the index as it will always be true. The correct answer is
636 ** obtained regardless, but we might get the answer with fewer CPU cycles
637 ** by omitting the term.
638 **
639 ** But do not disable the term unless we are certain that the term is
640 ** not a transitive constraint. For an example of where that does not
641 ** work, see https://sqlite.org/forum/forumpost/eb8613976a (2021-05-04)
642 */
643 if( (pLevel->pWLoop->wsFlags & WHERE_TRANSCONS)==0
644 || (pTerm->eOperator & WO_EQUIV)==0
645 ){
646 disableTerm(pLevel, pTerm);
647 }
648
drh6f82e852015-06-06 20:12:09 +0000649 return iReg;
650}
651
652/*
653** Generate code that will evaluate all == and IN constraints for an
654** index scan.
655**
656** For example, consider table t1(a,b,c,d,e,f) with index i1(a,b,c).
657** Suppose the WHERE clause is this: a==5 AND b IN (1,2,3) AND c>5 AND c<10
658** The index has as many as three equality constraints, but in this
659** example, the third "c" value is an inequality. So only two
660** constraints are coded. This routine will generate code to evaluate
661** a==5 and b IN (1,2,3). The current values for a and b will be stored
662** in consecutive registers and the index of the first register is returned.
663**
664** In the example above nEq==2. But this subroutine works for any value
665** of nEq including 0. If nEq==0, this routine is nearly a no-op.
666** The only thing it does is allocate the pLevel->iMem memory cell and
667** compute the affinity string.
668**
669** The nExtraReg parameter is 0 or 1. It is 0 if all WHERE clause constraints
670** are == or IN and are covered by the nEq. nExtraReg is 1 if there is
671** an inequality constraint (such as the "c>=5 AND c<10" in the example) that
672** occurs after the nEq quality constraints.
673**
674** This routine allocates a range of nEq+nExtraReg memory cells and returns
675** the index of the first memory cell in that range. The code that
676** calls this routine will use that memory range to store keys for
677** start and termination conditions of the loop.
678** key value of the loop. If one or more IN operators appear, then
679** this routine allocates an additional nEq memory cells for internal
680** use.
681**
682** Before returning, *pzAff is set to point to a buffer containing a
683** copy of the column affinity string of the index allocated using
684** sqlite3DbMalloc(). Except, entries in the copy of the string associated
685** with equality constraints that use BLOB or NONE affinity are set to
686** SQLITE_AFF_BLOB. This is to deal with SQL such as the following:
687**
688** CREATE TABLE t1(a TEXT PRIMARY KEY, b);
689** SELECT ... FROM t1 AS t2, t1 WHERE t1.a = t2.b;
690**
691** In the example above, the index on t1(a) has TEXT affinity. But since
692** the right hand side of the equality constraint (t2.b) has BLOB/NONE affinity,
693** no conversion should be attempted before using a t2.b value as part of
694** a key to search the index. Hence the first byte in the returned affinity
695** string in this example would be set to SQLITE_AFF_BLOB.
696*/
697static int codeAllEqualityTerms(
698 Parse *pParse, /* Parsing context */
699 WhereLevel *pLevel, /* Which nested loop of the FROM we are coding */
700 int bRev, /* Reverse the order of IN operators */
701 int nExtraReg, /* Number of extra registers to allocate */
702 char **pzAff /* OUT: Set to point to affinity string */
703){
704 u16 nEq; /* The number of == or IN constraints to code */
705 u16 nSkip; /* Number of left-most columns to skip */
706 Vdbe *v = pParse->pVdbe; /* The vm under construction */
707 Index *pIdx; /* The index being used for this loop */
708 WhereTerm *pTerm; /* A single constraint term */
709 WhereLoop *pLoop; /* The WhereLoop object */
710 int j; /* Loop counter */
711 int regBase; /* Base register */
712 int nReg; /* Number of registers to allocate */
713 char *zAff; /* Affinity string to return */
714
715 /* This module is only called on query plans that use an index. */
716 pLoop = pLevel->pWLoop;
717 assert( (pLoop->wsFlags & WHERE_VIRTUALTABLE)==0 );
718 nEq = pLoop->u.btree.nEq;
719 nSkip = pLoop->nSkip;
720 pIdx = pLoop->u.btree.pIndex;
721 assert( pIdx!=0 );
722
723 /* Figure out how many memory cells we will need then allocate them.
724 */
725 regBase = pParse->nMem + 1;
726 nReg = pLoop->u.btree.nEq + nExtraReg;
727 pParse->nMem += nReg;
728
drhe9107692015-08-25 19:20:04 +0000729 zAff = sqlite3DbStrDup(pParse->db,sqlite3IndexAffinityStr(pParse->db,pIdx));
drh4df86af2016-02-04 11:48:00 +0000730 assert( zAff!=0 || pParse->db->mallocFailed );
drh6f82e852015-06-06 20:12:09 +0000731
732 if( nSkip ){
733 int iIdxCur = pLevel->iIdxCur;
drh31536302021-04-21 23:13:26 +0000734 sqlite3VdbeAddOp3(v, OP_Null, 0, regBase, regBase+nSkip-1);
drh6f82e852015-06-06 20:12:09 +0000735 sqlite3VdbeAddOp1(v, (bRev?OP_Last:OP_Rewind), iIdxCur);
736 VdbeCoverageIf(v, bRev==0);
737 VdbeCoverageIf(v, bRev!=0);
738 VdbeComment((v, "begin skip-scan on %s", pIdx->zName));
739 j = sqlite3VdbeAddOp0(v, OP_Goto);
740 pLevel->addrSkip = sqlite3VdbeAddOp4Int(v, (bRev?OP_SeekLT:OP_SeekGT),
741 iIdxCur, 0, regBase, nSkip);
742 VdbeCoverageIf(v, bRev==0);
743 VdbeCoverageIf(v, bRev!=0);
744 sqlite3VdbeJumpHere(v, j);
745 for(j=0; j<nSkip; j++){
746 sqlite3VdbeAddOp3(v, OP_Column, iIdxCur, j, regBase+j);
drh4b92f982015-09-29 17:20:14 +0000747 testcase( pIdx->aiColumn[j]==XN_EXPR );
drhe63e8a62015-09-18 18:09:28 +0000748 VdbeComment((v, "%s", explainIndexColumnName(pIdx, j)));
drh6f82e852015-06-06 20:12:09 +0000749 }
750 }
751
752 /* Evaluate the equality constraints
753 */
754 assert( zAff==0 || (int)strlen(zAff)>=nEq );
755 for(j=nSkip; j<nEq; j++){
756 int r1;
757 pTerm = pLoop->aLTerm[j];
758 assert( pTerm!=0 );
759 /* The following testcase is true for indices with redundant columns.
760 ** Ex: CREATE INDEX i1 ON t1(a,b,a); SELECT * FROM t1 WHERE a=0 AND b=0; */
761 testcase( (pTerm->wtFlags & TERM_CODED)!=0 );
762 testcase( pTerm->wtFlags & TERM_VIRTUAL );
763 r1 = codeEqualityTerm(pParse, pTerm, pLevel, j, bRev, regBase+j);
764 if( r1!=regBase+j ){
765 if( nReg==1 ){
766 sqlite3ReleaseTempReg(pParse, regBase);
767 regBase = r1;
768 }else{
drhe9de6522021-05-28 12:48:31 +0000769 sqlite3VdbeAddOp2(v, OP_Copy, r1, regBase+j);
drh6f82e852015-06-06 20:12:09 +0000770 }
771 }
drhc097e122016-09-07 13:30:40 +0000772 if( pTerm->eOperator & WO_IN ){
773 if( pTerm->pExpr->flags & EP_xIsSelect ){
774 /* No affinity ever needs to be (or should be) applied to a value
775 ** from the RHS of an "? IN (SELECT ...)" expression. The
776 ** sqlite3FindInIndex() routine has already ensured that the
777 ** affinity of the comparison has been applied to the value. */
778 if( zAff ) zAff[j] = SQLITE_AFF_BLOB;
779 }
780 }else if( (pTerm->eOperator & WO_ISNULL)==0 ){
781 Expr *pRight = pTerm->pExpr->pRight;
782 if( (pTerm->wtFlags & TERM_IS)==0 && sqlite3ExprCanBeNull(pRight) ){
783 sqlite3VdbeAddOp2(v, OP_IsNull, regBase+j, pLevel->addrBrk);
784 VdbeCoverage(v);
785 }
drh5e1a7de2021-05-22 11:23:20 +0000786 if( pParse->db->mallocFailed==0 && pParse->nErr==0 ){
drhc097e122016-09-07 13:30:40 +0000787 if( sqlite3CompareAffinity(pRight, zAff[j])==SQLITE_AFF_BLOB ){
788 zAff[j] = SQLITE_AFF_BLOB;
dan27189602016-09-03 15:31:20 +0000789 }
drhc097e122016-09-07 13:30:40 +0000790 if( sqlite3ExprNeedsNoAffinityChange(pRight, zAff[j]) ){
791 zAff[j] = SQLITE_AFF_BLOB;
drh6f82e852015-06-06 20:12:09 +0000792 }
793 }
794 }
795 }
796 *pzAff = zAff;
797 return regBase;
798}
799
drh41d2e662015-12-01 21:23:07 +0000800#ifndef SQLITE_LIKE_DOESNT_MATCH_BLOBS
drh6f82e852015-06-06 20:12:09 +0000801/*
drh44aebff2016-05-02 10:25:42 +0000802** If the most recently coded instruction is a constant range constraint
803** (a string literal) that originated from the LIKE optimization, then
804** set P3 and P5 on the OP_String opcode so that the string will be cast
805** to a BLOB at appropriate times.
drh6f82e852015-06-06 20:12:09 +0000806**
807** The LIKE optimization trys to evaluate "x LIKE 'abc%'" as a range
808** expression: "x>='ABC' AND x<'abd'". But this requires that the range
809** scan loop run twice, once for strings and a second time for BLOBs.
810** The OP_String opcodes on the second pass convert the upper and lower
mistachkine234cfd2016-07-10 19:35:10 +0000811** bound string constants to blobs. This routine makes the necessary changes
drh6f82e852015-06-06 20:12:09 +0000812** to the OP_String opcodes for that to happen.
drh41d2e662015-12-01 21:23:07 +0000813**
814** Except, of course, if SQLITE_LIKE_DOESNT_MATCH_BLOBS is defined, then
815** only the one pass through the string space is required, so this routine
816** becomes a no-op.
drh6f82e852015-06-06 20:12:09 +0000817*/
818static void whereLikeOptimizationStringFixup(
819 Vdbe *v, /* prepared statement under construction */
820 WhereLevel *pLevel, /* The loop that contains the LIKE operator */
821 WhereTerm *pTerm /* The upper or lower bound just coded */
822){
823 if( pTerm->wtFlags & TERM_LIKEOPT ){
824 VdbeOp *pOp;
825 assert( pLevel->iLikeRepCntr>0 );
826 pOp = sqlite3VdbeGetOp(v, -1);
827 assert( pOp!=0 );
828 assert( pOp->opcode==OP_String8
829 || pTerm->pWC->pWInfo->pParse->db->mallocFailed );
drh44aebff2016-05-02 10:25:42 +0000830 pOp->p3 = (int)(pLevel->iLikeRepCntr>>1); /* Register holding counter */
831 pOp->p5 = (u8)(pLevel->iLikeRepCntr&1); /* ASC or DESC */
drh6f82e852015-06-06 20:12:09 +0000832 }
833}
drh41d2e662015-12-01 21:23:07 +0000834#else
835# define whereLikeOptimizationStringFixup(A,B,C)
836#endif
drh6f82e852015-06-06 20:12:09 +0000837
drhbec24762015-08-13 20:07:13 +0000838#ifdef SQLITE_ENABLE_CURSOR_HINTS
drh2f2b0272015-08-14 18:50:04 +0000839/*
840** Information is passed from codeCursorHint() down to individual nodes of
841** the expression tree (by sqlite3WalkExpr()) using an instance of this
842** structure.
843*/
844struct CCurHint {
845 int iTabCur; /* Cursor for the main table */
846 int iIdxCur; /* Cursor for the index, if pIdx!=0. Unused otherwise */
847 Index *pIdx; /* The index used to access the table */
848};
849
850/*
851** This function is called for every node of an expression that is a candidate
852** for a cursor hint on an index cursor. For TK_COLUMN nodes that reference
853** the table CCurHint.iTabCur, verify that the same column can be
854** accessed through the index. If it cannot, then set pWalker->eCode to 1.
855*/
856static int codeCursorHintCheckExpr(Walker *pWalker, Expr *pExpr){
857 struct CCurHint *pHint = pWalker->u.pCCurHint;
858 assert( pHint->pIdx!=0 );
859 if( pExpr->op==TK_COLUMN
860 && pExpr->iTable==pHint->iTabCur
drhb9bcf7c2019-10-19 13:29:10 +0000861 && sqlite3TableColumnToIndex(pHint->pIdx, pExpr->iColumn)<0
drh2f2b0272015-08-14 18:50:04 +0000862 ){
863 pWalker->eCode = 1;
864 }
865 return WRC_Continue;
866}
867
dane6912fd2016-06-17 19:27:13 +0000868/*
869** Test whether or not expression pExpr, which was part of a WHERE clause,
870** should be included in the cursor-hint for a table that is on the rhs
871** of a LEFT JOIN. Set Walker.eCode to non-zero before returning if the
872** expression is not suitable.
873**
874** An expression is unsuitable if it might evaluate to non NULL even if
875** a TK_COLUMN node that does affect the value of the expression is set
876** to NULL. For example:
877**
878** col IS NULL
879** col IS NOT NULL
880** coalesce(col, 1)
881** CASE WHEN col THEN 0 ELSE 1 END
882*/
883static int codeCursorHintIsOrFunction(Walker *pWalker, Expr *pExpr){
dan2b693d62016-06-20 17:22:06 +0000884 if( pExpr->op==TK_IS
dane6912fd2016-06-17 19:27:13 +0000885 || pExpr->op==TK_ISNULL || pExpr->op==TK_ISNOT
886 || pExpr->op==TK_NOTNULL || pExpr->op==TK_CASE
887 ){
888 pWalker->eCode = 1;
dan2b693d62016-06-20 17:22:06 +0000889 }else if( pExpr->op==TK_FUNCTION ){
890 int d1;
drh1d42ea72017-07-27 20:24:29 +0000891 char d2[4];
dan2b693d62016-06-20 17:22:06 +0000892 if( 0==sqlite3IsLikeFunction(pWalker->pParse->db, pExpr, &d1, d2) ){
893 pWalker->eCode = 1;
894 }
dane6912fd2016-06-17 19:27:13 +0000895 }
dan2b693d62016-06-20 17:22:06 +0000896
dane6912fd2016-06-17 19:27:13 +0000897 return WRC_Continue;
898}
899
drhbec24762015-08-13 20:07:13 +0000900
901/*
902** This function is called on every node of an expression tree used as an
903** argument to the OP_CursorHint instruction. If the node is a TK_COLUMN
drh2f2b0272015-08-14 18:50:04 +0000904** that accesses any table other than the one identified by
905** CCurHint.iTabCur, then do the following:
drhbec24762015-08-13 20:07:13 +0000906**
907** 1) allocate a register and code an OP_Column instruction to read
908** the specified column into the new register, and
909**
910** 2) transform the expression node to a TK_REGISTER node that reads
911** from the newly populated register.
drh2f2b0272015-08-14 18:50:04 +0000912**
913** Also, if the node is a TK_COLUMN that does access the table idenified
914** by pCCurHint.iTabCur, and an index is being used (which we will
915** know because CCurHint.pIdx!=0) then transform the TK_COLUMN into
916** an access of the index rather than the original table.
drhbec24762015-08-13 20:07:13 +0000917*/
918static int codeCursorHintFixExpr(Walker *pWalker, Expr *pExpr){
919 int rc = WRC_Continue;
drh2f2b0272015-08-14 18:50:04 +0000920 struct CCurHint *pHint = pWalker->u.pCCurHint;
danbe312ae2018-09-10 19:27:12 +0000921 if( pExpr->op==TK_COLUMN ){
drh2f2b0272015-08-14 18:50:04 +0000922 if( pExpr->iTable!=pHint->iTabCur ){
drh2f2b0272015-08-14 18:50:04 +0000923 int reg = ++pWalker->pParse->nMem; /* Register for column value */
dane3e79212018-09-11 13:38:35 +0000924 sqlite3ExprCode(pWalker->pParse, pExpr, reg);
drh2f2b0272015-08-14 18:50:04 +0000925 pExpr->op = TK_REGISTER;
926 pExpr->iTable = reg;
927 }else if( pHint->pIdx!=0 ){
928 pExpr->iTable = pHint->iIdxCur;
drhb9bcf7c2019-10-19 13:29:10 +0000929 pExpr->iColumn = sqlite3TableColumnToIndex(pHint->pIdx, pExpr->iColumn);
drh2f2b0272015-08-14 18:50:04 +0000930 assert( pExpr->iColumn>=0 );
931 }
drhbec24762015-08-13 20:07:13 +0000932 }else if( pExpr->op==TK_AGG_FUNCTION ){
933 /* An aggregate function in the WHERE clause of a query means this must
934 ** be a correlated sub-query, and expression pExpr is an aggregate from
935 ** the parent context. Do not walk the function arguments in this case.
936 **
937 ** todo: It should be possible to replace this node with a TK_REGISTER
938 ** expression, as the result of the expression must be stored in a
939 ** register at this point. The same holds for TK_AGG_COLUMN nodes. */
940 rc = WRC_Prune;
941 }
942 return rc;
943}
944
945/*
946** Insert an OP_CursorHint instruction if it is appropriate to do so.
947*/
948static void codeCursorHint(
drh76012942021-02-21 21:04:54 +0000949 SrcItem *pTabItem, /* FROM clause item */
drhb413a542015-08-17 17:19:28 +0000950 WhereInfo *pWInfo, /* The where clause */
951 WhereLevel *pLevel, /* Which loop to provide hints for */
952 WhereTerm *pEndRange /* Hint this end-of-scan boundary term if not NULL */
drhbec24762015-08-13 20:07:13 +0000953){
954 Parse *pParse = pWInfo->pParse;
955 sqlite3 *db = pParse->db;
956 Vdbe *v = pParse->pVdbe;
drhbec24762015-08-13 20:07:13 +0000957 Expr *pExpr = 0;
drh2f2b0272015-08-14 18:50:04 +0000958 WhereLoop *pLoop = pLevel->pWLoop;
drhbec24762015-08-13 20:07:13 +0000959 int iCur;
960 WhereClause *pWC;
961 WhereTerm *pTerm;
drhb413a542015-08-17 17:19:28 +0000962 int i, j;
drh2f2b0272015-08-14 18:50:04 +0000963 struct CCurHint sHint;
964 Walker sWalker;
drhbec24762015-08-13 20:07:13 +0000965
966 if( OptimizationDisabled(db, SQLITE_CursorHints) ) return;
drh2f2b0272015-08-14 18:50:04 +0000967 iCur = pLevel->iTabCur;
968 assert( iCur==pWInfo->pTabList->a[pLevel->iFrom].iCursor );
969 sHint.iTabCur = iCur;
970 sHint.iIdxCur = pLevel->iIdxCur;
971 sHint.pIdx = pLoop->u.btree.pIndex;
972 memset(&sWalker, 0, sizeof(sWalker));
973 sWalker.pParse = pParse;
974 sWalker.u.pCCurHint = &sHint;
drhbec24762015-08-13 20:07:13 +0000975 pWC = &pWInfo->sWC;
976 for(i=0; i<pWC->nTerm; i++){
977 pTerm = &pWC->a[i];
978 if( pTerm->wtFlags & (TERM_VIRTUAL|TERM_CODED) ) continue;
979 if( pTerm->prereqAll & pLevel->notReady ) continue;
danb324cf72016-06-17 14:33:32 +0000980
981 /* Any terms specified as part of the ON(...) clause for any LEFT
982 ** JOIN for which the current table is not the rhs are omitted
983 ** from the cursor-hint.
984 **
dane6912fd2016-06-17 19:27:13 +0000985 ** If this table is the rhs of a LEFT JOIN, "IS" or "IS NULL" terms
986 ** that were specified as part of the WHERE clause must be excluded.
987 ** This is to address the following:
danb324cf72016-06-17 14:33:32 +0000988 **
989 ** SELECT ... t1 LEFT JOIN t2 ON (t1.a=t2.b) WHERE t2.c IS NULL;
990 **
dane6912fd2016-06-17 19:27:13 +0000991 ** Say there is a single row in t2 that matches (t1.a=t2.b), but its
992 ** t2.c values is not NULL. If the (t2.c IS NULL) constraint is
993 ** pushed down to the cursor, this row is filtered out, causing
994 ** SQLite to synthesize a row of NULL values. Which does match the
995 ** WHERE clause, and so the query returns a row. Which is incorrect.
996 **
997 ** For the same reason, WHERE terms such as:
998 **
999 ** WHERE 1 = (t2.c IS NULL)
1000 **
1001 ** are also excluded. See codeCursorHintIsOrFunction() for details.
danb324cf72016-06-17 14:33:32 +00001002 */
1003 if( pTabItem->fg.jointype & JT_LEFT ){
dane6912fd2016-06-17 19:27:13 +00001004 Expr *pExpr = pTerm->pExpr;
1005 if( !ExprHasProperty(pExpr, EP_FromJoin)
1006 || pExpr->iRightJoinTable!=pTabItem->iCursor
danb324cf72016-06-17 14:33:32 +00001007 ){
dane6912fd2016-06-17 19:27:13 +00001008 sWalker.eCode = 0;
1009 sWalker.xExprCallback = codeCursorHintIsOrFunction;
1010 sqlite3WalkExpr(&sWalker, pTerm->pExpr);
1011 if( sWalker.eCode ) continue;
danb324cf72016-06-17 14:33:32 +00001012 }
1013 }else{
1014 if( ExprHasProperty(pTerm->pExpr, EP_FromJoin) ) continue;
1015 }
drhb413a542015-08-17 17:19:28 +00001016
1017 /* All terms in pWLoop->aLTerm[] except pEndRange are used to initialize
drhbcf40a72015-08-18 15:58:05 +00001018 ** the cursor. These terms are not needed as hints for a pure range
1019 ** scan (that has no == terms) so omit them. */
1020 if( pLoop->u.btree.nEq==0 && pTerm!=pEndRange ){
1021 for(j=0; j<pLoop->nLTerm && pLoop->aLTerm[j]!=pTerm; j++){}
1022 if( j<pLoop->nLTerm ) continue;
drhb413a542015-08-17 17:19:28 +00001023 }
1024
1025 /* No subqueries or non-deterministic functions allowed */
drhbec24762015-08-13 20:07:13 +00001026 if( sqlite3ExprContainsSubquery(pTerm->pExpr) ) continue;
drhb413a542015-08-17 17:19:28 +00001027
1028 /* For an index scan, make sure referenced columns are actually in
1029 ** the index. */
drh2f2b0272015-08-14 18:50:04 +00001030 if( sHint.pIdx!=0 ){
1031 sWalker.eCode = 0;
1032 sWalker.xExprCallback = codeCursorHintCheckExpr;
1033 sqlite3WalkExpr(&sWalker, pTerm->pExpr);
1034 if( sWalker.eCode ) continue;
1035 }
drhb413a542015-08-17 17:19:28 +00001036
1037 /* If we survive all prior tests, that means this term is worth hinting */
drhd5c851c2019-04-19 13:38:34 +00001038 pExpr = sqlite3ExprAnd(pParse, pExpr, sqlite3ExprDup(db, pTerm->pExpr, 0));
drhbec24762015-08-13 20:07:13 +00001039 }
1040 if( pExpr!=0 ){
drhbec24762015-08-13 20:07:13 +00001041 sWalker.xExprCallback = codeCursorHintFixExpr;
drhbec24762015-08-13 20:07:13 +00001042 sqlite3WalkExpr(&sWalker, pExpr);
drh2f2b0272015-08-14 18:50:04 +00001043 sqlite3VdbeAddOp4(v, OP_CursorHint,
1044 (sHint.pIdx ? sHint.iIdxCur : sHint.iTabCur), 0, 0,
1045 (const char*)pExpr, P4_EXPR);
drhbec24762015-08-13 20:07:13 +00001046 }
1047}
1048#else
danb324cf72016-06-17 14:33:32 +00001049# define codeCursorHint(A,B,C,D) /* No-op */
drhbec24762015-08-13 20:07:13 +00001050#endif /* SQLITE_ENABLE_CURSOR_HINTS */
drh6f82e852015-06-06 20:12:09 +00001051
1052/*
dande892d92016-01-29 19:29:45 +00001053** Cursor iCur is open on an intkey b-tree (a table). Register iRowid contains
1054** a rowid value just read from cursor iIdxCur, open on index pIdx. This
1055** function generates code to do a deferred seek of cursor iCur to the
1056** rowid stored in register iRowid.
1057**
1058** Normally, this is just:
1059**
drh170ad682017-06-02 15:44:22 +00001060** OP_DeferredSeek $iCur $iRowid
dande892d92016-01-29 19:29:45 +00001061**
1062** However, if the scan currently being coded is a branch of an OR-loop and
drh170ad682017-06-02 15:44:22 +00001063** the statement currently being coded is a SELECT, then P3 of OP_DeferredSeek
dande892d92016-01-29 19:29:45 +00001064** is set to iIdxCur and P4 is set to point to an array of integers
1065** containing one entry for each column of the table cursor iCur is open
1066** on. For each table column, if the column is the i'th column of the
1067** index, then the corresponding array entry is set to (i+1). If the column
1068** does not appear in the index at all, the array entry is set to 0.
1069*/
1070static void codeDeferredSeek(
1071 WhereInfo *pWInfo, /* Where clause context */
1072 Index *pIdx, /* Index scan is using */
1073 int iCur, /* Cursor for IPK b-tree */
dande892d92016-01-29 19:29:45 +00001074 int iIdxCur /* Index cursor */
1075){
1076 Parse *pParse = pWInfo->pParse; /* Parse context */
1077 Vdbe *v = pParse->pVdbe; /* Vdbe to generate code within */
1078
1079 assert( iIdxCur>0 );
1080 assert( pIdx->aiColumn[pIdx->nColumn-1]==-1 );
1081
drhbe3da242019-12-29 00:52:41 +00001082 pWInfo->bDeferredSeek = 1;
drh170ad682017-06-02 15:44:22 +00001083 sqlite3VdbeAddOp3(v, OP_DeferredSeek, iIdxCur, 0, iCur);
drhce943bc2016-05-19 18:56:33 +00001084 if( (pWInfo->wctrlFlags & WHERE_OR_SUBCLAUSE)
dancddb6ba2016-02-01 13:58:56 +00001085 && DbMaskAllZero(sqlite3ParseToplevel(pParse)->writeMask)
dande892d92016-01-29 19:29:45 +00001086 ){
1087 int i;
1088 Table *pTab = pIdx->pTable;
drhabc38152020-07-22 13:38:04 +00001089 u32 *ai = (u32*)sqlite3DbMallocZero(pParse->db, sizeof(u32)*(pTab->nCol+1));
dande892d92016-01-29 19:29:45 +00001090 if( ai ){
drhb1702022016-01-30 00:45:18 +00001091 ai[0] = pTab->nCol;
dande892d92016-01-29 19:29:45 +00001092 for(i=0; i<pIdx->nColumn-1; i++){
drh4fb24c82019-11-06 17:31:18 +00001093 int x1, x2;
dande892d92016-01-29 19:29:45 +00001094 assert( pIdx->aiColumn[i]<pTab->nCol );
drh4fb24c82019-11-06 17:31:18 +00001095 x1 = pIdx->aiColumn[i];
1096 x2 = sqlite3TableColumnToStorage(pTab, x1);
1097 testcase( x1!=x2 );
mistachkinbde3a4f2019-11-06 19:25:45 +00001098 if( x1>=0 ) ai[x2+1] = i+1;
dande892d92016-01-29 19:29:45 +00001099 }
1100 sqlite3VdbeChangeP4(v, -1, (char*)ai, P4_INTARRAY);
1101 }
1102 }
1103}
1104
dan553168c2016-08-01 20:14:31 +00001105/*
1106** If the expression passed as the second argument is a vector, generate
1107** code to write the first nReg elements of the vector into an array
1108** of registers starting with iReg.
1109**
1110** If the expression is not a vector, then nReg must be passed 1. In
1111** this case, generate code to evaluate the expression and leave the
1112** result in register iReg.
1113*/
dan71c57db2016-07-09 20:23:55 +00001114static void codeExprOrVector(Parse *pParse, Expr *p, int iReg, int nReg){
1115 assert( nReg>0 );
dand03024d2017-09-09 19:41:12 +00001116 if( p && sqlite3ExprIsVector(p) ){
danf9b2e052016-08-02 17:45:00 +00001117#ifndef SQLITE_OMIT_SUBQUERY
drha4eeccd2021-10-07 17:43:30 +00001118 if( ExprUseXSelect(p) ){
danf9b2e052016-08-02 17:45:00 +00001119 Vdbe *v = pParse->pVdbe;
drh85bcdce2018-12-23 21:27:29 +00001120 int iSelect;
1121 assert( p->op==TK_SELECT );
1122 iSelect = sqlite3CodeSubselect(pParse, p);
danf9b2e052016-08-02 17:45:00 +00001123 sqlite3VdbeAddOp3(v, OP_Copy, iSelect, iReg, nReg-1);
1124 }else
1125#endif
1126 {
1127 int i;
drha4eeccd2021-10-07 17:43:30 +00001128 const ExprList *pList;
1129 assert( ExprUseXList(p) );
1130 pList = p->x.pList;
dan71c57db2016-07-09 20:23:55 +00001131 assert( nReg<=pList->nExpr );
1132 for(i=0; i<nReg; i++){
1133 sqlite3ExprCode(pParse, pList->a[i].pExpr, iReg+i);
1134 }
dan71c57db2016-07-09 20:23:55 +00001135 }
1136 }else{
dan151446e2021-05-26 14:32:33 +00001137 assert( nReg==1 || pParse->nErr );
dan71c57db2016-07-09 20:23:55 +00001138 sqlite3ExprCode(pParse, p, iReg);
1139 }
1140}
1141
drheac5fc02017-04-11 01:01:27 +00001142/* An instance of the IdxExprTrans object carries information about a
1143** mapping from an expression on table columns into a column in an index
1144** down through the Walker.
1145*/
drhaca19e12017-04-07 19:41:31 +00001146typedef struct IdxExprTrans {
1147 Expr *pIdxExpr; /* The index expression */
1148 int iTabCur; /* The cursor of the corresponding table */
1149 int iIdxCur; /* The cursor for the index */
1150 int iIdxCol; /* The column for the index */
drhc7476732019-10-24 20:29:25 +00001151 int iTabCol; /* The column for the table */
drh36e678b2020-01-02 00:45:38 +00001152 WhereInfo *pWInfo; /* Complete WHERE clause information */
1153 sqlite3 *db; /* Database connection (for malloc()) */
drhaca19e12017-04-07 19:41:31 +00001154} IdxExprTrans;
1155
drh36e678b2020-01-02 00:45:38 +00001156/*
1157** Preserve pExpr on the WhereETrans list of the WhereInfo.
1158*/
1159static void preserveExpr(IdxExprTrans *pTrans, Expr *pExpr){
1160 WhereExprMod *pNew;
1161 pNew = sqlite3DbMallocRaw(pTrans->db, sizeof(*pNew));
1162 if( pNew==0 ) return;
1163 pNew->pNext = pTrans->pWInfo->pExprMods;
1164 pTrans->pWInfo->pExprMods = pNew;
1165 pNew->pExpr = pExpr;
1166 memcpy(&pNew->orig, pExpr, sizeof(*pExpr));
1167}
1168
drheac5fc02017-04-11 01:01:27 +00001169/* The walker node callback used to transform matching expressions into
1170** a reference to an index column for an index on an expression.
1171**
1172** If pExpr matches, then transform it into a reference to the index column
1173** that contains the value of pExpr.
1174*/
drhaca19e12017-04-07 19:41:31 +00001175static int whereIndexExprTransNode(Walker *p, Expr *pExpr){
1176 IdxExprTrans *pX = p->u.pIdxTrans;
dan5aa550c2017-06-24 18:10:29 +00001177 if( sqlite3ExprCompare(0, pExpr, pX->pIdxExpr, pX->iTabCur)==0 ){
drh36e678b2020-01-02 00:45:38 +00001178 preserveExpr(pX, pExpr);
danb6ce71b2019-08-20 11:43:44 +00001179 pExpr->affExpr = sqlite3ExprAffinity(pExpr);
drhaca19e12017-04-07 19:41:31 +00001180 pExpr->op = TK_COLUMN;
1181 pExpr->iTable = pX->iIdxCur;
1182 pExpr->iColumn = pX->iIdxCol;
drh6c1c85c2019-12-22 18:55:04 +00001183 testcase( ExprHasProperty(pExpr, EP_Skip) );
1184 testcase( ExprHasProperty(pExpr, EP_Unlikely) );
drh477572b2021-10-07 20:46:29 +00001185 ExprClearProperty(pExpr, EP_Skip|EP_Unlikely|EP_WinFunc|EP_Subrtn);
1186 pExpr->y.pTab = 0;
drhaca19e12017-04-07 19:41:31 +00001187 return WRC_Prune;
1188 }else{
1189 return WRC_Continue;
1190 }
1191}
1192
drhc7476732019-10-24 20:29:25 +00001193#ifndef SQLITE_OMIT_GENERATED_COLUMNS
1194/* A walker node callback that translates a column reference to a table
1195** into a corresponding column reference of an index.
1196*/
1197static int whereIndexExprTransColumn(Walker *p, Expr *pExpr){
1198 if( pExpr->op==TK_COLUMN ){
1199 IdxExprTrans *pX = p->u.pIdxTrans;
1200 if( pExpr->iTable==pX->iTabCur && pExpr->iColumn==pX->iTabCol ){
drh477572b2021-10-07 20:46:29 +00001201 assert( ExprUseYTab(pExpr) && pExpr->y.pTab!=0 );
drh36e678b2020-01-02 00:45:38 +00001202 preserveExpr(pX, pExpr);
drh57f7ece2019-11-21 18:28:44 +00001203 pExpr->affExpr = sqlite3TableColumnAffinity(pExpr->y.pTab,pExpr->iColumn);
drhc7476732019-10-24 20:29:25 +00001204 pExpr->iTable = pX->iIdxCur;
1205 pExpr->iColumn = pX->iIdxCol;
drh4485ac12019-10-24 21:02:06 +00001206 pExpr->y.pTab = 0;
drhc7476732019-10-24 20:29:25 +00001207 }
1208 }
1209 return WRC_Continue;
1210}
1211#endif /* SQLITE_OMIT_GENERATED_COLUMNS */
1212
drhaca19e12017-04-07 19:41:31 +00001213/*
drhf49759b2017-08-25 19:51:51 +00001214** For an indexes on expression X, locate every instance of expression X
1215** in pExpr and change that subexpression into a reference to the appropriate
1216** column of the index.
drhc7476732019-10-24 20:29:25 +00001217**
1218** 2019-10-24: Updated to also translate references to a VIRTUAL column in
1219** the table into references to the corresponding (stored) column of the
1220** index.
drhaca19e12017-04-07 19:41:31 +00001221*/
1222static void whereIndexExprTrans(
1223 Index *pIdx, /* The Index */
1224 int iTabCur, /* Cursor of the table that is being indexed */
1225 int iIdxCur, /* Cursor of the index itself */
1226 WhereInfo *pWInfo /* Transform expressions in this WHERE clause */
1227){
1228 int iIdxCol; /* Column number of the index */
1229 ExprList *aColExpr; /* Expressions that are indexed */
drhc7476732019-10-24 20:29:25 +00001230 Table *pTab;
drhaca19e12017-04-07 19:41:31 +00001231 Walker w;
1232 IdxExprTrans x;
1233 aColExpr = pIdx->aColExpr;
drhc7476732019-10-24 20:29:25 +00001234 if( aColExpr==0 && !pIdx->bHasVCol ){
1235 /* The index does not reference any expressions or virtual columns
1236 ** so no translations are needed. */
1237 return;
1238 }
1239 pTab = pIdx->pTable;
drhaca19e12017-04-07 19:41:31 +00001240 memset(&w, 0, sizeof(w));
drhaca19e12017-04-07 19:41:31 +00001241 w.u.pIdxTrans = &x;
1242 x.iTabCur = iTabCur;
1243 x.iIdxCur = iIdxCur;
drh36e678b2020-01-02 00:45:38 +00001244 x.pWInfo = pWInfo;
1245 x.db = pWInfo->pParse->db;
drhc7476732019-10-24 20:29:25 +00001246 for(iIdxCol=0; iIdxCol<pIdx->nColumn; iIdxCol++){
1247 i16 iRef = pIdx->aiColumn[iIdxCol];
1248 if( iRef==XN_EXPR ){
drh7d4c94b2021-10-04 22:34:38 +00001249 assert( aColExpr!=0 && aColExpr->a[iIdxCol].pExpr!=0 );
drhc7476732019-10-24 20:29:25 +00001250 x.pIdxExpr = aColExpr->a[iIdxCol].pExpr;
drhe86f3402019-12-26 00:20:56 +00001251 if( sqlite3ExprIsConstant(x.pIdxExpr) ) continue;
drhc7476732019-10-24 20:29:25 +00001252 w.xExprCallback = whereIndexExprTransNode;
1253#ifndef SQLITE_OMIT_GENERATED_COLUMNS
drhed0c3482019-12-20 22:46:41 +00001254 }else if( iRef>=0
1255 && (pTab->aCol[iRef].colFlags & COLFLAG_VIRTUAL)!=0
drh65b40092021-08-05 15:27:19 +00001256 && ((pTab->aCol[iRef].colFlags & COLFLAG_HASCOLL)==0
1257 || sqlite3StrICmp(sqlite3ColumnColl(&pTab->aCol[iRef]),
1258 sqlite3StrBINARY)==0)
drhed0c3482019-12-20 22:46:41 +00001259 ){
1260 /* Check to see if there are direct references to generated columns
1261 ** that are contained in the index. Pulling the generated column
1262 ** out of the index is an optimization only - the main table is always
1263 ** available if the index cannot be used. To avoid unnecessary
1264 ** complication, omit this optimization if the collating sequence for
1265 ** the column is non-standard */
drhc7476732019-10-24 20:29:25 +00001266 x.iTabCol = iRef;
1267 w.xExprCallback = whereIndexExprTransColumn;
1268#endif /* SQLITE_OMIT_GENERATED_COLUMNS */
1269 }else{
1270 continue;
1271 }
drhaca19e12017-04-07 19:41:31 +00001272 x.iIdxCol = iIdxCol;
drhaca19e12017-04-07 19:41:31 +00001273 sqlite3WalkExpr(&w, pWInfo->pWhere);
1274 sqlite3WalkExprList(&w, pWInfo->pOrderBy);
1275 sqlite3WalkExprList(&w, pWInfo->pResultSet);
1276 }
1277}
drhaca19e12017-04-07 19:41:31 +00001278
dande892d92016-01-29 19:29:45 +00001279/*
drh610f11d2019-03-18 10:30:00 +00001280** The pTruth expression is always true because it is the WHERE clause
drhb531aa82019-03-01 18:07:05 +00001281** a partial index that is driving a query loop. Look through all of the
1282** WHERE clause terms on the query, and if any of those terms must be
1283** true because pTruth is true, then mark those WHERE clause terms as
1284** coded.
1285*/
1286static void whereApplyPartialIndexConstraints(
1287 Expr *pTruth,
1288 int iTabCur,
1289 WhereClause *pWC
1290){
1291 int i;
1292 WhereTerm *pTerm;
1293 while( pTruth->op==TK_AND ){
1294 whereApplyPartialIndexConstraints(pTruth->pLeft, iTabCur, pWC);
1295 pTruth = pTruth->pRight;
1296 }
1297 for(i=0, pTerm=pWC->a; i<pWC->nTerm; i++, pTerm++){
1298 Expr *pExpr;
1299 if( pTerm->wtFlags & TERM_CODED ) continue;
1300 pExpr = pTerm->pExpr;
1301 if( sqlite3ExprCompare(0, pExpr, pTruth, iTabCur)==0 ){
1302 pTerm->wtFlags |= TERM_CODED;
1303 }
1304 }
1305}
1306
1307/*
drh6f82e852015-06-06 20:12:09 +00001308** Generate code for the start of the iLevel-th loop in the WHERE clause
1309** implementation described by pWInfo.
1310*/
1311Bitmask sqlite3WhereCodeOneLoopStart(
drh47df8a22018-12-25 00:15:37 +00001312 Parse *pParse, /* Parsing context */
1313 Vdbe *v, /* Prepared statement under construction */
drh6f82e852015-06-06 20:12:09 +00001314 WhereInfo *pWInfo, /* Complete information about the WHERE clause */
1315 int iLevel, /* Which level of pWInfo->a[] should be coded */
drh47df8a22018-12-25 00:15:37 +00001316 WhereLevel *pLevel, /* The current level pointer */
drh6f82e852015-06-06 20:12:09 +00001317 Bitmask notReady /* Which tables are currently available */
1318){
1319 int j, k; /* Loop counters */
1320 int iCur; /* The VDBE cursor for the table */
1321 int addrNxt; /* Where to jump to continue with the next IN case */
drh6f82e852015-06-06 20:12:09 +00001322 int bRev; /* True if we need to scan in reverse order */
drh6f82e852015-06-06 20:12:09 +00001323 WhereLoop *pLoop; /* The WhereLoop object being coded */
1324 WhereClause *pWC; /* Decomposition of the entire WHERE clause */
1325 WhereTerm *pTerm; /* A WHERE clause term */
drh6f82e852015-06-06 20:12:09 +00001326 sqlite3 *db; /* Database connection */
drh76012942021-02-21 21:04:54 +00001327 SrcItem *pTabItem; /* FROM clause term being coded */
drh6f82e852015-06-06 20:12:09 +00001328 int addrBrk; /* Jump here to break out of the loop */
drh3a3b4202017-02-15 22:36:15 +00001329 int addrHalt; /* addrBrk for the outermost loop */
drh6f82e852015-06-06 20:12:09 +00001330 int addrCont; /* Jump here to continue with next cycle */
1331 int iRowidReg = 0; /* Rowid is stored in this register, if not zero */
1332 int iReleaseReg = 0; /* Temp register to free before returning */
dan6f654a42017-04-28 19:59:55 +00001333 Index *pIdx = 0; /* Index used by loop (if any) */
danebc63012017-07-10 14:33:00 +00001334 int iLoop; /* Iteration of constraint generator loop */
drh6f82e852015-06-06 20:12:09 +00001335
drh6f82e852015-06-06 20:12:09 +00001336 pWC = &pWInfo->sWC;
1337 db = pParse->db;
drh6f82e852015-06-06 20:12:09 +00001338 pLoop = pLevel->pWLoop;
1339 pTabItem = &pWInfo->pTabList->a[pLevel->iFrom];
1340 iCur = pTabItem->iCursor;
1341 pLevel->notReady = notReady & ~sqlite3WhereGetMask(&pWInfo->sMaskSet, iCur);
1342 bRev = (pWInfo->revMask>>iLevel)&1;
drh6f82e852015-06-06 20:12:09 +00001343 VdbeModuleComment((v, "Begin WHERE-loop%d: %s",iLevel,pTabItem->pTab->zName));
drh118efd12019-12-28 14:07:22 +00001344#if WHERETRACE_ENABLED /* 0x20800 */
1345 if( sqlite3WhereTrace & 0x800 ){
drha4b2df52019-12-28 16:20:23 +00001346 sqlite3DebugPrintf("Coding level %d of %d: notReady=%llx iFrom=%d\n",
1347 iLevel, pWInfo->nLevel, (u64)notReady, pLevel->iFrom);
drh118efd12019-12-28 14:07:22 +00001348 sqlite3WhereLoopPrint(pLoop, pWC);
1349 }
1350 if( sqlite3WhereTrace & 0x20000 ){
drhf1bb31e2019-12-28 14:33:26 +00001351 if( iLevel==0 ){
1352 sqlite3DebugPrintf("WHERE clause being coded:\n");
1353 sqlite3TreeViewExpr(0, pWInfo->pWhere, 0);
1354 }
1355 sqlite3DebugPrintf("All WHERE-clause terms before coding:\n");
drh118efd12019-12-28 14:07:22 +00001356 sqlite3WhereClausePrint(pWC);
1357 }
1358#endif
drh6f82e852015-06-06 20:12:09 +00001359
1360 /* Create labels for the "break" and "continue" instructions
1361 ** for the current loop. Jump to addrBrk to break out of a loop.
1362 ** Jump to cont to go immediately to the next iteration of the
1363 ** loop.
1364 **
1365 ** When there is an IN operator, we also have a "addrNxt" label that
1366 ** means to continue with the next IN value combination. When
1367 ** there are no IN operators in the constraints, the "addrNxt" label
1368 ** is the same as "addrBrk".
1369 */
drhec4ccdb2018-12-29 02:26:59 +00001370 addrBrk = pLevel->addrBrk = pLevel->addrNxt = sqlite3VdbeMakeLabel(pParse);
1371 addrCont = pLevel->addrCont = sqlite3VdbeMakeLabel(pParse);
drh6f82e852015-06-06 20:12:09 +00001372
1373 /* If this is the right table of a LEFT OUTER JOIN, allocate and
1374 ** initialize a memory cell that records if this table matches any
1375 ** row of the left table of the join.
1376 */
dan820fcd22018-04-24 18:53:24 +00001377 assert( (pWInfo->wctrlFlags & WHERE_OR_SUBCLAUSE)
1378 || pLevel->iFrom>0 || (pTabItem[0].fg.jointype & JT_LEFT)==0
1379 );
drh8a48b9c2015-08-19 15:20:00 +00001380 if( pLevel->iFrom>0 && (pTabItem[0].fg.jointype & JT_LEFT)!=0 ){
drh6f82e852015-06-06 20:12:09 +00001381 pLevel->iLeftJoin = ++pParse->nMem;
1382 sqlite3VdbeAddOp2(v, OP_Integer, 0, pLevel->iLeftJoin);
1383 VdbeComment((v, "init LEFT JOIN no-match flag"));
1384 }
1385
drh3a3b4202017-02-15 22:36:15 +00001386 /* Compute a safe address to jump to if we discover that the table for
1387 ** this loop is empty and can never contribute content. */
1388 for(j=iLevel; j>0 && pWInfo->a[j].iLeftJoin==0; j--){}
1389 addrHalt = pWInfo->a[j].addrBrk;
1390
drh6f82e852015-06-06 20:12:09 +00001391 /* Special case of a FROM clause subquery implemented as a co-routine */
drh8a48b9c2015-08-19 15:20:00 +00001392 if( pTabItem->fg.viaCoroutine ){
drh6f82e852015-06-06 20:12:09 +00001393 int regYield = pTabItem->regReturn;
1394 sqlite3VdbeAddOp3(v, OP_InitCoroutine, regYield, 0, pTabItem->addrFillSub);
1395 pLevel->p2 = sqlite3VdbeAddOp2(v, OP_Yield, regYield, addrBrk);
1396 VdbeCoverage(v);
drhfef37762018-07-10 19:48:35 +00001397 VdbeComment((v, "next row of %s", pTabItem->pTab->zName));
drh6f82e852015-06-06 20:12:09 +00001398 pLevel->op = OP_Goto;
1399 }else
1400
1401#ifndef SQLITE_OMIT_VIRTUALTABLE
1402 if( (pLoop->wsFlags & WHERE_VIRTUALTABLE)!=0 ){
1403 /* Case 1: The table is a virtual-table. Use the VFilter and VNext
1404 ** to access the data.
1405 */
1406 int iReg; /* P3 Value for OP_VFilter */
1407 int addrNotFound;
1408 int nConstraint = pLoop->nLTerm;
drhdbc49162016-03-02 03:28:07 +00001409 int iIn; /* Counter for IN constraints */
drh6f82e852015-06-06 20:12:09 +00001410
drh6f82e852015-06-06 20:12:09 +00001411 iReg = sqlite3GetTempRange(pParse, nConstraint+2);
1412 addrNotFound = pLevel->addrBrk;
1413 for(j=0; j<nConstraint; j++){
1414 int iTarget = iReg+j+2;
1415 pTerm = pLoop->aLTerm[j];
drh599d5762016-03-08 01:11:51 +00001416 if( NEVER(pTerm==0) ) continue;
drh6f82e852015-06-06 20:12:09 +00001417 if( pTerm->eOperator & WO_IN ){
1418 codeEqualityTerm(pParse, pTerm, pLevel, j, bRev, iTarget);
1419 addrNotFound = pLevel->addrNxt;
1420 }else{
dan6256c1c2016-08-08 20:15:41 +00001421 Expr *pRight = pTerm->pExpr->pRight;
drhfc7f27b2016-08-20 00:07:01 +00001422 codeExprOrVector(pParse, pRight, iTarget, 1);
drh6f82e852015-06-06 20:12:09 +00001423 }
1424 }
1425 sqlite3VdbeAddOp2(v, OP_Integer, pLoop->u.vtab.idxNum, iReg);
1426 sqlite3VdbeAddOp2(v, OP_Integer, nConstraint, iReg+1);
1427 sqlite3VdbeAddOp4(v, OP_VFilter, iCur, addrNotFound, iReg,
1428 pLoop->u.vtab.idxStr,
drh861b1302016-12-07 20:22:31 +00001429 pLoop->u.vtab.needFree ? P4_DYNAMIC : P4_STATIC);
drh6f82e852015-06-06 20:12:09 +00001430 VdbeCoverage(v);
1431 pLoop->u.vtab.needFree = 0;
drhbc2e9512020-09-17 11:32:14 +00001432 /* An OOM inside of AddOp4(OP_VFilter) instruction above might have freed
1433 ** the u.vtab.idxStr. NULL it out to prevent a use-after-free */
1434 if( db->mallocFailed ) pLoop->u.vtab.idxStr = 0;
drh6f82e852015-06-06 20:12:09 +00001435 pLevel->p1 = iCur;
dan354474a2015-09-29 10:11:26 +00001436 pLevel->op = pWInfo->eOnePass ? OP_Noop : OP_VNext;
drh6f82e852015-06-06 20:12:09 +00001437 pLevel->p2 = sqlite3VdbeCurrentAddr(v);
drh04756292021-10-14 19:28:28 +00001438 assert( (pLoop->wsFlags & WHERE_MULTI_OR)==0 );
1439 if( pLoop->wsFlags & WHERE_IN_ABLE ){
1440 iIn = pLevel->u.in.nIn;
1441 }else{
1442 iIn = 0;
1443 }
drhdbc49162016-03-02 03:28:07 +00001444 for(j=nConstraint-1; j>=0; j--){
1445 pTerm = pLoop->aLTerm[j];
drh68748ec2019-10-14 20:32:31 +00001446 if( (pTerm->eOperator & WO_IN)!=0 ) iIn--;
drhdbc49162016-03-02 03:28:07 +00001447 if( j<16 && (pLoop->u.vtab.omitMask>>j)&1 ){
1448 disableTerm(pLevel, pTerm);
drh4ec3e822019-10-15 19:01:55 +00001449 }else if( (pTerm->eOperator & WO_IN)!=0
1450 && sqlite3ExprVectorSize(pTerm->pExpr->pLeft)==1
dan2d822692019-10-14 15:15:50 +00001451 ){
drhdbc49162016-03-02 03:28:07 +00001452 Expr *pCompare; /* The comparison operator */
1453 Expr *pRight; /* RHS of the comparison */
1454 VdbeOp *pOp; /* Opcode to access the value of the IN constraint */
1455
1456 /* Reload the constraint value into reg[iReg+j+2]. The same value
1457 ** was loaded into the same register prior to the OP_VFilter, but
1458 ** the xFilter implementation might have changed the datatype or
1459 ** encoding of the value in the register, so it *must* be reloaded. */
1460 assert( pLevel->u.in.aInLoop!=0 || db->mallocFailed );
drhfb826b82016-03-08 00:39:58 +00001461 if( !db->mallocFailed ){
drh68748ec2019-10-14 20:32:31 +00001462 assert( iIn>=0 && iIn<pLevel->u.in.nIn );
1463 pOp = sqlite3VdbeGetOp(v, pLevel->u.in.aInLoop[iIn].addrInTop);
drhdbc49162016-03-02 03:28:07 +00001464 assert( pOp->opcode==OP_Column || pOp->opcode==OP_Rowid );
1465 assert( pOp->opcode!=OP_Column || pOp->p3==iReg+j+2 );
1466 assert( pOp->opcode!=OP_Rowid || pOp->p2==iReg+j+2 );
1467 testcase( pOp->opcode==OP_Rowid );
1468 sqlite3VdbeAddOp3(v, pOp->opcode, pOp->p1, pOp->p2, pOp->p3);
1469 }
1470
1471 /* Generate code that will continue to the next row if
1472 ** the IN constraint is not satisfied */
drhabfd35e2016-12-06 22:47:23 +00001473 pCompare = sqlite3PExpr(pParse, TK_EQ, 0, 0);
drhdbc49162016-03-02 03:28:07 +00001474 assert( pCompare!=0 || db->mallocFailed );
1475 if( pCompare ){
1476 pCompare->pLeft = pTerm->pExpr->pLeft;
1477 pCompare->pRight = pRight = sqlite3Expr(db, TK_REGISTER, 0);
drh237b2b72016-03-07 19:08:27 +00001478 if( pRight ){
1479 pRight->iTable = iReg+j+2;
dand03f77a2020-01-29 15:03:01 +00001480 sqlite3ExprIfFalse(
1481 pParse, pCompare, pLevel->addrCont, SQLITE_JUMPIFNULL
1482 );
drh237b2b72016-03-07 19:08:27 +00001483 }
drhdbc49162016-03-02 03:28:07 +00001484 pCompare->pLeft = 0;
1485 sqlite3ExprDelete(db, pCompare);
1486 }
1487 }
1488 }
drh68748ec2019-10-14 20:32:31 +00001489 assert( iIn==0 || db->mallocFailed );
drhba26faa2016-04-09 18:04:28 +00001490 /* These registers need to be preserved in case there is an IN operator
1491 ** loop. So we could deallocate the registers here (and potentially
1492 ** reuse them later) if (pLoop->wsFlags & WHERE_IN_ABLE)==0. But it seems
1493 ** simpler and safer to simply not reuse the registers.
1494 **
1495 ** sqlite3ReleaseTempRange(pParse, iReg, nConstraint+2);
1496 */
drh6f82e852015-06-06 20:12:09 +00001497 }else
1498#endif /* SQLITE_OMIT_VIRTUALTABLE */
1499
1500 if( (pLoop->wsFlags & WHERE_IPK)!=0
1501 && (pLoop->wsFlags & (WHERE_COLUMN_IN|WHERE_COLUMN_EQ))!=0
1502 ){
1503 /* Case 2: We can directly reference a single row using an
1504 ** equality comparison against the ROWID field. Or
1505 ** we reference multiple rows using a "rowid IN (...)"
1506 ** construct.
1507 */
1508 assert( pLoop->u.btree.nEq==1 );
1509 pTerm = pLoop->aLTerm[0];
1510 assert( pTerm!=0 );
1511 assert( pTerm->pExpr!=0 );
drh6f82e852015-06-06 20:12:09 +00001512 testcase( pTerm->wtFlags & TERM_VIRTUAL );
1513 iReleaseReg = ++pParse->nMem;
1514 iRowidReg = codeEqualityTerm(pParse, pTerm, pLevel, 0, bRev, iReleaseReg);
1515 if( iRowidReg!=iReleaseReg ) sqlite3ReleaseTempReg(pParse, iReleaseReg);
1516 addrNxt = pLevel->addrNxt;
drh2db144c2021-12-01 16:31:02 +00001517 if( pLevel->regFilter ){
1518 sqlite3VdbeAddOp4Int(v, OP_Filter, pLevel->regFilter, addrNxt,
1519 iRowidReg, 1);
drh067c60c2021-12-04 18:45:08 +00001520 VdbeCoverage(v);
drh2db144c2021-12-01 16:31:02 +00001521 }
drheeb95652016-05-26 20:56:38 +00001522 sqlite3VdbeAddOp3(v, OP_SeekRowid, iCur, addrNxt, iRowidReg);
drh6f82e852015-06-06 20:12:09 +00001523 VdbeCoverage(v);
drh6f82e852015-06-06 20:12:09 +00001524 pLevel->op = OP_Noop;
1525 }else if( (pLoop->wsFlags & WHERE_IPK)!=0
1526 && (pLoop->wsFlags & WHERE_COLUMN_RANGE)!=0
1527 ){
1528 /* Case 3: We have an inequality comparison against the ROWID field.
1529 */
1530 int testOp = OP_Noop;
1531 int start;
1532 int memEndValue = 0;
1533 WhereTerm *pStart, *pEnd;
1534
drh6f82e852015-06-06 20:12:09 +00001535 j = 0;
1536 pStart = pEnd = 0;
1537 if( pLoop->wsFlags & WHERE_BTM_LIMIT ) pStart = pLoop->aLTerm[j++];
1538 if( pLoop->wsFlags & WHERE_TOP_LIMIT ) pEnd = pLoop->aLTerm[j++];
1539 assert( pStart!=0 || pEnd!=0 );
1540 if( bRev ){
1541 pTerm = pStart;
1542 pStart = pEnd;
1543 pEnd = pTerm;
1544 }
danb324cf72016-06-17 14:33:32 +00001545 codeCursorHint(pTabItem, pWInfo, pLevel, pEnd);
drh6f82e852015-06-06 20:12:09 +00001546 if( pStart ){
1547 Expr *pX; /* The expression that defines the start bound */
1548 int r1, rTemp; /* Registers for holding the start boundary */
dan19ff12d2016-07-29 20:58:19 +00001549 int op; /* Cursor seek operation */
drh6f82e852015-06-06 20:12:09 +00001550
1551 /* The following constant maps TK_xx codes into corresponding
1552 ** seek opcodes. It depends on a particular ordering of TK_xx
1553 */
1554 const u8 aMoveOp[] = {
1555 /* TK_GT */ OP_SeekGT,
1556 /* TK_LE */ OP_SeekLE,
1557 /* TK_LT */ OP_SeekLT,
1558 /* TK_GE */ OP_SeekGE
1559 };
1560 assert( TK_LE==TK_GT+1 ); /* Make sure the ordering.. */
1561 assert( TK_LT==TK_GT+2 ); /* ... of the TK_xx values... */
1562 assert( TK_GE==TK_GT+3 ); /* ... is correcct. */
1563
1564 assert( (pStart->wtFlags & TERM_VNULL)==0 );
1565 testcase( pStart->wtFlags & TERM_VIRTUAL );
1566 pX = pStart->pExpr;
1567 assert( pX!=0 );
1568 testcase( pStart->leftCursor!=iCur ); /* transitive constraints */
dan625015e2016-07-30 16:39:28 +00001569 if( sqlite3ExprIsVector(pX->pRight) ){
dan19ff12d2016-07-29 20:58:19 +00001570 r1 = rTemp = sqlite3GetTempReg(pParse);
1571 codeExprOrVector(pParse, pX->pRight, r1, 1);
drh4d1c6842018-02-13 18:48:08 +00001572 testcase( pX->op==TK_GT );
1573 testcase( pX->op==TK_GE );
1574 testcase( pX->op==TK_LT );
1575 testcase( pX->op==TK_LE );
1576 op = aMoveOp[((pX->op - TK_GT - 1) & 0x3) | 0x1];
1577 assert( pX->op!=TK_GT || op==OP_SeekGE );
1578 assert( pX->op!=TK_GE || op==OP_SeekGE );
1579 assert( pX->op!=TK_LT || op==OP_SeekLE );
1580 assert( pX->op!=TK_LE || op==OP_SeekLE );
dan19ff12d2016-07-29 20:58:19 +00001581 }else{
1582 r1 = sqlite3ExprCodeTemp(pParse, pX->pRight, &rTemp);
1583 disableTerm(pLevel, pStart);
1584 op = aMoveOp[(pX->op - TK_GT)];
1585 }
1586 sqlite3VdbeAddOp3(v, op, iCur, addrBrk, r1);
drh6f82e852015-06-06 20:12:09 +00001587 VdbeComment((v, "pk"));
1588 VdbeCoverageIf(v, pX->op==TK_GT);
1589 VdbeCoverageIf(v, pX->op==TK_LE);
1590 VdbeCoverageIf(v, pX->op==TK_LT);
1591 VdbeCoverageIf(v, pX->op==TK_GE);
drh6f82e852015-06-06 20:12:09 +00001592 sqlite3ReleaseTempReg(pParse, rTemp);
drh6f82e852015-06-06 20:12:09 +00001593 }else{
drh3a3b4202017-02-15 22:36:15 +00001594 sqlite3VdbeAddOp2(v, bRev ? OP_Last : OP_Rewind, iCur, addrHalt);
drh6f82e852015-06-06 20:12:09 +00001595 VdbeCoverageIf(v, bRev==0);
1596 VdbeCoverageIf(v, bRev!=0);
1597 }
1598 if( pEnd ){
1599 Expr *pX;
1600 pX = pEnd->pExpr;
1601 assert( pX!=0 );
1602 assert( (pEnd->wtFlags & TERM_VNULL)==0 );
1603 testcase( pEnd->leftCursor!=iCur ); /* Transitive constraints */
1604 testcase( pEnd->wtFlags & TERM_VIRTUAL );
1605 memEndValue = ++pParse->nMem;
dan19ff12d2016-07-29 20:58:19 +00001606 codeExprOrVector(pParse, pX->pRight, memEndValue, 1);
dan625015e2016-07-30 16:39:28 +00001607 if( 0==sqlite3ExprIsVector(pX->pRight)
1608 && (pX->op==TK_LT || pX->op==TK_GT)
1609 ){
drh6f82e852015-06-06 20:12:09 +00001610 testOp = bRev ? OP_Le : OP_Ge;
1611 }else{
1612 testOp = bRev ? OP_Lt : OP_Gt;
1613 }
dan553168c2016-08-01 20:14:31 +00001614 if( 0==sqlite3ExprIsVector(pX->pRight) ){
1615 disableTerm(pLevel, pEnd);
1616 }
drh6f82e852015-06-06 20:12:09 +00001617 }
1618 start = sqlite3VdbeCurrentAddr(v);
1619 pLevel->op = bRev ? OP_Prev : OP_Next;
1620 pLevel->p1 = iCur;
1621 pLevel->p2 = start;
1622 assert( pLevel->p5==0 );
1623 if( testOp!=OP_Noop ){
1624 iRowidReg = ++pParse->nMem;
1625 sqlite3VdbeAddOp2(v, OP_Rowid, iCur, iRowidReg);
drh6f82e852015-06-06 20:12:09 +00001626 sqlite3VdbeAddOp3(v, testOp, memEndValue, addrBrk, iRowidReg);
1627 VdbeCoverageIf(v, testOp==OP_Le);
1628 VdbeCoverageIf(v, testOp==OP_Lt);
1629 VdbeCoverageIf(v, testOp==OP_Ge);
1630 VdbeCoverageIf(v, testOp==OP_Gt);
1631 sqlite3VdbeChangeP5(v, SQLITE_AFF_NUMERIC | SQLITE_JUMPIFNULL);
1632 }
1633 }else if( pLoop->wsFlags & WHERE_INDEXED ){
1634 /* Case 4: A scan using an index.
1635 **
1636 ** The WHERE clause may contain zero or more equality
1637 ** terms ("==" or "IN" operators) that refer to the N
1638 ** left-most columns of the index. It may also contain
1639 ** inequality constraints (>, <, >= or <=) on the indexed
1640 ** column that immediately follows the N equalities. Only
1641 ** the right-most column can be an inequality - the rest must
1642 ** use the "==" and "IN" operators. For example, if the
1643 ** index is on (x,y,z), then the following clauses are all
1644 ** optimized:
1645 **
1646 ** x=5
1647 ** x=5 AND y=10
1648 ** x=5 AND y<10
1649 ** x=5 AND y>5 AND y<10
1650 ** x=5 AND y=5 AND z<=10
1651 **
1652 ** The z<10 term of the following cannot be used, only
1653 ** the x=5 term:
1654 **
1655 ** x=5 AND z<10
1656 **
1657 ** N may be zero if there are inequality constraints.
1658 ** If there are no inequality constraints, then N is at
1659 ** least one.
1660 **
1661 ** This case is also used when there are no WHERE clause
1662 ** constraints but an index is selected anyway, in order
1663 ** to force the output order to conform to an ORDER BY.
1664 */
1665 static const u8 aStartOp[] = {
1666 0,
1667 0,
1668 OP_Rewind, /* 2: (!start_constraints && startEq && !bRev) */
1669 OP_Last, /* 3: (!start_constraints && startEq && bRev) */
1670 OP_SeekGT, /* 4: (start_constraints && !startEq && !bRev) */
1671 OP_SeekLT, /* 5: (start_constraints && !startEq && bRev) */
1672 OP_SeekGE, /* 6: (start_constraints && startEq && !bRev) */
1673 OP_SeekLE /* 7: (start_constraints && startEq && bRev) */
1674 };
1675 static const u8 aEndOp[] = {
1676 OP_IdxGE, /* 0: (end_constraints && !bRev && !endEq) */
1677 OP_IdxGT, /* 1: (end_constraints && !bRev && endEq) */
1678 OP_IdxLE, /* 2: (end_constraints && bRev && !endEq) */
1679 OP_IdxLT, /* 3: (end_constraints && bRev && endEq) */
1680 };
1681 u16 nEq = pLoop->u.btree.nEq; /* Number of == or IN terms */
dan71c57db2016-07-09 20:23:55 +00001682 u16 nBtm = pLoop->u.btree.nBtm; /* Length of BTM vector */
1683 u16 nTop = pLoop->u.btree.nTop; /* Length of TOP vector */
drh6f82e852015-06-06 20:12:09 +00001684 int regBase; /* Base register holding constraint values */
1685 WhereTerm *pRangeStart = 0; /* Inequality constraint at range start */
1686 WhereTerm *pRangeEnd = 0; /* Inequality constraint at range end */
1687 int startEq; /* True if range start uses ==, >= or <= */
1688 int endEq; /* True if range end uses ==, >= or <= */
1689 int start_constraints; /* Start of range is constrained */
1690 int nConstraint; /* Number of constraint terms */
drh6f82e852015-06-06 20:12:09 +00001691 int iIdxCur; /* The VDBE cursor for the index */
1692 int nExtraReg = 0; /* Number of extra registers needed */
1693 int op; /* Instruction opcode */
1694 char *zStartAff; /* Affinity for start of range constraint */
danb7ca2172016-08-26 17:54:46 +00001695 char *zEndAff = 0; /* Affinity for end of range constraint */
drh6f82e852015-06-06 20:12:09 +00001696 u8 bSeekPastNull = 0; /* True to seek past initial nulls */
1697 u8 bStopAtNull = 0; /* Add condition to terminate at NULLs */
drh47df8a22018-12-25 00:15:37 +00001698 int omitTable; /* True if we use the index only */
drh74e1b862019-08-23 13:08:49 +00001699 int regBignull = 0; /* big-null flag register */
drh04e70ce2020-10-02 11:55:07 +00001700 int addrSeekScan = 0; /* Opcode of the OP_SeekScan, if any */
drh6f82e852015-06-06 20:12:09 +00001701
1702 pIdx = pLoop->u.btree.pIndex;
1703 iIdxCur = pLevel->iIdxCur;
1704 assert( nEq>=pLoop->nSkip );
1705
drh6f82e852015-06-06 20:12:09 +00001706 /* Find any inequality constraint terms for the start and end
1707 ** of the range.
1708 */
1709 j = nEq;
1710 if( pLoop->wsFlags & WHERE_BTM_LIMIT ){
1711 pRangeStart = pLoop->aLTerm[j++];
dan71c57db2016-07-09 20:23:55 +00001712 nExtraReg = MAX(nExtraReg, pLoop->u.btree.nBtm);
drh6f82e852015-06-06 20:12:09 +00001713 /* Like optimization range constraints always occur in pairs */
1714 assert( (pRangeStart->wtFlags & TERM_LIKEOPT)==0 ||
1715 (pLoop->wsFlags & WHERE_TOP_LIMIT)!=0 );
1716 }
1717 if( pLoop->wsFlags & WHERE_TOP_LIMIT ){
1718 pRangeEnd = pLoop->aLTerm[j++];
dan71c57db2016-07-09 20:23:55 +00001719 nExtraReg = MAX(nExtraReg, pLoop->u.btree.nTop);
drh41d2e662015-12-01 21:23:07 +00001720#ifndef SQLITE_LIKE_DOESNT_MATCH_BLOBS
drh6f82e852015-06-06 20:12:09 +00001721 if( (pRangeEnd->wtFlags & TERM_LIKEOPT)!=0 ){
1722 assert( pRangeStart!=0 ); /* LIKE opt constraints */
1723 assert( pRangeStart->wtFlags & TERM_LIKEOPT ); /* occur in pairs */
drh44aebff2016-05-02 10:25:42 +00001724 pLevel->iLikeRepCntr = (u32)++pParse->nMem;
1725 sqlite3VdbeAddOp2(v, OP_Integer, 1, (int)pLevel->iLikeRepCntr);
drh6f82e852015-06-06 20:12:09 +00001726 VdbeComment((v, "LIKE loop counter"));
1727 pLevel->addrLikeRep = sqlite3VdbeCurrentAddr(v);
drh44aebff2016-05-02 10:25:42 +00001728 /* iLikeRepCntr actually stores 2x the counter register number. The
1729 ** bottom bit indicates whether the search order is ASC or DESC. */
1730 testcase( bRev );
1731 testcase( pIdx->aSortOrder[nEq]==SQLITE_SO_DESC );
1732 assert( (bRev & ~1)==0 );
1733 pLevel->iLikeRepCntr <<=1;
1734 pLevel->iLikeRepCntr |= bRev ^ (pIdx->aSortOrder[nEq]==SQLITE_SO_DESC);
drh6f82e852015-06-06 20:12:09 +00001735 }
drh41d2e662015-12-01 21:23:07 +00001736#endif
drh48590fc2016-10-10 13:29:15 +00001737 if( pRangeStart==0 ){
1738 j = pIdx->aiColumn[nEq];
1739 if( (j>=0 && pIdx->pTable->aCol[j].notNull==0) || j==XN_EXPR ){
1740 bSeekPastNull = 1;
1741 }
drh6f82e852015-06-06 20:12:09 +00001742 }
1743 }
1744 assert( pRangeEnd==0 || (pRangeEnd->wtFlags & TERM_VNULL)==0 );
1745
dan15750a22019-08-16 21:07:19 +00001746 /* If the WHERE_BIGNULL_SORT flag is set, then index column nEq uses
1747 ** a non-default "big-null" sort (either ASC NULLS LAST or DESC NULLS
1748 ** FIRST). In both cases separate ordered scans are made of those
1749 ** index entries for which the column is null and for those for which
1750 ** it is not. For an ASC sort, the non-NULL entries are scanned first.
1751 ** For DESC, NULL entries are scanned first.
1752 */
dan15750a22019-08-16 21:07:19 +00001753 if( (pLoop->wsFlags & (WHERE_TOP_LIMIT|WHERE_BTM_LIMIT))==0
1754 && (pLoop->wsFlags & WHERE_BIGNULL_SORT)!=0
1755 ){
1756 assert( bSeekPastNull==0 && nExtraReg==0 && nBtm==0 && nTop==0 );
1757 assert( pRangeEnd==0 && pRangeStart==0 );
dan4adb1d02019-12-28 18:08:39 +00001758 testcase( pLoop->nSkip>0 );
dan15750a22019-08-16 21:07:19 +00001759 nExtraReg = 1;
1760 bSeekPastNull = 1;
1761 pLevel->regBignull = regBignull = ++pParse->nMem;
drh7f05d522020-03-02 01:16:33 +00001762 if( pLevel->iLeftJoin ){
1763 sqlite3VdbeAddOp2(v, OP_Integer, 0, regBignull);
1764 }
dancc491f42019-08-17 17:55:54 +00001765 pLevel->addrBignull = sqlite3VdbeMakeLabel(pParse);
dan15750a22019-08-16 21:07:19 +00001766 }
1767
drh6f82e852015-06-06 20:12:09 +00001768 /* If we are doing a reverse order scan on an ascending index, or
1769 ** a forward order scan on a descending index, interchange the
1770 ** start and end terms (pRangeStart and pRangeEnd).
1771 */
drh7ffb16b2021-05-12 22:15:44 +00001772 if( (nEq<pIdx->nColumn && bRev==(pIdx->aSortOrder[nEq]==SQLITE_SO_ASC)) ){
drh6f82e852015-06-06 20:12:09 +00001773 SWAP(WhereTerm *, pRangeEnd, pRangeStart);
1774 SWAP(u8, bSeekPastNull, bStopAtNull);
dan71c57db2016-07-09 20:23:55 +00001775 SWAP(u8, nBtm, nTop);
drh6f82e852015-06-06 20:12:09 +00001776 }
1777
dandf1b52e2021-01-27 17:15:06 +00001778 if( iLevel>0 && (pLoop->wsFlags & WHERE_IN_SEEKSCAN)!=0 ){
1779 /* In case OP_SeekScan is used, ensure that the index cursor does not
1780 ** point to a valid row for the first iteration of this loop. */
1781 sqlite3VdbeAddOp1(v, OP_NullRow, iIdxCur);
1782 }
1783
drhbcf40a72015-08-18 15:58:05 +00001784 /* Generate code to evaluate all constraint terms using == or IN
1785 ** and store the values of those terms in an array of registers
1786 ** starting at regBase.
1787 */
danb324cf72016-06-17 14:33:32 +00001788 codeCursorHint(pTabItem, pWInfo, pLevel, pRangeEnd);
drhbcf40a72015-08-18 15:58:05 +00001789 regBase = codeAllEqualityTerms(pParse,pLevel,bRev,nExtraReg,&zStartAff);
1790 assert( zStartAff==0 || sqlite3Strlen30(zStartAff)>=nEq );
danb7ca2172016-08-26 17:54:46 +00001791 if( zStartAff && nTop ){
1792 zEndAff = sqlite3DbStrDup(db, &zStartAff[nEq]);
1793 }
dancc491f42019-08-17 17:55:54 +00001794 addrNxt = (regBignull ? pLevel->addrBignull : pLevel->addrNxt);
drhbcf40a72015-08-18 15:58:05 +00001795
drh6f82e852015-06-06 20:12:09 +00001796 testcase( pRangeStart && (pRangeStart->eOperator & WO_LE)!=0 );
1797 testcase( pRangeStart && (pRangeStart->eOperator & WO_GE)!=0 );
1798 testcase( pRangeEnd && (pRangeEnd->eOperator & WO_LE)!=0 );
1799 testcase( pRangeEnd && (pRangeEnd->eOperator & WO_GE)!=0 );
1800 startEq = !pRangeStart || pRangeStart->eOperator & (WO_LE|WO_GE);
1801 endEq = !pRangeEnd || pRangeEnd->eOperator & (WO_LE|WO_GE);
1802 start_constraints = pRangeStart || nEq>0;
1803
1804 /* Seek the index cursor to the start of the range. */
1805 nConstraint = nEq;
1806 if( pRangeStart ){
1807 Expr *pRight = pRangeStart->pExpr->pRight;
dan71c57db2016-07-09 20:23:55 +00001808 codeExprOrVector(pParse, pRight, regBase+nEq, nBtm);
drh6f82e852015-06-06 20:12:09 +00001809 whereLikeOptimizationStringFixup(v, pLevel, pRangeStart);
drh395a60d2020-09-30 17:32:22 +00001810 if( (pRangeStart->wtFlags & TERM_VNULL)==0
drh6f82e852015-06-06 20:12:09 +00001811 && sqlite3ExprCanBeNull(pRight)
1812 ){
1813 sqlite3VdbeAddOp2(v, OP_IsNull, regBase+nEq, addrNxt);
1814 VdbeCoverage(v);
1815 }
1816 if( zStartAff ){
drhe3c6b612016-10-05 20:10:32 +00001817 updateRangeAffinityStr(pRight, nBtm, &zStartAff[nEq]);
drh6f82e852015-06-06 20:12:09 +00001818 }
dan71c57db2016-07-09 20:23:55 +00001819 nConstraint += nBtm;
drh6f82e852015-06-06 20:12:09 +00001820 testcase( pRangeStart->wtFlags & TERM_VIRTUAL );
dan625015e2016-07-30 16:39:28 +00001821 if( sqlite3ExprIsVector(pRight)==0 ){
dan71c57db2016-07-09 20:23:55 +00001822 disableTerm(pLevel, pRangeStart);
1823 }else{
1824 startEq = 1;
1825 }
drh426f4ab2016-07-26 04:31:14 +00001826 bSeekPastNull = 0;
drh6f82e852015-06-06 20:12:09 +00001827 }else if( bSeekPastNull ){
drh6f82e852015-06-06 20:12:09 +00001828 startEq = 0;
drh0086e072019-08-23 16:12:20 +00001829 sqlite3VdbeAddOp2(v, OP_Null, 0, regBase+nEq);
drh6f82e852015-06-06 20:12:09 +00001830 start_constraints = 1;
drh0086e072019-08-23 16:12:20 +00001831 nConstraint++;
dan15750a22019-08-16 21:07:19 +00001832 }else if( regBignull ){
1833 sqlite3VdbeAddOp2(v, OP_Null, 0, regBase+nEq);
1834 start_constraints = 1;
1835 nConstraint++;
drh6f82e852015-06-06 20:12:09 +00001836 }
1837 codeApplyAffinity(pParse, regBase, nConstraint - bSeekPastNull, zStartAff);
drh0bf2ad62016-02-22 21:19:54 +00001838 if( pLoop->nSkip>0 && nConstraint==pLoop->nSkip ){
1839 /* The skip-scan logic inside the call to codeAllEqualityConstraints()
1840 ** above has already left the cursor sitting on the correct row,
1841 ** so no further seeking is needed */
1842 }else{
dan15750a22019-08-16 21:07:19 +00001843 if( regBignull ){
drhec3dda52019-08-23 13:32:03 +00001844 sqlite3VdbeAddOp2(v, OP_Integer, 1, regBignull);
drha31d3552019-08-23 17:09:02 +00001845 VdbeComment((v, "NULL-scan pass ctr"));
dan15750a22019-08-16 21:07:19 +00001846 }
drh2db144c2021-12-01 16:31:02 +00001847 if( pLevel->regFilter ){
1848 sqlite3VdbeAddOp4Int(v, OP_Filter, pLevel->regFilter, addrNxt,
drh770dade2021-12-04 14:24:30 +00001849 regBase, nEq);
drh067c60c2021-12-04 18:45:08 +00001850 VdbeCoverage(v);
drh2db144c2021-12-01 16:31:02 +00001851 }
dan15750a22019-08-16 21:07:19 +00001852
drha6d2f8e2016-02-22 20:52:26 +00001853 op = aStartOp[(start_constraints<<2) + (startEq<<1) + bRev];
1854 assert( op!=0 );
drh7d14ffe2020-10-02 13:48:57 +00001855 if( (pLoop->wsFlags & WHERE_IN_SEEKSCAN)!=0 && op==OP_SeekGE ){
drh68cf0ac2020-09-28 19:51:54 +00001856 assert( regBignull==0 );
drh4f65b3b2020-09-30 18:03:22 +00001857 /* TUNING: The OP_SeekScan opcode seeks to reduce the number
1858 ** of expensive seek operations by replacing a single seek with
1859 ** 1 or more step operations. The question is, how many steps
1860 ** should we try before giving up and going with a seek. The cost
1861 ** of a seek is proportional to the logarithm of the of the number
1862 ** of entries in the tree, so basing the number of steps to try
1863 ** on the estimated number of rows in the btree seems like a good
1864 ** guess. */
drh04e70ce2020-10-02 11:55:07 +00001865 addrSeekScan = sqlite3VdbeAddOp1(v, OP_SeekScan,
1866 (pIdx->aiRowLogEst[0]+9)/10);
drh4f65b3b2020-09-30 18:03:22 +00001867 VdbeCoverage(v);
drh68cf0ac2020-09-28 19:51:54 +00001868 }
drha6d2f8e2016-02-22 20:52:26 +00001869 sqlite3VdbeAddOp4Int(v, op, iIdxCur, addrNxt, regBase, nConstraint);
1870 VdbeCoverage(v);
1871 VdbeCoverageIf(v, op==OP_Rewind); testcase( op==OP_Rewind );
1872 VdbeCoverageIf(v, op==OP_Last); testcase( op==OP_Last );
1873 VdbeCoverageIf(v, op==OP_SeekGT); testcase( op==OP_SeekGT );
1874 VdbeCoverageIf(v, op==OP_SeekGE); testcase( op==OP_SeekGE );
1875 VdbeCoverageIf(v, op==OP_SeekLE); testcase( op==OP_SeekLE );
1876 VdbeCoverageIf(v, op==OP_SeekLT); testcase( op==OP_SeekLT );
danddd74212019-08-02 18:43:59 +00001877
drh0086e072019-08-23 16:12:20 +00001878 assert( bSeekPastNull==0 || bStopAtNull==0 );
dan15750a22019-08-16 21:07:19 +00001879 if( regBignull ){
drh0086e072019-08-23 16:12:20 +00001880 assert( bSeekPastNull==1 || bStopAtNull==1 );
drh5f6a4ea2019-08-23 17:00:22 +00001881 assert( bSeekPastNull==!bStopAtNull );
drh0086e072019-08-23 16:12:20 +00001882 assert( bStopAtNull==startEq );
danddd74212019-08-02 18:43:59 +00001883 sqlite3VdbeAddOp2(v, OP_Goto, 0, sqlite3VdbeCurrentAddr(v)+2);
drh0086e072019-08-23 16:12:20 +00001884 op = aStartOp[(nConstraint>1)*4 + 2 + bRev];
1885 sqlite3VdbeAddOp4Int(v, op, iIdxCur, addrNxt, regBase,
1886 nConstraint-startEq);
1887 VdbeCoverage(v);
1888 VdbeCoverageIf(v, op==OP_Rewind); testcase( op==OP_Rewind );
1889 VdbeCoverageIf(v, op==OP_Last); testcase( op==OP_Last );
1890 VdbeCoverageIf(v, op==OP_SeekGE); testcase( op==OP_SeekGE );
1891 VdbeCoverageIf(v, op==OP_SeekLE); testcase( op==OP_SeekLE );
1892 assert( op==OP_Rewind || op==OP_Last || op==OP_SeekGE || op==OP_SeekLE);
danddd74212019-08-02 18:43:59 +00001893 }
drha6d2f8e2016-02-22 20:52:26 +00001894 }
drh0bf2ad62016-02-22 21:19:54 +00001895
drh6f82e852015-06-06 20:12:09 +00001896 /* Load the value for the inequality constraint at the end of the
1897 ** range (if any).
1898 */
1899 nConstraint = nEq;
drh5d742e32021-11-02 20:52:20 +00001900 assert( pLevel->p2==0 );
drh6f82e852015-06-06 20:12:09 +00001901 if( pRangeEnd ){
1902 Expr *pRight = pRangeEnd->pExpr->pRight;
drh5d742e32021-11-02 20:52:20 +00001903 if( addrSeekScan ){
1904 /* For a seek-scan that has a range on the lowest term of the index,
1905 ** we have to make the top of the loop be code that sets the end
1906 ** condition of the range. Otherwise, the OP_SeekScan might jump
1907 ** over that initialization, leaving the range-end value set to the
1908 ** range-start value, resulting in a wrong answer.
1909 ** See ticket 5981a8c041a3c2f3 (2021-11-02).
1910 */
1911 pLevel->p2 = sqlite3VdbeCurrentAddr(v);
1912 }
dan71c57db2016-07-09 20:23:55 +00001913 codeExprOrVector(pParse, pRight, regBase+nEq, nTop);
drh6f82e852015-06-06 20:12:09 +00001914 whereLikeOptimizationStringFixup(v, pLevel, pRangeEnd);
drh395a60d2020-09-30 17:32:22 +00001915 if( (pRangeEnd->wtFlags & TERM_VNULL)==0
drh6f82e852015-06-06 20:12:09 +00001916 && sqlite3ExprCanBeNull(pRight)
1917 ){
1918 sqlite3VdbeAddOp2(v, OP_IsNull, regBase+nEq, addrNxt);
1919 VdbeCoverage(v);
1920 }
drh0c36fca2016-08-26 18:17:08 +00001921 if( zEndAff ){
drhe3c6b612016-10-05 20:10:32 +00001922 updateRangeAffinityStr(pRight, nTop, zEndAff);
drh0c36fca2016-08-26 18:17:08 +00001923 codeApplyAffinity(pParse, regBase+nEq, nTop, zEndAff);
1924 }else{
1925 assert( pParse->db->mallocFailed );
1926 }
dan71c57db2016-07-09 20:23:55 +00001927 nConstraint += nTop;
drh6f82e852015-06-06 20:12:09 +00001928 testcase( pRangeEnd->wtFlags & TERM_VIRTUAL );
dan71c57db2016-07-09 20:23:55 +00001929
dan625015e2016-07-30 16:39:28 +00001930 if( sqlite3ExprIsVector(pRight)==0 ){
dan71c57db2016-07-09 20:23:55 +00001931 disableTerm(pLevel, pRangeEnd);
1932 }else{
1933 endEq = 1;
1934 }
drh6f82e852015-06-06 20:12:09 +00001935 }else if( bStopAtNull ){
dan15750a22019-08-16 21:07:19 +00001936 if( regBignull==0 ){
1937 sqlite3VdbeAddOp2(v, OP_Null, 0, regBase+nEq);
1938 endEq = 0;
1939 }
drh6f82e852015-06-06 20:12:09 +00001940 nConstraint++;
1941 }
1942 sqlite3DbFree(db, zStartAff);
danb7ca2172016-08-26 17:54:46 +00001943 sqlite3DbFree(db, zEndAff);
drh6f82e852015-06-06 20:12:09 +00001944
1945 /* Top of the loop body */
drh5d742e32021-11-02 20:52:20 +00001946 if( pLevel->p2==0 ) pLevel->p2 = sqlite3VdbeCurrentAddr(v);
drh6f82e852015-06-06 20:12:09 +00001947
1948 /* Check if the index cursor is past the end of the range. */
1949 if( nConstraint ){
dan15750a22019-08-16 21:07:19 +00001950 if( regBignull ){
drh5f6a4ea2019-08-23 17:00:22 +00001951 /* Except, skip the end-of-range check while doing the NULL-scan */
drhec3dda52019-08-23 13:32:03 +00001952 sqlite3VdbeAddOp2(v, OP_IfNot, regBignull, sqlite3VdbeCurrentAddr(v)+3);
drha31d3552019-08-23 17:09:02 +00001953 VdbeComment((v, "If NULL-scan 2nd pass"));
drh505ae9d2019-08-22 21:13:56 +00001954 VdbeCoverage(v);
dan15750a22019-08-16 21:07:19 +00001955 }
drh6f82e852015-06-06 20:12:09 +00001956 op = aEndOp[bRev*2 + endEq];
1957 sqlite3VdbeAddOp4Int(v, op, iIdxCur, addrNxt, regBase, nConstraint);
1958 testcase( op==OP_IdxGT ); VdbeCoverageIf(v, op==OP_IdxGT );
1959 testcase( op==OP_IdxGE ); VdbeCoverageIf(v, op==OP_IdxGE );
1960 testcase( op==OP_IdxLT ); VdbeCoverageIf(v, op==OP_IdxLT );
1961 testcase( op==OP_IdxLE ); VdbeCoverageIf(v, op==OP_IdxLE );
drh04e70ce2020-10-02 11:55:07 +00001962 if( addrSeekScan ) sqlite3VdbeJumpHere(v, addrSeekScan);
drh6f82e852015-06-06 20:12:09 +00001963 }
dan15750a22019-08-16 21:07:19 +00001964 if( regBignull ){
drh5f6a4ea2019-08-23 17:00:22 +00001965 /* During a NULL-scan, check to see if we have reached the end of
1966 ** the NULLs */
1967 assert( bSeekPastNull==!bStopAtNull );
1968 assert( bSeekPastNull+bStopAtNull==1 );
1969 assert( nConstraint+bSeekPastNull>0 );
drhec3dda52019-08-23 13:32:03 +00001970 sqlite3VdbeAddOp2(v, OP_If, regBignull, sqlite3VdbeCurrentAddr(v)+2);
drha31d3552019-08-23 17:09:02 +00001971 VdbeComment((v, "If NULL-scan 1st pass"));
drh505ae9d2019-08-22 21:13:56 +00001972 VdbeCoverage(v);
drh5f6a4ea2019-08-23 17:00:22 +00001973 op = aEndOp[bRev*2 + bSeekPastNull];
1974 sqlite3VdbeAddOp4Int(v, op, iIdxCur, addrNxt, regBase,
1975 nConstraint+bSeekPastNull);
1976 testcase( op==OP_IdxGT ); VdbeCoverageIf(v, op==OP_IdxGT );
1977 testcase( op==OP_IdxGE ); VdbeCoverageIf(v, op==OP_IdxGE );
1978 testcase( op==OP_IdxLT ); VdbeCoverageIf(v, op==OP_IdxLT );
1979 testcase( op==OP_IdxLE ); VdbeCoverageIf(v, op==OP_IdxLE );
dan15750a22019-08-16 21:07:19 +00001980 }
drh6f82e852015-06-06 20:12:09 +00001981
drhf761d932020-09-29 01:48:46 +00001982 if( (pLoop->wsFlags & WHERE_IN_EARLYOUT)!=0 ){
drhfa17e132020-09-01 01:52:03 +00001983 sqlite3VdbeAddOp3(v, OP_SeekHit, iIdxCur, nEq, nEq);
drh8c2b6d72018-06-05 20:45:20 +00001984 }
1985
drh6f82e852015-06-06 20:12:09 +00001986 /* Seek the table cursor, if required */
drh47df8a22018-12-25 00:15:37 +00001987 omitTable = (pLoop->wsFlags & WHERE_IDX_ONLY)!=0
1988 && (pWInfo->wctrlFlags & WHERE_OR_SUBCLAUSE)==0;
drh6f82e852015-06-06 20:12:09 +00001989 if( omitTable ){
1990 /* pIdx is a covering index. No need to access the main table. */
1991 }else if( HasRowid(pIdx->pTable) ){
drh68c0c712020-08-14 20:04:26 +00001992 codeDeferredSeek(pWInfo, pIdx, iCur, iIdxCur);
drh6f82e852015-06-06 20:12:09 +00001993 }else if( iCur!=iIdxCur ){
1994 Index *pPk = sqlite3PrimaryKeyIndex(pIdx->pTable);
1995 iRowidReg = sqlite3GetTempRange(pParse, pPk->nKeyCol);
1996 for(j=0; j<pPk->nKeyCol; j++){
drhb9bcf7c2019-10-19 13:29:10 +00001997 k = sqlite3TableColumnToIndex(pIdx, pPk->aiColumn[j]);
drh6f82e852015-06-06 20:12:09 +00001998 sqlite3VdbeAddOp3(v, OP_Column, iIdxCur, k, iRowidReg+j);
1999 }
2000 sqlite3VdbeAddOp4Int(v, OP_NotFound, iCur, addrCont,
2001 iRowidReg, pPk->nKeyCol); VdbeCoverage(v);
2002 }
2003
drhdb535392019-11-03 00:07:41 +00002004 if( pLevel->iLeftJoin==0 ){
2005 /* If pIdx is an index on one or more expressions, then look through
2006 ** all the expressions in pWInfo and try to transform matching expressions
2007 ** into reference to index columns. Also attempt to translate references
2008 ** to virtual columns in the table into references to (stored) columns
2009 ** of the index.
2010 **
2011 ** Do not do this for the RHS of a LEFT JOIN. This is because the
2012 ** expression may be evaluated after OP_NullRow has been executed on
2013 ** the cursor. In this case it is important to do the full evaluation,
2014 ** as the result of the expression may not be NULL, even if all table
2015 ** column values are. https://www.sqlite.org/src/info/7fa8049685b50b5a
2016 **
2017 ** Also, do not do this when processing one index an a multi-index
2018 ** OR clause, since the transformation will become invalid once we
2019 ** move forward to the next index.
2020 ** https://sqlite.org/src/info/4e8e4857d32d401f
2021 */
2022 if( (pWInfo->wctrlFlags & WHERE_OR_SUBCLAUSE)==0 ){
2023 whereIndexExprTrans(pIdx, iCur, iIdxCur, pWInfo);
2024 }
2025
2026 /* If a partial index is driving the loop, try to eliminate WHERE clause
2027 ** terms from the query that must be true due to the WHERE clause of
2028 ** the partial index.
2029 **
2030 ** 2019-11-02 ticket 623eff57e76d45f6: This optimization does not work
2031 ** for a LEFT JOIN.
2032 */
2033 if( pIdx->pPartIdxWhere ){
2034 whereApplyPartialIndexConstraints(pIdx->pPartIdxWhere, iCur, pWC);
2035 }
2036 }else{
drhdb535392019-11-03 00:07:41 +00002037 testcase( pIdx->pPartIdxWhere );
drh06fc2452019-11-04 12:49:15 +00002038 /* The following assert() is not a requirement, merely an observation:
2039 ** The OR-optimization doesn't work for the right hand table of
2040 ** a LEFT JOIN: */
2041 assert( (pWInfo->wctrlFlags & WHERE_OR_SUBCLAUSE)==0 );
dan4da04f72018-04-24 14:05:14 +00002042 }
drhdb535392019-11-03 00:07:41 +00002043
dan71c57db2016-07-09 20:23:55 +00002044 /* Record the instruction used to terminate the loop. */
drh6f82e852015-06-06 20:12:09 +00002045 if( pLoop->wsFlags & WHERE_ONEROW ){
2046 pLevel->op = OP_Noop;
2047 }else if( bRev ){
2048 pLevel->op = OP_Prev;
2049 }else{
2050 pLevel->op = OP_Next;
2051 }
2052 pLevel->p1 = iIdxCur;
2053 pLevel->p3 = (pLoop->wsFlags&WHERE_UNQ_WANTED)!=0 ? 1:0;
2054 if( (pLoop->wsFlags & WHERE_CONSTRAINT)==0 ){
2055 pLevel->p5 = SQLITE_STMTSTATUS_FULLSCAN_STEP;
2056 }else{
2057 assert( pLevel->p5==0 );
2058 }
dan6f654a42017-04-28 19:59:55 +00002059 if( omitTable ) pIdx = 0;
drh6f82e852015-06-06 20:12:09 +00002060 }else
2061
2062#ifndef SQLITE_OMIT_OR_OPTIMIZATION
2063 if( pLoop->wsFlags & WHERE_MULTI_OR ){
2064 /* Case 5: Two or more separately indexed terms connected by OR
2065 **
2066 ** Example:
2067 **
2068 ** CREATE TABLE t1(a,b,c,d);
2069 ** CREATE INDEX i1 ON t1(a);
2070 ** CREATE INDEX i2 ON t1(b);
2071 ** CREATE INDEX i3 ON t1(c);
2072 **
2073 ** SELECT * FROM t1 WHERE a=5 OR b=7 OR (c=11 AND d=13)
2074 **
2075 ** In the example, there are three indexed terms connected by OR.
2076 ** The top of the loop looks like this:
2077 **
2078 ** Null 1 # Zero the rowset in reg 1
2079 **
2080 ** Then, for each indexed term, the following. The arguments to
2081 ** RowSetTest are such that the rowid of the current row is inserted
2082 ** into the RowSet. If it is already present, control skips the
2083 ** Gosub opcode and jumps straight to the code generated by WhereEnd().
2084 **
2085 ** sqlite3WhereBegin(<term>)
2086 ** RowSetTest # Insert rowid into rowset
2087 ** Gosub 2 A
2088 ** sqlite3WhereEnd()
2089 **
2090 ** Following the above, code to terminate the loop. Label A, the target
2091 ** of the Gosub above, jumps to the instruction right after the Goto.
2092 **
2093 ** Null 1 # Zero the rowset in reg 1
2094 ** Goto B # The loop is finished.
2095 **
2096 ** A: <loop body> # Return data, whatever.
2097 **
2098 ** Return 2 # Jump back to the Gosub
2099 **
2100 ** B: <after the loop>
2101 **
2102 ** Added 2014-05-26: If the table is a WITHOUT ROWID table, then
2103 ** use an ephemeral index instead of a RowSet to record the primary
2104 ** keys of the rows we have already seen.
2105 **
2106 */
2107 WhereClause *pOrWc; /* The OR-clause broken out into subterms */
2108 SrcList *pOrTab; /* Shortened table list or OR-clause generation */
2109 Index *pCov = 0; /* Potential covering index (or NULL) */
2110 int iCovCur = pParse->nTab++; /* Cursor used for index scans (if any) */
2111
2112 int regReturn = ++pParse->nMem; /* Register used with OP_Gosub */
2113 int regRowset = 0; /* Register for RowSet object */
2114 int regRowid = 0; /* Register holding rowid */
drhec4ccdb2018-12-29 02:26:59 +00002115 int iLoopBody = sqlite3VdbeMakeLabel(pParse);/* Start of loop body */
drh6f82e852015-06-06 20:12:09 +00002116 int iRetInit; /* Address of regReturn init */
2117 int untestedTerms = 0; /* Some terms not completely tested */
2118 int ii; /* Loop counter */
drh6f82e852015-06-06 20:12:09 +00002119 Expr *pAndExpr = 0; /* An ".. AND (...)" expression */
2120 Table *pTab = pTabItem->pTab;
dan145b4ea2016-07-29 18:12:12 +00002121
drh6f82e852015-06-06 20:12:09 +00002122 pTerm = pLoop->aLTerm[0];
2123 assert( pTerm!=0 );
2124 assert( pTerm->eOperator & WO_OR );
2125 assert( (pTerm->wtFlags & TERM_ORINFO)!=0 );
2126 pOrWc = &pTerm->u.pOrInfo->wc;
2127 pLevel->op = OP_Return;
2128 pLevel->p1 = regReturn;
2129
2130 /* Set up a new SrcList in pOrTab containing the table being scanned
2131 ** by this loop in the a[0] slot and all notReady tables in a[1..] slots.
2132 ** This becomes the SrcList in the recursive call to sqlite3WhereBegin().
2133 */
2134 if( pWInfo->nLevel>1 ){
2135 int nNotReady; /* The number of notReady tables */
drh76012942021-02-21 21:04:54 +00002136 SrcItem *origSrc; /* Original list of tables */
drh6f82e852015-06-06 20:12:09 +00002137 nNotReady = pWInfo->nLevel - iLevel - 1;
2138 pOrTab = sqlite3StackAllocRaw(db,
2139 sizeof(*pOrTab)+ nNotReady*sizeof(pOrTab->a[0]));
2140 if( pOrTab==0 ) return notReady;
2141 pOrTab->nAlloc = (u8)(nNotReady + 1);
2142 pOrTab->nSrc = pOrTab->nAlloc;
2143 memcpy(pOrTab->a, pTabItem, sizeof(*pTabItem));
2144 origSrc = pWInfo->pTabList->a;
2145 for(k=1; k<=nNotReady; k++){
2146 memcpy(&pOrTab->a[k], &origSrc[pLevel[k].iFrom], sizeof(pOrTab->a[k]));
2147 }
2148 }else{
2149 pOrTab = pWInfo->pTabList;
2150 }
2151
2152 /* Initialize the rowset register to contain NULL. An SQL NULL is
2153 ** equivalent to an empty rowset. Or, create an ephemeral index
2154 ** capable of holding primary keys in the case of a WITHOUT ROWID.
2155 **
2156 ** Also initialize regReturn to contain the address of the instruction
2157 ** immediately following the OP_Return at the bottom of the loop. This
2158 ** is required in a few obscure LEFT JOIN cases where control jumps
2159 ** over the top of the loop into the body of it. In this case the
2160 ** correct response for the end-of-loop code (the OP_Return) is to
2161 ** fall through to the next instruction, just as an OP_Next does if
2162 ** called on an uninitialized cursor.
2163 */
2164 if( (pWInfo->wctrlFlags & WHERE_DUPLICATES_OK)==0 ){
2165 if( HasRowid(pTab) ){
2166 regRowset = ++pParse->nMem;
2167 sqlite3VdbeAddOp2(v, OP_Null, 0, regRowset);
2168 }else{
2169 Index *pPk = sqlite3PrimaryKeyIndex(pTab);
2170 regRowset = pParse->nTab++;
2171 sqlite3VdbeAddOp2(v, OP_OpenEphemeral, regRowset, pPk->nKeyCol);
2172 sqlite3VdbeSetP4KeyInfo(pParse, pPk);
2173 }
2174 regRowid = ++pParse->nMem;
2175 }
2176 iRetInit = sqlite3VdbeAddOp2(v, OP_Integer, 0, regReturn);
2177
2178 /* If the original WHERE clause is z of the form: (x1 OR x2 OR ...) AND y
2179 ** Then for every term xN, evaluate as the subexpression: xN AND z
2180 ** That way, terms in y that are factored into the disjunction will
2181 ** be picked up by the recursive calls to sqlite3WhereBegin() below.
2182 **
2183 ** Actually, each subexpression is converted to "xN AND w" where w is
2184 ** the "interesting" terms of z - terms that did not originate in the
2185 ** ON or USING clause of a LEFT JOIN, and terms that are usable as
2186 ** indices.
2187 **
2188 ** This optimization also only applies if the (x1 OR x2 OR ...) term
2189 ** is not contained in the ON clause of a LEFT JOIN.
2190 ** See ticket http://www.sqlite.org/src/info/f2369304e4
2191 */
2192 if( pWC->nTerm>1 ){
2193 int iTerm;
2194 for(iTerm=0; iTerm<pWC->nTerm; iTerm++){
2195 Expr *pExpr = pWC->a[iTerm].pExpr;
2196 if( &pWC->a[iTerm] == pTerm ) continue;
drh3b83f0c2016-01-29 16:57:06 +00002197 testcase( pWC->a[iTerm].wtFlags & TERM_VIRTUAL );
2198 testcase( pWC->a[iTerm].wtFlags & TERM_CODED );
2199 if( (pWC->a[iTerm].wtFlags & (TERM_VIRTUAL|TERM_CODED))!=0 ) continue;
drh6f82e852015-06-06 20:12:09 +00002200 if( (pWC->a[iTerm].eOperator & WO_ALL)==0 ) continue;
2201 testcase( pWC->a[iTerm].wtFlags & TERM_ORINFO );
2202 pExpr = sqlite3ExprDup(db, pExpr, 0);
drhd5c851c2019-04-19 13:38:34 +00002203 pAndExpr = sqlite3ExprAnd(pParse, pAndExpr, pExpr);
drh6f82e852015-06-06 20:12:09 +00002204 }
2205 if( pAndExpr ){
drhf1722ba2019-04-05 20:56:46 +00002206 /* The extra 0x10000 bit on the opcode is masked off and does not
2207 ** become part of the new Expr.op. However, it does make the
2208 ** op==TK_AND comparison inside of sqlite3PExpr() false, and this
drh93ffb502021-05-18 19:10:10 +00002209 ** prevents sqlite3PExpr() from applying the AND short-circuit
drhf1722ba2019-04-05 20:56:46 +00002210 ** optimization, which we do not want here. */
2211 pAndExpr = sqlite3PExpr(pParse, TK_AND|0x10000, 0, pAndExpr);
drh6f82e852015-06-06 20:12:09 +00002212 }
2213 }
2214
2215 /* Run a separate WHERE clause for each term of the OR clause. After
2216 ** eliminating duplicates from other WHERE clauses, the action for each
2217 ** sub-WHERE clause is to to invoke the main loop body as a subroutine.
2218 */
drh5d72d922018-05-04 00:39:43 +00002219 ExplainQueryPlan((pParse, 1, "MULTI-INDEX OR"));
drh6f82e852015-06-06 20:12:09 +00002220 for(ii=0; ii<pOrWc->nTerm; ii++){
2221 WhereTerm *pOrTerm = &pOrWc->a[ii];
2222 if( pOrTerm->leftCursor==iCur || (pOrTerm->eOperator & WO_AND)!=0 ){
2223 WhereInfo *pSubWInfo; /* Info for single OR-term scan */
2224 Expr *pOrExpr = pOrTerm->pExpr; /* Current OR clause term */
drh93ffb502021-05-18 19:10:10 +00002225 Expr *pDelete; /* Local copy of OR clause term */
drh728e0f92015-10-10 14:41:28 +00002226 int jmp1 = 0; /* Address of jump operation */
drh3b8eb082020-01-12 22:38:17 +00002227 testcase( (pTabItem[0].fg.jointype & JT_LEFT)!=0
2228 && !ExprHasProperty(pOrExpr, EP_FromJoin)
2229 ); /* See TH3 vtab25.400 and ticket 614b25314c766238 */
drh93ffb502021-05-18 19:10:10 +00002230 pDelete = pOrExpr = sqlite3ExprDup(db, pOrExpr, 0);
2231 if( db->mallocFailed ){
2232 sqlite3ExprDelete(db, pDelete);
2233 continue;
2234 }
dan820fcd22018-04-24 18:53:24 +00002235 if( pAndExpr ){
drh6f82e852015-06-06 20:12:09 +00002236 pAndExpr->pLeft = pOrExpr;
2237 pOrExpr = pAndExpr;
2238 }
2239 /* Loop through table entries that match term pOrTerm. */
drhbd462bc2018-12-24 20:21:06 +00002240 ExplainQueryPlan((pParse, 1, "INDEX %d", ii+1));
drh6f82e852015-06-06 20:12:09 +00002241 WHERETRACE(0xffff, ("Subplan for OR-clause:\n"));
2242 pSubWInfo = sqlite3WhereBegin(pParse, pOrTab, pOrExpr, 0, 0,
drh68c0c712020-08-14 20:04:26 +00002243 WHERE_OR_SUBCLAUSE, iCovCur);
drh6f82e852015-06-06 20:12:09 +00002244 assert( pSubWInfo || pParse->nErr || db->mallocFailed );
2245 if( pSubWInfo ){
2246 WhereLoop *pSubLoop;
2247 int addrExplain = sqlite3WhereExplainOneScan(
drhe2188f02018-05-07 11:37:34 +00002248 pParse, pOrTab, &pSubWInfo->a[0], 0
drh6f82e852015-06-06 20:12:09 +00002249 );
2250 sqlite3WhereAddScanStatus(v, pOrTab, &pSubWInfo->a[0], addrExplain);
2251
2252 /* This is the sub-WHERE clause body. First skip over
2253 ** duplicate rows from prior sub-WHERE clauses, and record the
2254 ** rowid (or PRIMARY KEY) for the current row so that the same
2255 ** row will be skipped in subsequent sub-WHERE clauses.
2256 */
2257 if( (pWInfo->wctrlFlags & WHERE_DUPLICATES_OK)==0 ){
drh6f82e852015-06-06 20:12:09 +00002258 int iSet = ((ii==pOrWc->nTerm-1)?-1:ii);
2259 if( HasRowid(pTab) ){
drh6df9c4b2019-10-18 12:52:08 +00002260 sqlite3ExprCodeGetColumnOfTable(v, pTab, iCur, -1, regRowid);
drh728e0f92015-10-10 14:41:28 +00002261 jmp1 = sqlite3VdbeAddOp4Int(v, OP_RowSetTest, regRowset, 0,
drh8c607192018-08-04 15:53:55 +00002262 regRowid, iSet);
drh6f82e852015-06-06 20:12:09 +00002263 VdbeCoverage(v);
2264 }else{
2265 Index *pPk = sqlite3PrimaryKeyIndex(pTab);
2266 int nPk = pPk->nKeyCol;
2267 int iPk;
drh8c607192018-08-04 15:53:55 +00002268 int r;
drh6f82e852015-06-06 20:12:09 +00002269
2270 /* Read the PK into an array of temp registers. */
2271 r = sqlite3GetTempRange(pParse, nPk);
2272 for(iPk=0; iPk<nPk; iPk++){
2273 int iCol = pPk->aiColumn[iPk];
drh6df9c4b2019-10-18 12:52:08 +00002274 sqlite3ExprCodeGetColumnOfTable(v, pTab, iCur, iCol,r+iPk);
drh6f82e852015-06-06 20:12:09 +00002275 }
2276
2277 /* Check if the temp table already contains this key. If so,
2278 ** the row has already been included in the result set and
2279 ** can be ignored (by jumping past the Gosub below). Otherwise,
2280 ** insert the key into the temp table and proceed with processing
2281 ** the row.
2282 **
2283 ** Use some of the same optimizations as OP_RowSetTest: If iSet
2284 ** is zero, assume that the key cannot already be present in
2285 ** the temp table. And if iSet is -1, assume that there is no
2286 ** need to insert the key into the temp table, as it will never
2287 ** be tested for. */
2288 if( iSet ){
drh728e0f92015-10-10 14:41:28 +00002289 jmp1 = sqlite3VdbeAddOp4Int(v, OP_Found, regRowset, 0, r, nPk);
drh6f82e852015-06-06 20:12:09 +00002290 VdbeCoverage(v);
2291 }
2292 if( iSet>=0 ){
2293 sqlite3VdbeAddOp3(v, OP_MakeRecord, r, nPk, regRowid);
drh9b4eaeb2016-11-09 00:10:33 +00002294 sqlite3VdbeAddOp4Int(v, OP_IdxInsert, regRowset, regRowid,
2295 r, nPk);
drh6f82e852015-06-06 20:12:09 +00002296 if( iSet ) sqlite3VdbeChangeP5(v, OPFLAG_USESEEKRESULT);
2297 }
2298
2299 /* Release the array of temp registers */
2300 sqlite3ReleaseTempRange(pParse, r, nPk);
2301 }
2302 }
2303
2304 /* Invoke the main loop body as a subroutine */
2305 sqlite3VdbeAddOp2(v, OP_Gosub, regReturn, iLoopBody);
2306
2307 /* Jump here (skipping the main loop body subroutine) if the
2308 ** current sub-WHERE row is a duplicate from prior sub-WHEREs. */
drh728e0f92015-10-10 14:41:28 +00002309 if( jmp1 ) sqlite3VdbeJumpHere(v, jmp1);
drh6f82e852015-06-06 20:12:09 +00002310
2311 /* The pSubWInfo->untestedTerms flag means that this OR term
2312 ** contained one or more AND term from a notReady table. The
2313 ** terms from the notReady table could not be tested and will
2314 ** need to be tested later.
2315 */
2316 if( pSubWInfo->untestedTerms ) untestedTerms = 1;
2317
2318 /* If all of the OR-connected terms are optimized using the same
2319 ** index, and the index is opened using the same cursor number
2320 ** by each call to sqlite3WhereBegin() made by this loop, it may
2321 ** be possible to use that index as a covering index.
2322 **
2323 ** If the call to sqlite3WhereBegin() above resulted in a scan that
2324 ** uses an index, and this is either the first OR-connected term
2325 ** processed or the index is the same as that used by all previous
2326 ** terms, set pCov to the candidate covering index. Otherwise, set
2327 ** pCov to NULL to indicate that no candidate covering index will
2328 ** be available.
2329 */
2330 pSubLoop = pSubWInfo->a[0].pWLoop;
2331 assert( (pSubLoop->wsFlags & WHERE_AUTO_INDEX)==0 );
2332 if( (pSubLoop->wsFlags & WHERE_INDEXED)!=0
2333 && (ii==0 || pSubLoop->u.btree.pIndex==pCov)
2334 && (HasRowid(pTab) || !IsPrimaryKeyIndex(pSubLoop->u.btree.pIndex))
2335 ){
2336 assert( pSubWInfo->a[0].iIdxCur==iCovCur );
2337 pCov = pSubLoop->u.btree.pIndex;
drh6f82e852015-06-06 20:12:09 +00002338 }else{
2339 pCov = 0;
2340 }
drh68c0c712020-08-14 20:04:26 +00002341 if( sqlite3WhereUsesDeferredSeek(pSubWInfo) ){
2342 pWInfo->bDeferredSeek = 1;
2343 }
drh6f82e852015-06-06 20:12:09 +00002344
2345 /* Finish the loop through table entries that match term pOrTerm. */
2346 sqlite3WhereEnd(pSubWInfo);
drhbd462bc2018-12-24 20:21:06 +00002347 ExplainQueryPlanPop(pParse);
drh6f82e852015-06-06 20:12:09 +00002348 }
drh93ffb502021-05-18 19:10:10 +00002349 sqlite3ExprDelete(db, pDelete);
drh6f82e852015-06-06 20:12:09 +00002350 }
2351 }
drh5d72d922018-05-04 00:39:43 +00002352 ExplainQueryPlanPop(pParse);
drh04756292021-10-14 19:28:28 +00002353 assert( pLevel->pWLoop==pLoop );
2354 assert( (pLoop->wsFlags & WHERE_MULTI_OR)!=0 );
2355 assert( (pLoop->wsFlags & WHERE_IN_ABLE)==0 );
2356 pLevel->u.pCoveringIdx = pCov;
drh6f82e852015-06-06 20:12:09 +00002357 if( pCov ) pLevel->iIdxCur = iCovCur;
2358 if( pAndExpr ){
2359 pAndExpr->pLeft = 0;
2360 sqlite3ExprDelete(db, pAndExpr);
2361 }
2362 sqlite3VdbeChangeP1(v, iRetInit, sqlite3VdbeCurrentAddr(v));
drh076e85f2015-09-03 13:46:12 +00002363 sqlite3VdbeGoto(v, pLevel->addrBrk);
drh6f82e852015-06-06 20:12:09 +00002364 sqlite3VdbeResolveLabel(v, iLoopBody);
2365
drhdd2d9a32019-05-07 17:47:43 +00002366 if( pWInfo->nLevel>1 ){ sqlite3StackFree(db, pOrTab); }
drh6f82e852015-06-06 20:12:09 +00002367 if( !untestedTerms ) disableTerm(pLevel, pTerm);
2368 }else
2369#endif /* SQLITE_OMIT_OR_OPTIMIZATION */
2370
2371 {
2372 /* Case 6: There is no usable index. We must do a complete
2373 ** scan of the entire table.
2374 */
2375 static const u8 aStep[] = { OP_Next, OP_Prev };
2376 static const u8 aStart[] = { OP_Rewind, OP_Last };
2377 assert( bRev==0 || bRev==1 );
drh8a48b9c2015-08-19 15:20:00 +00002378 if( pTabItem->fg.isRecursive ){
drh6f82e852015-06-06 20:12:09 +00002379 /* Tables marked isRecursive have only a single row that is stored in
2380 ** a pseudo-cursor. No need to Rewind or Next such cursors. */
2381 pLevel->op = OP_Noop;
2382 }else{
danb324cf72016-06-17 14:33:32 +00002383 codeCursorHint(pTabItem, pWInfo, pLevel, 0);
drh6f82e852015-06-06 20:12:09 +00002384 pLevel->op = aStep[bRev];
2385 pLevel->p1 = iCur;
drh3a3b4202017-02-15 22:36:15 +00002386 pLevel->p2 = 1 + sqlite3VdbeAddOp2(v, aStart[bRev], iCur, addrHalt);
drh6f82e852015-06-06 20:12:09 +00002387 VdbeCoverageIf(v, bRev==0);
2388 VdbeCoverageIf(v, bRev!=0);
2389 pLevel->p5 = SQLITE_STMTSTATUS_FULLSCAN_STEP;
2390 }
2391 }
2392
2393#ifdef SQLITE_ENABLE_STMT_SCANSTATUS
2394 pLevel->addrVisit = sqlite3VdbeCurrentAddr(v);
2395#endif
2396
2397 /* Insert code to test every subexpression that can be completely
2398 ** computed using the current set of tables.
dan6f654a42017-04-28 19:59:55 +00002399 **
danebc63012017-07-10 14:33:00 +00002400 ** This loop may run between one and three times, depending on the
2401 ** constraints to be generated. The value of stack variable iLoop
2402 ** determines the constraints coded by each iteration, as follows:
2403 **
2404 ** iLoop==1: Code only expressions that are entirely covered by pIdx.
2405 ** iLoop==2: Code remaining expressions that do not contain correlated
2406 ** sub-queries.
2407 ** iLoop==3: Code all remaining expressions.
2408 **
2409 ** An effort is made to skip unnecessary iterations of the loop.
drh6ab3eb52017-04-29 14:56:55 +00002410 */
danebc63012017-07-10 14:33:00 +00002411 iLoop = (pIdx ? 1 : 2);
drh6ab3eb52017-04-29 14:56:55 +00002412 do{
danebc63012017-07-10 14:33:00 +00002413 int iNext = 0; /* Next value for iLoop */
dan6f654a42017-04-28 19:59:55 +00002414 for(pTerm=pWC->a, j=pWC->nTerm; j>0; j--, pTerm++){
2415 Expr *pE;
2416 int skipLikeAddr = 0;
2417 testcase( pTerm->wtFlags & TERM_VIRTUAL );
2418 testcase( pTerm->wtFlags & TERM_CODED );
2419 if( pTerm->wtFlags & (TERM_VIRTUAL|TERM_CODED) ) continue;
2420 if( (pTerm->prereqAll & pLevel->notReady)!=0 ){
2421 testcase( pWInfo->untestedTerms==0
2422 && (pWInfo->wctrlFlags & WHERE_OR_SUBCLAUSE)!=0 );
2423 pWInfo->untestedTerms = 1;
2424 continue;
2425 }
2426 pE = pTerm->pExpr;
2427 assert( pE!=0 );
dan820fcd22018-04-24 18:53:24 +00002428 if( (pTabItem->fg.jointype&JT_LEFT) && !ExprHasProperty(pE,EP_FromJoin) ){
dan6f654a42017-04-28 19:59:55 +00002429 continue;
2430 }
danebc63012017-07-10 14:33:00 +00002431
dan8674ec52017-07-10 14:39:42 +00002432 if( iLoop==1 && !sqlite3ExprCoveredByIndex(pE, pLevel->iTabCur, pIdx) ){
danebc63012017-07-10 14:33:00 +00002433 iNext = 2;
dan6f654a42017-04-28 19:59:55 +00002434 continue;
2435 }
dand3930b12017-07-10 15:17:30 +00002436 if( iLoop<3 && (pTerm->wtFlags & TERM_VARSELECT) ){
danebc63012017-07-10 14:33:00 +00002437 if( iNext==0 ) iNext = 3;
2438 continue;
2439 }
2440
drh4de33532018-04-02 00:16:36 +00002441 if( (pTerm->wtFlags & TERM_LIKECOND)!=0 ){
dan6f654a42017-04-28 19:59:55 +00002442 /* If the TERM_LIKECOND flag is set, that means that the range search
2443 ** is sufficient to guarantee that the LIKE operator is true, so we
2444 ** can skip the call to the like(A,B) function. But this only works
2445 ** for strings. So do not skip the call to the function on the pass
2446 ** that compares BLOBs. */
drh41d2e662015-12-01 21:23:07 +00002447#ifdef SQLITE_LIKE_DOESNT_MATCH_BLOBS
dan6f654a42017-04-28 19:59:55 +00002448 continue;
drh41d2e662015-12-01 21:23:07 +00002449#else
dan6f654a42017-04-28 19:59:55 +00002450 u32 x = pLevel->iLikeRepCntr;
drh4de33532018-04-02 00:16:36 +00002451 if( x>0 ){
2452 skipLikeAddr = sqlite3VdbeAddOp1(v, (x&1)?OP_IfNot:OP_If,(int)(x>>1));
drh6f883592019-03-30 20:37:04 +00002453 VdbeCoverageIf(v, (x&1)==1);
2454 VdbeCoverageIf(v, (x&1)==0);
drh4de33532018-04-02 00:16:36 +00002455 }
drh41d2e662015-12-01 21:23:07 +00002456#endif
dan6f654a42017-04-28 19:59:55 +00002457 }
drh66a0bf32017-07-10 16:38:14 +00002458#ifdef WHERETRACE_ENABLED /* 0xffff */
2459 if( sqlite3WhereTrace ){
2460 VdbeNoopComment((v, "WhereTerm[%d] (%p) priority=%d",
2461 pWC->nTerm-j, pTerm, iLoop));
2462 }
drh118efd12019-12-28 14:07:22 +00002463 if( sqlite3WhereTrace & 0x800 ){
2464 sqlite3DebugPrintf("Coding auxiliary constraint:\n");
2465 sqlite3WhereTermPrint(pTerm, pWC->nTerm-j);
2466 }
drh66a0bf32017-07-10 16:38:14 +00002467#endif
dan6f654a42017-04-28 19:59:55 +00002468 sqlite3ExprIfFalse(pParse, pE, addrCont, SQLITE_JUMPIFNULL);
2469 if( skipLikeAddr ) sqlite3VdbeJumpHere(v, skipLikeAddr);
2470 pTerm->wtFlags |= TERM_CODED;
drh6f82e852015-06-06 20:12:09 +00002471 }
danebc63012017-07-10 14:33:00 +00002472 iLoop = iNext;
2473 }while( iLoop>0 );
drh6f82e852015-06-06 20:12:09 +00002474
2475 /* Insert code to test for implied constraints based on transitivity
2476 ** of the "==" operator.
2477 **
2478 ** Example: If the WHERE clause contains "t1.a=t2.b" and "t2.b=123"
2479 ** and we are coding the t1 loop and the t2 loop has not yet coded,
2480 ** then we cannot use the "t1.a=t2.b" constraint, but we can code
2481 ** the implied "t1.a=123" constraint.
2482 */
2483 for(pTerm=pWC->a, j=pWC->nTerm; j>0; j--, pTerm++){
drhcb43a932016-10-03 01:21:51 +00002484 Expr *pE, sEAlt;
drh6f82e852015-06-06 20:12:09 +00002485 WhereTerm *pAlt;
2486 if( pTerm->wtFlags & (TERM_VIRTUAL|TERM_CODED) ) continue;
2487 if( (pTerm->eOperator & (WO_EQ|WO_IS))==0 ) continue;
2488 if( (pTerm->eOperator & WO_EQUIV)==0 ) continue;
2489 if( pTerm->leftCursor!=iCur ) continue;
drha4b2df52019-12-28 16:20:23 +00002490 if( pTabItem->fg.jointype & JT_LEFT ) continue;
drh6f82e852015-06-06 20:12:09 +00002491 pE = pTerm->pExpr;
drh118efd12019-12-28 14:07:22 +00002492#ifdef WHERETRACE_ENABLED /* 0x800 */
2493 if( sqlite3WhereTrace & 0x800 ){
2494 sqlite3DebugPrintf("Coding transitive constraint:\n");
2495 sqlite3WhereTermPrint(pTerm, pWC->nTerm-j);
2496 }
2497#endif
drhf1bb31e2019-12-28 14:33:26 +00002498 assert( !ExprHasProperty(pE, EP_FromJoin) );
drh6f82e852015-06-06 20:12:09 +00002499 assert( (pTerm->prereqRight & pLevel->notReady)!=0 );
drh220f0d62021-10-15 17:06:16 +00002500 assert( (pTerm->eOperator & (WO_OR|WO_AND))==0 );
drh75fa2662020-09-28 15:49:43 +00002501 pAlt = sqlite3WhereFindTerm(pWC, iCur, pTerm->u.x.leftColumn, notReady,
drh6f82e852015-06-06 20:12:09 +00002502 WO_EQ|WO_IN|WO_IS, 0);
2503 if( pAlt==0 ) continue;
2504 if( pAlt->wtFlags & (TERM_CODED) ) continue;
dana916b572018-01-23 16:38:57 +00002505 if( (pAlt->eOperator & WO_IN)
drha4eeccd2021-10-07 17:43:30 +00002506 && ExprUseXSelect(pAlt->pExpr)
drha599e152018-12-24 14:30:11 +00002507 && (pAlt->pExpr->x.pSelect->pEList->nExpr>1)
dana916b572018-01-23 16:38:57 +00002508 ){
2509 continue;
2510 }
drh6f82e852015-06-06 20:12:09 +00002511 testcase( pAlt->eOperator & WO_EQ );
2512 testcase( pAlt->eOperator & WO_IS );
2513 testcase( pAlt->eOperator & WO_IN );
2514 VdbeModuleComment((v, "begin transitive constraint"));
drhcb43a932016-10-03 01:21:51 +00002515 sEAlt = *pAlt->pExpr;
2516 sEAlt.pLeft = pE->pLeft;
2517 sqlite3ExprIfFalse(pParse, &sEAlt, addrCont, SQLITE_JUMPIFNULL);
dan240e36c2021-04-05 16:20:59 +00002518 pAlt->wtFlags |= TERM_CODED;
drh6f82e852015-06-06 20:12:09 +00002519 }
2520
2521 /* For a LEFT OUTER JOIN, generate code that will record the fact that
2522 ** at least one row of the right table has matched the left table.
2523 */
2524 if( pLevel->iLeftJoin ){
2525 pLevel->addrFirst = sqlite3VdbeCurrentAddr(v);
2526 sqlite3VdbeAddOp2(v, OP_Integer, 1, pLevel->iLeftJoin);
2527 VdbeComment((v, "record LEFT JOIN hit"));
drh6f82e852015-06-06 20:12:09 +00002528 for(pTerm=pWC->a, j=0; j<pWC->nTerm; j++, pTerm++){
2529 testcase( pTerm->wtFlags & TERM_VIRTUAL );
2530 testcase( pTerm->wtFlags & TERM_CODED );
2531 if( pTerm->wtFlags & (TERM_VIRTUAL|TERM_CODED) ) continue;
2532 if( (pTerm->prereqAll & pLevel->notReady)!=0 ){
2533 assert( pWInfo->untestedTerms );
2534 continue;
2535 }
2536 assert( pTerm->pExpr );
2537 sqlite3ExprIfFalse(pParse, pTerm->pExpr, addrCont, SQLITE_JUMPIFNULL);
2538 pTerm->wtFlags |= TERM_CODED;
2539 }
2540 }
2541
drh118efd12019-12-28 14:07:22 +00002542#if WHERETRACE_ENABLED /* 0x20800 */
2543 if( sqlite3WhereTrace & 0x20000 ){
drhf1bb31e2019-12-28 14:33:26 +00002544 sqlite3DebugPrintf("All WHERE-clause terms after coding level %d:\n",
2545 iLevel);
drh118efd12019-12-28 14:07:22 +00002546 sqlite3WhereClausePrint(pWC);
2547 }
2548 if( sqlite3WhereTrace & 0x800 ){
2549 sqlite3DebugPrintf("End Coding level %d: notReady=%llx\n",
2550 iLevel, (u64)pLevel->notReady);
2551 }
2552#endif
drh6f82e852015-06-06 20:12:09 +00002553 return pLevel->notReady;
2554}