blob: 8dcea0fa059fba98bfc3a19145996e47e75b0def [file] [log] [blame]
drh75897232000-05-29 14:26:00 +00001/*
drhb19a2bc2001-09-16 00:13:26 +00002** 2001 September 15
drh75897232000-05-29 14:26:00 +00003**
drhb19a2bc2001-09-16 00:13:26 +00004** The author disclaims copyright to this source code. In place of
5** a legal notice, here is a blessing:
drh75897232000-05-29 14:26:00 +00006**
drhb19a2bc2001-09-16 00:13:26 +00007** 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.
drh75897232000-05-29 14:26:00 +000010**
11*************************************************************************
12** This module contains C code that generates VDBE code used to process
drh909626d2008-05-30 14:58:37 +000013** the WHERE clause of SQL statements. This module is responsible for
drh51669862004-12-18 18:40:26 +000014** generating the code that loops through a table looking for applicable
15** rows. Indices are selected and used to speed the search when doing
16** so is applicable. Because this module is responsible for selecting
17** indices, you might also think of this module as the "query optimizer".
drh75897232000-05-29 14:26:00 +000018*/
19#include "sqliteInt.h"
drhe54df422013-11-12 18:37:25 +000020#include "whereInt.h"
drh51147ba2005-07-23 22:59:55 +000021
drhefc88d02017-12-22 00:52:50 +000022/*
23** Extra information appended to the end of sqlite3_index_info but not
24** visible to the xBestIndex function, at least not directly. The
25** sqlite3_vtab_collation() interface knows how to reach it, however.
26**
27** This object is not an API and can be changed from one release to the
28** next. As long as allocateIndexInfo() and sqlite3_vtab_collation()
29** agree on the structure, all will be well.
30*/
31typedef struct HiddenIndexInfo HiddenIndexInfo;
32struct HiddenIndexInfo {
drh82801a52022-01-20 17:10:59 +000033 WhereClause *pWC; /* The Where clause being analyzed */
34 Parse *pParse; /* The parsing context */
drhec778d22022-01-22 00:18:01 +000035 int eDistinct; /* Value to return from sqlite3_vtab_distinct() */
drh0fe7e7d2022-02-01 14:58:29 +000036 u32 mIn; /* Mask of terms that are <col> IN (...) */
37 u32 mHandleIn; /* Terms that vtab will handle as <col> IN (...) */
drh82801a52022-01-20 17:10:59 +000038 sqlite3_value *aRhs[1]; /* RHS values for constraints. MUST BE LAST
39 ** because extra space is allocated to hold up
40 ** to nTerm such values */
drhefc88d02017-12-22 00:52:50 +000041};
42
drh6f82e852015-06-06 20:12:09 +000043/* Forward declaration of methods */
44static int whereLoopResize(sqlite3*, WhereLoop*, int);
45
drh51147ba2005-07-23 22:59:55 +000046/*
drh6f328482013-06-05 23:39:34 +000047** Return the estimated number of output rows from a WHERE clause
48*/
drhc3489bb2016-02-25 16:04:59 +000049LogEst sqlite3WhereOutputRowCount(WhereInfo *pWInfo){
50 return pWInfo->nRowOut;
drh6f328482013-06-05 23:39:34 +000051}
52
53/*
54** Return one of the WHERE_DISTINCT_xxxxx values to indicate how this
55** WHERE clause returns outputs for DISTINCT processing.
56*/
57int sqlite3WhereIsDistinct(WhereInfo *pWInfo){
58 return pWInfo->eDistinct;
59}
60
61/*
drhc37b7682020-07-14 15:30:35 +000062** Return the number of ORDER BY terms that are satisfied by the
63** WHERE clause. A return of 0 means that the output must be
64** completely sorted. A return equal to the number of ORDER BY
65** terms means that no sorting is needed at all. A return that
66** is positive but less than the number of ORDER BY terms means that
67** block sorting is required.
drh6f328482013-06-05 23:39:34 +000068*/
69int sqlite3WhereIsOrdered(WhereInfo *pWInfo){
drhddba0c22014-03-18 20:33:42 +000070 return pWInfo->nOBSat;
drh6f328482013-06-05 23:39:34 +000071}
72
73/*
drh6ee5a7b2018-09-08 20:09:46 +000074** In the ORDER BY LIMIT optimization, if the inner-most loop is known
75** to emit rows in increasing order, and if the last row emitted by the
76** inner-most loop did not fit within the sorter, then we can skip all
77** subsequent rows for the current iteration of the inner loop (because they
78** will not fit in the sorter either) and continue with the second inner
79** loop - the loop immediately outside the inner-most.
drha536df42016-05-19 22:13:37 +000080**
drh6ee5a7b2018-09-08 20:09:46 +000081** When a row does not fit in the sorter (because the sorter already
82** holds LIMIT+OFFSET rows that are smaller), then a jump is made to the
83** label returned by this function.
84**
85** If the ORDER BY LIMIT optimization applies, the jump destination should
86** be the continuation for the second-inner-most loop. If the ORDER BY
87** LIMIT optimization does not apply, then the jump destination should
88** be the continuation for the inner-most loop.
89**
90** It is always safe for this routine to return the continuation of the
91** inner-most loop, in the sense that a correct answer will result.
92** Returning the continuation the second inner loop is an optimization
93** that might make the code run a little faster, but should not change
94** the final answer.
drha536df42016-05-19 22:13:37 +000095*/
drh6ee5a7b2018-09-08 20:09:46 +000096int sqlite3WhereOrderByLimitOptLabel(WhereInfo *pWInfo){
97 WhereLevel *pInner;
98 if( !pWInfo->bOrderedInnerLoop ){
99 /* The ORDER BY LIMIT optimization does not apply. Jump to the
100 ** continuation of the inner-most loop. */
101 return pWInfo->iContinue;
102 }
103 pInner = &pWInfo->a[pWInfo->nLevel-1];
drhf7ded142018-09-08 20:29:04 +0000104 assert( pInner->addrNxt!=0 );
105 return pInner->addrNxt;
drha536df42016-05-19 22:13:37 +0000106}
107
108/*
drhd1930572021-01-13 15:23:17 +0000109** While generating code for the min/max optimization, after handling
110** the aggregate-step call to min() or max(), check to see if any
111** additional looping is required. If the output order is such that
112** we are certain that the correct answer has already been found, then
113** code an OP_Goto to by pass subsequent processing.
114**
115** Any extra OP_Goto that is coded here is an optimization. The
116** correct answer should be obtained regardless. This OP_Goto just
117** makes the answer appear faster.
118*/
119void sqlite3WhereMinMaxOptEarlyOut(Vdbe *v, WhereInfo *pWInfo){
120 WhereLevel *pInner;
drh5870dc82021-01-14 00:53:14 +0000121 int i;
drhd1930572021-01-13 15:23:17 +0000122 if( !pWInfo->bOrderedInnerLoop ) return;
123 if( pWInfo->nOBSat==0 ) return;
drh5870dc82021-01-14 00:53:14 +0000124 for(i=pWInfo->nLevel-1; i>=0; i--){
125 pInner = &pWInfo->a[i];
126 if( (pInner->pWLoop->wsFlags & WHERE_COLUMN_IN)!=0 ){
127 sqlite3VdbeGoto(v, pInner->addrNxt);
128 return;
129 }
drhd1930572021-01-13 15:23:17 +0000130 }
drh5870dc82021-01-14 00:53:14 +0000131 sqlite3VdbeGoto(v, pWInfo->iBreak);
drhd1930572021-01-13 15:23:17 +0000132}
133
134/*
drh6f328482013-06-05 23:39:34 +0000135** Return the VDBE address or label to jump to in order to continue
136** immediately with the next row of a WHERE clause.
137*/
138int sqlite3WhereContinueLabel(WhereInfo *pWInfo){
drha22a75e2014-03-21 18:16:23 +0000139 assert( pWInfo->iContinue!=0 );
drh6f328482013-06-05 23:39:34 +0000140 return pWInfo->iContinue;
141}
142
143/*
144** Return the VDBE address or label to jump to in order to break
145** out of a WHERE loop.
146*/
147int sqlite3WhereBreakLabel(WhereInfo *pWInfo){
148 return pWInfo->iBreak;
149}
150
151/*
drhb0264ee2015-09-14 14:45:50 +0000152** Return ONEPASS_OFF (0) if an UPDATE or DELETE statement is unable to
drhbe3da242019-12-29 00:52:41 +0000153** operate directly on the rowids returned by a WHERE clause. Return
drhb0264ee2015-09-14 14:45:50 +0000154** ONEPASS_SINGLE (1) if the statement can operation directly because only
155** a single row is to be changed. Return ONEPASS_MULTI (2) if the one-pass
156** optimization can be used on multiple
drhfc8d4f92013-11-08 15:19:46 +0000157**
158** If the ONEPASS optimization is used (if this routine returns true)
159** then also write the indices of open cursors used by ONEPASS
160** into aiCur[0] and aiCur[1]. iaCur[0] gets the cursor of the data
161** table and iaCur[1] gets the cursor used by an auxiliary index.
162** Either value may be -1, indicating that cursor is not used.
163** Any cursors returned will have been opened for writing.
164**
165** aiCur[0] and aiCur[1] both get -1 if the where-clause logic is
166** unable to use the ONEPASS optimization.
drh6f328482013-06-05 23:39:34 +0000167*/
drhfc8d4f92013-11-08 15:19:46 +0000168int sqlite3WhereOkOnePass(WhereInfo *pWInfo, int *aiCur){
169 memcpy(aiCur, pWInfo->aiCurOnePass, sizeof(int)*2);
drha7228212015-09-28 17:05:22 +0000170#ifdef WHERETRACE_ENABLED
171 if( sqlite3WhereTrace && pWInfo->eOnePass!=ONEPASS_OFF ){
172 sqlite3DebugPrintf("%s cursors: %d %d\n",
173 pWInfo->eOnePass==ONEPASS_SINGLE ? "ONEPASS_SINGLE" : "ONEPASS_MULTI",
174 aiCur[0], aiCur[1]);
175 }
176#endif
drhb0264ee2015-09-14 14:45:50 +0000177 return pWInfo->eOnePass;
drh6f328482013-06-05 23:39:34 +0000178}
179
180/*
drhbe3da242019-12-29 00:52:41 +0000181** Return TRUE if the WHERE loop uses the OP_DeferredSeek opcode to move
182** the data cursor to the row selected by the index cursor.
183*/
184int sqlite3WhereUsesDeferredSeek(WhereInfo *pWInfo){
185 return pWInfo->bDeferredSeek;
186}
187
188/*
drhaa32e3c2013-07-16 21:31:23 +0000189** Move the content of pSrc into pDest
190*/
191static void whereOrMove(WhereOrSet *pDest, WhereOrSet *pSrc){
192 pDest->n = pSrc->n;
193 memcpy(pDest->a, pSrc->a, pDest->n*sizeof(pDest->a[0]));
194}
195
196/*
197** Try to insert a new prerequisite/cost entry into the WhereOrSet pSet.
198**
199** The new entry might overwrite an existing entry, or it might be
200** appended, or it might be discarded. Do whatever is the right thing
201** so that pSet keeps the N_OR_COST best entries seen so far.
202*/
203static int whereOrInsert(
204 WhereOrSet *pSet, /* The WhereOrSet to be updated */
205 Bitmask prereq, /* Prerequisites of the new entry */
drhbf539c42013-10-05 18:16:02 +0000206 LogEst rRun, /* Run-cost of the new entry */
207 LogEst nOut /* Number of outputs for the new entry */
drhaa32e3c2013-07-16 21:31:23 +0000208){
209 u16 i;
210 WhereOrCost *p;
211 for(i=pSet->n, p=pSet->a; i>0; i--, p++){
212 if( rRun<=p->rRun && (prereq & p->prereq)==prereq ){
213 goto whereOrInsert_done;
214 }
215 if( p->rRun<=rRun && (p->prereq & prereq)==p->prereq ){
216 return 0;
217 }
218 }
219 if( pSet->n<N_OR_COST ){
220 p = &pSet->a[pSet->n++];
221 p->nOut = nOut;
222 }else{
223 p = pSet->a;
224 for(i=1; i<pSet->n; i++){
225 if( p->rRun>pSet->a[i].rRun ) p = pSet->a + i;
226 }
227 if( p->rRun<=rRun ) return 0;
228 }
229whereOrInsert_done:
230 p->prereq = prereq;
231 p->rRun = rRun;
232 if( p->nOut>nOut ) p->nOut = nOut;
233 return 1;
234}
235
236/*
drh1398ad32005-01-19 23:24:50 +0000237** Return the bitmask for the given cursor number. Return 0 if
238** iCursor is not in the set.
drh6a3ea0e2003-05-02 14:32:12 +0000239*/
drh6f82e852015-06-06 20:12:09 +0000240Bitmask sqlite3WhereGetMask(WhereMaskSet *pMaskSet, int iCursor){
drh6a3ea0e2003-05-02 14:32:12 +0000241 int i;
drhfcd71b62011-04-05 22:08:24 +0000242 assert( pMaskSet->n<=(int)sizeof(Bitmask)*8 );
drhdae2a102021-12-02 04:00:45 +0000243 assert( pMaskSet->n>0 || pMaskSet->ix[0]<0 );
244 assert( iCursor>=-1 );
drh844a89b2021-12-02 12:34:05 +0000245 if( pMaskSet->ix[0]==iCursor ){
246 return 1;
247 }
248 for(i=1; i<pMaskSet->n; i++){
drh51669862004-12-18 18:40:26 +0000249 if( pMaskSet->ix[i]==iCursor ){
drh7699d1c2013-06-04 12:42:29 +0000250 return MASKBIT(i);
drh51669862004-12-18 18:40:26 +0000251 }
drh6a3ea0e2003-05-02 14:32:12 +0000252 }
drh6a3ea0e2003-05-02 14:32:12 +0000253 return 0;
254}
255
256/*
drh1398ad32005-01-19 23:24:50 +0000257** Create a new mask for cursor iCursor.
drh0fcef5e2005-07-19 17:38:22 +0000258**
259** There is one cursor per table in the FROM clause. The number of
260** tables in the FROM clause is limited by a test early in the
drhb6fb62d2005-09-20 08:47:20 +0000261** sqlite3WhereBegin() routine. So we know that the pMaskSet->ix[]
drh0fcef5e2005-07-19 17:38:22 +0000262** array will never overflow.
drh1398ad32005-01-19 23:24:50 +0000263*/
drh111a6a72008-12-21 03:51:16 +0000264static void createMask(WhereMaskSet *pMaskSet, int iCursor){
drhcad651e2007-04-20 12:22:01 +0000265 assert( pMaskSet->n < ArraySize(pMaskSet->ix) );
drh0fcef5e2005-07-19 17:38:22 +0000266 pMaskSet->ix[pMaskSet->n++] = iCursor;
drh1398ad32005-01-19 23:24:50 +0000267}
268
269/*
drh235667a2020-11-08 20:44:30 +0000270** If the right-hand branch of the expression is a TK_COLUMN, then return
271** a pointer to the right-hand branch. Otherwise, return NULL.
272*/
273static Expr *whereRightSubexprIsColumn(Expr *p){
274 p = sqlite3ExprSkipCollateAndLikely(p->pRight);
dan9988db82021-04-15 19:09:19 +0000275 if( ALWAYS(p!=0) && p->op==TK_COLUMN && !ExprHasProperty(p, EP_FixedCol) ){
276 return p;
277 }
drh235667a2020-11-08 20:44:30 +0000278 return 0;
279}
280
281/*
drh1c8148f2013-05-04 20:25:23 +0000282** Advance to the next WhereTerm that matches according to the criteria
283** established when the pScan object was initialized by whereScanInit().
284** Return NULL if there are no more matching WhereTerms.
285*/
danb2cfc142013-07-05 11:10:54 +0000286static WhereTerm *whereScanNext(WhereScan *pScan){
drh1c8148f2013-05-04 20:25:23 +0000287 int iCur; /* The cursor on the LHS of the term */
drha3f108e2015-08-26 21:08:04 +0000288 i16 iColumn; /* The column on the LHS of the term. -1 for IPK */
drh1c8148f2013-05-04 20:25:23 +0000289 Expr *pX; /* An expression being tested */
290 WhereClause *pWC; /* Shorthand for pScan->pWC */
291 WhereTerm *pTerm; /* The term being tested */
drh43b85ef2013-06-10 12:34:45 +0000292 int k = pScan->k; /* Where to start scanning */
drh1c8148f2013-05-04 20:25:23 +0000293
drh392ddeb2016-10-26 17:57:40 +0000294 assert( pScan->iEquiv<=pScan->nEquiv );
295 pWC = pScan->pWC;
296 while(1){
drha3f108e2015-08-26 21:08:04 +0000297 iColumn = pScan->aiColumn[pScan->iEquiv-1];
drh392ddeb2016-10-26 17:57:40 +0000298 iCur = pScan->aiCur[pScan->iEquiv-1];
299 assert( pWC!=0 );
drh220f0d62021-10-15 17:06:16 +0000300 assert( iCur>=0 );
drh392ddeb2016-10-26 17:57:40 +0000301 do{
drh43b85ef2013-06-10 12:34:45 +0000302 for(pTerm=pWC->a+k; k<pWC->nTerm; k++, pTerm++){
drh220f0d62021-10-15 17:06:16 +0000303 assert( (pTerm->eOperator & (WO_OR|WO_AND))==0 || pTerm->leftCursor<0 );
drhe1a086e2013-10-28 20:15:56 +0000304 if( pTerm->leftCursor==iCur
drh75fa2662020-09-28 15:49:43 +0000305 && pTerm->u.x.leftColumn==iColumn
drh4b92f982015-09-29 17:20:14 +0000306 && (iColumn!=XN_EXPR
drhf9463df2017-02-11 14:59:58 +0000307 || sqlite3ExprCompareSkip(pTerm->pExpr->pLeft,
308 pScan->pIdxExpr,iCur)==0)
drha3f108e2015-08-26 21:08:04 +0000309 && (pScan->iEquiv<=1 || !ExprHasProperty(pTerm->pExpr, EP_FromJoin))
drhe1a086e2013-10-28 20:15:56 +0000310 ){
drh1c8148f2013-05-04 20:25:23 +0000311 if( (pTerm->eOperator & WO_EQUIV)!=0
drha3f108e2015-08-26 21:08:04 +0000312 && pScan->nEquiv<ArraySize(pScan->aiCur)
drh235667a2020-11-08 20:44:30 +0000313 && (pX = whereRightSubexprIsColumn(pTerm->pExpr))!=0
drh1c8148f2013-05-04 20:25:23 +0000314 ){
315 int j;
drha3f108e2015-08-26 21:08:04 +0000316 for(j=0; j<pScan->nEquiv; j++){
317 if( pScan->aiCur[j]==pX->iTable
318 && pScan->aiColumn[j]==pX->iColumn ){
drh1c8148f2013-05-04 20:25:23 +0000319 break;
320 }
321 }
322 if( j==pScan->nEquiv ){
drha3f108e2015-08-26 21:08:04 +0000323 pScan->aiCur[j] = pX->iTable;
324 pScan->aiColumn[j] = pX->iColumn;
325 pScan->nEquiv++;
drh1c8148f2013-05-04 20:25:23 +0000326 }
327 }
328 if( (pTerm->eOperator & pScan->opMask)!=0 ){
329 /* Verify the affinity and collating sequence match */
330 if( pScan->zCollName && (pTerm->eOperator & WO_ISNULL)==0 ){
331 CollSeq *pColl;
drh70d18342013-06-06 19:16:33 +0000332 Parse *pParse = pWC->pWInfo->pParse;
drh1c8148f2013-05-04 20:25:23 +0000333 pX = pTerm->pExpr;
334 if( !sqlite3IndexAffinityOk(pX, pScan->idxaff) ){
335 continue;
336 }
337 assert(pX->pLeft);
drh898c5272019-10-22 00:03:41 +0000338 pColl = sqlite3ExprCompareCollSeq(pParse, pX);
drh70d18342013-06-06 19:16:33 +0000339 if( pColl==0 ) pColl = pParse->db->pDfltColl;
drh1c8148f2013-05-04 20:25:23 +0000340 if( sqlite3StrICmp(pColl->zName, pScan->zCollName) ){
341 continue;
342 }
343 }
drhe8d0c612015-05-14 01:05:25 +0000344 if( (pTerm->eOperator & (WO_EQ|WO_IS))!=0
drhc59ffa82021-10-04 15:08:49 +0000345 && (pX = pTerm->pExpr->pRight, ALWAYS(pX!=0))
346 && pX->op==TK_COLUMN
drha3f108e2015-08-26 21:08:04 +0000347 && pX->iTable==pScan->aiCur[0]
348 && pX->iColumn==pScan->aiColumn[0]
drha184fb82013-05-08 04:22:59 +0000349 ){
drhe8d0c612015-05-14 01:05:25 +0000350 testcase( pTerm->eOperator & WO_IS );
drha184fb82013-05-08 04:22:59 +0000351 continue;
352 }
drh392ddeb2016-10-26 17:57:40 +0000353 pScan->pWC = pWC;
drh43b85ef2013-06-10 12:34:45 +0000354 pScan->k = k+1;
drh6068b6b2021-05-04 16:51:52 +0000355#ifdef WHERETRACE_ENABLED
356 if( sqlite3WhereTrace & 0x20000 ){
357 int ii;
358 sqlite3DebugPrintf("SCAN-TERM %p: nEquiv=%d",
359 pTerm, pScan->nEquiv);
360 for(ii=0; ii<pScan->nEquiv; ii++){
361 sqlite3DebugPrintf(" {%d:%d}",
362 pScan->aiCur[ii], pScan->aiColumn[ii]);
363 }
364 sqlite3DebugPrintf("\n");
365 }
366#endif
drh1c8148f2013-05-04 20:25:23 +0000367 return pTerm;
368 }
369 }
370 }
drh392ddeb2016-10-26 17:57:40 +0000371 pWC = pWC->pOuter;
drh43b85ef2013-06-10 12:34:45 +0000372 k = 0;
drh392ddeb2016-10-26 17:57:40 +0000373 }while( pWC!=0 );
374 if( pScan->iEquiv>=pScan->nEquiv ) break;
375 pWC = pScan->pOrigWC;
drh43b85ef2013-06-10 12:34:45 +0000376 k = 0;
drha3f108e2015-08-26 21:08:04 +0000377 pScan->iEquiv++;
drh1c8148f2013-05-04 20:25:23 +0000378 }
drh1c8148f2013-05-04 20:25:23 +0000379 return 0;
380}
381
382/*
drhe86974c2019-01-28 18:58:54 +0000383** This is whereScanInit() for the case of an index on an expression.
384** It is factored out into a separate tail-recursion subroutine so that
385** the normal whereScanInit() routine, which is a high-runner, does not
386** need to push registers onto the stack as part of its prologue.
387*/
388static SQLITE_NOINLINE WhereTerm *whereScanInitIndexExpr(WhereScan *pScan){
389 pScan->idxaff = sqlite3ExprAffinity(pScan->pIdxExpr);
390 return whereScanNext(pScan);
391}
392
393/*
drh1c8148f2013-05-04 20:25:23 +0000394** Initialize a WHERE clause scanner object. Return a pointer to the
395** first match. Return NULL if there are no matches.
396**
397** The scanner will be searching the WHERE clause pWC. It will look
398** for terms of the form "X <op> <expr>" where X is column iColumn of table
drha3fd75d2016-05-06 18:47:23 +0000399** iCur. Or if pIdx!=0 then X is column iColumn of index pIdx. pIdx
400** must be one of the indexes of table iCur.
401**
402** The <op> must be one of the operators described by opMask.
drh1c8148f2013-05-04 20:25:23 +0000403**
drh3b48e8c2013-06-12 20:18:16 +0000404** If the search is for X and the WHERE clause contains terms of the
405** form X=Y then this routine might also return terms of the form
406** "Y <op> <expr>". The number of levels of transitivity is limited,
407** but is enough to handle most commonly occurring SQL statements.
408**
drh1c8148f2013-05-04 20:25:23 +0000409** If X is not the INTEGER PRIMARY KEY then X must be compatible with
410** index pIdx.
411*/
danb2cfc142013-07-05 11:10:54 +0000412static WhereTerm *whereScanInit(
drh1c8148f2013-05-04 20:25:23 +0000413 WhereScan *pScan, /* The WhereScan object being initialized */
414 WhereClause *pWC, /* The WHERE clause to be scanned */
415 int iCur, /* Cursor to scan for */
416 int iColumn, /* Column to scan for */
417 u32 opMask, /* Operator(s) to scan for */
418 Index *pIdx /* Must be compatible with this index */
419){
drh1c8148f2013-05-04 20:25:23 +0000420 pScan->pOrigWC = pWC;
421 pScan->pWC = pWC;
drh6860e6f2015-08-27 18:24:02 +0000422 pScan->pIdxExpr = 0;
drh99042982016-10-26 18:41:43 +0000423 pScan->idxaff = 0;
424 pScan->zCollName = 0;
drhe86974c2019-01-28 18:58:54 +0000425 pScan->opMask = opMask;
426 pScan->k = 0;
427 pScan->aiCur[0] = iCur;
428 pScan->nEquiv = 1;
429 pScan->iEquiv = 1;
drhbb523082015-08-27 15:58:51 +0000430 if( pIdx ){
drh99042982016-10-26 18:41:43 +0000431 int j = iColumn;
drhbb523082015-08-27 15:58:51 +0000432 iColumn = pIdx->aiColumn[j];
drh79ab3842021-12-02 02:22:35 +0000433 if( iColumn==pIdx->pTable->iPKey ){
drh99042982016-10-26 18:41:43 +0000434 iColumn = XN_ROWID;
435 }else if( iColumn>=0 ){
436 pScan->idxaff = pIdx->pTable->aCol[iColumn].affinity;
437 pScan->zCollName = pIdx->azColl[j];
drh79ab3842021-12-02 02:22:35 +0000438 }else if( iColumn==XN_EXPR ){
439 pScan->pIdxExpr = pIdx->aColExpr->a[j].pExpr;
440 pScan->zCollName = pIdx->azColl[j];
441 pScan->aiColumn[0] = XN_EXPR;
442 return whereScanInitIndexExpr(pScan);
drh99042982016-10-26 18:41:43 +0000443 }
444 }else if( iColumn==XN_EXPR ){
445 return 0;
drh1c8148f2013-05-04 20:25:23 +0000446 }
drha3f108e2015-08-26 21:08:04 +0000447 pScan->aiColumn[0] = iColumn;
drh1c8148f2013-05-04 20:25:23 +0000448 return whereScanNext(pScan);
449}
450
451/*
drhfe05af82005-07-21 03:14:59 +0000452** Search for a term in the WHERE clause that is of the form "X <op> <expr>"
drha3fd75d2016-05-06 18:47:23 +0000453** where X is a reference to the iColumn of table iCur or of index pIdx
454** if pIdx!=0 and <op> is one of the WO_xx operator codes specified by
455** the op parameter. Return a pointer to the term. Return 0 if not found.
drh58eb1c02013-01-17 00:08:42 +0000456**
drha3fd75d2016-05-06 18:47:23 +0000457** If pIdx!=0 then it must be one of the indexes of table iCur.
458** Search for terms matching the iColumn-th column of pIdx
drhbb523082015-08-27 15:58:51 +0000459** rather than the iColumn-th column of table iCur.
460**
drh58eb1c02013-01-17 00:08:42 +0000461** The term returned might by Y=<expr> if there is another constraint in
462** the WHERE clause that specifies that X=Y. Any such constraints will be
463** identified by the WO_EQUIV bit in the pTerm->eOperator field. The
drha3f108e2015-08-26 21:08:04 +0000464** aiCur[]/iaColumn[] arrays hold X and all its equivalents. There are 11
465** slots in aiCur[]/aiColumn[] so that means we can look for X plus up to 10
466** other equivalent values. Hence a search for X will return <expr> if X=A1
467** and A1=A2 and A2=A3 and ... and A9=A10 and A10=<expr>.
drh58eb1c02013-01-17 00:08:42 +0000468**
469** If there are multiple terms in the WHERE clause of the form "X <op> <expr>"
470** then try for the one with no dependencies on <expr> - in other words where
471** <expr> is a constant expression of some kind. Only return entries of
472** the form "X <op> Y" where Y is a column in another table if no terms of
drh459f63e2013-03-06 01:55:27 +0000473** the form "X <op> <const-expr>" exist. If no terms with a constant RHS
474** exist, try to return a term that does not use WO_EQUIV.
drhfe05af82005-07-21 03:14:59 +0000475*/
drh6f82e852015-06-06 20:12:09 +0000476WhereTerm *sqlite3WhereFindTerm(
drhfe05af82005-07-21 03:14:59 +0000477 WhereClause *pWC, /* The WHERE clause to be searched */
478 int iCur, /* Cursor number of LHS */
479 int iColumn, /* Column number of LHS */
480 Bitmask notReady, /* RHS must not overlap with this mask */
drhec1724e2008-12-09 01:32:03 +0000481 u32 op, /* Mask of WO_xx values describing operator */
drhfe05af82005-07-21 03:14:59 +0000482 Index *pIdx /* Must be compatible with this index, if not NULL */
483){
drh1c8148f2013-05-04 20:25:23 +0000484 WhereTerm *pResult = 0;
485 WhereTerm *p;
486 WhereScan scan;
drh7a5bcc02013-01-16 17:08:58 +0000487
drh1c8148f2013-05-04 20:25:23 +0000488 p = whereScanInit(&scan, pWC, iCur, iColumn, op, pIdx);
drhe8d0c612015-05-14 01:05:25 +0000489 op &= WO_EQ|WO_IS;
drh1c8148f2013-05-04 20:25:23 +0000490 while( p ){
491 if( (p->prereqRight & notReady)==0 ){
drhe8d0c612015-05-14 01:05:25 +0000492 if( p->prereqRight==0 && (p->eOperator&op)!=0 ){
493 testcase( p->eOperator & WO_IS );
drh1c8148f2013-05-04 20:25:23 +0000494 return p;
drhfe05af82005-07-21 03:14:59 +0000495 }
drh1c8148f2013-05-04 20:25:23 +0000496 if( pResult==0 ) pResult = p;
drhfe05af82005-07-21 03:14:59 +0000497 }
drh1c8148f2013-05-04 20:25:23 +0000498 p = whereScanNext(&scan);
drhfe05af82005-07-21 03:14:59 +0000499 }
drh7a5bcc02013-01-16 17:08:58 +0000500 return pResult;
drhfe05af82005-07-21 03:14:59 +0000501}
502
drh7b4fc6a2007-02-06 13:26:32 +0000503/*
peter.d.reid60ec9142014-09-06 16:39:46 +0000504** This function searches pList for an entry that matches the iCol-th column
drh3b48e8c2013-06-12 20:18:16 +0000505** of index pIdx.
dan6f343962011-07-01 18:26:40 +0000506**
507** If such an expression is found, its index in pList->a[] is returned. If
508** no expression is found, -1 is returned.
509*/
510static int findIndexCol(
511 Parse *pParse, /* Parse context */
512 ExprList *pList, /* Expression list to search */
513 int iBase, /* Cursor for table associated with pIdx */
514 Index *pIdx, /* Index to match column of */
515 int iCol /* Column of index to match */
516){
517 int i;
518 const char *zColl = pIdx->azColl[iCol];
519
520 for(i=0; i<pList->nExpr; i++){
drh0d950af2019-08-22 16:38:42 +0000521 Expr *p = sqlite3ExprSkipCollateAndLikely(pList->a[i].pExpr);
drh235667a2020-11-08 20:44:30 +0000522 if( ALWAYS(p!=0)
dan4fcb30b2021-03-09 16:06:25 +0000523 && (p->op==TK_COLUMN || p->op==TK_AGG_COLUMN)
drhf1d3e322011-07-09 13:00:41 +0000524 && p->iColumn==pIdx->aiColumn[iCol]
525 && p->iTable==iBase
526 ){
drh70efa842017-09-28 01:58:23 +0000527 CollSeq *pColl = sqlite3ExprNNCollSeq(pParse, pList->a[i].pExpr);
528 if( 0==sqlite3StrICmp(pColl->zName, zColl) ){
dan6f343962011-07-01 18:26:40 +0000529 return i;
530 }
531 }
532 }
533
534 return -1;
535}
536
537/*
drhbb523082015-08-27 15:58:51 +0000538** Return TRUE if the iCol-th column of index pIdx is NOT NULL
539*/
540static int indexColumnNotNull(Index *pIdx, int iCol){
541 int j;
542 assert( pIdx!=0 );
543 assert( iCol>=0 && iCol<pIdx->nColumn );
544 j = pIdx->aiColumn[iCol];
545 if( j>=0 ){
546 return pIdx->pTable->aCol[j].notNull;
547 }else if( j==(-1) ){
548 return 1;
549 }else{
550 assert( j==(-2) );
drh84926532015-08-31 19:38:42 +0000551 return 0; /* Assume an indexed expression can always yield a NULL */
drh7d3d9da2015-09-01 00:42:52 +0000552
drhbb523082015-08-27 15:58:51 +0000553 }
554}
555
556/*
dan6f343962011-07-01 18:26:40 +0000557** Return true if the DISTINCT expression-list passed as the third argument
drh4f402f22013-06-11 18:59:38 +0000558** is redundant.
559**
drhb121dd12015-06-06 18:30:17 +0000560** A DISTINCT list is redundant if any subset of the columns in the
561** DISTINCT list are collectively unique and individually non-null.
dan6f343962011-07-01 18:26:40 +0000562*/
563static int isDistinctRedundant(
drh4f402f22013-06-11 18:59:38 +0000564 Parse *pParse, /* Parsing context */
565 SrcList *pTabList, /* The FROM clause */
566 WhereClause *pWC, /* The WHERE clause */
567 ExprList *pDistinct /* The result set that needs to be DISTINCT */
dan6f343962011-07-01 18:26:40 +0000568){
569 Table *pTab;
570 Index *pIdx;
571 int i;
572 int iBase;
573
574 /* If there is more than one table or sub-select in the FROM clause of
575 ** this query, then it will not be possible to show that the DISTINCT
576 ** clause is redundant. */
577 if( pTabList->nSrc!=1 ) return 0;
578 iBase = pTabList->a[0].iCursor;
579 pTab = pTabList->a[0].pTab;
580
dan94e08d92011-07-02 06:44:05 +0000581 /* If any of the expressions is an IPK column on table iBase, then return
582 ** true. Note: The (p->iTable==iBase) part of this test may be false if the
583 ** current SELECT is a correlated sub-query.
584 */
dan6f343962011-07-01 18:26:40 +0000585 for(i=0; i<pDistinct->nExpr; i++){
drh0d950af2019-08-22 16:38:42 +0000586 Expr *p = sqlite3ExprSkipCollateAndLikely(pDistinct->a[i].pExpr);
drh235667a2020-11-08 20:44:30 +0000587 if( NEVER(p==0) ) continue;
dan4fcb30b2021-03-09 16:06:25 +0000588 if( p->op!=TK_COLUMN && p->op!=TK_AGG_COLUMN ) continue;
589 if( p->iTable==iBase && p->iColumn<0 ) return 1;
dan6f343962011-07-01 18:26:40 +0000590 }
591
592 /* Loop through all indices on the table, checking each to see if it makes
593 ** the DISTINCT qualifier redundant. It does so if:
594 **
595 ** 1. The index is itself UNIQUE, and
596 **
597 ** 2. All of the columns in the index are either part of the pDistinct
598 ** list, or else the WHERE clause contains a term of the form "col=X",
599 ** where X is a constant value. The collation sequences of the
600 ** comparison and select-list expressions must match those of the index.
dan6a36f432012-04-20 16:59:24 +0000601 **
602 ** 3. All of those index columns for which the WHERE clause does not
603 ** contain a "col=X" term are subject to a NOT NULL constraint.
dan6f343962011-07-01 18:26:40 +0000604 */
605 for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){
drh5f1d1d92014-07-31 22:59:04 +0000606 if( !IsUniqueIndex(pIdx) ) continue;
drh204b6342021-04-06 23:29:41 +0000607 if( pIdx->pPartIdxWhere ) continue;
drhbbbdc832013-10-22 18:01:40 +0000608 for(i=0; i<pIdx->nKeyCol; i++){
drhbb523082015-08-27 15:58:51 +0000609 if( 0==sqlite3WhereFindTerm(pWC, iBase, i, ~(Bitmask)0, WO_EQ, pIdx) ){
610 if( findIndexCol(pParse, pDistinct, iBase, pIdx, i)<0 ) break;
611 if( indexColumnNotNull(pIdx, i)==0 ) break;
dan6f343962011-07-01 18:26:40 +0000612 }
613 }
drhbbbdc832013-10-22 18:01:40 +0000614 if( i==pIdx->nKeyCol ){
dan6f343962011-07-01 18:26:40 +0000615 /* This index implies that the DISTINCT qualifier is redundant. */
616 return 1;
617 }
618 }
619
620 return 0;
621}
drh0fcef5e2005-07-19 17:38:22 +0000622
drh8636e9c2013-06-11 01:50:08 +0000623
drh75897232000-05-29 14:26:00 +0000624/*
drh3b48e8c2013-06-12 20:18:16 +0000625** Estimate the logarithm of the input value to base 2.
drh28c4cf42005-07-27 20:41:43 +0000626*/
drhbf539c42013-10-05 18:16:02 +0000627static LogEst estLog(LogEst N){
drh696964d2014-06-12 15:46:46 +0000628 return N<=10 ? 0 : sqlite3LogEst(N) - 33;
drh28c4cf42005-07-27 20:41:43 +0000629}
630
drh6d209d82006-06-27 01:54:26 +0000631/*
drh7b3aa082015-05-29 13:55:33 +0000632** Convert OP_Column opcodes to OP_Copy in previously generated code.
633**
634** This routine runs over generated VDBE code and translates OP_Column
danfb785b22015-10-24 20:31:22 +0000635** opcodes into OP_Copy when the table is being accessed via co-routine
636** instead of via table lookup.
637**
drh00a61532019-06-28 07:08:13 +0000638** If the iAutoidxCur is not zero, then any OP_Rowid instructions on
639** cursor iTabCur are transformed into OP_Sequence opcode for the
640** iAutoidxCur cursor, in order to generate unique rowids for the
641** automatic index being generated.
drh7b3aa082015-05-29 13:55:33 +0000642*/
643static void translateColumnToCopy(
drh202230e2017-03-11 13:02:59 +0000644 Parse *pParse, /* Parsing context */
drh7b3aa082015-05-29 13:55:33 +0000645 int iStart, /* Translate from this opcode to the end */
646 int iTabCur, /* OP_Column/OP_Rowid references to this table */
danfb785b22015-10-24 20:31:22 +0000647 int iRegister, /* The first column is in this register */
drh00a61532019-06-28 07:08:13 +0000648 int iAutoidxCur /* If non-zero, cursor of autoindex being generated */
drh7b3aa082015-05-29 13:55:33 +0000649){
drh202230e2017-03-11 13:02:59 +0000650 Vdbe *v = pParse->pVdbe;
drh7b3aa082015-05-29 13:55:33 +0000651 VdbeOp *pOp = sqlite3VdbeGetOp(v, iStart);
652 int iEnd = sqlite3VdbeCurrentAddr(v);
drh202230e2017-03-11 13:02:59 +0000653 if( pParse->db->mallocFailed ) return;
drh7b3aa082015-05-29 13:55:33 +0000654 for(; iStart<iEnd; iStart++, pOp++){
655 if( pOp->p1!=iTabCur ) continue;
656 if( pOp->opcode==OP_Column ){
657 pOp->opcode = OP_Copy;
658 pOp->p1 = pOp->p2 + iRegister;
659 pOp->p2 = pOp->p3;
660 pOp->p3 = 0;
661 }else if( pOp->opcode==OP_Rowid ){
drh6e5020e2021-04-07 15:45:01 +0000662 pOp->opcode = OP_Sequence;
663 pOp->p1 = iAutoidxCur;
664#ifdef SQLITE_ALLOW_ROWID_IN_VIEW
665 if( iAutoidxCur==0 ){
danfb785b22015-10-24 20:31:22 +0000666 pOp->opcode = OP_Null;
danfb785b22015-10-24 20:31:22 +0000667 pOp->p3 = 0;
668 }
drh6e5020e2021-04-07 15:45:01 +0000669#endif
drh7b3aa082015-05-29 13:55:33 +0000670 }
671 }
672}
673
674/*
drh6d209d82006-06-27 01:54:26 +0000675** Two routines for printing the content of an sqlite3_index_info
676** structure. Used for testing and debugging only. If neither
677** SQLITE_TEST or SQLITE_DEBUG are defined, then these routines
678** are no-ops.
679*/
drhd15cb172013-05-21 19:23:10 +0000680#if !defined(SQLITE_OMIT_VIRTUALTABLE) && defined(WHERETRACE_ENABLED)
drhcfcf4de2019-12-28 13:01:52 +0000681static void whereTraceIndexInfoInputs(sqlite3_index_info *p){
drh6d209d82006-06-27 01:54:26 +0000682 int i;
mlcreech3a00f902008-03-04 17:45:01 +0000683 if( !sqlite3WhereTrace ) return;
drh6d209d82006-06-27 01:54:26 +0000684 for(i=0; i<p->nConstraint; i++){
drhb6592f62021-12-17 23:56:43 +0000685 sqlite3DebugPrintf(
686 " constraint[%d]: col=%d termid=%d op=%d usabled=%d collseq=%s\n",
drh6d209d82006-06-27 01:54:26 +0000687 i,
688 p->aConstraint[i].iColumn,
689 p->aConstraint[i].iTermOffset,
690 p->aConstraint[i].op,
drhb6592f62021-12-17 23:56:43 +0000691 p->aConstraint[i].usable,
692 sqlite3_vtab_collation(p,i));
drh6d209d82006-06-27 01:54:26 +0000693 }
694 for(i=0; i<p->nOrderBy; i++){
695 sqlite3DebugPrintf(" orderby[%d]: col=%d desc=%d\n",
696 i,
697 p->aOrderBy[i].iColumn,
698 p->aOrderBy[i].desc);
699 }
700}
drhcfcf4de2019-12-28 13:01:52 +0000701static void whereTraceIndexInfoOutputs(sqlite3_index_info *p){
drh6d209d82006-06-27 01:54:26 +0000702 int i;
mlcreech3a00f902008-03-04 17:45:01 +0000703 if( !sqlite3WhereTrace ) return;
drh6d209d82006-06-27 01:54:26 +0000704 for(i=0; i<p->nConstraint; i++){
705 sqlite3DebugPrintf(" usage[%d]: argvIdx=%d omit=%d\n",
706 i,
707 p->aConstraintUsage[i].argvIndex,
708 p->aConstraintUsage[i].omit);
709 }
710 sqlite3DebugPrintf(" idxNum=%d\n", p->idxNum);
711 sqlite3DebugPrintf(" idxStr=%s\n", p->idxStr);
712 sqlite3DebugPrintf(" orderByConsumed=%d\n", p->orderByConsumed);
713 sqlite3DebugPrintf(" estimatedCost=%g\n", p->estimatedCost);
dana9f58152013-11-11 19:01:33 +0000714 sqlite3DebugPrintf(" estimatedRows=%lld\n", p->estimatedRows);
drh6d209d82006-06-27 01:54:26 +0000715}
716#else
drhcfcf4de2019-12-28 13:01:52 +0000717#define whereTraceIndexInfoInputs(A)
718#define whereTraceIndexInfoOutputs(A)
drh6d209d82006-06-27 01:54:26 +0000719#endif
720
drhc6339082010-04-07 16:54:58 +0000721#ifndef SQLITE_OMIT_AUTOMATIC_INDEX
drh8b307fb2010-04-06 15:57:05 +0000722/*
drh4139c992010-04-07 14:59:45 +0000723** Return TRUE if the WHERE clause term pTerm is of a form where it
724** could be used with an index to access pSrc, assuming an appropriate
725** index existed.
726*/
727static int termCanDriveIndex(
drhfecbf0a2021-12-04 21:11:18 +0000728 const WhereTerm *pTerm, /* WHERE clause term to check */
729 const SrcItem *pSrc, /* Table we are trying to access */
730 const Bitmask notReady /* Tables in outer loops of the join */
drh4139c992010-04-07 14:59:45 +0000731){
732 char aff;
733 if( pTerm->leftCursor!=pSrc->iCursor ) return 0;
drhe8d0c612015-05-14 01:05:25 +0000734 if( (pTerm->eOperator & (WO_EQ|WO_IS))==0 ) return 0;
danbbccd522017-07-18 17:13:41 +0000735 if( (pSrc->fg.jointype & JT_LEFT)
736 && !ExprHasProperty(pTerm->pExpr, EP_FromJoin)
737 && (pTerm->eOperator & WO_IS)
738 ){
739 /* Cannot use an IS term from the WHERE clause as an index driver for
740 ** the RHS of a LEFT JOIN. Such a term can only be used if it is from
741 ** the ON clause. */
742 return 0;
743 }
drh4139c992010-04-07 14:59:45 +0000744 if( (pTerm->prereqRight & notReady)!=0 ) return 0;
drh220f0d62021-10-15 17:06:16 +0000745 assert( (pTerm->eOperator & (WO_OR|WO_AND))==0 );
drh75fa2662020-09-28 15:49:43 +0000746 if( pTerm->u.x.leftColumn<0 ) return 0;
747 aff = pSrc->pTab->aCol[pTerm->u.x.leftColumn].affinity;
drh4139c992010-04-07 14:59:45 +0000748 if( !sqlite3IndexAffinityOk(pTerm->pExpr, aff) ) return 0;
drhe0cc3c22015-05-13 17:54:08 +0000749 testcase( pTerm->pExpr->op==TK_IS );
drh4139c992010-04-07 14:59:45 +0000750 return 1;
751}
drhc6339082010-04-07 16:54:58 +0000752#endif
drh4139c992010-04-07 14:59:45 +0000753
drhc6339082010-04-07 16:54:58 +0000754
755#ifndef SQLITE_OMIT_AUTOMATIC_INDEX
drh8b307fb2010-04-06 15:57:05 +0000756/*
drhc6339082010-04-07 16:54:58 +0000757** Generate code to construct the Index object for an automatic index
758** and to set up the WhereLevel object pLevel so that the code generator
759** makes use of the automatic index.
drh8b307fb2010-04-06 15:57:05 +0000760*/
drhfa35f5c2021-12-04 13:43:57 +0000761static SQLITE_NOINLINE void constructAutomaticIndex(
drh8b307fb2010-04-06 15:57:05 +0000762 Parse *pParse, /* The parsing context */
drhfecbf0a2021-12-04 21:11:18 +0000763 const WhereClause *pWC, /* The WHERE clause */
764 const SrcItem *pSrc, /* The FROM clause term to get the next index */
765 const Bitmask notReady, /* Mask of cursors that are not available */
drh8b307fb2010-04-06 15:57:05 +0000766 WhereLevel *pLevel /* Write new index here */
767){
drhbbbdc832013-10-22 18:01:40 +0000768 int nKeyCol; /* Number of columns in the constructed index */
drh8b307fb2010-04-06 15:57:05 +0000769 WhereTerm *pTerm; /* A single term of the WHERE clause */
770 WhereTerm *pWCEnd; /* End of pWC->a[] */
drh8b307fb2010-04-06 15:57:05 +0000771 Index *pIdx; /* Object describing the transient index */
772 Vdbe *v; /* Prepared statement under construction */
drh8b307fb2010-04-06 15:57:05 +0000773 int addrInit; /* Address of the initialization bypass jump */
774 Table *pTable; /* The table being indexed */
drh8b307fb2010-04-06 15:57:05 +0000775 int addrTop; /* Top of the index fill loop */
776 int regRecord; /* Register holding an index record */
777 int n; /* Column counter */
drh4139c992010-04-07 14:59:45 +0000778 int i; /* Loop counter */
779 int mxBitCol; /* Maximum column in pSrc->colUsed */
drh424aab82010-04-06 18:28:20 +0000780 CollSeq *pColl; /* Collating sequence to on a column */
drh7ba39a92013-05-30 17:43:19 +0000781 WhereLoop *pLoop; /* The Loop object */
drh77e57df2013-10-22 14:28:02 +0000782 char *zNotUsed; /* Extra space on the end of pIdx */
drh4139c992010-04-07 14:59:45 +0000783 Bitmask idxCols; /* Bitmap of columns used for indexing */
784 Bitmask extraCols; /* Bitmap of additional columns */
drh8d56e202013-06-28 23:55:45 +0000785 u8 sentWarning = 0; /* True if a warnning has been issued */
drh059b2d52014-10-24 19:28:09 +0000786 Expr *pPartial = 0; /* Partial Index Expression */
787 int iContinue = 0; /* Jump here to skip excluded rows */
drh76012942021-02-21 21:04:54 +0000788 SrcItem *pTabItem; /* FROM clause term being indexed */
drh4dd83a22015-10-26 14:54:32 +0000789 int addrCounter = 0; /* Address where integer counter is initialized */
danfb785b22015-10-24 20:31:22 +0000790 int regBase; /* Array of registers where record is assembled */
drh8b307fb2010-04-06 15:57:05 +0000791
792 /* Generate code to skip over the creation and initialization of the
793 ** transient index on 2nd and subsequent iterations of the loop. */
794 v = pParse->pVdbe;
795 assert( v!=0 );
drh511f9e82016-09-22 18:53:13 +0000796 addrInit = sqlite3VdbeAddOp0(v, OP_Once); VdbeCoverage(v);
drh8b307fb2010-04-06 15:57:05 +0000797
drh4139c992010-04-07 14:59:45 +0000798 /* Count the number of columns that will be added to the index
799 ** and used to match WHERE clause constraints */
drhbbbdc832013-10-22 18:01:40 +0000800 nKeyCol = 0;
drh424aab82010-04-06 18:28:20 +0000801 pTable = pSrc->pTab;
drh8b307fb2010-04-06 15:57:05 +0000802 pWCEnd = &pWC->a[pWC->nTerm];
drh7ba39a92013-05-30 17:43:19 +0000803 pLoop = pLevel->pWLoop;
drh4139c992010-04-07 14:59:45 +0000804 idxCols = 0;
drh81186b42013-06-18 01:52:41 +0000805 for(pTerm=pWC->a; pTerm<pWCEnd; pTerm++){
drh13cc90c2015-02-25 00:24:41 +0000806 Expr *pExpr = pTerm->pExpr;
drhc1085ea2021-11-30 14:07:58 +0000807 /* Make the automatic index a partial index if there are terms in the
808 ** WHERE clause (or the ON clause of a LEFT join) that constrain which
809 ** rows of the target table (pSrc) that can be used. */
810 if( (pTerm->wtFlags & TERM_VIRTUAL)==0
811 && ((pSrc->fg.jointype&JT_LEFT)==0 || ExprHasProperty(pExpr,EP_FromJoin))
812 && sqlite3ExprIsTableConstant(pExpr, pSrc->iCursor)
813 ){
drhd5c851c2019-04-19 13:38:34 +0000814 pPartial = sqlite3ExprAnd(pParse, pPartial,
drh13cc90c2015-02-25 00:24:41 +0000815 sqlite3ExprDup(pParse->db, pExpr, 0));
drh059b2d52014-10-24 19:28:09 +0000816 }
drh4139c992010-04-07 14:59:45 +0000817 if( termCanDriveIndex(pTerm, pSrc, notReady) ){
drh220f0d62021-10-15 17:06:16 +0000818 int iCol;
819 Bitmask cMask;
820 assert( (pTerm->eOperator & (WO_OR|WO_AND))==0 );
821 iCol = pTerm->u.x.leftColumn;
822 cMask = iCol>=BMS ? MASKBIT(BMS-1) : MASKBIT(iCol);
drh52ff8ea2010-04-08 14:15:56 +0000823 testcase( iCol==BMS );
824 testcase( iCol==BMS-1 );
drh8d56e202013-06-28 23:55:45 +0000825 if( !sentWarning ){
826 sqlite3_log(SQLITE_WARNING_AUTOINDEX,
827 "automatic index on %s(%s)", pTable->zName,
drhcf9d36d2021-08-02 18:03:43 +0000828 pTable->aCol[iCol].zCnName);
drh8d56e202013-06-28 23:55:45 +0000829 sentWarning = 1;
830 }
drh0013e722010-04-08 00:40:15 +0000831 if( (idxCols & cMask)==0 ){
drh059b2d52014-10-24 19:28:09 +0000832 if( whereLoopResize(pParse->db, pLoop, nKeyCol+1) ){
833 goto end_auto_index_create;
834 }
drhbbbdc832013-10-22 18:01:40 +0000835 pLoop->aLTerm[nKeyCol++] = pTerm;
drh0013e722010-04-08 00:40:15 +0000836 idxCols |= cMask;
837 }
drh8b307fb2010-04-06 15:57:05 +0000838 }
839 }
drhd6a33de2021-04-07 12:36:58 +0000840 assert( nKeyCol>0 || pParse->db->mallocFailed );
drhbbbdc832013-10-22 18:01:40 +0000841 pLoop->u.btree.nEq = pLoop->nLTerm = nKeyCol;
drh53b52f72013-05-31 11:57:39 +0000842 pLoop->wsFlags = WHERE_COLUMN_EQ | WHERE_IDX_ONLY | WHERE_INDEXED
drh986b3872013-06-28 21:12:20 +0000843 | WHERE_AUTO_INDEX;
drh4139c992010-04-07 14:59:45 +0000844
845 /* Count the number of additional columns needed to create a
846 ** covering index. A "covering index" is an index that contains all
847 ** columns that are needed by the query. With a covering index, the
848 ** original table never needs to be accessed. Automatic indices must
849 ** be a covering index because the index will not be updated if the
850 ** original table changes and the index and table cannot both be used
851 ** if they go out of sync.
852 */
drh7699d1c2013-06-04 12:42:29 +0000853 extraCols = pSrc->colUsed & (~idxCols | MASKBIT(BMS-1));
drhc3ef4fa2014-10-28 15:58:50 +0000854 mxBitCol = MIN(BMS-1,pTable->nCol);
drh52ff8ea2010-04-08 14:15:56 +0000855 testcase( pTable->nCol==BMS-1 );
856 testcase( pTable->nCol==BMS-2 );
drh4139c992010-04-07 14:59:45 +0000857 for(i=0; i<mxBitCol; i++){
drhbbbdc832013-10-22 18:01:40 +0000858 if( extraCols & MASKBIT(i) ) nKeyCol++;
drh4139c992010-04-07 14:59:45 +0000859 }
drh7699d1c2013-06-04 12:42:29 +0000860 if( pSrc->colUsed & MASKBIT(BMS-1) ){
drhbbbdc832013-10-22 18:01:40 +0000861 nKeyCol += pTable->nCol - BMS + 1;
drh4139c992010-04-07 14:59:45 +0000862 }
drh8b307fb2010-04-06 15:57:05 +0000863
864 /* Construct the Index object to describe this index */
drhbbbdc832013-10-22 18:01:40 +0000865 pIdx = sqlite3AllocateIndexObject(pParse->db, nKeyCol+1, 0, &zNotUsed);
drh059b2d52014-10-24 19:28:09 +0000866 if( pIdx==0 ) goto end_auto_index_create;
drh7ba39a92013-05-30 17:43:19 +0000867 pLoop->u.btree.pIndex = pIdx;
drh8b307fb2010-04-06 15:57:05 +0000868 pIdx->zName = "auto-index";
drh424aab82010-04-06 18:28:20 +0000869 pIdx->pTable = pTable;
drh8b307fb2010-04-06 15:57:05 +0000870 n = 0;
drh0013e722010-04-08 00:40:15 +0000871 idxCols = 0;
drh8b307fb2010-04-06 15:57:05 +0000872 for(pTerm=pWC->a; pTerm<pWCEnd; pTerm++){
drh4139c992010-04-07 14:59:45 +0000873 if( termCanDriveIndex(pTerm, pSrc, notReady) ){
drh220f0d62021-10-15 17:06:16 +0000874 int iCol;
875 Bitmask cMask;
876 assert( (pTerm->eOperator & (WO_OR|WO_AND))==0 );
877 iCol = pTerm->u.x.leftColumn;
878 cMask = iCol>=BMS ? MASKBIT(BMS-1) : MASKBIT(iCol);
drh7963b0e2013-06-17 21:37:40 +0000879 testcase( iCol==BMS-1 );
880 testcase( iCol==BMS );
drh0013e722010-04-08 00:40:15 +0000881 if( (idxCols & cMask)==0 ){
882 Expr *pX = pTerm->pExpr;
883 idxCols |= cMask;
drh75fa2662020-09-28 15:49:43 +0000884 pIdx->aiColumn[n] = pTerm->u.x.leftColumn;
drh898c5272019-10-22 00:03:41 +0000885 pColl = sqlite3ExprCompareCollSeq(pParse, pX);
drh34da2a42019-12-24 13:41:33 +0000886 assert( pColl!=0 || pParse->nErr>0 ); /* TH3 collate01.800 */
887 pIdx->azColl[n] = pColl ? pColl->zName : sqlite3StrBINARY;
drh0013e722010-04-08 00:40:15 +0000888 n++;
889 }
drh8b307fb2010-04-06 15:57:05 +0000890 }
891 }
drh7ba39a92013-05-30 17:43:19 +0000892 assert( (u32)n==pLoop->u.btree.nEq );
drh4139c992010-04-07 14:59:45 +0000893
drhc6339082010-04-07 16:54:58 +0000894 /* Add additional columns needed to make the automatic index into
895 ** a covering index */
drh4139c992010-04-07 14:59:45 +0000896 for(i=0; i<mxBitCol; i++){
drh7699d1c2013-06-04 12:42:29 +0000897 if( extraCols & MASKBIT(i) ){
drh4139c992010-04-07 14:59:45 +0000898 pIdx->aiColumn[n] = i;
drhf19aa5f2015-12-30 16:51:20 +0000899 pIdx->azColl[n] = sqlite3StrBINARY;
drh4139c992010-04-07 14:59:45 +0000900 n++;
901 }
902 }
drh7699d1c2013-06-04 12:42:29 +0000903 if( pSrc->colUsed & MASKBIT(BMS-1) ){
drh4139c992010-04-07 14:59:45 +0000904 for(i=BMS-1; i<pTable->nCol; i++){
905 pIdx->aiColumn[n] = i;
drhf19aa5f2015-12-30 16:51:20 +0000906 pIdx->azColl[n] = sqlite3StrBINARY;
drh4139c992010-04-07 14:59:45 +0000907 n++;
908 }
909 }
drhbbbdc832013-10-22 18:01:40 +0000910 assert( n==nKeyCol );
drh4b92f982015-09-29 17:20:14 +0000911 pIdx->aiColumn[n] = XN_ROWID;
drhf19aa5f2015-12-30 16:51:20 +0000912 pIdx->azColl[n] = sqlite3StrBINARY;
drh8b307fb2010-04-06 15:57:05 +0000913
drhc6339082010-04-07 16:54:58 +0000914 /* Create the automatic index */
drh8b307fb2010-04-06 15:57:05 +0000915 assert( pLevel->iIdxCur>=0 );
drha1f41242013-05-31 20:00:58 +0000916 pLevel->iIdxCur = pParse->nTab++;
drh2ec2fb22013-11-06 19:59:23 +0000917 sqlite3VdbeAddOp2(v, OP_OpenAutoindex, pLevel->iIdxCur, nKeyCol+1);
918 sqlite3VdbeSetP4KeyInfo(pParse, pIdx);
drha21a64d2010-04-06 22:33:55 +0000919 VdbeComment((v, "for %s", pTable->zName));
drh2db144c2021-12-01 16:31:02 +0000920 if( OptimizationEnabled(pParse->db, SQLITE_BloomFilter) ){
921 pLevel->regFilter = ++pParse->nMem;
drh50fb7e02021-12-06 20:16:53 +0000922 sqlite3VdbeAddOp2(v, OP_Blob, 10000, pLevel->regFilter);
drh2db144c2021-12-01 16:31:02 +0000923 }
drh8b307fb2010-04-06 15:57:05 +0000924
drhc6339082010-04-07 16:54:58 +0000925 /* Fill the automatic index with content */
drh7b3aa082015-05-29 13:55:33 +0000926 pTabItem = &pWC->pWInfo->pTabList->a[pLevel->iFrom];
drh8a48b9c2015-08-19 15:20:00 +0000927 if( pTabItem->fg.viaCoroutine ){
drh7b3aa082015-05-29 13:55:33 +0000928 int regYield = pTabItem->regReturn;
danfb785b22015-10-24 20:31:22 +0000929 addrCounter = sqlite3VdbeAddOp2(v, OP_Integer, 0, 0);
drh7b3aa082015-05-29 13:55:33 +0000930 sqlite3VdbeAddOp3(v, OP_InitCoroutine, regYield, 0, pTabItem->addrFillSub);
931 addrTop = sqlite3VdbeAddOp1(v, OP_Yield, regYield);
932 VdbeCoverage(v);
drhfef37762018-07-10 19:48:35 +0000933 VdbeComment((v, "next row of %s", pTabItem->pTab->zName));
drh7b3aa082015-05-29 13:55:33 +0000934 }else{
935 addrTop = sqlite3VdbeAddOp1(v, OP_Rewind, pLevel->iTabCur); VdbeCoverage(v);
936 }
drh059b2d52014-10-24 19:28:09 +0000937 if( pPartial ){
drhec4ccdb2018-12-29 02:26:59 +0000938 iContinue = sqlite3VdbeMakeLabel(pParse);
drh059b2d52014-10-24 19:28:09 +0000939 sqlite3ExprIfFalse(pParse, pPartial, iContinue, SQLITE_JUMPIFNULL);
drh051575c2014-10-25 12:28:25 +0000940 pLoop->wsFlags |= WHERE_PARTIALIDX;
drh059b2d52014-10-24 19:28:09 +0000941 }
drh8b307fb2010-04-06 15:57:05 +0000942 regRecord = sqlite3GetTempReg(pParse);
danfb785b22015-10-24 20:31:22 +0000943 regBase = sqlite3GenerateIndexKey(
944 pParse, pIdx, pLevel->iTabCur, regRecord, 0, 0, 0, 0
945 );
drh2db144c2021-12-01 16:31:02 +0000946 if( pLevel->regFilter ){
947 sqlite3VdbeAddOp4Int(v, OP_FilterAdd, pLevel->regFilter, 0,
948 regBase, pLoop->u.btree.nEq);
949 }
drh8b307fb2010-04-06 15:57:05 +0000950 sqlite3VdbeAddOp2(v, OP_IdxInsert, pLevel->iIdxCur, regRecord);
951 sqlite3VdbeChangeP5(v, OPFLAG_USESEEKRESULT);
drh059b2d52014-10-24 19:28:09 +0000952 if( pPartial ) sqlite3VdbeResolveLabel(v, iContinue);
drh8a48b9c2015-08-19 15:20:00 +0000953 if( pTabItem->fg.viaCoroutine ){
danfb785b22015-10-24 20:31:22 +0000954 sqlite3VdbeChangeP2(v, addrCounter, regBase+n);
drh202230e2017-03-11 13:02:59 +0000955 testcase( pParse->db->mallocFailed );
drh00a61532019-06-28 07:08:13 +0000956 assert( pLevel->iIdxCur>0 );
drh202230e2017-03-11 13:02:59 +0000957 translateColumnToCopy(pParse, addrTop, pLevel->iTabCur,
drh00a61532019-06-28 07:08:13 +0000958 pTabItem->regResult, pLevel->iIdxCur);
drh076e85f2015-09-03 13:46:12 +0000959 sqlite3VdbeGoto(v, addrTop);
drh2c041312018-12-24 02:34:49 +0000960 pTabItem->fg.viaCoroutine = 0;
drh7b3aa082015-05-29 13:55:33 +0000961 }else{
962 sqlite3VdbeAddOp2(v, OP_Next, pLevel->iTabCur, addrTop+1); VdbeCoverage(v);
drhd9670ab2019-12-28 01:52:46 +0000963 sqlite3VdbeChangeP5(v, SQLITE_STMTSTATUS_AUTOINDEX);
drh7b3aa082015-05-29 13:55:33 +0000964 }
drh8b307fb2010-04-06 15:57:05 +0000965 sqlite3VdbeJumpHere(v, addrTop);
966 sqlite3ReleaseTempReg(pParse, regRecord);
967
968 /* Jump here when skipping the initialization */
969 sqlite3VdbeJumpHere(v, addrInit);
drh059b2d52014-10-24 19:28:09 +0000970
971end_auto_index_create:
972 sqlite3ExprDelete(pParse->db, pPartial);
drh8b307fb2010-04-06 15:57:05 +0000973}
drhc6339082010-04-07 16:54:58 +0000974#endif /* SQLITE_OMIT_AUTOMATIC_INDEX */
drh8b307fb2010-04-06 15:57:05 +0000975
drhfa35f5c2021-12-04 13:43:57 +0000976/*
drh6ae49e62021-12-05 20:19:47 +0000977** Generate bytecode that will initialize a Bloom filter that is appropriate
978** for pLevel.
979**
980** If there are inner loops within pLevel that have the WHERE_BLOOMFILTER
981** flag set, initialize a Bloomfilter for them as well. Except don't do
982** this recursive initialization if the SQLITE_BloomPulldown optimization has
983** been turned off.
984**
985** When the Bloom filter is initialized, the WHERE_BLOOMFILTER flag is cleared
986** from the loop, but the regFilter value is set to a register that implements
987** the Bloom filter. When regFilter is positive, the
988** sqlite3WhereCodeOneLoopStart() will generate code to test the Bloom filter
989** and skip the subsequence B-Tree seek if the Bloom filter indicates that
990** no matching rows exist.
991**
992** This routine may only be called if it has previously been determined that
993** the loop would benefit from a Bloom filter, and the WHERE_BLOOMFILTER bit
994** is set.
drhfa35f5c2021-12-04 13:43:57 +0000995*/
drh27a9e1f2021-12-10 17:36:16 +0000996static SQLITE_NOINLINE void sqlite3ConstructBloomFilter(
drh6ae49e62021-12-05 20:19:47 +0000997 WhereInfo *pWInfo, /* The WHERE clause */
998 int iLevel, /* Index in pWInfo->a[] that is pLevel */
drh761d64b2021-12-07 22:37:50 +0000999 WhereLevel *pLevel, /* Make a Bloom filter for this FROM term */
1000 Bitmask notReady /* Loops that are not ready */
drhfa35f5c2021-12-04 13:43:57 +00001001){
drh6ae49e62021-12-05 20:19:47 +00001002 int addrOnce; /* Address of opening OP_Once */
1003 int addrTop; /* Address of OP_Rewind */
1004 int addrCont; /* Jump here to skip a row */
1005 const WhereTerm *pTerm; /* For looping over WHERE clause terms */
1006 const WhereTerm *pWCEnd; /* Last WHERE clause term */
1007 Parse *pParse = pWInfo->pParse; /* Parsing context */
1008 Vdbe *v = pParse->pVdbe; /* VDBE under construction */
1009 WhereLoop *pLoop = pLevel->pWLoop; /* The loop being coded */
1010 int iCur; /* Cursor for table getting the filter */
drhfa35f5c2021-12-04 13:43:57 +00001011
1012 assert( pLoop!=0 );
1013 assert( v!=0 );
drh6ae49e62021-12-05 20:19:47 +00001014 assert( pLoop->wsFlags & WHERE_BLOOMFILTER );
1015
1016 addrOnce = sqlite3VdbeAddOp0(v, OP_Once); VdbeCoverage(v);
1017 do{
drh50fb7e02021-12-06 20:16:53 +00001018 const SrcItem *pItem;
1019 const Table *pTab;
drh7e910f62021-12-09 01:28:15 +00001020 u64 sz;
drh6ae49e62021-12-05 20:19:47 +00001021 sqlite3WhereExplainBloomFilter(pParse, pWInfo, pLevel);
1022 addrCont = sqlite3VdbeMakeLabel(pParse);
1023 iCur = pLevel->iTabCur;
1024 pLevel->regFilter = ++pParse->nMem;
drh50fb7e02021-12-06 20:16:53 +00001025
1026 /* The Bloom filter is a Blob held in a register. Initialize it
1027 ** to zero-filled blob of at least 80K bits, but maybe more if the
1028 ** estimated size of the table is larger. We could actually
1029 ** measure the size of the table at run-time using OP_Count with
1030 ** P3==1 and use that value to initialize the blob. But that makes
1031 ** testing complicated. By basing the blob size on the value in the
1032 ** sqlite_stat1 table, testing is much easier.
1033 */
1034 pItem = &pWInfo->pTabList->a[pLevel->iFrom];
1035 assert( pItem!=0 );
1036 pTab = pItem->pTab;
1037 assert( pTab!=0 );
drh7e910f62021-12-09 01:28:15 +00001038 sz = sqlite3LogEstToInt(pTab->nRowLogEst);
1039 if( sz<10000 ){
drh50fb7e02021-12-06 20:16:53 +00001040 sz = 10000;
drh7e910f62021-12-09 01:28:15 +00001041 }else if( sz>10000000 ){
1042 sz = 10000000;
drh50fb7e02021-12-06 20:16:53 +00001043 }
drh7e910f62021-12-09 01:28:15 +00001044 sqlite3VdbeAddOp2(v, OP_Blob, (int)sz, pLevel->regFilter);
drh50fb7e02021-12-06 20:16:53 +00001045
drh6ae49e62021-12-05 20:19:47 +00001046 addrTop = sqlite3VdbeAddOp1(v, OP_Rewind, iCur); VdbeCoverage(v);
1047 pWCEnd = &pWInfo->sWC.a[pWInfo->sWC.nTerm];
1048 for(pTerm=pWInfo->sWC.a; pTerm<pWCEnd; pTerm++){
1049 Expr *pExpr = pTerm->pExpr;
1050 if( (pTerm->wtFlags & TERM_VIRTUAL)==0
1051 && sqlite3ExprIsTableConstant(pExpr, iCur)
1052 ){
1053 sqlite3ExprIfFalse(pParse, pTerm->pExpr, addrCont, SQLITE_JUMPIFNULL);
1054 }
drhfa35f5c2021-12-04 13:43:57 +00001055 }
drh6ae49e62021-12-05 20:19:47 +00001056 if( pLoop->wsFlags & WHERE_IPK ){
1057 int r1 = sqlite3GetTempReg(pParse);
1058 sqlite3VdbeAddOp2(v, OP_Rowid, iCur, r1);
1059 sqlite3VdbeAddOp4Int(v, OP_FilterAdd, pLevel->regFilter, 0, r1, 1);
1060 sqlite3ReleaseTempReg(pParse, r1);
1061 }else{
1062 Index *pIdx = pLoop->u.btree.pIndex;
1063 int n = pLoop->u.btree.nEq;
1064 int r1 = sqlite3GetTempRange(pParse, n);
1065 int jj;
1066 for(jj=0; jj<n; jj++){
1067 int iCol = pIdx->aiColumn[jj];
drh50fb7e02021-12-06 20:16:53 +00001068 assert( pIdx->pTable==pItem->pTab );
drh6ae49e62021-12-05 20:19:47 +00001069 sqlite3ExprCodeGetColumnOfTable(v, pIdx->pTable, iCur, iCol,r1+jj);
1070 }
1071 sqlite3VdbeAddOp4Int(v, OP_FilterAdd, pLevel->regFilter, 0, r1, n);
1072 sqlite3ReleaseTempRange(pParse, r1, n);
drhfa35f5c2021-12-04 13:43:57 +00001073 }
drh6ae49e62021-12-05 20:19:47 +00001074 sqlite3VdbeResolveLabel(v, addrCont);
drh50fb7e02021-12-06 20:16:53 +00001075 sqlite3VdbeAddOp2(v, OP_Next, pLevel->iTabCur, addrTop+1);
drh6ae49e62021-12-05 20:19:47 +00001076 VdbeCoverage(v);
1077 sqlite3VdbeJumpHere(v, addrTop);
1078 pLoop->wsFlags &= ~WHERE_BLOOMFILTER;
1079 if( OptimizationDisabled(pParse->db, SQLITE_BloomPulldown) ) break;
drhc5860af2021-12-13 18:43:46 +00001080 while( ++iLevel < pWInfo->nLevel ){
drhff55da32022-03-04 20:54:09 +00001081 const SrcItem *pTabItem;
drh6ae49e62021-12-05 20:19:47 +00001082 pLevel = &pWInfo->a[iLevel];
drhff55da32022-03-04 20:54:09 +00001083 pTabItem = &pWInfo->pTabList->a[pLevel->iFrom];
1084 if( pTabItem->fg.jointype & JT_LEFT ) continue;
drh6ae49e62021-12-05 20:19:47 +00001085 pLoop = pLevel->pWLoop;
drh4f2006d2021-12-13 18:53:10 +00001086 if( NEVER(pLoop==0) ) continue;
drh761d64b2021-12-07 22:37:50 +00001087 if( pLoop->prereq & notReady ) continue;
drhc5860af2021-12-13 18:43:46 +00001088 if( (pLoop->wsFlags & (WHERE_BLOOMFILTER|WHERE_COLUMN_IN))
1089 ==WHERE_BLOOMFILTER
1090 ){
drhdc56dc92021-12-11 17:10:58 +00001091 /* This is a candidate for bloom-filter pull-down (early evaluation).
drhc5860af2021-12-13 18:43:46 +00001092 ** The test that WHERE_COLUMN_IN is omitted is important, as we are
1093 ** not able to do early evaluation of bloom filters that make use of
1094 ** the IN operator */
drhdc56dc92021-12-11 17:10:58 +00001095 break;
1096 }
drh6ae49e62021-12-05 20:19:47 +00001097 }
1098 }while( iLevel < pWInfo->nLevel );
1099 sqlite3VdbeJumpHere(v, addrOnce);
drhfa35f5c2021-12-04 13:43:57 +00001100}
1101
1102
drh9eff6162006-06-12 21:59:13 +00001103#ifndef SQLITE_OMIT_VIRTUALTABLE
1104/*
danielk19771d461462009-04-21 09:02:45 +00001105** Allocate and populate an sqlite3_index_info structure. It is the
1106** responsibility of the caller to eventually release the structure
drh82801a52022-01-20 17:10:59 +00001107** by passing the pointer returned by this function to freeIndexInfo().
danielk19771d461462009-04-21 09:02:45 +00001108*/
drh5346e952013-05-08 14:14:26 +00001109static sqlite3_index_info *allocateIndexInfo(
drhec778d22022-01-22 00:18:01 +00001110 WhereInfo *pWInfo, /* The WHERE clause */
drhefc88d02017-12-22 00:52:50 +00001111 WhereClause *pWC, /* The WHERE clause being analyzed */
dan4f20cd42015-06-08 18:05:54 +00001112 Bitmask mUnusable, /* Ignore terms with these prereqs */
drh76012942021-02-21 21:04:54 +00001113 SrcItem *pSrc, /* The FROM clause term that is the vtab */
dan6256c1c2016-08-08 20:15:41 +00001114 u16 *pmNoOmit /* Mask of terms not to omit */
drh5346e952013-05-08 14:14:26 +00001115){
danielk19771d461462009-04-21 09:02:45 +00001116 int i, j;
1117 int nTerm;
drhec778d22022-01-22 00:18:01 +00001118 Parse *pParse = pWInfo->pParse;
danielk19771d461462009-04-21 09:02:45 +00001119 struct sqlite3_index_constraint *pIdxCons;
1120 struct sqlite3_index_orderby *pIdxOrderBy;
1121 struct sqlite3_index_constraint_usage *pUsage;
drhefc88d02017-12-22 00:52:50 +00001122 struct HiddenIndexInfo *pHidden;
danielk19771d461462009-04-21 09:02:45 +00001123 WhereTerm *pTerm;
1124 int nOrderBy;
1125 sqlite3_index_info *pIdxInfo;
dan6256c1c2016-08-08 20:15:41 +00001126 u16 mNoOmit = 0;
drh8a95d3d2021-12-15 20:48:15 +00001127 const Table *pTab;
drhec778d22022-01-22 00:18:01 +00001128 int eDistinct = 0;
1129 ExprList *pOrderBy = pWInfo->pOrderBy;
1130
drh52576b72021-12-14 20:13:28 +00001131 assert( pSrc!=0 );
drh8a95d3d2021-12-15 20:48:15 +00001132 pTab = pSrc->pTab;
1133 assert( pTab!=0 );
1134 assert( IsVirtual(pTab) );
drh52576b72021-12-14 20:13:28 +00001135
drh8a95d3d2021-12-15 20:48:15 +00001136 /* Find all WHERE clause constraints referring to this virtual table.
1137 ** Mark each term with the TERM_OK flag. Set nTerm to the number of
1138 ** terms found.
1139 */
danielk19771d461462009-04-21 09:02:45 +00001140 for(i=nTerm=0, pTerm=pWC->a; i<pWC->nTerm; i++, pTerm++){
drh8a95d3d2021-12-15 20:48:15 +00001141 pTerm->wtFlags &= ~TERM_OK;
danielk19771d461462009-04-21 09:02:45 +00001142 if( pTerm->leftCursor != pSrc->iCursor ) continue;
dan4f20cd42015-06-08 18:05:54 +00001143 if( pTerm->prereqRight & mUnusable ) continue;
drh7a5bcc02013-01-16 17:08:58 +00001144 assert( IsPowerOfTwo(pTerm->eOperator & ~WO_EQUIV) );
1145 testcase( pTerm->eOperator & WO_IN );
1146 testcase( pTerm->eOperator & WO_ISNULL );
drhee145872015-05-14 13:18:47 +00001147 testcase( pTerm->eOperator & WO_IS );
dana4ff8252014-01-20 19:55:33 +00001148 testcase( pTerm->eOperator & WO_ALL );
dand03024d2017-09-09 19:41:12 +00001149 if( (pTerm->eOperator & ~(WO_EQUIV))==0 ) continue;
drhb4256992011-08-02 01:57:39 +00001150 if( pTerm->wtFlags & TERM_VNULL ) continue;
drh0fe7e7d2022-02-01 14:58:29 +00001151
drh220f0d62021-10-15 17:06:16 +00001152 assert( (pTerm->eOperator & (WO_OR|WO_AND))==0 );
drh8a95d3d2021-12-15 20:48:15 +00001153 assert( pTerm->u.x.leftColumn>=XN_ROWID );
1154 assert( pTerm->u.x.leftColumn<pTab->nCol );
1155
1156 /* tag-20191211-002: WHERE-clause constraints are not useful to the
1157 ** right-hand table of a LEFT JOIN. See tag-20191211-001 for the
1158 ** equivalent restriction for ordinary tables. */
1159 if( (pSrc->fg.jointype & JT_LEFT)!=0
1160 && !ExprHasProperty(pTerm->pExpr, EP_FromJoin)
1161 ){
1162 continue;
1163 }
danielk19771d461462009-04-21 09:02:45 +00001164 nTerm++;
drh8a95d3d2021-12-15 20:48:15 +00001165 pTerm->wtFlags |= TERM_OK;
danielk19771d461462009-04-21 09:02:45 +00001166 }
1167
1168 /* If the ORDER BY clause contains only columns in the current
1169 ** virtual table then allocate space for the aOrderBy part of
1170 ** the sqlite3_index_info structure.
1171 */
1172 nOrderBy = 0;
1173 if( pOrderBy ){
drh56f1b992012-09-25 14:29:39 +00001174 int n = pOrderBy->nExpr;
1175 for(i=0; i<n; i++){
danielk19771d461462009-04-21 09:02:45 +00001176 Expr *pExpr = pOrderBy->a[i].pExpr;
drh52576b72021-12-14 20:13:28 +00001177 Expr *pE2;
1178
drhe1961c52021-12-30 17:36:54 +00001179 /* Skip over constant terms in the ORDER BY clause */
1180 if( sqlite3ExprIsConstant(pExpr) ){
1181 continue;
1182 }
1183
drh52576b72021-12-14 20:13:28 +00001184 /* Virtual tables are unable to deal with NULLS FIRST */
dan4fcb9ca2019-08-20 15:47:28 +00001185 if( pOrderBy->a[i].sortFlags & KEYINFO_ORDER_BIGNULL ) break;
drh52576b72021-12-14 20:13:28 +00001186
1187 /* First case - a direct column references without a COLLATE operator */
1188 if( pExpr->op==TK_COLUMN && pExpr->iTable==pSrc->iCursor ){
drh8a95d3d2021-12-15 20:48:15 +00001189 assert( pExpr->iColumn>=XN_ROWID && pExpr->iColumn<pTab->nCol );
drh52576b72021-12-14 20:13:28 +00001190 continue;
1191 }
1192
1193 /* 2nd case - a column reference with a COLLATE operator. Only match
1194 ** of the COLLATE operator matches the collation of the column. */
1195 if( pExpr->op==TK_COLLATE
1196 && (pE2 = pExpr->pLeft)->op==TK_COLUMN
1197 && pE2->iTable==pSrc->iCursor
1198 ){
1199 const char *zColl; /* The collating sequence name */
1200 assert( !ExprHasProperty(pExpr, EP_IntValue) );
1201 assert( pExpr->u.zToken!=0 );
drh8a95d3d2021-12-15 20:48:15 +00001202 assert( pE2->iColumn>=XN_ROWID && pE2->iColumn<pTab->nCol );
drh52576b72021-12-14 20:13:28 +00001203 pExpr->iColumn = pE2->iColumn;
1204 if( pE2->iColumn<0 ) continue; /* Collseq does not matter for rowid */
drh8a95d3d2021-12-15 20:48:15 +00001205 zColl = sqlite3ColumnColl(&pTab->aCol[pE2->iColumn]);
drh52576b72021-12-14 20:13:28 +00001206 if( zColl==0 ) zColl = sqlite3StrBINARY;
1207 if( sqlite3_stricmp(pExpr->u.zToken, zColl)==0 ) continue;
1208 }
1209
1210 /* No matches cause a break out of the loop */
1211 break;
danielk19771d461462009-04-21 09:02:45 +00001212 }
drh0fe7e7d2022-02-01 14:58:29 +00001213 if( i==n ){
drh56f1b992012-09-25 14:29:39 +00001214 nOrderBy = n;
drh68dc8152022-01-22 20:45:57 +00001215 if( (pWInfo->wctrlFlags & (WHERE_GROUPBY|WHERE_DISTINCTBY)) ){
1216 eDistinct = 1 + ((pWInfo->wctrlFlags & WHERE_DISTINCTBY)!=0);
drhec778d22022-01-22 00:18:01 +00001217 }
danielk19771d461462009-04-21 09:02:45 +00001218 }
1219 }
1220
1221 /* Allocate the sqlite3_index_info structure
1222 */
1223 pIdxInfo = sqlite3DbMallocZero(pParse->db, sizeof(*pIdxInfo)
1224 + (sizeof(*pIdxCons) + sizeof(*pUsage))*nTerm
drh82801a52022-01-20 17:10:59 +00001225 + sizeof(*pIdxOrderBy)*nOrderBy + sizeof(*pHidden)
1226 + sizeof(sqlite3_value*)*nTerm );
danielk19771d461462009-04-21 09:02:45 +00001227 if( pIdxInfo==0 ){
1228 sqlite3ErrorMsg(pParse, "out of memory");
danielk19771d461462009-04-21 09:02:45 +00001229 return 0;
1230 }
drhefc88d02017-12-22 00:52:50 +00001231 pHidden = (struct HiddenIndexInfo*)&pIdxInfo[1];
drh82801a52022-01-20 17:10:59 +00001232 pIdxCons = (struct sqlite3_index_constraint*)&pHidden->aRhs[nTerm];
danielk19771d461462009-04-21 09:02:45 +00001233 pIdxOrderBy = (struct sqlite3_index_orderby*)&pIdxCons[nTerm];
1234 pUsage = (struct sqlite3_index_constraint_usage*)&pIdxOrderBy[nOrderBy];
drhcfcf4de2019-12-28 13:01:52 +00001235 pIdxInfo->aConstraint = pIdxCons;
1236 pIdxInfo->aOrderBy = pIdxOrderBy;
1237 pIdxInfo->aConstraintUsage = pUsage;
drhefc88d02017-12-22 00:52:50 +00001238 pHidden->pWC = pWC;
1239 pHidden->pParse = pParse;
drhec778d22022-01-22 00:18:01 +00001240 pHidden->eDistinct = eDistinct;
drha9f18f02022-02-01 16:30:57 +00001241 pHidden->mIn = 0;
danielk19771d461462009-04-21 09:02:45 +00001242 for(i=j=0, pTerm=pWC->a; i<pWC->nTerm; i++, pTerm++){
dand03024d2017-09-09 19:41:12 +00001243 u16 op;
drh8a95d3d2021-12-15 20:48:15 +00001244 if( (pTerm->wtFlags & TERM_OK)==0 ) continue;
drh75fa2662020-09-28 15:49:43 +00001245 pIdxCons[j].iColumn = pTerm->u.x.leftColumn;
danielk19771d461462009-04-21 09:02:45 +00001246 pIdxCons[j].iTermOffset = i;
dand03024d2017-09-09 19:41:12 +00001247 op = pTerm->eOperator & WO_ALL;
drha9f18f02022-02-01 16:30:57 +00001248 if( op==WO_IN ){
drh51896e62022-02-06 22:13:35 +00001249 if( (pTerm->wtFlags & TERM_SLICE)==0 ){
1250 pHidden->mIn |= SMASKBIT32(j);
1251 }
drha9f18f02022-02-01 16:30:57 +00001252 op = WO_EQ;
1253 }
drh303a69b2017-09-11 19:47:37 +00001254 if( op==WO_AUX ){
dand03024d2017-09-09 19:41:12 +00001255 pIdxCons[j].op = pTerm->eMatchOp;
1256 }else if( op & (WO_ISNULL|WO_IS) ){
1257 if( op==WO_ISNULL ){
1258 pIdxCons[j].op = SQLITE_INDEX_CONSTRAINT_ISNULL;
1259 }else{
1260 pIdxCons[j].op = SQLITE_INDEX_CONSTRAINT_IS;
1261 }
1262 }else{
1263 pIdxCons[j].op = (u8)op;
1264 /* The direct assignment in the previous line is possible only because
1265 ** the WO_ and SQLITE_INDEX_CONSTRAINT_ codes are identical. The
1266 ** following asserts verify this fact. */
1267 assert( WO_EQ==SQLITE_INDEX_CONSTRAINT_EQ );
1268 assert( WO_LT==SQLITE_INDEX_CONSTRAINT_LT );
1269 assert( WO_LE==SQLITE_INDEX_CONSTRAINT_LE );
1270 assert( WO_GT==SQLITE_INDEX_CONSTRAINT_GT );
1271 assert( WO_GE==SQLITE_INDEX_CONSTRAINT_GE );
drh303a69b2017-09-11 19:47:37 +00001272 assert( pTerm->eOperator&(WO_IN|WO_EQ|WO_LT|WO_LE|WO_GT|WO_GE|WO_AUX) );
dan6256c1c2016-08-08 20:15:41 +00001273
dand03024d2017-09-09 19:41:12 +00001274 if( op & (WO_LT|WO_LE|WO_GT|WO_GE)
drh33892c12017-09-11 18:37:44 +00001275 && sqlite3ExprIsVector(pTerm->pExpr->pRight)
1276 ){
drhb6c94722019-12-05 21:46:23 +00001277 testcase( j!=i );
1278 if( j<16 ) mNoOmit |= (1 << j);
dand03024d2017-09-09 19:41:12 +00001279 if( op==WO_LT ) pIdxCons[j].op = WO_LE;
1280 if( op==WO_GT ) pIdxCons[j].op = WO_GE;
1281 }
dan6256c1c2016-08-08 20:15:41 +00001282 }
1283
danielk19771d461462009-04-21 09:02:45 +00001284 j++;
1285 }
drh8a95d3d2021-12-15 20:48:15 +00001286 assert( j==nTerm );
drhcfcf4de2019-12-28 13:01:52 +00001287 pIdxInfo->nConstraint = j;
drhe1961c52021-12-30 17:36:54 +00001288 for(i=j=0; i<nOrderBy; i++){
danielk19771d461462009-04-21 09:02:45 +00001289 Expr *pExpr = pOrderBy->a[i].pExpr;
drhe1961c52021-12-30 17:36:54 +00001290 if( sqlite3ExprIsConstant(pExpr) ) continue;
drh52576b72021-12-14 20:13:28 +00001291 assert( pExpr->op==TK_COLUMN
1292 || (pExpr->op==TK_COLLATE && pExpr->pLeft->op==TK_COLUMN
1293 && pExpr->iColumn==pExpr->pLeft->iColumn) );
drhe1961c52021-12-30 17:36:54 +00001294 pIdxOrderBy[j].iColumn = pExpr->iColumn;
1295 pIdxOrderBy[j].desc = pOrderBy->a[i].sortFlags & KEYINFO_ORDER_DESC;
1296 j++;
danielk19771d461462009-04-21 09:02:45 +00001297 }
drhe1961c52021-12-30 17:36:54 +00001298 pIdxInfo->nOrderBy = j;
danielk19771d461462009-04-21 09:02:45 +00001299
dan6256c1c2016-08-08 20:15:41 +00001300 *pmNoOmit = mNoOmit;
danielk19771d461462009-04-21 09:02:45 +00001301 return pIdxInfo;
1302}
1303
1304/*
drh82801a52022-01-20 17:10:59 +00001305** Free an sqlite3_index_info structure allocated by allocateIndexInfo()
1306** and possibly modified by xBestIndex methods.
1307*/
1308static void freeIndexInfo(sqlite3 *db, sqlite3_index_info *pIdxInfo){
1309 HiddenIndexInfo *pHidden;
1310 int i;
1311 assert( pIdxInfo!=0 );
1312 pHidden = (HiddenIndexInfo*)&pIdxInfo[1];
1313 assert( pHidden->pParse!=0 );
1314 assert( pHidden->pParse->db==db );
1315 for(i=0; i<pIdxInfo->nConstraint; i++){
drh991d1082022-01-21 00:38:49 +00001316 sqlite3ValueFree(pHidden->aRhs[i]); /* IMP: R-14553-25174 */
drh82801a52022-01-20 17:10:59 +00001317 pHidden->aRhs[i] = 0;
1318 }
1319 sqlite3DbFree(db, pIdxInfo);
1320}
1321
1322/*
danielk19771d461462009-04-21 09:02:45 +00001323** The table object reference passed as the second argument to this function
1324** must represent a virtual table. This function invokes the xBestIndex()
drh3b48e8c2013-06-12 20:18:16 +00001325** method of the virtual table with the sqlite3_index_info object that
1326** comes in as the 3rd argument to this function.
danielk19771d461462009-04-21 09:02:45 +00001327**
drh32dcc842018-11-16 13:56:15 +00001328** If an error occurs, pParse is populated with an error message and an
1329** appropriate error code is returned. A return of SQLITE_CONSTRAINT from
1330** xBestIndex is not considered an error. SQLITE_CONSTRAINT indicates that
1331** the current configuration of "unusable" flags in sqlite3_index_info can
1332** not result in a valid plan.
danielk19771d461462009-04-21 09:02:45 +00001333**
1334** Whether or not an error is returned, it is the responsibility of the
1335** caller to eventually free p->idxStr if p->needToFreeIdxStr indicates
1336** that this is required.
1337*/
1338static int vtabBestIndex(Parse *pParse, Table *pTab, sqlite3_index_info *p){
danielk1977595a5232009-07-24 17:58:53 +00001339 sqlite3_vtab *pVtab = sqlite3GetVTable(pParse->db, pTab)->pVtab;
danielk19771d461462009-04-21 09:02:45 +00001340 int rc;
1341
drhcfcf4de2019-12-28 13:01:52 +00001342 whereTraceIndexInfoInputs(p);
drh3832c3c2022-02-03 14:19:26 +00001343 pParse->db->nSchemaLock++;
danielk19771d461462009-04-21 09:02:45 +00001344 rc = pVtab->pModule->xBestIndex(pVtab, p);
drh3832c3c2022-02-03 14:19:26 +00001345 pParse->db->nSchemaLock--;
drhcfcf4de2019-12-28 13:01:52 +00001346 whereTraceIndexInfoOutputs(p);
danielk19771d461462009-04-21 09:02:45 +00001347
drh32dcc842018-11-16 13:56:15 +00001348 if( rc!=SQLITE_OK && rc!=SQLITE_CONSTRAINT ){
danielk19771d461462009-04-21 09:02:45 +00001349 if( rc==SQLITE_NOMEM ){
drh4a642b62016-02-05 01:55:27 +00001350 sqlite3OomFault(pParse->db);
danielk19771d461462009-04-21 09:02:45 +00001351 }else if( !pVtab->zErrMsg ){
1352 sqlite3ErrorMsg(pParse, "%s", sqlite3ErrStr(rc));
1353 }else{
1354 sqlite3ErrorMsg(pParse, "%s", pVtab->zErrMsg);
1355 }
1356 }
drhb9755982010-07-24 16:34:37 +00001357 sqlite3_free(pVtab->zErrMsg);
danielk19771d461462009-04-21 09:02:45 +00001358 pVtab->zErrMsg = 0;
drh32dcc842018-11-16 13:56:15 +00001359 return rc;
danielk19771d461462009-04-21 09:02:45 +00001360}
drh7ba39a92013-05-30 17:43:19 +00001361#endif /* !defined(SQLITE_OMIT_VIRTUALTABLE) */
danielk19771d461462009-04-21 09:02:45 +00001362
drh175b8f02019-08-08 15:24:17 +00001363#ifdef SQLITE_ENABLE_STAT4
drh28c4cf42005-07-27 20:41:43 +00001364/*
drhfaacf172011-08-12 01:51:45 +00001365** Estimate the location of a particular key among all keys in an
1366** index. Store the results in aStat as follows:
drhe847d322011-01-20 02:56:37 +00001367**
dana3d0c132015-03-14 18:59:58 +00001368** aStat[0] Est. number of rows less than pRec
1369** aStat[1] Est. number of rows equal to pRec
dan02fa4692009-08-17 17:06:58 +00001370**
drh6d3f91d2014-11-05 19:26:12 +00001371** Return the index of the sample that is the smallest sample that
dana3d0c132015-03-14 18:59:58 +00001372** is greater than or equal to pRec. Note that this index is not an index
1373** into the aSample[] array - it is an index into a virtual set of samples
1374** based on the contents of aSample[] and the number of fields in record
1375** pRec.
dan02fa4692009-08-17 17:06:58 +00001376*/
drh6d3f91d2014-11-05 19:26:12 +00001377static int whereKeyStats(
dan02fa4692009-08-17 17:06:58 +00001378 Parse *pParse, /* Database connection */
1379 Index *pIdx, /* Index to consider domain of */
dan7a419232013-08-06 20:01:43 +00001380 UnpackedRecord *pRec, /* Vector of values to consider */
drhfaacf172011-08-12 01:51:45 +00001381 int roundUp, /* Round up if true. Round down if false */
1382 tRowcnt *aStat /* OUT: stats written here */
dan02fa4692009-08-17 17:06:58 +00001383){
danf52bb8d2013-08-03 20:24:58 +00001384 IndexSample *aSample = pIdx->aSample;
drhfbc38de2013-09-03 19:26:22 +00001385 int iCol; /* Index of required stats in anEq[] etc. */
dana3d0c132015-03-14 18:59:58 +00001386 int i; /* Index of first sample >= pRec */
1387 int iSample; /* Smallest sample larger than or equal to pRec */
dan84c309b2013-08-08 16:17:12 +00001388 int iMin = 0; /* Smallest sample not yet tested */
dan84c309b2013-08-08 16:17:12 +00001389 int iTest; /* Next sample to test */
1390 int res; /* Result of comparison operation */
dana3d0c132015-03-14 18:59:58 +00001391 int nField; /* Number of fields in pRec */
1392 tRowcnt iLower = 0; /* anLt[] + anEq[] of largest sample pRec is > */
dan02fa4692009-08-17 17:06:58 +00001393
drh4f991892013-10-11 15:05:05 +00001394#ifndef SQLITE_DEBUG
1395 UNUSED_PARAMETER( pParse );
1396#endif
drh7f594752013-12-03 19:49:55 +00001397 assert( pRec!=0 );
drh5c624862011-09-22 18:46:34 +00001398 assert( pIdx->nSample>0 );
dana3d0c132015-03-14 18:59:58 +00001399 assert( pRec->nField>0 && pRec->nField<=pIdx->nSampleCol );
1400
1401 /* Do a binary search to find the first sample greater than or equal
1402 ** to pRec. If pRec contains a single field, the set of samples to search
1403 ** is simply the aSample[] array. If the samples in aSample[] contain more
1404 ** than one fields, all fields following the first are ignored.
1405 **
1406 ** If pRec contains N fields, where N is more than one, then as well as the
1407 ** samples in aSample[] (truncated to N fields), the search also has to
1408 ** consider prefixes of those samples. For example, if the set of samples
1409 ** in aSample is:
1410 **
1411 ** aSample[0] = (a, 5)
1412 ** aSample[1] = (a, 10)
1413 ** aSample[2] = (b, 5)
1414 ** aSample[3] = (c, 100)
1415 ** aSample[4] = (c, 105)
1416 **
1417 ** Then the search space should ideally be the samples above and the
1418 ** unique prefixes [a], [b] and [c]. But since that is hard to organize,
1419 ** the code actually searches this set:
1420 **
1421 ** 0: (a)
1422 ** 1: (a, 5)
1423 ** 2: (a, 10)
1424 ** 3: (a, 10)
1425 ** 4: (b)
1426 ** 5: (b, 5)
1427 ** 6: (c)
1428 ** 7: (c, 100)
1429 ** 8: (c, 105)
1430 ** 9: (c, 105)
1431 **
1432 ** For each sample in the aSample[] array, N samples are present in the
1433 ** effective sample array. In the above, samples 0 and 1 are based on
1434 ** sample aSample[0]. Samples 2 and 3 on aSample[1] etc.
1435 **
1436 ** Often, sample i of each block of N effective samples has (i+1) fields.
1437 ** Except, each sample may be extended to ensure that it is greater than or
1438 ** equal to the previous sample in the array. For example, in the above,
1439 ** sample 2 is the first sample of a block of N samples, so at first it
1440 ** appears that it should be 1 field in size. However, that would make it
1441 ** smaller than sample 1, so the binary search would not work. As a result,
1442 ** it is extended to two fields. The duplicates that this creates do not
1443 ** cause any problems.
1444 */
1445 nField = pRec->nField;
1446 iCol = 0;
1447 iSample = pIdx->nSample * nField;
dan84c309b2013-08-08 16:17:12 +00001448 do{
dana3d0c132015-03-14 18:59:58 +00001449 int iSamp; /* Index in aSample[] of test sample */
1450 int n; /* Number of fields in test sample */
1451
1452 iTest = (iMin+iSample)/2;
1453 iSamp = iTest / nField;
1454 if( iSamp>0 ){
1455 /* The proposed effective sample is a prefix of sample aSample[iSamp].
1456 ** Specifically, the shortest prefix of at least (1 + iTest%nField)
1457 ** fields that is greater than the previous effective sample. */
1458 for(n=(iTest % nField) + 1; n<nField; n++){
1459 if( aSample[iSamp-1].anLt[n-1]!=aSample[iSamp].anLt[n-1] ) break;
1460 }
dan84c309b2013-08-08 16:17:12 +00001461 }else{
dana3d0c132015-03-14 18:59:58 +00001462 n = iTest + 1;
dan02fa4692009-08-17 17:06:58 +00001463 }
dana3d0c132015-03-14 18:59:58 +00001464
1465 pRec->nField = n;
1466 res = sqlite3VdbeRecordCompare(aSample[iSamp].n, aSample[iSamp].p, pRec);
1467 if( res<0 ){
1468 iLower = aSample[iSamp].anLt[n-1] + aSample[iSamp].anEq[n-1];
1469 iMin = iTest+1;
1470 }else if( res==0 && n<nField ){
1471 iLower = aSample[iSamp].anLt[n-1];
1472 iMin = iTest+1;
1473 res = -1;
1474 }else{
1475 iSample = iTest;
1476 iCol = n-1;
1477 }
1478 }while( res && iMin<iSample );
1479 i = iSample / nField;
drh51147ba2005-07-23 22:59:55 +00001480
dan84c309b2013-08-08 16:17:12 +00001481#ifdef SQLITE_DEBUG
1482 /* The following assert statements check that the binary search code
1483 ** above found the right answer. This block serves no purpose other
1484 ** than to invoke the asserts. */
dana3d0c132015-03-14 18:59:58 +00001485 if( pParse->db->mallocFailed==0 ){
1486 if( res==0 ){
1487 /* If (res==0) is true, then pRec must be equal to sample i. */
1488 assert( i<pIdx->nSample );
1489 assert( iCol==nField-1 );
1490 pRec->nField = nField;
1491 assert( 0==sqlite3VdbeRecordCompare(aSample[i].n, aSample[i].p, pRec)
1492 || pParse->db->mallocFailed
1493 );
1494 }else{
1495 /* Unless i==pIdx->nSample, indicating that pRec is larger than
1496 ** all samples in the aSample[] array, pRec must be smaller than the
1497 ** (iCol+1) field prefix of sample i. */
1498 assert( i<=pIdx->nSample && i>=0 );
1499 pRec->nField = iCol+1;
1500 assert( i==pIdx->nSample
1501 || sqlite3VdbeRecordCompare(aSample[i].n, aSample[i].p, pRec)>0
1502 || pParse->db->mallocFailed );
1503
1504 /* if i==0 and iCol==0, then record pRec is smaller than all samples
1505 ** in the aSample[] array. Otherwise, if (iCol>0) then pRec must
1506 ** be greater than or equal to the (iCol) field prefix of sample i.
1507 ** If (i>0), then pRec must also be greater than sample (i-1). */
1508 if( iCol>0 ){
1509 pRec->nField = iCol;
1510 assert( sqlite3VdbeRecordCompare(aSample[i].n, aSample[i].p, pRec)<=0
1511 || pParse->db->mallocFailed );
1512 }
1513 if( i>0 ){
1514 pRec->nField = nField;
1515 assert( sqlite3VdbeRecordCompare(aSample[i-1].n, aSample[i-1].p, pRec)<0
1516 || pParse->db->mallocFailed );
1517 }
1518 }
drhfaacf172011-08-12 01:51:45 +00001519 }
dan84c309b2013-08-08 16:17:12 +00001520#endif /* ifdef SQLITE_DEBUG */
dan02fa4692009-08-17 17:06:58 +00001521
dan84c309b2013-08-08 16:17:12 +00001522 if( res==0 ){
dana3d0c132015-03-14 18:59:58 +00001523 /* Record pRec is equal to sample i */
1524 assert( iCol==nField-1 );
daneea568d2013-08-07 19:46:15 +00001525 aStat[0] = aSample[i].anLt[iCol];
1526 aStat[1] = aSample[i].anEq[iCol];
drhfaacf172011-08-12 01:51:45 +00001527 }else{
dana3d0c132015-03-14 18:59:58 +00001528 /* At this point, the (iCol+1) field prefix of aSample[i] is the first
1529 ** sample that is greater than pRec. Or, if i==pIdx->nSample then pRec
1530 ** is larger than all samples in the array. */
1531 tRowcnt iUpper, iGap;
1532 if( i>=pIdx->nSample ){
1533 iUpper = sqlite3LogEstToInt(pIdx->aiRowLogEst[0]);
drhfaacf172011-08-12 01:51:45 +00001534 }else{
dana3d0c132015-03-14 18:59:58 +00001535 iUpper = aSample[i].anLt[iCol];
drhfaacf172011-08-12 01:51:45 +00001536 }
dana3d0c132015-03-14 18:59:58 +00001537
drhfaacf172011-08-12 01:51:45 +00001538 if( iLower>=iUpper ){
1539 iGap = 0;
1540 }else{
1541 iGap = iUpper - iLower;
drhfaacf172011-08-12 01:51:45 +00001542 }
1543 if( roundUp ){
1544 iGap = (iGap*2)/3;
1545 }else{
1546 iGap = iGap/3;
1547 }
1548 aStat[0] = iLower + iGap;
drh63ad86e2017-05-24 04:18:00 +00001549 aStat[1] = pIdx->aAvgEq[nField-1];
dan02fa4692009-08-17 17:06:58 +00001550 }
dana3d0c132015-03-14 18:59:58 +00001551
1552 /* Restore the pRec->nField value before returning. */
1553 pRec->nField = nField;
drh6d3f91d2014-11-05 19:26:12 +00001554 return i;
dan02fa4692009-08-17 17:06:58 +00001555}
drh175b8f02019-08-08 15:24:17 +00001556#endif /* SQLITE_ENABLE_STAT4 */
dan937d0de2009-10-15 18:35:38 +00001557
1558/*
danaa9933c2014-04-24 20:04:49 +00001559** If it is not NULL, pTerm is a term that provides an upper or lower
1560** bound on a range scan. Without considering pTerm, it is estimated
1561** that the scan will visit nNew rows. This function returns the number
1562** estimated to be visited after taking pTerm into account.
1563**
1564** If the user explicitly specified a likelihood() value for this term,
1565** then the return value is the likelihood multiplied by the number of
1566** input rows. Otherwise, this function assumes that an "IS NOT NULL" term
1567** has a likelihood of 0.50, and any other term a likelihood of 0.25.
1568*/
1569static LogEst whereRangeAdjust(WhereTerm *pTerm, LogEst nNew){
1570 LogEst nRet = nNew;
1571 if( pTerm ){
1572 if( pTerm->truthProb<=0 ){
1573 nRet += pTerm->truthProb;
dan7de2a1f2014-04-28 20:11:20 +00001574 }else if( (pTerm->wtFlags & TERM_VNULL)==0 ){
danaa9933c2014-04-24 20:04:49 +00001575 nRet -= 20; assert( 20==sqlite3LogEst(4) );
1576 }
1577 }
1578 return nRet;
1579}
1580
drh567cc1e2015-08-25 19:42:28 +00001581
drh175b8f02019-08-08 15:24:17 +00001582#ifdef SQLITE_ENABLE_STAT4
drh567cc1e2015-08-25 19:42:28 +00001583/*
1584** Return the affinity for a single column of an index.
1585*/
dand66e5792016-08-03 16:14:33 +00001586char sqlite3IndexColumnAffinity(sqlite3 *db, Index *pIdx, int iCol){
drh8ffddeb2015-09-25 01:09:27 +00001587 assert( iCol>=0 && iCol<pIdx->nColumn );
drh567cc1e2015-08-25 19:42:28 +00001588 if( !pIdx->zColAff ){
1589 if( sqlite3IndexAffinityStr(db, pIdx)==0 ) return SQLITE_AFF_BLOB;
1590 }
drh96fb16e2019-08-06 14:37:24 +00001591 assert( pIdx->zColAff[iCol]!=0 );
drh567cc1e2015-08-25 19:42:28 +00001592 return pIdx->zColAff[iCol];
1593}
1594#endif
1595
1596
drh175b8f02019-08-08 15:24:17 +00001597#ifdef SQLITE_ENABLE_STAT4
danb0b82902014-06-26 20:21:46 +00001598/*
1599** This function is called to estimate the number of rows visited by a
1600** range-scan on a skip-scan index. For example:
1601**
1602** CREATE INDEX i1 ON t1(a, b, c);
1603** SELECT * FROM t1 WHERE a=? AND c BETWEEN ? AND ?;
1604**
1605** Value pLoop->nOut is currently set to the estimated number of rows
1606** visited for scanning (a=? AND b=?). This function reduces that estimate
1607** by some factor to account for the (c BETWEEN ? AND ?) expression based
1608** on the stat4 data for the index. this scan will be peformed multiple
1609** times (once for each (a,b) combination that matches a=?) is dealt with
1610** by the caller.
1611**
1612** It does this by scanning through all stat4 samples, comparing values
1613** extracted from pLower and pUpper with the corresponding column in each
1614** sample. If L and U are the number of samples found to be less than or
1615** equal to the values extracted from pLower and pUpper respectively, and
1616** N is the total number of samples, the pLoop->nOut value is adjusted
1617** as follows:
1618**
1619** nOut = nOut * ( min(U - L, 1) / N )
1620**
1621** If pLower is NULL, or a value cannot be extracted from the term, L is
1622** set to zero. If pUpper is NULL, or a value cannot be extracted from it,
1623** U is set to N.
1624**
1625** Normally, this function sets *pbDone to 1 before returning. However,
1626** if no value can be extracted from either pLower or pUpper (and so the
1627** estimate of the number of rows delivered remains unchanged), *pbDone
1628** is left as is.
1629**
1630** If an error occurs, an SQLite error code is returned. Otherwise,
1631** SQLITE_OK.
1632*/
1633static int whereRangeSkipScanEst(
1634 Parse *pParse, /* Parsing & code generating context */
1635 WhereTerm *pLower, /* Lower bound on the range. ex: "x>123" Might be NULL */
1636 WhereTerm *pUpper, /* Upper bound on the range. ex: "x<455" Might be NULL */
1637 WhereLoop *pLoop, /* Update the .nOut value of this loop */
1638 int *pbDone /* Set to true if at least one expr. value extracted */
1639){
1640 Index *p = pLoop->u.btree.pIndex;
1641 int nEq = pLoop->u.btree.nEq;
1642 sqlite3 *db = pParse->db;
dan4e42ba42014-06-27 20:14:25 +00001643 int nLower = -1;
1644 int nUpper = p->nSample+1;
danb0b82902014-06-26 20:21:46 +00001645 int rc = SQLITE_OK;
drh8ffddeb2015-09-25 01:09:27 +00001646 u8 aff = sqlite3IndexColumnAffinity(db, p, nEq);
danb0b82902014-06-26 20:21:46 +00001647 CollSeq *pColl;
1648
1649 sqlite3_value *p1 = 0; /* Value extracted from pLower */
1650 sqlite3_value *p2 = 0; /* Value extracted from pUpper */
1651 sqlite3_value *pVal = 0; /* Value extracted from record */
1652
1653 pColl = sqlite3LocateCollSeq(pParse, p->azColl[nEq]);
1654 if( pLower ){
1655 rc = sqlite3Stat4ValueFromExpr(pParse, pLower->pExpr->pRight, aff, &p1);
dan4e42ba42014-06-27 20:14:25 +00001656 nLower = 0;
danb0b82902014-06-26 20:21:46 +00001657 }
1658 if( pUpper && rc==SQLITE_OK ){
1659 rc = sqlite3Stat4ValueFromExpr(pParse, pUpper->pExpr->pRight, aff, &p2);
dan4e42ba42014-06-27 20:14:25 +00001660 nUpper = p2 ? 0 : p->nSample;
danb0b82902014-06-26 20:21:46 +00001661 }
1662
1663 if( p1 || p2 ){
1664 int i;
1665 int nDiff;
1666 for(i=0; rc==SQLITE_OK && i<p->nSample; i++){
1667 rc = sqlite3Stat4Column(db, p->aSample[i].p, p->aSample[i].n, nEq, &pVal);
1668 if( rc==SQLITE_OK && p1 ){
1669 int res = sqlite3MemCompare(p1, pVal, pColl);
dan4e42ba42014-06-27 20:14:25 +00001670 if( res>=0 ) nLower++;
danb0b82902014-06-26 20:21:46 +00001671 }
1672 if( rc==SQLITE_OK && p2 ){
1673 int res = sqlite3MemCompare(p2, pVal, pColl);
dan4e42ba42014-06-27 20:14:25 +00001674 if( res>=0 ) nUpper++;
danb0b82902014-06-26 20:21:46 +00001675 }
1676 }
danb0b82902014-06-26 20:21:46 +00001677 nDiff = (nUpper - nLower);
1678 if( nDiff<=0 ) nDiff = 1;
dan4e42ba42014-06-27 20:14:25 +00001679
1680 /* If there is both an upper and lower bound specified, and the
1681 ** comparisons indicate that they are close together, use the fallback
1682 ** method (assume that the scan visits 1/64 of the rows) for estimating
1683 ** the number of rows visited. Otherwise, estimate the number of rows
1684 ** using the method described in the header comment for this function. */
1685 if( nDiff!=1 || pUpper==0 || pLower==0 ){
1686 int nAdjust = (sqlite3LogEst(p->nSample) - sqlite3LogEst(nDiff));
1687 pLoop->nOut -= nAdjust;
1688 *pbDone = 1;
1689 WHERETRACE(0x10, ("range skip-scan regions: %u..%u adjust=%d est=%d\n",
danfa887452014-06-28 15:26:10 +00001690 nLower, nUpper, nAdjust*-1, pLoop->nOut));
dan4e42ba42014-06-27 20:14:25 +00001691 }
1692
danb0b82902014-06-26 20:21:46 +00001693 }else{
1694 assert( *pbDone==0 );
1695 }
1696
1697 sqlite3ValueFree(p1);
1698 sqlite3ValueFree(p2);
1699 sqlite3ValueFree(pVal);
1700
1701 return rc;
1702}
drh175b8f02019-08-08 15:24:17 +00001703#endif /* SQLITE_ENABLE_STAT4 */
danb0b82902014-06-26 20:21:46 +00001704
danaa9933c2014-04-24 20:04:49 +00001705/*
dan02fa4692009-08-17 17:06:58 +00001706** This function is used to estimate the number of rows that will be visited
1707** by scanning an index for a range of values. The range may have an upper
1708** bound, a lower bound, or both. The WHERE clause terms that set the upper
1709** and lower bounds are represented by pLower and pUpper respectively. For
1710** example, assuming that index p is on t1(a):
1711**
1712** ... FROM t1 WHERE a > ? AND a < ? ...
1713** |_____| |_____|
1714** | |
1715** pLower pUpper
1716**
drh98cdf622009-08-20 18:14:42 +00001717** If either of the upper or lower bound is not present, then NULL is passed in
drhcdaca552009-08-20 13:45:07 +00001718** place of the corresponding WhereTerm.
dan02fa4692009-08-17 17:06:58 +00001719**
drh6d3f91d2014-11-05 19:26:12 +00001720** The value in (pBuilder->pNew->u.btree.nEq) is the number of the index
dan6cb8d762013-08-08 11:48:57 +00001721** column subject to the range constraint. Or, equivalently, the number of
1722** equality constraints optimized by the proposed index scan. For example,
1723** assuming index p is on t1(a, b), and the SQL query is:
dan02fa4692009-08-17 17:06:58 +00001724**
1725** ... FROM t1 WHERE a = ? AND b > ? AND b < ? ...
1726**
dan6cb8d762013-08-08 11:48:57 +00001727** then nEq is set to 1 (as the range restricted column, b, is the second
1728** left-most column of the index). Or, if the query is:
dan02fa4692009-08-17 17:06:58 +00001729**
1730** ... FROM t1 WHERE a > ? AND a < ? ...
1731**
dan6cb8d762013-08-08 11:48:57 +00001732** then nEq is set to 0.
dan02fa4692009-08-17 17:06:58 +00001733**
drhbf539c42013-10-05 18:16:02 +00001734** When this function is called, *pnOut is set to the sqlite3LogEst() of the
dan6cb8d762013-08-08 11:48:57 +00001735** number of rows that the index scan is expected to visit without
drh6d3f91d2014-11-05 19:26:12 +00001736** considering the range constraints. If nEq is 0, then *pnOut is the number of
dan6cb8d762013-08-08 11:48:57 +00001737** rows in the index. Assuming no error occurs, *pnOut is adjusted (reduced)
peter.d.reid60ec9142014-09-06 16:39:46 +00001738** to account for the range constraints pLower and pUpper.
dan6cb8d762013-08-08 11:48:57 +00001739**
1740** In the absence of sqlite_stat4 ANALYZE data, or if such data cannot be
drh94aa7e02014-06-06 17:09:52 +00001741** used, a single range inequality reduces the search space by a factor of 4.
1742** and a pair of constraints (x>? AND x<?) reduces the expected number of
1743** rows visited by a factor of 64.
dan02fa4692009-08-17 17:06:58 +00001744*/
1745static int whereRangeScanEst(
drhcdaca552009-08-20 13:45:07 +00001746 Parse *pParse, /* Parsing & code generating context */
dan7a419232013-08-06 20:01:43 +00001747 WhereLoopBuilder *pBuilder,
drhcdaca552009-08-20 13:45:07 +00001748 WhereTerm *pLower, /* Lower bound on the range. ex: "x>123" Might be NULL */
1749 WhereTerm *pUpper, /* Upper bound on the range. ex: "x<455" Might be NULL */
drh186ad8c2013-10-08 18:40:37 +00001750 WhereLoop *pLoop /* Modify the .nOut and maybe .rRun fields */
dan02fa4692009-08-17 17:06:58 +00001751){
dan69188d92009-08-19 08:18:32 +00001752 int rc = SQLITE_OK;
drh186ad8c2013-10-08 18:40:37 +00001753 int nOut = pLoop->nOut;
drhbf539c42013-10-05 18:16:02 +00001754 LogEst nNew;
dan69188d92009-08-19 08:18:32 +00001755
drh175b8f02019-08-08 15:24:17 +00001756#ifdef SQLITE_ENABLE_STAT4
drh186ad8c2013-10-08 18:40:37 +00001757 Index *p = pLoop->u.btree.pIndex;
drh4f991892013-10-11 15:05:05 +00001758 int nEq = pLoop->u.btree.nEq;
dan02fa4692009-08-17 17:06:58 +00001759
drh5eae1d12019-08-08 16:23:12 +00001760 if( p->nSample>0 && ALWAYS(nEq<p->nSampleCol)
1761 && OptimizationEnabled(pParse->db, SQLITE_Stat4)
drh72d03a62018-07-20 19:24:02 +00001762 ){
danb0b82902014-06-26 20:21:46 +00001763 if( nEq==pBuilder->nRecValid ){
1764 UnpackedRecord *pRec = pBuilder->pRec;
1765 tRowcnt a[2];
dand66e5792016-08-03 16:14:33 +00001766 int nBtm = pLoop->u.btree.nBtm;
1767 int nTop = pLoop->u.btree.nTop;
drh98cdf622009-08-20 18:14:42 +00001768
danb0b82902014-06-26 20:21:46 +00001769 /* Variable iLower will be set to the estimate of the number of rows in
1770 ** the index that are less than the lower bound of the range query. The
1771 ** lower bound being the concatenation of $P and $L, where $P is the
1772 ** key-prefix formed by the nEq values matched against the nEq left-most
1773 ** columns of the index, and $L is the value in pLower.
1774 **
1775 ** Or, if pLower is NULL or $L cannot be extracted from it (because it
1776 ** is not a simple variable or literal value), the lower bound of the
1777 ** range is $P. Due to a quirk in the way whereKeyStats() works, even
1778 ** if $L is available, whereKeyStats() is called for both ($P) and
drh6d3f91d2014-11-05 19:26:12 +00001779 ** ($P:$L) and the larger of the two returned values is used.
danb0b82902014-06-26 20:21:46 +00001780 **
1781 ** Similarly, iUpper is to be set to the estimate of the number of rows
1782 ** less than the upper bound of the range query. Where the upper bound
1783 ** is either ($P) or ($P:$U). Again, even if $U is available, both values
1784 ** of iUpper are requested of whereKeyStats() and the smaller used.
drh6d3f91d2014-11-05 19:26:12 +00001785 **
1786 ** The number of rows between the two bounds is then just iUpper-iLower.
danb0b82902014-06-26 20:21:46 +00001787 */
drh6d3f91d2014-11-05 19:26:12 +00001788 tRowcnt iLower; /* Rows less than the lower bound */
1789 tRowcnt iUpper; /* Rows less than the upper bound */
1790 int iLwrIdx = -2; /* aSample[] for the lower bound */
1791 int iUprIdx = -1; /* aSample[] for the upper bound */
danb3c02e22013-08-08 19:38:40 +00001792
drhb34fc5b2014-08-28 17:20:37 +00001793 if( pRec ){
1794 testcase( pRec->nField!=pBuilder->nRecValid );
1795 pRec->nField = pBuilder->nRecValid;
1796 }
danb0b82902014-06-26 20:21:46 +00001797 /* Determine iLower and iUpper using ($P) only. */
1798 if( nEq==0 ){
1799 iLower = 0;
drh9f07cf72014-10-22 15:27:05 +00001800 iUpper = p->nRowEst0;
danb0b82902014-06-26 20:21:46 +00001801 }else{
1802 /* Note: this call could be optimized away - since the same values must
1803 ** have been requested when testing key $P in whereEqualScanEst(). */
1804 whereKeyStats(pParse, p, pRec, 0, a);
1805 iLower = a[0];
1806 iUpper = a[0] + a[1];
dan6cb8d762013-08-08 11:48:57 +00001807 }
danb0b82902014-06-26 20:21:46 +00001808
drh69afd992014-10-08 02:53:25 +00001809 assert( pLower==0 || (pLower->eOperator & (WO_GT|WO_GE))!=0 );
1810 assert( pUpper==0 || (pUpper->eOperator & (WO_LT|WO_LE))!=0 );
drh681fca02014-10-10 15:01:46 +00001811 assert( p->aSortOrder!=0 );
1812 if( p->aSortOrder[nEq] ){
drh69afd992014-10-08 02:53:25 +00001813 /* The roles of pLower and pUpper are swapped for a DESC index */
1814 SWAP(WhereTerm*, pLower, pUpper);
dand66e5792016-08-03 16:14:33 +00001815 SWAP(int, nBtm, nTop);
drh69afd992014-10-08 02:53:25 +00001816 }
1817
danb0b82902014-06-26 20:21:46 +00001818 /* If possible, improve on the iLower estimate using ($P:$L). */
1819 if( pLower ){
dand66e5792016-08-03 16:14:33 +00001820 int n; /* Values extracted from pExpr */
danb0b82902014-06-26 20:21:46 +00001821 Expr *pExpr = pLower->pExpr->pRight;
dand66e5792016-08-03 16:14:33 +00001822 rc = sqlite3Stat4ProbeSetValue(pParse, p, &pRec, pExpr, nBtm, nEq, &n);
1823 if( rc==SQLITE_OK && n ){
danb0b82902014-06-26 20:21:46 +00001824 tRowcnt iNew;
dand66e5792016-08-03 16:14:33 +00001825 u16 mask = WO_GT|WO_LE;
1826 if( sqlite3ExprVectorSize(pExpr)>n ) mask = (WO_LE|WO_LT);
drh6d3f91d2014-11-05 19:26:12 +00001827 iLwrIdx = whereKeyStats(pParse, p, pRec, 0, a);
dand66e5792016-08-03 16:14:33 +00001828 iNew = a[0] + ((pLower->eOperator & mask) ? a[1] : 0);
danb0b82902014-06-26 20:21:46 +00001829 if( iNew>iLower ) iLower = iNew;
1830 nOut--;
danf741e042014-08-25 18:29:38 +00001831 pLower = 0;
danb0b82902014-06-26 20:21:46 +00001832 }
1833 }
1834
1835 /* If possible, improve on the iUpper estimate using ($P:$U). */
1836 if( pUpper ){
dand66e5792016-08-03 16:14:33 +00001837 int n; /* Values extracted from pExpr */
danb0b82902014-06-26 20:21:46 +00001838 Expr *pExpr = pUpper->pExpr->pRight;
dand66e5792016-08-03 16:14:33 +00001839 rc = sqlite3Stat4ProbeSetValue(pParse, p, &pRec, pExpr, nTop, nEq, &n);
1840 if( rc==SQLITE_OK && n ){
danb0b82902014-06-26 20:21:46 +00001841 tRowcnt iNew;
dand66e5792016-08-03 16:14:33 +00001842 u16 mask = WO_GT|WO_LE;
1843 if( sqlite3ExprVectorSize(pExpr)>n ) mask = (WO_LE|WO_LT);
drh6d3f91d2014-11-05 19:26:12 +00001844 iUprIdx = whereKeyStats(pParse, p, pRec, 1, a);
dand66e5792016-08-03 16:14:33 +00001845 iNew = a[0] + ((pUpper->eOperator & mask) ? a[1] : 0);
danb0b82902014-06-26 20:21:46 +00001846 if( iNew<iUpper ) iUpper = iNew;
1847 nOut--;
danf741e042014-08-25 18:29:38 +00001848 pUpper = 0;
danb0b82902014-06-26 20:21:46 +00001849 }
1850 }
1851
1852 pBuilder->pRec = pRec;
1853 if( rc==SQLITE_OK ){
1854 if( iUpper>iLower ){
1855 nNew = sqlite3LogEst(iUpper - iLower);
drh6d3f91d2014-11-05 19:26:12 +00001856 /* TUNING: If both iUpper and iLower are derived from the same
1857 ** sample, then assume they are 4x more selective. This brings
1858 ** the estimated selectivity more in line with what it would be
drh175b8f02019-08-08 15:24:17 +00001859 ** if estimated without the use of STAT4 tables. */
drh6d3f91d2014-11-05 19:26:12 +00001860 if( iLwrIdx==iUprIdx ) nNew -= 20; assert( 20==sqlite3LogEst(4) );
danb0b82902014-06-26 20:21:46 +00001861 }else{
1862 nNew = 10; assert( 10==sqlite3LogEst(2) );
1863 }
1864 if( nNew<nOut ){
1865 nOut = nNew;
1866 }
drhae914d72014-08-28 19:38:22 +00001867 WHERETRACE(0x10, ("STAT4 range scan: %u..%u est=%d\n",
danb0b82902014-06-26 20:21:46 +00001868 (u32)iLower, (u32)iUpper, nOut));
danb0b82902014-06-26 20:21:46 +00001869 }
1870 }else{
1871 int bDone = 0;
1872 rc = whereRangeSkipScanEst(pParse, pLower, pUpper, pLoop, &bDone);
1873 if( bDone ) return rc;
drh98cdf622009-08-20 18:14:42 +00001874 }
dan02fa4692009-08-17 17:06:58 +00001875 }
drh3f022182009-09-09 16:10:50 +00001876#else
1877 UNUSED_PARAMETER(pParse);
dan7a419232013-08-06 20:01:43 +00001878 UNUSED_PARAMETER(pBuilder);
dan02fa4692009-08-17 17:06:58 +00001879 assert( pLower || pUpper );
danf741e042014-08-25 18:29:38 +00001880#endif
dan7de2a1f2014-04-28 20:11:20 +00001881 assert( pUpper==0 || (pUpper->wtFlags & TERM_VNULL)==0 );
danaa9933c2014-04-24 20:04:49 +00001882 nNew = whereRangeAdjust(pLower, nOut);
1883 nNew = whereRangeAdjust(pUpper, nNew);
dan7de2a1f2014-04-28 20:11:20 +00001884
drh4dd96a82014-10-24 15:26:29 +00001885 /* TUNING: If there is both an upper and lower limit and neither limit
1886 ** has an application-defined likelihood(), assume the range is
dan42685f22014-04-28 19:34:06 +00001887 ** reduced by an additional 75%. This means that, by default, an open-ended
1888 ** range query (e.g. col > ?) is assumed to match 1/4 of the rows in the
1889 ** index. While a closed range (e.g. col BETWEEN ? AND ?) is estimated to
1890 ** match 1/64 of the index. */
drh4dd96a82014-10-24 15:26:29 +00001891 if( pLower && pLower->truthProb>0 && pUpper && pUpper->truthProb>0 ){
1892 nNew -= 20;
1893 }
dan7de2a1f2014-04-28 20:11:20 +00001894
danaa9933c2014-04-24 20:04:49 +00001895 nOut -= (pLower!=0) + (pUpper!=0);
drhabfa6d52013-09-11 03:53:22 +00001896 if( nNew<10 ) nNew = 10;
1897 if( nNew<nOut ) nOut = nNew;
drhae914d72014-08-28 19:38:22 +00001898#if defined(WHERETRACE_ENABLED)
1899 if( pLoop->nOut>nOut ){
1900 WHERETRACE(0x10,("Range scan lowers nOut from %d to %d\n",
1901 pLoop->nOut, nOut));
1902 }
1903#endif
drh186ad8c2013-10-08 18:40:37 +00001904 pLoop->nOut = (LogEst)nOut;
dan02fa4692009-08-17 17:06:58 +00001905 return rc;
1906}
1907
drh175b8f02019-08-08 15:24:17 +00001908#ifdef SQLITE_ENABLE_STAT4
drh82759752011-01-20 16:52:09 +00001909/*
1910** Estimate the number of rows that will be returned based on
1911** an equality constraint x=VALUE and where that VALUE occurs in
1912** the histogram data. This only works when x is the left-most
drh175b8f02019-08-08 15:24:17 +00001913** column of an index and sqlite_stat4 histogram data is available
drhac8eb112011-03-17 01:58:21 +00001914** for that index. When pExpr==NULL that means the constraint is
1915** "x IS NULL" instead of "x=VALUE".
drh82759752011-01-20 16:52:09 +00001916**
drh0c50fa02011-01-21 16:27:18 +00001917** Write the estimated row count into *pnRow and return SQLITE_OK.
1918** If unable to make an estimate, leave *pnRow unchanged and return
1919** non-zero.
drh9b3eb0a2011-01-21 14:37:04 +00001920**
1921** This routine can fail if it is unable to load a collating sequence
1922** required for string comparison, or if unable to allocate memory
1923** for a UTF conversion required for comparison. The error is stored
1924** in the pParse structure.
drh82759752011-01-20 16:52:09 +00001925*/
drh041e09f2011-04-07 19:56:21 +00001926static int whereEqualScanEst(
drh82759752011-01-20 16:52:09 +00001927 Parse *pParse, /* Parsing & code generating context */
dan7a419232013-08-06 20:01:43 +00001928 WhereLoopBuilder *pBuilder,
drh0c50fa02011-01-21 16:27:18 +00001929 Expr *pExpr, /* Expression for VALUE in the x=VALUE constraint */
drhb8a8e8a2013-06-10 19:12:39 +00001930 tRowcnt *pnRow /* Write the revised row estimate here */
drh82759752011-01-20 16:52:09 +00001931){
dan7a419232013-08-06 20:01:43 +00001932 Index *p = pBuilder->pNew->u.btree.pIndex;
1933 int nEq = pBuilder->pNew->u.btree.nEq;
1934 UnpackedRecord *pRec = pBuilder->pRec;
drh82759752011-01-20 16:52:09 +00001935 int rc; /* Subfunction return code */
drhfaacf172011-08-12 01:51:45 +00001936 tRowcnt a[2]; /* Statistics */
dan7a419232013-08-06 20:01:43 +00001937 int bOk;
drh82759752011-01-20 16:52:09 +00001938
dan7a419232013-08-06 20:01:43 +00001939 assert( nEq>=1 );
danfd984b82014-06-30 18:02:20 +00001940 assert( nEq<=p->nColumn );
drh82759752011-01-20 16:52:09 +00001941 assert( p->aSample!=0 );
drh5c624862011-09-22 18:46:34 +00001942 assert( p->nSample>0 );
dan7a419232013-08-06 20:01:43 +00001943 assert( pBuilder->nRecValid<nEq );
1944
1945 /* If values are not available for all fields of the index to the left
1946 ** of this one, no estimate can be made. Return SQLITE_NOTFOUND. */
1947 if( pBuilder->nRecValid<(nEq-1) ){
1948 return SQLITE_NOTFOUND;
drh1f9c7662011-03-17 01:34:26 +00001949 }
dan7a419232013-08-06 20:01:43 +00001950
dandd6e1f12013-08-10 19:08:30 +00001951 /* This is an optimization only. The call to sqlite3Stat4ProbeSetValue()
1952 ** below would return the same value. */
danfd984b82014-06-30 18:02:20 +00001953 if( nEq>=p->nColumn ){
dan7a419232013-08-06 20:01:43 +00001954 *pnRow = 1;
1955 return SQLITE_OK;
drh82759752011-01-20 16:52:09 +00001956 }
dan7a419232013-08-06 20:01:43 +00001957
dand66e5792016-08-03 16:14:33 +00001958 rc = sqlite3Stat4ProbeSetValue(pParse, p, &pRec, pExpr, 1, nEq-1, &bOk);
dan87cd9322013-08-07 15:52:41 +00001959 pBuilder->pRec = pRec;
dan7a419232013-08-06 20:01:43 +00001960 if( rc!=SQLITE_OK ) return rc;
1961 if( bOk==0 ) return SQLITE_NOTFOUND;
dan7a419232013-08-06 20:01:43 +00001962 pBuilder->nRecValid = nEq;
dan7a419232013-08-06 20:01:43 +00001963
danb3c02e22013-08-08 19:38:40 +00001964 whereKeyStats(pParse, p, pRec, 0, a);
drh4fb48e42016-03-01 22:41:27 +00001965 WHERETRACE(0x10,("equality scan regions %s(%d): %d\n",
1966 p->zName, nEq-1, (int)a[1]));
danb3c02e22013-08-08 19:38:40 +00001967 *pnRow = a[1];
daneea568d2013-08-07 19:46:15 +00001968
drh0c50fa02011-01-21 16:27:18 +00001969 return rc;
1970}
drh175b8f02019-08-08 15:24:17 +00001971#endif /* SQLITE_ENABLE_STAT4 */
drh0c50fa02011-01-21 16:27:18 +00001972
drh175b8f02019-08-08 15:24:17 +00001973#ifdef SQLITE_ENABLE_STAT4
drh0c50fa02011-01-21 16:27:18 +00001974/*
1975** Estimate the number of rows that will be returned based on
drh5ac06072011-01-21 18:18:13 +00001976** an IN constraint where the right-hand side of the IN operator
1977** is a list of values. Example:
1978**
1979** WHERE x IN (1,2,3,4)
drh0c50fa02011-01-21 16:27:18 +00001980**
1981** Write the estimated row count into *pnRow and return SQLITE_OK.
1982** If unable to make an estimate, leave *pnRow unchanged and return
1983** non-zero.
1984**
1985** This routine can fail if it is unable to load a collating sequence
1986** required for string comparison, or if unable to allocate memory
1987** for a UTF conversion required for comparison. The error is stored
1988** in the pParse structure.
1989*/
drh041e09f2011-04-07 19:56:21 +00001990static int whereInScanEst(
drh0c50fa02011-01-21 16:27:18 +00001991 Parse *pParse, /* Parsing & code generating context */
dan7a419232013-08-06 20:01:43 +00001992 WhereLoopBuilder *pBuilder,
drh0c50fa02011-01-21 16:27:18 +00001993 ExprList *pList, /* The value list on the RHS of "x IN (v1,v2,v3,...)" */
drhb8a8e8a2013-06-10 19:12:39 +00001994 tRowcnt *pnRow /* Write the revised row estimate here */
drh0c50fa02011-01-21 16:27:18 +00001995){
dan7a419232013-08-06 20:01:43 +00001996 Index *p = pBuilder->pNew->u.btree.pIndex;
dancfc9df72014-04-25 15:01:01 +00001997 i64 nRow0 = sqlite3LogEstToInt(p->aiRowLogEst[0]);
dan7a419232013-08-06 20:01:43 +00001998 int nRecValid = pBuilder->nRecValid;
drhb8a8e8a2013-06-10 19:12:39 +00001999 int rc = SQLITE_OK; /* Subfunction return code */
2000 tRowcnt nEst; /* Number of rows for a single term */
2001 tRowcnt nRowEst = 0; /* New estimate of the number of rows */
2002 int i; /* Loop counter */
drh0c50fa02011-01-21 16:27:18 +00002003
2004 assert( p->aSample!=0 );
drhfaacf172011-08-12 01:51:45 +00002005 for(i=0; rc==SQLITE_OK && i<pList->nExpr; i++){
dancfc9df72014-04-25 15:01:01 +00002006 nEst = nRow0;
dan7a419232013-08-06 20:01:43 +00002007 rc = whereEqualScanEst(pParse, pBuilder, pList->a[i].pExpr, &nEst);
drhfaacf172011-08-12 01:51:45 +00002008 nRowEst += nEst;
dan7a419232013-08-06 20:01:43 +00002009 pBuilder->nRecValid = nRecValid;
drh0c50fa02011-01-21 16:27:18 +00002010 }
dan7a419232013-08-06 20:01:43 +00002011
drh0c50fa02011-01-21 16:27:18 +00002012 if( rc==SQLITE_OK ){
dancfc9df72014-04-25 15:01:01 +00002013 if( nRowEst > nRow0 ) nRowEst = nRow0;
drh0c50fa02011-01-21 16:27:18 +00002014 *pnRow = nRowEst;
drh5418b122014-08-28 13:42:13 +00002015 WHERETRACE(0x10,("IN row estimate: est=%d\n", nRowEst));
drh0c50fa02011-01-21 16:27:18 +00002016 }
dan7a419232013-08-06 20:01:43 +00002017 assert( pBuilder->nRecValid==nRecValid );
drh0c50fa02011-01-21 16:27:18 +00002018 return rc;
drh82759752011-01-20 16:52:09 +00002019}
drh175b8f02019-08-08 15:24:17 +00002020#endif /* SQLITE_ENABLE_STAT4 */
drh82759752011-01-20 16:52:09 +00002021
drh111a6a72008-12-21 03:51:16 +00002022
drhd15cb172013-05-21 19:23:10 +00002023#ifdef WHERETRACE_ENABLED
drha18f3d22013-05-08 03:05:41 +00002024/*
drhc90713d2014-09-30 13:46:49 +00002025** Print the content of a WhereTerm object
2026*/
drhcacdf202019-12-28 13:39:47 +00002027void sqlite3WhereTermPrint(WhereTerm *pTerm, int iTerm){
drh0a99ba32014-09-30 17:03:35 +00002028 if( pTerm==0 ){
2029 sqlite3DebugPrintf("TERM-%-3d NULL\n", iTerm);
2030 }else{
drh118efd12019-12-28 14:07:22 +00002031 char zType[8];
drhc84a4022016-05-27 12:30:20 +00002032 char zLeft[50];
drh118efd12019-12-28 14:07:22 +00002033 memcpy(zType, "....", 5);
drh0a99ba32014-09-30 17:03:35 +00002034 if( pTerm->wtFlags & TERM_VIRTUAL ) zType[0] = 'V';
2035 if( pTerm->eOperator & WO_EQUIV ) zType[1] = 'E';
2036 if( ExprHasProperty(pTerm->pExpr, EP_FromJoin) ) zType[2] = 'L';
drh118efd12019-12-28 14:07:22 +00002037 if( pTerm->wtFlags & TERM_CODED ) zType[3] = 'C';
drhc84a4022016-05-27 12:30:20 +00002038 if( pTerm->eOperator & WO_SINGLE ){
drh220f0d62021-10-15 17:06:16 +00002039 assert( (pTerm->eOperator & (WO_OR|WO_AND))==0 );
drhc84a4022016-05-27 12:30:20 +00002040 sqlite3_snprintf(sizeof(zLeft),zLeft,"left={%d:%d}",
drh75fa2662020-09-28 15:49:43 +00002041 pTerm->leftCursor, pTerm->u.x.leftColumn);
drhc84a4022016-05-27 12:30:20 +00002042 }else if( (pTerm->eOperator & WO_OR)!=0 && pTerm->u.pOrInfo!=0 ){
drhe93986a2020-10-17 19:09:04 +00002043 sqlite3_snprintf(sizeof(zLeft),zLeft,"indexable=0x%llx",
drhc84a4022016-05-27 12:30:20 +00002044 pTerm->u.pOrInfo->indexable);
2045 }else{
2046 sqlite3_snprintf(sizeof(zLeft),zLeft,"left=%d", pTerm->leftCursor);
2047 }
drhfcd49532015-05-13 15:24:07 +00002048 sqlite3DebugPrintf(
drh118efd12019-12-28 14:07:22 +00002049 "TERM-%-3d %p %s %-12s op=%03x wtFlags=%04x",
2050 iTerm, pTerm, zType, zLeft, pTerm->eOperator, pTerm->wtFlags);
2051 /* The 0x10000 .wheretrace flag causes extra information to be
2052 ** shown about each Term */
drh6411d652019-12-28 12:33:35 +00002053 if( sqlite3WhereTrace & 0x10000 ){
drh118efd12019-12-28 14:07:22 +00002054 sqlite3DebugPrintf(" prob=%-3d prereq=%llx,%llx",
2055 pTerm->truthProb, (u64)pTerm->prereqAll, (u64)pTerm->prereqRight);
drh6411d652019-12-28 12:33:35 +00002056 }
drh220f0d62021-10-15 17:06:16 +00002057 if( (pTerm->eOperator & (WO_OR|WO_AND))==0 && pTerm->u.x.iField ){
drh75fa2662020-09-28 15:49:43 +00002058 sqlite3DebugPrintf(" iField=%d", pTerm->u.x.iField);
drha15a8bc2016-08-19 18:40:17 +00002059 }
drhd262c2d2019-12-22 19:41:12 +00002060 if( pTerm->iParent>=0 ){
2061 sqlite3DebugPrintf(" iParent=%d", pTerm->iParent);
2062 }
2063 sqlite3DebugPrintf("\n");
drh0a99ba32014-09-30 17:03:35 +00002064 sqlite3TreeViewExpr(0, pTerm->pExpr, 0);
2065 }
drhc90713d2014-09-30 13:46:49 +00002066}
2067#endif
2068
2069#ifdef WHERETRACE_ENABLED
2070/*
drhc84a4022016-05-27 12:30:20 +00002071** Show the complete content of a WhereClause
2072*/
2073void sqlite3WhereClausePrint(WhereClause *pWC){
2074 int i;
2075 for(i=0; i<pWC->nTerm; i++){
drhcacdf202019-12-28 13:39:47 +00002076 sqlite3WhereTermPrint(&pWC->a[i], i);
drhc84a4022016-05-27 12:30:20 +00002077 }
2078}
2079#endif
2080
2081#ifdef WHERETRACE_ENABLED
2082/*
drha18f3d22013-05-08 03:05:41 +00002083** Print a WhereLoop object for debugging purposes
2084*/
drhcacdf202019-12-28 13:39:47 +00002085void sqlite3WhereLoopPrint(WhereLoop *p, WhereClause *pWC){
drhc1ba2e72013-10-28 19:03:21 +00002086 WhereInfo *pWInfo = pWC->pWInfo;
drh53801ef2016-04-09 14:36:07 +00002087 int nb = 1+(pWInfo->pTabList->nSrc+3)/4;
drh76012942021-02-21 21:04:54 +00002088 SrcItem *pItem = pWInfo->pTabList->a + p->iTab;
drha18f3d22013-05-08 03:05:41 +00002089 Table *pTab = pItem->pTab;
drh53801ef2016-04-09 14:36:07 +00002090 Bitmask mAll = (((Bitmask)1)<<(nb*4)) - 1;
drh6457a352013-06-21 00:35:37 +00002091 sqlite3DebugPrintf("%c%2d.%0*llx.%0*llx", p->cId,
drh53801ef2016-04-09 14:36:07 +00002092 p->iTab, nb, p->maskSelf, nb, p->prereq & mAll);
drh6457a352013-06-21 00:35:37 +00002093 sqlite3DebugPrintf(" %12s",
drha18f3d22013-05-08 03:05:41 +00002094 pItem->zAlias ? pItem->zAlias : pTab->zName);
drh5346e952013-05-08 14:14:26 +00002095 if( (p->wsFlags & WHERE_VIRTUALTABLE)==0 ){
drhf3f69ac2014-08-20 23:38:07 +00002096 const char *zName;
2097 if( p->u.btree.pIndex && (zName = p->u.btree.pIndex->zName)!=0 ){
drh319f6772013-05-14 15:31:07 +00002098 if( strncmp(zName, "sqlite_autoindex_", 17)==0 ){
2099 int i = sqlite3Strlen30(zName) - 1;
2100 while( zName[i]!='_' ) i--;
2101 zName += i;
2102 }
drh6457a352013-06-21 00:35:37 +00002103 sqlite3DebugPrintf(".%-16s %2d", zName, p->u.btree.nEq);
drh5346e952013-05-08 14:14:26 +00002104 }else{
drh6457a352013-06-21 00:35:37 +00002105 sqlite3DebugPrintf("%20s","");
drh5346e952013-05-08 14:14:26 +00002106 }
drha18f3d22013-05-08 03:05:41 +00002107 }else{
drh5346e952013-05-08 14:14:26 +00002108 char *z;
2109 if( p->u.vtab.idxStr ){
drh05fbfd82019-12-05 17:31:58 +00002110 z = sqlite3_mprintf("(%d,\"%s\",%#x)",
drh3bd26f02013-05-24 14:52:03 +00002111 p->u.vtab.idxNum, p->u.vtab.idxStr, p->u.vtab.omitMask);
drh5346e952013-05-08 14:14:26 +00002112 }else{
drh3bd26f02013-05-24 14:52:03 +00002113 z = sqlite3_mprintf("(%d,%x)", p->u.vtab.idxNum, p->u.vtab.omitMask);
drh5346e952013-05-08 14:14:26 +00002114 }
drh6457a352013-06-21 00:35:37 +00002115 sqlite3DebugPrintf(" %-19s", z);
drh5346e952013-05-08 14:14:26 +00002116 sqlite3_free(z);
drha18f3d22013-05-08 03:05:41 +00002117 }
drhf3f69ac2014-08-20 23:38:07 +00002118 if( p->wsFlags & WHERE_SKIPSCAN ){
drhfb82caf2021-12-08 19:50:45 +00002119 sqlite3DebugPrintf(" f %06x %d-%d", p->wsFlags, p->nLTerm,p->nSkip);
drhf3f69ac2014-08-20 23:38:07 +00002120 }else{
drhfb82caf2021-12-08 19:50:45 +00002121 sqlite3DebugPrintf(" f %06x N %d", p->wsFlags, p->nLTerm);
drhf3f69ac2014-08-20 23:38:07 +00002122 }
drhb8a8e8a2013-06-10 19:12:39 +00002123 sqlite3DebugPrintf(" cost %d,%d,%d\n", p->rSetup, p->rRun, p->nOut);
drhc90713d2014-09-30 13:46:49 +00002124 if( p->nLTerm && (sqlite3WhereTrace & 0x100)!=0 ){
2125 int i;
2126 for(i=0; i<p->nLTerm; i++){
drhcacdf202019-12-28 13:39:47 +00002127 sqlite3WhereTermPrint(p->aLTerm[i], i);
drhc90713d2014-09-30 13:46:49 +00002128 }
2129 }
drha18f3d22013-05-08 03:05:41 +00002130}
2131#endif
2132
drhf1b5f5b2013-05-02 00:15:01 +00002133/*
drh4efc9292013-06-06 23:02:03 +00002134** Convert bulk memory into a valid WhereLoop that can be passed
2135** to whereLoopClear harmlessly.
drh5346e952013-05-08 14:14:26 +00002136*/
drh4efc9292013-06-06 23:02:03 +00002137static void whereLoopInit(WhereLoop *p){
2138 p->aLTerm = p->aLTermSpace;
2139 p->nLTerm = 0;
2140 p->nLSlot = ArraySize(p->aLTermSpace);
2141 p->wsFlags = 0;
2142}
2143
2144/*
2145** Clear the WhereLoop.u union. Leave WhereLoop.pLTerm intact.
2146*/
2147static void whereLoopClearUnion(sqlite3 *db, WhereLoop *p){
drh986b3872013-06-28 21:12:20 +00002148 if( p->wsFlags & (WHERE_VIRTUALTABLE|WHERE_AUTO_INDEX) ){
drh13e11b42013-06-06 23:44:25 +00002149 if( (p->wsFlags & WHERE_VIRTUALTABLE)!=0 && p->u.vtab.needFree ){
2150 sqlite3_free(p->u.vtab.idxStr);
2151 p->u.vtab.needFree = 0;
2152 p->u.vtab.idxStr = 0;
drh986b3872013-06-28 21:12:20 +00002153 }else if( (p->wsFlags & WHERE_AUTO_INDEX)!=0 && p->u.btree.pIndex!=0 ){
drh13e11b42013-06-06 23:44:25 +00002154 sqlite3DbFree(db, p->u.btree.pIndex->zColAff);
drhdbd6a7d2017-04-05 12:39:49 +00002155 sqlite3DbFreeNN(db, p->u.btree.pIndex);
drh13e11b42013-06-06 23:44:25 +00002156 p->u.btree.pIndex = 0;
2157 }
drh5346e952013-05-08 14:14:26 +00002158 }
2159}
2160
drh4efc9292013-06-06 23:02:03 +00002161/*
2162** Deallocate internal memory used by a WhereLoop object
2163*/
2164static void whereLoopClear(sqlite3 *db, WhereLoop *p){
drhdbd6a7d2017-04-05 12:39:49 +00002165 if( p->aLTerm!=p->aLTermSpace ) sqlite3DbFreeNN(db, p->aLTerm);
drh4efc9292013-06-06 23:02:03 +00002166 whereLoopClearUnion(db, p);
2167 whereLoopInit(p);
2168}
2169
2170/*
2171** Increase the memory allocation for pLoop->aLTerm[] to be at least n.
2172*/
2173static int whereLoopResize(sqlite3 *db, WhereLoop *p, int n){
2174 WhereTerm **paNew;
2175 if( p->nLSlot>=n ) return SQLITE_OK;
2176 n = (n+7)&~7;
drh575fad62016-02-05 13:38:36 +00002177 paNew = sqlite3DbMallocRawNN(db, sizeof(p->aLTerm[0])*n);
mistachkinfad30392016-02-13 23:43:46 +00002178 if( paNew==0 ) return SQLITE_NOMEM_BKPT;
drh4efc9292013-06-06 23:02:03 +00002179 memcpy(paNew, p->aLTerm, sizeof(p->aLTerm[0])*p->nLSlot);
drhdbd6a7d2017-04-05 12:39:49 +00002180 if( p->aLTerm!=p->aLTermSpace ) sqlite3DbFreeNN(db, p->aLTerm);
drh4efc9292013-06-06 23:02:03 +00002181 p->aLTerm = paNew;
2182 p->nLSlot = n;
2183 return SQLITE_OK;
2184}
2185
2186/*
2187** Transfer content from the second pLoop into the first.
2188*/
2189static int whereLoopXfer(sqlite3 *db, WhereLoop *pTo, WhereLoop *pFrom){
drh4efc9292013-06-06 23:02:03 +00002190 whereLoopClearUnion(db, pTo);
drh0d31dc32013-09-06 00:40:59 +00002191 if( whereLoopResize(db, pTo, pFrom->nLTerm) ){
drh82404312021-04-22 12:38:30 +00002192 memset(pTo, 0, WHERE_LOOP_XFER_SZ);
mistachkinfad30392016-02-13 23:43:46 +00002193 return SQLITE_NOMEM_BKPT;
drh0d31dc32013-09-06 00:40:59 +00002194 }
drha2014152013-06-07 00:29:23 +00002195 memcpy(pTo, pFrom, WHERE_LOOP_XFER_SZ);
2196 memcpy(pTo->aLTerm, pFrom->aLTerm, pTo->nLTerm*sizeof(pTo->aLTerm[0]));
drh4efc9292013-06-06 23:02:03 +00002197 if( pFrom->wsFlags & WHERE_VIRTUALTABLE ){
2198 pFrom->u.vtab.needFree = 0;
drh986b3872013-06-28 21:12:20 +00002199 }else if( (pFrom->wsFlags & WHERE_AUTO_INDEX)!=0 ){
drh4efc9292013-06-06 23:02:03 +00002200 pFrom->u.btree.pIndex = 0;
2201 }
2202 return SQLITE_OK;
2203}
2204
drh5346e952013-05-08 14:14:26 +00002205/*
drhf1b5f5b2013-05-02 00:15:01 +00002206** Delete a WhereLoop object
2207*/
2208static void whereLoopDelete(sqlite3 *db, WhereLoop *p){
drh5346e952013-05-08 14:14:26 +00002209 whereLoopClear(db, p);
drhdbd6a7d2017-04-05 12:39:49 +00002210 sqlite3DbFreeNN(db, p);
drhf1b5f5b2013-05-02 00:15:01 +00002211}
drh84bfda42005-07-15 13:05:21 +00002212
drh9eff6162006-06-12 21:59:13 +00002213/*
2214** Free a WhereInfo structure
2215*/
drh10fe8402008-10-11 16:47:35 +00002216static void whereInfoFree(sqlite3 *db, WhereInfo *pWInfo){
drh9d9c41e2017-10-31 03:40:15 +00002217 int i;
2218 assert( pWInfo!=0 );
2219 for(i=0; i<pWInfo->nLevel; i++){
2220 WhereLevel *pLevel = &pWInfo->a[i];
drh04756292021-10-14 19:28:28 +00002221 if( pLevel->pWLoop && (pLevel->pWLoop->wsFlags & WHERE_IN_ABLE)!=0 ){
2222 assert( (pLevel->pWLoop->wsFlags & WHERE_MULTI_OR)==0 );
drh9d9c41e2017-10-31 03:40:15 +00002223 sqlite3DbFree(db, pLevel->u.in.aInLoop);
danf89aa472015-04-25 12:20:24 +00002224 }
drh9eff6162006-06-12 21:59:13 +00002225 }
drh9d9c41e2017-10-31 03:40:15 +00002226 sqlite3WhereClauseClear(&pWInfo->sWC);
2227 while( pWInfo->pLoops ){
2228 WhereLoop *p = pWInfo->pLoops;
2229 pWInfo->pLoops = p->pNextLoop;
2230 whereLoopDelete(db, p);
2231 }
drh36e678b2020-01-02 00:45:38 +00002232 assert( pWInfo->pExprMods==0 );
drh9d9c41e2017-10-31 03:40:15 +00002233 sqlite3DbFreeNN(db, pWInfo);
drh9eff6162006-06-12 21:59:13 +00002234}
2235
drhd784cc82021-04-15 12:56:44 +00002236/* Undo all Expr node modifications
2237*/
2238static void whereUndoExprMods(WhereInfo *pWInfo){
2239 while( pWInfo->pExprMods ){
2240 WhereExprMod *p = pWInfo->pExprMods;
2241 pWInfo->pExprMods = p->pNext;
2242 memcpy(p->pExpr, &p->orig, sizeof(p->orig));
2243 sqlite3DbFree(pWInfo->pParse->db, p);
2244 }
2245}
2246
drhf1b5f5b2013-05-02 00:15:01 +00002247/*
drhe0de8762014-11-05 13:13:13 +00002248** Return TRUE if all of the following are true:
drhb355c2c2014-04-18 22:20:31 +00002249**
dan748d8b92021-08-31 15:53:58 +00002250** (1) X has the same or lower cost, or returns the same or fewer rows,
2251** than Y.
drh989d7272017-10-16 11:50:12 +00002252** (2) X uses fewer WHERE clause terms than Y
drh47b1d682017-10-15 22:16:25 +00002253** (3) Every WHERE clause term used by X is also used by Y
2254** (4) X skips at least as many columns as Y
2255** (5) If X is a covering index, than Y is too
drhb355c2c2014-04-18 22:20:31 +00002256**
drh47b1d682017-10-15 22:16:25 +00002257** Conditions (2) and (3) mean that X is a "proper subset" of Y.
drhb355c2c2014-04-18 22:20:31 +00002258** If X is a proper subset of Y then Y is a better choice and ought
2259** to have a lower cost. This routine returns TRUE when that cost
drh47b1d682017-10-15 22:16:25 +00002260** relationship is inverted and needs to be adjusted. Constraint (4)
drhe0de8762014-11-05 13:13:13 +00002261** was added because if X uses skip-scan less than Y it still might
drh989d7272017-10-16 11:50:12 +00002262** deserve a lower cost even if it is a proper subset of Y. Constraint (5)
2263** was added because a covering index probably deserves to have a lower cost
2264** than a non-covering index even if it is a proper subset.
drh3fb183d2014-03-31 19:49:00 +00002265*/
drhb355c2c2014-04-18 22:20:31 +00002266static int whereLoopCheaperProperSubset(
2267 const WhereLoop *pX, /* First WhereLoop to compare */
2268 const WhereLoop *pY /* Compare against this WhereLoop */
2269){
drh3fb183d2014-03-31 19:49:00 +00002270 int i, j;
drhc8bbce12014-10-21 01:05:09 +00002271 if( pX->nLTerm-pX->nSkip >= pY->nLTerm-pY->nSkip ){
2272 return 0; /* X is not a subset of Y */
2273 }
dan748d8b92021-08-31 15:53:58 +00002274 if( pX->rRun>pY->rRun && pX->nOut>pY->nOut ) return 0;
drhe0de8762014-11-05 13:13:13 +00002275 if( pY->nSkip > pX->nSkip ) return 0;
drh9ee88102014-05-07 20:33:17 +00002276 for(i=pX->nLTerm-1; i>=0; i--){
drhc8bbce12014-10-21 01:05:09 +00002277 if( pX->aLTerm[i]==0 ) continue;
drhb355c2c2014-04-18 22:20:31 +00002278 for(j=pY->nLTerm-1; j>=0; j--){
2279 if( pY->aLTerm[j]==pX->aLTerm[i] ) break;
2280 }
2281 if( j<0 ) return 0; /* X not a subset of Y since term X[i] not used by Y */
2282 }
drh47b1d682017-10-15 22:16:25 +00002283 if( (pX->wsFlags&WHERE_IDX_ONLY)!=0
2284 && (pY->wsFlags&WHERE_IDX_ONLY)==0 ){
2285 return 0; /* Constraint (5) */
2286 }
drhb355c2c2014-04-18 22:20:31 +00002287 return 1; /* All conditions meet */
drh3fb183d2014-03-31 19:49:00 +00002288}
2289
2290/*
dan748d8b92021-08-31 15:53:58 +00002291** Try to adjust the cost and number of output rows of WhereLoop pTemplate
2292** upwards or downwards so that:
drh53cd10a2014-03-31 18:24:18 +00002293**
drh3fb183d2014-03-31 19:49:00 +00002294** (1) pTemplate costs less than any other WhereLoops that are a proper
2295** subset of pTemplate
drh53cd10a2014-03-31 18:24:18 +00002296**
drh3fb183d2014-03-31 19:49:00 +00002297** (2) pTemplate costs more than any other WhereLoops for which pTemplate
2298** is a proper subset.
drh53cd10a2014-03-31 18:24:18 +00002299**
drh3fb183d2014-03-31 19:49:00 +00002300** To say "WhereLoop X is a proper subset of Y" means that X uses fewer
2301** WHERE clause terms than Y and that every WHERE clause term used by X is
2302** also used by Y.
drh53cd10a2014-03-31 18:24:18 +00002303*/
2304static void whereLoopAdjustCost(const WhereLoop *p, WhereLoop *pTemplate){
2305 if( (pTemplate->wsFlags & WHERE_INDEXED)==0 ) return;
drh53cd10a2014-03-31 18:24:18 +00002306 for(; p; p=p->pNextLoop){
drh3fb183d2014-03-31 19:49:00 +00002307 if( p->iTab!=pTemplate->iTab ) continue;
2308 if( (p->wsFlags & WHERE_INDEXED)==0 ) continue;
drhb355c2c2014-04-18 22:20:31 +00002309 if( whereLoopCheaperProperSubset(p, pTemplate) ){
2310 /* Adjust pTemplate cost downward so that it is cheaper than its
drhe0de8762014-11-05 13:13:13 +00002311 ** subset p. */
drh1b131b72014-10-21 16:01:40 +00002312 WHERETRACE(0x80,("subset cost adjustment %d,%d to %d,%d\n",
dan748d8b92021-08-31 15:53:58 +00002313 pTemplate->rRun, pTemplate->nOut,
2314 MIN(p->rRun, pTemplate->rRun),
2315 MIN(p->nOut - 1, pTemplate->nOut)));
2316 pTemplate->rRun = MIN(p->rRun, pTemplate->rRun);
2317 pTemplate->nOut = MIN(p->nOut - 1, pTemplate->nOut);
drhb355c2c2014-04-18 22:20:31 +00002318 }else if( whereLoopCheaperProperSubset(pTemplate, p) ){
2319 /* Adjust pTemplate cost upward so that it is costlier than p since
2320 ** pTemplate is a proper subset of p */
drh1b131b72014-10-21 16:01:40 +00002321 WHERETRACE(0x80,("subset cost adjustment %d,%d to %d,%d\n",
dan748d8b92021-08-31 15:53:58 +00002322 pTemplate->rRun, pTemplate->nOut,
2323 MAX(p->rRun, pTemplate->rRun),
2324 MAX(p->nOut + 1, pTemplate->nOut)));
2325 pTemplate->rRun = MAX(p->rRun, pTemplate->rRun);
2326 pTemplate->nOut = MAX(p->nOut + 1, pTemplate->nOut);
drh53cd10a2014-03-31 18:24:18 +00002327 }
2328 }
2329}
2330
2331/*
drh7a4b1642014-03-29 21:16:07 +00002332** Search the list of WhereLoops in *ppPrev looking for one that can be
drhbcbb0662017-05-19 20:55:04 +00002333** replaced by pTemplate.
drhf1b5f5b2013-05-02 00:15:01 +00002334**
drhbcbb0662017-05-19 20:55:04 +00002335** Return NULL if pTemplate does not belong on the WhereLoop list.
2336** In other words if pTemplate ought to be dropped from further consideration.
drh23f98da2013-05-21 15:52:07 +00002337**
drhbcbb0662017-05-19 20:55:04 +00002338** If pX is a WhereLoop that pTemplate can replace, then return the
drh7a4b1642014-03-29 21:16:07 +00002339** link that points to pX.
drh23f98da2013-05-21 15:52:07 +00002340**
drhbcbb0662017-05-19 20:55:04 +00002341** If pTemplate cannot replace any existing element of the list but needs
2342** to be added to the list as a new entry, then return a pointer to the
2343** tail of the list.
drhf1b5f5b2013-05-02 00:15:01 +00002344*/
drh7a4b1642014-03-29 21:16:07 +00002345static WhereLoop **whereLoopFindLesser(
2346 WhereLoop **ppPrev,
2347 const WhereLoop *pTemplate
2348){
2349 WhereLoop *p;
2350 for(p=(*ppPrev); p; ppPrev=&p->pNextLoop, p=*ppPrev){
drhdbb80232013-06-19 12:34:13 +00002351 if( p->iTab!=pTemplate->iTab || p->iSortIdx!=pTemplate->iSortIdx ){
2352 /* If either the iTab or iSortIdx values for two WhereLoop are different
2353 ** then those WhereLoops need to be considered separately. Neither is
2354 ** a candidate to replace the other. */
2355 continue;
2356 }
2357 /* In the current implementation, the rSetup value is either zero
2358 ** or the cost of building an automatic index (NlogN) and the NlogN
2359 ** is the same for compatible WhereLoops. */
2360 assert( p->rSetup==0 || pTemplate->rSetup==0
2361 || p->rSetup==pTemplate->rSetup );
2362
2363 /* whereLoopAddBtree() always generates and inserts the automatic index
2364 ** case first. Hence compatible candidate WhereLoops never have a larger
2365 ** rSetup. Call this SETUP-INVARIANT */
2366 assert( p->rSetup>=pTemplate->rSetup );
2367
drhdabe36d2014-06-17 20:16:43 +00002368 /* Any loop using an appliation-defined index (or PRIMARY KEY or
2369 ** UNIQUE constraint) with one or more == constraints is better
dan70273d02014-11-14 19:34:20 +00002370 ** than an automatic index. Unless it is a skip-scan. */
drhdabe36d2014-06-17 20:16:43 +00002371 if( (p->wsFlags & WHERE_AUTO_INDEX)!=0
dan70273d02014-11-14 19:34:20 +00002372 && (pTemplate->nSkip)==0
drhdabe36d2014-06-17 20:16:43 +00002373 && (pTemplate->wsFlags & WHERE_INDEXED)!=0
2374 && (pTemplate->wsFlags & WHERE_COLUMN_EQ)!=0
2375 && (p->prereq & pTemplate->prereq)==pTemplate->prereq
2376 ){
2377 break;
2378 }
2379
drh53cd10a2014-03-31 18:24:18 +00002380 /* If existing WhereLoop p is better than pTemplate, pTemplate can be
2381 ** discarded. WhereLoop p is better if:
2382 ** (1) p has no more dependencies than pTemplate, and
2383 ** (2) p has an equal or lower cost than pTemplate
2384 */
2385 if( (p->prereq & pTemplate->prereq)==p->prereq /* (1) */
2386 && p->rSetup<=pTemplate->rSetup /* (2a) */
2387 && p->rRun<=pTemplate->rRun /* (2b) */
2388 && p->nOut<=pTemplate->nOut /* (2c) */
drhf1b5f5b2013-05-02 00:15:01 +00002389 ){
drh53cd10a2014-03-31 18:24:18 +00002390 return 0; /* Discard pTemplate */
drhf1b5f5b2013-05-02 00:15:01 +00002391 }
drh53cd10a2014-03-31 18:24:18 +00002392
2393 /* If pTemplate is always better than p, then cause p to be overwritten
2394 ** with pTemplate. pTemplate is better than p if:
2395 ** (1) pTemplate has no more dependences than p, and
2396 ** (2) pTemplate has an equal or lower cost than p.
2397 */
2398 if( (p->prereq & pTemplate->prereq)==pTemplate->prereq /* (1) */
2399 && p->rRun>=pTemplate->rRun /* (2a) */
2400 && p->nOut>=pTemplate->nOut /* (2b) */
drhf1b5f5b2013-05-02 00:15:01 +00002401 ){
drhadd5ce32013-09-07 00:29:06 +00002402 assert( p->rSetup>=pTemplate->rSetup ); /* SETUP-INVARIANT above */
drh53cd10a2014-03-31 18:24:18 +00002403 break; /* Cause p to be overwritten by pTemplate */
drhf1b5f5b2013-05-02 00:15:01 +00002404 }
2405 }
drh7a4b1642014-03-29 21:16:07 +00002406 return ppPrev;
2407}
2408
2409/*
drh94a11212004-09-25 13:12:14 +00002410** Insert or replace a WhereLoop entry using the template supplied.
2411**
2412** An existing WhereLoop entry might be overwritten if the new template
2413** is better and has fewer dependencies. Or the template will be ignored
2414** and no insert will occur if an existing WhereLoop is faster and has
2415** fewer dependencies than the template. Otherwise a new WhereLoop is
danielk1977b3bce662005-01-29 08:32:43 +00002416** added based on the template.
drh94a11212004-09-25 13:12:14 +00002417**
drh7a4b1642014-03-29 21:16:07 +00002418** If pBuilder->pOrSet is not NULL then we care about only the
drh94a11212004-09-25 13:12:14 +00002419** prerequisites and rRun and nOut costs of the N best loops. That
2420** information is gathered in the pBuilder->pOrSet object. This special
2421** processing mode is used only for OR clause processing.
danielk1977b3bce662005-01-29 08:32:43 +00002422**
drh94a11212004-09-25 13:12:14 +00002423** When accumulating multiple loops (when pBuilder->pOrSet is NULL) we
danielk1977b3bce662005-01-29 08:32:43 +00002424** still might overwrite similar loops with the new template if the
drh53cd10a2014-03-31 18:24:18 +00002425** new template is better. Loops may be overwritten if the following
drh94a11212004-09-25 13:12:14 +00002426** conditions are met:
2427**
2428** (1) They have the same iTab.
2429** (2) They have the same iSortIdx.
2430** (3) The template has same or fewer dependencies than the current loop
2431** (4) The template has the same or lower cost than the current loop
drh94a11212004-09-25 13:12:14 +00002432*/
2433static int whereLoopInsert(WhereLoopBuilder *pBuilder, WhereLoop *pTemplate){
drh7a4b1642014-03-29 21:16:07 +00002434 WhereLoop **ppPrev, *p;
drh94a11212004-09-25 13:12:14 +00002435 WhereInfo *pWInfo = pBuilder->pWInfo;
2436 sqlite3 *db = pWInfo->pParse->db;
drhbacbbcc2016-03-09 12:35:18 +00002437 int rc;
drh94a11212004-09-25 13:12:14 +00002438
drhfc9098a2018-09-21 18:43:51 +00002439 /* Stop the search once we hit the query planner search limit */
drh2c3ba942018-09-22 15:05:32 +00002440 if( pBuilder->iPlanLimit==0 ){
2441 WHERETRACE(0xffffffff,("=== query planner search limit reached ===\n"));
2442 if( pBuilder->pOrSet ) pBuilder->pOrSet->n = 0;
2443 return SQLITE_DONE;
2444 }
drhfc9098a2018-09-21 18:43:51 +00002445 pBuilder->iPlanLimit--;
2446
dan51f2b172019-12-28 15:24:02 +00002447 whereLoopAdjustCost(pWInfo->pLoops, pTemplate);
2448
drh94a11212004-09-25 13:12:14 +00002449 /* If pBuilder->pOrSet is defined, then only keep track of the costs
2450 ** and prereqs.
2451 */
2452 if( pBuilder->pOrSet!=0 ){
drh2dc29292015-08-27 23:18:55 +00002453 if( pTemplate->nLTerm ){
drh94a11212004-09-25 13:12:14 +00002454#if WHERETRACE_ENABLED
drh2dc29292015-08-27 23:18:55 +00002455 u16 n = pBuilder->pOrSet->n;
2456 int x =
drh94a11212004-09-25 13:12:14 +00002457#endif
drh2dc29292015-08-27 23:18:55 +00002458 whereOrInsert(pBuilder->pOrSet, pTemplate->prereq, pTemplate->rRun,
drh94a11212004-09-25 13:12:14 +00002459 pTemplate->nOut);
2460#if WHERETRACE_ENABLED /* 0x8 */
drh2dc29292015-08-27 23:18:55 +00002461 if( sqlite3WhereTrace & 0x8 ){
2462 sqlite3DebugPrintf(x?" or-%d: ":" or-X: ", n);
drhcacdf202019-12-28 13:39:47 +00002463 sqlite3WhereLoopPrint(pTemplate, pBuilder->pWC);
drh2dc29292015-08-27 23:18:55 +00002464 }
drh94a11212004-09-25 13:12:14 +00002465#endif
drh2dc29292015-08-27 23:18:55 +00002466 }
danielk1977b3bce662005-01-29 08:32:43 +00002467 return SQLITE_OK;
drh9012bcb2004-12-19 00:11:35 +00002468 }
drh94a11212004-09-25 13:12:14 +00002469
drh7a4b1642014-03-29 21:16:07 +00002470 /* Look for an existing WhereLoop to replace with pTemplate
drh51669862004-12-18 18:40:26 +00002471 */
drh7a4b1642014-03-29 21:16:07 +00002472 ppPrev = whereLoopFindLesser(&pWInfo->pLoops, pTemplate);
drhf1b5f5b2013-05-02 00:15:01 +00002473
drh7a4b1642014-03-29 21:16:07 +00002474 if( ppPrev==0 ){
2475 /* There already exists a WhereLoop on the list that is better
2476 ** than pTemplate, so just ignore pTemplate */
2477#if WHERETRACE_ENABLED /* 0x8 */
2478 if( sqlite3WhereTrace & 0x8 ){
drh9a7b41d2014-10-08 00:08:08 +00002479 sqlite3DebugPrintf(" skip: ");
drhcacdf202019-12-28 13:39:47 +00002480 sqlite3WhereLoopPrint(pTemplate, pBuilder->pWC);
drhf1b5f5b2013-05-02 00:15:01 +00002481 }
drh7a4b1642014-03-29 21:16:07 +00002482#endif
2483 return SQLITE_OK;
2484 }else{
2485 p = *ppPrev;
drhf1b5f5b2013-05-02 00:15:01 +00002486 }
2487
2488 /* If we reach this point it means that either p[] should be overwritten
2489 ** with pTemplate[] if p[] exists, or if p==NULL then allocate a new
2490 ** WhereLoop and insert it.
2491 */
drh989578e2013-10-28 14:34:35 +00002492#if WHERETRACE_ENABLED /* 0x8 */
drhae70cf12013-05-31 15:18:46 +00002493 if( sqlite3WhereTrace & 0x8 ){
2494 if( p!=0 ){
drh9a7b41d2014-10-08 00:08:08 +00002495 sqlite3DebugPrintf("replace: ");
drhcacdf202019-12-28 13:39:47 +00002496 sqlite3WhereLoopPrint(p, pBuilder->pWC);
drhbcbb0662017-05-19 20:55:04 +00002497 sqlite3DebugPrintf(" with: ");
2498 }else{
2499 sqlite3DebugPrintf(" add: ");
drhae70cf12013-05-31 15:18:46 +00002500 }
drhcacdf202019-12-28 13:39:47 +00002501 sqlite3WhereLoopPrint(pTemplate, pBuilder->pWC);
drhae70cf12013-05-31 15:18:46 +00002502 }
2503#endif
drhf1b5f5b2013-05-02 00:15:01 +00002504 if( p==0 ){
drh7a4b1642014-03-29 21:16:07 +00002505 /* Allocate a new WhereLoop to add to the end of the list */
drh575fad62016-02-05 13:38:36 +00002506 *ppPrev = p = sqlite3DbMallocRawNN(db, sizeof(WhereLoop));
mistachkinfad30392016-02-13 23:43:46 +00002507 if( p==0 ) return SQLITE_NOMEM_BKPT;
drh4efc9292013-06-06 23:02:03 +00002508 whereLoopInit(p);
drh7a4b1642014-03-29 21:16:07 +00002509 p->pNextLoop = 0;
2510 }else{
2511 /* We will be overwriting WhereLoop p[]. But before we do, first
2512 ** go through the rest of the list and delete any other entries besides
2513 ** p[] that are also supplated by pTemplate */
2514 WhereLoop **ppTail = &p->pNextLoop;
2515 WhereLoop *pToDel;
2516 while( *ppTail ){
2517 ppTail = whereLoopFindLesser(ppTail, pTemplate);
drhdabe36d2014-06-17 20:16:43 +00002518 if( ppTail==0 ) break;
drh7a4b1642014-03-29 21:16:07 +00002519 pToDel = *ppTail;
2520 if( pToDel==0 ) break;
2521 *ppTail = pToDel->pNextLoop;
2522#if WHERETRACE_ENABLED /* 0x8 */
2523 if( sqlite3WhereTrace & 0x8 ){
drh9a7b41d2014-10-08 00:08:08 +00002524 sqlite3DebugPrintf(" delete: ");
drhcacdf202019-12-28 13:39:47 +00002525 sqlite3WhereLoopPrint(pToDel, pBuilder->pWC);
drh7a4b1642014-03-29 21:16:07 +00002526 }
2527#endif
2528 whereLoopDelete(db, pToDel);
2529 }
drhf1b5f5b2013-05-02 00:15:01 +00002530 }
drhbacbbcc2016-03-09 12:35:18 +00002531 rc = whereLoopXfer(db, p, pTemplate);
drh5346e952013-05-08 14:14:26 +00002532 if( (p->wsFlags & WHERE_VIRTUALTABLE)==0 ){
drhef866372013-05-22 20:49:02 +00002533 Index *pIndex = p->u.btree.pIndex;
drh5f913ec2019-01-10 13:56:08 +00002534 if( pIndex && pIndex->idxType==SQLITE_IDXTYPE_IPK ){
drhcf8fa7a2013-05-10 20:26:22 +00002535 p->u.btree.pIndex = 0;
2536 }
drh5346e952013-05-08 14:14:26 +00002537 }
drhbacbbcc2016-03-09 12:35:18 +00002538 return rc;
drhf1b5f5b2013-05-02 00:15:01 +00002539}
2540
2541/*
drhcca9f3d2013-09-06 15:23:29 +00002542** Adjust the WhereLoop.nOut value downward to account for terms of the
2543** WHERE clause that reference the loop but which are not used by an
2544** index.
drh7a1bca72014-11-22 18:50:44 +00002545*
2546** For every WHERE clause term that is not used by the index
2547** and which has a truth probability assigned by one of the likelihood(),
2548** likely(), or unlikely() SQL functions, reduce the estimated number
2549** of output rows by the probability specified.
drhcca9f3d2013-09-06 15:23:29 +00002550**
drh7a1bca72014-11-22 18:50:44 +00002551** TUNING: For every WHERE clause term that is not used by the index
2552** and which does not have an assigned truth probability, heuristics
2553** described below are used to try to estimate the truth probability.
2554** TODO --> Perhaps this is something that could be improved by better
2555** table statistics.
2556**
drhab4624d2014-11-22 19:52:10 +00002557** Heuristic 1: Estimate the truth probability as 93.75%. The 93.75%
2558** value corresponds to -1 in LogEst notation, so this means decrement
drh7a1bca72014-11-22 18:50:44 +00002559** the WhereLoop.nOut field for every such WHERE clause term.
2560**
2561** Heuristic 2: If there exists one or more WHERE clause terms of the
2562** form "x==EXPR" and EXPR is not a constant 0 or 1, then make sure the
2563** final output row estimate is no greater than 1/4 of the total number
2564** of rows in the table. In other words, assume that x==EXPR will filter
2565** out at least 3 out of 4 rows. If EXPR is -1 or 0 or 1, then maybe the
2566** "x" column is boolean or else -1 or 0 or 1 is a common default value
2567** on the "x" column and so in that case only cap the output row estimate
2568** at 1/2 instead of 1/4.
drhcca9f3d2013-09-06 15:23:29 +00002569*/
drhd8b77e22014-09-06 01:35:57 +00002570static void whereLoopOutputAdjust(
2571 WhereClause *pWC, /* The WHERE clause */
2572 WhereLoop *pLoop, /* The loop to adjust downward */
2573 LogEst nRow /* Number of rows in the entire table */
2574){
drh7d9e7d82013-09-11 17:39:09 +00002575 WhereTerm *pTerm, *pX;
drhcca9f3d2013-09-06 15:23:29 +00002576 Bitmask notAllowed = ~(pLoop->prereq|pLoop->maskSelf);
drhaa16c602019-09-18 12:49:34 +00002577 int i, j;
drh7a1bca72014-11-22 18:50:44 +00002578 LogEst iReduce = 0; /* pLoop->nOut should not exceed nRow-iReduce */
drhadd5ce32013-09-07 00:29:06 +00002579
drha3898252014-11-22 12:22:13 +00002580 assert( (pLoop->wsFlags & WHERE_AUTO_INDEX)==0 );
drh132f96f2021-12-08 16:07:22 +00002581 for(i=pWC->nBase, pTerm=pWC->a; i>0; i--, pTerm++){
drh55f66b32019-07-16 19:44:32 +00002582 assert( pTerm!=0 );
drhcca9f3d2013-09-06 15:23:29 +00002583 if( (pTerm->prereqAll & notAllowed)!=0 ) continue;
drh132f96f2021-12-08 16:07:22 +00002584 if( (pTerm->prereqAll & pLoop->maskSelf)==0 ) continue;
2585 if( (pTerm->wtFlags & TERM_VIRTUAL)!=0 ) continue;
drh7d9e7d82013-09-11 17:39:09 +00002586 for(j=pLoop->nLTerm-1; j>=0; j--){
2587 pX = pLoop->aLTerm[j];
drhd2447442013-11-13 19:01:41 +00002588 if( pX==0 ) continue;
drh7d9e7d82013-09-11 17:39:09 +00002589 if( pX==pTerm ) break;
2590 if( pX->iParent>=0 && (&pWC->a[pX->iParent])==pTerm ) break;
2591 }
danaa9933c2014-04-24 20:04:49 +00002592 if( j<0 ){
drhfb82caf2021-12-08 19:50:45 +00002593 if( pLoop->maskSelf==pTerm->prereqAll ){
drh7e910f62021-12-09 01:28:15 +00002594 /* If there are extra terms in the WHERE clause not used by an index
2595 ** that depend only on the table being scanned, and that will tend to
2596 ** cause many rows to be omitted, then mark that table as
2597 ** "self-culling". */
2598 pLoop->wsFlags |= WHERE_SELFCULL;
drhfb82caf2021-12-08 19:50:45 +00002599 }
drhd8b77e22014-09-06 01:35:57 +00002600 if( pTerm->truthProb<=0 ){
drh7a1bca72014-11-22 18:50:44 +00002601 /* If a truth probability is specified using the likelihood() hints,
2602 ** then use the probability provided by the application. */
drhd8b77e22014-09-06 01:35:57 +00002603 pLoop->nOut += pTerm->truthProb;
2604 }else{
drh7a1bca72014-11-22 18:50:44 +00002605 /* In the absence of explicit truth probabilities, use heuristics to
2606 ** guess a reasonable truth probability. */
drhd8b77e22014-09-06 01:35:57 +00002607 pLoop->nOut--;
drhf06cdde2020-02-24 16:46:08 +00002608 if( (pTerm->eOperator&(WO_EQ|WO_IS))!=0
2609 && (pTerm->wtFlags & TERM_HIGHTRUTH)==0 /* tag-20200224-1 */
2610 ){
drh7a1bca72014-11-22 18:50:44 +00002611 Expr *pRight = pTerm->pExpr->pRight;
drhaa16c602019-09-18 12:49:34 +00002612 int k = 0;
drhe0cc3c22015-05-13 17:54:08 +00002613 testcase( pTerm->pExpr->op==TK_IS );
drh7a1bca72014-11-22 18:50:44 +00002614 if( sqlite3ExprIsInteger(pRight, &k) && k>=(-1) && k<=1 ){
2615 k = 10;
2616 }else{
drhf06cdde2020-02-24 16:46:08 +00002617 k = 20;
drh7a1bca72014-11-22 18:50:44 +00002618 }
drh89efac92020-02-22 16:58:49 +00002619 if( iReduce<k ){
2620 pTerm->wtFlags |= TERM_HEURTRUTH;
2621 iReduce = k;
2622 }
drh7a1bca72014-11-22 18:50:44 +00002623 }
drhd8b77e22014-09-06 01:35:57 +00002624 }
danaa9933c2014-04-24 20:04:49 +00002625 }
drhcca9f3d2013-09-06 15:23:29 +00002626 }
drhfb82caf2021-12-08 19:50:45 +00002627 if( pLoop->nOut > nRow-iReduce ){
2628 pLoop->nOut = nRow - iReduce;
2629 }
drhcca9f3d2013-09-06 15:23:29 +00002630}
2631
dan71c57db2016-07-09 20:23:55 +00002632/*
2633** Term pTerm is a vector range comparison operation. The first comparison
dan553168c2016-08-01 20:14:31 +00002634** in the vector can be optimized using column nEq of the index. This
2635** function returns the total number of vector elements that can be used
2636** as part of the range comparison.
2637**
2638** For example, if the query is:
2639**
2640** WHERE a = ? AND (b, c, d) > (?, ?, ?)
2641**
2642** and the index:
2643**
2644** CREATE INDEX ... ON (a, b, c, d, e)
2645**
2646** then this function would be invoked with nEq=1. The value returned in
2647** this case is 3.
dan71c57db2016-07-09 20:23:55 +00002648*/
dan320d4c32016-10-08 11:55:12 +00002649static int whereRangeVectorLen(
drh64bcb8c2016-08-26 03:42:57 +00002650 Parse *pParse, /* Parsing context */
2651 int iCur, /* Cursor open on pIdx */
2652 Index *pIdx, /* The index to be used for a inequality constraint */
2653 int nEq, /* Number of prior equality constraints on same index */
2654 WhereTerm *pTerm /* The vector inequality constraint */
dan71c57db2016-07-09 20:23:55 +00002655){
2656 int nCmp = sqlite3ExprVectorSize(pTerm->pExpr->pLeft);
2657 int i;
2658
2659 nCmp = MIN(nCmp, (pIdx->nColumn - nEq));
2660 for(i=1; i<nCmp; i++){
2661 /* Test if comparison i of pTerm is compatible with column (i+nEq)
2662 ** of the index. If not, exit the loop. */
2663 char aff; /* Comparison affinity */
2664 char idxaff = 0; /* Indexed columns affinity */
2665 CollSeq *pColl; /* Comparison collation sequence */
drha4eeccd2021-10-07 17:43:30 +00002666 Expr *pLhs, *pRhs;
2667
2668 assert( ExprUseXList(pTerm->pExpr->pLeft) );
2669 pLhs = pTerm->pExpr->pLeft->x.pList->a[i].pExpr;
2670 pRhs = pTerm->pExpr->pRight;
2671 if( ExprUseXSelect(pRhs) ){
dan71c57db2016-07-09 20:23:55 +00002672 pRhs = pRhs->x.pSelect->pEList->a[i].pExpr;
2673 }else{
2674 pRhs = pRhs->x.pList->a[i].pExpr;
2675 }
2676
2677 /* Check that the LHS of the comparison is a column reference to
dand05a7142016-08-02 17:07:51 +00002678 ** the right column of the right source table. And that the sort
2679 ** order of the index column is the same as the sort order of the
2680 ** leftmost index column. */
dan71c57db2016-07-09 20:23:55 +00002681 if( pLhs->op!=TK_COLUMN
2682 || pLhs->iTable!=iCur
2683 || pLhs->iColumn!=pIdx->aiColumn[i+nEq]
dan2c628ea2016-08-03 16:39:04 +00002684 || pIdx->aSortOrder[i+nEq]!=pIdx->aSortOrder[nEq]
dan71c57db2016-07-09 20:23:55 +00002685 ){
2686 break;
2687 }
2688
drh0c36fca2016-08-26 18:17:08 +00002689 testcase( pLhs->iColumn==XN_ROWID );
dan71c57db2016-07-09 20:23:55 +00002690 aff = sqlite3CompareAffinity(pRhs, sqlite3ExprAffinity(pLhs));
drh0dfa4f62016-08-26 13:19:49 +00002691 idxaff = sqlite3TableColumnAffinity(pIdx->pTable, pLhs->iColumn);
dan71c57db2016-07-09 20:23:55 +00002692 if( aff!=idxaff ) break;
2693
2694 pColl = sqlite3BinaryCompareCollSeq(pParse, pLhs, pRhs);
drh0dfa4f62016-08-26 13:19:49 +00002695 if( pColl==0 ) break;
drh64bcb8c2016-08-26 03:42:57 +00002696 if( sqlite3StrICmp(pColl->zName, pIdx->azColl[i+nEq]) ) break;
dan71c57db2016-07-09 20:23:55 +00002697 }
2698 return i;
2699}
2700
drhcca9f3d2013-09-06 15:23:29 +00002701/*
drhdbd94862014-07-23 23:57:42 +00002702** Adjust the cost C by the costMult facter T. This only occurs if
2703** compiled with -DSQLITE_ENABLE_COSTMULT
2704*/
2705#ifdef SQLITE_ENABLE_COSTMULT
2706# define ApplyCostMultiplier(C,T) C += T
2707#else
2708# define ApplyCostMultiplier(C,T)
2709#endif
2710
2711/*
dan4a6b8a02014-04-30 14:47:01 +00002712** We have so far matched pBuilder->pNew->u.btree.nEq terms of the
2713** index pIndex. Try to match one more.
2714**
2715** When this function is called, pBuilder->pNew->nOut contains the
2716** number of rows expected to be visited by filtering using the nEq
2717** terms only. If it is modified, this value is restored before this
2718** function returns.
drh1c8148f2013-05-04 20:25:23 +00002719**
drh5f913ec2019-01-10 13:56:08 +00002720** If pProbe->idxType==SQLITE_IDXTYPE_IPK, that means pIndex is
2721** a fake index used for the INTEGER PRIMARY KEY.
drh1c8148f2013-05-04 20:25:23 +00002722*/
drh5346e952013-05-08 14:14:26 +00002723static int whereLoopAddBtreeIndex(
drh1c8148f2013-05-04 20:25:23 +00002724 WhereLoopBuilder *pBuilder, /* The WhereLoop factory */
drh76012942021-02-21 21:04:54 +00002725 SrcItem *pSrc, /* FROM clause term being analyzed */
drh1c8148f2013-05-04 20:25:23 +00002726 Index *pProbe, /* An index on pSrc */
drhbf539c42013-10-05 18:16:02 +00002727 LogEst nInMul /* log(Number of iterations due to IN) */
drh1c8148f2013-05-04 20:25:23 +00002728){
drh70d18342013-06-06 19:16:33 +00002729 WhereInfo *pWInfo = pBuilder->pWInfo; /* WHERE analyse context */
2730 Parse *pParse = pWInfo->pParse; /* Parsing context */
2731 sqlite3 *db = pParse->db; /* Database connection malloc context */
drh1c8148f2013-05-04 20:25:23 +00002732 WhereLoop *pNew; /* Template WhereLoop under construction */
2733 WhereTerm *pTerm; /* A WhereTerm under consideration */
drh43fe25f2013-05-07 23:06:23 +00002734 int opMask; /* Valid operators for constraints */
drh1c8148f2013-05-04 20:25:23 +00002735 WhereScan scan; /* Iterator for WHERE terms */
drh4efc9292013-06-06 23:02:03 +00002736 Bitmask saved_prereq; /* Original value of pNew->prereq */
2737 u16 saved_nLTerm; /* Original value of pNew->nLTerm */
drhcd8629e2013-11-13 12:27:25 +00002738 u16 saved_nEq; /* Original value of pNew->u.btree.nEq */
dan71c57db2016-07-09 20:23:55 +00002739 u16 saved_nBtm; /* Original value of pNew->u.btree.nBtm */
2740 u16 saved_nTop; /* Original value of pNew->u.btree.nTop */
drhc8bbce12014-10-21 01:05:09 +00002741 u16 saved_nSkip; /* Original value of pNew->nSkip */
drh4efc9292013-06-06 23:02:03 +00002742 u32 saved_wsFlags; /* Original value of pNew->wsFlags */
drhbf539c42013-10-05 18:16:02 +00002743 LogEst saved_nOut; /* Original value of pNew->nOut */
drh5346e952013-05-08 14:14:26 +00002744 int rc = SQLITE_OK; /* Return code */
drhd8b77e22014-09-06 01:35:57 +00002745 LogEst rSize; /* Number of rows in the table */
drhbf539c42013-10-05 18:16:02 +00002746 LogEst rLogSize; /* Logarithm of table size */
drhc7f0d222013-06-19 03:27:12 +00002747 WhereTerm *pTop = 0, *pBtm = 0; /* Top and bottom range constraints */
drh1c8148f2013-05-04 20:25:23 +00002748
drh1c8148f2013-05-04 20:25:23 +00002749 pNew = pBuilder->pNew;
mistachkinfad30392016-02-13 23:43:46 +00002750 if( db->mallocFailed ) return SQLITE_NOMEM_BKPT;
drhb035b872020-11-12 18:16:01 +00002751 WHERETRACE(0x800, ("BEGIN %s.addBtreeIdx(%s), nEq=%d, nSkip=%d, rRun=%d\n",
drhb592d472020-01-06 17:33:09 +00002752 pProbe->pTable->zName,pProbe->zName,
drhb035b872020-11-12 18:16:01 +00002753 pNew->u.btree.nEq, pNew->nSkip, pNew->rRun));
drh1c8148f2013-05-04 20:25:23 +00002754
drh5346e952013-05-08 14:14:26 +00002755 assert( (pNew->wsFlags & WHERE_VIRTUALTABLE)==0 );
drh43fe25f2013-05-07 23:06:23 +00002756 assert( (pNew->wsFlags & WHERE_TOP_LIMIT)==0 );
2757 if( pNew->wsFlags & WHERE_BTM_LIMIT ){
2758 opMask = WO_LT|WO_LE;
drh1c8148f2013-05-04 20:25:23 +00002759 }else{
dan71c57db2016-07-09 20:23:55 +00002760 assert( pNew->u.btree.nBtm==0 );
drhe8d0c612015-05-14 01:05:25 +00002761 opMask = WO_EQ|WO_IN|WO_GT|WO_GE|WO_LT|WO_LE|WO_ISNULL|WO_IS;
drh1c8148f2013-05-04 20:25:23 +00002762 }
drhef866372013-05-22 20:49:02 +00002763 if( pProbe->bUnordered ) opMask &= ~(WO_GT|WO_GE|WO_LT|WO_LE);
drh1c8148f2013-05-04 20:25:23 +00002764
dan39129ce2014-06-30 15:23:57 +00002765 assert( pNew->u.btree.nEq<pProbe->nColumn );
drh756748e2021-05-13 13:43:40 +00002766 assert( pNew->u.btree.nEq<pProbe->nKeyCol
2767 || pProbe->idxType!=SQLITE_IDXTYPE_PRIMARYKEY );
dan39129ce2014-06-30 15:23:57 +00002768
drh4efc9292013-06-06 23:02:03 +00002769 saved_nEq = pNew->u.btree.nEq;
dan71c57db2016-07-09 20:23:55 +00002770 saved_nBtm = pNew->u.btree.nBtm;
2771 saved_nTop = pNew->u.btree.nTop;
drhc8bbce12014-10-21 01:05:09 +00002772 saved_nSkip = pNew->nSkip;
drh4efc9292013-06-06 23:02:03 +00002773 saved_nLTerm = pNew->nLTerm;
2774 saved_wsFlags = pNew->wsFlags;
2775 saved_prereq = pNew->prereq;
2776 saved_nOut = pNew->nOut;
drhbb523082015-08-27 15:58:51 +00002777 pTerm = whereScanInit(&scan, pBuilder->pWC, pSrc->iCursor, saved_nEq,
2778 opMask, pProbe);
drhb8a8e8a2013-06-10 19:12:39 +00002779 pNew->rSetup = 0;
drhd8b77e22014-09-06 01:35:57 +00002780 rSize = pProbe->aiRowLogEst[0];
2781 rLogSize = estLog(rSize);
drh5346e952013-05-08 14:14:26 +00002782 for(; rc==SQLITE_OK && pTerm!=0; pTerm = whereScanNext(&scan)){
dan8ad1d8b2014-04-25 20:22:45 +00002783 u16 eOp = pTerm->eOperator; /* Shorthand for pTerm->eOperator */
danaa9933c2014-04-24 20:04:49 +00002784 LogEst rCostIdx;
dan8ad1d8b2014-04-25 20:22:45 +00002785 LogEst nOutUnadjusted; /* nOut before IN() and WHERE adjustments */
drhb8a8e8a2013-06-10 19:12:39 +00002786 int nIn = 0;
drh175b8f02019-08-08 15:24:17 +00002787#ifdef SQLITE_ENABLE_STAT4
dan7a419232013-08-06 20:01:43 +00002788 int nRecValid = pBuilder->nRecValid;
drhb5246e52013-07-08 21:12:57 +00002789#endif
dan8ad1d8b2014-04-25 20:22:45 +00002790 if( (eOp==WO_ISNULL || (pTerm->wtFlags&TERM_VNULL)!=0)
drhbb523082015-08-27 15:58:51 +00002791 && indexColumnNotNull(pProbe, saved_nEq)
dan8bff07a2013-08-29 14:56:14 +00002792 ){
2793 continue; /* ignore IS [NOT] NULL constraints on NOT NULL columns */
2794 }
dan7a419232013-08-06 20:01:43 +00002795 if( pTerm->prereqRight & pNew->maskSelf ) continue;
2796
drha40da622015-03-09 12:11:56 +00002797 /* Do not allow the upper bound of a LIKE optimization range constraint
2798 ** to mix with a lower range bound from some other source */
2799 if( pTerm->wtFlags & TERM_LIKEOPT && pTerm->eOperator==WO_LT ) continue;
2800
drhd4dae752019-12-11 16:22:53 +00002801 /* tag-20191211-001: Do not allow constraints from the WHERE clause to
2802 ** be used by the right table of a LEFT JOIN. Only constraints in the
2803 ** ON clause are allowed. See tag-20191211-002 for the vtab equivalent. */
drh5996a772016-03-31 20:40:28 +00002804 if( (pSrc->fg.jointype & JT_LEFT)!=0
2805 && !ExprHasProperty(pTerm->pExpr, EP_FromJoin)
drh5996a772016-03-31 20:40:28 +00002806 ){
drh5996a772016-03-31 20:40:28 +00002807 continue;
2808 }
2809
drha3928dd2017-02-17 15:26:36 +00002810 if( IsUniqueIndex(pProbe) && saved_nEq==pProbe->nKeyCol-1 ){
drh89efac92020-02-22 16:58:49 +00002811 pBuilder->bldFlags1 |= SQLITE_BLDF1_UNIQUE;
drha3928dd2017-02-17 15:26:36 +00002812 }else{
drh89efac92020-02-22 16:58:49 +00002813 pBuilder->bldFlags1 |= SQLITE_BLDF1_INDEXED;
drha3928dd2017-02-17 15:26:36 +00002814 }
drh4efc9292013-06-06 23:02:03 +00002815 pNew->wsFlags = saved_wsFlags;
2816 pNew->u.btree.nEq = saved_nEq;
dan71c57db2016-07-09 20:23:55 +00002817 pNew->u.btree.nBtm = saved_nBtm;
2818 pNew->u.btree.nTop = saved_nTop;
drh4efc9292013-06-06 23:02:03 +00002819 pNew->nLTerm = saved_nLTerm;
2820 if( whereLoopResize(db, pNew, pNew->nLTerm+1) ) break; /* OOM */
2821 pNew->aLTerm[pNew->nLTerm++] = pTerm;
2822 pNew->prereq = (saved_prereq | pTerm->prereqRight) & ~pNew->maskSelf;
dan8ad1d8b2014-04-25 20:22:45 +00002823
2824 assert( nInMul==0
2825 || (pNew->wsFlags & WHERE_COLUMN_NULL)!=0
2826 || (pNew->wsFlags & WHERE_COLUMN_IN)!=0
2827 || (pNew->wsFlags & WHERE_SKIPSCAN)!=0
2828 );
2829
2830 if( eOp & WO_IN ){
drha18f3d22013-05-08 03:05:41 +00002831 Expr *pExpr = pTerm->pExpr;
drha4eeccd2021-10-07 17:43:30 +00002832 if( ExprUseXSelect(pExpr) ){
drhe1e2e9a2013-06-13 15:16:53 +00002833 /* "x IN (SELECT ...)": TUNING: the SELECT returns 25 rows */
dan3d1fb1d2016-08-03 18:00:49 +00002834 int i;
drhbf539c42013-10-05 18:16:02 +00002835 nIn = 46; assert( 46==sqlite3LogEst(25) );
dan3d1fb1d2016-08-03 18:00:49 +00002836
2837 /* The expression may actually be of the form (x, y) IN (SELECT...).
2838 ** In this case there is a separate term for each of (x) and (y).
2839 ** However, the nIn multiplier should only be applied once, not once
2840 ** for each such term. The following loop checks that pTerm is the
2841 ** first such term in use, and sets nIn back to 0 if it is not. */
2842 for(i=0; i<pNew->nLTerm-1; i++){
drh9a2e5162016-09-19 11:00:42 +00002843 if( pNew->aLTerm[i] && pNew->aLTerm[i]->pExpr==pExpr ) nIn = 0;
dan3d1fb1d2016-08-03 18:00:49 +00002844 }
drha18f3d22013-05-08 03:05:41 +00002845 }else if( ALWAYS(pExpr->x.pList && pExpr->x.pList->nExpr) ){
2846 /* "x IN (value, value, ...)" */
drhbf539c42013-10-05 18:16:02 +00002847 nIn = sqlite3LogEst(pExpr->x.pList->nExpr);
drhf1645f02013-05-07 19:44:38 +00002848 }
drh7d14ffe2020-10-02 13:48:57 +00002849 if( pProbe->hasStat1 && rLogSize>=10 ){
drhb034a242021-06-02 12:44:26 +00002850 LogEst M, logK, x;
drh6d6decb2018-06-08 21:21:01 +00002851 /* Let:
2852 ** N = the total number of rows in the table
2853 ** K = the number of entries on the RHS of the IN operator
2854 ** M = the number of rows in the table that match terms to the
2855 ** to the left in the same index. If the IN operator is on
2856 ** the left-most index column, M==N.
2857 **
2858 ** Given the definitions above, it is better to omit the IN operator
2859 ** from the index lookup and instead do a scan of the M elements,
2860 ** testing each scanned row against the IN operator separately, if:
2861 **
2862 ** M*log(K) < K*log(N)
2863 **
2864 ** Our estimates for M, K, and N might be inaccurate, so we build in
2865 ** a safety margin of 2 (LogEst: 10) that favors using the IN operator
2866 ** with the index, as using an index has better worst-case behavior.
2867 ** If we do not have real sqlite_stat1 data, always prefer to use
drh7d14ffe2020-10-02 13:48:57 +00002868 ** the index. Do not bother with this optimization on very small
2869 ** tables (less than 2 rows) as it is pointless in that case.
drh6d6decb2018-06-08 21:21:01 +00002870 */
2871 M = pProbe->aiRowLogEst[saved_nEq];
2872 logK = estLog(nIn);
drhb034a242021-06-02 12:44:26 +00002873 /* TUNING v----- 10 to bias toward indexed IN */
2874 x = M + logK + 10 - (nIn + rLogSize);
2875 if( x>=0 ){
drh6d6decb2018-06-08 21:21:01 +00002876 WHERETRACE(0x40,
drhb034a242021-06-02 12:44:26 +00002877 ("IN operator (N=%d M=%d logK=%d nIn=%d rLogSize=%d x=%d) "
2878 "prefers indexed lookup\n",
2879 saved_nEq, M, logK, nIn, rLogSize, x));
drh3074faa2021-06-02 19:28:07 +00002880 }else if( nInMul<2 && OptimizationEnabled(db, SQLITE_SeekScan) ){
drhb034a242021-06-02 12:44:26 +00002881 WHERETRACE(0x40,
2882 ("IN operator (N=%d M=%d logK=%d nIn=%d rLogSize=%d x=%d"
2883 " nInMul=%d) prefers skip-scan\n",
2884 saved_nEq, M, logK, nIn, rLogSize, x, nInMul));
drh68cf0ac2020-09-28 19:51:54 +00002885 pNew->wsFlags |= WHERE_IN_SEEKSCAN;
drh6d6decb2018-06-08 21:21:01 +00002886 }else{
2887 WHERETRACE(0x40,
drhb034a242021-06-02 12:44:26 +00002888 ("IN operator (N=%d M=%d logK=%d nIn=%d rLogSize=%d x=%d"
2889 " nInMul=%d) prefers normal scan\n",
2890 saved_nEq, M, logK, nIn, rLogSize, x, nInMul));
2891 continue;
drh6d6decb2018-06-08 21:21:01 +00002892 }
drhda4c4092018-06-08 18:22:10 +00002893 }
2894 pNew->wsFlags |= WHERE_COLUMN_IN;
drhe8d0c612015-05-14 01:05:25 +00002895 }else if( eOp & (WO_EQ|WO_IS) ){
drhbb523082015-08-27 15:58:51 +00002896 int iCol = pProbe->aiColumn[saved_nEq];
drha18f3d22013-05-08 03:05:41 +00002897 pNew->wsFlags |= WHERE_COLUMN_EQ;
drhbb523082015-08-27 15:58:51 +00002898 assert( saved_nEq==pNew->u.btree.nEq );
drh4b92f982015-09-29 17:20:14 +00002899 if( iCol==XN_ROWID
dan75dbf682017-11-20 14:40:03 +00002900 || (iCol>=0 && nInMul==0 && saved_nEq==pProbe->nKeyCol-1)
drh4b92f982015-09-29 17:20:14 +00002901 ){
dan4ea48142018-01-31 14:07:01 +00002902 if( iCol==XN_ROWID || pProbe->uniqNotNull
dan8433e712018-01-29 17:08:52 +00002903 || (pProbe->nKeyCol==1 && pProbe->onError && eOp==WO_EQ)
2904 ){
drhe39a7322014-02-03 14:04:11 +00002905 pNew->wsFlags |= WHERE_ONEROW;
dan8433e712018-01-29 17:08:52 +00002906 }else{
2907 pNew->wsFlags |= WHERE_UNQ_WANTED;
drhe39a7322014-02-03 14:04:11 +00002908 }
drh21f7ff72013-06-03 15:07:23 +00002909 }
drh67656ac2021-05-04 23:21:35 +00002910 if( scan.iEquiv>1 ) pNew->wsFlags |= WHERE_TRANSCONS;
dan2dd3cdc2014-04-26 20:21:14 +00002911 }else if( eOp & WO_ISNULL ){
2912 pNew->wsFlags |= WHERE_COLUMN_NULL;
dan8ad1d8b2014-04-25 20:22:45 +00002913 }else if( eOp & (WO_GT|WO_GE) ){
2914 testcase( eOp & WO_GT );
2915 testcase( eOp & WO_GE );
drha18f3d22013-05-08 03:05:41 +00002916 pNew->wsFlags |= WHERE_COLUMN_RANGE|WHERE_BTM_LIMIT;
dan71c57db2016-07-09 20:23:55 +00002917 pNew->u.btree.nBtm = whereRangeVectorLen(
2918 pParse, pSrc->iCursor, pProbe, saved_nEq, pTerm
2919 );
drh6f2bfad2013-06-03 17:35:22 +00002920 pBtm = pTerm;
2921 pTop = 0;
drha40da622015-03-09 12:11:56 +00002922 if( pTerm->wtFlags & TERM_LIKEOPT ){
mistachkin9a60e712020-12-22 19:57:53 +00002923 /* Range constraints that come from the LIKE optimization are
drh80314622015-03-09 13:01:02 +00002924 ** always used in pairs. */
drha40da622015-03-09 12:11:56 +00002925 pTop = &pTerm[1];
2926 assert( (pTop-(pTerm->pWC->a))<pTerm->pWC->nTerm );
2927 assert( pTop->wtFlags & TERM_LIKEOPT );
2928 assert( pTop->eOperator==WO_LT );
2929 if( whereLoopResize(db, pNew, pNew->nLTerm+1) ) break; /* OOM */
2930 pNew->aLTerm[pNew->nLTerm++] = pTop;
2931 pNew->wsFlags |= WHERE_TOP_LIMIT;
dan71c57db2016-07-09 20:23:55 +00002932 pNew->u.btree.nTop = 1;
drha40da622015-03-09 12:11:56 +00002933 }
dan2dd3cdc2014-04-26 20:21:14 +00002934 }else{
dan8ad1d8b2014-04-25 20:22:45 +00002935 assert( eOp & (WO_LT|WO_LE) );
2936 testcase( eOp & WO_LT );
2937 testcase( eOp & WO_LE );
drha18f3d22013-05-08 03:05:41 +00002938 pNew->wsFlags |= WHERE_COLUMN_RANGE|WHERE_TOP_LIMIT;
dan71c57db2016-07-09 20:23:55 +00002939 pNew->u.btree.nTop = whereRangeVectorLen(
2940 pParse, pSrc->iCursor, pProbe, saved_nEq, pTerm
2941 );
drh6f2bfad2013-06-03 17:35:22 +00002942 pTop = pTerm;
2943 pBtm = (pNew->wsFlags & WHERE_BTM_LIMIT)!=0 ?
drh4efc9292013-06-06 23:02:03 +00002944 pNew->aLTerm[pNew->nLTerm-2] : 0;
drh1c8148f2013-05-04 20:25:23 +00002945 }
dan8ad1d8b2014-04-25 20:22:45 +00002946
2947 /* At this point pNew->nOut is set to the number of rows expected to
2948 ** be visited by the index scan before considering term pTerm, or the
2949 ** values of nIn and nInMul. In other words, assuming that all
2950 ** "x IN(...)" terms are replaced with "x = ?". This block updates
2951 ** the value of pNew->nOut to account for pTerm (but not nIn/nInMul). */
2952 assert( pNew->nOut==saved_nOut );
drh6f2bfad2013-06-03 17:35:22 +00002953 if( pNew->wsFlags & WHERE_COLUMN_RANGE ){
drh175b8f02019-08-08 15:24:17 +00002954 /* Adjust nOut using stat4 data. Or, if there is no stat4
danaa9933c2014-04-24 20:04:49 +00002955 ** data, using some other estimate. */
drh186ad8c2013-10-08 18:40:37 +00002956 whereRangeScanEst(pParse, pBuilder, pBtm, pTop, pNew);
dan8ad1d8b2014-04-25 20:22:45 +00002957 }else{
2958 int nEq = ++pNew->u.btree.nEq;
drhe8d0c612015-05-14 01:05:25 +00002959 assert( eOp & (WO_ISNULL|WO_EQ|WO_IN|WO_IS) );
dan8ad1d8b2014-04-25 20:22:45 +00002960
2961 assert( pNew->nOut==saved_nOut );
drhbb523082015-08-27 15:58:51 +00002962 if( pTerm->truthProb<=0 && pProbe->aiColumn[saved_nEq]>=0 ){
dan8ad1d8b2014-04-25 20:22:45 +00002963 assert( (eOp & WO_IN) || nIn==0 );
drhc5f246e2014-05-01 20:24:21 +00002964 testcase( eOp & WO_IN );
dan8ad1d8b2014-04-25 20:22:45 +00002965 pNew->nOut += pTerm->truthProb;
2966 pNew->nOut -= nIn;
dan8ad1d8b2014-04-25 20:22:45 +00002967 }else{
drh175b8f02019-08-08 15:24:17 +00002968#ifdef SQLITE_ENABLE_STAT4
dan8ad1d8b2014-04-25 20:22:45 +00002969 tRowcnt nOut = 0;
2970 if( nInMul==0
2971 && pProbe->nSample
drh9c32c912021-06-16 19:23:24 +00002972 && ALWAYS(pNew->u.btree.nEq<=pProbe->nSampleCol)
drha4eeccd2021-10-07 17:43:30 +00002973 && ((eOp & WO_IN)==0 || ExprUseXList(pTerm->pExpr))
drh5eae1d12019-08-08 16:23:12 +00002974 && OptimizationEnabled(db, SQLITE_Stat4)
dan8ad1d8b2014-04-25 20:22:45 +00002975 ){
2976 Expr *pExpr = pTerm->pExpr;
drhe8d0c612015-05-14 01:05:25 +00002977 if( (eOp & (WO_EQ|WO_ISNULL|WO_IS))!=0 ){
2978 testcase( eOp & WO_EQ );
2979 testcase( eOp & WO_IS );
dan8ad1d8b2014-04-25 20:22:45 +00002980 testcase( eOp & WO_ISNULL );
2981 rc = whereEqualScanEst(pParse, pBuilder, pExpr->pRight, &nOut);
2982 }else{
2983 rc = whereInScanEst(pParse, pBuilder, pExpr->x.pList, &nOut);
2984 }
dan8ad1d8b2014-04-25 20:22:45 +00002985 if( rc==SQLITE_NOTFOUND ) rc = SQLITE_OK;
2986 if( rc!=SQLITE_OK ) break; /* Jump out of the pTerm loop */
2987 if( nOut ){
2988 pNew->nOut = sqlite3LogEst(nOut);
drhcea19512020-02-22 18:27:48 +00002989 if( nEq==1
drhf06cdde2020-02-24 16:46:08 +00002990 /* TUNING: Mark terms as "low selectivity" if they seem likely
2991 ** to be true for half or more of the rows in the table.
2992 ** See tag-202002240-1 */
2993 && pNew->nOut+10 > pProbe->aiRowLogEst[0]
drhcea19512020-02-22 18:27:48 +00002994 ){
drh89efac92020-02-22 16:58:49 +00002995#if WHERETRACE_ENABLED /* 0x01 */
2996 if( sqlite3WhereTrace & 0x01 ){
drhf06cdde2020-02-24 16:46:08 +00002997 sqlite3DebugPrintf(
2998 "STAT4 determines term has low selectivity:\n");
drh89efac92020-02-22 16:58:49 +00002999 sqlite3WhereTermPrint(pTerm, 999);
3000 }
3001#endif
drhf06cdde2020-02-24 16:46:08 +00003002 pTerm->wtFlags |= TERM_HIGHTRUTH;
drh89efac92020-02-22 16:58:49 +00003003 if( pTerm->wtFlags & TERM_HEURTRUTH ){
drhf06cdde2020-02-24 16:46:08 +00003004 /* If the term has previously been used with an assumption of
3005 ** higher selectivity, then set the flag to rerun the
3006 ** loop computations. */
drh89efac92020-02-22 16:58:49 +00003007 pBuilder->bldFlags2 |= SQLITE_BLDF2_2NDPASS;
3008 }
3009 }
dan8ad1d8b2014-04-25 20:22:45 +00003010 if( pNew->nOut>saved_nOut ) pNew->nOut = saved_nOut;
3011 pNew->nOut -= nIn;
3012 }
3013 }
3014 if( nOut==0 )
3015#endif
3016 {
3017 pNew->nOut += (pProbe->aiRowLogEst[nEq] - pProbe->aiRowLogEst[nEq-1]);
3018 if( eOp & WO_ISNULL ){
3019 /* TUNING: If there is no likelihood() value, assume that a
3020 ** "col IS NULL" expression matches twice as many rows
3021 ** as (col=?). */
3022 pNew->nOut += 10;
3023 }
3024 }
dan6cb8d762013-08-08 11:48:57 +00003025 }
drh6f2bfad2013-06-03 17:35:22 +00003026 }
dan8ad1d8b2014-04-25 20:22:45 +00003027
danaa9933c2014-04-24 20:04:49 +00003028 /* Set rCostIdx to the cost of visiting selected rows in index. Add
3029 ** it to pNew->rRun, which is currently set to the cost of the index
3030 ** seek only. Then, if this is a non-covering index, add the cost of
3031 ** visiting the rows in the main table. */
drh725dd722019-08-15 14:35:45 +00003032 assert( pSrc->pTab->szTabRow>0 );
danaa9933c2014-04-24 20:04:49 +00003033 rCostIdx = pNew->nOut + 1 + (15*pProbe->szIdxRow)/pSrc->pTab->szTabRow;
dan8ad1d8b2014-04-25 20:22:45 +00003034 pNew->rRun = sqlite3LogEstAdd(rLogSize, rCostIdx);
drhe217efc2013-06-12 03:48:41 +00003035 if( (pNew->wsFlags & (WHERE_IDX_ONLY|WHERE_IPK))==0 ){
danaa9933c2014-04-24 20:04:49 +00003036 pNew->rRun = sqlite3LogEstAdd(pNew->rRun, pNew->nOut + 16);
drheb04de32013-05-10 15:16:30 +00003037 }
drhdbd94862014-07-23 23:57:42 +00003038 ApplyCostMultiplier(pNew->rRun, pProbe->pTable->costMult);
danaa9933c2014-04-24 20:04:49 +00003039
dan8ad1d8b2014-04-25 20:22:45 +00003040 nOutUnadjusted = pNew->nOut;
3041 pNew->rRun += nInMul + nIn;
3042 pNew->nOut += nInMul + nIn;
drhd8b77e22014-09-06 01:35:57 +00003043 whereLoopOutputAdjust(pBuilder->pWC, pNew, rSize);
drhcf8fa7a2013-05-10 20:26:22 +00003044 rc = whereLoopInsert(pBuilder, pNew);
dan440e6ff2014-04-28 08:49:54 +00003045
3046 if( pNew->wsFlags & WHERE_COLUMN_RANGE ){
3047 pNew->nOut = saved_nOut;
3048 }else{
3049 pNew->nOut = nOutUnadjusted;
3050 }
dan8ad1d8b2014-04-25 20:22:45 +00003051
drh5346e952013-05-08 14:14:26 +00003052 if( (pNew->wsFlags & WHERE_TOP_LIMIT)==0
dan39129ce2014-06-30 15:23:57 +00003053 && pNew->u.btree.nEq<pProbe->nColumn
drh756748e2021-05-13 13:43:40 +00003054 && (pNew->u.btree.nEq<pProbe->nKeyCol ||
3055 pProbe->idxType!=SQLITE_IDXTYPE_PRIMARYKEY)
drh5346e952013-05-08 14:14:26 +00003056 ){
drhb8a8e8a2013-06-10 19:12:39 +00003057 whereLoopAddBtreeIndex(pBuilder, pSrc, pProbe, nInMul+nIn);
drha18f3d22013-05-08 03:05:41 +00003058 }
danad45ed72013-08-08 12:21:32 +00003059 pNew->nOut = saved_nOut;
drh175b8f02019-08-08 15:24:17 +00003060#ifdef SQLITE_ENABLE_STAT4
dan7a419232013-08-06 20:01:43 +00003061 pBuilder->nRecValid = nRecValid;
dan7a419232013-08-06 20:01:43 +00003062#endif
drh1c8148f2013-05-04 20:25:23 +00003063 }
drh4efc9292013-06-06 23:02:03 +00003064 pNew->prereq = saved_prereq;
3065 pNew->u.btree.nEq = saved_nEq;
dan71c57db2016-07-09 20:23:55 +00003066 pNew->u.btree.nBtm = saved_nBtm;
3067 pNew->u.btree.nTop = saved_nTop;
drhc8bbce12014-10-21 01:05:09 +00003068 pNew->nSkip = saved_nSkip;
drh4efc9292013-06-06 23:02:03 +00003069 pNew->wsFlags = saved_wsFlags;
3070 pNew->nOut = saved_nOut;
3071 pNew->nLTerm = saved_nLTerm;
drhc8bbce12014-10-21 01:05:09 +00003072
3073 /* Consider using a skip-scan if there are no WHERE clause constraints
3074 ** available for the left-most terms of the index, and if the average
3075 ** number of repeats in the left-most terms is at least 18.
3076 **
3077 ** The magic number 18 is selected on the basis that scanning 17 rows
3078 ** is almost always quicker than an index seek (even though if the index
3079 ** contains fewer than 2^17 rows we assume otherwise in other parts of
3080 ** the code). And, even if it is not, it should not be too much slower.
3081 ** On the other hand, the extra seeks could end up being significantly
3082 ** more expensive. */
3083 assert( 42==sqlite3LogEst(18) );
3084 if( saved_nEq==saved_nSkip
3085 && saved_nEq+1<pProbe->nKeyCol
drhb592d472020-01-06 17:33:09 +00003086 && saved_nEq==pNew->nLTerm
drhf9df2fb2014-11-15 19:08:13 +00003087 && pProbe->noSkipScan==0
drhab7fdca2020-02-13 14:51:54 +00003088 && pProbe->hasStat1!=0
dane8825512018-07-12 19:14:39 +00003089 && OptimizationEnabled(db, SQLITE_SkipScan)
drhc8bbce12014-10-21 01:05:09 +00003090 && pProbe->aiRowLogEst[saved_nEq+1]>=42 /* TUNING: Minimum for skip-scan */
3091 && (rc = whereLoopResize(db, pNew, pNew->nLTerm+1))==SQLITE_OK
3092 ){
3093 LogEst nIter;
3094 pNew->u.btree.nEq++;
3095 pNew->nSkip++;
3096 pNew->aLTerm[pNew->nLTerm++] = 0;
3097 pNew->wsFlags |= WHERE_SKIPSCAN;
3098 nIter = pProbe->aiRowLogEst[saved_nEq] - pProbe->aiRowLogEst[saved_nEq+1];
drhc8bbce12014-10-21 01:05:09 +00003099 pNew->nOut -= nIter;
3100 /* TUNING: Because uncertainties in the estimates for skip-scan queries,
3101 ** add a 1.375 fudge factor to make skip-scan slightly less likely. */
3102 nIter += 5;
3103 whereLoopAddBtreeIndex(pBuilder, pSrc, pProbe, nIter + nInMul);
3104 pNew->nOut = saved_nOut;
3105 pNew->u.btree.nEq = saved_nEq;
3106 pNew->nSkip = saved_nSkip;
3107 pNew->wsFlags = saved_wsFlags;
3108 }
3109
drh0f1631d2018-04-09 13:58:20 +00003110 WHERETRACE(0x800, ("END %s.addBtreeIdx(%s), nEq=%d, rc=%d\n",
3111 pProbe->pTable->zName, pProbe->zName, saved_nEq, rc));
drh5346e952013-05-08 14:14:26 +00003112 return rc;
drh1c8148f2013-05-04 20:25:23 +00003113}
3114
3115/*
drh23f98da2013-05-21 15:52:07 +00003116** Return True if it is possible that pIndex might be useful in
3117** implementing the ORDER BY clause in pBuilder.
3118**
3119** Return False if pBuilder does not contain an ORDER BY clause or
3120** if there is no way for pIndex to be useful in implementing that
3121** ORDER BY clause.
3122*/
3123static int indexMightHelpWithOrderBy(
3124 WhereLoopBuilder *pBuilder,
3125 Index *pIndex,
3126 int iCursor
3127){
3128 ExprList *pOB;
drhdae26fe2015-09-24 18:47:59 +00003129 ExprList *aColExpr;
drh6d381472013-06-13 17:58:08 +00003130 int ii, jj;
drh23f98da2013-05-21 15:52:07 +00003131
drh53cfbe92013-06-13 17:28:22 +00003132 if( pIndex->bUnordered ) return 0;
drh70d18342013-06-06 19:16:33 +00003133 if( (pOB = pBuilder->pWInfo->pOrderBy)==0 ) return 0;
drh23f98da2013-05-21 15:52:07 +00003134 for(ii=0; ii<pOB->nExpr; ii++){
drh0d950af2019-08-22 16:38:42 +00003135 Expr *pExpr = sqlite3ExprSkipCollateAndLikely(pOB->a[ii].pExpr);
drh235667a2020-11-08 20:44:30 +00003136 if( NEVER(pExpr==0) ) continue;
drhdae26fe2015-09-24 18:47:59 +00003137 if( pExpr->op==TK_COLUMN && pExpr->iTable==iCursor ){
drh137fd4f2014-09-19 02:01:37 +00003138 if( pExpr->iColumn<0 ) return 1;
drhbbbdc832013-10-22 18:01:40 +00003139 for(jj=0; jj<pIndex->nKeyCol; jj++){
drh6d381472013-06-13 17:58:08 +00003140 if( pExpr->iColumn==pIndex->aiColumn[jj] ) return 1;
3141 }
drhdae26fe2015-09-24 18:47:59 +00003142 }else if( (aColExpr = pIndex->aColExpr)!=0 ){
3143 for(jj=0; jj<pIndex->nKeyCol; jj++){
drh4b92f982015-09-29 17:20:14 +00003144 if( pIndex->aiColumn[jj]!=XN_EXPR ) continue;
drhdb8e68b2017-09-28 01:09:42 +00003145 if( sqlite3ExprCompareSkip(pExpr,aColExpr->a[jj].pExpr,iCursor)==0 ){
drhdae26fe2015-09-24 18:47:59 +00003146 return 1;
3147 }
3148 }
drh23f98da2013-05-21 15:52:07 +00003149 }
3150 }
3151 return 0;
3152}
3153
drh4bd5f732013-07-31 23:22:39 +00003154/* Check to see if a partial index with pPartIndexWhere can be used
3155** in the current query. Return true if it can be and false if not.
3156*/
drhca7a26b2019-11-30 19:29:19 +00003157static int whereUsablePartialIndex(
3158 int iTab, /* The table for which we want an index */
3159 int isLeft, /* True if iTab is the right table of a LEFT JOIN */
3160 WhereClause *pWC, /* The WHERE clause of the query */
3161 Expr *pWhere /* The WHERE clause from the partial index */
3162){
drh4bd5f732013-07-31 23:22:39 +00003163 int i;
3164 WhereTerm *pTerm;
drh3e380a42017-06-28 18:25:03 +00003165 Parse *pParse = pWC->pWInfo->pParse;
drhcf599b62015-08-07 20:57:00 +00003166 while( pWhere->op==TK_AND ){
drhca7a26b2019-11-30 19:29:19 +00003167 if( !whereUsablePartialIndex(iTab,isLeft,pWC,pWhere->pLeft) ) return 0;
drhcf599b62015-08-07 20:57:00 +00003168 pWhere = pWhere->pRight;
3169 }
drh3e380a42017-06-28 18:25:03 +00003170 if( pParse->db->flags & SQLITE_EnableQPSG ) pParse = 0;
drh4bd5f732013-07-31 23:22:39 +00003171 for(i=0, pTerm=pWC->a; i<pWC->nTerm; i++, pTerm++){
drhc7d12f42019-09-03 14:27:25 +00003172 Expr *pExpr;
drhc7d12f42019-09-03 14:27:25 +00003173 pExpr = pTerm->pExpr;
drh796588a2022-02-05 21:49:47 +00003174 if( (!ExprHasProperty(pExpr, EP_FromJoin) || pExpr->w.iRightJoinTable==iTab)
drhca7a26b2019-11-30 19:29:19 +00003175 && (isLeft==0 || ExprHasProperty(pExpr, EP_FromJoin))
drhd65b7e32021-05-29 23:07:59 +00003176 && sqlite3ExprImpliesExpr(pParse, pExpr, pWhere, iTab)
3177 && (pTerm->wtFlags & TERM_VNULL)==0
drh077f06e2015-02-24 16:48:59 +00003178 ){
3179 return 1;
3180 }
drh4bd5f732013-07-31 23:22:39 +00003181 }
3182 return 0;
3183}
drh92a121f2013-06-10 12:15:47 +00003184
3185/*
dan51576f42013-07-02 10:06:15 +00003186** Add all WhereLoop objects for a single table of the join where the table
dan71c57db2016-07-09 20:23:55 +00003187** is identified by pBuilder->pNew->iTab. That table is guaranteed to be
drh0823c892013-05-11 00:06:23 +00003188** a b-tree table, not a virtual table.
dan81647222014-04-30 15:00:16 +00003189**
3190** The costs (WhereLoop.rRun) of the b-tree loops added by this function
3191** are calculated as follows:
3192**
3193** For a full scan, assuming the table (or index) contains nRow rows:
3194**
3195** cost = nRow * 3.0 // full-table scan
3196** cost = nRow * K // scan of covering index
3197** cost = nRow * (K+3.0) // scan of non-covering index
3198**
3199** where K is a value between 1.1 and 3.0 set based on the relative
3200** estimated average size of the index and table records.
3201**
3202** For an index scan, where nVisit is the number of index rows visited
3203** by the scan, and nSeek is the number of seek operations required on
3204** the index b-tree:
3205**
3206** cost = nSeek * (log(nRow) + K * nVisit) // covering index
3207** cost = nSeek * (log(nRow) + (K+3.0) * nVisit) // non-covering index
3208**
3209** Normally, nSeek is 1. nSeek values greater than 1 come about if the
3210** WHERE clause includes "x IN (....)" terms used in place of "x=?". Or when
3211** implicit "x IN (SELECT x FROM tbl)" terms are added for skip-scans.
drh83a305f2014-07-22 12:05:32 +00003212**
3213** The estimated values (nRow, nVisit, nSeek) often contain a large amount
3214** of uncertainty. For this reason, scoring is designed to pick plans that
3215** "do the least harm" if the estimates are inaccurate. For example, a
3216** log(nRow) factor is omitted from a non-covering index scan in order to
3217** bias the scoring in favor of using an index, since the worst-case
3218** performance of using an index is far better than the worst-case performance
3219** of a full table scan.
drhf1b5f5b2013-05-02 00:15:01 +00003220*/
drh5346e952013-05-08 14:14:26 +00003221static int whereLoopAddBtree(
drh1c8148f2013-05-04 20:25:23 +00003222 WhereLoopBuilder *pBuilder, /* WHERE clause information */
drh599d5762016-03-08 01:11:51 +00003223 Bitmask mPrereq /* Extra prerequesites for using this table */
drhf1b5f5b2013-05-02 00:15:01 +00003224){
drh70d18342013-06-06 19:16:33 +00003225 WhereInfo *pWInfo; /* WHERE analysis context */
drh1c8148f2013-05-04 20:25:23 +00003226 Index *pProbe; /* An index we are evaluating */
drh1c8148f2013-05-04 20:25:23 +00003227 Index sPk; /* A fake index object for the primary key */
dancfc9df72014-04-25 15:01:01 +00003228 LogEst aiRowEstPk[2]; /* The aiRowLogEst[] value for the sPk index */
drhbbbdc832013-10-22 18:01:40 +00003229 i16 aiColumnPk = -1; /* The aColumn[] value for the sPk index */
drh70d18342013-06-06 19:16:33 +00003230 SrcList *pTabList; /* The FROM clause */
drh76012942021-02-21 21:04:54 +00003231 SrcItem *pSrc; /* The FROM clause btree term to add */
drh1c8148f2013-05-04 20:25:23 +00003232 WhereLoop *pNew; /* Template WhereLoop object */
drh5346e952013-05-08 14:14:26 +00003233 int rc = SQLITE_OK; /* Return code */
drhd044d202013-05-31 12:43:55 +00003234 int iSortIdx = 1; /* Index number */
drh23f98da2013-05-21 15:52:07 +00003235 int b; /* A boolean value */
drhbf539c42013-10-05 18:16:02 +00003236 LogEst rSize; /* number of rows in the table */
drh4bd5f732013-07-31 23:22:39 +00003237 WhereClause *pWC; /* The parsed WHERE clause */
drh3495d202013-10-07 17:32:15 +00003238 Table *pTab; /* Table being queried */
drh23f98da2013-05-21 15:52:07 +00003239
drh1c8148f2013-05-04 20:25:23 +00003240 pNew = pBuilder->pNew;
drh70d18342013-06-06 19:16:33 +00003241 pWInfo = pBuilder->pWInfo;
3242 pTabList = pWInfo->pTabList;
3243 pSrc = pTabList->a + pNew->iTab;
drh3495d202013-10-07 17:32:15 +00003244 pTab = pSrc->pTab;
drh4bd5f732013-07-31 23:22:39 +00003245 pWC = pBuilder->pWC;
drh0823c892013-05-11 00:06:23 +00003246 assert( !IsVirtual(pSrc->pTab) );
drh1c8148f2013-05-04 20:25:23 +00003247
drh271d7c22021-02-20 13:36:14 +00003248 if( pSrc->fg.isIndexedBy ){
drhdbfbb5a2021-10-07 23:04:50 +00003249 assert( pSrc->fg.isCte==0 );
drh1c8148f2013-05-04 20:25:23 +00003250 /* An INDEXED BY clause specifies a particular index to use */
drha79e2a22021-02-21 23:44:14 +00003251 pProbe = pSrc->u2.pIBIndex;
drhec95c442013-10-23 01:57:32 +00003252 }else if( !HasRowid(pTab) ){
3253 pProbe = pTab->pIndex;
drh1c8148f2013-05-04 20:25:23 +00003254 }else{
3255 /* There is no INDEXED BY clause. Create a fake Index object in local
3256 ** variable sPk to represent the rowid primary key index. Make this
3257 ** fake index the first in a chain of Index objects with all of the real
3258 ** indices to follow */
3259 Index *pFirst; /* First of real indices on the table */
3260 memset(&sPk, 0, sizeof(Index));
drhbbbdc832013-10-22 18:01:40 +00003261 sPk.nKeyCol = 1;
dan39129ce2014-06-30 15:23:57 +00003262 sPk.nColumn = 1;
drh1c8148f2013-05-04 20:25:23 +00003263 sPk.aiColumn = &aiColumnPk;
dancfc9df72014-04-25 15:01:01 +00003264 sPk.aiRowLogEst = aiRowEstPk;
drh1c8148f2013-05-04 20:25:23 +00003265 sPk.onError = OE_Replace;
drh3495d202013-10-07 17:32:15 +00003266 sPk.pTable = pTab;
danaa9933c2014-04-24 20:04:49 +00003267 sPk.szIdxRow = pTab->szTabRow;
drh5f913ec2019-01-10 13:56:08 +00003268 sPk.idxType = SQLITE_IDXTYPE_IPK;
dancfc9df72014-04-25 15:01:01 +00003269 aiRowEstPk[0] = pTab->nRowLogEst;
3270 aiRowEstPk[1] = 0;
drh1c8148f2013-05-04 20:25:23 +00003271 pFirst = pSrc->pTab->pIndex;
drh8a48b9c2015-08-19 15:20:00 +00003272 if( pSrc->fg.notIndexed==0 ){
drh1c8148f2013-05-04 20:25:23 +00003273 /* The real indices of the table are only considered if the
3274 ** NOT INDEXED qualifier is omitted from the FROM clause */
3275 sPk.pNext = pFirst;
3276 }
3277 pProbe = &sPk;
3278 }
dancfc9df72014-04-25 15:01:01 +00003279 rSize = pTab->nRowLogEst;
drheb04de32013-05-10 15:16:30 +00003280
drhfeb56e02013-08-23 17:33:46 +00003281#ifndef SQLITE_OMIT_AUTOMATIC_INDEX
drheb04de32013-05-10 15:16:30 +00003282 /* Automatic indexes */
drh8a48b9c2015-08-19 15:20:00 +00003283 if( !pBuilder->pOrSet /* Not part of an OR optimization */
drhce943bc2016-05-19 18:56:33 +00003284 && (pWInfo->wctrlFlags & WHERE_OR_SUBCLAUSE)==0
drh4fe425a2013-06-12 17:08:06 +00003285 && (pWInfo->pParse->db->flags & SQLITE_AutoIndex)!=0
drh271d7c22021-02-20 13:36:14 +00003286 && !pSrc->fg.isIndexedBy /* Has no INDEXED BY clause */
drh8a48b9c2015-08-19 15:20:00 +00003287 && !pSrc->fg.notIndexed /* Has no NOT INDEXED clause */
drh76226dd2015-09-24 17:38:01 +00003288 && HasRowid(pTab) /* Not WITHOUT ROWID table. (FIXME: Why not?) */
drh8a48b9c2015-08-19 15:20:00 +00003289 && !pSrc->fg.isCorrelated /* Not a correlated subquery */
3290 && !pSrc->fg.isRecursive /* Not a recursive common table expression. */
drheb04de32013-05-10 15:16:30 +00003291 ){
3292 /* Generate auto-index WhereLoops */
drh9045e7d2021-07-28 01:22:23 +00003293 LogEst rLogSize; /* Logarithm of the number of rows in the table */
drheb04de32013-05-10 15:16:30 +00003294 WhereTerm *pTerm;
3295 WhereTerm *pWCEnd = pWC->a + pWC->nTerm;
drh9045e7d2021-07-28 01:22:23 +00003296 rLogSize = estLog(rSize);
drheb04de32013-05-10 15:16:30 +00003297 for(pTerm=pWC->a; rc==SQLITE_OK && pTerm<pWCEnd; pTerm++){
drh79a13bf2013-05-31 20:28:28 +00003298 if( pTerm->prereqRight & pNew->maskSelf ) continue;
drheb04de32013-05-10 15:16:30 +00003299 if( termCanDriveIndex(pTerm, pSrc, 0) ){
3300 pNew->u.btree.nEq = 1;
drhc8bbce12014-10-21 01:05:09 +00003301 pNew->nSkip = 0;
drhef866372013-05-22 20:49:02 +00003302 pNew->u.btree.pIndex = 0;
drh4efc9292013-06-06 23:02:03 +00003303 pNew->nLTerm = 1;
3304 pNew->aLTerm[0] = pTerm;
drhe1e2e9a2013-06-13 15:16:53 +00003305 /* TUNING: One-time cost for computing the automatic index is
drh7e074332014-09-22 14:30:51 +00003306 ** estimated to be X*N*log2(N) where N is the number of rows in
3307 ** the table being indexed and where X is 7 (LogEst=28) for normal
drh492ad132018-05-14 22:46:11 +00003308 ** tables or 0.5 (LogEst=-10) for views and subqueries. The value
drh7e074332014-09-22 14:30:51 +00003309 ** of X is smaller for views and subqueries so that the query planner
3310 ** will be more aggressive about generating automatic indexes for
3311 ** those objects, since there is no opportunity to add schema
3312 ** indexes on subqueries and views. */
drh492ad132018-05-14 22:46:11 +00003313 pNew->rSetup = rLogSize + rSize;
drhf38524d2021-08-02 16:41:57 +00003314 if( !IsView(pTab) && (pTab->tabFlags & TF_Ephemeral)==0 ){
drh492ad132018-05-14 22:46:11 +00003315 pNew->rSetup += 28;
3316 }else{
3317 pNew->rSetup -= 10;
drh7e074332014-09-22 14:30:51 +00003318 }
drhdbd94862014-07-23 23:57:42 +00003319 ApplyCostMultiplier(pNew->rSetup, pTab->costMult);
drh05d1bad2016-06-26 04:06:28 +00003320 if( pNew->rSetup<0 ) pNew->rSetup = 0;
drh986b3872013-06-28 21:12:20 +00003321 /* TUNING: Each index lookup yields 20 rows in the table. This
3322 ** is more than the usual guess of 10 rows, since we have no way
peter.d.reid60ec9142014-09-06 16:39:46 +00003323 ** of knowing how selective the index will ultimately be. It would
drh986b3872013-06-28 21:12:20 +00003324 ** not be unreasonable to make this value much larger. */
drhbf539c42013-10-05 18:16:02 +00003325 pNew->nOut = 43; assert( 43==sqlite3LogEst(20) );
drhb50596d2013-10-08 20:42:41 +00003326 pNew->rRun = sqlite3LogEstAdd(rLogSize,pNew->nOut);
drh986b3872013-06-28 21:12:20 +00003327 pNew->wsFlags = WHERE_AUTO_INDEX;
drh599d5762016-03-08 01:11:51 +00003328 pNew->prereq = mPrereq | pTerm->prereqRight;
drhcf8fa7a2013-05-10 20:26:22 +00003329 rc = whereLoopInsert(pBuilder, pNew);
drheb04de32013-05-10 15:16:30 +00003330 }
3331 }
3332 }
drhfeb56e02013-08-23 17:33:46 +00003333#endif /* SQLITE_OMIT_AUTOMATIC_INDEX */
drh1c8148f2013-05-04 20:25:23 +00003334
dan85e1f462017-11-07 18:20:15 +00003335 /* Loop over all indices. If there was an INDEXED BY clause, then only
3336 ** consider index pProbe. */
3337 for(; rc==SQLITE_OK && pProbe;
drh271d7c22021-02-20 13:36:14 +00003338 pProbe=(pSrc->fg.isIndexedBy ? 0 : pProbe->pNext), iSortIdx++
dan85e1f462017-11-07 18:20:15 +00003339 ){
drhca7a26b2019-11-30 19:29:19 +00003340 int isLeft = (pSrc->fg.jointype & JT_OUTER)!=0;
drh4bd5f732013-07-31 23:22:39 +00003341 if( pProbe->pPartIdxWhere!=0
drhca7a26b2019-11-30 19:29:19 +00003342 && !whereUsablePartialIndex(pSrc->iCursor, isLeft, pWC,
3343 pProbe->pPartIdxWhere)
3344 ){
dan08291692014-08-27 17:37:20 +00003345 testcase( pNew->iTab!=pSrc->iCursor ); /* See ticket [98d973b8f5] */
drh4bd5f732013-07-31 23:22:39 +00003346 continue; /* Partial index inappropriate for this query */
3347 }
drh7e8515d2017-12-08 19:37:04 +00003348 if( pProbe->bNoQuery ) continue;
dan7de2a1f2014-04-28 20:11:20 +00003349 rSize = pProbe->aiRowLogEst[0];
drh5346e952013-05-08 14:14:26 +00003350 pNew->u.btree.nEq = 0;
dan71c57db2016-07-09 20:23:55 +00003351 pNew->u.btree.nBtm = 0;
3352 pNew->u.btree.nTop = 0;
drhc8bbce12014-10-21 01:05:09 +00003353 pNew->nSkip = 0;
drh4efc9292013-06-06 23:02:03 +00003354 pNew->nLTerm = 0;
drh23f98da2013-05-21 15:52:07 +00003355 pNew->iSortIdx = 0;
drhb8a8e8a2013-06-10 19:12:39 +00003356 pNew->rSetup = 0;
drh599d5762016-03-08 01:11:51 +00003357 pNew->prereq = mPrereq;
drh74f91d42013-06-19 18:01:44 +00003358 pNew->nOut = rSize;
drh23f98da2013-05-21 15:52:07 +00003359 pNew->u.btree.pIndex = pProbe;
3360 b = indexMightHelpWithOrderBy(pBuilder, pProbe, pSrc->iCursor);
drh094afff2020-06-03 03:00:09 +00003361
drh53cfbe92013-06-13 17:28:22 +00003362 /* The ONEPASS_DESIRED flags never occurs together with ORDER BY */
3363 assert( (pWInfo->wctrlFlags & WHERE_ONEPASS_DESIRED)==0 || b==0 );
drh5f913ec2019-01-10 13:56:08 +00003364 if( pProbe->idxType==SQLITE_IDXTYPE_IPK ){
drh43fe25f2013-05-07 23:06:23 +00003365 /* Integer primary key index */
3366 pNew->wsFlags = WHERE_IPK;
drh23f98da2013-05-21 15:52:07 +00003367
3368 /* Full table scan */
drhd044d202013-05-31 12:43:55 +00003369 pNew->iSortIdx = b ? iSortIdx : 0;
drh40386962020-10-22 15:47:48 +00003370 /* TUNING: Cost of full table scan is 3.0*N. The 3.0 factor is an
3371 ** extra cost designed to discourage the use of full table scans,
3372 ** since index lookups have better worst-case performance if our
3373 ** stat guesses are wrong. Reduce the 3.0 penalty slightly
3374 ** (to 2.75) if we have valid STAT4 information for the table.
3375 ** At 2.75, a full table scan is preferred over using an index on
3376 ** a column with just two distinct values where each value has about
3377 ** an equal number of appearances. Without STAT4 data, we still want
3378 ** to use an index in that case, since the constraint might be for
3379 ** the scarcer of the two values, and in that case an index lookup is
3380 ** better.
3381 */
3382#ifdef SQLITE_ENABLE_STAT4
3383 pNew->rRun = rSize + 16 - 2*((pTab->tabFlags & TF_HasStat4)!=0);
3384#else
danaa9933c2014-04-24 20:04:49 +00003385 pNew->rRun = rSize + 16;
drh40386962020-10-22 15:47:48 +00003386#endif
drhdbd94862014-07-23 23:57:42 +00003387 ApplyCostMultiplier(pNew->rRun, pTab->costMult);
drhd8b77e22014-09-06 01:35:57 +00003388 whereLoopOutputAdjust(pWC, pNew, rSize);
drh23f98da2013-05-21 15:52:07 +00003389 rc = whereLoopInsert(pBuilder, pNew);
drhcca9f3d2013-09-06 15:23:29 +00003390 pNew->nOut = rSize;
drh23f98da2013-05-21 15:52:07 +00003391 if( rc ) break;
drh43fe25f2013-05-07 23:06:23 +00003392 }else{
drhec95c442013-10-23 01:57:32 +00003393 Bitmask m;
3394 if( pProbe->isCovering ){
3395 pNew->wsFlags = WHERE_IDX_ONLY | WHERE_INDEXED;
3396 m = 0;
3397 }else{
drh1fe3ac72018-06-09 01:12:08 +00003398 m = pSrc->colUsed & pProbe->colNotIdxed;
drhec95c442013-10-23 01:57:32 +00003399 pNew->wsFlags = (m==0) ? (WHERE_IDX_ONLY|WHERE_INDEXED) : WHERE_INDEXED;
3400 }
drh1c8148f2013-05-04 20:25:23 +00003401
drh23f98da2013-05-21 15:52:07 +00003402 /* Full scan via index */
drh53cfbe92013-06-13 17:28:22 +00003403 if( b
drh702ba9f2013-11-07 21:25:13 +00003404 || !HasRowid(pTab)
drh8dc570b2016-06-08 18:07:21 +00003405 || pProbe->pPartIdxWhere!=0
drh094afff2020-06-03 03:00:09 +00003406 || pSrc->fg.isIndexedBy
drh53cfbe92013-06-13 17:28:22 +00003407 || ( m==0
3408 && pProbe->bUnordered==0
drh702ba9f2013-11-07 21:25:13 +00003409 && (pProbe->szIdxRow<pTab->szTabRow)
drh53cfbe92013-06-13 17:28:22 +00003410 && (pWInfo->wctrlFlags & WHERE_ONEPASS_DESIRED)==0
3411 && sqlite3GlobalConfig.bUseCis
3412 && OptimizationEnabled(pWInfo->pParse->db, SQLITE_CoverIdxScan)
3413 )
drhe3b7c922013-06-03 19:17:40 +00003414 ){
drh23f98da2013-05-21 15:52:07 +00003415 pNew->iSortIdx = b ? iSortIdx : 0;
danaa9933c2014-04-24 20:04:49 +00003416
3417 /* The cost of visiting the index rows is N*K, where K is
3418 ** between 1.1 and 3.0, depending on the relative sizes of the
drh2409f8a2016-07-27 18:27:02 +00003419 ** index and table rows. */
danaa9933c2014-04-24 20:04:49 +00003420 pNew->rRun = rSize + 1 + (15*pProbe->szIdxRow)/pTab->szTabRow;
3421 if( m!=0 ){
drh2409f8a2016-07-27 18:27:02 +00003422 /* If this is a non-covering index scan, add in the cost of
3423 ** doing table lookups. The cost will be 3x the number of
3424 ** lookups. Take into account WHERE clause terms that can be
3425 ** satisfied using just the index, and that do not require a
3426 ** table lookup. */
3427 LogEst nLookup = rSize + 16; /* Base cost: N*3 */
3428 int ii;
3429 int iCur = pSrc->iCursor;
mistachkin19e76b22016-07-30 18:54:54 +00003430 WhereClause *pWC2 = &pWInfo->sWC;
3431 for(ii=0; ii<pWC2->nTerm; ii++){
3432 WhereTerm *pTerm = &pWC2->a[ii];
drh2409f8a2016-07-27 18:27:02 +00003433 if( !sqlite3ExprCoveredByIndex(pTerm->pExpr, iCur, pProbe) ){
3434 break;
3435 }
3436 /* pTerm can be evaluated using just the index. So reduce
3437 ** the expected number of table lookups accordingly */
3438 if( pTerm->truthProb<=0 ){
3439 nLookup += pTerm->truthProb;
3440 }else{
3441 nLookup--;
3442 if( pTerm->eOperator & (WO_EQ|WO_IS) ) nLookup -= 19;
3443 }
3444 }
3445
3446 pNew->rRun = sqlite3LogEstAdd(pNew->rRun, nLookup);
drhe1e2e9a2013-06-13 15:16:53 +00003447 }
drhdbd94862014-07-23 23:57:42 +00003448 ApplyCostMultiplier(pNew->rRun, pTab->costMult);
drhd8b77e22014-09-06 01:35:57 +00003449 whereLoopOutputAdjust(pWC, pNew, rSize);
drh23f98da2013-05-21 15:52:07 +00003450 rc = whereLoopInsert(pBuilder, pNew);
drhcca9f3d2013-09-06 15:23:29 +00003451 pNew->nOut = rSize;
drh23f98da2013-05-21 15:52:07 +00003452 if( rc ) break;
3453 }
3454 }
dan7a419232013-08-06 20:01:43 +00003455
drh89efac92020-02-22 16:58:49 +00003456 pBuilder->bldFlags1 = 0;
drhb8a8e8a2013-06-10 19:12:39 +00003457 rc = whereLoopAddBtreeIndex(pBuilder, pSrc, pProbe, 0);
drh89efac92020-02-22 16:58:49 +00003458 if( pBuilder->bldFlags1==SQLITE_BLDF1_INDEXED ){
drha3928dd2017-02-17 15:26:36 +00003459 /* If a non-unique index is used, or if a prefix of the key for
3460 ** unique index is used (making the index functionally non-unique)
3461 ** then the sqlite_stat1 data becomes important for scoring the
3462 ** plan */
3463 pTab->tabFlags |= TF_StatsUsed;
3464 }
drh175b8f02019-08-08 15:24:17 +00003465#ifdef SQLITE_ENABLE_STAT4
dan87cd9322013-08-07 15:52:41 +00003466 sqlite3Stat4ProbeFree(pBuilder->pRec);
3467 pBuilder->nRecValid = 0;
3468 pBuilder->pRec = 0;
danddc2d6e2013-08-06 20:15:06 +00003469#endif
drh1c8148f2013-05-04 20:25:23 +00003470 }
drh5346e952013-05-08 14:14:26 +00003471 return rc;
drhf1b5f5b2013-05-02 00:15:01 +00003472}
3473
drh8636e9c2013-06-11 01:50:08 +00003474#ifndef SQLITE_OMIT_VIRTUALTABLE
dan115305f2016-03-05 17:29:08 +00003475
3476/*
drh895bab32022-01-27 16:14:50 +00003477** Return true if pTerm is a virtual table LIMIT or OFFSET term.
3478*/
3479static int isLimitTerm(WhereTerm *pTerm){
drh8f2c0b52022-01-27 21:18:14 +00003480 assert( pTerm->eOperator==WO_AUX || pTerm->eMatchOp==0 );
3481 return pTerm->eMatchOp>=SQLITE_INDEX_CONSTRAINT_LIMIT
3482 && pTerm->eMatchOp<=SQLITE_INDEX_CONSTRAINT_OFFSET;
drh895bab32022-01-27 16:14:50 +00003483}
3484
3485/*
dan115305f2016-03-05 17:29:08 +00003486** Argument pIdxInfo is already populated with all constraints that may
3487** be used by the virtual table identified by pBuilder->pNew->iTab. This
3488** function marks a subset of those constraints usable, invokes the
3489** xBestIndex method and adds the returned plan to pBuilder.
3490**
3491** A constraint is marked usable if:
3492**
3493** * Argument mUsable indicates that its prerequisites are available, and
3494**
3495** * It is not one of the operators specified in the mExclude mask passed
3496** as the fourth argument (which in practice is either WO_IN or 0).
3497**
drh599d5762016-03-08 01:11:51 +00003498** Argument mPrereq is a mask of tables that must be scanned before the
dan115305f2016-03-05 17:29:08 +00003499** virtual table in question. These are added to the plans prerequisites
3500** before it is added to pBuilder.
3501**
3502** Output parameter *pbIn is set to true if the plan added to pBuilder
3503** uses one or more WO_IN terms, or false otherwise.
3504*/
3505static int whereLoopAddVirtualOne(
3506 WhereLoopBuilder *pBuilder,
drh8426e362016-03-08 01:32:30 +00003507 Bitmask mPrereq, /* Mask of tables that must be used. */
3508 Bitmask mUsable, /* Mask of usable tables */
3509 u16 mExclude, /* Exclude terms using these operators */
dan115305f2016-03-05 17:29:08 +00003510 sqlite3_index_info *pIdxInfo, /* Populated object for xBestIndex */
dan6256c1c2016-08-08 20:15:41 +00003511 u16 mNoOmit, /* Do not omit these constraints */
drh895bab32022-01-27 16:14:50 +00003512 int *pbIn, /* OUT: True if plan uses an IN(...) op */
3513 int *pbRetryLimit /* OUT: Retry without LIMIT/OFFSET */
dan115305f2016-03-05 17:29:08 +00003514){
3515 WhereClause *pWC = pBuilder->pWC;
drh0fe7e7d2022-02-01 14:58:29 +00003516 HiddenIndexInfo *pHidden = (HiddenIndexInfo*)&pIdxInfo[1];
dan115305f2016-03-05 17:29:08 +00003517 struct sqlite3_index_constraint *pIdxCons;
3518 struct sqlite3_index_constraint_usage *pUsage = pIdxInfo->aConstraintUsage;
3519 int i;
3520 int mxTerm;
3521 int rc = SQLITE_OK;
3522 WhereLoop *pNew = pBuilder->pNew;
3523 Parse *pParse = pBuilder->pWInfo->pParse;
drh76012942021-02-21 21:04:54 +00003524 SrcItem *pSrc = &pBuilder->pWInfo->pTabList->a[pNew->iTab];
dan115305f2016-03-05 17:29:08 +00003525 int nConstraint = pIdxInfo->nConstraint;
3526
drh599d5762016-03-08 01:11:51 +00003527 assert( (mUsable & mPrereq)==mPrereq );
dan115305f2016-03-05 17:29:08 +00003528 *pbIn = 0;
drh599d5762016-03-08 01:11:51 +00003529 pNew->prereq = mPrereq;
dan115305f2016-03-05 17:29:08 +00003530
3531 /* Set the usable flag on the subset of constraints identified by
3532 ** arguments mUsable and mExclude. */
3533 pIdxCons = *(struct sqlite3_index_constraint**)&pIdxInfo->aConstraint;
3534 for(i=0; i<nConstraint; i++, pIdxCons++){
3535 WhereTerm *pTerm = &pWC->a[pIdxCons->iTermOffset];
3536 pIdxCons->usable = 0;
3537 if( (pTerm->prereqRight & mUsable)==pTerm->prereqRight
3538 && (pTerm->eOperator & mExclude)==0
drh895bab32022-01-27 16:14:50 +00003539 && (pbRetryLimit || !isLimitTerm(pTerm))
dan115305f2016-03-05 17:29:08 +00003540 ){
3541 pIdxCons->usable = 1;
3542 }
3543 }
3544
3545 /* Initialize the output fields of the sqlite3_index_info structure */
3546 memset(pUsage, 0, sizeof(pUsage[0])*nConstraint);
drhd1cca3b2016-03-08 23:44:48 +00003547 assert( pIdxInfo->needToFreeIdxStr==0 );
dan115305f2016-03-05 17:29:08 +00003548 pIdxInfo->idxStr = 0;
3549 pIdxInfo->idxNum = 0;
dan115305f2016-03-05 17:29:08 +00003550 pIdxInfo->orderByConsumed = 0;
3551 pIdxInfo->estimatedCost = SQLITE_BIG_DBL / (double)2;
3552 pIdxInfo->estimatedRows = 25;
3553 pIdxInfo->idxFlags = 0;
3554 pIdxInfo->colUsed = (sqlite3_int64)pSrc->colUsed;
drh0fe7e7d2022-02-01 14:58:29 +00003555 pHidden->mHandleIn = 0;
dan115305f2016-03-05 17:29:08 +00003556
3557 /* Invoke the virtual table xBestIndex() method */
3558 rc = vtabBestIndex(pParse, pSrc->pTab, pIdxInfo);
drh32dcc842018-11-16 13:56:15 +00003559 if( rc ){
3560 if( rc==SQLITE_CONSTRAINT ){
3561 /* If the xBestIndex method returns SQLITE_CONSTRAINT, that means
3562 ** that the particular combination of parameters provided is unusable.
3563 ** Make no entries in the loop table.
3564 */
drhe4f90b72018-11-16 15:08:31 +00003565 WHERETRACE(0xffff, (" ^^^^--- non-viable plan rejected!\n"));
drh32dcc842018-11-16 13:56:15 +00003566 return SQLITE_OK;
3567 }
3568 return rc;
3569 }
dan115305f2016-03-05 17:29:08 +00003570
3571 mxTerm = -1;
3572 assert( pNew->nLSlot>=nConstraint );
drh8f2c0b52022-01-27 21:18:14 +00003573 memset(pNew->aLTerm, 0, sizeof(pNew->aLTerm[0])*nConstraint );
3574 memset(&pNew->u.vtab, 0, sizeof(pNew->u.vtab));
dan115305f2016-03-05 17:29:08 +00003575 pIdxCons = *(struct sqlite3_index_constraint**)&pIdxInfo->aConstraint;
3576 for(i=0; i<nConstraint; i++, pIdxCons++){
3577 int iTerm;
3578 if( (iTerm = pUsage[i].argvIndex - 1)>=0 ){
3579 WhereTerm *pTerm;
3580 int j = pIdxCons->iTermOffset;
3581 if( iTerm>=nConstraint
3582 || j<0
3583 || j>=pWC->nTerm
3584 || pNew->aLTerm[iTerm]!=0
drh6de32e72016-03-08 02:59:33 +00003585 || pIdxCons->usable==0
dan115305f2016-03-05 17:29:08 +00003586 ){
drh6de32e72016-03-08 02:59:33 +00003587 sqlite3ErrorMsg(pParse,"%s.xBestIndex malfunction",pSrc->pTab->zName);
drh337679b2018-04-09 15:57:54 +00003588 testcase( pIdxInfo->needToFreeIdxStr );
3589 return SQLITE_ERROR;
dan115305f2016-03-05 17:29:08 +00003590 }
3591 testcase( iTerm==nConstraint-1 );
3592 testcase( j==0 );
3593 testcase( j==pWC->nTerm-1 );
3594 pTerm = &pWC->a[j];
3595 pNew->prereq |= pTerm->prereqRight;
3596 assert( iTerm<pNew->nLSlot );
3597 pNew->aLTerm[iTerm] = pTerm;
3598 if( iTerm>mxTerm ) mxTerm = iTerm;
3599 testcase( iTerm==15 );
3600 testcase( iTerm==16 );
drh39593e42019-12-06 11:48:27 +00003601 if( pUsage[i].omit ){
3602 if( i<16 && ((1<<i)&mNoOmit)==0 ){
drhb6c94722019-12-05 21:46:23 +00003603 testcase( i!=iTerm );
3604 pNew->u.vtab.omitMask |= 1<<iTerm;
3605 }else{
3606 testcase( i!=iTerm );
3607 }
drh8f2c0b52022-01-27 21:18:14 +00003608 if( pTerm->eMatchOp==SQLITE_INDEX_CONSTRAINT_OFFSET ){
3609 pNew->u.vtab.bOmitOffset = 1;
3610 }
drhb6c94722019-12-05 21:46:23 +00003611 }
drh0fe7e7d2022-02-01 14:58:29 +00003612 if( SMASKBIT32(i) & pHidden->mHandleIn ){
drhb30298d2022-02-01 21:59:43 +00003613 pNew->u.vtab.mHandleIn |= MASKBIT32(iTerm);
drh0fe7e7d2022-02-01 14:58:29 +00003614 }else if( (pTerm->eOperator & WO_IN)!=0 ){
dan115305f2016-03-05 17:29:08 +00003615 /* A virtual table that is constrained by an IN clause may not
3616 ** consume the ORDER BY clause because (1) the order of IN terms
3617 ** is not necessarily related to the order of output terms and
3618 ** (2) Multiple outputs from a single IN value will not merge
3619 ** together. */
3620 pIdxInfo->orderByConsumed = 0;
3621 pIdxInfo->idxFlags &= ~SQLITE_INDEX_SCAN_UNIQUE;
drh6de32e72016-03-08 02:59:33 +00003622 *pbIn = 1; assert( (mExclude & WO_IN)==0 );
dan115305f2016-03-05 17:29:08 +00003623 }
drh895bab32022-01-27 16:14:50 +00003624
3625 if( isLimitTerm(pTerm) && *pbIn ){
3626 /* If there is an IN(...) term handled as an == (separate call to
3627 ** xFilter for each value on the RHS of the IN) and a LIMIT or
3628 ** OFFSET term handled as well, the plan is unusable. Set output
3629 ** variable *pbRetryLimit to true to tell the caller to retry with
3630 ** LIMIT and OFFSET disabled. */
3631 if( pIdxInfo->needToFreeIdxStr ){
3632 sqlite3_free(pIdxInfo->idxStr);
3633 pIdxInfo->idxStr = 0;
3634 pIdxInfo->needToFreeIdxStr = 0;
3635 }
3636 *pbRetryLimit = 1;
3637 return SQLITE_OK;
3638 }
dan115305f2016-03-05 17:29:08 +00003639 }
3640 }
3641
3642 pNew->nLTerm = mxTerm+1;
drh337679b2018-04-09 15:57:54 +00003643 for(i=0; i<=mxTerm; i++){
3644 if( pNew->aLTerm[i]==0 ){
3645 /* The non-zero argvIdx values must be contiguous. Raise an
3646 ** error if they are not */
3647 sqlite3ErrorMsg(pParse,"%s.xBestIndex malfunction",pSrc->pTab->zName);
3648 testcase( pIdxInfo->needToFreeIdxStr );
3649 return SQLITE_ERROR;
3650 }
3651 }
dan115305f2016-03-05 17:29:08 +00003652 assert( pNew->nLTerm<=pNew->nLSlot );
3653 pNew->u.vtab.idxNum = pIdxInfo->idxNum;
3654 pNew->u.vtab.needFree = pIdxInfo->needToFreeIdxStr;
3655 pIdxInfo->needToFreeIdxStr = 0;
3656 pNew->u.vtab.idxStr = pIdxInfo->idxStr;
3657 pNew->u.vtab.isOrdered = (i8)(pIdxInfo->orderByConsumed ?
3658 pIdxInfo->nOrderBy : 0);
3659 pNew->rSetup = 0;
3660 pNew->rRun = sqlite3LogEstFromDouble(pIdxInfo->estimatedCost);
3661 pNew->nOut = sqlite3LogEst(pIdxInfo->estimatedRows);
3662
3663 /* Set the WHERE_ONEROW flag if the xBestIndex() method indicated
3664 ** that the scan will visit at most one row. Clear it otherwise. */
3665 if( pIdxInfo->idxFlags & SQLITE_INDEX_SCAN_UNIQUE ){
3666 pNew->wsFlags |= WHERE_ONEROW;
3667 }else{
3668 pNew->wsFlags &= ~WHERE_ONEROW;
3669 }
drhbacbbcc2016-03-09 12:35:18 +00003670 rc = whereLoopInsert(pBuilder, pNew);
dan115305f2016-03-05 17:29:08 +00003671 if( pNew->u.vtab.needFree ){
3672 sqlite3_free(pNew->u.vtab.idxStr);
3673 pNew->u.vtab.needFree = 0;
3674 }
drh3349d9b2016-03-08 23:18:51 +00003675 WHERETRACE(0xffff, (" bIn=%d prereqIn=%04llx prereqOut=%04llx\n",
3676 *pbIn, (sqlite3_uint64)mPrereq,
3677 (sqlite3_uint64)(pNew->prereq & ~mPrereq)));
dan115305f2016-03-05 17:29:08 +00003678
drhbacbbcc2016-03-09 12:35:18 +00003679 return rc;
dan115305f2016-03-05 17:29:08 +00003680}
3681
dane01b9282017-04-15 14:30:01 +00003682/*
drhb6592f62021-12-17 23:56:43 +00003683** Return the collating sequence for a constraint passed into xBestIndex.
3684**
3685** pIdxInfo must be an sqlite3_index_info structure passed into xBestIndex.
3686** This routine depends on there being a HiddenIndexInfo structure immediately
3687** following the sqlite3_index_info structure.
3688**
3689** Return a pointer to the collation name:
3690**
3691** 1. If there is an explicit COLLATE operator on the constaint, return it.
3692**
3693** 2. Else, if the column has an alternative collation, return that.
3694**
3695** 3. Otherwise, return "BINARY".
dane01b9282017-04-15 14:30:01 +00003696*/
drhefc88d02017-12-22 00:52:50 +00003697const char *sqlite3_vtab_collation(sqlite3_index_info *pIdxInfo, int iCons){
3698 HiddenIndexInfo *pHidden = (HiddenIndexInfo*)&pIdxInfo[1];
dan0824ccf2017-04-14 19:41:37 +00003699 const char *zRet = 0;
drhefc88d02017-12-22 00:52:50 +00003700 if( iCons>=0 && iCons<pIdxInfo->nConstraint ){
dane42e1bc2017-12-19 18:56:28 +00003701 CollSeq *pC = 0;
drhefc88d02017-12-22 00:52:50 +00003702 int iTerm = pIdxInfo->aConstraint[iCons].iTermOffset;
3703 Expr *pX = pHidden->pWC->a[iTerm].pExpr;
dane42e1bc2017-12-19 18:56:28 +00003704 if( pX->pLeft ){
drh898c5272019-10-22 00:03:41 +00003705 pC = sqlite3ExprCompareCollSeq(pHidden->pParse, pX);
dane42e1bc2017-12-19 18:56:28 +00003706 }
drh7810ab62018-07-27 17:51:20 +00003707 zRet = (pC ? pC->zName : sqlite3StrBINARY);
dan0824ccf2017-04-14 19:41:37 +00003708 }
3709 return zRet;
3710}
3711
drhf1b5f5b2013-05-02 00:15:01 +00003712/*
drh0fe7e7d2022-02-01 14:58:29 +00003713** Return true if constraint iCons is really an IN(...) constraint, or
3714** false otherwise. If iCons is an IN(...) constraint, set (if bHandle!=0)
3715** or clear (if bHandle==0) the flag to handle it using an iterator.
3716*/
3717int sqlite3_vtab_in(sqlite3_index_info *pIdxInfo, int iCons, int bHandle){
3718 HiddenIndexInfo *pHidden = (HiddenIndexInfo*)&pIdxInfo[1];
3719 u32 m = SMASKBIT32(iCons);
3720 if( m & pHidden->mIn ){
3721 if( bHandle==0 ){
3722 pHidden->mHandleIn &= ~m;
drhb30298d2022-02-01 21:59:43 +00003723 }else if( bHandle>0 ){
drh0fe7e7d2022-02-01 14:58:29 +00003724 pHidden->mHandleIn |= m;
3725 }
3726 return 1;
3727 }
3728 return 0;
3729}
3730
3731/*
drh82801a52022-01-20 17:10:59 +00003732** This interface is callable from within the xBestIndex callback only.
3733**
3734** If possible, set (*ppVal) to point to an object containing the value
3735** on the right-hand-side of constraint iCons.
3736*/
3737int sqlite3_vtab_rhs_value(
3738 sqlite3_index_info *pIdxInfo, /* Copy of first argument to xBestIndex */
3739 int iCons, /* Constraint for which RHS is wanted */
3740 sqlite3_value **ppVal /* Write value extracted here */
3741){
3742 HiddenIndexInfo *pH = (HiddenIndexInfo*)&pIdxInfo[1];
3743 sqlite3_value *pVal = 0;
3744 int rc = SQLITE_OK;
3745 if( iCons<0 || iCons>=pIdxInfo->nConstraint ){
drh991d1082022-01-21 00:38:49 +00003746 rc = SQLITE_MISUSE; /* EV: R-30545-25046 */
drh82801a52022-01-20 17:10:59 +00003747 }else{
3748 if( pH->aRhs[iCons]==0 ){
3749 WhereTerm *pTerm = &pH->pWC->a[pIdxInfo->aConstraint[iCons].iTermOffset];
3750 rc = sqlite3ValueFromExpr(
3751 pH->pParse->db, pTerm->pExpr->pRight, ENC(pH->pParse->db),
3752 SQLITE_AFF_BLOB, &pH->aRhs[iCons]
3753 );
drh991d1082022-01-21 00:38:49 +00003754 testcase( rc!=SQLITE_OK );
drh82801a52022-01-20 17:10:59 +00003755 }
3756 pVal = pH->aRhs[iCons];
3757 }
3758 *ppVal = pVal;
drh991d1082022-01-21 00:38:49 +00003759
drha1c81512022-01-21 18:57:30 +00003760 if( rc==SQLITE_OK && pVal==0 ){ /* IMP: R-19933-32160 */
drh991d1082022-01-21 00:38:49 +00003761 rc = SQLITE_NOTFOUND; /* IMP: R-36424-56542 */
3762 }
3763
drh82801a52022-01-20 17:10:59 +00003764 return rc;
3765}
3766
drhec778d22022-01-22 00:18:01 +00003767/*
3768** Return true if ORDER BY clause may be handled as DISTINCT.
3769*/
3770int sqlite3_vtab_distinct(sqlite3_index_info *pIdxInfo){
3771 HiddenIndexInfo *pHidden = (HiddenIndexInfo*)&pIdxInfo[1];
3772 assert( pHidden->eDistinct==0
3773 || pHidden->eDistinct==1
3774 || pHidden->eDistinct==2 );
3775 return pHidden->eDistinct;
3776}
3777
drh46dc6312022-03-09 14:22:28 +00003778#if (defined(SQLITE_ENABLE_DBPAGE_VTAB) || defined(SQLITE_TEST)) \
3779 && !defined(SQLITE_OMIT_VIRTUALTABLE)
3780/*
3781** Cause the prepared statement that is associated with a call to
3782** xBestIndex to open write transactions on all attached schemas.
3783** This is used by the (built-in) sqlite_dbpage virtual table.
3784*/
3785void sqlite3VtabWriteAll(sqlite3_index_info *pIdxInfo){
3786 HiddenIndexInfo *pHidden = (HiddenIndexInfo*)&pIdxInfo[1];
3787 Parse *pParse = pHidden->pParse;
drh6a51e702022-03-10 01:10:28 +00003788 int nDb = pParse->db->nDb;
3789 int i;
3790 for(i=0; i<nDb; i++) sqlite3BeginWriteOperation(pParse, 0, i);
drh46dc6312022-03-09 14:22:28 +00003791}
3792#endif
3793
drh82801a52022-01-20 17:10:59 +00003794/*
drh0823c892013-05-11 00:06:23 +00003795** Add all WhereLoop objects for a table of the join identified by
3796** pBuilder->pNew->iTab. That table is guaranteed to be a virtual table.
dan4f20cd42015-06-08 18:05:54 +00003797**
drh599d5762016-03-08 01:11:51 +00003798** If there are no LEFT or CROSS JOIN joins in the query, both mPrereq and
3799** mUnusable are set to 0. Otherwise, mPrereq is a mask of all FROM clause
dan4f20cd42015-06-08 18:05:54 +00003800** entries that occur before the virtual table in the FROM clause and are
3801** separated from it by at least one LEFT or CROSS JOIN. Similarly, the
3802** mUnusable mask contains all FROM clause entries that occur after the
3803** virtual table and are separated from it by at least one LEFT or
3804** CROSS JOIN.
3805**
3806** For example, if the query were:
3807**
3808** ... FROM t1, t2 LEFT JOIN t3, t4, vt CROSS JOIN t5, t6;
3809**
drh599d5762016-03-08 01:11:51 +00003810** then mPrereq corresponds to (t1, t2) and mUnusable to (t5, t6).
dan4f20cd42015-06-08 18:05:54 +00003811**
drh599d5762016-03-08 01:11:51 +00003812** All the tables in mPrereq must be scanned before the current virtual
dan4f20cd42015-06-08 18:05:54 +00003813** table. So any terms for which all prerequisites are satisfied by
drh599d5762016-03-08 01:11:51 +00003814** mPrereq may be specified as "usable" in all calls to xBestIndex.
dan4f20cd42015-06-08 18:05:54 +00003815** Conversely, all tables in mUnusable must be scanned after the current
3816** virtual table, so any terms for which the prerequisites overlap with
3817** mUnusable should always be configured as "not-usable" for xBestIndex.
drhf1b5f5b2013-05-02 00:15:01 +00003818*/
drh5346e952013-05-08 14:14:26 +00003819static int whereLoopAddVirtual(
danff4b23b2013-11-12 12:17:16 +00003820 WhereLoopBuilder *pBuilder, /* WHERE clause information */
drh599d5762016-03-08 01:11:51 +00003821 Bitmask mPrereq, /* Tables that must be scanned before this one */
dan4f20cd42015-06-08 18:05:54 +00003822 Bitmask mUnusable /* Tables that must be scanned after this one */
drhf1b5f5b2013-05-02 00:15:01 +00003823){
dan115305f2016-03-05 17:29:08 +00003824 int rc = SQLITE_OK; /* Return code */
drh70d18342013-06-06 19:16:33 +00003825 WhereInfo *pWInfo; /* WHERE analysis context */
drh5346e952013-05-08 14:14:26 +00003826 Parse *pParse; /* The parsing context */
3827 WhereClause *pWC; /* The WHERE clause */
drh76012942021-02-21 21:04:54 +00003828 SrcItem *pSrc; /* The FROM clause term to search */
dan115305f2016-03-05 17:29:08 +00003829 sqlite3_index_info *p; /* Object to pass to xBestIndex() */
3830 int nConstraint; /* Number of constraints in p */
3831 int bIn; /* True if plan uses IN(...) operator */
drh5346e952013-05-08 14:14:26 +00003832 WhereLoop *pNew;
dan115305f2016-03-05 17:29:08 +00003833 Bitmask mBest; /* Tables used by best possible plan */
dan6256c1c2016-08-08 20:15:41 +00003834 u16 mNoOmit;
drh895bab32022-01-27 16:14:50 +00003835 int bRetry = 0; /* True to retry with LIMIT/OFFSET disabled */
drh5346e952013-05-08 14:14:26 +00003836
drh599d5762016-03-08 01:11:51 +00003837 assert( (mPrereq & mUnusable)==0 );
drh70d18342013-06-06 19:16:33 +00003838 pWInfo = pBuilder->pWInfo;
3839 pParse = pWInfo->pParse;
drh5346e952013-05-08 14:14:26 +00003840 pWC = pBuilder->pWC;
drh5346e952013-05-08 14:14:26 +00003841 pNew = pBuilder->pNew;
drh70d18342013-06-06 19:16:33 +00003842 pSrc = &pWInfo->pTabList->a[pNew->iTab];
dan115305f2016-03-05 17:29:08 +00003843 assert( IsVirtual(pSrc->pTab) );
drhec778d22022-01-22 00:18:01 +00003844 p = allocateIndexInfo(pWInfo, pWC, mUnusable, pSrc, &mNoOmit);
dan115305f2016-03-05 17:29:08 +00003845 if( p==0 ) return SQLITE_NOMEM_BKPT;
drh5346e952013-05-08 14:14:26 +00003846 pNew->rSetup = 0;
3847 pNew->wsFlags = WHERE_VIRTUALTABLE;
drh4efc9292013-06-06 23:02:03 +00003848 pNew->nLTerm = 0;
drh5346e952013-05-08 14:14:26 +00003849 pNew->u.vtab.needFree = 0;
dan115305f2016-03-05 17:29:08 +00003850 nConstraint = p->nConstraint;
3851 if( whereLoopResize(pParse->db, pNew, nConstraint) ){
drh82801a52022-01-20 17:10:59 +00003852 freeIndexInfo(pParse->db, p);
mistachkinfad30392016-02-13 23:43:46 +00003853 return SQLITE_NOMEM_BKPT;
drh7963b0e2013-06-17 21:37:40 +00003854 }
drh5346e952013-05-08 14:14:26 +00003855
dan115305f2016-03-05 17:29:08 +00003856 /* First call xBestIndex() with all constraints usable. */
drh0f1631d2018-04-09 13:58:20 +00003857 WHERETRACE(0x800, ("BEGIN %s.addVirtual()\n", pSrc->pTab->zName));
drh3349d9b2016-03-08 23:18:51 +00003858 WHERETRACE(0x40, (" VirtualOne: all usable\n"));
drh895bab32022-01-27 16:14:50 +00003859 rc = whereLoopAddVirtualOne(
3860 pBuilder, mPrereq, ALLBITS, 0, p, mNoOmit, &bIn, &bRetry
3861 );
3862 if( bRetry ){
3863 assert( rc==SQLITE_OK );
3864 rc = whereLoopAddVirtualOne(
3865 pBuilder, mPrereq, ALLBITS, 0, p, mNoOmit, &bIn, 0
3866 );
3867 }
dan076e0f92015-09-28 15:20:58 +00003868
dan115305f2016-03-05 17:29:08 +00003869 /* If the call to xBestIndex() with all terms enabled produced a plan
dan35808432019-03-29 13:17:50 +00003870 ** that does not require any source tables (IOW: a plan with mBest==0)
3871 ** and does not use an IN(...) operator, then there is no point in making
3872 ** any further calls to xBestIndex() since they will all return the same
3873 ** result (if the xBestIndex() implementation is sane). */
3874 if( rc==SQLITE_OK && ((mBest = (pNew->prereq & ~mPrereq))!=0 || bIn) ){
dan115305f2016-03-05 17:29:08 +00003875 int seenZero = 0; /* True if a plan with no prereqs seen */
3876 int seenZeroNoIN = 0; /* Plan with no prereqs and no IN(...) seen */
3877 Bitmask mPrev = 0;
3878 Bitmask mBestNoIn = 0;
3879
3880 /* If the plan produced by the earlier call uses an IN(...) term, call
3881 ** xBestIndex again, this time with IN(...) terms disabled. */
drh3349d9b2016-03-08 23:18:51 +00003882 if( bIn ){
3883 WHERETRACE(0x40, (" VirtualOne: all usable w/o IN\n"));
dan6256c1c2016-08-08 20:15:41 +00003884 rc = whereLoopAddVirtualOne(
drh895bab32022-01-27 16:14:50 +00003885 pBuilder, mPrereq, ALLBITS, WO_IN, p, mNoOmit, &bIn, 0);
drh6de32e72016-03-08 02:59:33 +00003886 assert( bIn==0 );
drh599d5762016-03-08 01:11:51 +00003887 mBestNoIn = pNew->prereq & ~mPrereq;
dan115305f2016-03-05 17:29:08 +00003888 if( mBestNoIn==0 ){
3889 seenZero = 1;
drh6de32e72016-03-08 02:59:33 +00003890 seenZeroNoIN = 1;
drh5346e952013-05-08 14:14:26 +00003891 }
3892 }
drh5346e952013-05-08 14:14:26 +00003893
drh599d5762016-03-08 01:11:51 +00003894 /* Call xBestIndex once for each distinct value of (prereqRight & ~mPrereq)
dan115305f2016-03-05 17:29:08 +00003895 ** in the set of terms that apply to the current virtual table. */
3896 while( rc==SQLITE_OK ){
3897 int i;
drh8426e362016-03-08 01:32:30 +00003898 Bitmask mNext = ALLBITS;
dan115305f2016-03-05 17:29:08 +00003899 assert( mNext>0 );
3900 for(i=0; i<nConstraint; i++){
3901 Bitmask mThis = (
drh599d5762016-03-08 01:11:51 +00003902 pWC->a[p->aConstraint[i].iTermOffset].prereqRight & ~mPrereq
dan115305f2016-03-05 17:29:08 +00003903 );
3904 if( mThis>mPrev && mThis<mNext ) mNext = mThis;
3905 }
3906 mPrev = mNext;
drh8426e362016-03-08 01:32:30 +00003907 if( mNext==ALLBITS ) break;
dan115305f2016-03-05 17:29:08 +00003908 if( mNext==mBest || mNext==mBestNoIn ) continue;
drh3349d9b2016-03-08 23:18:51 +00003909 WHERETRACE(0x40, (" VirtualOne: mPrev=%04llx mNext=%04llx\n",
3910 (sqlite3_uint64)mPrev, (sqlite3_uint64)mNext));
dan6256c1c2016-08-08 20:15:41 +00003911 rc = whereLoopAddVirtualOne(
drh895bab32022-01-27 16:14:50 +00003912 pBuilder, mPrereq, mNext|mPrereq, 0, p, mNoOmit, &bIn, 0);
drh599d5762016-03-08 01:11:51 +00003913 if( pNew->prereq==mPrereq ){
dan115305f2016-03-05 17:29:08 +00003914 seenZero = 1;
3915 if( bIn==0 ) seenZeroNoIN = 1;
3916 }
3917 }
3918
3919 /* If the calls to xBestIndex() in the above loop did not find a plan
3920 ** that requires no source tables at all (i.e. one guaranteed to be
3921 ** usable), make a call here with all source tables disabled */
3922 if( rc==SQLITE_OK && seenZero==0 ){
drh3349d9b2016-03-08 23:18:51 +00003923 WHERETRACE(0x40, (" VirtualOne: all disabled\n"));
dan6256c1c2016-08-08 20:15:41 +00003924 rc = whereLoopAddVirtualOne(
drh895bab32022-01-27 16:14:50 +00003925 pBuilder, mPrereq, mPrereq, 0, p, mNoOmit, &bIn, 0);
dan115305f2016-03-05 17:29:08 +00003926 if( bIn==0 ) seenZeroNoIN = 1;
3927 }
3928
3929 /* If the calls to xBestIndex() have so far failed to find a plan
3930 ** that requires no source tables at all and does not use an IN(...)
3931 ** operator, make a final call to obtain one here. */
3932 if( rc==SQLITE_OK && seenZeroNoIN==0 ){
drh3349d9b2016-03-08 23:18:51 +00003933 WHERETRACE(0x40, (" VirtualOne: all disabled and w/o IN\n"));
dan6256c1c2016-08-08 20:15:41 +00003934 rc = whereLoopAddVirtualOne(
drh895bab32022-01-27 16:14:50 +00003935 pBuilder, mPrereq, mPrereq, WO_IN, p, mNoOmit, &bIn, 0);
dan115305f2016-03-05 17:29:08 +00003936 }
3937 }
3938
3939 if( p->needToFreeIdxStr ) sqlite3_free(p->idxStr);
drh82801a52022-01-20 17:10:59 +00003940 freeIndexInfo(pParse->db, p);
drh0f1631d2018-04-09 13:58:20 +00003941 WHERETRACE(0x800, ("END %s.addVirtual(), rc=%d\n", pSrc->pTab->zName, rc));
drh5346e952013-05-08 14:14:26 +00003942 return rc;
drhf1b5f5b2013-05-02 00:15:01 +00003943}
drh8636e9c2013-06-11 01:50:08 +00003944#endif /* SQLITE_OMIT_VIRTUALTABLE */
drhf1b5f5b2013-05-02 00:15:01 +00003945
3946/*
drhcf8fa7a2013-05-10 20:26:22 +00003947** Add WhereLoop entries to handle OR terms. This works for either
3948** btrees or virtual tables.
3949*/
dan4f20cd42015-06-08 18:05:54 +00003950static int whereLoopAddOr(
3951 WhereLoopBuilder *pBuilder,
drh599d5762016-03-08 01:11:51 +00003952 Bitmask mPrereq,
dan4f20cd42015-06-08 18:05:54 +00003953 Bitmask mUnusable
3954){
drh70d18342013-06-06 19:16:33 +00003955 WhereInfo *pWInfo = pBuilder->pWInfo;
drhcf8fa7a2013-05-10 20:26:22 +00003956 WhereClause *pWC;
3957 WhereLoop *pNew;
3958 WhereTerm *pTerm, *pWCEnd;
3959 int rc = SQLITE_OK;
3960 int iCur;
3961 WhereClause tempWC;
3962 WhereLoopBuilder sSubBuild;
dan5da73e12014-04-30 18:11:55 +00003963 WhereOrSet sSum, sCur;
drh76012942021-02-21 21:04:54 +00003964 SrcItem *pItem;
dan0824ccf2017-04-14 19:41:37 +00003965
drhcf8fa7a2013-05-10 20:26:22 +00003966 pWC = pBuilder->pWC;
drhcf8fa7a2013-05-10 20:26:22 +00003967 pWCEnd = pWC->a + pWC->nTerm;
3968 pNew = pBuilder->pNew;
drh77dfd5b2013-08-19 11:15:48 +00003969 memset(&sSum, 0, sizeof(sSum));
drh186ad8c2013-10-08 18:40:37 +00003970 pItem = pWInfo->pTabList->a + pNew->iTab;
3971 iCur = pItem->iCursor;
drhcf8fa7a2013-05-10 20:26:22 +00003972
3973 for(pTerm=pWC->a; pTerm<pWCEnd && rc==SQLITE_OK; pTerm++){
3974 if( (pTerm->eOperator & WO_OR)!=0
3975 && (pTerm->u.pOrInfo->indexable & pNew->maskSelf)!=0
3976 ){
3977 WhereClause * const pOrWC = &pTerm->u.pOrInfo->wc;
3978 WhereTerm * const pOrWCEnd = &pOrWC->a[pOrWC->nTerm];
3979 WhereTerm *pOrTerm;
drhaa32e3c2013-07-16 21:31:23 +00003980 int once = 1;
3981 int i, j;
dan0824ccf2017-04-14 19:41:37 +00003982
drh783dece2013-06-05 17:53:43 +00003983 sSubBuild = *pBuilder;
drhaa32e3c2013-07-16 21:31:23 +00003984 sSubBuild.pOrSet = &sCur;
drhcf8fa7a2013-05-10 20:26:22 +00003985
drh0a99ba32014-09-30 17:03:35 +00003986 WHERETRACE(0x200, ("Begin processing OR-clause %p\n", pTerm));
drhc7f0d222013-06-19 03:27:12 +00003987 for(pOrTerm=pOrWC->a; pOrTerm<pOrWCEnd; pOrTerm++){
drh783dece2013-06-05 17:53:43 +00003988 if( (pOrTerm->eOperator & WO_AND)!=0 ){
drhcf8fa7a2013-05-10 20:26:22 +00003989 sSubBuild.pWC = &pOrTerm->u.pAndInfo->wc;
3990 }else if( pOrTerm->leftCursor==iCur ){
drh70d18342013-06-06 19:16:33 +00003991 tempWC.pWInfo = pWC->pWInfo;
drh783dece2013-06-05 17:53:43 +00003992 tempWC.pOuter = pWC;
3993 tempWC.op = TK_AND;
drh783dece2013-06-05 17:53:43 +00003994 tempWC.nTerm = 1;
drh132f96f2021-12-08 16:07:22 +00003995 tempWC.nBase = 1;
drhcf8fa7a2013-05-10 20:26:22 +00003996 tempWC.a = pOrTerm;
3997 sSubBuild.pWC = &tempWC;
3998 }else{
3999 continue;
4000 }
drhaa32e3c2013-07-16 21:31:23 +00004001 sCur.n = 0;
drh52651492014-09-30 14:14:19 +00004002#ifdef WHERETRACE_ENABLED
drh0a99ba32014-09-30 17:03:35 +00004003 WHERETRACE(0x200, ("OR-term %d of %p has %d subterms:\n",
4004 (int)(pOrTerm-pOrWC->a), pTerm, sSubBuild.pWC->nTerm));
4005 if( sqlite3WhereTrace & 0x400 ){
drhc84a4022016-05-27 12:30:20 +00004006 sqlite3WhereClausePrint(sSubBuild.pWC);
drh52651492014-09-30 14:14:19 +00004007 }
4008#endif
drh8636e9c2013-06-11 01:50:08 +00004009#ifndef SQLITE_OMIT_VIRTUALTABLE
drhcf8fa7a2013-05-10 20:26:22 +00004010 if( IsVirtual(pItem->pTab) ){
drh599d5762016-03-08 01:11:51 +00004011 rc = whereLoopAddVirtual(&sSubBuild, mPrereq, mUnusable);
drh8636e9c2013-06-11 01:50:08 +00004012 }else
4013#endif
4014 {
drh599d5762016-03-08 01:11:51 +00004015 rc = whereLoopAddBtree(&sSubBuild, mPrereq);
drhcf8fa7a2013-05-10 20:26:22 +00004016 }
drh36be4c42014-09-30 17:31:23 +00004017 if( rc==SQLITE_OK ){
drh599d5762016-03-08 01:11:51 +00004018 rc = whereLoopAddOr(&sSubBuild, mPrereq, mUnusable);
drh36be4c42014-09-30 17:31:23 +00004019 }
drh19c16c82021-04-16 12:13:39 +00004020 assert( rc==SQLITE_OK || rc==SQLITE_DONE || sCur.n==0
4021 || rc==SQLITE_NOMEM );
4022 testcase( rc==SQLITE_NOMEM && sCur.n>0 );
drh9a1f2e42019-12-28 03:55:50 +00004023 testcase( rc==SQLITE_DONE );
drhaa32e3c2013-07-16 21:31:23 +00004024 if( sCur.n==0 ){
4025 sSum.n = 0;
4026 break;
4027 }else if( once ){
4028 whereOrMove(&sSum, &sCur);
4029 once = 0;
4030 }else{
dan5da73e12014-04-30 18:11:55 +00004031 WhereOrSet sPrev;
drhaa32e3c2013-07-16 21:31:23 +00004032 whereOrMove(&sPrev, &sSum);
4033 sSum.n = 0;
4034 for(i=0; i<sPrev.n; i++){
4035 for(j=0; j<sCur.n; j++){
4036 whereOrInsert(&sSum, sPrev.a[i].prereq | sCur.a[j].prereq,
drhbf539c42013-10-05 18:16:02 +00004037 sqlite3LogEstAdd(sPrev.a[i].rRun, sCur.a[j].rRun),
4038 sqlite3LogEstAdd(sPrev.a[i].nOut, sCur.a[j].nOut));
drhaa32e3c2013-07-16 21:31:23 +00004039 }
4040 }
4041 }
drhcf8fa7a2013-05-10 20:26:22 +00004042 }
drhaa32e3c2013-07-16 21:31:23 +00004043 pNew->nLTerm = 1;
4044 pNew->aLTerm[0] = pTerm;
4045 pNew->wsFlags = WHERE_MULTI_OR;
4046 pNew->rSetup = 0;
4047 pNew->iSortIdx = 0;
4048 memset(&pNew->u, 0, sizeof(pNew->u));
4049 for(i=0; rc==SQLITE_OK && i<sSum.n; i++){
dan5da73e12014-04-30 18:11:55 +00004050 /* TUNING: Currently sSum.a[i].rRun is set to the sum of the costs
4051 ** of all sub-scans required by the OR-scan. However, due to rounding
4052 ** errors, it may be that the cost of the OR-scan is equal to its
4053 ** most expensive sub-scan. Add the smallest possible penalty
4054 ** (equivalent to multiplying the cost by 1.07) to ensure that
4055 ** this does not happen. Otherwise, for WHERE clauses such as the
4056 ** following where there is an index on "y":
4057 **
4058 ** WHERE likelihood(x=?, 0.99) OR y=?
4059 **
4060 ** the planner may elect to "OR" together a full-table scan and an
4061 ** index lookup. And other similarly odd results. */
4062 pNew->rRun = sSum.a[i].rRun + 1;
drhaa32e3c2013-07-16 21:31:23 +00004063 pNew->nOut = sSum.a[i].nOut;
4064 pNew->prereq = sSum.a[i].prereq;
drhfd5874d2013-06-12 14:52:39 +00004065 rc = whereLoopInsert(pBuilder, pNew);
4066 }
drh0a99ba32014-09-30 17:03:35 +00004067 WHERETRACE(0x200, ("End processing OR-clause %p\n", pTerm));
drhcf8fa7a2013-05-10 20:26:22 +00004068 }
4069 }
4070 return rc;
4071}
4072
4073/*
drhf1b5f5b2013-05-02 00:15:01 +00004074** Add all WhereLoop objects for all tables
4075*/
drh5346e952013-05-08 14:14:26 +00004076static int whereLoopAddAll(WhereLoopBuilder *pBuilder){
drh70d18342013-06-06 19:16:33 +00004077 WhereInfo *pWInfo = pBuilder->pWInfo;
drh599d5762016-03-08 01:11:51 +00004078 Bitmask mPrereq = 0;
drhf1b5f5b2013-05-02 00:15:01 +00004079 Bitmask mPrior = 0;
4080 int iTab;
drh70d18342013-06-06 19:16:33 +00004081 SrcList *pTabList = pWInfo->pTabList;
drh76012942021-02-21 21:04:54 +00004082 SrcItem *pItem;
4083 SrcItem *pEnd = &pTabList->a[pWInfo->nLevel];
drh70d18342013-06-06 19:16:33 +00004084 sqlite3 *db = pWInfo->pParse->db;
drh5346e952013-05-08 14:14:26 +00004085 int rc = SQLITE_OK;
drhb8a8e8a2013-06-10 19:12:39 +00004086 WhereLoop *pNew;
drhf1b5f5b2013-05-02 00:15:01 +00004087
4088 /* Loop over the tables in the join, from left to right */
drhb8a8e8a2013-06-10 19:12:39 +00004089 pNew = pBuilder->pNew;
drha2014152013-06-07 00:29:23 +00004090 whereLoopInit(pNew);
drh6fb5d352018-09-24 12:37:01 +00004091 pBuilder->iPlanLimit = SQLITE_QUERY_PLANNER_LIMIT;
dan4f20cd42015-06-08 18:05:54 +00004092 for(iTab=0, pItem=pTabList->a; pItem<pEnd; iTab++, pItem++){
4093 Bitmask mUnusable = 0;
drhb2a90f02013-05-10 03:30:49 +00004094 pNew->iTab = iTab;
drh6fb5d352018-09-24 12:37:01 +00004095 pBuilder->iPlanLimit += SQLITE_QUERY_PLANNER_LIMIT_INCR;
drh6f82e852015-06-06 20:12:09 +00004096 pNew->maskSelf = sqlite3WhereGetMask(&pWInfo->sMaskSet, pItem->iCursor);
drhb1c993f2020-07-16 18:55:58 +00004097 if( (pItem->fg.jointype & (JT_LEFT|JT_CROSS))!=0 ){
dan4f20cd42015-06-08 18:05:54 +00004098 /* This condition is true when pItem is the FROM clause term on the
4099 ** right-hand-side of a LEFT or CROSS JOIN. */
drh599d5762016-03-08 01:11:51 +00004100 mPrereq = mPrior;
drhb1c993f2020-07-16 18:55:58 +00004101 }else{
4102 mPrereq = 0;
drhf1b5f5b2013-05-02 00:15:01 +00004103 }
drhec593592016-06-23 12:35:04 +00004104#ifndef SQLITE_OMIT_VIRTUALTABLE
drhb2a90f02013-05-10 03:30:49 +00004105 if( IsVirtual(pItem->pTab) ){
drh76012942021-02-21 21:04:54 +00004106 SrcItem *p;
dan4f20cd42015-06-08 18:05:54 +00004107 for(p=&pItem[1]; p<pEnd; p++){
drh8a48b9c2015-08-19 15:20:00 +00004108 if( mUnusable || (p->fg.jointype & (JT_LEFT|JT_CROSS)) ){
dan4f20cd42015-06-08 18:05:54 +00004109 mUnusable |= sqlite3WhereGetMask(&pWInfo->sMaskSet, p->iCursor);
4110 }
4111 }
drh599d5762016-03-08 01:11:51 +00004112 rc = whereLoopAddVirtual(pBuilder, mPrereq, mUnusable);
drhec593592016-06-23 12:35:04 +00004113 }else
4114#endif /* SQLITE_OMIT_VIRTUALTABLE */
4115 {
drh599d5762016-03-08 01:11:51 +00004116 rc = whereLoopAddBtree(pBuilder, mPrereq);
drhb2a90f02013-05-10 03:30:49 +00004117 }
drhda230bd2018-06-09 00:09:58 +00004118 if( rc==SQLITE_OK && pBuilder->pWC->hasOr ){
drh599d5762016-03-08 01:11:51 +00004119 rc = whereLoopAddOr(pBuilder, mPrereq, mUnusable);
drhb2a90f02013-05-10 03:30:49 +00004120 }
drhb2a90f02013-05-10 03:30:49 +00004121 mPrior |= pNew->maskSelf;
drhfc9098a2018-09-21 18:43:51 +00004122 if( rc || db->mallocFailed ){
4123 if( rc==SQLITE_DONE ){
4124 /* We hit the query planner search limit set by iPlanLimit */
drh7ebb6052018-09-24 10:47:33 +00004125 sqlite3_log(SQLITE_WARNING, "abbreviated query algorithm search");
drhfc9098a2018-09-21 18:43:51 +00004126 rc = SQLITE_OK;
4127 }else{
4128 break;
4129 }
4130 }
drhf1b5f5b2013-05-02 00:15:01 +00004131 }
dan4f20cd42015-06-08 18:05:54 +00004132
drha2014152013-06-07 00:29:23 +00004133 whereLoopClear(db, pNew);
drh5346e952013-05-08 14:14:26 +00004134 return rc;
drhf1b5f5b2013-05-02 00:15:01 +00004135}
4136
drha18f3d22013-05-08 03:05:41 +00004137/*
drhc04ea802017-04-13 19:48:29 +00004138** Examine a WherePath (with the addition of the extra WhereLoop of the 6th
drh319f6772013-05-14 15:31:07 +00004139** parameters) to see if it outputs rows in the requested ORDER BY
drh0401ace2014-03-18 15:30:27 +00004140** (or GROUP BY) without requiring a separate sort operation. Return N:
drh319f6772013-05-14 15:31:07 +00004141**
drh0401ace2014-03-18 15:30:27 +00004142** N>0: N terms of the ORDER BY clause are satisfied
4143** N==0: No terms of the ORDER BY clause are satisfied
4144** N<0: Unknown yet how many terms of ORDER BY might be satisfied.
drh319f6772013-05-14 15:31:07 +00004145**
drh94433422013-07-01 11:05:50 +00004146** Note that processing for WHERE_GROUPBY and WHERE_DISTINCTBY is not as
4147** strict. With GROUP BY and DISTINCT the only requirement is that
4148** equivalent rows appear immediately adjacent to one another. GROUP BY
dan374cd782014-04-21 13:21:56 +00004149** and DISTINCT do not require rows to appear in any particular order as long
peter.d.reid60ec9142014-09-06 16:39:46 +00004150** as equivalent rows are grouped together. Thus for GROUP BY and DISTINCT
drh94433422013-07-01 11:05:50 +00004151** the pOrderBy terms can be matched in any order. With ORDER BY, the
4152** pOrderBy terms must be matched in strict left-to-right order.
drh6b7157b2013-05-10 02:00:35 +00004153*/
drh0401ace2014-03-18 15:30:27 +00004154static i8 wherePathSatisfiesOrderBy(
drh6b7157b2013-05-10 02:00:35 +00004155 WhereInfo *pWInfo, /* The WHERE clause */
drh4f402f22013-06-11 18:59:38 +00004156 ExprList *pOrderBy, /* ORDER BY or GROUP BY or DISTINCT clause to check */
drh6b7157b2013-05-10 02:00:35 +00004157 WherePath *pPath, /* The WherePath to check */
drhd711e522016-05-19 22:40:04 +00004158 u16 wctrlFlags, /* WHERE_GROUPBY or _DISTINCTBY or _ORDERBY_LIMIT */
drh4f402f22013-06-11 18:59:38 +00004159 u16 nLoop, /* Number of entries in pPath->aLoop[] */
drh319f6772013-05-14 15:31:07 +00004160 WhereLoop *pLast, /* Add this WhereLoop to the end of pPath->aLoop[] */
drh4f402f22013-06-11 18:59:38 +00004161 Bitmask *pRevMask /* OUT: Mask of WhereLoops to run in reverse order */
drh6b7157b2013-05-10 02:00:35 +00004162){
drh88da6442013-05-27 17:59:37 +00004163 u8 revSet; /* True if rev is known */
4164 u8 rev; /* Composite sort order */
4165 u8 revIdx; /* Index sort order */
drhe353ee32013-06-04 23:40:53 +00004166 u8 isOrderDistinct; /* All prior WhereLoops are order-distinct */
4167 u8 distinctColumns; /* True if the loop has UNIQUE NOT NULL columns */
4168 u8 isMatch; /* iColumn matches a term of the ORDER BY clause */
drhd711e522016-05-19 22:40:04 +00004169 u16 eqOpMask; /* Allowed equality operators */
drh416846a2013-11-06 12:56:04 +00004170 u16 nKeyCol; /* Number of key columns in pIndex */
4171 u16 nColumn; /* Total number of ordered columns in the index */
drh7699d1c2013-06-04 12:42:29 +00004172 u16 nOrderBy; /* Number terms in the ORDER BY clause */
4173 int iLoop; /* Index of WhereLoop in pPath being processed */
4174 int i, j; /* Loop counters */
4175 int iCur; /* Cursor number for current WhereLoop */
4176 int iColumn; /* A column number within table iCur */
drhe8ae5832013-06-19 13:32:46 +00004177 WhereLoop *pLoop = 0; /* Current WhereLoop being processed. */
drh7699d1c2013-06-04 12:42:29 +00004178 WhereTerm *pTerm; /* A single term of the WHERE clause */
4179 Expr *pOBExpr; /* An expression from the ORDER BY clause */
4180 CollSeq *pColl; /* COLLATE function from an ORDER BY clause term */
4181 Index *pIndex; /* The index associated with pLoop */
4182 sqlite3 *db = pWInfo->pParse->db; /* Database connection */
4183 Bitmask obSat = 0; /* Mask of ORDER BY terms satisfied so far */
4184 Bitmask obDone; /* Mask of all ORDER BY terms */
drhe353ee32013-06-04 23:40:53 +00004185 Bitmask orderDistinctMask; /* Mask of all well-ordered loops */
drhb8916be2013-06-14 02:51:48 +00004186 Bitmask ready; /* Mask of inner loops */
drh319f6772013-05-14 15:31:07 +00004187
4188 /*
drh7699d1c2013-06-04 12:42:29 +00004189 ** We say the WhereLoop is "one-row" if it generates no more than one
4190 ** row of output. A WhereLoop is one-row if all of the following are true:
drh319f6772013-05-14 15:31:07 +00004191 ** (a) All index columns match with WHERE_COLUMN_EQ.
4192 ** (b) The index is unique
drh7699d1c2013-06-04 12:42:29 +00004193 ** Any WhereLoop with an WHERE_COLUMN_EQ constraint on the rowid is one-row.
4194 ** Every one-row WhereLoop will have the WHERE_ONEROW bit set in wsFlags.
drh319f6772013-05-14 15:31:07 +00004195 **
drhe353ee32013-06-04 23:40:53 +00004196 ** We say the WhereLoop is "order-distinct" if the set of columns from
4197 ** that WhereLoop that are in the ORDER BY clause are different for every
4198 ** row of the WhereLoop. Every one-row WhereLoop is automatically
4199 ** order-distinct. A WhereLoop that has no columns in the ORDER BY clause
4200 ** is not order-distinct. To be order-distinct is not quite the same as being
4201 ** UNIQUE since a UNIQUE column or index can have multiple rows that
4202 ** are NULL and NULL values are equivalent for the purpose of order-distinct.
4203 ** To be order-distinct, the columns must be UNIQUE and NOT NULL.
4204 **
4205 ** The rowid for a table is always UNIQUE and NOT NULL so whenever the
4206 ** rowid appears in the ORDER BY clause, the corresponding WhereLoop is
4207 ** automatically order-distinct.
drh319f6772013-05-14 15:31:07 +00004208 */
4209
4210 assert( pOrderBy!=0 );
drh7699d1c2013-06-04 12:42:29 +00004211 if( nLoop && OptimizationDisabled(db, SQLITE_OrderByIdxJoin) ) return 0;
drh319f6772013-05-14 15:31:07 +00004212
drh319f6772013-05-14 15:31:07 +00004213 nOrderBy = pOrderBy->nExpr;
drh7963b0e2013-06-17 21:37:40 +00004214 testcase( nOrderBy==BMS-1 );
drhe353ee32013-06-04 23:40:53 +00004215 if( nOrderBy>BMS-1 ) return 0; /* Cannot optimize overly large ORDER BYs */
4216 isOrderDistinct = 1;
drh7699d1c2013-06-04 12:42:29 +00004217 obDone = MASKBIT(nOrderBy)-1;
drhe353ee32013-06-04 23:40:53 +00004218 orderDistinctMask = 0;
drhb8916be2013-06-14 02:51:48 +00004219 ready = 0;
drhd711e522016-05-19 22:40:04 +00004220 eqOpMask = WO_EQ | WO_IS | WO_ISNULL;
drh413b94a2020-07-10 19:09:40 +00004221 if( wctrlFlags & (WHERE_ORDERBY_LIMIT|WHERE_ORDERBY_MAX|WHERE_ORDERBY_MIN) ){
4222 eqOpMask |= WO_IN;
4223 }
drhe353ee32013-06-04 23:40:53 +00004224 for(iLoop=0; isOrderDistinct && obSat<obDone && iLoop<=nLoop; iLoop++){
drhb8916be2013-06-14 02:51:48 +00004225 if( iLoop>0 ) ready |= pLoop->maskSelf;
drhd711e522016-05-19 22:40:04 +00004226 if( iLoop<nLoop ){
4227 pLoop = pPath->aLoop[iLoop];
4228 if( wctrlFlags & WHERE_ORDERBY_LIMIT ) continue;
4229 }else{
4230 pLoop = pLast;
4231 }
drh9dfaf622014-04-25 14:42:17 +00004232 if( pLoop->wsFlags & WHERE_VIRTUALTABLE ){
drhff1032e2019-11-08 20:13:44 +00004233 if( pLoop->u.vtab.isOrdered && (wctrlFlags & WHERE_DISTINCTBY)==0 ){
4234 obSat = obDone;
4235 }
drh9dfaf622014-04-25 14:42:17 +00004236 break;
dana79a0e72019-07-29 14:42:56 +00004237 }else if( wctrlFlags & WHERE_DISTINCTBY ){
4238 pLoop->u.btree.nDistinctCol = 0;
drh9dfaf622014-04-25 14:42:17 +00004239 }
drh319f6772013-05-14 15:31:07 +00004240 iCur = pWInfo->pTabList->a[pLoop->iTab].iCursor;
drhb8916be2013-06-14 02:51:48 +00004241
4242 /* Mark off any ORDER BY term X that is a column in the table of
4243 ** the current loop for which there is term in the WHERE
4244 ** clause of the form X IS NULL or X=? that reference only outer
4245 ** loops.
4246 */
4247 for(i=0; i<nOrderBy; i++){
4248 if( MASKBIT(i) & obSat ) continue;
drh0d950af2019-08-22 16:38:42 +00004249 pOBExpr = sqlite3ExprSkipCollateAndLikely(pOrderBy->a[i].pExpr);
drh235667a2020-11-08 20:44:30 +00004250 if( NEVER(pOBExpr==0) ) continue;
dan4fcb30b2021-03-09 16:06:25 +00004251 if( pOBExpr->op!=TK_COLUMN && pOBExpr->op!=TK_AGG_COLUMN ) continue;
drhb8916be2013-06-14 02:51:48 +00004252 if( pOBExpr->iTable!=iCur ) continue;
drh6f82e852015-06-06 20:12:09 +00004253 pTerm = sqlite3WhereFindTerm(&pWInfo->sWC, iCur, pOBExpr->iColumn,
drhd711e522016-05-19 22:40:04 +00004254 ~ready, eqOpMask, 0);
drhb8916be2013-06-14 02:51:48 +00004255 if( pTerm==0 ) continue;
drh57a8c612016-09-07 01:51:46 +00004256 if( pTerm->eOperator==WO_IN ){
4257 /* IN terms are only valid for sorting in the ORDER BY LIMIT
4258 ** optimization, and then only if they are actually used
4259 ** by the query plan */
drh6e4b1402020-07-14 01:51:53 +00004260 assert( wctrlFlags &
4261 (WHERE_ORDERBY_LIMIT|WHERE_ORDERBY_MIN|WHERE_ORDERBY_MAX) );
drh57a8c612016-09-07 01:51:46 +00004262 for(j=0; j<pLoop->nLTerm && pTerm!=pLoop->aLTerm[j]; j++){}
4263 if( j>=pLoop->nLTerm ) continue;
4264 }
drhe8d0c612015-05-14 01:05:25 +00004265 if( (pTerm->eOperator&(WO_EQ|WO_IS))!=0 && pOBExpr->iColumn>=0 ){
dan41aa4422020-02-12 11:57:35 +00004266 Parse *pParse = pWInfo->pParse;
4267 CollSeq *pColl1 = sqlite3ExprNNCollSeq(pParse, pOrderBy->a[i].pExpr);
4268 CollSeq *pColl2 = sqlite3ExprCompareCollSeq(pParse, pTerm->pExpr);
drh77c9b3c2020-02-13 11:46:47 +00004269 assert( pColl1 );
dan41aa4422020-02-12 11:57:35 +00004270 if( pColl2==0 || sqlite3StrICmp(pColl1->zName, pColl2->zName) ){
drh70efa842017-09-28 01:58:23 +00004271 continue;
4272 }
drhe0cc3c22015-05-13 17:54:08 +00004273 testcase( pTerm->pExpr->op==TK_IS );
drhb8916be2013-06-14 02:51:48 +00004274 }
4275 obSat |= MASKBIT(i);
4276 }
4277
drh7699d1c2013-06-04 12:42:29 +00004278 if( (pLoop->wsFlags & WHERE_ONEROW)==0 ){
4279 if( pLoop->wsFlags & WHERE_IPK ){
4280 pIndex = 0;
drhbbbdc832013-10-22 18:01:40 +00004281 nKeyCol = 0;
drh416846a2013-11-06 12:56:04 +00004282 nColumn = 1;
drh7699d1c2013-06-04 12:42:29 +00004283 }else if( (pIndex = pLoop->u.btree.pIndex)==0 || pIndex->bUnordered ){
drh1b0f0262013-05-30 22:27:09 +00004284 return 0;
drh7699d1c2013-06-04 12:42:29 +00004285 }else{
drhbbbdc832013-10-22 18:01:40 +00004286 nKeyCol = pIndex->nKeyCol;
drh416846a2013-11-06 12:56:04 +00004287 nColumn = pIndex->nColumn;
4288 assert( nColumn==nKeyCol+1 || !HasRowid(pIndex->pTable) );
drh4b92f982015-09-29 17:20:14 +00004289 assert( pIndex->aiColumn[nColumn-1]==XN_ROWID
4290 || !HasRowid(pIndex->pTable));
drh8ed8ddf2021-04-26 14:32:48 +00004291 /* All relevant terms of the index must also be non-NULL in order
4292 ** for isOrderDistinct to be true. So the isOrderDistint value
4293 ** computed here might be a false positive. Corrections will be
4294 ** made at tag-20210426-1 below */
drh2ad07d92019-07-30 14:22:10 +00004295 isOrderDistinct = IsUniqueIndex(pIndex)
4296 && (pLoop->wsFlags & WHERE_SKIPSCAN)==0;
drh1b0f0262013-05-30 22:27:09 +00004297 }
drh7699d1c2013-06-04 12:42:29 +00004298
drh7699d1c2013-06-04 12:42:29 +00004299 /* Loop through all columns of the index and deal with the ones
4300 ** that are not constrained by == or IN.
4301 */
4302 rev = revSet = 0;
drhe353ee32013-06-04 23:40:53 +00004303 distinctColumns = 0;
drh416846a2013-11-06 12:56:04 +00004304 for(j=0; j<nColumn; j++){
dand49fd4e2016-07-27 19:33:04 +00004305 u8 bOnce = 1; /* True to run the ORDER BY search loop */
drh7699d1c2013-06-04 12:42:29 +00004306
dand49fd4e2016-07-27 19:33:04 +00004307 assert( j>=pLoop->u.btree.nEq
4308 || (pLoop->aLTerm[j]==0)==(j<pLoop->nSkip)
4309 );
4310 if( j<pLoop->u.btree.nEq && j>=pLoop->nSkip ){
4311 u16 eOp = pLoop->aLTerm[j]->eOperator;
4312
4313 /* Skip over == and IS and ISNULL terms. (Also skip IN terms when
danf7c92e82019-08-21 14:54:50 +00004314 ** doing WHERE_ORDERBY_LIMIT processing). Except, IS and ISNULL
4315 ** terms imply that the index is not UNIQUE NOT NULL in which case
4316 ** the loop need to be marked as not order-distinct because it can
4317 ** have repeated NULL rows.
dand49fd4e2016-07-27 19:33:04 +00004318 **
4319 ** If the current term is a column of an ((?,?) IN (SELECT...))
4320 ** expression for which the SELECT returns more than one column,
4321 ** check that it is the only column used by this loop. Otherwise,
4322 ** if it is one of two or more, none of the columns can be
danf7c92e82019-08-21 14:54:50 +00004323 ** considered to match an ORDER BY term.
4324 */
dand49fd4e2016-07-27 19:33:04 +00004325 if( (eOp & eqOpMask)!=0 ){
danf7c92e82019-08-21 14:54:50 +00004326 if( eOp & (WO_ISNULL|WO_IS) ){
4327 testcase( eOp & WO_ISNULL );
4328 testcase( eOp & WO_IS );
dand49fd4e2016-07-27 19:33:04 +00004329 testcase( isOrderDistinct );
4330 isOrderDistinct = 0;
4331 }
4332 continue;
drh64bcb8c2016-08-26 03:42:57 +00004333 }else if( ALWAYS(eOp & WO_IN) ){
4334 /* ALWAYS() justification: eOp is an equality operator due to the
4335 ** j<pLoop->u.btree.nEq constraint above. Any equality other
4336 ** than WO_IN is captured by the previous "if". So this one
4337 ** always has to be WO_IN. */
dand49fd4e2016-07-27 19:33:04 +00004338 Expr *pX = pLoop->aLTerm[j]->pExpr;
4339 for(i=j+1; i<pLoop->u.btree.nEq; i++){
4340 if( pLoop->aLTerm[i]->pExpr==pX ){
4341 assert( (pLoop->aLTerm[i]->eOperator & WO_IN) );
4342 bOnce = 0;
4343 break;
4344 }
4345 }
drh7963b0e2013-06-17 21:37:40 +00004346 }
drh7699d1c2013-06-04 12:42:29 +00004347 }
4348
drhe353ee32013-06-04 23:40:53 +00004349 /* Get the column number in the table (iColumn) and sort order
4350 ** (revIdx) for the j-th column of the index.
drh7699d1c2013-06-04 12:42:29 +00004351 */
drh416846a2013-11-06 12:56:04 +00004352 if( pIndex ){
drh7699d1c2013-06-04 12:42:29 +00004353 iColumn = pIndex->aiColumn[j];
dan15750a22019-08-16 21:07:19 +00004354 revIdx = pIndex->aSortOrder[j] & KEYINFO_ORDER_DESC;
drh488e6192017-09-28 00:01:36 +00004355 if( iColumn==pIndex->pTable->iPKey ) iColumn = XN_ROWID;
drhdc3cd4b2013-05-30 23:21:20 +00004356 }else{
drh4b92f982015-09-29 17:20:14 +00004357 iColumn = XN_ROWID;
drh7699d1c2013-06-04 12:42:29 +00004358 revIdx = 0;
drhdc3cd4b2013-05-30 23:21:20 +00004359 }
drh7699d1c2013-06-04 12:42:29 +00004360
4361 /* An unconstrained column that might be NULL means that this
drh8ed8ddf2021-04-26 14:32:48 +00004362 ** WhereLoop is not well-ordered. tag-20210426-1
drh7699d1c2013-06-04 12:42:29 +00004363 */
drh8ed8ddf2021-04-26 14:32:48 +00004364 if( isOrderDistinct ){
4365 if( iColumn>=0
4366 && j>=pLoop->u.btree.nEq
4367 && pIndex->pTable->aCol[iColumn].notNull==0
4368 ){
4369 isOrderDistinct = 0;
4370 }
4371 if( iColumn==XN_EXPR ){
4372 isOrderDistinct = 0;
4373 }
4374 }
drh7699d1c2013-06-04 12:42:29 +00004375
4376 /* Find the ORDER BY term that corresponds to the j-th column
dan374cd782014-04-21 13:21:56 +00004377 ** of the index and mark that ORDER BY term off
drh7699d1c2013-06-04 12:42:29 +00004378 */
drhe353ee32013-06-04 23:40:53 +00004379 isMatch = 0;
drh7699d1c2013-06-04 12:42:29 +00004380 for(i=0; bOnce && i<nOrderBy; i++){
4381 if( MASKBIT(i) & obSat ) continue;
drh0d950af2019-08-22 16:38:42 +00004382 pOBExpr = sqlite3ExprSkipCollateAndLikely(pOrderBy->a[i].pExpr);
drh93ec45d2013-06-17 18:20:48 +00004383 testcase( wctrlFlags & WHERE_GROUPBY );
4384 testcase( wctrlFlags & WHERE_DISTINCTBY );
drh235667a2020-11-08 20:44:30 +00004385 if( NEVER(pOBExpr==0) ) continue;
drh4f402f22013-06-11 18:59:38 +00004386 if( (wctrlFlags & (WHERE_GROUPBY|WHERE_DISTINCTBY))==0 ) bOnce = 0;
drh488e6192017-09-28 00:01:36 +00004387 if( iColumn>=XN_ROWID ){
dan4fcb30b2021-03-09 16:06:25 +00004388 if( pOBExpr->op!=TK_COLUMN && pOBExpr->op!=TK_AGG_COLUMN ) continue;
drhdae26fe2015-09-24 18:47:59 +00004389 if( pOBExpr->iTable!=iCur ) continue;
4390 if( pOBExpr->iColumn!=iColumn ) continue;
4391 }else{
drhdb8e68b2017-09-28 01:09:42 +00004392 Expr *pIdxExpr = pIndex->aColExpr->a[j].pExpr;
4393 if( sqlite3ExprCompareSkip(pOBExpr, pIdxExpr, iCur) ){
drhdae26fe2015-09-24 18:47:59 +00004394 continue;
4395 }
4396 }
dan62f6f512017-08-18 08:29:37 +00004397 if( iColumn!=XN_ROWID ){
drh70efa842017-09-28 01:58:23 +00004398 pColl = sqlite3ExprNNCollSeq(pWInfo->pParse, pOrderBy->a[i].pExpr);
drh7699d1c2013-06-04 12:42:29 +00004399 if( sqlite3StrICmp(pColl->zName, pIndex->azColl[j])!=0 ) continue;
4400 }
dana79a0e72019-07-29 14:42:56 +00004401 if( wctrlFlags & WHERE_DISTINCTBY ){
4402 pLoop->u.btree.nDistinctCol = j+1;
4403 }
drhe353ee32013-06-04 23:40:53 +00004404 isMatch = 1;
drh7699d1c2013-06-04 12:42:29 +00004405 break;
4406 }
drh49290472014-10-11 02:12:58 +00004407 if( isMatch && (wctrlFlags & WHERE_GROUPBY)==0 ){
drh59b8f2e2014-03-22 00:27:14 +00004408 /* Make sure the sort order is compatible in an ORDER BY clause.
4409 ** Sort order is irrelevant for a GROUP BY clause. */
4410 if( revSet ){
dan15750a22019-08-16 21:07:19 +00004411 if( (rev ^ revIdx)!=(pOrderBy->a[i].sortFlags&KEYINFO_ORDER_DESC) ){
4412 isMatch = 0;
4413 }
drh59b8f2e2014-03-22 00:27:14 +00004414 }else{
dan15750a22019-08-16 21:07:19 +00004415 rev = revIdx ^ (pOrderBy->a[i].sortFlags & KEYINFO_ORDER_DESC);
drh59b8f2e2014-03-22 00:27:14 +00004416 if( rev ) *pRevMask |= MASKBIT(iLoop);
4417 revSet = 1;
4418 }
4419 }
dan15750a22019-08-16 21:07:19 +00004420 if( isMatch && (pOrderBy->a[i].sortFlags & KEYINFO_ORDER_BIGNULL) ){
4421 if( j==pLoop->u.btree.nEq ){
4422 pLoop->wsFlags |= WHERE_BIGNULL_SORT;
4423 }else{
4424 isMatch = 0;
4425 }
4426 }
drhe353ee32013-06-04 23:40:53 +00004427 if( isMatch ){
dan90b2fe62016-10-10 14:34:00 +00004428 if( iColumn==XN_ROWID ){
drh7963b0e2013-06-17 21:37:40 +00004429 testcase( distinctColumns==0 );
4430 distinctColumns = 1;
4431 }
drh7699d1c2013-06-04 12:42:29 +00004432 obSat |= MASKBIT(i);
drh7699d1c2013-06-04 12:42:29 +00004433 }else{
4434 /* No match found */
drhbbbdc832013-10-22 18:01:40 +00004435 if( j==0 || j<nKeyCol ){
drh7963b0e2013-06-17 21:37:40 +00004436 testcase( isOrderDistinct!=0 );
4437 isOrderDistinct = 0;
4438 }
drh7699d1c2013-06-04 12:42:29 +00004439 break;
4440 }
4441 } /* end Loop over all index columns */
drh81186b42013-06-18 01:52:41 +00004442 if( distinctColumns ){
4443 testcase( isOrderDistinct==0 );
4444 isOrderDistinct = 1;
4445 }
drh7699d1c2013-06-04 12:42:29 +00004446 } /* end-if not one-row */
4447
4448 /* Mark off any other ORDER BY terms that reference pLoop */
drhe353ee32013-06-04 23:40:53 +00004449 if( isOrderDistinct ){
4450 orderDistinctMask |= pLoop->maskSelf;
drh7699d1c2013-06-04 12:42:29 +00004451 for(i=0; i<nOrderBy; i++){
4452 Expr *p;
drh434a9312014-02-26 02:26:09 +00004453 Bitmask mTerm;
drh7699d1c2013-06-04 12:42:29 +00004454 if( MASKBIT(i) & obSat ) continue;
4455 p = pOrderBy->a[i].pExpr;
drh6c1f4ef2015-06-08 14:23:15 +00004456 mTerm = sqlite3WhereExprUsage(&pWInfo->sMaskSet,p);
drh434a9312014-02-26 02:26:09 +00004457 if( mTerm==0 && !sqlite3ExprIsConstant(p) ) continue;
4458 if( (mTerm&~orderDistinctMask)==0 ){
drh7699d1c2013-06-04 12:42:29 +00004459 obSat |= MASKBIT(i);
4460 }
drh0afb4232013-05-31 13:36:32 +00004461 }
drh319f6772013-05-14 15:31:07 +00004462 }
drhb8916be2013-06-14 02:51:48 +00004463 } /* End the loop over all WhereLoops from outer-most down to inner-most */
drh36ed0342014-03-28 12:56:57 +00004464 if( obSat==obDone ) return (i8)nOrderBy;
drhd2de8612014-03-18 18:59:07 +00004465 if( !isOrderDistinct ){
4466 for(i=nOrderBy-1; i>0; i--){
drhc59ffa82021-10-04 15:08:49 +00004467 Bitmask m = ALWAYS(i<BMS) ? MASKBIT(i) - 1 : 0;
drhd2de8612014-03-18 18:59:07 +00004468 if( (obSat&m)==m ) return i;
4469 }
4470 return 0;
4471 }
drh319f6772013-05-14 15:31:07 +00004472 return -1;
drh6b7157b2013-05-10 02:00:35 +00004473}
4474
dan374cd782014-04-21 13:21:56 +00004475
4476/*
4477** If the WHERE_GROUPBY flag is set in the mask passed to sqlite3WhereBegin(),
4478** the planner assumes that the specified pOrderBy list is actually a GROUP
4479** BY clause - and so any order that groups rows as required satisfies the
4480** request.
4481**
4482** Normally, in this case it is not possible for the caller to determine
4483** whether or not the rows are really being delivered in sorted order, or
4484** just in some other order that provides the required grouping. However,
4485** if the WHERE_SORTBYGROUP flag is also passed to sqlite3WhereBegin(), then
4486** this function may be called on the returned WhereInfo object. It returns
4487** true if the rows really will be sorted in the specified order, or false
4488** otherwise.
4489**
4490** For example, assuming:
4491**
4492** CREATE INDEX i1 ON t1(x, Y);
4493**
4494** then
4495**
4496** SELECT * FROM t1 GROUP BY x,y ORDER BY x,y; -- IsSorted()==1
4497** SELECT * FROM t1 GROUP BY y,x ORDER BY y,x; -- IsSorted()==0
4498*/
4499int sqlite3WhereIsSorted(WhereInfo *pWInfo){
4500 assert( pWInfo->wctrlFlags & WHERE_GROUPBY );
4501 assert( pWInfo->wctrlFlags & WHERE_SORTBYGROUP );
4502 return pWInfo->sorted;
4503}
4504
drhd15cb172013-05-21 19:23:10 +00004505#ifdef WHERETRACE_ENABLED
4506/* For debugging use only: */
4507static const char *wherePathName(WherePath *pPath, int nLoop, WhereLoop *pLast){
4508 static char zName[65];
4509 int i;
4510 for(i=0; i<nLoop; i++){ zName[i] = pPath->aLoop[i]->cId; }
4511 if( pLast ) zName[i++] = pLast->cId;
4512 zName[i] = 0;
4513 return zName;
4514}
4515#endif
4516
drh6b7157b2013-05-10 02:00:35 +00004517/*
dan50ae31e2014-08-08 16:52:28 +00004518** Return the cost of sorting nRow rows, assuming that the keys have
4519** nOrderby columns and that the first nSorted columns are already in
4520** order.
4521*/
4522static LogEst whereSortingCost(
4523 WhereInfo *pWInfo,
4524 LogEst nRow,
4525 int nOrderBy,
4526 int nSorted
4527){
4528 /* TUNING: Estimated cost of a full external sort, where N is
4529 ** the number of rows to sort is:
4530 **
4531 ** cost = (3.0 * N * log(N)).
4532 **
4533 ** Or, if the order-by clause has X terms but only the last Y
4534 ** terms are out of order, then block-sorting will reduce the
4535 ** sorting cost to:
4536 **
4537 ** cost = (3.0 * N * log(N)) * (Y/X)
4538 **
4539 ** The (Y/X) term is implemented using stack variable rScale
drh58d6f632020-08-24 23:44:27 +00004540 ** below.
4541 */
dan50ae31e2014-08-08 16:52:28 +00004542 LogEst rScale, rSortCost;
4543 assert( nOrderBy>0 && 66==sqlite3LogEst(100) );
4544 rScale = sqlite3LogEst((nOrderBy-nSorted)*100/nOrderBy) - 66;
drhc3489bb2016-02-25 16:04:59 +00004545 rSortCost = nRow + rScale + 16;
dan50ae31e2014-08-08 16:52:28 +00004546
drhc3489bb2016-02-25 16:04:59 +00004547 /* Multiple by log(M) where M is the number of output rows.
drh58d6f632020-08-24 23:44:27 +00004548 ** Use the LIMIT for M if it is smaller. Or if this sort is for
drh75e6bbb2020-11-11 19:11:44 +00004549 ** a DISTINCT operator, M will be the number of distinct output
drh58d6f632020-08-24 23:44:27 +00004550 ** rows, so fudge it downwards a bit.
4551 */
drh8c098e62016-02-25 23:21:41 +00004552 if( (pWInfo->wctrlFlags & WHERE_USE_LIMIT)!=0 && pWInfo->iLimit<nRow ){
4553 nRow = pWInfo->iLimit;
drh58d6f632020-08-24 23:44:27 +00004554 }else if( (pWInfo->wctrlFlags & WHERE_WANT_DISTINCT) ){
4555 /* TUNING: In the sort for a DISTINCT operator, assume that the DISTINCT
4556 ** reduces the number of output rows by a factor of 2 */
drh5f086dd2021-04-29 13:37:36 +00004557 if( nRow>10 ){ nRow -= 10; assert( 10==sqlite3LogEst(2) ); }
dan50ae31e2014-08-08 16:52:28 +00004558 }
drhc3489bb2016-02-25 16:04:59 +00004559 rSortCost += estLog(nRow);
dan50ae31e2014-08-08 16:52:28 +00004560 return rSortCost;
4561}
4562
4563/*
dan51576f42013-07-02 10:06:15 +00004564** Given the list of WhereLoop objects at pWInfo->pLoops, this routine
drha18f3d22013-05-08 03:05:41 +00004565** attempts to find the lowest cost path that visits each WhereLoop
4566** once. This path is then loaded into the pWInfo->a[].pWLoop fields.
4567**
drhc7f0d222013-06-19 03:27:12 +00004568** Assume that the total number of output rows that will need to be sorted
4569** will be nRowEst (in the 10*log2 representation). Or, ignore sorting
4570** costs if nRowEst==0.
4571**
drha18f3d22013-05-08 03:05:41 +00004572** Return SQLITE_OK on success or SQLITE_NOMEM of a memory allocation
4573** error occurs.
4574*/
drhbf539c42013-10-05 18:16:02 +00004575static int wherePathSolver(WhereInfo *pWInfo, LogEst nRowEst){
drh783dece2013-06-05 17:53:43 +00004576 int mxChoice; /* Maximum number of simultaneous paths tracked */
drha18f3d22013-05-08 03:05:41 +00004577 int nLoop; /* Number of terms in the join */
drhe1e2e9a2013-06-13 15:16:53 +00004578 Parse *pParse; /* Parsing context */
drha18f3d22013-05-08 03:05:41 +00004579 sqlite3 *db; /* The database connection */
4580 int iLoop; /* Loop counter over the terms of the join */
4581 int ii, jj; /* Loop counters */
drhfde1e6b2013-09-06 17:45:42 +00004582 int mxI = 0; /* Index of next entry to replace */
drhd2de8612014-03-18 18:59:07 +00004583 int nOrderBy; /* Number of ORDER BY clause terms */
drhbf539c42013-10-05 18:16:02 +00004584 LogEst mxCost = 0; /* Maximum cost of a set of paths */
dan50ae31e2014-08-08 16:52:28 +00004585 LogEst mxUnsorted = 0; /* Maximum unsorted cost of a set of path */
drha18f3d22013-05-08 03:05:41 +00004586 int nTo, nFrom; /* Number of valid entries in aTo[] and aFrom[] */
4587 WherePath *aFrom; /* All nFrom paths at the previous level */
4588 WherePath *aTo; /* The nTo best paths at the current level */
4589 WherePath *pFrom; /* An element of aFrom[] that we are working on */
4590 WherePath *pTo; /* An element of aTo[] that we are working on */
4591 WhereLoop *pWLoop; /* One of the WhereLoop objects */
4592 WhereLoop **pX; /* Used to divy up the pSpace memory */
dan50ae31e2014-08-08 16:52:28 +00004593 LogEst *aSortCost = 0; /* Sorting and partial sorting costs */
drha18f3d22013-05-08 03:05:41 +00004594 char *pSpace; /* Temporary memory used by this routine */
dane2c27852014-08-08 17:25:33 +00004595 int nSpace; /* Bytes of space allocated at pSpace */
drha18f3d22013-05-08 03:05:41 +00004596
drhe1e2e9a2013-06-13 15:16:53 +00004597 pParse = pWInfo->pParse;
4598 db = pParse->db;
drha18f3d22013-05-08 03:05:41 +00004599 nLoop = pWInfo->nLevel;
drhe1e2e9a2013-06-13 15:16:53 +00004600 /* TUNING: For simple queries, only the best path is tracked.
4601 ** For 2-way joins, the 5 best paths are followed.
4602 ** For joins of 3 or more tables, track the 10 best paths */
drh2504c6c2014-06-02 11:26:33 +00004603 mxChoice = (nLoop<=1) ? 1 : (nLoop==2 ? 5 : 10);
drha18f3d22013-05-08 03:05:41 +00004604 assert( nLoop<=pWInfo->pTabList->nSrc );
drhddef5dc2014-08-07 16:50:00 +00004605 WHERETRACE(0x002, ("---- begin solver. (nRowEst=%d)\n", nRowEst));
drha18f3d22013-05-08 03:05:41 +00004606
dan50ae31e2014-08-08 16:52:28 +00004607 /* If nRowEst is zero and there is an ORDER BY clause, ignore it. In this
4608 ** case the purpose of this call is to estimate the number of rows returned
4609 ** by the overall query. Once this estimate has been obtained, the caller
4610 ** will invoke this function a second time, passing the estimate as the
4611 ** nRowEst parameter. */
4612 if( pWInfo->pOrderBy==0 || nRowEst==0 ){
4613 nOrderBy = 0;
4614 }else{
4615 nOrderBy = pWInfo->pOrderBy->nExpr;
4616 }
4617
4618 /* Allocate and initialize space for aTo, aFrom and aSortCost[] */
dane2c27852014-08-08 17:25:33 +00004619 nSpace = (sizeof(WherePath)+sizeof(WhereLoop*)*nLoop)*mxChoice*2;
4620 nSpace += sizeof(LogEst) * nOrderBy;
drh575fad62016-02-05 13:38:36 +00004621 pSpace = sqlite3DbMallocRawNN(db, nSpace);
mistachkinfad30392016-02-13 23:43:46 +00004622 if( pSpace==0 ) return SQLITE_NOMEM_BKPT;
drha18f3d22013-05-08 03:05:41 +00004623 aTo = (WherePath*)pSpace;
4624 aFrom = aTo+mxChoice;
4625 memset(aFrom, 0, sizeof(aFrom[0]));
4626 pX = (WhereLoop**)(aFrom+mxChoice);
drhe9d935a2013-06-05 16:19:59 +00004627 for(ii=mxChoice*2, pFrom=aTo; ii>0; ii--, pFrom++, pX += nLoop){
drha18f3d22013-05-08 03:05:41 +00004628 pFrom->aLoop = pX;
4629 }
dan50ae31e2014-08-08 16:52:28 +00004630 if( nOrderBy ){
4631 /* If there is an ORDER BY clause and it is not being ignored, set up
4632 ** space for the aSortCost[] array. Each element of the aSortCost array
4633 ** is either zero - meaning it has not yet been initialized - or the
4634 ** cost of sorting nRowEst rows of data where the first X terms of
4635 ** the ORDER BY clause are already in order, where X is the array
4636 ** index. */
4637 aSortCost = (LogEst*)pX;
dane2c27852014-08-08 17:25:33 +00004638 memset(aSortCost, 0, sizeof(LogEst) * nOrderBy);
dan50ae31e2014-08-08 16:52:28 +00004639 }
dane2c27852014-08-08 17:25:33 +00004640 assert( aSortCost==0 || &pSpace[nSpace]==(char*)&aSortCost[nOrderBy] );
4641 assert( aSortCost!=0 || &pSpace[nSpace]==(char*)pX );
drha18f3d22013-05-08 03:05:41 +00004642
drhe1e2e9a2013-06-13 15:16:53 +00004643 /* Seed the search with a single WherePath containing zero WhereLoops.
4644 **
danf104abb2015-03-16 20:40:00 +00004645 ** TUNING: Do not let the number of iterations go above 28. If the cost
4646 ** of computing an automatic index is not paid back within the first 28
drhe1e2e9a2013-06-13 15:16:53 +00004647 ** rows, then do not use the automatic index. */
danf104abb2015-03-16 20:40:00 +00004648 aFrom[0].nRow = MIN(pParse->nQueryLoop, 48); assert( 48==sqlite3LogEst(28) );
drha18f3d22013-05-08 03:05:41 +00004649 nFrom = 1;
dan50ae31e2014-08-08 16:52:28 +00004650 assert( aFrom[0].isOrdered==0 );
4651 if( nOrderBy ){
4652 /* If nLoop is zero, then there are no FROM terms in the query. Since
4653 ** in this case the query may return a maximum of one row, the results
4654 ** are already in the requested order. Set isOrdered to nOrderBy to
4655 ** indicate this. Or, if nLoop is greater than zero, set isOrdered to
4656 ** -1, indicating that the result set may or may not be ordered,
4657 ** depending on the loops added to the current plan. */
4658 aFrom[0].isOrdered = nLoop>0 ? -1 : nOrderBy;
drh6b7157b2013-05-10 02:00:35 +00004659 }
4660
4661 /* Compute successively longer WherePaths using the previous generation
4662 ** of WherePaths as the basis for the next. Keep track of the mxChoice
4663 ** best paths at each generation */
drha18f3d22013-05-08 03:05:41 +00004664 for(iLoop=0; iLoop<nLoop; iLoop++){
4665 nTo = 0;
4666 for(ii=0, pFrom=aFrom; ii<nFrom; ii++, pFrom++){
4667 for(pWLoop=pWInfo->pLoops; pWLoop; pWLoop=pWLoop->pNextLoop){
dan50ae31e2014-08-08 16:52:28 +00004668 LogEst nOut; /* Rows visited by (pFrom+pWLoop) */
4669 LogEst rCost; /* Cost of path (pFrom+pWLoop) */
4670 LogEst rUnsorted; /* Unsorted cost of (pFrom+pWLoop) */
4671 i8 isOrdered = pFrom->isOrdered; /* isOrdered for (pFrom+pWLoop) */
4672 Bitmask maskNew; /* Mask of src visited by (..) */
4673 Bitmask revMask = 0; /* Mask of rev-order loops for (..) */
4674
drha18f3d22013-05-08 03:05:41 +00004675 if( (pWLoop->prereq & ~pFrom->maskLoop)!=0 ) continue;
4676 if( (pWLoop->maskSelf & pFrom->maskLoop)!=0 ) continue;
drh492ad132018-05-14 22:46:11 +00004677 if( (pWLoop->wsFlags & WHERE_AUTO_INDEX)!=0 && pFrom->nRow<3 ){
drh5a6f5ed2016-02-25 18:22:09 +00004678 /* Do not use an automatic index if the this loop is expected
drh492ad132018-05-14 22:46:11 +00004679 ** to run less than 1.25 times. It is tempting to also exclude
4680 ** automatic index usage on an outer loop, but sometimes an automatic
4681 ** index is useful in the outer loop of a correlated subquery. */
drh5a6f5ed2016-02-25 18:22:09 +00004682 assert( 10==sqlite3LogEst(2) );
drh87eb9192016-02-25 18:03:38 +00004683 continue;
4684 }
drh492ad132018-05-14 22:46:11 +00004685
drh6b7157b2013-05-10 02:00:35 +00004686 /* At this point, pWLoop is a candidate to be the next loop.
4687 ** Compute its cost */
dan50ae31e2014-08-08 16:52:28 +00004688 rUnsorted = sqlite3LogEstAdd(pWLoop->rSetup,pWLoop->rRun + pFrom->nRow);
4689 rUnsorted = sqlite3LogEstAdd(rUnsorted, pFrom->rUnsorted);
drhfde1e6b2013-09-06 17:45:42 +00004690 nOut = pFrom->nRow + pWLoop->nOut;
drha18f3d22013-05-08 03:05:41 +00004691 maskNew = pFrom->maskLoop | pWLoop->maskSelf;
drh0401ace2014-03-18 15:30:27 +00004692 if( isOrdered<0 ){
4693 isOrdered = wherePathSatisfiesOrderBy(pWInfo,
drh4f402f22013-06-11 18:59:38 +00004694 pWInfo->pOrderBy, pFrom, pWInfo->wctrlFlags,
drh0401ace2014-03-18 15:30:27 +00004695 iLoop, pWLoop, &revMask);
drh3a5ba8b2013-06-03 15:34:48 +00004696 }else{
4697 revMask = pFrom->revLoop;
drh6b7157b2013-05-10 02:00:35 +00004698 }
dan50ae31e2014-08-08 16:52:28 +00004699 if( isOrdered>=0 && isOrdered<nOrderBy ){
4700 if( aSortCost[isOrdered]==0 ){
4701 aSortCost[isOrdered] = whereSortingCost(
4702 pWInfo, nRowEst, nOrderBy, isOrdered
4703 );
4704 }
drhf559ed32018-07-28 21:01:55 +00004705 /* TUNING: Add a small extra penalty (5) to sorting as an
4706 ** extra encouragment to the query planner to select a plan
4707 ** where the rows emerge in the correct order without any sorting
4708 ** required. */
4709 rCost = sqlite3LogEstAdd(rUnsorted, aSortCost[isOrdered]) + 5;
dan50ae31e2014-08-08 16:52:28 +00004710
4711 WHERETRACE(0x002,
4712 ("---- sort cost=%-3d (%d/%d) increases cost %3d to %-3d\n",
4713 aSortCost[isOrdered], (nOrderBy-isOrdered), nOrderBy,
4714 rUnsorted, rCost));
4715 }else{
4716 rCost = rUnsorted;
drh54ac4452017-06-24 16:03:18 +00004717 rUnsorted -= 2; /* TUNING: Slight bias in favor of no-sort plans */
dan50ae31e2014-08-08 16:52:28 +00004718 }
4719
drhddef5dc2014-08-07 16:50:00 +00004720 /* Check to see if pWLoop should be added to the set of
4721 ** mxChoice best-so-far paths.
4722 **
4723 ** First look for an existing path among best-so-far paths
4724 ** that covers the same set of loops and has the same isOrdered
4725 ** setting as the current path candidate.
drhf2a90302014-08-07 20:37:01 +00004726 **
4727 ** The term "((pTo->isOrdered^isOrdered)&0x80)==0" is equivalent
4728 ** to (pTo->isOrdered==(-1))==(isOrdered==(-1))" for the range
4729 ** of legal values for isOrdered, -1..64.
drhddef5dc2014-08-07 16:50:00 +00004730 */
drh6b7157b2013-05-10 02:00:35 +00004731 for(jj=0, pTo=aTo; jj<nTo; jj++, pTo++){
drhfde1e6b2013-09-06 17:45:42 +00004732 if( pTo->maskLoop==maskNew
drhf2a90302014-08-07 20:37:01 +00004733 && ((pTo->isOrdered^isOrdered)&0x80)==0
drhfde1e6b2013-09-06 17:45:42 +00004734 ){
drh7963b0e2013-06-17 21:37:40 +00004735 testcase( jj==nTo-1 );
drh6b7157b2013-05-10 02:00:35 +00004736 break;
4737 }
4738 }
drha18f3d22013-05-08 03:05:41 +00004739 if( jj>=nTo ){
drhddef5dc2014-08-07 16:50:00 +00004740 /* None of the existing best-so-far paths match the candidate. */
drhddef5dc2014-08-07 16:50:00 +00004741 if( nTo>=mxChoice
dan50ae31e2014-08-08 16:52:28 +00004742 && (rCost>mxCost || (rCost==mxCost && rUnsorted>=mxUnsorted))
drhddef5dc2014-08-07 16:50:00 +00004743 ){
4744 /* The current candidate is no better than any of the mxChoice
4745 ** paths currently in the best-so-far buffer. So discard
4746 ** this candidate as not viable. */
drh989578e2013-10-28 14:34:35 +00004747#ifdef WHERETRACE_ENABLED /* 0x4 */
drhae70cf12013-05-31 15:18:46 +00004748 if( sqlite3WhereTrace&0x4 ){
drh78436d42017-05-22 00:45:15 +00004749 sqlite3DebugPrintf("Skip %s cost=%-3d,%3d,%3d order=%c\n",
4750 wherePathName(pFrom, iLoop, pWLoop), rCost, nOut, rUnsorted,
drh0401ace2014-03-18 15:30:27 +00004751 isOrdered>=0 ? isOrdered+'0' : '?');
drhd15cb172013-05-21 19:23:10 +00004752 }
4753#endif
4754 continue;
4755 }
drhddef5dc2014-08-07 16:50:00 +00004756 /* If we reach this points it means that the new candidate path
4757 ** needs to be added to the set of best-so-far paths. */
drha18f3d22013-05-08 03:05:41 +00004758 if( nTo<mxChoice ){
drhd15cb172013-05-21 19:23:10 +00004759 /* Increase the size of the aTo set by one */
drha18f3d22013-05-08 03:05:41 +00004760 jj = nTo++;
4761 }else{
drhd15cb172013-05-21 19:23:10 +00004762 /* New path replaces the prior worst to keep count below mxChoice */
drhfde1e6b2013-09-06 17:45:42 +00004763 jj = mxI;
drha18f3d22013-05-08 03:05:41 +00004764 }
4765 pTo = &aTo[jj];
drh989578e2013-10-28 14:34:35 +00004766#ifdef WHERETRACE_ENABLED /* 0x4 */
drhae70cf12013-05-31 15:18:46 +00004767 if( sqlite3WhereTrace&0x4 ){
drh78436d42017-05-22 00:45:15 +00004768 sqlite3DebugPrintf("New %s cost=%-3d,%3d,%3d order=%c\n",
4769 wherePathName(pFrom, iLoop, pWLoop), rCost, nOut, rUnsorted,
drh0401ace2014-03-18 15:30:27 +00004770 isOrdered>=0 ? isOrdered+'0' : '?');
drhd15cb172013-05-21 19:23:10 +00004771 }
4772#endif
drhf204dac2013-05-08 03:22:07 +00004773 }else{
drhddef5dc2014-08-07 16:50:00 +00004774 /* Control reaches here if best-so-far path pTo=aTo[jj] covers the
drh78436d42017-05-22 00:45:15 +00004775 ** same set of loops and has the same isOrdered setting as the
drhddef5dc2014-08-07 16:50:00 +00004776 ** candidate path. Check to see if the candidate should replace
drh78436d42017-05-22 00:45:15 +00004777 ** pTo or if the candidate should be skipped.
4778 **
4779 ** The conditional is an expanded vector comparison equivalent to:
4780 ** (pTo->rCost,pTo->nRow,pTo->rUnsorted) <= (rCost,nOut,rUnsorted)
4781 */
4782 if( pTo->rCost<rCost
4783 || (pTo->rCost==rCost
4784 && (pTo->nRow<nOut
4785 || (pTo->nRow==nOut && pTo->rUnsorted<=rUnsorted)
4786 )
4787 )
4788 ){
drh989578e2013-10-28 14:34:35 +00004789#ifdef WHERETRACE_ENABLED /* 0x4 */
drhae70cf12013-05-31 15:18:46 +00004790 if( sqlite3WhereTrace&0x4 ){
drhd15cb172013-05-21 19:23:10 +00004791 sqlite3DebugPrintf(
drh78436d42017-05-22 00:45:15 +00004792 "Skip %s cost=%-3d,%3d,%3d order=%c",
4793 wherePathName(pFrom, iLoop, pWLoop), rCost, nOut, rUnsorted,
drh0401ace2014-03-18 15:30:27 +00004794 isOrdered>=0 ? isOrdered+'0' : '?');
drh78436d42017-05-22 00:45:15 +00004795 sqlite3DebugPrintf(" vs %s cost=%-3d,%3d,%3d order=%c\n",
drhfde1e6b2013-09-06 17:45:42 +00004796 wherePathName(pTo, iLoop+1, 0), pTo->rCost, pTo->nRow,
drh78436d42017-05-22 00:45:15 +00004797 pTo->rUnsorted, pTo->isOrdered>=0 ? pTo->isOrdered+'0' : '?');
drhd15cb172013-05-21 19:23:10 +00004798 }
4799#endif
drhddef5dc2014-08-07 16:50:00 +00004800 /* Discard the candidate path from further consideration */
drh7963b0e2013-06-17 21:37:40 +00004801 testcase( pTo->rCost==rCost );
drhd15cb172013-05-21 19:23:10 +00004802 continue;
4803 }
drh7963b0e2013-06-17 21:37:40 +00004804 testcase( pTo->rCost==rCost+1 );
drhddef5dc2014-08-07 16:50:00 +00004805 /* Control reaches here if the candidate path is better than the
4806 ** pTo path. Replace pTo with the candidate. */
drh989578e2013-10-28 14:34:35 +00004807#ifdef WHERETRACE_ENABLED /* 0x4 */
drhae70cf12013-05-31 15:18:46 +00004808 if( sqlite3WhereTrace&0x4 ){
drhd15cb172013-05-21 19:23:10 +00004809 sqlite3DebugPrintf(
drh78436d42017-05-22 00:45:15 +00004810 "Update %s cost=%-3d,%3d,%3d order=%c",
4811 wherePathName(pFrom, iLoop, pWLoop), rCost, nOut, rUnsorted,
drh0401ace2014-03-18 15:30:27 +00004812 isOrdered>=0 ? isOrdered+'0' : '?');
drh78436d42017-05-22 00:45:15 +00004813 sqlite3DebugPrintf(" was %s cost=%-3d,%3d,%3d order=%c\n",
drhfde1e6b2013-09-06 17:45:42 +00004814 wherePathName(pTo, iLoop+1, 0), pTo->rCost, pTo->nRow,
drh78436d42017-05-22 00:45:15 +00004815 pTo->rUnsorted, pTo->isOrdered>=0 ? pTo->isOrdered+'0' : '?');
drhd15cb172013-05-21 19:23:10 +00004816 }
4817#endif
drha18f3d22013-05-08 03:05:41 +00004818 }
drh6b7157b2013-05-10 02:00:35 +00004819 /* pWLoop is a winner. Add it to the set of best so far */
drha18f3d22013-05-08 03:05:41 +00004820 pTo->maskLoop = pFrom->maskLoop | pWLoop->maskSelf;
drh319f6772013-05-14 15:31:07 +00004821 pTo->revLoop = revMask;
drhfde1e6b2013-09-06 17:45:42 +00004822 pTo->nRow = nOut;
drha18f3d22013-05-08 03:05:41 +00004823 pTo->rCost = rCost;
dan50ae31e2014-08-08 16:52:28 +00004824 pTo->rUnsorted = rUnsorted;
drh6b7157b2013-05-10 02:00:35 +00004825 pTo->isOrdered = isOrdered;
drha18f3d22013-05-08 03:05:41 +00004826 memcpy(pTo->aLoop, pFrom->aLoop, sizeof(WhereLoop*)*iLoop);
4827 pTo->aLoop[iLoop] = pWLoop;
4828 if( nTo>=mxChoice ){
drhfde1e6b2013-09-06 17:45:42 +00004829 mxI = 0;
drha18f3d22013-05-08 03:05:41 +00004830 mxCost = aTo[0].rCost;
dan50ae31e2014-08-08 16:52:28 +00004831 mxUnsorted = aTo[0].nRow;
drha18f3d22013-05-08 03:05:41 +00004832 for(jj=1, pTo=&aTo[1]; jj<mxChoice; jj++, pTo++){
dan50ae31e2014-08-08 16:52:28 +00004833 if( pTo->rCost>mxCost
4834 || (pTo->rCost==mxCost && pTo->rUnsorted>mxUnsorted)
4835 ){
drhfde1e6b2013-09-06 17:45:42 +00004836 mxCost = pTo->rCost;
dan50ae31e2014-08-08 16:52:28 +00004837 mxUnsorted = pTo->rUnsorted;
drhfde1e6b2013-09-06 17:45:42 +00004838 mxI = jj;
4839 }
drha18f3d22013-05-08 03:05:41 +00004840 }
4841 }
4842 }
4843 }
4844
drh989578e2013-10-28 14:34:35 +00004845#ifdef WHERETRACE_ENABLED /* >=2 */
drh1b131b72014-10-21 16:01:40 +00004846 if( sqlite3WhereTrace & 0x02 ){
drha50ef112013-05-22 02:06:59 +00004847 sqlite3DebugPrintf("---- after round %d ----\n", iLoop);
drhd15cb172013-05-21 19:23:10 +00004848 for(ii=0, pTo=aTo; ii<nTo; ii++, pTo++){
drhb8a8e8a2013-06-10 19:12:39 +00004849 sqlite3DebugPrintf(" %s cost=%-3d nrow=%-3d order=%c",
drha50ef112013-05-22 02:06:59 +00004850 wherePathName(pTo, iLoop+1, 0), pTo->rCost, pTo->nRow,
drh0401ace2014-03-18 15:30:27 +00004851 pTo->isOrdered>=0 ? (pTo->isOrdered+'0') : '?');
4852 if( pTo->isOrdered>0 ){
drh88da6442013-05-27 17:59:37 +00004853 sqlite3DebugPrintf(" rev=0x%llx\n", pTo->revLoop);
4854 }else{
4855 sqlite3DebugPrintf("\n");
4856 }
drhf204dac2013-05-08 03:22:07 +00004857 }
4858 }
4859#endif
4860
drh6b7157b2013-05-10 02:00:35 +00004861 /* Swap the roles of aFrom and aTo for the next generation */
drha18f3d22013-05-08 03:05:41 +00004862 pFrom = aTo;
4863 aTo = aFrom;
4864 aFrom = pFrom;
4865 nFrom = nTo;
4866 }
4867
drh75b93402013-05-31 20:43:57 +00004868 if( nFrom==0 ){
drhe1e2e9a2013-06-13 15:16:53 +00004869 sqlite3ErrorMsg(pParse, "no query solution");
drhdbd6a7d2017-04-05 12:39:49 +00004870 sqlite3DbFreeNN(db, pSpace);
drh75b93402013-05-31 20:43:57 +00004871 return SQLITE_ERROR;
4872 }
drha18f3d22013-05-08 03:05:41 +00004873
drh6b7157b2013-05-10 02:00:35 +00004874 /* Find the lowest cost path. pFrom will be left pointing to that path */
drha18f3d22013-05-08 03:05:41 +00004875 pFrom = aFrom;
4876 for(ii=1; ii<nFrom; ii++){
4877 if( pFrom->rCost>aFrom[ii].rCost ) pFrom = &aFrom[ii];
4878 }
4879 assert( pWInfo->nLevel==nLoop );
drh6b7157b2013-05-10 02:00:35 +00004880 /* Load the lowest cost path into pWInfo */
drha18f3d22013-05-08 03:05:41 +00004881 for(iLoop=0; iLoop<nLoop; iLoop++){
drh7ba39a92013-05-30 17:43:19 +00004882 WhereLevel *pLevel = pWInfo->a + iLoop;
4883 pLevel->pWLoop = pWLoop = pFrom->aLoop[iLoop];
drhe217efc2013-06-12 03:48:41 +00004884 pLevel->iFrom = pWLoop->iTab;
drh7ba39a92013-05-30 17:43:19 +00004885 pLevel->iTabCur = pWInfo->pTabList->a[pLevel->iFrom].iCursor;
drha18f3d22013-05-08 03:05:41 +00004886 }
drhfd636c72013-06-21 02:05:06 +00004887 if( (pWInfo->wctrlFlags & WHERE_WANT_DISTINCT)!=0
4888 && (pWInfo->wctrlFlags & WHERE_DISTINCTBY)==0
4889 && pWInfo->eDistinct==WHERE_DISTINCT_NOOP
drh4f402f22013-06-11 18:59:38 +00004890 && nRowEst
4891 ){
4892 Bitmask notUsed;
drh6457a352013-06-21 00:35:37 +00004893 int rc = wherePathSatisfiesOrderBy(pWInfo, pWInfo->pResultSet, pFrom,
drh93ec45d2013-06-17 18:20:48 +00004894 WHERE_DISTINCTBY, nLoop-1, pFrom->aLoop[nLoop-1], &notUsed);
drh0401ace2014-03-18 15:30:27 +00004895 if( rc==pWInfo->pResultSet->nExpr ){
4896 pWInfo->eDistinct = WHERE_DISTINCT_ORDERED;
4897 }
drh4f402f22013-06-11 18:59:38 +00004898 }
drh6ee5a7b2018-09-08 20:09:46 +00004899 pWInfo->bOrderedInnerLoop = 0;
drh079a3072014-03-19 14:10:55 +00004900 if( pWInfo->pOrderBy ){
drh4f402f22013-06-11 18:59:38 +00004901 if( pWInfo->wctrlFlags & WHERE_DISTINCTBY ){
drh079a3072014-03-19 14:10:55 +00004902 if( pFrom->isOrdered==pWInfo->pOrderBy->nExpr ){
4903 pWInfo->eDistinct = WHERE_DISTINCT_ORDERED;
4904 }
drh4f402f22013-06-11 18:59:38 +00004905 }else{
drhddba0c22014-03-18 20:33:42 +00004906 pWInfo->nOBSat = pFrom->isOrdered;
drh4f402f22013-06-11 18:59:38 +00004907 pWInfo->revMask = pFrom->revLoop;
drha536df42016-05-19 22:13:37 +00004908 if( pWInfo->nOBSat<=0 ){
4909 pWInfo->nOBSat = 0;
drhc436a032016-10-12 18:55:53 +00004910 if( nLoop>0 ){
4911 u32 wsFlags = pFrom->aLoop[nLoop-1]->wsFlags;
4912 if( (wsFlags & WHERE_ONEROW)==0
4913 && (wsFlags&(WHERE_IPK|WHERE_COLUMN_IN))!=(WHERE_IPK|WHERE_COLUMN_IN)
4914 ){
4915 Bitmask m = 0;
4916 int rc = wherePathSatisfiesOrderBy(pWInfo, pWInfo->pOrderBy, pFrom,
drhd711e522016-05-19 22:40:04 +00004917 WHERE_ORDERBY_LIMIT, nLoop-1, pFrom->aLoop[nLoop-1], &m);
drhc436a032016-10-12 18:55:53 +00004918 testcase( wsFlags & WHERE_IPK );
4919 testcase( wsFlags & WHERE_COLUMN_IN );
4920 if( rc==pWInfo->pOrderBy->nExpr ){
4921 pWInfo->bOrderedInnerLoop = 1;
4922 pWInfo->revMask = m;
4923 }
drhd711e522016-05-19 22:40:04 +00004924 }
4925 }
drh751a44e2020-07-14 02:03:35 +00004926 }else if( nLoop
4927 && pWInfo->nOBSat==1
drh413b94a2020-07-10 19:09:40 +00004928 && (pWInfo->wctrlFlags & (WHERE_ORDERBY_MIN|WHERE_ORDERBY_MAX))!=0
4929 ){
drh19543b92020-07-14 22:20:26 +00004930 pWInfo->bOrderedInnerLoop = 1;
drha536df42016-05-19 22:13:37 +00004931 }
drh4f402f22013-06-11 18:59:38 +00004932 }
dan374cd782014-04-21 13:21:56 +00004933 if( (pWInfo->wctrlFlags & WHERE_SORTBYGROUP)
drh11b04812015-04-12 01:22:04 +00004934 && pWInfo->nOBSat==pWInfo->pOrderBy->nExpr && nLoop>0
dan374cd782014-04-21 13:21:56 +00004935 ){
danb6453202014-10-10 20:52:53 +00004936 Bitmask revMask = 0;
dan374cd782014-04-21 13:21:56 +00004937 int nOrder = wherePathSatisfiesOrderBy(pWInfo, pWInfo->pOrderBy,
danb6453202014-10-10 20:52:53 +00004938 pFrom, 0, nLoop-1, pFrom->aLoop[nLoop-1], &revMask
dan374cd782014-04-21 13:21:56 +00004939 );
4940 assert( pWInfo->sorted==0 );
danb6453202014-10-10 20:52:53 +00004941 if( nOrder==pWInfo->pOrderBy->nExpr ){
4942 pWInfo->sorted = 1;
4943 pWInfo->revMask = revMask;
4944 }
dan374cd782014-04-21 13:21:56 +00004945 }
drh6b7157b2013-05-10 02:00:35 +00004946 }
dan374cd782014-04-21 13:21:56 +00004947
4948
drha50ef112013-05-22 02:06:59 +00004949 pWInfo->nRowOut = pFrom->nRow;
drha18f3d22013-05-08 03:05:41 +00004950
4951 /* Free temporary memory and return success */
drhdbd6a7d2017-04-05 12:39:49 +00004952 sqlite3DbFreeNN(db, pSpace);
drha18f3d22013-05-08 03:05:41 +00004953 return SQLITE_OK;
4954}
drh94a11212004-09-25 13:12:14 +00004955
4956/*
drh60c96cd2013-06-09 17:21:25 +00004957** Most queries use only a single table (they are not joins) and have
4958** simple == constraints against indexed fields. This routine attempts
4959** to plan those simple cases using much less ceremony than the
4960** general-purpose query planner, and thereby yield faster sqlite3_prepare()
4961** times for the common case.
4962**
4963** Return non-zero on success, if this query can be handled by this
4964** no-frills query planner. Return zero if this query needs the
4965** general-purpose query planner.
4966*/
drhb8a8e8a2013-06-10 19:12:39 +00004967static int whereShortCut(WhereLoopBuilder *pBuilder){
drh60c96cd2013-06-09 17:21:25 +00004968 WhereInfo *pWInfo;
drh76012942021-02-21 21:04:54 +00004969 SrcItem *pItem;
drh60c96cd2013-06-09 17:21:25 +00004970 WhereClause *pWC;
4971 WhereTerm *pTerm;
4972 WhereLoop *pLoop;
4973 int iCur;
drh92a121f2013-06-10 12:15:47 +00004974 int j;
drh60c96cd2013-06-09 17:21:25 +00004975 Table *pTab;
4976 Index *pIdx;
drh36db90d2021-10-04 11:10:15 +00004977 WhereScan scan;
drh892ffcc2016-03-16 18:26:54 +00004978
drh60c96cd2013-06-09 17:21:25 +00004979 pWInfo = pBuilder->pWInfo;
drhce943bc2016-05-19 18:56:33 +00004980 if( pWInfo->wctrlFlags & WHERE_OR_SUBCLAUSE ) return 0;
drh60c96cd2013-06-09 17:21:25 +00004981 assert( pWInfo->pTabList->nSrc>=1 );
4982 pItem = pWInfo->pTabList->a;
4983 pTab = pItem->pTab;
4984 if( IsVirtual(pTab) ) return 0;
drh8a48b9c2015-08-19 15:20:00 +00004985 if( pItem->fg.isIndexedBy ) return 0;
drh60c96cd2013-06-09 17:21:25 +00004986 iCur = pItem->iCursor;
4987 pWC = &pWInfo->sWC;
4988 pLoop = pBuilder->pNew;
drh60c96cd2013-06-09 17:21:25 +00004989 pLoop->wsFlags = 0;
drhc8bbce12014-10-21 01:05:09 +00004990 pLoop->nSkip = 0;
drh36db90d2021-10-04 11:10:15 +00004991 pTerm = whereScanInit(&scan, pWC, iCur, -1, WO_EQ|WO_IS, 0);
drh3768f172021-10-06 10:04:04 +00004992 while( pTerm && pTerm->prereqRight ) pTerm = whereScanNext(&scan);
drh60c96cd2013-06-09 17:21:25 +00004993 if( pTerm ){
drhe8d0c612015-05-14 01:05:25 +00004994 testcase( pTerm->eOperator & WO_IS );
drh60c96cd2013-06-09 17:21:25 +00004995 pLoop->wsFlags = WHERE_COLUMN_EQ|WHERE_IPK|WHERE_ONEROW;
4996 pLoop->aLTerm[0] = pTerm;
4997 pLoop->nLTerm = 1;
4998 pLoop->u.btree.nEq = 1;
drhe1e2e9a2013-06-13 15:16:53 +00004999 /* TUNING: Cost of a rowid lookup is 10 */
drhbf539c42013-10-05 18:16:02 +00005000 pLoop->rRun = 33; /* 33==sqlite3LogEst(10) */
drh60c96cd2013-06-09 17:21:25 +00005001 }else{
5002 for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){
mistachkin4e5bef82015-05-15 20:14:00 +00005003 int opMask;
dancd40abb2013-08-29 10:46:05 +00005004 assert( pLoop->aLTermSpace==pLoop->aLTerm );
drh5f1d1d92014-07-31 22:59:04 +00005005 if( !IsUniqueIndex(pIdx)
dancd40abb2013-08-29 10:46:05 +00005006 || pIdx->pPartIdxWhere!=0
drhbbbdc832013-10-22 18:01:40 +00005007 || pIdx->nKeyCol>ArraySize(pLoop->aLTermSpace)
dancd40abb2013-08-29 10:46:05 +00005008 ) continue;
mistachkin4e5bef82015-05-15 20:14:00 +00005009 opMask = pIdx->uniqNotNull ? (WO_EQ|WO_IS) : WO_EQ;
drhbbbdc832013-10-22 18:01:40 +00005010 for(j=0; j<pIdx->nKeyCol; j++){
drh36db90d2021-10-04 11:10:15 +00005011 pTerm = whereScanInit(&scan, pWC, iCur, j, opMask, pIdx);
5012 while( pTerm && pTerm->prereqRight ) pTerm = whereScanNext(&scan);
drh60c96cd2013-06-09 17:21:25 +00005013 if( pTerm==0 ) break;
dan3072b532015-05-15 19:59:23 +00005014 testcase( pTerm->eOperator & WO_IS );
drh60c96cd2013-06-09 17:21:25 +00005015 pLoop->aLTerm[j] = pTerm;
5016 }
drhbbbdc832013-10-22 18:01:40 +00005017 if( j!=pIdx->nKeyCol ) continue;
drh92a121f2013-06-10 12:15:47 +00005018 pLoop->wsFlags = WHERE_COLUMN_EQ|WHERE_ONEROW|WHERE_INDEXED;
drh1fe3ac72018-06-09 01:12:08 +00005019 if( pIdx->isCovering || (pItem->colUsed & pIdx->colNotIdxed)==0 ){
drh92a121f2013-06-10 12:15:47 +00005020 pLoop->wsFlags |= WHERE_IDX_ONLY;
5021 }
drh60c96cd2013-06-09 17:21:25 +00005022 pLoop->nLTerm = j;
5023 pLoop->u.btree.nEq = j;
5024 pLoop->u.btree.pIndex = pIdx;
drhe1e2e9a2013-06-13 15:16:53 +00005025 /* TUNING: Cost of a unique index lookup is 15 */
drhbf539c42013-10-05 18:16:02 +00005026 pLoop->rRun = 39; /* 39==sqlite3LogEst(15) */
drh60c96cd2013-06-09 17:21:25 +00005027 break;
5028 }
5029 }
drh3b75ffa2013-06-10 14:56:25 +00005030 if( pLoop->wsFlags ){
drhbf539c42013-10-05 18:16:02 +00005031 pLoop->nOut = (LogEst)1;
drh3b75ffa2013-06-10 14:56:25 +00005032 pWInfo->a[0].pWLoop = pLoop;
drh628dfe12017-04-03 14:07:08 +00005033 assert( pWInfo->sMaskSet.n==1 && iCur==pWInfo->sMaskSet.ix[0] );
5034 pLoop->maskSelf = 1; /* sqlite3WhereGetMask(&pWInfo->sMaskSet, iCur); */
drh3b75ffa2013-06-10 14:56:25 +00005035 pWInfo->a[0].iTabCur = iCur;
5036 pWInfo->nRowOut = 1;
drhddba0c22014-03-18 20:33:42 +00005037 if( pWInfo->pOrderBy ) pWInfo->nOBSat = pWInfo->pOrderBy->nExpr;
drh6457a352013-06-21 00:35:37 +00005038 if( pWInfo->wctrlFlags & WHERE_WANT_DISTINCT ){
5039 pWInfo->eDistinct = WHERE_DISTINCT_UNIQUE;
5040 }
drh36db90d2021-10-04 11:10:15 +00005041 if( scan.iEquiv>1 ) pLoop->wsFlags |= WHERE_TRANSCONS;
drh3b75ffa2013-06-10 14:56:25 +00005042#ifdef SQLITE_DEBUG
5043 pLoop->cId = '0';
5044#endif
drh36db90d2021-10-04 11:10:15 +00005045#ifdef WHERETRACE_ENABLED
5046 if( sqlite3WhereTrace ){
5047 sqlite3DebugPrintf("whereShortCut() used to compute solution\n");
5048 }
5049#endif
drh3b75ffa2013-06-10 14:56:25 +00005050 return 1;
5051 }
5052 return 0;
drh60c96cd2013-06-09 17:21:25 +00005053}
5054
5055/*
danc456a762017-06-22 16:51:16 +00005056** Helper function for exprIsDeterministic().
5057*/
5058static int exprNodeIsDeterministic(Walker *pWalker, Expr *pExpr){
5059 if( pExpr->op==TK_FUNCTION && ExprHasProperty(pExpr, EP_ConstFunc)==0 ){
5060 pWalker->eCode = 0;
5061 return WRC_Abort;
5062 }
5063 return WRC_Continue;
5064}
5065
5066/*
5067** Return true if the expression contains no non-deterministic SQL
5068** functions. Do not consider non-deterministic SQL functions that are
5069** part of sub-select statements.
5070*/
5071static int exprIsDeterministic(Expr *p){
5072 Walker w;
5073 memset(&w, 0, sizeof(w));
5074 w.eCode = 1;
5075 w.xExprCallback = exprNodeIsDeterministic;
drh7e6f9802017-09-04 00:33:04 +00005076 w.xSelectCallback = sqlite3SelectWalkFail;
danc456a762017-06-22 16:51:16 +00005077 sqlite3WalkExpr(&w, p);
5078 return w.eCode;
5079}
5080
drhcea19512020-02-22 18:27:48 +00005081
5082#ifdef WHERETRACE_ENABLED
5083/*
5084** Display all WhereLoops in pWInfo
5085*/
5086static void showAllWhereLoops(WhereInfo *pWInfo, WhereClause *pWC){
5087 if( sqlite3WhereTrace ){ /* Display all of the WhereLoop objects */
5088 WhereLoop *p;
5089 int i;
5090 static const char zLabel[] = "0123456789abcdefghijklmnopqrstuvwyxz"
5091 "ABCDEFGHIJKLMNOPQRSTUVWYXZ";
5092 for(p=pWInfo->pLoops, i=0; p; p=p->pNextLoop, i++){
5093 p->cId = zLabel[i%(sizeof(zLabel)-1)];
5094 sqlite3WhereLoopPrint(p, pWC);
5095 }
5096 }
5097}
5098# define WHERETRACE_ALL_LOOPS(W,C) showAllWhereLoops(W,C)
5099#else
5100# define WHERETRACE_ALL_LOOPS(W,C)
5101#endif
5102
drh70b403b2021-12-03 18:53:53 +00005103/* Attempt to omit tables from a join that do not affect the result.
5104** For a table to not affect the result, the following must be true:
5105**
5106** 1) The query must not be an aggregate.
5107** 2) The table must be the RHS of a LEFT JOIN.
5108** 3) Either the query must be DISTINCT, or else the ON or USING clause
5109** must contain a constraint that limits the scan of the table to
5110** at most a single row.
5111** 4) The table must not be referenced by any part of the query apart
5112** from its own USING or ON clause.
5113**
5114** For example, given:
5115**
5116** CREATE TABLE t1(ipk INTEGER PRIMARY KEY, v1);
5117** CREATE TABLE t2(ipk INTEGER PRIMARY KEY, v2);
5118** CREATE TABLE t3(ipk INTEGER PRIMARY KEY, v3);
5119**
5120** then table t2 can be omitted from the following:
5121**
5122** SELECT v1, v3 FROM t1
5123** LEFT JOIN t2 ON (t1.ipk=t2.ipk)
5124** LEFT JOIN t3 ON (t1.ipk=t3.ipk)
5125**
5126** or from:
5127**
5128** SELECT DISTINCT v1, v3 FROM t1
5129** LEFT JOIN t2
5130** LEFT JOIN t3 ON (t1.ipk=t3.ipk)
5131*/
5132static SQLITE_NOINLINE Bitmask whereOmitNoopJoin(
5133 WhereInfo *pWInfo,
5134 Bitmask notReady
5135){
5136 int i;
5137 Bitmask tabUsed;
5138
5139 /* Preconditions checked by the caller */
5140 assert( pWInfo->nLevel>=2 );
5141 assert( OptimizationEnabled(pWInfo->pParse->db, SQLITE_OmitNoopJoin) );
5142
5143 /* These two preconditions checked by the caller combine to guarantee
5144 ** condition (1) of the header comment */
5145 assert( pWInfo->pResultSet!=0 );
5146 assert( 0==(pWInfo->wctrlFlags & WHERE_AGG_DISTINCT) );
5147
5148 tabUsed = sqlite3WhereExprListUsage(&pWInfo->sMaskSet, pWInfo->pResultSet);
5149 if( pWInfo->pOrderBy ){
5150 tabUsed |= sqlite3WhereExprListUsage(&pWInfo->sMaskSet, pWInfo->pOrderBy);
5151 }
5152 for(i=pWInfo->nLevel-1; i>=1; i--){
5153 WhereTerm *pTerm, *pEnd;
5154 SrcItem *pItem;
5155 WhereLoop *pLoop;
5156 pLoop = pWInfo->a[i].pWLoop;
5157 pItem = &pWInfo->pTabList->a[pLoop->iTab];
5158 if( (pItem->fg.jointype & JT_LEFT)==0 ) continue;
5159 if( (pWInfo->wctrlFlags & WHERE_WANT_DISTINCT)==0
5160 && (pLoop->wsFlags & WHERE_ONEROW)==0
5161 ){
5162 continue;
5163 }
5164 if( (tabUsed & pLoop->maskSelf)!=0 ) continue;
5165 pEnd = pWInfo->sWC.a + pWInfo->sWC.nTerm;
5166 for(pTerm=pWInfo->sWC.a; pTerm<pEnd; pTerm++){
5167 if( (pTerm->prereqAll & pLoop->maskSelf)!=0 ){
5168 if( !ExprHasProperty(pTerm->pExpr, EP_FromJoin)
drh796588a2022-02-05 21:49:47 +00005169 || pTerm->pExpr->w.iRightJoinTable!=pItem->iCursor
drh70b403b2021-12-03 18:53:53 +00005170 ){
5171 break;
5172 }
5173 }
5174 }
5175 if( pTerm<pEnd ) continue;
5176 WHERETRACE(0xffff, ("-> drop loop %c not used\n", pLoop->cId));
5177 notReady &= ~pLoop->maskSelf;
5178 for(pTerm=pWInfo->sWC.a; pTerm<pEnd; pTerm++){
5179 if( (pTerm->prereqAll & pLoop->maskSelf)!=0 ){
5180 pTerm->wtFlags |= TERM_CODED;
5181 }
5182 }
5183 if( i!=pWInfo->nLevel-1 ){
5184 int nByte = (pWInfo->nLevel-1-i) * sizeof(WhereLevel);
5185 memmove(&pWInfo->a[i], &pWInfo->a[i+1], nByte);
5186 }
5187 pWInfo->nLevel--;
5188 assert( pWInfo->nLevel>0 );
5189 }
5190 return notReady;
5191}
5192
danc456a762017-06-22 16:51:16 +00005193/*
drhfa35f5c2021-12-04 13:43:57 +00005194** Check to see if there are any SEARCH loops that might benefit from
5195** using a Bloom filter. Consider a Bloom filter if:
5196**
5197** (1) The SEARCH happens more than N times where N is the number
5198** of rows in the table that is being considered for the Bloom
drh7e910f62021-12-09 01:28:15 +00005199** filter.
5200** (2) Some searches are expected to find zero rows. (This is determined
5201** by the WHERE_SELFCULL flag on the term.)
drh5a4ac1c2021-12-09 19:42:52 +00005202** (3) Bloom-filter processing is not disabled. (Checked by the
drh7e910f62021-12-09 01:28:15 +00005203** caller.)
drh5a4ac1c2021-12-09 19:42:52 +00005204** (4) The size of the table being searched is known by ANALYZE.
drhfa35f5c2021-12-04 13:43:57 +00005205**
5206** This block of code merely checks to see if a Bloom filter would be
5207** appropriate, and if so sets the WHERE_BLOOMFILTER flag on the
5208** WhereLoop. The implementation of the Bloom filter comes further
5209** down where the code for each WhereLoop is generated.
5210*/
5211static SQLITE_NOINLINE void whereCheckIfBloomFilterIsUseful(
drhfecbf0a2021-12-04 21:11:18 +00005212 const WhereInfo *pWInfo
drhfa35f5c2021-12-04 13:43:57 +00005213){
5214 int i;
5215 LogEst nSearch;
drhfa35f5c2021-12-04 13:43:57 +00005216
5217 assert( pWInfo->nLevel>=2 );
drhfecbf0a2021-12-04 21:11:18 +00005218 assert( OptimizationEnabled(pWInfo->pParse->db, SQLITE_BloomFilter) );
drhfa35f5c2021-12-04 13:43:57 +00005219 nSearch = pWInfo->a[0].pWLoop->nOut;
5220 for(i=1; i<pWInfo->nLevel; i++){
5221 WhereLoop *pLoop = pWInfo->a[i].pWLoop;
drhb71a4852021-12-16 14:36:36 +00005222 const unsigned int reqFlags = (WHERE_SELFCULL|WHERE_COLUMN_EQ);
drhfb82caf2021-12-08 19:50:45 +00005223 if( (pLoop->wsFlags & reqFlags)==reqFlags
drh5a4ac1c2021-12-09 19:42:52 +00005224 /* vvvvvv--- Always the case if WHERE_COLUMN_EQ is defined */
drha11c5e22021-12-09 18:44:03 +00005225 && ALWAYS((pLoop->wsFlags & (WHERE_IPK|WHERE_INDEXED))!=0)
drhfa35f5c2021-12-04 13:43:57 +00005226 ){
drhfb82caf2021-12-08 19:50:45 +00005227 SrcItem *pItem = &pWInfo->pTabList->a[pLoop->iTab];
5228 Table *pTab = pItem->pTab;
5229 pTab->tabFlags |= TF_StatsUsed;
5230 if( nSearch > pTab->nRowLogEst
drh7e910f62021-12-09 01:28:15 +00005231 && (pTab->tabFlags & TF_HasStat1)!=0
drhfb82caf2021-12-08 19:50:45 +00005232 ){
drha11c5e22021-12-09 18:44:03 +00005233 testcase( pItem->fg.jointype & JT_LEFT );
drhfb82caf2021-12-08 19:50:45 +00005234 pLoop->wsFlags |= WHERE_BLOOMFILTER;
5235 pLoop->wsFlags &= ~WHERE_IDX_ONLY;
5236 WHERETRACE(0xffff, (
5237 "-> use Bloom-filter on loop %c because there are ~%.1e "
5238 "lookups into %s which has only ~%.1e rows\n",
5239 pLoop->cId, (double)sqlite3LogEstToInt(nSearch), pTab->zName,
5240 (double)sqlite3LogEstToInt(pTab->nRowLogEst)));
5241 }
drhfa35f5c2021-12-04 13:43:57 +00005242 }
5243 nSearch += pLoop->nOut;
5244 }
5245}
5246
5247/*
drhe3184742002-06-19 14:27:05 +00005248** Generate the beginning of the loop used for WHERE clause processing.
drhacf3b982005-01-03 01:27:18 +00005249** The return value is a pointer to an opaque structure that contains
drh75897232000-05-29 14:26:00 +00005250** information needed to terminate the loop. Later, the calling routine
danielk19774adee202004-05-08 08:23:19 +00005251** should invoke sqlite3WhereEnd() with the return value of this function
drh75897232000-05-29 14:26:00 +00005252** in order to complete the WHERE clause processing.
5253**
5254** If an error occurs, this routine returns NULL.
drhc27a1ce2002-06-14 20:58:45 +00005255**
5256** The basic idea is to do a nested loop, one loop for each table in
5257** the FROM clause of a select. (INSERT and UPDATE statements are the
5258** same as a SELECT with only a single table in the FROM clause.) For
5259** example, if the SQL is this:
5260**
5261** SELECT * FROM t1, t2, t3 WHERE ...;
5262**
5263** Then the code generated is conceptually like the following:
5264**
5265** foreach row1 in t1 do \ Code generated
danielk19774adee202004-05-08 08:23:19 +00005266** foreach row2 in t2 do |-- by sqlite3WhereBegin()
drhc27a1ce2002-06-14 20:58:45 +00005267** foreach row3 in t3 do /
5268** ...
5269** end \ Code generated
danielk19774adee202004-05-08 08:23:19 +00005270** end |-- by sqlite3WhereEnd()
drhc27a1ce2002-06-14 20:58:45 +00005271** end /
5272**
drh29dda4a2005-07-21 18:23:20 +00005273** Note that the loops might not be nested in the order in which they
5274** appear in the FROM clause if a different order is better able to make
drh51147ba2005-07-23 22:59:55 +00005275** use of indices. Note also that when the IN operator appears in
5276** the WHERE clause, it might result in additional nested loops for
5277** scanning through all values on the right-hand side of the IN.
drh29dda4a2005-07-21 18:23:20 +00005278**
drhc27a1ce2002-06-14 20:58:45 +00005279** There are Btree cursors associated with each table. t1 uses cursor
drh6a3ea0e2003-05-02 14:32:12 +00005280** number pTabList->a[0].iCursor. t2 uses the cursor pTabList->a[1].iCursor.
5281** And so forth. This routine generates code to open those VDBE cursors
danielk19774adee202004-05-08 08:23:19 +00005282** and sqlite3WhereEnd() generates the code to close them.
drhc27a1ce2002-06-14 20:58:45 +00005283**
drhe6f85e72004-12-25 01:03:13 +00005284** The code that sqlite3WhereBegin() generates leaves the cursors named
5285** in pTabList pointing at their appropriate entries. The [...] code
drhf0863fe2005-06-12 21:35:51 +00005286** can use OP_Column and OP_Rowid opcodes on these cursors to extract
drhe6f85e72004-12-25 01:03:13 +00005287** data from the various tables of the loop.
5288**
drhc27a1ce2002-06-14 20:58:45 +00005289** If the WHERE clause is empty, the foreach loops must each scan their
5290** entire tables. Thus a three-way join is an O(N^3) operation. But if
5291** the tables have indices and there are terms in the WHERE clause that
5292** refer to those indices, a complete table scan can be avoided and the
5293** code will run much faster. Most of the work of this routine is checking
5294** to see if there are indices that can be used to speed up the loop.
5295**
5296** Terms of the WHERE clause are also used to limit which rows actually
5297** make it to the "..." in the middle of the loop. After each "foreach",
5298** terms of the WHERE clause that use only terms in that loop and outer
5299** loops are evaluated and if false a jump is made around all subsequent
5300** inner loops (or around the "..." if the test occurs within the inner-
5301** most loop)
5302**
5303** OUTER JOINS
5304**
5305** An outer join of tables t1 and t2 is conceptally coded as follows:
5306**
5307** foreach row1 in t1 do
5308** flag = 0
5309** foreach row2 in t2 do
5310** start:
5311** ...
5312** flag = 1
5313** end
drhe3184742002-06-19 14:27:05 +00005314** if flag==0 then
5315** move the row2 cursor to a null row
5316** goto start
5317** fi
drhc27a1ce2002-06-14 20:58:45 +00005318** end
5319**
drhe3184742002-06-19 14:27:05 +00005320** ORDER BY CLAUSE PROCESSING
5321**
drh94433422013-07-01 11:05:50 +00005322** pOrderBy is a pointer to the ORDER BY clause (or the GROUP BY clause
5323** if the WHERE_GROUPBY flag is set in wctrlFlags) of a SELECT statement
drhe3184742002-06-19 14:27:05 +00005324** if there is one. If there is no ORDER BY clause or if this routine
drh46ec5b62012-09-24 15:30:54 +00005325** is called from an UPDATE or DELETE statement, then pOrderBy is NULL.
drhfc8d4f92013-11-08 15:19:46 +00005326**
5327** The iIdxCur parameter is the cursor number of an index. If
drhce943bc2016-05-19 18:56:33 +00005328** WHERE_OR_SUBCLAUSE is set, iIdxCur is the cursor number of an index
drhfc8d4f92013-11-08 15:19:46 +00005329** to use for OR clause processing. The WHERE clause should use this
5330** specific cursor. If WHERE_ONEPASS_DESIRED is set, then iIdxCur is
5331** the first cursor in an array of cursors for all indices. iIdxCur should
5332** be used to compute the appropriate cursor depending on which index is
5333** used.
drh75897232000-05-29 14:26:00 +00005334*/
danielk19774adee202004-05-08 08:23:19 +00005335WhereInfo *sqlite3WhereBegin(
drhf1b5ff72016-04-14 13:35:26 +00005336 Parse *pParse, /* The parser context */
5337 SrcList *pTabList, /* FROM clause: A list of all tables to be scanned */
5338 Expr *pWhere, /* The WHERE clause */
5339 ExprList *pOrderBy, /* An ORDER BY (or GROUP BY) clause, or NULL */
drhe9ba9102017-02-16 20:52:52 +00005340 ExprList *pResultSet, /* Query result set. Req'd for DISTINCT */
drh895bab32022-01-27 16:14:50 +00005341 Select *pLimit, /* Use this LIMIT/OFFSET clause, if any */
drhf1b5ff72016-04-14 13:35:26 +00005342 u16 wctrlFlags, /* The WHERE_* flags defined in sqliteInt.h */
drhce943bc2016-05-19 18:56:33 +00005343 int iAuxArg /* If WHERE_OR_SUBCLAUSE is set, index cursor number
drhf1b5ff72016-04-14 13:35:26 +00005344 ** If WHERE_USE_LIMIT, then the limit amount */
drh75897232000-05-29 14:26:00 +00005345){
danielk1977be229652009-03-20 14:18:51 +00005346 int nByteWInfo; /* Num. bytes allocated for WhereInfo struct */
drhc01a3c12009-12-16 22:10:49 +00005347 int nTabList; /* Number of elements in pTabList */
drh75897232000-05-29 14:26:00 +00005348 WhereInfo *pWInfo; /* Will become the return value of this function */
5349 Vdbe *v = pParse->pVdbe; /* The virtual database engine */
drhfe05af82005-07-21 03:14:59 +00005350 Bitmask notReady; /* Cursors that are not yet positioned */
drh1c8148f2013-05-04 20:25:23 +00005351 WhereLoopBuilder sWLB; /* The WhereLoop builder */
drh111a6a72008-12-21 03:51:16 +00005352 WhereMaskSet *pMaskSet; /* The expression mask set */
drh56f1b992012-09-25 14:29:39 +00005353 WhereLevel *pLevel; /* A single level in pWInfo->a[] */
drhfd636c72013-06-21 02:05:06 +00005354 WhereLoop *pLoop; /* Pointer to a single WhereLoop object */
drh9cd1c992012-09-25 20:43:35 +00005355 int ii; /* Loop counter */
drh17435752007-08-16 04:30:38 +00005356 sqlite3 *db; /* Database connection */
drh5346e952013-05-08 14:14:26 +00005357 int rc; /* Return code */
drh9c0c57a2016-01-21 15:55:37 +00005358 u8 bFordelete = 0; /* OPFLAG_FORDELETE or zero, as appropriate */
drh75897232000-05-29 14:26:00 +00005359
danf0ee1d32015-09-12 19:26:11 +00005360 assert( (wctrlFlags & WHERE_ONEPASS_MULTIROW)==0 || (
5361 (wctrlFlags & WHERE_ONEPASS_DESIRED)!=0
drhce943bc2016-05-19 18:56:33 +00005362 && (wctrlFlags & WHERE_OR_SUBCLAUSE)==0
danf0ee1d32015-09-12 19:26:11 +00005363 ));
drh56f1b992012-09-25 14:29:39 +00005364
drhce943bc2016-05-19 18:56:33 +00005365 /* Only one of WHERE_OR_SUBCLAUSE or WHERE_USE_LIMIT */
5366 assert( (wctrlFlags & WHERE_OR_SUBCLAUSE)==0
drhc3489bb2016-02-25 16:04:59 +00005367 || (wctrlFlags & WHERE_USE_LIMIT)==0 );
5368
drh56f1b992012-09-25 14:29:39 +00005369 /* Variable initialization */
drhfd636c72013-06-21 02:05:06 +00005370 db = pParse->db;
drh1c8148f2013-05-04 20:25:23 +00005371 memset(&sWLB, 0, sizeof(sWLB));
drh0401ace2014-03-18 15:30:27 +00005372
5373 /* An ORDER/GROUP BY clause of more than 63 terms cannot be optimized */
5374 testcase( pOrderBy && pOrderBy->nExpr==BMS-1 );
5375 if( pOrderBy && pOrderBy->nExpr>=BMS ) pOrderBy = 0;
drh56f1b992012-09-25 14:29:39 +00005376
drh29dda4a2005-07-21 18:23:20 +00005377 /* The number of tables in the FROM clause is limited by the number of
drh1398ad32005-01-19 23:24:50 +00005378 ** bits in a Bitmask
5379 */
drh67ae0cb2010-04-08 14:38:51 +00005380 testcase( pTabList->nSrc==BMS );
drh29dda4a2005-07-21 18:23:20 +00005381 if( pTabList->nSrc>BMS ){
5382 sqlite3ErrorMsg(pParse, "at most %d tables in a join", BMS);
drh1398ad32005-01-19 23:24:50 +00005383 return 0;
5384 }
5385
drhc01a3c12009-12-16 22:10:49 +00005386 /* This function normally generates a nested loop for all tables in
drhce943bc2016-05-19 18:56:33 +00005387 ** pTabList. But if the WHERE_OR_SUBCLAUSE flag is set, then we should
drhc01a3c12009-12-16 22:10:49 +00005388 ** only generate code for the first table in pTabList and assume that
5389 ** any cursors associated with subsequent tables are uninitialized.
5390 */
drhce943bc2016-05-19 18:56:33 +00005391 nTabList = (wctrlFlags & WHERE_OR_SUBCLAUSE) ? 1 : pTabList->nSrc;
drhc01a3c12009-12-16 22:10:49 +00005392
drh75897232000-05-29 14:26:00 +00005393 /* Allocate and initialize the WhereInfo structure that will become the
danielk1977be229652009-03-20 14:18:51 +00005394 ** return value. A single allocation is used to store the WhereInfo
5395 ** struct, the contents of WhereInfo.a[], the WhereClause structure
5396 ** and the WhereMaskSet structure. Since WhereClause contains an 8-byte
5397 ** field (type Bitmask) it must be aligned on an 8-byte boundary on
5398 ** some architectures. Hence the ROUND8() below.
drh75897232000-05-29 14:26:00 +00005399 */
drhc01a3c12009-12-16 22:10:49 +00005400 nByteWInfo = ROUND8(sizeof(WhereInfo)+(nTabList-1)*sizeof(WhereLevel));
drh87c05f02016-10-03 14:44:47 +00005401 pWInfo = sqlite3DbMallocRawNN(db, nByteWInfo + sizeof(WhereLoop));
drh17435752007-08-16 04:30:38 +00005402 if( db->mallocFailed ){
drh8b307fb2010-04-06 15:57:05 +00005403 sqlite3DbFree(db, pWInfo);
5404 pWInfo = 0;
danielk197785574e32008-10-06 05:32:18 +00005405 goto whereBeginError;
drh75897232000-05-29 14:26:00 +00005406 }
5407 pWInfo->pParse = pParse;
5408 pWInfo->pTabList = pTabList;
drh6b7157b2013-05-10 02:00:35 +00005409 pWInfo->pOrderBy = pOrderBy;
drhaca19e12017-04-07 19:41:31 +00005410 pWInfo->pWhere = pWhere;
drh6457a352013-06-21 00:35:37 +00005411 pWInfo->pResultSet = pResultSet;
drh87c05f02016-10-03 14:44:47 +00005412 pWInfo->aiCurOnePass[0] = pWInfo->aiCurOnePass[1] = -1;
5413 pWInfo->nLevel = nTabList;
drhec4ccdb2018-12-29 02:26:59 +00005414 pWInfo->iBreak = pWInfo->iContinue = sqlite3VdbeMakeLabel(pParse);
drh6df2acd2008-12-28 16:55:25 +00005415 pWInfo->wctrlFlags = wctrlFlags;
drhc3489bb2016-02-25 16:04:59 +00005416 pWInfo->iLimit = iAuxArg;
drh8b307fb2010-04-06 15:57:05 +00005417 pWInfo->savedNQueryLoop = pParse->nQueryLoop;
drh895bab32022-01-27 16:14:50 +00005418#ifndef SQLITE_OMIT_VIRTUALTABLE
5419 pWInfo->pLimit = pLimit;
5420#endif
drh87c05f02016-10-03 14:44:47 +00005421 memset(&pWInfo->nOBSat, 0,
5422 offsetof(WhereInfo,sWC) - offsetof(WhereInfo,nOBSat));
5423 memset(&pWInfo->a[0], 0, sizeof(WhereLoop)+nTabList*sizeof(WhereLevel));
drhb0264ee2015-09-14 14:45:50 +00005424 assert( pWInfo->eOnePass==ONEPASS_OFF ); /* ONEPASS defaults to OFF */
drh70d18342013-06-06 19:16:33 +00005425 pMaskSet = &pWInfo->sMaskSet;
drh844a89b2021-12-02 12:34:05 +00005426 pMaskSet->n = 0;
5427 pMaskSet->ix[0] = -99; /* Initialize ix[0] to a value that can never be
5428 ** a valid cursor number, to avoid an initial
5429 ** test for pMaskSet->n==0 in sqlite3WhereGetMask() */
drh1c8148f2013-05-04 20:25:23 +00005430 sWLB.pWInfo = pWInfo;
drh70d18342013-06-06 19:16:33 +00005431 sWLB.pWC = &pWInfo->sWC;
drh1ac87e12013-07-18 14:50:56 +00005432 sWLB.pNew = (WhereLoop*)(((char*)pWInfo)+nByteWInfo);
5433 assert( EIGHT_BYTE_ALIGNMENT(sWLB.pNew) );
drh60c96cd2013-06-09 17:21:25 +00005434 whereLoopInit(sWLB.pNew);
drhb8a8e8a2013-06-10 19:12:39 +00005435#ifdef SQLITE_DEBUG
5436 sWLB.pNew->cId = '*';
5437#endif
drh08192d52002-04-30 19:20:28 +00005438
drh111a6a72008-12-21 03:51:16 +00005439 /* Split the WHERE clause into separate subexpressions where each
5440 ** subexpression is separated by an AND operator.
5441 */
drh6c1f4ef2015-06-08 14:23:15 +00005442 sqlite3WhereClauseInit(&pWInfo->sWC, pWInfo);
5443 sqlite3WhereSplit(&pWInfo->sWC, pWhere, TK_AND);
drh111a6a72008-12-21 03:51:16 +00005444
drh4fe425a2013-06-12 17:08:06 +00005445 /* Special case: No FROM clause
5446 */
5447 if( nTabList==0 ){
drhddba0c22014-03-18 20:33:42 +00005448 if( pOrderBy ) pWInfo->nOBSat = pOrderBy->nExpr;
drh9b3bfa02021-12-02 01:30:16 +00005449 if( (wctrlFlags & WHERE_WANT_DISTINCT)!=0
5450 && OptimizationEnabled(db, SQLITE_DistinctOpt)
5451 ){
drh6457a352013-06-21 00:35:37 +00005452 pWInfo->eDistinct = WHERE_DISTINCT_UNIQUE;
5453 }
drhfa16f5d2018-05-03 01:37:13 +00005454 ExplainQueryPlan((pParse, 0, "SCAN CONSTANT ROW"));
drh83e8ca52017-08-25 13:34:18 +00005455 }else{
5456 /* Assign a bit from the bitmask to every term in the FROM clause.
5457 **
5458 ** The N-th term of the FROM clause is assigned a bitmask of 1<<N.
5459 **
5460 ** The rule of the previous sentence ensures thta if X is the bitmask for
5461 ** a table T, then X-1 is the bitmask for all other tables to the left of T.
5462 ** Knowing the bitmask for all tables to the left of a left join is
5463 ** important. Ticket #3015.
5464 **
5465 ** Note that bitmasks are created for all pTabList->nSrc tables in
5466 ** pTabList, not just the first nTabList tables. nTabList is normally
5467 ** equal to pTabList->nSrc but might be shortened to 1 if the
5468 ** WHERE_OR_SUBCLAUSE flag is set.
5469 */
5470 ii = 0;
5471 do{
5472 createMask(pMaskSet, pTabList->a[ii].iCursor);
5473 sqlite3WhereTabFuncArgs(pParse, &pTabList->a[ii], &pWInfo->sWC);
5474 }while( (++ii)<pTabList->nSrc );
5475 #ifdef SQLITE_DEBUG
5476 {
5477 Bitmask mx = 0;
5478 for(ii=0; ii<pTabList->nSrc; ii++){
5479 Bitmask m = sqlite3WhereGetMask(pMaskSet, pTabList->a[ii].iCursor);
5480 assert( m>=mx );
5481 mx = m;
5482 }
drh269ba802017-07-04 19:34:36 +00005483 }
drh83e8ca52017-08-25 13:34:18 +00005484 #endif
drh4fe425a2013-06-12 17:08:06 +00005485 }
drh83e8ca52017-08-25 13:34:18 +00005486
drhb121dd12015-06-06 18:30:17 +00005487 /* Analyze all of the subexpressions. */
drh6c1f4ef2015-06-08 14:23:15 +00005488 sqlite3WhereExprAnalyze(pTabList, &pWInfo->sWC);
drh895bab32022-01-27 16:14:50 +00005489 sqlite3WhereAddLimit(&pWInfo->sWC, pLimit);
drhb121dd12015-06-06 18:30:17 +00005490 if( db->mallocFailed ) goto whereBeginError;
drh75897232000-05-29 14:26:00 +00005491
danc456a762017-06-22 16:51:16 +00005492 /* Special case: WHERE terms that do not refer to any tables in the join
5493 ** (constant expressions). Evaluate each such term, and jump over all the
5494 ** generated code if the result is not true.
5495 **
5496 ** Do not do this if the expression contains non-deterministic functions
5497 ** that are not within a sub-select. This is not strictly required, but
5498 ** preserves SQLite's legacy behaviour in the following two cases:
5499 **
5500 ** FROM ... WHERE random()>0; -- eval random() once per row
5501 ** FROM ... WHERE (SELECT random())>0; -- eval random() once overall
5502 */
drh132f96f2021-12-08 16:07:22 +00005503 for(ii=0; ii<sWLB.pWC->nBase; ii++){
danc456a762017-06-22 16:51:16 +00005504 WhereTerm *pT = &sWLB.pWC->a[ii];
drh33f10202018-01-27 05:40:10 +00005505 if( pT->wtFlags & TERM_VIRTUAL ) continue;
danc456a762017-06-22 16:51:16 +00005506 if( pT->prereqAll==0 && (nTabList==0 || exprIsDeterministic(pT->pExpr)) ){
5507 sqlite3ExprIfFalse(pParse, pT->pExpr, pWInfo->iBreak, SQLITE_JUMPIFNULL);
5508 pT->wtFlags |= TERM_CODED;
5509 }
5510 }
5511
drh6457a352013-06-21 00:35:37 +00005512 if( wctrlFlags & WHERE_WANT_DISTINCT ){
drh9b3bfa02021-12-02 01:30:16 +00005513 if( OptimizationDisabled(db, SQLITE_DistinctOpt) ){
5514 /* Disable the DISTINCT optimization if SQLITE_DistinctOpt is set via
5515 ** sqlite3_test_ctrl(SQLITE_TESTCTRL_OPTIMIZATIONS,...) */
5516 wctrlFlags &= ~WHERE_WANT_DISTINCT;
5517 pWInfo->wctrlFlags &= ~WHERE_WANT_DISTINCT;
5518 }else if( isDistinctRedundant(pParse, pTabList, &pWInfo->sWC, pResultSet) ){
drh6457a352013-06-21 00:35:37 +00005519 /* The DISTINCT marking is pointless. Ignore it. */
drh4f402f22013-06-11 18:59:38 +00005520 pWInfo->eDistinct = WHERE_DISTINCT_UNIQUE;
5521 }else if( pOrderBy==0 ){
drh6457a352013-06-21 00:35:37 +00005522 /* Try to ORDER BY the result set to make distinct processing easier */
drh4f402f22013-06-11 18:59:38 +00005523 pWInfo->wctrlFlags |= WHERE_DISTINCTBY;
drh6457a352013-06-21 00:35:37 +00005524 pWInfo->pOrderBy = pResultSet;
drh4f402f22013-06-11 18:59:38 +00005525 }
dan38cc40c2011-06-30 20:17:15 +00005526 }
5527
drhf1b5f5b2013-05-02 00:15:01 +00005528 /* Construct the WhereLoop objects */
drhc90713d2014-09-30 13:46:49 +00005529#if defined(WHERETRACE_ENABLED)
drhc3489bb2016-02-25 16:04:59 +00005530 if( sqlite3WhereTrace & 0xffff ){
5531 sqlite3DebugPrintf("*** Optimizer Start *** (wctrlFlags: 0x%x",wctrlFlags);
5532 if( wctrlFlags & WHERE_USE_LIMIT ){
5533 sqlite3DebugPrintf(", limit: %d", iAuxArg);
5534 }
5535 sqlite3DebugPrintf(")\n");
drh55b4c822019-08-03 16:17:46 +00005536 if( sqlite3WhereTrace & 0x100 ){
5537 Select sSelect;
5538 memset(&sSelect, 0, sizeof(sSelect));
5539 sSelect.selFlags = SF_WhereBegin;
5540 sSelect.pSrc = pTabList;
5541 sSelect.pWhere = pWhere;
5542 sSelect.pOrderBy = pOrderBy;
5543 sSelect.pEList = pResultSet;
5544 sqlite3TreeViewSelect(0, &sSelect, 0);
5545 }
drhc3489bb2016-02-25 16:04:59 +00005546 }
drhb121dd12015-06-06 18:30:17 +00005547 if( sqlite3WhereTrace & 0x100 ){ /* Display all terms of the WHERE clause */
drh05fbfd82019-12-05 17:31:58 +00005548 sqlite3DebugPrintf("---- WHERE clause at start of analysis:\n");
drhc84a4022016-05-27 12:30:20 +00005549 sqlite3WhereClausePrint(sWLB.pWC);
drhc90713d2014-09-30 13:46:49 +00005550 }
5551#endif
5552
drhb8a8e8a2013-06-10 19:12:39 +00005553 if( nTabList!=1 || whereShortCut(&sWLB)==0 ){
drh60c96cd2013-06-09 17:21:25 +00005554 rc = whereLoopAddAll(&sWLB);
5555 if( rc ) goto whereBeginError;
drh89efac92020-02-22 16:58:49 +00005556
5557#ifdef SQLITE_ENABLE_STAT4
5558 /* If one or more WhereTerm.truthProb values were used in estimating
5559 ** loop parameters, but then those truthProb values were subsequently
5560 ** changed based on STAT4 information while computing subsequent loops,
5561 ** then we need to rerun the whole loop building process so that all
5562 ** loops will be built using the revised truthProb values. */
5563 if( sWLB.bldFlags2 & SQLITE_BLDF2_2NDPASS ){
drhcea19512020-02-22 18:27:48 +00005564 WHERETRACE_ALL_LOOPS(pWInfo, sWLB.pWC);
drh89efac92020-02-22 16:58:49 +00005565 WHERETRACE(0xffff,
drhf06cdde2020-02-24 16:46:08 +00005566 ("**** Redo all loop computations due to"
5567 " TERM_HIGHTRUTH changes ****\n"));
drh89efac92020-02-22 16:58:49 +00005568 while( pWInfo->pLoops ){
5569 WhereLoop *p = pWInfo->pLoops;
5570 pWInfo->pLoops = p->pNextLoop;
5571 whereLoopDelete(db, p);
5572 }
5573 rc = whereLoopAddAll(&sWLB);
5574 if( rc ) goto whereBeginError;
5575 }
5576#endif
drhcea19512020-02-22 18:27:48 +00005577 WHERETRACE_ALL_LOOPS(pWInfo, sWLB.pWC);
drh60c96cd2013-06-09 17:21:25 +00005578
drh4f402f22013-06-11 18:59:38 +00005579 wherePathSolver(pWInfo, 0);
drh60c96cd2013-06-09 17:21:25 +00005580 if( db->mallocFailed ) goto whereBeginError;
5581 if( pWInfo->pOrderBy ){
drhc7f0d222013-06-19 03:27:12 +00005582 wherePathSolver(pWInfo, pWInfo->nRowOut+1);
drh60c96cd2013-06-09 17:21:25 +00005583 if( db->mallocFailed ) goto whereBeginError;
drha18f3d22013-05-08 03:05:41 +00005584 }
5585 }
drh60c96cd2013-06-09 17:21:25 +00005586 if( pWInfo->pOrderBy==0 && (db->flags & SQLITE_ReverseOrder)!=0 ){
drh8426e362016-03-08 01:32:30 +00005587 pWInfo->revMask = ALLBITS;
drha50ef112013-05-22 02:06:59 +00005588 }
drh0c7d3d32022-01-24 16:47:12 +00005589 if( pParse->nErr ){
drh75b93402013-05-31 20:43:57 +00005590 goto whereBeginError;
5591 }
drh0c7d3d32022-01-24 16:47:12 +00005592 assert( db->mallocFailed==0 );
drhb121dd12015-06-06 18:30:17 +00005593#ifdef WHERETRACE_ENABLED
drha18f3d22013-05-08 03:05:41 +00005594 if( sqlite3WhereTrace ){
drh4f402f22013-06-11 18:59:38 +00005595 sqlite3DebugPrintf("---- Solution nRow=%d", pWInfo->nRowOut);
drhddba0c22014-03-18 20:33:42 +00005596 if( pWInfo->nOBSat>0 ){
5597 sqlite3DebugPrintf(" ORDERBY=%d,0x%llx", pWInfo->nOBSat, pWInfo->revMask);
drh319f6772013-05-14 15:31:07 +00005598 }
drh4f402f22013-06-11 18:59:38 +00005599 switch( pWInfo->eDistinct ){
5600 case WHERE_DISTINCT_UNIQUE: {
5601 sqlite3DebugPrintf(" DISTINCT=unique");
5602 break;
5603 }
5604 case WHERE_DISTINCT_ORDERED: {
5605 sqlite3DebugPrintf(" DISTINCT=ordered");
5606 break;
5607 }
5608 case WHERE_DISTINCT_UNORDERED: {
5609 sqlite3DebugPrintf(" DISTINCT=unordered");
5610 break;
5611 }
5612 }
5613 sqlite3DebugPrintf("\n");
drhfd636c72013-06-21 02:05:06 +00005614 for(ii=0; ii<pWInfo->nLevel; ii++){
drhcacdf202019-12-28 13:39:47 +00005615 sqlite3WhereLoopPrint(pWInfo->a[ii].pWLoop, sWLB.pWC);
drhf1b5f5b2013-05-02 00:15:01 +00005616 }
5617 }
5618#endif
dan41203c62017-11-21 19:22:45 +00005619
drh70b403b2021-12-03 18:53:53 +00005620 /* Attempt to omit tables from a join that do not affect the result.
5621 ** See the comment on whereOmitNoopJoin() for further information.
dan41203c62017-11-21 19:22:45 +00005622 **
drh70b403b2021-12-03 18:53:53 +00005623 ** This query optimization is factored out into a separate "no-inline"
5624 ** procedure to keep the sqlite3WhereBegin() procedure from becoming
5625 ** too large. If sqlite3WhereBegin() becomes too large, that prevents
5626 ** some C-compiler optimizers from in-lining the
5627 ** sqlite3WhereCodeOneLoopStart() procedure, and it is important to
5628 ** in-line sqlite3WhereCodeOneLoopStart() for performance reasons.
dan41203c62017-11-21 19:22:45 +00005629 */
drh53bf7172017-11-23 04:45:35 +00005630 notReady = ~(Bitmask)0;
drh1031bd92013-06-22 15:44:26 +00005631 if( pWInfo->nLevel>=2
danf330d532021-04-03 19:23:59 +00005632 && pResultSet!=0 /* these two combine to guarantee */
5633 && 0==(wctrlFlags & WHERE_AGG_DISTINCT) /* condition (1) above */
drh1031bd92013-06-22 15:44:26 +00005634 && OptimizationEnabled(db, SQLITE_OmitNoopJoin)
5635 ){
drh70b403b2021-12-03 18:53:53 +00005636 notReady = whereOmitNoopJoin(pWInfo, notReady);
5637 nTabList = pWInfo->nLevel;
5638 assert( nTabList>0 );
drhfd636c72013-06-21 02:05:06 +00005639 }
drh70b403b2021-12-03 18:53:53 +00005640
drhfa35f5c2021-12-04 13:43:57 +00005641 /* Check to see if there are any SEARCH loops that might benefit from
5642 ** using a Bloom filter.
5643 */
5644 if( pWInfo->nLevel>=2
5645 && OptimizationEnabled(db, SQLITE_BloomFilter)
5646 ){
drhfecbf0a2021-12-04 21:11:18 +00005647 whereCheckIfBloomFilterIsUseful(pWInfo);
drhfa35f5c2021-12-04 13:43:57 +00005648 }
5649
drh05fbfd82019-12-05 17:31:58 +00005650#if defined(WHERETRACE_ENABLED)
5651 if( sqlite3WhereTrace & 0x100 ){ /* Display all terms of the WHERE clause */
5652 sqlite3DebugPrintf("---- WHERE clause at end of analysis:\n");
5653 sqlite3WhereClausePrint(sWLB.pWC);
5654 }
drh3b48e8c2013-06-12 20:18:16 +00005655 WHERETRACE(0xffff,("*** Optimizer Finished ***\n"));
drh05fbfd82019-12-05 17:31:58 +00005656#endif
drh8e23daf2013-06-11 13:30:04 +00005657 pWInfo->pParse->nQueryLoop += pWInfo->nRowOut;
drhf1b5f5b2013-05-02 00:15:01 +00005658
drh08c88eb2008-04-10 13:33:18 +00005659 /* If the caller is an UPDATE or DELETE statement that is requesting
5660 ** to use a one-pass algorithm, determine if this is appropriate.
dan0c2ba132018-01-16 13:37:43 +00005661 **
5662 ** A one-pass approach can be used if the caller has requested one
5663 ** and either (a) the scan visits at most one row or (b) each
5664 ** of the following are true:
5665 **
5666 ** * the caller has indicated that a one-pass approach can be used
5667 ** with multiple rows (by setting WHERE_ONEPASS_MULTIROW), and
5668 ** * the table is not a virtual table, and
5669 ** * either the scan does not use the OR optimization or the caller
5670 ** is a DELETE operation (WHERE_DUPLICATES_OK is only specified
5671 ** for DELETE).
5672 **
5673 ** The last qualification is because an UPDATE statement uses
5674 ** WhereInfo.aiCurOnePass[1] to determine whether or not it really can
5675 ** use a one-pass approach, and this is not set accurately for scans
5676 ** that use the OR optimization.
drh08c88eb2008-04-10 13:33:18 +00005677 */
drh165be382008-12-05 02:36:33 +00005678 assert( (wctrlFlags & WHERE_ONEPASS_DESIRED)==0 || pWInfo->nLevel==1 );
danf0ee1d32015-09-12 19:26:11 +00005679 if( (wctrlFlags & WHERE_ONEPASS_DESIRED)!=0 ){
5680 int wsFlags = pWInfo->a[0].pWLoop->wsFlags;
5681 int bOnerow = (wsFlags & WHERE_ONEROW)!=0;
dan58ed3742019-01-15 14:31:01 +00005682 assert( !(wsFlags & WHERE_VIRTUALTABLE) || IsVirtual(pTabList->a[0].pTab) );
dan0c2ba132018-01-16 13:37:43 +00005683 if( bOnerow || (
5684 0!=(wctrlFlags & WHERE_ONEPASS_MULTIROW)
dan58ed3742019-01-15 14:31:01 +00005685 && !IsVirtual(pTabList->a[0].pTab)
dan0c2ba132018-01-16 13:37:43 +00005686 && (0==(wsFlags & WHERE_MULTI_OR) || (wctrlFlags & WHERE_DUPLICATES_OK))
5687 )){
drhb0264ee2015-09-14 14:45:50 +00005688 pWInfo->eOnePass = bOnerow ? ONEPASS_SINGLE : ONEPASS_MULTI;
danfd261ec2015-10-22 20:54:33 +00005689 if( HasRowid(pTabList->a[0].pTab) && (wsFlags & WHERE_IDX_ONLY) ){
5690 if( wctrlFlags & WHERE_ONEPASS_MULTIROW ){
5691 bFordelete = OPFLAG_FORDELETE;
5692 }
5693 pWInfo->a[0].pWLoop->wsFlags = (wsFlags & ~WHERE_IDX_ONLY);
danf0ee1d32015-09-12 19:26:11 +00005694 }
drh702ba9f2013-11-07 21:25:13 +00005695 }
drh08c88eb2008-04-10 13:33:18 +00005696 }
drheb04de32013-05-10 15:16:30 +00005697
drh9012bcb2004-12-19 00:11:35 +00005698 /* Open all tables in the pTabList and any indices selected for
5699 ** searching those tables.
5700 */
drh9cd1c992012-09-25 20:43:35 +00005701 for(ii=0, pLevel=pWInfo->a; ii<nTabList; ii++, pLevel++){
danielk1977da184232006-01-05 11:34:32 +00005702 Table *pTab; /* Table to open */
danielk1977da184232006-01-05 11:34:32 +00005703 int iDb; /* Index of database containing table/index */
drh76012942021-02-21 21:04:54 +00005704 SrcItem *pTabItem;
drh9012bcb2004-12-19 00:11:35 +00005705
drh29dda4a2005-07-21 18:23:20 +00005706 pTabItem = &pTabList->a[pLevel->iFrom];
drh9012bcb2004-12-19 00:11:35 +00005707 pTab = pTabItem->pTab;
danielk1977595a5232009-07-24 17:58:53 +00005708 iDb = sqlite3SchemaToIndex(db, pTab->pSchema);
drh7ba39a92013-05-30 17:43:19 +00005709 pLoop = pLevel->pWLoop;
drhf38524d2021-08-02 16:41:57 +00005710 if( (pTab->tabFlags & TF_Ephemeral)!=0 || IsView(pTab) ){
drh75bb9f52010-04-06 18:51:42 +00005711 /* Do nothing */
5712 }else
drh9eff6162006-06-12 21:59:13 +00005713#ifndef SQLITE_OMIT_VIRTUALTABLE
drh7ba39a92013-05-30 17:43:19 +00005714 if( (pLoop->wsFlags & WHERE_VIRTUALTABLE)!=0 ){
danielk1977595a5232009-07-24 17:58:53 +00005715 const char *pVTab = (const char *)sqlite3GetVTable(db, pTab);
danielk197793626f42006-06-20 13:07:27 +00005716 int iCur = pTabItem->iCursor;
danielk1977595a5232009-07-24 17:58:53 +00005717 sqlite3VdbeAddOp4(v, OP_VOpen, iCur, 0, 0, pVTab, P4_VTAB);
drhfc5e5462012-12-03 17:04:40 +00005718 }else if( IsVirtual(pTab) ){
5719 /* noop */
drh9eff6162006-06-12 21:59:13 +00005720 }else
5721#endif
drh7ba39a92013-05-30 17:43:19 +00005722 if( (pLoop->wsFlags & WHERE_IDX_ONLY)==0
drhce943bc2016-05-19 18:56:33 +00005723 && (wctrlFlags & WHERE_OR_SUBCLAUSE)==0 ){
drhfc8d4f92013-11-08 15:19:46 +00005724 int op = OP_OpenRead;
drhb0264ee2015-09-14 14:45:50 +00005725 if( pWInfo->eOnePass!=ONEPASS_OFF ){
drhfc8d4f92013-11-08 15:19:46 +00005726 op = OP_OpenWrite;
5727 pWInfo->aiCurOnePass[0] = pTabItem->iCursor;
5728 };
drh08c88eb2008-04-10 13:33:18 +00005729 sqlite3OpenTable(pParse, pTabItem->iCursor, iDb, pTab, op);
drhfc8d4f92013-11-08 15:19:46 +00005730 assert( pTabItem->iCursor==pLevel->iTabCur );
drhb0264ee2015-09-14 14:45:50 +00005731 testcase( pWInfo->eOnePass==ONEPASS_OFF && pTab->nCol==BMS-1 );
5732 testcase( pWInfo->eOnePass==ONEPASS_OFF && pTab->nCol==BMS );
drh1a9082f2019-11-01 15:19:24 +00005733 if( pWInfo->eOnePass==ONEPASS_OFF
5734 && pTab->nCol<BMS
5735 && (pTab->tabFlags & (TF_HasGenerated|TF_WithoutRowid))==0
drh87fb37e2022-01-31 15:59:43 +00005736 && (pLoop->wsFlags & (WHERE_AUTO_INDEX|WHERE_BLOOMFILTER))==0
drh1a9082f2019-11-01 15:19:24 +00005737 ){
5738 /* If we know that only a prefix of the record will be used,
5739 ** it is advantageous to reduce the "column count" field in
5740 ** the P4 operand of the OP_OpenRead/Write opcode. */
danielk19779792eef2006-01-13 15:58:43 +00005741 Bitmask b = pTabItem->colUsed;
5742 int n = 0;
drh74161702006-02-24 02:53:49 +00005743 for(; b; b=b>>1, n++){}
drh00dceca2016-01-11 22:58:50 +00005744 sqlite3VdbeChangeP4(v, -1, SQLITE_INT_TO_PTR(n), P4_INT32);
danielk19779792eef2006-01-13 15:58:43 +00005745 assert( n<=pTab->nCol );
5746 }
drhba25c7e2020-03-12 17:54:39 +00005747#ifdef SQLITE_ENABLE_CURSOR_HINTS
danc5dc3dc2015-10-26 20:11:24 +00005748 if( pLoop->u.btree.pIndex!=0 ){
5749 sqlite3VdbeChangeP5(v, OPFLAG_SEEKEQ|bFordelete);
5750 }else
drh2f2b0272015-08-14 18:50:04 +00005751#endif
danc5dc3dc2015-10-26 20:11:24 +00005752 {
5753 sqlite3VdbeChangeP5(v, bFordelete);
5754 }
drh97bae792015-06-05 15:59:57 +00005755#ifdef SQLITE_ENABLE_COLUMN_USED_MASK
5756 sqlite3VdbeAddOp4Dup8(v, OP_ColumnsUsed, pTabItem->iCursor, 0, 0,
5757 (const u8*)&pTabItem->colUsed, P4_INT64);
5758#endif
danielk1977c00da102006-01-07 13:21:04 +00005759 }else{
5760 sqlite3TableLock(pParse, iDb, pTab->tnum, 0, pTab->zName);
drh9012bcb2004-12-19 00:11:35 +00005761 }
drh7e47cb82013-05-31 17:55:27 +00005762 if( pLoop->wsFlags & WHERE_INDEXED ){
drh7ba39a92013-05-30 17:43:19 +00005763 Index *pIx = pLoop->u.btree.pIndex;
drhfc8d4f92013-11-08 15:19:46 +00005764 int iIndexCur;
5765 int op = OP_OpenRead;
drh154896e2017-09-15 14:36:13 +00005766 /* iAuxArg is always set to a positive value if ONEPASS is possible */
drhc3489bb2016-02-25 16:04:59 +00005767 assert( iAuxArg!=0 || (pWInfo->wctrlFlags & WHERE_ONEPASS_DESIRED)==0 );
drh48dd1d82014-05-27 18:18:58 +00005768 if( !HasRowid(pTab) && IsPrimaryKeyIndex(pIx)
drhce943bc2016-05-19 18:56:33 +00005769 && (wctrlFlags & WHERE_OR_SUBCLAUSE)!=0
drha3bc66a2014-05-27 17:57:32 +00005770 ){
5771 /* This is one term of an OR-optimization using the PRIMARY KEY of a
5772 ** WITHOUT ROWID table. No need for a separate index */
5773 iIndexCur = pLevel->iTabCur;
5774 op = 0;
drhb0264ee2015-09-14 14:45:50 +00005775 }else if( pWInfo->eOnePass!=ONEPASS_OFF ){
drhfc8d4f92013-11-08 15:19:46 +00005776 Index *pJ = pTabItem->pTab->pIndex;
drhc3489bb2016-02-25 16:04:59 +00005777 iIndexCur = iAuxArg;
drhfc8d4f92013-11-08 15:19:46 +00005778 assert( wctrlFlags & WHERE_ONEPASS_DESIRED );
5779 while( ALWAYS(pJ) && pJ!=pIx ){
5780 iIndexCur++;
5781 pJ = pJ->pNext;
5782 }
5783 op = OP_OpenWrite;
5784 pWInfo->aiCurOnePass[1] = iIndexCur;
drhce943bc2016-05-19 18:56:33 +00005785 }else if( iAuxArg && (wctrlFlags & WHERE_OR_SUBCLAUSE)!=0 ){
drhc3489bb2016-02-25 16:04:59 +00005786 iIndexCur = iAuxArg;
drha72a15e2016-05-09 19:58:56 +00005787 op = OP_ReopenIdx;
drhfc8d4f92013-11-08 15:19:46 +00005788 }else{
5789 iIndexCur = pParse->nTab++;
5790 }
5791 pLevel->iIdxCur = iIndexCur;
danielk1977da184232006-01-05 11:34:32 +00005792 assert( pIx->pSchema==pTab->pSchema );
drhb0367fb2012-08-25 02:11:13 +00005793 assert( iIndexCur>=0 );
drha3bc66a2014-05-27 17:57:32 +00005794 if( op ){
5795 sqlite3VdbeAddOp3(v, op, iIndexCur, pIx->tnum, iDb);
5796 sqlite3VdbeSetP4KeyInfo(pParse, pIx);
drhe0997b32015-03-20 14:57:50 +00005797 if( (pLoop->wsFlags & WHERE_CONSTRAINT)!=0
5798 && (pLoop->wsFlags & (WHERE_COLUMN_RANGE|WHERE_SKIPSCAN))==0
dan15750a22019-08-16 21:07:19 +00005799 && (pLoop->wsFlags & WHERE_BIGNULL_SORT)==0
drh68cf0ac2020-09-28 19:51:54 +00005800 && (pLoop->wsFlags & WHERE_IN_SEEKSCAN)==0
drhe0997b32015-03-20 14:57:50 +00005801 && (pWInfo->wctrlFlags&WHERE_ORDERBY_MIN)==0
drh8489bf52017-04-13 01:19:30 +00005802 && pWInfo->eDistinct!=WHERE_DISTINCT_ORDERED
drhe0997b32015-03-20 14:57:50 +00005803 ){
drh576d0a92020-03-12 17:28:27 +00005804 sqlite3VdbeChangeP5(v, OPFLAG_SEEKEQ);
drhe0997b32015-03-20 14:57:50 +00005805 }
drha3bc66a2014-05-27 17:57:32 +00005806 VdbeComment((v, "%s", pIx->zName));
drh97bae792015-06-05 15:59:57 +00005807#ifdef SQLITE_ENABLE_COLUMN_USED_MASK
5808 {
5809 u64 colUsed = 0;
5810 int ii, jj;
5811 for(ii=0; ii<pIx->nColumn; ii++){
5812 jj = pIx->aiColumn[ii];
5813 if( jj<0 ) continue;
5814 if( jj>63 ) jj = 63;
5815 if( (pTabItem->colUsed & MASKBIT(jj))==0 ) continue;
5816 colUsed |= ((u64)1)<<(ii<63 ? ii : 63);
5817 }
5818 sqlite3VdbeAddOp4Dup8(v, OP_ColumnsUsed, iIndexCur, 0, 0,
5819 (u8*)&colUsed, P4_INT64);
5820 }
5821#endif /* SQLITE_ENABLE_COLUMN_USED_MASK */
drha3bc66a2014-05-27 17:57:32 +00005822 }
drh9012bcb2004-12-19 00:11:35 +00005823 }
drhaceb31b2014-02-08 01:40:27 +00005824 if( iDb>=0 ) sqlite3CodeVerifySchema(pParse, iDb);
drh9012bcb2004-12-19 00:11:35 +00005825 }
5826 pWInfo->iTop = sqlite3VdbeCurrentAddr(v);
drha21a64d2010-04-06 22:33:55 +00005827 if( db->mallocFailed ) goto whereBeginError;
drh9012bcb2004-12-19 00:11:35 +00005828
drh29dda4a2005-07-21 18:23:20 +00005829 /* Generate the code to do the search. Each iteration of the for
5830 ** loop below generates code for a single nested loop of the VM
5831 ** program.
drh75897232000-05-29 14:26:00 +00005832 */
drh9cd1c992012-09-25 20:43:35 +00005833 for(ii=0; ii<nTabList; ii++){
dan6f9702e2014-11-01 20:38:06 +00005834 int addrExplain;
5835 int wsFlags;
drh6d64b4a2021-11-07 23:33:01 +00005836 if( pParse->nErr ) goto whereBeginError;
drh9cd1c992012-09-25 20:43:35 +00005837 pLevel = &pWInfo->a[ii];
dan6f9702e2014-11-01 20:38:06 +00005838 wsFlags = pLevel->pWLoop->wsFlags;
drhfa35f5c2021-12-04 13:43:57 +00005839 if( (wsFlags & (WHERE_AUTO_INDEX|WHERE_BLOOMFILTER))!=0 ){
5840 if( (wsFlags & WHERE_AUTO_INDEX)!=0 ){
drhcc04afd2013-08-22 02:56:28 +00005841#ifndef SQLITE_OMIT_AUTOMATIC_INDEX
drhfa35f5c2021-12-04 13:43:57 +00005842 constructAutomaticIndex(pParse, &pWInfo->sWC,
5843 &pTabList->a[pLevel->iFrom], notReady, pLevel);
5844#endif
5845 }else{
drh27a9e1f2021-12-10 17:36:16 +00005846 sqlite3ConstructBloomFilter(pWInfo, ii, pLevel, notReady);
drhfa35f5c2021-12-04 13:43:57 +00005847 }
drhcc04afd2013-08-22 02:56:28 +00005848 if( db->mallocFailed ) goto whereBeginError;
5849 }
drh6f82e852015-06-06 20:12:09 +00005850 addrExplain = sqlite3WhereExplainOneScan(
drhe2188f02018-05-07 11:37:34 +00005851 pParse, pTabList, pLevel, wctrlFlags
dan6f9702e2014-11-01 20:38:06 +00005852 );
drhcc04afd2013-08-22 02:56:28 +00005853 pLevel->addrBody = sqlite3VdbeCurrentAddr(v);
drh47df8a22018-12-25 00:15:37 +00005854 notReady = sqlite3WhereCodeOneLoopStart(pParse,v,pWInfo,ii,pLevel,notReady);
dan4a07e3d2010-11-09 14:48:59 +00005855 pWInfo->iContinue = pLevel->addrCont;
drhce943bc2016-05-19 18:56:33 +00005856 if( (wsFlags&WHERE_MULTI_OR)==0 && (wctrlFlags&WHERE_OR_SUBCLAUSE)==0 ){
drh6f82e852015-06-06 20:12:09 +00005857 sqlite3WhereAddScanStatus(v, pTabList, pLevel, addrExplain);
dan6f9702e2014-11-01 20:38:06 +00005858 }
drh75897232000-05-29 14:26:00 +00005859 }
drh7ec764a2005-07-21 03:48:20 +00005860
drh6fa978d2013-05-30 19:29:19 +00005861 /* Done. */
drh6bc69a22013-11-19 12:33:23 +00005862 VdbeModuleComment((v, "Begin WHERE-core"));
drh5e6d90f2020-08-14 17:39:31 +00005863 pWInfo->iEndWhere = sqlite3VdbeCurrentAddr(v);
drh75897232000-05-29 14:26:00 +00005864 return pWInfo;
drhe23399f2005-07-22 00:31:39 +00005865
5866 /* Jump here if malloc fails */
danielk197785574e32008-10-06 05:32:18 +00005867whereBeginError:
drh8b307fb2010-04-06 15:57:05 +00005868 if( pWInfo ){
drhd784cc82021-04-15 12:56:44 +00005869 testcase( pWInfo->pExprMods!=0 );
5870 whereUndoExprMods(pWInfo);
drh8b307fb2010-04-06 15:57:05 +00005871 pParse->nQueryLoop = pWInfo->savedNQueryLoop;
5872 whereInfoFree(db, pWInfo);
5873 }
drhe23399f2005-07-22 00:31:39 +00005874 return 0;
drh75897232000-05-29 14:26:00 +00005875}
5876
5877/*
drh299bf7c2018-06-11 17:35:02 +00005878** Part of sqlite3WhereEnd() will rewrite opcodes to reference the
5879** index rather than the main table. In SQLITE_DEBUG mode, we want
5880** to trace those changes if PRAGMA vdbe_addoptrace=on. This routine
5881** does that.
5882*/
5883#ifndef SQLITE_DEBUG
5884# define OpcodeRewriteTrace(D,K,P) /* no-op */
5885#else
5886# define OpcodeRewriteTrace(D,K,P) sqlite3WhereOpcodeRewriteTrace(D,K,P)
5887 static void sqlite3WhereOpcodeRewriteTrace(
5888 sqlite3 *db,
5889 int pc,
5890 VdbeOp *pOp
5891 ){
5892 if( (db->flags & SQLITE_VdbeAddopTrace)==0 ) return;
5893 sqlite3VdbePrintOp(0, pc, pOp);
5894 }
5895#endif
5896
5897/*
drhc27a1ce2002-06-14 20:58:45 +00005898** Generate the end of the WHERE loop. See comments on
danielk19774adee202004-05-08 08:23:19 +00005899** sqlite3WhereBegin() for additional information.
drh75897232000-05-29 14:26:00 +00005900*/
danielk19774adee202004-05-08 08:23:19 +00005901void sqlite3WhereEnd(WhereInfo *pWInfo){
drh633e6d52008-07-28 19:34:53 +00005902 Parse *pParse = pWInfo->pParse;
5903 Vdbe *v = pParse->pVdbe;
drh19a775c2000-06-05 18:54:46 +00005904 int i;
drh6b563442001-11-07 16:48:26 +00005905 WhereLevel *pLevel;
drh7ba39a92013-05-30 17:43:19 +00005906 WhereLoop *pLoop;
drhad3cab52002-05-24 02:04:32 +00005907 SrcList *pTabList = pWInfo->pTabList;
drh633e6d52008-07-28 19:34:53 +00005908 sqlite3 *db = pParse->db;
drhf8556d02020-08-14 21:32:16 +00005909 int iEnd = sqlite3VdbeCurrentAddr(v);
drh19a775c2000-06-05 18:54:46 +00005910
drh9012bcb2004-12-19 00:11:35 +00005911 /* Generate loop termination code.
5912 */
drh6bc69a22013-11-19 12:33:23 +00005913 VdbeModuleComment((v, "End WHERE-core"));
drhc01a3c12009-12-16 22:10:49 +00005914 for(i=pWInfo->nLevel-1; i>=0; i--){
drhcd8629e2013-11-13 12:27:25 +00005915 int addr;
drh6b563442001-11-07 16:48:26 +00005916 pLevel = &pWInfo->a[i];
drh7ba39a92013-05-30 17:43:19 +00005917 pLoop = pLevel->pWLoop;
drh6b563442001-11-07 16:48:26 +00005918 if( pLevel->op!=OP_Noop ){
drh8489bf52017-04-13 01:19:30 +00005919#ifndef SQLITE_DISABLE_SKIPAHEAD_DISTINCT
drhc04ea802017-04-13 19:48:29 +00005920 int addrSeek = 0;
drh839fa6d2017-04-13 13:01:59 +00005921 Index *pIdx;
drh172806e2017-04-13 21:29:02 +00005922 int n;
drh8489bf52017-04-13 01:19:30 +00005923 if( pWInfo->eDistinct==WHERE_DISTINCT_ORDERED
drhfa337cc2017-11-23 00:45:21 +00005924 && i==pWInfo->nLevel-1 /* Ticket [ef9318757b152e3] 2017-10-21 */
drh8489bf52017-04-13 01:19:30 +00005925 && (pLoop->wsFlags & WHERE_INDEXED)!=0
drh839fa6d2017-04-13 13:01:59 +00005926 && (pIdx = pLoop->u.btree.pIndex)->hasStat1
dana79a0e72019-07-29 14:42:56 +00005927 && (n = pLoop->u.btree.nDistinctCol)>0
drha2e2d922017-04-14 22:41:27 +00005928 && pIdx->aiRowLogEst[n]>=36
drh8489bf52017-04-13 01:19:30 +00005929 ){
drh172806e2017-04-13 21:29:02 +00005930 int r1 = pParse->nMem+1;
5931 int j, op;
drh8489bf52017-04-13 01:19:30 +00005932 for(j=0; j<n; j++){
5933 sqlite3VdbeAddOp3(v, OP_Column, pLevel->iIdxCur, j, r1+j);
5934 }
drh172806e2017-04-13 21:29:02 +00005935 pParse->nMem += n+1;
drh8489bf52017-04-13 01:19:30 +00005936 op = pLevel->op==OP_Prev ? OP_SeekLT : OP_SeekGT;
drhc04ea802017-04-13 19:48:29 +00005937 addrSeek = sqlite3VdbeAddOp4Int(v, op, pLevel->iIdxCur, 0, r1, n);
drh8489bf52017-04-13 01:19:30 +00005938 VdbeCoverageIf(v, op==OP_SeekLT);
5939 VdbeCoverageIf(v, op==OP_SeekGT);
5940 sqlite3VdbeAddOp2(v, OP_Goto, 1, pLevel->p2);
drh8489bf52017-04-13 01:19:30 +00005941 }
drhc04ea802017-04-13 19:48:29 +00005942#endif /* SQLITE_DISABLE_SKIPAHEAD_DISTINCT */
5943 /* The common case: Advance to the next row */
5944 sqlite3VdbeResolveLabel(v, pLevel->addrCont);
drhe39a7322014-02-03 14:04:11 +00005945 sqlite3VdbeAddOp3(v, pLevel->op, pLevel->p1, pLevel->p2, pLevel->p3);
drhd1d38482008-10-07 23:46:38 +00005946 sqlite3VdbeChangeP5(v, pLevel->p5);
drh688852a2014-02-17 22:40:43 +00005947 VdbeCoverage(v);
drh7d176102014-02-18 03:07:12 +00005948 VdbeCoverageIf(v, pLevel->op==OP_Next);
5949 VdbeCoverageIf(v, pLevel->op==OP_Prev);
5950 VdbeCoverageIf(v, pLevel->op==OP_VNext);
dan15750a22019-08-16 21:07:19 +00005951 if( pLevel->regBignull ){
5952 sqlite3VdbeResolveLabel(v, pLevel->addrBignull);
danbd717a42019-08-29 21:16:46 +00005953 sqlite3VdbeAddOp2(v, OP_DecrJumpZero, pLevel->regBignull, pLevel->p2-1);
drhdb586e42019-08-29 16:48:10 +00005954 VdbeCoverage(v);
dan15750a22019-08-16 21:07:19 +00005955 }
drhc04ea802017-04-13 19:48:29 +00005956#ifndef SQLITE_DISABLE_SKIPAHEAD_DISTINCT
5957 if( addrSeek ) sqlite3VdbeJumpHere(v, addrSeek);
5958#endif
dana74f5c22017-04-13 18:33:33 +00005959 }else{
5960 sqlite3VdbeResolveLabel(v, pLevel->addrCont);
drh19a775c2000-06-05 18:54:46 +00005961 }
drh04756292021-10-14 19:28:28 +00005962 if( (pLoop->wsFlags & WHERE_IN_ABLE)!=0 && pLevel->u.in.nIn>0 ){
drh72e8fa42007-03-28 14:30:06 +00005963 struct InLoop *pIn;
drhe23399f2005-07-22 00:31:39 +00005964 int j;
drhb3190c12008-12-08 21:37:14 +00005965 sqlite3VdbeResolveLabel(v, pLevel->addrNxt);
drh111a6a72008-12-21 03:51:16 +00005966 for(j=pLevel->u.in.nIn, pIn=&pLevel->u.in.aInLoop[j-1]; j>0; j--, pIn--){
drh81f5ef02021-04-29 15:49:34 +00005967 assert( sqlite3VdbeGetOp(v, pIn->addrInTop+1)->opcode==OP_IsNull
5968 || pParse->db->mallocFailed );
drhb3190c12008-12-08 21:37:14 +00005969 sqlite3VdbeJumpHere(v, pIn->addrInTop+1);
dan8da209b2016-07-26 18:06:08 +00005970 if( pIn->eEndLoopOp!=OP_Noop ){
drha0368d92018-05-30 00:54:23 +00005971 if( pIn->nPrefix ){
drhf761d932020-09-29 01:48:46 +00005972 int bEarlyOut =
5973 (pLoop->wsFlags & WHERE_VIRTUALTABLE)==0
5974 && (pLoop->wsFlags & WHERE_IN_EARLYOUT)!=0;
dan74ebaad2020-01-04 16:55:57 +00005975 if( pLevel->iLeftJoin ){
5976 /* For LEFT JOIN queries, cursor pIn->iCur may not have been
5977 ** opened yet. This occurs for WHERE clauses such as
5978 ** "a = ? AND b IN (...)", where the index is on (a, b). If
5979 ** the RHS of the (a=?) is NULL, then the "b IN (...)" may
5980 ** never have been coded, but the body of the loop run to
5981 ** return the null-row. So, if the cursor is not open yet,
5982 ** jump over the OP_Next or OP_Prev instruction about to
5983 ** be coded. */
5984 sqlite3VdbeAddOp2(v, OP_IfNotOpen, pIn->iCur,
drhf761d932020-09-29 01:48:46 +00005985 sqlite3VdbeCurrentAddr(v) + 2 + bEarlyOut);
dan74ebaad2020-01-04 16:55:57 +00005986 VdbeCoverage(v);
5987 }
drhf761d932020-09-29 01:48:46 +00005988 if( bEarlyOut ){
drh14c98a42020-03-16 03:07:53 +00005989 sqlite3VdbeAddOp4Int(v, OP_IfNoHope, pLevel->iIdxCur,
5990 sqlite3VdbeCurrentAddr(v)+2,
5991 pIn->iBase, pIn->nPrefix);
5992 VdbeCoverage(v);
drh81f5ef02021-04-29 15:49:34 +00005993 /* Retarget the OP_IsNull against the left operand of IN so
5994 ** it jumps past the OP_IfNoHope. This is because the
5995 ** OP_IsNull also bypasses the OP_Affinity opcode that is
5996 ** required by OP_IfNoHope. */
5997 sqlite3VdbeJumpHere(v, pIn->addrInTop+1);
drh14c98a42020-03-16 03:07:53 +00005998 }
drha0368d92018-05-30 00:54:23 +00005999 }
dan8da209b2016-07-26 18:06:08 +00006000 sqlite3VdbeAddOp2(v, pIn->eEndLoopOp, pIn->iCur, pIn->addrInTop);
6001 VdbeCoverage(v);
drhf1949b62018-06-07 17:32:59 +00006002 VdbeCoverageIf(v, pIn->eEndLoopOp==OP_Prev);
6003 VdbeCoverageIf(v, pIn->eEndLoopOp==OP_Next);
dan8da209b2016-07-26 18:06:08 +00006004 }
drhb3190c12008-12-08 21:37:14 +00006005 sqlite3VdbeJumpHere(v, pIn->addrInTop-1);
drhe23399f2005-07-22 00:31:39 +00006006 }
drhd99f7062002-06-08 23:25:08 +00006007 }
drhb3190c12008-12-08 21:37:14 +00006008 sqlite3VdbeResolveLabel(v, pLevel->addrBrk);
drhcd8629e2013-11-13 12:27:25 +00006009 if( pLevel->addrSkip ){
drh076e85f2015-09-03 13:46:12 +00006010 sqlite3VdbeGoto(v, pLevel->addrSkip);
drhe084f402013-11-13 17:24:38 +00006011 VdbeComment((v, "next skip-scan on %s", pLoop->u.btree.pIndex->zName));
drh2e5ef4e2013-11-13 16:58:54 +00006012 sqlite3VdbeJumpHere(v, pLevel->addrSkip);
6013 sqlite3VdbeJumpHere(v, pLevel->addrSkip-2);
drhcd8629e2013-11-13 12:27:25 +00006014 }
drh41d2e662015-12-01 21:23:07 +00006015#ifndef SQLITE_LIKE_DOESNT_MATCH_BLOBS
drhf07cf6e2015-03-06 16:45:16 +00006016 if( pLevel->addrLikeRep ){
drh44aebff2016-05-02 10:25:42 +00006017 sqlite3VdbeAddOp2(v, OP_DecrJumpZero, (int)(pLevel->iLikeRepCntr>>1),
6018 pLevel->addrLikeRep);
drhf07cf6e2015-03-06 16:45:16 +00006019 VdbeCoverage(v);
drhf07cf6e2015-03-06 16:45:16 +00006020 }
drh41d2e662015-12-01 21:23:07 +00006021#endif
drhad2d8302002-05-24 20:31:36 +00006022 if( pLevel->iLeftJoin ){
danb40897a2016-10-26 15:46:09 +00006023 int ws = pLoop->wsFlags;
drh688852a2014-02-17 22:40:43 +00006024 addr = sqlite3VdbeAddOp1(v, OP_IfPos, pLevel->iLeftJoin); VdbeCoverage(v);
danb40897a2016-10-26 15:46:09 +00006025 assert( (ws & WHERE_IDX_ONLY)==0 || (ws & WHERE_INDEXED)!=0 );
6026 if( (ws & WHERE_IDX_ONLY)==0 ){
dan41203c62017-11-21 19:22:45 +00006027 assert( pLevel->iTabCur==pTabList->a[pLevel->iFrom].iCursor );
6028 sqlite3VdbeAddOp1(v, OP_NullRow, pLevel->iTabCur);
drh35451c62009-11-12 04:26:39 +00006029 }
danb40897a2016-10-26 15:46:09 +00006030 if( (ws & WHERE_INDEXED)
drh04756292021-10-14 19:28:28 +00006031 || ((ws & WHERE_MULTI_OR) && pLevel->u.pCoveringIdx)
danb40897a2016-10-26 15:46:09 +00006032 ){
drh415ac682021-06-22 23:24:58 +00006033 if( ws & WHERE_MULTI_OR ){
drh04756292021-10-14 19:28:28 +00006034 Index *pIx = pLevel->u.pCoveringIdx;
drh415ac682021-06-22 23:24:58 +00006035 int iDb = sqlite3SchemaToIndex(db, pIx->pSchema);
6036 sqlite3VdbeAddOp3(v, OP_ReopenIdx, pLevel->iIdxCur, pIx->tnum, iDb);
6037 sqlite3VdbeSetP4KeyInfo(pParse, pIx);
6038 }
drh3c84ddf2008-01-09 02:15:38 +00006039 sqlite3VdbeAddOp1(v, OP_NullRow, pLevel->iIdxCur);
drh7f09b3e2002-08-13 13:15:49 +00006040 }
drh336a5302009-04-24 15:46:21 +00006041 if( pLevel->op==OP_Return ){
6042 sqlite3VdbeAddOp2(v, OP_Gosub, pLevel->p1, pLevel->addrFirst);
6043 }else{
drh076e85f2015-09-03 13:46:12 +00006044 sqlite3VdbeGoto(v, pLevel->addrFirst);
drh336a5302009-04-24 15:46:21 +00006045 }
drhd654be82005-09-20 17:42:23 +00006046 sqlite3VdbeJumpHere(v, addr);
drhad2d8302002-05-24 20:31:36 +00006047 }
drh6bc69a22013-11-19 12:33:23 +00006048 VdbeModuleComment((v, "End WHERE-loop%d: %s", i,
drhfc8d4f92013-11-08 15:19:46 +00006049 pWInfo->pTabList->a[pLevel->iFrom].pTab->zName));
drh19a775c2000-06-05 18:54:46 +00006050 }
drh9012bcb2004-12-19 00:11:35 +00006051
6052 /* The "break" point is here, just past the end of the outer loop.
6053 ** Set it.
6054 */
danielk19774adee202004-05-08 08:23:19 +00006055 sqlite3VdbeResolveLabel(v, pWInfo->iBreak);
drh9012bcb2004-12-19 00:11:35 +00006056
drhfd636c72013-06-21 02:05:06 +00006057 assert( pWInfo->nLevel<=pTabList->nSrc );
drhc01a3c12009-12-16 22:10:49 +00006058 for(i=0, pLevel=pWInfo->a; i<pWInfo->nLevel; i++, pLevel++){
drh5f612292014-02-08 23:20:32 +00006059 int k, last;
drhf8556d02020-08-14 21:32:16 +00006060 VdbeOp *pOp, *pLastOp;
danbfca6a42012-08-24 10:52:35 +00006061 Index *pIdx = 0;
drh76012942021-02-21 21:04:54 +00006062 SrcItem *pTabItem = &pTabList->a[pLevel->iFrom];
drh9012bcb2004-12-19 00:11:35 +00006063 Table *pTab = pTabItem->pTab;
drh5cf590c2003-04-24 01:45:04 +00006064 assert( pTab!=0 );
drh7ba39a92013-05-30 17:43:19 +00006065 pLoop = pLevel->pWLoop;
drhfc8d4f92013-11-08 15:19:46 +00006066
drh5f612292014-02-08 23:20:32 +00006067 /* For a co-routine, change all OP_Column references to the table of
drh7b3aa082015-05-29 13:55:33 +00006068 ** the co-routine into OP_Copy of result contained in a register.
drh5f612292014-02-08 23:20:32 +00006069 ** OP_Rowid becomes OP_Null.
6070 */
drh202230e2017-03-11 13:02:59 +00006071 if( pTabItem->fg.viaCoroutine ){
6072 testcase( pParse->db->mallocFailed );
6073 translateColumnToCopy(pParse, pLevel->addrBody, pLevel->iTabCur,
danfb785b22015-10-24 20:31:22 +00006074 pTabItem->regResult, 0);
drh5f612292014-02-08 23:20:32 +00006075 continue;
6076 }
6077
drhaa0f2d02019-01-17 19:33:16 +00006078#ifdef SQLITE_ENABLE_EARLY_CURSOR_CLOSE
6079 /* Close all of the cursors that were opened by sqlite3WhereBegin.
6080 ** Except, do not close cursors that will be reused by the OR optimization
6081 ** (WHERE_OR_SUBCLAUSE). And do not close the OP_OpenWrite cursors
6082 ** created for the ONEPASS optimization.
6083 */
drhc7a5ff42019-12-24 21:01:37 +00006084 if( (pTab->tabFlags & TF_Ephemeral)==0
drhf38524d2021-08-02 16:41:57 +00006085 && !IsView(pTab)
drhaa0f2d02019-01-17 19:33:16 +00006086 && (pWInfo->wctrlFlags & WHERE_OR_SUBCLAUSE)==0
6087 ){
6088 int ws = pLoop->wsFlags;
6089 if( pWInfo->eOnePass==ONEPASS_OFF && (ws & WHERE_IDX_ONLY)==0 ){
6090 sqlite3VdbeAddOp1(v, OP_Close, pTabItem->iCursor);
6091 }
6092 if( (ws & WHERE_INDEXED)!=0
6093 && (ws & (WHERE_IPK|WHERE_AUTO_INDEX))==0
6094 && pLevel->iIdxCur!=pWInfo->aiCurOnePass[1]
6095 ){
6096 sqlite3VdbeAddOp1(v, OP_Close, pLevel->iIdxCur);
6097 }
6098 }
6099#endif
6100
drhf0030762013-06-14 13:27:01 +00006101 /* If this scan uses an index, make VDBE code substitutions to read data
6102 ** from the index instead of from the table where possible. In some cases
6103 ** this optimization prevents the table from ever being read, which can
6104 ** yield a significant performance boost.
drh9012bcb2004-12-19 00:11:35 +00006105 **
6106 ** Calls to the code generator in between sqlite3WhereBegin and
6107 ** sqlite3WhereEnd will have created code that references the table
6108 ** directly. This loop scans all that code looking for opcodes
6109 ** that reference the table and converts them into opcodes that
6110 ** reference the index.
6111 */
drh7ba39a92013-05-30 17:43:19 +00006112 if( pLoop->wsFlags & (WHERE_INDEXED|WHERE_IDX_ONLY) ){
6113 pIdx = pLoop->u.btree.pIndex;
6114 }else if( pLoop->wsFlags & WHERE_MULTI_OR ){
drh04756292021-10-14 19:28:28 +00006115 pIdx = pLevel->u.pCoveringIdx;
danbfca6a42012-08-24 10:52:35 +00006116 }
drh63c85a72015-09-28 14:40:20 +00006117 if( pIdx
drh63c85a72015-09-28 14:40:20 +00006118 && !db->mallocFailed
6119 ){
drh5e6d90f2020-08-14 17:39:31 +00006120 if( pWInfo->eOnePass==ONEPASS_OFF || !HasRowid(pIdx->pTable) ){
drhf8556d02020-08-14 21:32:16 +00006121 last = iEnd;
drh5e6d90f2020-08-14 17:39:31 +00006122 }else{
6123 last = pWInfo->iEndWhere;
6124 }
drhf8556d02020-08-14 21:32:16 +00006125 k = pLevel->addrBody + 1;
drh299bf7c2018-06-11 17:35:02 +00006126#ifdef SQLITE_DEBUG
6127 if( db->flags & SQLITE_VdbeAddopTrace ){
6128 printf("TRANSLATE opcodes in range %d..%d\n", k, last-1);
6129 }
drhf8556d02020-08-14 21:32:16 +00006130 /* Proof that the "+1" on the k value above is safe */
6131 pOp = sqlite3VdbeGetOp(v, k - 1);
6132 assert( pOp->opcode!=OP_Column || pOp->p1!=pLevel->iTabCur );
6133 assert( pOp->opcode!=OP_Rowid || pOp->p1!=pLevel->iTabCur );
6134 assert( pOp->opcode!=OP_IfNullRow || pOp->p1!=pLevel->iTabCur );
drh299bf7c2018-06-11 17:35:02 +00006135#endif
drhcc04afd2013-08-22 02:56:28 +00006136 pOp = sqlite3VdbeGetOp(v, k);
drhf8556d02020-08-14 21:32:16 +00006137 pLastOp = pOp + (last - k);
drhe0cc2672021-04-05 22:42:15 +00006138 assert( pOp<=pLastOp );
drhf8556d02020-08-14 21:32:16 +00006139 do{
6140 if( pOp->p1!=pLevel->iTabCur ){
6141 /* no-op */
6142 }else if( pOp->opcode==OP_Column
drh092457b2017-12-29 15:04:49 +00006143#ifdef SQLITE_ENABLE_OFFSET_SQL_FUNC
6144 || pOp->opcode==OP_Offset
6145#endif
6146 ){
drhee0ec8e2013-10-31 17:38:01 +00006147 int x = pOp->p2;
drh511717c2013-11-08 17:13:23 +00006148 assert( pIdx->pTable==pTab );
drhee0ec8e2013-10-31 17:38:01 +00006149 if( !HasRowid(pTab) ){
6150 Index *pPk = sqlite3PrimaryKeyIndex(pTab);
6151 x = pPk->aiColumn[x];
drh4b92f982015-09-29 17:20:14 +00006152 assert( x>=0 );
drh6563d0c2022-03-09 18:29:19 +00006153#ifdef SQLITE_ENABLE_OFFSET_SQL_FUNC
6154 }else if( pOp->opcode==OP_Offset ){
6155 /* Do not need to translate the column number */
6156#endif
drh8e10d742019-10-18 17:42:47 +00006157 }else{
drhc5f808d2019-10-19 15:01:52 +00006158 testcase( x!=sqlite3StorageColumnToTable(pTab,x) );
drhb9bcf7c2019-10-19 13:29:10 +00006159 x = sqlite3StorageColumnToTable(pTab,x);
drhee0ec8e2013-10-31 17:38:01 +00006160 }
drhb9bcf7c2019-10-19 13:29:10 +00006161 x = sqlite3TableColumnToIndex(pIdx, x);
drh44156282013-10-23 22:23:03 +00006162 if( x>=0 ){
6163 pOp->p2 = x;
6164 pOp->p1 = pLevel->iIdxCur;
drh299bf7c2018-06-11 17:35:02 +00006165 OpcodeRewriteTrace(db, k, pOp);
drh9012bcb2004-12-19 00:11:35 +00006166 }
danf91c1312017-01-10 20:04:38 +00006167 assert( (pLoop->wsFlags & WHERE_IDX_ONLY)==0 || x>=0
drhd024eca2022-03-14 22:58:04 +00006168#ifdef SQLITE_ENABLE_OFFSET_SQL_FUNC
6169 || pOp->opcode==OP_Offset
6170#endif
danf91c1312017-01-10 20:04:38 +00006171 || pWInfo->eOnePass );
drhf0863fe2005-06-12 21:35:51 +00006172 }else if( pOp->opcode==OP_Rowid ){
drh9012bcb2004-12-19 00:11:35 +00006173 pOp->p1 = pLevel->iIdxCur;
drhf0863fe2005-06-12 21:35:51 +00006174 pOp->opcode = OP_IdxRowid;
drh299bf7c2018-06-11 17:35:02 +00006175 OpcodeRewriteTrace(db, k, pOp);
drh31d6fd52017-04-14 19:03:10 +00006176 }else if( pOp->opcode==OP_IfNullRow ){
6177 pOp->p1 = pLevel->iIdxCur;
drh299bf7c2018-06-11 17:35:02 +00006178 OpcodeRewriteTrace(db, k, pOp);
drh9012bcb2004-12-19 00:11:35 +00006179 }
drhf8556d02020-08-14 21:32:16 +00006180#ifdef SQLITE_DEBUG
6181 k++;
6182#endif
6183 }while( (++pOp)<pLastOp );
drh299bf7c2018-06-11 17:35:02 +00006184#ifdef SQLITE_DEBUG
6185 if( db->flags & SQLITE_VdbeAddopTrace ) printf("TRANSLATE complete\n");
6186#endif
drh6b563442001-11-07 16:48:26 +00006187 }
drh19a775c2000-06-05 18:54:46 +00006188 }
drh9012bcb2004-12-19 00:11:35 +00006189
6190 /* Final cleanup
6191 */
drhd784cc82021-04-15 12:56:44 +00006192 if( pWInfo->pExprMods ) whereUndoExprMods(pWInfo);
drhf12cde52010-04-08 17:28:00 +00006193 pParse->nQueryLoop = pWInfo->savedNQueryLoop;
6194 whereInfoFree(db, pWInfo);
drh75897232000-05-29 14:26:00 +00006195 return;
6196}