2000-05-29 18:26:00 +04:00
|
|
|
/*
|
2001-09-16 04:13:26 +04:00
|
|
|
** 2001 September 15
|
2000-05-29 18:26:00 +04:00
|
|
|
**
|
2001-09-16 04:13:26 +04:00
|
|
|
** The author disclaims copyright to this source code. In place of
|
|
|
|
** a legal notice, here is a blessing:
|
2000-05-29 18:26:00 +04:00
|
|
|
**
|
2001-09-16 04:13:26 +04:00
|
|
|
** May you do good and not evil.
|
|
|
|
** May you find forgiveness for yourself and forgive others.
|
|
|
|
** May you share freely, never taking more than you give.
|
2000-05-29 18:26:00 +04:00
|
|
|
**
|
|
|
|
*************************************************************************
|
|
|
|
** This module contains C code that generates VDBE code used to process
|
|
|
|
** the WHERE clause of SQL statements. Also found here are subroutines
|
|
|
|
** to generate VDBE code to evaluate expressions.
|
|
|
|
**
|
2002-02-18 04:17:00 +03:00
|
|
|
** $Id: where.c,v 1.35 2002/02/18 01:17:00 drh Exp $
|
2000-05-29 18:26:00 +04:00
|
|
|
*/
|
|
|
|
#include "sqliteInt.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
** The query generator uses an array of instances of this structure to
|
|
|
|
** help it analyze the subexpressions of the WHERE clause. Each WHERE
|
|
|
|
** clause subexpression is separated from the others by an AND operator.
|
|
|
|
*/
|
|
|
|
typedef struct ExprInfo ExprInfo;
|
|
|
|
struct ExprInfo {
|
|
|
|
Expr *p; /* Pointer to the subexpression */
|
|
|
|
int indexable; /* True if this subexprssion is usable by an index */
|
2000-06-21 17:59:10 +04:00
|
|
|
int idxLeft; /* p->pLeft is a column in this table number. -1 if
|
|
|
|
** p->pLeft is not the column of any table */
|
|
|
|
int idxRight; /* p->pRight is a column in this table number. -1 if
|
|
|
|
** p->pRight is not the column of any table */
|
2000-05-29 18:26:00 +04:00
|
|
|
unsigned prereqLeft; /* Tables referenced by p->pLeft */
|
|
|
|
unsigned prereqRight; /* Tables referenced by p->pRight */
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Determine the number of elements in an array.
|
|
|
|
*/
|
|
|
|
#define ARRAYSIZE(X) (sizeof(X)/sizeof(X[0]))
|
|
|
|
|
|
|
|
/*
|
|
|
|
** This routine is used to divide the WHERE expression into subexpressions
|
|
|
|
** separated by the AND operator.
|
|
|
|
**
|
|
|
|
** aSlot[] is an array of subexpressions structures.
|
|
|
|
** There are nSlot spaces left in this array. This routine attempts to
|
|
|
|
** split pExpr into subexpressions and fills aSlot[] with those subexpressions.
|
|
|
|
** The return value is the number of slots filled.
|
|
|
|
*/
|
|
|
|
static int exprSplit(int nSlot, ExprInfo *aSlot, Expr *pExpr){
|
|
|
|
int cnt = 0;
|
|
|
|
if( pExpr==0 || nSlot<1 ) return 0;
|
|
|
|
if( nSlot==1 || pExpr->op!=TK_AND ){
|
|
|
|
aSlot[0].p = pExpr;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if( pExpr->pLeft->op!=TK_AND ){
|
|
|
|
aSlot[0].p = pExpr->pLeft;
|
|
|
|
cnt = 1 + exprSplit(nSlot-1, &aSlot[1], pExpr->pRight);
|
|
|
|
}else{
|
|
|
|
cnt = exprSplit(nSlot, aSlot, pExpr->pRight);
|
|
|
|
cnt += exprSplit(nSlot-cnt, &aSlot[cnt], pExpr->pLeft);
|
|
|
|
}
|
|
|
|
return cnt;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** This routine walks (recursively) an expression tree and generates
|
|
|
|
** a bitmask indicating which tables are used in that expression
|
|
|
|
** tree. Bit 0 of the mask is set if table 0 is used. But 1 is set
|
|
|
|
** if table 1 is used. And so forth.
|
|
|
|
**
|
|
|
|
** In order for this routine to work, the calling function must have
|
|
|
|
** previously invoked sqliteExprResolveIds() on the expression. See
|
|
|
|
** the header comment on that routine for additional information.
|
2000-06-05 22:54:46 +04:00
|
|
|
**
|
|
|
|
** "base" is the cursor number (the value of the iTable field) that
|
|
|
|
** corresponds to the first entry in the table list. This is the
|
|
|
|
** same as pParse->nTab.
|
2000-05-29 18:26:00 +04:00
|
|
|
*/
|
2000-06-05 22:54:46 +04:00
|
|
|
static int exprTableUsage(int base, Expr *p){
|
2000-05-29 18:26:00 +04:00
|
|
|
unsigned int mask = 0;
|
|
|
|
if( p==0 ) return 0;
|
2000-06-21 17:59:10 +04:00
|
|
|
if( p->op==TK_COLUMN ){
|
2000-06-05 22:54:46 +04:00
|
|
|
return 1<< (p->iTable - base);
|
2000-05-29 18:26:00 +04:00
|
|
|
}
|
|
|
|
if( p->pRight ){
|
2000-06-05 22:54:46 +04:00
|
|
|
mask = exprTableUsage(base, p->pRight);
|
2000-05-29 18:26:00 +04:00
|
|
|
}
|
|
|
|
if( p->pLeft ){
|
2000-06-05 22:54:46 +04:00
|
|
|
mask |= exprTableUsage(base, p->pLeft);
|
2000-05-29 18:26:00 +04:00
|
|
|
}
|
|
|
|
return mask;
|
|
|
|
}
|
|
|
|
|
2001-11-08 03:45:21 +03:00
|
|
|
/*
|
|
|
|
** Return TRUE if the given operator is one of the operators that is
|
|
|
|
** allowed for an indexable WHERE clause. The allowed operators are
|
|
|
|
** "=", "<", ">", "<=", and ">=".
|
|
|
|
*/
|
|
|
|
static int allowedOp(int op){
|
|
|
|
switch( op ){
|
|
|
|
case TK_LT:
|
|
|
|
case TK_LE:
|
|
|
|
case TK_GT:
|
|
|
|
case TK_GE:
|
|
|
|
case TK_EQ:
|
|
|
|
return 1;
|
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-05-29 18:26:00 +04:00
|
|
|
/*
|
|
|
|
** The input to this routine is an ExprInfo structure with only the
|
|
|
|
** "p" field filled in. The job of this routine is to analyze the
|
|
|
|
** subexpression and populate all the other fields of the ExprInfo
|
|
|
|
** structure.
|
2000-06-05 22:54:46 +04:00
|
|
|
**
|
|
|
|
** "base" is the cursor number (the value of the iTable field) that
|
2001-11-04 21:32:46 +03:00
|
|
|
** corresponds to the first entry in the table list. This is the
|
2000-06-05 22:54:46 +04:00
|
|
|
** same as pParse->nTab.
|
2000-05-29 18:26:00 +04:00
|
|
|
*/
|
2000-06-05 22:54:46 +04:00
|
|
|
static void exprAnalyze(int base, ExprInfo *pInfo){
|
2000-05-29 18:26:00 +04:00
|
|
|
Expr *pExpr = pInfo->p;
|
2000-06-05 22:54:46 +04:00
|
|
|
pInfo->prereqLeft = exprTableUsage(base, pExpr->pLeft);
|
|
|
|
pInfo->prereqRight = exprTableUsage(base, pExpr->pRight);
|
2000-05-29 18:26:00 +04:00
|
|
|
pInfo->indexable = 0;
|
|
|
|
pInfo->idxLeft = -1;
|
|
|
|
pInfo->idxRight = -1;
|
2001-11-08 03:45:21 +03:00
|
|
|
if( allowedOp(pExpr->op) && (pInfo->prereqRight & pInfo->prereqLeft)==0 ){
|
2000-06-21 17:59:10 +04:00
|
|
|
if( pExpr->pRight->op==TK_COLUMN ){
|
2000-06-05 22:54:46 +04:00
|
|
|
pInfo->idxRight = pExpr->pRight->iTable - base;
|
2000-05-29 18:26:00 +04:00
|
|
|
pInfo->indexable = 1;
|
|
|
|
}
|
2000-06-21 17:59:10 +04:00
|
|
|
if( pExpr->pLeft->op==TK_COLUMN ){
|
2000-06-05 22:54:46 +04:00
|
|
|
pInfo->idxLeft = pExpr->pLeft->iTable - base;
|
2000-05-29 18:26:00 +04:00
|
|
|
pInfo->indexable = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Generating the beginning of the loop used for WHERE clause processing.
|
|
|
|
** The return value is a pointer to an (opaque) structure that contains
|
|
|
|
** information needed to terminate the loop. Later, the calling routine
|
|
|
|
** should invoke sqliteWhereEnd() with the return value of this function
|
|
|
|
** in order to complete the WHERE clause processing.
|
|
|
|
**
|
|
|
|
** If an error occurs, this routine returns NULL.
|
|
|
|
*/
|
|
|
|
WhereInfo *sqliteWhereBegin(
|
|
|
|
Parse *pParse, /* The parser context */
|
|
|
|
IdList *pTabList, /* A list of all tables */
|
|
|
|
Expr *pWhere, /* The WHERE clause */
|
|
|
|
int pushKey /* If TRUE, leave the table key on the stack */
|
|
|
|
){
|
|
|
|
int i; /* Loop counter */
|
|
|
|
WhereInfo *pWInfo; /* Will become the return value of this function */
|
|
|
|
Vdbe *v = pParse->pVdbe; /* The virtual database engine */
|
|
|
|
int brk, cont; /* Addresses used during code generation */
|
|
|
|
int *aOrder; /* Order in which pTabList entries are searched */
|
|
|
|
int nExpr; /* Number of subexpressions in the WHERE clause */
|
|
|
|
int loopMask; /* One bit set for each outer loop */
|
|
|
|
int haveKey; /* True if KEY is on the stack */
|
2000-06-05 22:54:46 +04:00
|
|
|
int base; /* First available index for OP_Open opcodes */
|
2001-11-07 19:48:26 +03:00
|
|
|
int nCur; /* Next unused cursor number */
|
2001-04-04 15:48:57 +04:00
|
|
|
int aDirect[32]; /* If TRUE, then index this table using ROWID */
|
2001-12-22 17:49:24 +03:00
|
|
|
int iDirectEq[32]; /* Term of the form ROWID==X for the N-th table */
|
|
|
|
int iDirectLt[32]; /* Term of the form ROWID<X or ROWID<=X */
|
|
|
|
int iDirectGt[32]; /* Term of the form ROWID>X or ROWID>=X */
|
2000-05-29 18:26:00 +04:00
|
|
|
ExprInfo aExpr[50]; /* The WHERE clause is divided into these expressions */
|
|
|
|
|
2001-11-07 19:48:26 +03:00
|
|
|
/* Allocate space for aOrder[] and aiMem[]. */
|
2000-05-29 18:26:00 +04:00
|
|
|
aOrder = sqliteMalloc( sizeof(int) * pTabList->nId );
|
|
|
|
|
|
|
|
/* Allocate and initialize the WhereInfo structure that will become the
|
|
|
|
** return value.
|
|
|
|
*/
|
2001-11-07 19:48:26 +03:00
|
|
|
pWInfo = sqliteMalloc( sizeof(WhereInfo) + pTabList->nId*sizeof(WhereLevel) );
|
2001-04-11 18:28:42 +04:00
|
|
|
if( sqlite_malloc_failed ){
|
2000-05-29 18:26:00 +04:00
|
|
|
sqliteFree(aOrder);
|
2001-04-11 18:28:42 +04:00
|
|
|
sqliteFree(pWInfo);
|
2000-05-29 18:26:00 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
pWInfo->pParse = pParse;
|
|
|
|
pWInfo->pTabList = pTabList;
|
2000-06-05 22:54:46 +04:00
|
|
|
base = pWInfo->base = pParse->nTab;
|
2001-11-07 19:48:26 +03:00
|
|
|
nCur = base + pTabList->nId;
|
2002-02-18 04:17:00 +03:00
|
|
|
pParse->nTab += nCur*2;
|
2000-05-29 18:26:00 +04:00
|
|
|
|
|
|
|
/* Split the WHERE clause into as many as 32 separate subexpressions
|
|
|
|
** where each subexpression is separated by an AND operator. Any additional
|
|
|
|
** subexpressions are attached in the aExpr[32] and will not enter
|
|
|
|
** into the query optimizer computations. 32 is chosen as the cutoff
|
|
|
|
** since that is the number of bits in an integer that we use for an
|
|
|
|
** expression-used mask.
|
|
|
|
*/
|
|
|
|
memset(aExpr, 0, sizeof(aExpr));
|
|
|
|
nExpr = exprSplit(ARRAYSIZE(aExpr), aExpr, pWhere);
|
|
|
|
|
|
|
|
/* Analyze all of the subexpressions.
|
|
|
|
*/
|
|
|
|
for(i=0; i<nExpr; i++){
|
2002-02-18 04:17:00 +03:00
|
|
|
exprAnalyze(base, &aExpr[i]);
|
2000-05-29 18:26:00 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Figure out a good nesting order for the tables. aOrder[0] will
|
|
|
|
** be the index in pTabList of the outermost table. aOrder[1] will
|
|
|
|
** be the first nested loop and so on. aOrder[pTabList->nId-1] will
|
|
|
|
** be the innermost loop.
|
|
|
|
**
|
2000-05-31 00:17:49 +04:00
|
|
|
** Someday will put in a good algorithm here to reorder the loops
|
2000-05-29 18:26:00 +04:00
|
|
|
** for an effiecient query. But for now, just use whatever order the
|
|
|
|
** tables appear in in the pTabList.
|
|
|
|
*/
|
|
|
|
for(i=0; i<pTabList->nId; i++){
|
|
|
|
aOrder[i] = i;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Figure out what index to use (if any) for each nested loop.
|
2001-11-07 19:48:26 +03:00
|
|
|
** Make pWInfo->a[i].pIdx point to the index to use for the i-th nested
|
|
|
|
** loop where i==0 is the outer loop and i==pTabList->nId-1 is the inner
|
2001-12-22 17:49:24 +03:00
|
|
|
** loop.
|
|
|
|
**
|
|
|
|
** If terms exist that use the ROWID of any table, then set the
|
|
|
|
** iDirectEq[], iDirectLt[], or iDirectGt[] elements for that table
|
|
|
|
** to the index of the term containing the ROWID. We always prefer
|
|
|
|
** to use a ROWID which can directly access a table rather than an
|
|
|
|
** index which requires two accesses.
|
2000-05-29 18:26:00 +04:00
|
|
|
**
|
|
|
|
** Actually, if there are more than 32 tables in the join, only the
|
|
|
|
** first 32 tables are candidates for indices.
|
|
|
|
*/
|
|
|
|
loopMask = 0;
|
2001-11-07 19:48:26 +03:00
|
|
|
for(i=0; i<pTabList->nId && i<ARRAYSIZE(aDirect); i++){
|
2001-04-04 15:48:57 +04:00
|
|
|
int j;
|
2000-05-29 18:26:00 +04:00
|
|
|
int idx = aOrder[i];
|
|
|
|
Table *pTab = pTabList->a[idx].pTab;
|
|
|
|
Index *pIdx;
|
|
|
|
Index *pBestIdx = 0;
|
2001-11-08 03:45:21 +03:00
|
|
|
int bestScore = 0;
|
2000-05-29 18:26:00 +04:00
|
|
|
|
2001-04-04 15:48:57 +04:00
|
|
|
/* Check to see if there is an expression that uses only the
|
2001-12-22 17:49:24 +03:00
|
|
|
** ROWID field of this table. For terms of the form ROWID==expr
|
|
|
|
** set iDirectEq[i] to the index of the term. For terms of the
|
|
|
|
** form ROWID<expr or ROWID<=expr set iDirectLt[i] to the term index.
|
|
|
|
** For terms like ROWID>expr or ROWID>=expr set iDirectGt[i].
|
2001-04-04 15:48:57 +04:00
|
|
|
*/
|
2001-12-22 17:49:24 +03:00
|
|
|
iDirectEq[i] = -1;
|
|
|
|
iDirectLt[i] = -1;
|
|
|
|
iDirectGt[i] = -1;
|
2001-04-04 15:48:57 +04:00
|
|
|
for(j=0; j<nExpr; j++){
|
|
|
|
if( aExpr[j].idxLeft==idx && aExpr[j].p->pLeft->iColumn<0
|
|
|
|
&& (aExpr[j].prereqRight & loopMask)==aExpr[j].prereqRight ){
|
2001-12-22 17:49:24 +03:00
|
|
|
switch( aExpr[j].p->op ){
|
|
|
|
case TK_EQ: iDirectEq[i] = j; break;
|
|
|
|
case TK_LE:
|
|
|
|
case TK_LT: iDirectLt[i] = j; break;
|
|
|
|
case TK_GE:
|
|
|
|
case TK_GT: iDirectGt[i] = j; break;
|
|
|
|
}
|
2001-04-04 15:48:57 +04:00
|
|
|
}
|
|
|
|
if( aExpr[j].idxRight==idx && aExpr[j].p->pRight->iColumn<0
|
|
|
|
&& (aExpr[j].prereqLeft & loopMask)==aExpr[j].prereqLeft ){
|
2001-12-22 17:49:24 +03:00
|
|
|
switch( aExpr[j].p->op ){
|
|
|
|
case TK_EQ: iDirectEq[i] = j; break;
|
|
|
|
case TK_LE:
|
|
|
|
case TK_LT: iDirectGt[i] = j; break;
|
|
|
|
case TK_GE:
|
|
|
|
case TK_GT: iDirectLt[i] = j; break;
|
|
|
|
}
|
2001-04-04 15:48:57 +04:00
|
|
|
}
|
|
|
|
}
|
2001-12-22 17:49:24 +03:00
|
|
|
if( iDirectEq[i]>=0 ){
|
2001-04-04 15:48:57 +04:00
|
|
|
loopMask |= 1<<idx;
|
2001-11-07 19:48:26 +03:00
|
|
|
pWInfo->a[i].pIdx = 0;
|
2001-04-04 15:48:57 +04:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2000-05-29 18:26:00 +04:00
|
|
|
/* Do a search for usable indices. Leave pBestIdx pointing to
|
2001-11-08 03:45:21 +03:00
|
|
|
** the "best" index. pBestIdx is left set to NULL if no indices
|
|
|
|
** are usable.
|
|
|
|
**
|
|
|
|
** The best index is determined as follows. For each of the
|
|
|
|
** left-most terms that is fixed by an equality operator, add
|
|
|
|
** 4 to the score. The right-most term of the index may be
|
|
|
|
** constrained by an inequality. Add 1 if for an "x<..." constraint
|
|
|
|
** and add 2 for an "x>..." constraint. Chose the index that
|
|
|
|
** gives the best score.
|
2000-05-29 18:26:00 +04:00
|
|
|
**
|
2001-11-08 03:45:21 +03:00
|
|
|
** This scoring system is designed so that the score can later be
|
|
|
|
** used to determine how the index is used. If the score&3 is 0
|
|
|
|
** then all constraints are equalities. If score&1 is not 0 then
|
|
|
|
** there is an inequality used as a termination key. (ex: "x<...")
|
|
|
|
** If score&2 is not 0 then there is an inequality used as the
|
|
|
|
** start key. (ex: "x>...");
|
2000-05-29 18:26:00 +04:00
|
|
|
*/
|
|
|
|
for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){
|
2001-11-08 03:45:21 +03:00
|
|
|
int eqMask = 0; /* Index columns covered by an x=... constraint */
|
|
|
|
int ltMask = 0; /* Index columns covered by an x<... constraint */
|
|
|
|
int gtMask = 0; /* Index columns covered by an x>... constraing */
|
|
|
|
int nEq, m, score;
|
2000-05-29 18:26:00 +04:00
|
|
|
|
2002-01-09 06:19:59 +03:00
|
|
|
if( pIdx->isDropped ) continue; /* Ignore dropped indices */
|
2001-11-08 03:45:21 +03:00
|
|
|
if( pIdx->nColumn>32 ) continue; /* Ignore indices too many columns */
|
2000-05-29 18:26:00 +04:00
|
|
|
for(j=0; j<nExpr; j++){
|
|
|
|
if( aExpr[j].idxLeft==idx
|
|
|
|
&& (aExpr[j].prereqRight & loopMask)==aExpr[j].prereqRight ){
|
2000-06-21 17:59:10 +04:00
|
|
|
int iColumn = aExpr[j].p->pLeft->iColumn;
|
2000-05-29 18:26:00 +04:00
|
|
|
int k;
|
2000-06-21 17:59:10 +04:00
|
|
|
for(k=0; k<pIdx->nColumn; k++){
|
|
|
|
if( pIdx->aiColumn[k]==iColumn ){
|
2001-11-08 03:45:21 +03:00
|
|
|
switch( aExpr[j].p->op ){
|
|
|
|
case TK_EQ: {
|
|
|
|
eqMask |= 1<<k;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TK_LE:
|
|
|
|
case TK_LT: {
|
|
|
|
ltMask |= 1<<k;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TK_GE:
|
|
|
|
case TK_GT: {
|
|
|
|
gtMask |= 1<<k;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default: {
|
|
|
|
/* CANT_HAPPEN */
|
|
|
|
assert( 0 );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2000-05-29 18:26:00 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if( aExpr[j].idxRight==idx
|
|
|
|
&& (aExpr[j].prereqLeft & loopMask)==aExpr[j].prereqLeft ){
|
2000-06-21 17:59:10 +04:00
|
|
|
int iColumn = aExpr[j].p->pRight->iColumn;
|
2000-05-29 18:26:00 +04:00
|
|
|
int k;
|
2000-06-21 17:59:10 +04:00
|
|
|
for(k=0; k<pIdx->nColumn; k++){
|
|
|
|
if( pIdx->aiColumn[k]==iColumn ){
|
2001-11-08 03:45:21 +03:00
|
|
|
switch( aExpr[j].p->op ){
|
|
|
|
case TK_EQ: {
|
|
|
|
eqMask |= 1<<k;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TK_LE:
|
|
|
|
case TK_LT: {
|
|
|
|
gtMask |= 1<<k;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TK_GE:
|
|
|
|
case TK_GT: {
|
|
|
|
ltMask |= 1<<k;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default: {
|
|
|
|
/* CANT_HAPPEN */
|
|
|
|
assert( 0 );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2000-05-29 18:26:00 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2001-11-08 03:45:21 +03:00
|
|
|
for(nEq=0; nEq<pIdx->nColumn; nEq++){
|
|
|
|
m = (1<<(nEq+1))-1;
|
|
|
|
if( (m & eqMask)!=m ) break;
|
|
|
|
}
|
|
|
|
score = nEq*4;
|
|
|
|
m = 1<<nEq;
|
|
|
|
if( m & ltMask ) score++;
|
|
|
|
if( m & gtMask ) score+=2;
|
|
|
|
if( score>bestScore ){
|
|
|
|
pBestIdx = pIdx;
|
|
|
|
bestScore = score;
|
2000-05-29 18:26:00 +04:00
|
|
|
}
|
|
|
|
}
|
2001-11-07 19:48:26 +03:00
|
|
|
pWInfo->a[i].pIdx = pBestIdx;
|
2001-11-08 03:45:21 +03:00
|
|
|
pWInfo->a[i].score = bestScore;
|
2000-05-31 00:17:49 +04:00
|
|
|
loopMask |= 1<<idx;
|
2001-11-07 19:48:26 +03:00
|
|
|
if( pBestIdx ){
|
|
|
|
pWInfo->a[i].iCur = nCur++;
|
|
|
|
}
|
2000-05-29 18:26:00 +04:00
|
|
|
}
|
|
|
|
|
2001-11-07 19:48:26 +03:00
|
|
|
/* Open all tables in the pTabList and all indices used by those tables.
|
2000-05-29 18:26:00 +04:00
|
|
|
*/
|
|
|
|
for(i=0; i<pTabList->nId; i++){
|
2001-10-08 17:22:32 +04:00
|
|
|
int openOp;
|
|
|
|
Table *pTab;
|
|
|
|
|
|
|
|
pTab = pTabList->a[i].pTab;
|
2002-02-18 04:17:00 +03:00
|
|
|
if( pTab->isTransient ) continue;
|
2001-10-08 17:22:32 +04:00
|
|
|
openOp = pTab->isTemp ? OP_OpenAux : OP_Open;
|
2001-10-13 05:06:47 +04:00
|
|
|
sqliteVdbeAddOp(v, openOp, base+i, pTab->tnum);
|
|
|
|
sqliteVdbeChangeP3(v, -1, pTab->zName, P3_STATIC);
|
2001-09-15 04:57:28 +04:00
|
|
|
if( i==0 && !pParse->schemaVerified &&
|
|
|
|
(pParse->db->flags & SQLITE_InTrans)==0 ){
|
2001-10-13 05:06:47 +04:00
|
|
|
sqliteVdbeAddOp(v, OP_VerifyCookie, pParse->db->schema_cookie, 0);
|
2001-09-15 04:57:28 +04:00
|
|
|
pParse->schemaVerified = 1;
|
|
|
|
}
|
2001-11-07 19:48:26 +03:00
|
|
|
if( pWInfo->a[i].pIdx!=0 ){
|
|
|
|
sqliteVdbeAddOp(v, openOp, pWInfo->a[i].iCur, pWInfo->a[i].pIdx->tnum);
|
|
|
|
sqliteVdbeChangeP3(v, -1, pWInfo->a[i].pIdx->zName, P3_STATIC);
|
2000-05-29 18:26:00 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Generate the code to do the search
|
|
|
|
*/
|
|
|
|
loopMask = 0;
|
2001-11-07 19:48:26 +03:00
|
|
|
pWInfo->iBreak = sqliteVdbeMakeLabel(v);
|
2000-05-29 18:26:00 +04:00
|
|
|
for(i=0; i<pTabList->nId; i++){
|
|
|
|
int j, k;
|
|
|
|
int idx = aOrder[i];
|
2001-04-04 15:48:57 +04:00
|
|
|
Index *pIdx;
|
2001-11-07 19:48:26 +03:00
|
|
|
WhereLevel *pLevel = &pWInfo->a[i];
|
2000-05-29 18:26:00 +04:00
|
|
|
|
2001-12-22 17:49:24 +03:00
|
|
|
pIdx = pLevel->pIdx;
|
|
|
|
if( i<ARRAYSIZE(iDirectEq) && iDirectEq[i]>=0 ){
|
|
|
|
/* Case 1: We can directly reference a single row using an
|
|
|
|
** equality comparison against the ROWID field.
|
2001-04-04 15:48:57 +04:00
|
|
|
*/
|
2001-12-22 17:49:24 +03:00
|
|
|
k = iDirectEq[i];
|
|
|
|
assert( k<nExpr );
|
|
|
|
assert( aExpr[k].p!=0 );
|
|
|
|
assert( aExpr[k].idxLeft==idx || aExpr[k].idxRight==idx );
|
|
|
|
if( aExpr[k].idxLeft==idx ){
|
|
|
|
sqliteExprCode(pParse, aExpr[k].p->pRight);
|
|
|
|
}else{
|
|
|
|
sqliteExprCode(pParse, aExpr[k].p->pLeft);
|
2001-04-04 15:48:57 +04:00
|
|
|
}
|
2001-12-22 17:49:24 +03:00
|
|
|
aExpr[k].p = 0;
|
2001-11-07 19:48:26 +03:00
|
|
|
brk = pLevel->brk = sqliteVdbeMakeLabel(v);
|
|
|
|
cont = pLevel->cont = brk;
|
2001-12-22 17:49:24 +03:00
|
|
|
sqliteVdbeAddOp(v, OP_MustBeInt, 0, brk);
|
2001-04-04 15:48:57 +04:00
|
|
|
if( i==pTabList->nId-1 && pushKey ){
|
2002-02-14 02:22:53 +03:00
|
|
|
/* Note: The OP_Dup below will cause the recno to be left on the
|
|
|
|
** stack if the record does not exists and the OP_NotExists jump is
|
2002-01-28 18:53:03 +03:00
|
|
|
** taken. This violates a general rule of the VDBE that you should
|
|
|
|
** never leave values on the stack in order to avoid a stack overflow.
|
|
|
|
** But in this case, the OP_Dup will never happen inside of a loop,
|
2002-02-14 02:22:53 +03:00
|
|
|
** because the pushKey flag is only true for UPDATE and DELETE, not
|
|
|
|
** for SELECT, and nested loops only occur on a SELECT.
|
|
|
|
** So it is safe to leave the recno on the stack.
|
2002-01-28 18:53:03 +03:00
|
|
|
*/
|
2001-04-04 15:48:57 +04:00
|
|
|
haveKey = 1;
|
2002-01-28 18:53:03 +03:00
|
|
|
sqliteVdbeAddOp(v, OP_Dup, 0, 0);
|
2001-04-04 15:48:57 +04:00
|
|
|
}else{
|
|
|
|
haveKey = 0;
|
|
|
|
}
|
2002-01-28 18:53:03 +03:00
|
|
|
sqliteVdbeAddOp(v, OP_NotExists, base+idx, brk);
|
2001-11-07 19:48:26 +03:00
|
|
|
pLevel->op = OP_Noop;
|
2001-12-22 17:49:24 +03:00
|
|
|
}else if( pIdx!=0 && pLevel->score%4==0 ){
|
|
|
|
/* Case 2: All index constraints are equality operators.
|
2000-05-29 18:26:00 +04:00
|
|
|
*/
|
2001-11-07 19:48:26 +03:00
|
|
|
int start;
|
2001-11-08 03:45:21 +03:00
|
|
|
int testOp;
|
|
|
|
int nColumn = pLevel->score/4;
|
|
|
|
for(j=0; j<nColumn; j++){
|
2000-05-29 18:26:00 +04:00
|
|
|
for(k=0; k<nExpr; k++){
|
|
|
|
if( aExpr[k].p==0 ) continue;
|
|
|
|
if( aExpr[k].idxLeft==idx
|
2001-11-08 03:45:21 +03:00
|
|
|
&& aExpr[k].p->op==TK_EQ
|
2000-05-29 18:26:00 +04:00
|
|
|
&& (aExpr[k].prereqRight & loopMask)==aExpr[k].prereqRight
|
2000-06-21 17:59:10 +04:00
|
|
|
&& aExpr[k].p->pLeft->iColumn==pIdx->aiColumn[j]
|
2000-05-29 18:26:00 +04:00
|
|
|
){
|
|
|
|
sqliteExprCode(pParse, aExpr[k].p->pRight);
|
|
|
|
aExpr[k].p = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if( aExpr[k].idxRight==idx
|
2001-11-08 03:45:21 +03:00
|
|
|
&& aExpr[k].p->op==TK_EQ
|
2000-05-29 18:26:00 +04:00
|
|
|
&& (aExpr[k].prereqLeft & loopMask)==aExpr[k].prereqLeft
|
2000-06-21 17:59:10 +04:00
|
|
|
&& aExpr[k].p->pRight->iColumn==pIdx->aiColumn[j]
|
2000-05-29 18:26:00 +04:00
|
|
|
){
|
|
|
|
sqliteExprCode(pParse, aExpr[k].p->pLeft);
|
|
|
|
aExpr[k].p = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2001-11-07 19:48:26 +03:00
|
|
|
pLevel->iMem = pParse->nMem++;
|
|
|
|
brk = pLevel->brk = sqliteVdbeMakeLabel(v);
|
|
|
|
cont = pLevel->cont = sqliteVdbeMakeLabel(v);
|
2001-11-08 03:45:21 +03:00
|
|
|
sqliteVdbeAddOp(v, OP_MakeKey, nColumn, 0);
|
|
|
|
if( nColumn==pIdx->nColumn ){
|
|
|
|
sqliteVdbeAddOp(v, OP_MemStore, pLevel->iMem, 0);
|
|
|
|
testOp = OP_IdxGT;
|
|
|
|
}else{
|
|
|
|
sqliteVdbeAddOp(v, OP_Dup, 0, 0);
|
|
|
|
sqliteVdbeAddOp(v, OP_IncrKey, 0, 0);
|
|
|
|
sqliteVdbeAddOp(v, OP_MemStore, pLevel->iMem, 1);
|
|
|
|
testOp = OP_IdxGE;
|
|
|
|
}
|
2001-11-07 19:48:26 +03:00
|
|
|
sqliteVdbeAddOp(v, OP_MoveTo, pLevel->iCur, brk);
|
|
|
|
start = sqliteVdbeAddOp(v, OP_MemLoad, pLevel->iMem, 0);
|
2001-11-08 03:45:21 +03:00
|
|
|
sqliteVdbeAddOp(v, testOp, pLevel->iCur, brk);
|
2001-11-07 19:48:26 +03:00
|
|
|
sqliteVdbeAddOp(v, OP_IdxRecno, pLevel->iCur, 0);
|
2000-05-29 18:26:00 +04:00
|
|
|
if( i==pTabList->nId-1 && pushKey ){
|
|
|
|
haveKey = 1;
|
|
|
|
}else{
|
2001-10-13 05:06:47 +04:00
|
|
|
sqliteVdbeAddOp(v, OP_MoveTo, base+idx, 0);
|
2000-05-29 18:26:00 +04:00
|
|
|
haveKey = 0;
|
|
|
|
}
|
2001-11-07 19:48:26 +03:00
|
|
|
pLevel->op = OP_Next;
|
|
|
|
pLevel->p1 = pLevel->iCur;
|
|
|
|
pLevel->p2 = start;
|
2001-12-22 17:49:24 +03:00
|
|
|
}else if( i<ARRAYSIZE(iDirectLt) && (iDirectLt[i]>=0 || iDirectGt[i]>=0) ){
|
|
|
|
/* Case 3: We have an inequality comparison against the ROWID field.
|
|
|
|
*/
|
|
|
|
int testOp = OP_Noop;
|
|
|
|
int start;
|
|
|
|
|
|
|
|
brk = pLevel->brk = sqliteVdbeMakeLabel(v);
|
|
|
|
cont = pLevel->cont = sqliteVdbeMakeLabel(v);
|
|
|
|
if( iDirectGt[i]>=0 ){
|
|
|
|
k = iDirectGt[i];
|
|
|
|
assert( k<nExpr );
|
|
|
|
assert( aExpr[k].p!=0 );
|
|
|
|
assert( aExpr[k].idxLeft==idx || aExpr[k].idxRight==idx );
|
|
|
|
if( aExpr[k].idxLeft==idx ){
|
|
|
|
sqliteExprCode(pParse, aExpr[k].p->pRight);
|
|
|
|
}else{
|
|
|
|
sqliteExprCode(pParse, aExpr[k].p->pLeft);
|
|
|
|
}
|
|
|
|
sqliteVdbeAddOp(v, OP_MustBeInt, 0, brk);
|
|
|
|
if( aExpr[k].p->op==TK_LT || aExpr[k].p->op==TK_GT ){
|
|
|
|
sqliteVdbeAddOp(v, OP_AddImm, 1, 0);
|
|
|
|
}
|
|
|
|
sqliteVdbeAddOp(v, OP_MoveTo, base+idx, brk);
|
|
|
|
aExpr[k].p = 0;
|
|
|
|
}else{
|
|
|
|
sqliteVdbeAddOp(v, OP_Rewind, base+idx, brk);
|
|
|
|
}
|
|
|
|
if( iDirectLt[i]>=0 ){
|
|
|
|
k = iDirectLt[i];
|
|
|
|
assert( k<nExpr );
|
|
|
|
assert( aExpr[k].p!=0 );
|
|
|
|
assert( aExpr[k].idxLeft==idx || aExpr[k].idxRight==idx );
|
|
|
|
if( aExpr[k].idxLeft==idx ){
|
|
|
|
sqliteExprCode(pParse, aExpr[k].p->pRight);
|
|
|
|
}else{
|
|
|
|
sqliteExprCode(pParse, aExpr[k].p->pLeft);
|
|
|
|
}
|
|
|
|
sqliteVdbeAddOp(v, OP_MustBeInt, 0, sqliteVdbeCurrentAddr(v)+1);
|
|
|
|
pLevel->iMem = pParse->nMem++;
|
|
|
|
sqliteVdbeAddOp(v, OP_MemStore, pLevel->iMem, 0);
|
|
|
|
if( aExpr[k].p->op==TK_LT || aExpr[k].p->op==TK_GT ){
|
|
|
|
testOp = OP_Ge;
|
|
|
|
}else{
|
|
|
|
testOp = OP_Gt;
|
|
|
|
}
|
|
|
|
aExpr[k].p = 0;
|
|
|
|
}
|
|
|
|
start = sqliteVdbeCurrentAddr(v);
|
|
|
|
pLevel->op = OP_Next;
|
|
|
|
pLevel->p1 = base+idx;
|
|
|
|
pLevel->p2 = start;
|
|
|
|
if( testOp!=OP_Noop ){
|
|
|
|
sqliteVdbeAddOp(v, OP_Recno, base+idx, 0);
|
|
|
|
sqliteVdbeAddOp(v, OP_MemLoad, pLevel->iMem, 0);
|
|
|
|
sqliteVdbeAddOp(v, testOp, 0, brk);
|
|
|
|
}
|
|
|
|
haveKey = 0;
|
|
|
|
}else if( pIdx==0 ){
|
|
|
|
/* Case 4: There was no usable index. We must do a complete
|
|
|
|
** scan of the entire database table.
|
|
|
|
*/
|
|
|
|
int start;
|
|
|
|
|
|
|
|
brk = pLevel->brk = sqliteVdbeMakeLabel(v);
|
|
|
|
cont = pLevel->cont = sqliteVdbeMakeLabel(v);
|
|
|
|
sqliteVdbeAddOp(v, OP_Rewind, base+idx, brk);
|
|
|
|
start = sqliteVdbeCurrentAddr(v);
|
|
|
|
pLevel->op = OP_Next;
|
|
|
|
pLevel->p1 = base+idx;
|
|
|
|
pLevel->p2 = start;
|
|
|
|
haveKey = 0;
|
2001-11-08 03:45:21 +03:00
|
|
|
}else{
|
2002-01-06 20:07:40 +03:00
|
|
|
/* Case 5: The contraint on the right-most index field is
|
|
|
|
** an inequality.
|
2001-11-08 03:45:21 +03:00
|
|
|
*/
|
|
|
|
int score = pLevel->score;
|
|
|
|
int nEqColumn = score/4;
|
|
|
|
int start;
|
|
|
|
int leFlag, geFlag;
|
|
|
|
int testOp;
|
|
|
|
|
|
|
|
/* Evaluate the equality constraints
|
|
|
|
*/
|
|
|
|
for(j=0; j<nEqColumn; j++){
|
|
|
|
for(k=0; k<nExpr; k++){
|
|
|
|
if( aExpr[k].p==0 ) continue;
|
|
|
|
if( aExpr[k].idxLeft==idx
|
|
|
|
&& aExpr[k].p->op==TK_EQ
|
|
|
|
&& (aExpr[k].prereqRight & loopMask)==aExpr[k].prereqRight
|
|
|
|
&& aExpr[k].p->pLeft->iColumn==pIdx->aiColumn[j]
|
|
|
|
){
|
|
|
|
sqliteExprCode(pParse, aExpr[k].p->pRight);
|
|
|
|
aExpr[k].p = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if( aExpr[k].idxRight==idx
|
|
|
|
&& aExpr[k].p->op==TK_EQ
|
|
|
|
&& (aExpr[k].prereqLeft & loopMask)==aExpr[k].prereqLeft
|
|
|
|
&& aExpr[k].p->pRight->iColumn==pIdx->aiColumn[j]
|
|
|
|
){
|
|
|
|
sqliteExprCode(pParse, aExpr[k].p->pLeft);
|
|
|
|
aExpr[k].p = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Duplicate the equality contraint values because they will all be
|
|
|
|
** used twice: once to make the termination key and once to make the
|
|
|
|
** start key.
|
|
|
|
*/
|
|
|
|
for(j=0; j<nEqColumn; j++){
|
|
|
|
sqliteVdbeAddOp(v, OP_Dup, nEqColumn-1, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Generate the termination key. This is the key value that
|
|
|
|
** will end the search. There is no termination key if there
|
|
|
|
** are no equality contraints and no "X<..." constraint.
|
|
|
|
*/
|
|
|
|
if( (score & 1)!=0 ){
|
|
|
|
for(k=0; k<nExpr; k++){
|
|
|
|
Expr *pExpr = aExpr[k].p;
|
|
|
|
if( pExpr==0 ) continue;
|
|
|
|
if( aExpr[k].idxLeft==idx
|
|
|
|
&& (pExpr->op==TK_LT || pExpr->op==TK_LE)
|
|
|
|
&& (aExpr[k].prereqRight & loopMask)==aExpr[k].prereqRight
|
|
|
|
&& pExpr->pLeft->iColumn==pIdx->aiColumn[j]
|
|
|
|
){
|
|
|
|
sqliteExprCode(pParse, pExpr->pRight);
|
|
|
|
leFlag = pExpr->op==TK_LE;
|
|
|
|
aExpr[k].p = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if( aExpr[k].idxRight==idx
|
|
|
|
&& (pExpr->op==TK_GT || pExpr->op==TK_GE)
|
|
|
|
&& (aExpr[k].prereqLeft & loopMask)==aExpr[k].prereqLeft
|
|
|
|
&& pExpr->pRight->iColumn==pIdx->aiColumn[j]
|
|
|
|
){
|
|
|
|
sqliteExprCode(pParse, pExpr->pLeft);
|
|
|
|
leFlag = pExpr->op==TK_GE;
|
|
|
|
aExpr[k].p = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
testOp = OP_IdxGE;
|
|
|
|
}else{
|
|
|
|
testOp = nEqColumn>0 ? OP_IdxGE : OP_Noop;
|
|
|
|
leFlag = 1;
|
|
|
|
}
|
|
|
|
if( testOp!=OP_Noop ){
|
|
|
|
pLevel->iMem = pParse->nMem++;
|
|
|
|
sqliteVdbeAddOp(v, OP_MakeKey, nEqColumn + (score & 1), 0);
|
|
|
|
if( leFlag ){
|
|
|
|
sqliteVdbeAddOp(v, OP_IncrKey, 0, 0);
|
|
|
|
}
|
|
|
|
sqliteVdbeAddOp(v, OP_MemStore, pLevel->iMem, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Generate the start key. This is the key that defines the lower
|
|
|
|
** bound on the search. There is no start key if there are not
|
|
|
|
** equality constraints and if there is no "X>..." constraint. In
|
|
|
|
** that case, generate a "Rewind" instruction in place of the
|
|
|
|
** start key search.
|
|
|
|
*/
|
|
|
|
if( (score & 2)!=0 ){
|
|
|
|
for(k=0; k<nExpr; k++){
|
|
|
|
Expr *pExpr = aExpr[k].p;
|
|
|
|
if( pExpr==0 ) continue;
|
|
|
|
if( aExpr[k].idxLeft==idx
|
|
|
|
&& (pExpr->op==TK_GT || pExpr->op==TK_GE)
|
|
|
|
&& (aExpr[k].prereqRight & loopMask)==aExpr[k].prereqRight
|
|
|
|
&& pExpr->pLeft->iColumn==pIdx->aiColumn[j]
|
|
|
|
){
|
|
|
|
sqliteExprCode(pParse, pExpr->pRight);
|
|
|
|
geFlag = pExpr->op==TK_GE;
|
|
|
|
aExpr[k].p = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if( aExpr[k].idxRight==idx
|
|
|
|
&& (pExpr->op==TK_LT || pExpr->op==TK_LE)
|
|
|
|
&& (aExpr[k].prereqLeft & loopMask)==aExpr[k].prereqLeft
|
|
|
|
&& pExpr->pRight->iColumn==pIdx->aiColumn[j]
|
|
|
|
){
|
|
|
|
sqliteExprCode(pParse, pExpr->pLeft);
|
|
|
|
geFlag = pExpr->op==TK_LE;
|
|
|
|
aExpr[k].p = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2001-11-12 16:51:43 +03:00
|
|
|
}else{
|
|
|
|
geFlag = 1;
|
2001-11-08 03:45:21 +03:00
|
|
|
}
|
|
|
|
brk = pLevel->brk = sqliteVdbeMakeLabel(v);
|
|
|
|
cont = pLevel->cont = sqliteVdbeMakeLabel(v);
|
|
|
|
if( nEqColumn>0 || (score&2)!=0 ){
|
|
|
|
sqliteVdbeAddOp(v, OP_MakeKey, nEqColumn + ((score&2)!=0), 0);
|
|
|
|
if( !geFlag ){
|
|
|
|
sqliteVdbeAddOp(v, OP_IncrKey, 0, 0);
|
|
|
|
}
|
|
|
|
sqliteVdbeAddOp(v, OP_MoveTo, pLevel->iCur, brk);
|
|
|
|
}else{
|
|
|
|
sqliteVdbeAddOp(v, OP_Rewind, pLevel->iCur, brk);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Generate the the top of the loop. If there is a termination
|
|
|
|
** key we have to test for that key and abort at the top of the
|
|
|
|
** loop.
|
|
|
|
*/
|
|
|
|
start = sqliteVdbeCurrentAddr(v);
|
|
|
|
if( testOp!=OP_Noop ){
|
|
|
|
sqliteVdbeAddOp(v, OP_MemLoad, pLevel->iMem, 0);
|
|
|
|
sqliteVdbeAddOp(v, testOp, pLevel->iCur, brk);
|
|
|
|
}
|
|
|
|
sqliteVdbeAddOp(v, OP_IdxRecno, pLevel->iCur, 0);
|
|
|
|
if( i==pTabList->nId-1 && pushKey ){
|
|
|
|
haveKey = 1;
|
|
|
|
}else{
|
|
|
|
sqliteVdbeAddOp(v, OP_MoveTo, base+idx, 0);
|
|
|
|
haveKey = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Record the instruction used to terminate the loop.
|
|
|
|
*/
|
|
|
|
pLevel->op = OP_Next;
|
|
|
|
pLevel->p1 = pLevel->iCur;
|
|
|
|
pLevel->p2 = start;
|
2000-05-29 18:26:00 +04:00
|
|
|
}
|
|
|
|
loopMask |= 1<<idx;
|
|
|
|
|
|
|
|
/* Insert code to test every subexpression that can be completely
|
|
|
|
** computed using the current set of tables.
|
|
|
|
*/
|
|
|
|
for(j=0; j<nExpr; j++){
|
|
|
|
if( aExpr[j].p==0 ) continue;
|
|
|
|
if( (aExpr[j].prereqRight & loopMask)!=aExpr[j].prereqRight ) continue;
|
|
|
|
if( (aExpr[j].prereqLeft & loopMask)!=aExpr[j].prereqLeft ) continue;
|
|
|
|
if( haveKey ){
|
2001-02-20 02:23:38 +03:00
|
|
|
haveKey = 0;
|
2001-10-13 05:06:47 +04:00
|
|
|
sqliteVdbeAddOp(v, OP_MoveTo, base+idx, 0);
|
2000-05-29 18:26:00 +04:00
|
|
|
}
|
|
|
|
sqliteExprIfFalse(pParse, aExpr[j].p, cont);
|
|
|
|
aExpr[j].p = 0;
|
|
|
|
}
|
|
|
|
brk = cont;
|
|
|
|
}
|
|
|
|
pWInfo->iContinue = cont;
|
|
|
|
if( pushKey && !haveKey ){
|
2001-10-13 05:06:47 +04:00
|
|
|
sqliteVdbeAddOp(v, OP_Recno, base, 0);
|
2000-05-29 18:26:00 +04:00
|
|
|
}
|
|
|
|
sqliteFree(aOrder);
|
|
|
|
return pWInfo;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Generate the end of the WHERE loop.
|
|
|
|
*/
|
|
|
|
void sqliteWhereEnd(WhereInfo *pWInfo){
|
|
|
|
Vdbe *v = pWInfo->pParse->pVdbe;
|
2000-06-05 22:54:46 +04:00
|
|
|
int i;
|
|
|
|
int base = pWInfo->base;
|
2001-11-07 19:48:26 +03:00
|
|
|
WhereLevel *pLevel;
|
2002-02-18 04:17:00 +03:00
|
|
|
IdList *pTabList = pWInfo->pTabList;
|
2000-06-05 22:54:46 +04:00
|
|
|
|
2002-02-18 04:17:00 +03:00
|
|
|
for(i=pTabList->nId-1; i>=0; i--){
|
2001-11-07 19:48:26 +03:00
|
|
|
pLevel = &pWInfo->a[i];
|
|
|
|
sqliteVdbeResolveLabel(v, pLevel->cont);
|
|
|
|
if( pLevel->op!=OP_Noop ){
|
|
|
|
sqliteVdbeAddOp(v, pLevel->op, pLevel->p1, pLevel->p2);
|
|
|
|
}
|
|
|
|
sqliteVdbeResolveLabel(v, pLevel->brk);
|
|
|
|
}
|
|
|
|
sqliteVdbeResolveLabel(v, pWInfo->iBreak);
|
2002-02-18 04:17:00 +03:00
|
|
|
for(i=0; i<pTabList->nId; i++){
|
|
|
|
if( pTabList->a[i].pTab->isTransient ) continue;
|
2001-11-07 19:48:26 +03:00
|
|
|
pLevel = &pWInfo->a[i];
|
2001-10-13 05:06:47 +04:00
|
|
|
sqliteVdbeAddOp(v, OP_Close, base+i, 0);
|
2001-11-07 19:48:26 +03:00
|
|
|
if( pLevel->pIdx!=0 ){
|
|
|
|
sqliteVdbeAddOp(v, OP_Close, pLevel->iCur, 0);
|
2000-06-05 22:54:46 +04:00
|
|
|
}
|
|
|
|
}
|
2002-02-18 04:17:00 +03:00
|
|
|
pWInfo->pParse->nTab = base;
|
2000-05-29 18:26:00 +04:00
|
|
|
sqliteFree(pWInfo);
|
|
|
|
return;
|
|
|
|
}
|