where.c
上传用户:sunhongbo
上传日期:2022-01-25
资源大小:3010k
文件大小:103k
源码类别:

数据库系统

开发平台:

C/C++

  1. /*
  2. ** 2001 September 15
  3. **
  4. ** The author disclaims copyright to this source code.  In place of
  5. ** a legal notice, here is a blessing:
  6. **
  7. **    May you do good and not evil.
  8. **    May you find forgiveness for yourself and forgive others.
  9. **    May you share freely, never taking more than you give.
  10. **
  11. *************************************************************************
  12. ** This module contains C code that generates VDBE code used to process
  13. ** the WHERE clause of SQL statements.  This module is reponsible for
  14. ** 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".
  18. **
  19. ** $Id: where.c,v 1.298 2008/04/10 13:33:18 drh Exp $
  20. */
  21. #include "sqliteInt.h"
  22. /*
  23. ** The number of bits in a Bitmask.  "BMS" means "BitMask Size".
  24. */
  25. #define BMS  (sizeof(Bitmask)*8)
  26. /*
  27. ** Trace output macros
  28. */
  29. #if defined(SQLITE_TEST) || defined(SQLITE_DEBUG)
  30. int sqlite3WhereTrace = 0;
  31. # define WHERETRACE(X)  if(sqlite3WhereTrace) sqlite3DebugPrintf X
  32. #else
  33. # define WHERETRACE(X)
  34. #endif
  35. /* Forward reference
  36. */
  37. typedef struct WhereClause WhereClause;
  38. typedef struct ExprMaskSet ExprMaskSet;
  39. /*
  40. ** The query generator uses an array of instances of this structure to
  41. ** help it analyze the subexpressions of the WHERE clause.  Each WHERE
  42. ** clause subexpression is separated from the others by an AND operator.
  43. **
  44. ** All WhereTerms are collected into a single WhereClause structure.  
  45. ** The following identity holds:
  46. **
  47. **        WhereTerm.pWC->a[WhereTerm.idx] == WhereTerm
  48. **
  49. ** When a term is of the form:
  50. **
  51. **              X <op> <expr>
  52. **
  53. ** where X is a column name and <op> is one of certain operators,
  54. ** then WhereTerm.leftCursor and WhereTerm.leftColumn record the
  55. ** cursor number and column number for X.  WhereTerm.operator records
  56. ** the <op> using a bitmask encoding defined by WO_xxx below.  The
  57. ** use of a bitmask encoding for the operator allows us to search
  58. ** quickly for terms that match any of several different operators.
  59. **
  60. ** prereqRight and prereqAll record sets of cursor numbers,
  61. ** but they do so indirectly.  A single ExprMaskSet structure translates
  62. ** cursor number into bits and the translated bit is stored in the prereq
  63. ** fields.  The translation is used in order to maximize the number of
  64. ** bits that will fit in a Bitmask.  The VDBE cursor numbers might be
  65. ** spread out over the non-negative integers.  For example, the cursor
  66. ** numbers might be 3, 8, 9, 10, 20, 23, 41, and 45.  The ExprMaskSet
  67. ** translates these sparse cursor numbers into consecutive integers
  68. ** beginning with 0 in order to make the best possible use of the available
  69. ** bits in the Bitmask.  So, in the example above, the cursor numbers
  70. ** would be mapped into integers 0 through 7.
  71. */
  72. typedef struct WhereTerm WhereTerm;
  73. struct WhereTerm {
  74.   Expr *pExpr;            /* Pointer to the subexpression */
  75.   i16 iParent;            /* Disable pWC->a[iParent] when this term disabled */
  76.   i16 leftCursor;         /* Cursor number of X in "X <op> <expr>" */
  77.   i16 leftColumn;         /* Column number of X in "X <op> <expr>" */
  78.   u16 eOperator;          /* A WO_xx value describing <op> */
  79.   u8 flags;               /* Bit flags.  See below */
  80.   u8 nChild;              /* Number of children that must disable us */
  81.   WhereClause *pWC;       /* The clause this term is part of */
  82.   Bitmask prereqRight;    /* Bitmask of tables used by pRight */
  83.   Bitmask prereqAll;      /* Bitmask of tables referenced by p */
  84. };
  85. /*
  86. ** Allowed values of WhereTerm.flags
  87. */
  88. #define TERM_DYNAMIC    0x01   /* Need to call sqlite3ExprDelete(pExpr) */
  89. #define TERM_VIRTUAL    0x02   /* Added by the optimizer.  Do not code */
  90. #define TERM_CODED      0x04   /* This term is already coded */
  91. #define TERM_COPIED     0x08   /* Has a child */
  92. #define TERM_OR_OK      0x10   /* Used during OR-clause processing */
  93. /*
  94. ** An instance of the following structure holds all information about a
  95. ** WHERE clause.  Mostly this is a container for one or more WhereTerms.
  96. */
  97. struct WhereClause {
  98.   Parse *pParse;           /* The parser context */
  99.   ExprMaskSet *pMaskSet;   /* Mapping of table indices to bitmasks */
  100.   int nTerm;               /* Number of terms */
  101.   int nSlot;               /* Number of entries in a[] */
  102.   WhereTerm *a;            /* Each a[] describes a term of the WHERE cluase */
  103.   WhereTerm aStatic[10];   /* Initial static space for a[] */
  104. };
  105. /*
  106. ** An instance of the following structure keeps track of a mapping
  107. ** between VDBE cursor numbers and bits of the bitmasks in WhereTerm.
  108. **
  109. ** The VDBE cursor numbers are small integers contained in 
  110. ** SrcList_item.iCursor and Expr.iTable fields.  For any given WHERE 
  111. ** clause, the cursor numbers might not begin with 0 and they might
  112. ** contain gaps in the numbering sequence.  But we want to make maximum
  113. ** use of the bits in our bitmasks.  This structure provides a mapping
  114. ** from the sparse cursor numbers into consecutive integers beginning
  115. ** with 0.
  116. **
  117. ** If ExprMaskSet.ix[A]==B it means that The A-th bit of a Bitmask
  118. ** corresponds VDBE cursor number B.  The A-th bit of a bitmask is 1<<A.
  119. **
  120. ** For example, if the WHERE clause expression used these VDBE
  121. ** cursors:  4, 5, 8, 29, 57, 73.  Then the  ExprMaskSet structure
  122. ** would map those cursor numbers into bits 0 through 5.
  123. **
  124. ** Note that the mapping is not necessarily ordered.  In the example
  125. ** above, the mapping might go like this:  4->3, 5->1, 8->2, 29->0,
  126. ** 57->5, 73->4.  Or one of 719 other combinations might be used. It
  127. ** does not really matter.  What is important is that sparse cursor
  128. ** numbers all get mapped into bit numbers that begin with 0 and contain
  129. ** no gaps.
  130. */
  131. struct ExprMaskSet {
  132.   int n;                        /* Number of assigned cursor values */
  133.   int ix[sizeof(Bitmask)*8];    /* Cursor assigned to each bit */
  134. };
  135. /*
  136. ** Bitmasks for the operators that indices are able to exploit.  An
  137. ** OR-ed combination of these values can be used when searching for
  138. ** terms in the where clause.
  139. */
  140. #define WO_IN     1
  141. #define WO_EQ     2
  142. #define WO_LT     (WO_EQ<<(TK_LT-TK_EQ))
  143. #define WO_LE     (WO_EQ<<(TK_LE-TK_EQ))
  144. #define WO_GT     (WO_EQ<<(TK_GT-TK_EQ))
  145. #define WO_GE     (WO_EQ<<(TK_GE-TK_EQ))
  146. #define WO_MATCH  64
  147. #define WO_ISNULL 128
  148. /*
  149. ** Value for flags returned by bestIndex().  
  150. **
  151. ** The least significant byte is reserved as a mask for WO_ values above.
  152. ** The WhereLevel.flags field is usually set to WO_IN|WO_EQ|WO_ISNULL.
  153. ** But if the table is the right table of a left join, WhereLevel.flags
  154. ** is set to WO_IN|WO_EQ.  The WhereLevel.flags field can then be used as
  155. ** the "op" parameter to findTerm when we are resolving equality constraints.
  156. ** ISNULL constraints will then not be used on the right table of a left
  157. ** join.  Tickets #2177 and #2189.
  158. */
  159. #define WHERE_ROWID_EQ     0x000100   /* rowid=EXPR or rowid IN (...) */
  160. #define WHERE_ROWID_RANGE  0x000200   /* rowid<EXPR and/or rowid>EXPR */
  161. #define WHERE_COLUMN_EQ    0x001000   /* x=EXPR or x IN (...) */
  162. #define WHERE_COLUMN_RANGE 0x002000   /* x<EXPR and/or x>EXPR */
  163. #define WHERE_COLUMN_IN    0x004000   /* x IN (...) */
  164. #define WHERE_TOP_LIMIT    0x010000   /* x<EXPR or x<=EXPR constraint */
  165. #define WHERE_BTM_LIMIT    0x020000   /* x>EXPR or x>=EXPR constraint */
  166. #define WHERE_IDX_ONLY     0x080000   /* Use index only - omit table */
  167. #define WHERE_ORDERBY      0x100000   /* Output will appear in correct order */
  168. #define WHERE_REVERSE      0x200000   /* Scan in reverse order */
  169. #define WHERE_UNIQUE       0x400000   /* Selects no more than one row */
  170. #define WHERE_VIRTUALTABLE 0x800000   /* Use virtual-table processing */
  171. /*
  172. ** Initialize a preallocated WhereClause structure.
  173. */
  174. static void whereClauseInit(
  175.   WhereClause *pWC,        /* The WhereClause to be initialized */
  176.   Parse *pParse,           /* The parsing context */
  177.   ExprMaskSet *pMaskSet    /* Mapping from table indices to bitmasks */
  178. ){
  179.   pWC->pParse = pParse;
  180.   pWC->pMaskSet = pMaskSet;
  181.   pWC->nTerm = 0;
  182.   pWC->nSlot = ArraySize(pWC->aStatic);
  183.   pWC->a = pWC->aStatic;
  184. }
  185. /*
  186. ** Deallocate a WhereClause structure.  The WhereClause structure
  187. ** itself is not freed.  This routine is the inverse of whereClauseInit().
  188. */
  189. static void whereClauseClear(WhereClause *pWC){
  190.   int i;
  191.   WhereTerm *a;
  192.   for(i=pWC->nTerm-1, a=pWC->a; i>=0; i--, a++){
  193.     if( a->flags & TERM_DYNAMIC ){
  194.       sqlite3ExprDelete(a->pExpr);
  195.     }
  196.   }
  197.   if( pWC->a!=pWC->aStatic ){
  198.     sqlite3_free(pWC->a);
  199.   }
  200. }
  201. /*
  202. ** Add a new entries to the WhereClause structure.  Increase the allocated
  203. ** space as necessary.
  204. **
  205. ** If the flags argument includes TERM_DYNAMIC, then responsibility
  206. ** for freeing the expression p is assumed by the WhereClause object.
  207. **
  208. ** WARNING:  This routine might reallocate the space used to store
  209. ** WhereTerms.  All pointers to WhereTerms should be invalided after
  210. ** calling this routine.  Such pointers may be reinitialized by referencing
  211. ** the pWC->a[] array.
  212. */
  213. static int whereClauseInsert(WhereClause *pWC, Expr *p, int flags){
  214.   WhereTerm *pTerm;
  215.   int idx;
  216.   if( pWC->nTerm>=pWC->nSlot ){
  217.     WhereTerm *pOld = pWC->a;
  218.     pWC->a = sqlite3_malloc( sizeof(pWC->a[0])*pWC->nSlot*2 );
  219.     if( pWC->a==0 ){
  220.       pWC->pParse->db->mallocFailed = 1;
  221.       if( flags & TERM_DYNAMIC ){
  222.         sqlite3ExprDelete(p);
  223.       }
  224.       pWC->a = pOld;
  225.       return 0;
  226.     }
  227.     memcpy(pWC->a, pOld, sizeof(pWC->a[0])*pWC->nTerm);
  228.     if( pOld!=pWC->aStatic ){
  229.       sqlite3_free(pOld);
  230.     }
  231.     pWC->nSlot *= 2;
  232.   }
  233.   pTerm = &pWC->a[idx = pWC->nTerm];
  234.   pWC->nTerm++;
  235.   pTerm->pExpr = p;
  236.   pTerm->flags = flags;
  237.   pTerm->pWC = pWC;
  238.   pTerm->iParent = -1;
  239.   return idx;
  240. }
  241. /*
  242. ** This routine identifies subexpressions in the WHERE clause where
  243. ** each subexpression is separated by the AND operator or some other
  244. ** operator specified in the op parameter.  The WhereClause structure
  245. ** is filled with pointers to subexpressions.  For example:
  246. **
  247. **    WHERE  a=='hello' AND coalesce(b,11)<10 AND (c+12!=d OR c==22)
  248. **           ________/     _______________/     ________________/
  249. **            slot[0]            slot[1]               slot[2]
  250. **
  251. ** The original WHERE clause in pExpr is unaltered.  All this routine
  252. ** does is make slot[] entries point to substructure within pExpr.
  253. **
  254. ** In the previous sentence and in the diagram, "slot[]" refers to
  255. ** the WhereClause.a[] array.  This array grows as needed to contain
  256. ** all terms of the WHERE clause.
  257. */
  258. static void whereSplit(WhereClause *pWC, Expr *pExpr, int op){
  259.   if( pExpr==0 ) return;
  260.   if( pExpr->op!=op ){
  261.     whereClauseInsert(pWC, pExpr, 0);
  262.   }else{
  263.     whereSplit(pWC, pExpr->pLeft, op);
  264.     whereSplit(pWC, pExpr->pRight, op);
  265.   }
  266. }
  267. /*
  268. ** Initialize an expression mask set
  269. */
  270. #define initMaskSet(P)  memset(P, 0, sizeof(*P))
  271. /*
  272. ** Return the bitmask for the given cursor number.  Return 0 if
  273. ** iCursor is not in the set.
  274. */
  275. static Bitmask getMask(ExprMaskSet *pMaskSet, int iCursor){
  276.   int i;
  277.   for(i=0; i<pMaskSet->n; i++){
  278.     if( pMaskSet->ix[i]==iCursor ){
  279.       return ((Bitmask)1)<<i;
  280.     }
  281.   }
  282.   return 0;
  283. }
  284. /*
  285. ** Create a new mask for cursor iCursor.
  286. **
  287. ** There is one cursor per table in the FROM clause.  The number of
  288. ** tables in the FROM clause is limited by a test early in the
  289. ** sqlite3WhereBegin() routine.  So we know that the pMaskSet->ix[]
  290. ** array will never overflow.
  291. */
  292. static void createMask(ExprMaskSet *pMaskSet, int iCursor){
  293.   assert( pMaskSet->n < ArraySize(pMaskSet->ix) );
  294.   pMaskSet->ix[pMaskSet->n++] = iCursor;
  295. }
  296. /*
  297. ** This routine walks (recursively) an expression tree and generates
  298. ** a bitmask indicating which tables are used in that expression
  299. ** tree.
  300. **
  301. ** In order for this routine to work, the calling function must have
  302. ** previously invoked sqlite3ExprResolveNames() on the expression.  See
  303. ** the header comment on that routine for additional information.
  304. ** The sqlite3ExprResolveNames() routines looks for column names and
  305. ** sets their opcodes to TK_COLUMN and their Expr.iTable fields to
  306. ** the VDBE cursor number of the table.  This routine just has to
  307. ** translate the cursor numbers into bitmask values and OR all
  308. ** the bitmasks together.
  309. */
  310. static Bitmask exprListTableUsage(ExprMaskSet*, ExprList*);
  311. static Bitmask exprSelectTableUsage(ExprMaskSet*, Select*);
  312. static Bitmask exprTableUsage(ExprMaskSet *pMaskSet, Expr *p){
  313.   Bitmask mask = 0;
  314.   if( p==0 ) return 0;
  315.   if( p->op==TK_COLUMN ){
  316.     mask = getMask(pMaskSet, p->iTable);
  317.     return mask;
  318.   }
  319.   mask = exprTableUsage(pMaskSet, p->pRight);
  320.   mask |= exprTableUsage(pMaskSet, p->pLeft);
  321.   mask |= exprListTableUsage(pMaskSet, p->pList);
  322.   mask |= exprSelectTableUsage(pMaskSet, p->pSelect);
  323.   return mask;
  324. }
  325. static Bitmask exprListTableUsage(ExprMaskSet *pMaskSet, ExprList *pList){
  326.   int i;
  327.   Bitmask mask = 0;
  328.   if( pList ){
  329.     for(i=0; i<pList->nExpr; i++){
  330.       mask |= exprTableUsage(pMaskSet, pList->a[i].pExpr);
  331.     }
  332.   }
  333.   return mask;
  334. }
  335. static Bitmask exprSelectTableUsage(ExprMaskSet *pMaskSet, Select *pS){
  336.   Bitmask mask = 0;
  337.   while( pS ){
  338.     mask |= exprListTableUsage(pMaskSet, pS->pEList);
  339.     mask |= exprListTableUsage(pMaskSet, pS->pGroupBy);
  340.     mask |= exprListTableUsage(pMaskSet, pS->pOrderBy);
  341.     mask |= exprTableUsage(pMaskSet, pS->pWhere);
  342.     mask |= exprTableUsage(pMaskSet, pS->pHaving);
  343.     pS = pS->pPrior;
  344.   }
  345.   return mask;
  346. }
  347. /*
  348. ** Return TRUE if the given operator is one of the operators that is
  349. ** allowed for an indexable WHERE clause term.  The allowed operators are
  350. ** "=", "<", ">", "<=", ">=", and "IN".
  351. */
  352. static int allowedOp(int op){
  353.   assert( TK_GT>TK_EQ && TK_GT<TK_GE );
  354.   assert( TK_LT>TK_EQ && TK_LT<TK_GE );
  355.   assert( TK_LE>TK_EQ && TK_LE<TK_GE );
  356.   assert( TK_GE==TK_EQ+4 );
  357.   return op==TK_IN || (op>=TK_EQ && op<=TK_GE) || op==TK_ISNULL;
  358. }
  359. /*
  360. ** Swap two objects of type T.
  361. */
  362. #define SWAP(TYPE,A,B) {TYPE t=A; A=B; B=t;}
  363. /*
  364. ** Commute a comparision operator.  Expressions of the form "X op Y"
  365. ** are converted into "Y op X".
  366. **
  367. ** If a collation sequence is associated with either the left or right
  368. ** side of the comparison, it remains associated with the same side after
  369. ** the commutation. So "Y collate NOCASE op X" becomes 
  370. ** "X collate NOCASE op Y". This is because any collation sequence on
  371. ** the left hand side of a comparison overrides any collation sequence 
  372. ** attached to the right. For the same reason the EP_ExpCollate flag
  373. ** is not commuted.
  374. */
  375. static void exprCommute(Expr *pExpr){
  376.   u16 expRight = (pExpr->pRight->flags & EP_ExpCollate);
  377.   u16 expLeft = (pExpr->pLeft->flags & EP_ExpCollate);
  378.   assert( allowedOp(pExpr->op) && pExpr->op!=TK_IN );
  379.   SWAP(CollSeq*,pExpr->pRight->pColl,pExpr->pLeft->pColl);
  380.   pExpr->pRight->flags = (pExpr->pRight->flags & ~EP_ExpCollate) | expLeft;
  381.   pExpr->pLeft->flags = (pExpr->pLeft->flags & ~EP_ExpCollate) | expRight;
  382.   SWAP(Expr*,pExpr->pRight,pExpr->pLeft);
  383.   if( pExpr->op>=TK_GT ){
  384.     assert( TK_LT==TK_GT+2 );
  385.     assert( TK_GE==TK_LE+2 );
  386.     assert( TK_GT>TK_EQ );
  387.     assert( TK_GT<TK_LE );
  388.     assert( pExpr->op>=TK_GT && pExpr->op<=TK_GE );
  389.     pExpr->op = ((pExpr->op-TK_GT)^2)+TK_GT;
  390.   }
  391. }
  392. /*
  393. ** Translate from TK_xx operator to WO_xx bitmask.
  394. */
  395. static int operatorMask(int op){
  396.   int c;
  397.   assert( allowedOp(op) );
  398.   if( op==TK_IN ){
  399.     c = WO_IN;
  400.   }else if( op==TK_ISNULL ){
  401.     c = WO_ISNULL;
  402.   }else{
  403.     c = WO_EQ<<(op-TK_EQ);
  404.   }
  405.   assert( op!=TK_ISNULL || c==WO_ISNULL );
  406.   assert( op!=TK_IN || c==WO_IN );
  407.   assert( op!=TK_EQ || c==WO_EQ );
  408.   assert( op!=TK_LT || c==WO_LT );
  409.   assert( op!=TK_LE || c==WO_LE );
  410.   assert( op!=TK_GT || c==WO_GT );
  411.   assert( op!=TK_GE || c==WO_GE );
  412.   return c;
  413. }
  414. /*
  415. ** Search for a term in the WHERE clause that is of the form "X <op> <expr>"
  416. ** where X is a reference to the iColumn of table iCur and <op> is one of
  417. ** the WO_xx operator codes specified by the op parameter.
  418. ** Return a pointer to the term.  Return 0 if not found.
  419. */
  420. static WhereTerm *findTerm(
  421.   WhereClause *pWC,     /* The WHERE clause to be searched */
  422.   int iCur,             /* Cursor number of LHS */
  423.   int iColumn,          /* Column number of LHS */
  424.   Bitmask notReady,     /* RHS must not overlap with this mask */
  425.   u16 op,               /* Mask of WO_xx values describing operator */
  426.   Index *pIdx           /* Must be compatible with this index, if not NULL */
  427. ){
  428.   WhereTerm *pTerm;
  429.   int k;
  430.   for(pTerm=pWC->a, k=pWC->nTerm; k; k--, pTerm++){
  431.     if( pTerm->leftCursor==iCur
  432.        && (pTerm->prereqRight & notReady)==0
  433.        && pTerm->leftColumn==iColumn
  434.        && (pTerm->eOperator & op)!=0
  435.     ){
  436.       if( iCur>=0 && pIdx && pTerm->eOperator!=WO_ISNULL ){
  437.         Expr *pX = pTerm->pExpr;
  438.         CollSeq *pColl;
  439.         char idxaff;
  440.         int j;
  441.         Parse *pParse = pWC->pParse;
  442.         idxaff = pIdx->pTable->aCol[iColumn].affinity;
  443.         if( !sqlite3IndexAffinityOk(pX, idxaff) ) continue;
  444.         /* Figure out the collation sequence required from an index for
  445.         ** it to be useful for optimising expression pX. Store this
  446.         ** value in variable pColl.
  447.         */
  448.         assert(pX->pLeft);
  449.         pColl = sqlite3BinaryCompareCollSeq(pParse, pX->pLeft, pX->pRight);
  450.         if( !pColl ){
  451.           pColl = pParse->db->pDfltColl;
  452.         }
  453.         for(j=0; j<pIdx->nColumn && pIdx->aiColumn[j]!=iColumn; j++){}
  454.         assert( j<pIdx->nColumn );
  455.         if( sqlite3StrICmp(pColl->zName, pIdx->azColl[j]) ) continue;
  456.       }
  457.       return pTerm;
  458.     }
  459.   }
  460.   return 0;
  461. }
  462. /* Forward reference */
  463. static void exprAnalyze(SrcList*, WhereClause*, int);
  464. /*
  465. ** Call exprAnalyze on all terms in a WHERE clause.  
  466. **
  467. **
  468. */
  469. static void exprAnalyzeAll(
  470.   SrcList *pTabList,       /* the FROM clause */
  471.   WhereClause *pWC         /* the WHERE clause to be analyzed */
  472. ){
  473.   int i;
  474.   for(i=pWC->nTerm-1; i>=0; i--){
  475.     exprAnalyze(pTabList, pWC, i);
  476.   }
  477. }
  478. #ifndef SQLITE_OMIT_LIKE_OPTIMIZATION
  479. /*
  480. ** Check to see if the given expression is a LIKE or GLOB operator that
  481. ** can be optimized using inequality constraints.  Return TRUE if it is
  482. ** so and false if not.
  483. **
  484. ** In order for the operator to be optimizible, the RHS must be a string
  485. ** literal that does not begin with a wildcard.  
  486. */
  487. static int isLikeOrGlob(
  488.   sqlite3 *db,      /* The database */
  489.   Expr *pExpr,      /* Test this expression */
  490.   int *pnPattern,   /* Number of non-wildcard prefix characters */
  491.   int *pisComplete, /* True if the only wildcard is % in the last character */
  492.   int *pnoCase      /* True if uppercase is equivalent to lowercase */
  493. ){
  494.   const char *z;
  495.   Expr *pRight, *pLeft;
  496.   ExprList *pList;
  497.   int c, cnt;
  498.   char wc[3];
  499.   CollSeq *pColl;
  500.   if( !sqlite3IsLikeFunction(db, pExpr, pnoCase, wc) ){
  501.     return 0;
  502.   }
  503. #ifdef SQLITE_EBCDIC
  504.   if( *pnoCase ) return 0;
  505. #endif
  506.   pList = pExpr->pList;
  507.   pRight = pList->a[0].pExpr;
  508.   if( pRight->op!=TK_STRING
  509.    && (pRight->op!=TK_REGISTER || pRight->iColumn!=TK_STRING) ){
  510.     return 0;
  511.   }
  512.   pLeft = pList->a[1].pExpr;
  513.   if( pLeft->op!=TK_COLUMN ){
  514.     return 0;
  515.   }
  516.   pColl = pLeft->pColl;
  517.   assert( pColl!=0 || pLeft->iColumn==-1 );
  518.   if( pColl==0 ){
  519.     /* No collation is defined for the ROWID.  Use the default. */
  520.     pColl = db->pDfltColl;
  521.   }
  522.   if( (pColl->type!=SQLITE_COLL_BINARY || *pnoCase) &&
  523.       (pColl->type!=SQLITE_COLL_NOCASE || !*pnoCase) ){
  524.     return 0;
  525.   }
  526.   sqlite3DequoteExpr(db, pRight);
  527.   z = (char *)pRight->token.z;
  528.   cnt = 0;
  529.   if( z ){
  530.     while( (c=z[cnt])!=0 && c!=wc[0] && c!=wc[1] && c!=wc[2] ){ cnt++; }
  531.   }
  532.   if( cnt==0 || 255==(u8)z[cnt] ){
  533.     return 0;
  534.   }
  535.   *pisComplete = z[cnt]==wc[0] && z[cnt+1]==0;
  536.   *pnPattern = cnt;
  537.   return 1;
  538. }
  539. #endif /* SQLITE_OMIT_LIKE_OPTIMIZATION */
  540. #ifndef SQLITE_OMIT_VIRTUALTABLE
  541. /*
  542. ** Check to see if the given expression is of the form
  543. **
  544. **         column MATCH expr
  545. **
  546. ** If it is then return TRUE.  If not, return FALSE.
  547. */
  548. static int isMatchOfColumn(
  549.   Expr *pExpr      /* Test this expression */
  550. ){
  551.   ExprList *pList;
  552.   if( pExpr->op!=TK_FUNCTION ){
  553.     return 0;
  554.   }
  555.   if( pExpr->token.n!=5 ||
  556.        sqlite3StrNICmp((const char*)pExpr->token.z,"match",5)!=0 ){
  557.     return 0;
  558.   }
  559.   pList = pExpr->pList;
  560.   if( pList->nExpr!=2 ){
  561.     return 0;
  562.   }
  563.   if( pList->a[1].pExpr->op != TK_COLUMN ){
  564.     return 0;
  565.   }
  566.   return 1;
  567. }
  568. #endif /* SQLITE_OMIT_VIRTUALTABLE */
  569. /*
  570. ** If the pBase expression originated in the ON or USING clause of
  571. ** a join, then transfer the appropriate markings over to derived.
  572. */
  573. static void transferJoinMarkings(Expr *pDerived, Expr *pBase){
  574.   pDerived->flags |= pBase->flags & EP_FromJoin;
  575.   pDerived->iRightJoinTable = pBase->iRightJoinTable;
  576. }
  577. #if !defined(SQLITE_OMIT_OR_OPTIMIZATION) && !defined(SQLITE_OMIT_SUBQUERY)
  578. /*
  579. ** Return TRUE if the given term of an OR clause can be converted
  580. ** into an IN clause.  The iCursor and iColumn define the left-hand
  581. ** side of the IN clause.
  582. **
  583. ** The context is that we have multiple OR-connected equality terms
  584. ** like this:
  585. **
  586. **           a=<expr1> OR  a=<expr2> OR b=<expr3>  OR ...
  587. **
  588. ** The pOrTerm input to this routine corresponds to a single term of
  589. ** this OR clause.  In order for the term to be a condidate for
  590. ** conversion to an IN operator, the following must be true:
  591. **
  592. **     *  The left-hand side of the term must be the column which
  593. **        is identified by iCursor and iColumn.
  594. **
  595. **     *  If the right-hand side is also a column, then the affinities
  596. **        of both right and left sides must be such that no type
  597. **        conversions are required on the right.  (Ticket #2249)
  598. **
  599. ** If both of these conditions are true, then return true.  Otherwise
  600. ** return false.
  601. */
  602. static int orTermIsOptCandidate(WhereTerm *pOrTerm, int iCursor, int iColumn){
  603.   int affLeft, affRight;
  604.   assert( pOrTerm->eOperator==WO_EQ );
  605.   if( pOrTerm->leftCursor!=iCursor ){
  606.     return 0;
  607.   }
  608.   if( pOrTerm->leftColumn!=iColumn ){
  609.     return 0;
  610.   }
  611.   affRight = sqlite3ExprAffinity(pOrTerm->pExpr->pRight);
  612.   if( affRight==0 ){
  613.     return 1;
  614.   }
  615.   affLeft = sqlite3ExprAffinity(pOrTerm->pExpr->pLeft);
  616.   if( affRight!=affLeft ){
  617.     return 0;
  618.   }
  619.   return 1;
  620. }
  621. /*
  622. ** Return true if the given term of an OR clause can be ignored during
  623. ** a check to make sure all OR terms are candidates for optimization.
  624. ** In other words, return true if a call to the orTermIsOptCandidate()
  625. ** above returned false but it is not necessary to disqualify the
  626. ** optimization.
  627. **
  628. ** Suppose the original OR phrase was this:
  629. **
  630. **           a=4  OR  a=11  OR  a=b
  631. **
  632. ** During analysis, the third term gets flipped around and duplicate
  633. ** so that we are left with this:
  634. **
  635. **           a=4  OR  a=11  OR  a=b  OR  b=a
  636. **
  637. ** Since the last two terms are duplicates, only one of them
  638. ** has to qualify in order for the whole phrase to qualify.  When
  639. ** this routine is called, we know that pOrTerm did not qualify.
  640. ** This routine merely checks to see if pOrTerm has a duplicate that
  641. ** might qualify.  If there is a duplicate that has not yet been
  642. ** disqualified, then return true.  If there are no duplicates, or
  643. ** the duplicate has also been disqualifed, return false.
  644. */
  645. static int orTermHasOkDuplicate(WhereClause *pOr, WhereTerm *pOrTerm){
  646.   if( pOrTerm->flags & TERM_COPIED ){
  647.     /* This is the original term.  The duplicate is to the left had
  648.     ** has not yet been analyzed and thus has not yet been disqualified. */
  649.     return 1;
  650.   }
  651.   if( (pOrTerm->flags & TERM_VIRTUAL)!=0
  652.      && (pOr->a[pOrTerm->iParent].flags & TERM_OR_OK)!=0 ){
  653.     /* This is a duplicate term.  The original qualified so this one
  654.     ** does not have to. */
  655.     return 1;
  656.   }
  657.   /* This is either a singleton term or else it is a duplicate for
  658.   ** which the original did not qualify.  Either way we are done for. */
  659.   return 0;
  660. }
  661. #endif /* !SQLITE_OMIT_OR_OPTIMIZATION && !SQLITE_OMIT_SUBQUERY */
  662. /*
  663. ** The input to this routine is an WhereTerm structure with only the
  664. ** "pExpr" field filled in.  The job of this routine is to analyze the
  665. ** subexpression and populate all the other fields of the WhereTerm
  666. ** structure.
  667. **
  668. ** If the expression is of the form "<expr> <op> X" it gets commuted
  669. ** to the standard form of "X <op> <expr>".  If the expression is of
  670. ** the form "X <op> Y" where both X and Y are columns, then the original
  671. ** expression is unchanged and a new virtual expression of the form
  672. ** "Y <op> X" is added to the WHERE clause and analyzed separately.
  673. */
  674. static void exprAnalyze(
  675.   SrcList *pSrc,            /* the FROM clause */
  676.   WhereClause *pWC,         /* the WHERE clause */
  677.   int idxTerm               /* Index of the term to be analyzed */
  678. ){
  679.   WhereTerm *pTerm;
  680.   ExprMaskSet *pMaskSet;
  681.   Expr *pExpr;
  682.   Bitmask prereqLeft;
  683.   Bitmask prereqAll;
  684.   int nPattern;
  685.   int isComplete;
  686.   int noCase;
  687.   int op;
  688.   Parse *pParse = pWC->pParse;
  689.   sqlite3 *db = pParse->db;
  690.   if( db->mallocFailed ){
  691.     return;
  692.   }
  693.   pTerm = &pWC->a[idxTerm];
  694.   pMaskSet = pWC->pMaskSet;
  695.   pExpr = pTerm->pExpr;
  696.   prereqLeft = exprTableUsage(pMaskSet, pExpr->pLeft);
  697.   op = pExpr->op;
  698.   if( op==TK_IN ){
  699.     assert( pExpr->pRight==0 );
  700.     pTerm->prereqRight = exprListTableUsage(pMaskSet, pExpr->pList)
  701.                           | exprSelectTableUsage(pMaskSet, pExpr->pSelect);
  702.   }else if( op==TK_ISNULL ){
  703.     pTerm->prereqRight = 0;
  704.   }else{
  705.     pTerm->prereqRight = exprTableUsage(pMaskSet, pExpr->pRight);
  706.   }
  707.   prereqAll = exprTableUsage(pMaskSet, pExpr);
  708.   if( ExprHasProperty(pExpr, EP_FromJoin) ){
  709.     Bitmask x = getMask(pMaskSet, pExpr->iRightJoinTable);
  710.     prereqAll |= x;
  711.     pTerm->prereqRight |= x-1; /* ON clause terms may not be used with an index
  712.                                ** on left table of a LEFT JOIN.  Ticket #3015 */
  713.   }
  714.   pTerm->prereqAll = prereqAll;
  715.   pTerm->leftCursor = -1;
  716.   pTerm->iParent = -1;
  717.   pTerm->eOperator = 0;
  718.   if( allowedOp(op) && (pTerm->prereqRight & prereqLeft)==0 ){
  719.     Expr *pLeft = pExpr->pLeft;
  720.     Expr *pRight = pExpr->pRight;
  721.     if( pLeft->op==TK_COLUMN ){
  722.       pTerm->leftCursor = pLeft->iTable;
  723.       pTerm->leftColumn = pLeft->iColumn;
  724.       pTerm->eOperator = operatorMask(op);
  725.     }
  726.     if( pRight && pRight->op==TK_COLUMN ){
  727.       WhereTerm *pNew;
  728.       Expr *pDup;
  729.       if( pTerm->leftCursor>=0 ){
  730.         int idxNew;
  731.         pDup = sqlite3ExprDup(db, pExpr);
  732.         if( db->mallocFailed ){
  733.           sqlite3ExprDelete(pDup);
  734.           return;
  735.         }
  736.         idxNew = whereClauseInsert(pWC, pDup, TERM_VIRTUAL|TERM_DYNAMIC);
  737.         if( idxNew==0 ) return;
  738.         pNew = &pWC->a[idxNew];
  739.         pNew->iParent = idxTerm;
  740.         pTerm = &pWC->a[idxTerm];
  741.         pTerm->nChild = 1;
  742.         pTerm->flags |= TERM_COPIED;
  743.       }else{
  744.         pDup = pExpr;
  745.         pNew = pTerm;
  746.       }
  747.       exprCommute(pDup);
  748.       pLeft = pDup->pLeft;
  749.       pNew->leftCursor = pLeft->iTable;
  750.       pNew->leftColumn = pLeft->iColumn;
  751.       pNew->prereqRight = prereqLeft;
  752.       pNew->prereqAll = prereqAll;
  753.       pNew->eOperator = operatorMask(pDup->op);
  754.     }
  755.   }
  756. #ifndef SQLITE_OMIT_BETWEEN_OPTIMIZATION
  757.   /* If a term is the BETWEEN operator, create two new virtual terms
  758.   ** that define the range that the BETWEEN implements.
  759.   */
  760.   else if( pExpr->op==TK_BETWEEN ){
  761.     ExprList *pList = pExpr->pList;
  762.     int i;
  763.     static const u8 ops[] = {TK_GE, TK_LE};
  764.     assert( pList!=0 );
  765.     assert( pList->nExpr==2 );
  766.     for(i=0; i<2; i++){
  767.       Expr *pNewExpr;
  768.       int idxNew;
  769.       pNewExpr = sqlite3Expr(db, ops[i], sqlite3ExprDup(db, pExpr->pLeft),
  770.                              sqlite3ExprDup(db, pList->a[i].pExpr), 0);
  771.       idxNew = whereClauseInsert(pWC, pNewExpr, TERM_VIRTUAL|TERM_DYNAMIC);
  772.       exprAnalyze(pSrc, pWC, idxNew);
  773.       pTerm = &pWC->a[idxTerm];
  774.       pWC->a[idxNew].iParent = idxTerm;
  775.     }
  776.     pTerm->nChild = 2;
  777.   }
  778. #endif /* SQLITE_OMIT_BETWEEN_OPTIMIZATION */
  779. #if !defined(SQLITE_OMIT_OR_OPTIMIZATION) && !defined(SQLITE_OMIT_SUBQUERY)
  780.   /* Attempt to convert OR-connected terms into an IN operator so that
  781.   ** they can make use of indices.  Example:
  782.   **
  783.   **      x = expr1  OR  expr2 = x  OR  x = expr3
  784.   **
  785.   ** is converted into
  786.   **
  787.   **      x IN (expr1,expr2,expr3)
  788.   **
  789.   ** This optimization must be omitted if OMIT_SUBQUERY is defined because
  790.   ** the compiler for the the IN operator is part of sub-queries.
  791.   */
  792.   else if( pExpr->op==TK_OR ){
  793.     int ok;
  794.     int i, j;
  795.     int iColumn, iCursor;
  796.     WhereClause sOr;
  797.     WhereTerm *pOrTerm;
  798.     assert( (pTerm->flags & TERM_DYNAMIC)==0 );
  799.     whereClauseInit(&sOr, pWC->pParse, pMaskSet);
  800.     whereSplit(&sOr, pExpr, TK_OR);
  801.     exprAnalyzeAll(pSrc, &sOr);
  802.     assert( sOr.nTerm>=2 );
  803.     j = 0;
  804.     if( db->mallocFailed ) goto or_not_possible;
  805.     do{
  806.       assert( j<sOr.nTerm );
  807.       iColumn = sOr.a[j].leftColumn;
  808.       iCursor = sOr.a[j].leftCursor;
  809.       ok = iCursor>=0;
  810.       for(i=sOr.nTerm-1, pOrTerm=sOr.a; i>=0 && ok; i--, pOrTerm++){
  811.         if( pOrTerm->eOperator!=WO_EQ ){
  812.           goto or_not_possible;
  813.         }
  814.         if( orTermIsOptCandidate(pOrTerm, iCursor, iColumn) ){
  815.           pOrTerm->flags |= TERM_OR_OK;
  816.         }else if( orTermHasOkDuplicate(&sOr, pOrTerm) ){
  817.           pOrTerm->flags &= ~TERM_OR_OK;
  818.         }else{
  819.           ok = 0;
  820.         }
  821.       }
  822.     }while( !ok && (sOr.a[j++].flags & TERM_COPIED)!=0 && j<2 );
  823.     if( ok ){
  824.       ExprList *pList = 0;
  825.       Expr *pNew, *pDup;
  826.       Expr *pLeft = 0;
  827.       for(i=sOr.nTerm-1, pOrTerm=sOr.a; i>=0 && ok; i--, pOrTerm++){
  828.         if( (pOrTerm->flags & TERM_OR_OK)==0 ) continue;
  829.         pDup = sqlite3ExprDup(db, pOrTerm->pExpr->pRight);
  830.         pList = sqlite3ExprListAppend(pWC->pParse, pList, pDup, 0);
  831.         pLeft = pOrTerm->pExpr->pLeft;
  832.       }
  833.       assert( pLeft!=0 );
  834.       pDup = sqlite3ExprDup(db, pLeft);
  835.       pNew = sqlite3Expr(db, TK_IN, pDup, 0, 0);
  836.       if( pNew ){
  837.         int idxNew;
  838.         transferJoinMarkings(pNew, pExpr);
  839.         pNew->pList = pList;
  840.         idxNew = whereClauseInsert(pWC, pNew, TERM_VIRTUAL|TERM_DYNAMIC);
  841.         exprAnalyze(pSrc, pWC, idxNew);
  842.         pTerm = &pWC->a[idxTerm];
  843.         pWC->a[idxNew].iParent = idxTerm;
  844.         pTerm->nChild = 1;
  845.       }else{
  846.         sqlite3ExprListDelete(pList);
  847.       }
  848.     }
  849. or_not_possible:
  850.     whereClauseClear(&sOr);
  851.   }
  852. #endif /* SQLITE_OMIT_OR_OPTIMIZATION */
  853. #ifndef SQLITE_OMIT_LIKE_OPTIMIZATION
  854.   /* Add constraints to reduce the search space on a LIKE or GLOB
  855.   ** operator.
  856.   **
  857.   ** A like pattern of the form "x LIKE 'abc%'" is changed into constraints
  858.   **
  859.   **          x>='abc' AND x<'abd' AND x LIKE 'abc%'
  860.   **
  861.   ** The last character of the prefix "abc" is incremented to form the
  862.   ** termination condidtion "abd".  This trick of incrementing the last
  863.   ** is not 255 and if the character set is not EBCDIC.  
  864.   */
  865.   if( isLikeOrGlob(db, pExpr, &nPattern, &isComplete, &noCase) ){
  866.     Expr *pLeft, *pRight;
  867.     Expr *pStr1, *pStr2;
  868.     Expr *pNewExpr1, *pNewExpr2;
  869.     int idxNew1, idxNew2;
  870.     pLeft = pExpr->pList->a[1].pExpr;
  871.     pRight = pExpr->pList->a[0].pExpr;
  872.     pStr1 = sqlite3PExpr(pParse, TK_STRING, 0, 0, 0);
  873.     if( pStr1 ){
  874.       sqlite3TokenCopy(db, &pStr1->token, &pRight->token);
  875.       pStr1->token.n = nPattern;
  876.       pStr1->flags = EP_Dequoted;
  877.     }
  878.     pStr2 = sqlite3ExprDup(db, pStr1);
  879.     if( !db->mallocFailed ){
  880.       u8 c, *pC;
  881.       assert( pStr2->token.dyn );
  882.       pC = (u8*)&pStr2->token.z[nPattern-1];
  883.       c = *pC;
  884.       if( noCase ) c = sqlite3UpperToLower[c];
  885.       *pC = c + 1;
  886.     }
  887.     pNewExpr1 = sqlite3PExpr(pParse, TK_GE, sqlite3ExprDup(db,pLeft), pStr1, 0);
  888.     idxNew1 = whereClauseInsert(pWC, pNewExpr1, TERM_VIRTUAL|TERM_DYNAMIC);
  889.     exprAnalyze(pSrc, pWC, idxNew1);
  890.     pNewExpr2 = sqlite3PExpr(pParse, TK_LT, sqlite3ExprDup(db,pLeft), pStr2, 0);
  891.     idxNew2 = whereClauseInsert(pWC, pNewExpr2, TERM_VIRTUAL|TERM_DYNAMIC);
  892.     exprAnalyze(pSrc, pWC, idxNew2);
  893.     pTerm = &pWC->a[idxTerm];
  894.     if( isComplete ){
  895.       pWC->a[idxNew1].iParent = idxTerm;
  896.       pWC->a[idxNew2].iParent = idxTerm;
  897.       pTerm->nChild = 2;
  898.     }
  899.   }
  900. #endif /* SQLITE_OMIT_LIKE_OPTIMIZATION */
  901. #ifndef SQLITE_OMIT_VIRTUALTABLE
  902.   /* Add a WO_MATCH auxiliary term to the constraint set if the
  903.   ** current expression is of the form:  column MATCH expr.
  904.   ** This information is used by the xBestIndex methods of
  905.   ** virtual tables.  The native query optimizer does not attempt
  906.   ** to do anything with MATCH functions.
  907.   */
  908.   if( isMatchOfColumn(pExpr) ){
  909.     int idxNew;
  910.     Expr *pRight, *pLeft;
  911.     WhereTerm *pNewTerm;
  912.     Bitmask prereqColumn, prereqExpr;
  913.     pRight = pExpr->pList->a[0].pExpr;
  914.     pLeft = pExpr->pList->a[1].pExpr;
  915.     prereqExpr = exprTableUsage(pMaskSet, pRight);
  916.     prereqColumn = exprTableUsage(pMaskSet, pLeft);
  917.     if( (prereqExpr & prereqColumn)==0 ){
  918.       Expr *pNewExpr;
  919.       pNewExpr = sqlite3Expr(db, TK_MATCH, 0, sqlite3ExprDup(db, pRight), 0);
  920.       idxNew = whereClauseInsert(pWC, pNewExpr, TERM_VIRTUAL|TERM_DYNAMIC);
  921.       pNewTerm = &pWC->a[idxNew];
  922.       pNewTerm->prereqRight = prereqExpr;
  923.       pNewTerm->leftCursor = pLeft->iTable;
  924.       pNewTerm->leftColumn = pLeft->iColumn;
  925.       pNewTerm->eOperator = WO_MATCH;
  926.       pNewTerm->iParent = idxTerm;
  927.       pTerm = &pWC->a[idxTerm];
  928.       pTerm->nChild = 1;
  929.       pTerm->flags |= TERM_COPIED;
  930.       pNewTerm->prereqAll = pTerm->prereqAll;
  931.     }
  932.   }
  933. #endif /* SQLITE_OMIT_VIRTUALTABLE */
  934. }
  935. /*
  936. ** Return TRUE if any of the expressions in pList->a[iFirst...] contain
  937. ** a reference to any table other than the iBase table.
  938. */
  939. static int referencesOtherTables(
  940.   ExprList *pList,          /* Search expressions in ths list */
  941.   ExprMaskSet *pMaskSet,    /* Mapping from tables to bitmaps */
  942.   int iFirst,               /* Be searching with the iFirst-th expression */
  943.   int iBase                 /* Ignore references to this table */
  944. ){
  945.   Bitmask allowed = ~getMask(pMaskSet, iBase);
  946.   while( iFirst<pList->nExpr ){
  947.     if( (exprTableUsage(pMaskSet, pList->a[iFirst++].pExpr)&allowed)!=0 ){
  948.       return 1;
  949.     }
  950.   }
  951.   return 0;
  952. }
  953. /*
  954. ** This routine decides if pIdx can be used to satisfy the ORDER BY
  955. ** clause.  If it can, it returns 1.  If pIdx cannot satisfy the
  956. ** ORDER BY clause, this routine returns 0.
  957. **
  958. ** pOrderBy is an ORDER BY clause from a SELECT statement.  pTab is the
  959. ** left-most table in the FROM clause of that same SELECT statement and
  960. ** the table has a cursor number of "base".  pIdx is an index on pTab.
  961. **
  962. ** nEqCol is the number of columns of pIdx that are used as equality
  963. ** constraints.  Any of these columns may be missing from the ORDER BY
  964. ** clause and the match can still be a success.
  965. **
  966. ** All terms of the ORDER BY that match against the index must be either
  967. ** ASC or DESC.  (Terms of the ORDER BY clause past the end of a UNIQUE
  968. ** index do not need to satisfy this constraint.)  The *pbRev value is
  969. ** set to 1 if the ORDER BY clause is all DESC and it is set to 0 if
  970. ** the ORDER BY clause is all ASC.
  971. */
  972. static int isSortingIndex(
  973.   Parse *pParse,          /* Parsing context */
  974.   ExprMaskSet *pMaskSet,  /* Mapping from table indices to bitmaps */
  975.   Index *pIdx,            /* The index we are testing */
  976.   int base,               /* Cursor number for the table to be sorted */
  977.   ExprList *pOrderBy,     /* The ORDER BY clause */
  978.   int nEqCol,             /* Number of index columns with == constraints */
  979.   int *pbRev              /* Set to 1 if ORDER BY is DESC */
  980. ){
  981.   int i, j;                       /* Loop counters */
  982.   int sortOrder = 0;              /* XOR of index and ORDER BY sort direction */
  983.   int nTerm;                      /* Number of ORDER BY terms */
  984.   struct ExprList_item *pTerm;    /* A term of the ORDER BY clause */
  985.   sqlite3 *db = pParse->db;
  986.   assert( pOrderBy!=0 );
  987.   nTerm = pOrderBy->nExpr;
  988.   assert( nTerm>0 );
  989.   /* Match terms of the ORDER BY clause against columns of
  990.   ** the index.
  991.   **
  992.   ** Note that indices have pIdx->nColumn regular columns plus
  993.   ** one additional column containing the rowid.  The rowid column
  994.   ** of the index is also allowed to match against the ORDER BY
  995.   ** clause.
  996.   */
  997.   for(i=j=0, pTerm=pOrderBy->a; j<nTerm && i<=pIdx->nColumn; i++){
  998.     Expr *pExpr;       /* The expression of the ORDER BY pTerm */
  999.     CollSeq *pColl;    /* The collating sequence of pExpr */
  1000.     int termSortOrder; /* Sort order for this term */
  1001.     int iColumn;       /* The i-th column of the index.  -1 for rowid */
  1002.     int iSortOrder;    /* 1 for DESC, 0 for ASC on the i-th index term */
  1003.     const char *zColl; /* Name of the collating sequence for i-th index term */
  1004.     pExpr = pTerm->pExpr;
  1005.     if( pExpr->op!=TK_COLUMN || pExpr->iTable!=base ){
  1006.       /* Can not use an index sort on anything that is not a column in the
  1007.       ** left-most table of the FROM clause */
  1008.       break;
  1009.     }
  1010.     pColl = sqlite3ExprCollSeq(pParse, pExpr);
  1011.     if( !pColl ){
  1012.       pColl = db->pDfltColl;
  1013.     }
  1014.     if( i<pIdx->nColumn ){
  1015.       iColumn = pIdx->aiColumn[i];
  1016.       if( iColumn==pIdx->pTable->iPKey ){
  1017.         iColumn = -1;
  1018.       }
  1019.       iSortOrder = pIdx->aSortOrder[i];
  1020.       zColl = pIdx->azColl[i];
  1021.     }else{
  1022.       iColumn = -1;
  1023.       iSortOrder = 0;
  1024.       zColl = pColl->zName;
  1025.     }
  1026.     if( pExpr->iColumn!=iColumn || sqlite3StrICmp(pColl->zName, zColl) ){
  1027.       /* Term j of the ORDER BY clause does not match column i of the index */
  1028.       if( i<nEqCol ){
  1029.         /* If an index column that is constrained by == fails to match an
  1030.         ** ORDER BY term, that is OK.  Just ignore that column of the index
  1031.         */
  1032.         continue;
  1033.       }else{
  1034.         /* If an index column fails to match and is not constrained by ==
  1035.         ** then the index cannot satisfy the ORDER BY constraint.
  1036.         */
  1037.         return 0;
  1038.       }
  1039.     }
  1040.     assert( pIdx->aSortOrder!=0 );
  1041.     assert( pTerm->sortOrder==0 || pTerm->sortOrder==1 );
  1042.     assert( iSortOrder==0 || iSortOrder==1 );
  1043.     termSortOrder = iSortOrder ^ pTerm->sortOrder;
  1044.     if( i>nEqCol ){
  1045.       if( termSortOrder!=sortOrder ){
  1046.         /* Indices can only be used if all ORDER BY terms past the
  1047.         ** equality constraints are all either DESC or ASC. */
  1048.         return 0;
  1049.       }
  1050.     }else{
  1051.       sortOrder = termSortOrder;
  1052.     }
  1053.     j++;
  1054.     pTerm++;
  1055.     if( iColumn<0 && !referencesOtherTables(pOrderBy, pMaskSet, j, base) ){
  1056.       /* If the indexed column is the primary key and everything matches
  1057.       ** so far and none of the ORDER BY terms to the right reference other
  1058.       ** tables in the join, then we are assured that the index can be used 
  1059.       ** to sort because the primary key is unique and so none of the other
  1060.       ** columns will make any difference
  1061.       */
  1062.       j = nTerm;
  1063.     }
  1064.   }
  1065.   *pbRev = sortOrder!=0;
  1066.   if( j>=nTerm ){
  1067.     /* All terms of the ORDER BY clause are covered by this index so
  1068.     ** this index can be used for sorting. */
  1069.     return 1;
  1070.   }
  1071.   if( pIdx->onError!=OE_None && i==pIdx->nColumn
  1072.       && !referencesOtherTables(pOrderBy, pMaskSet, j, base) ){
  1073.     /* All terms of this index match some prefix of the ORDER BY clause
  1074.     ** and the index is UNIQUE and no terms on the tail of the ORDER BY
  1075.     ** clause reference other tables in a join.  If this is all true then
  1076.     ** the order by clause is superfluous. */
  1077.     return 1;
  1078.   }
  1079.   return 0;
  1080. }
  1081. /*
  1082. ** Check table to see if the ORDER BY clause in pOrderBy can be satisfied
  1083. ** by sorting in order of ROWID.  Return true if so and set *pbRev to be
  1084. ** true for reverse ROWID and false for forward ROWID order.
  1085. */
  1086. static int sortableByRowid(
  1087.   int base,               /* Cursor number for table to be sorted */
  1088.   ExprList *pOrderBy,     /* The ORDER BY clause */
  1089.   ExprMaskSet *pMaskSet,  /* Mapping from tables to bitmaps */
  1090.   int *pbRev              /* Set to 1 if ORDER BY is DESC */
  1091. ){
  1092.   Expr *p;
  1093.   assert( pOrderBy!=0 );
  1094.   assert( pOrderBy->nExpr>0 );
  1095.   p = pOrderBy->a[0].pExpr;
  1096.   if( p->op==TK_COLUMN && p->iTable==base && p->iColumn==-1
  1097.     && !referencesOtherTables(pOrderBy, pMaskSet, 1, base) ){
  1098.     *pbRev = pOrderBy->a[0].sortOrder;
  1099.     return 1;
  1100.   }
  1101.   return 0;
  1102. }
  1103. /*
  1104. ** Prepare a crude estimate of the logarithm of the input value.
  1105. ** The results need not be exact.  This is only used for estimating
  1106. ** the total cost of performing operatings with O(logN) or O(NlogN)
  1107. ** complexity.  Because N is just a guess, it is no great tragedy if
  1108. ** logN is a little off.
  1109. */
  1110. static double estLog(double N){
  1111.   double logN = 1;
  1112.   double x = 10;
  1113.   while( N>x ){
  1114.     logN += 1;
  1115.     x *= 10;
  1116.   }
  1117.   return logN;
  1118. }
  1119. /*
  1120. ** Two routines for printing the content of an sqlite3_index_info
  1121. ** structure.  Used for testing and debugging only.  If neither
  1122. ** SQLITE_TEST or SQLITE_DEBUG are defined, then these routines
  1123. ** are no-ops.
  1124. */
  1125. #if !defined(SQLITE_OMIT_VIRTUALTABLE) && defined(SQLITE_DEBUG)
  1126. static void TRACE_IDX_INPUTS(sqlite3_index_info *p){
  1127.   int i;
  1128.   if( !sqlite3WhereTrace ) return;
  1129.   for(i=0; i<p->nConstraint; i++){
  1130.     sqlite3DebugPrintf("  constraint[%d]: col=%d termid=%d op=%d usabled=%dn",
  1131.        i,
  1132.        p->aConstraint[i].iColumn,
  1133.        p->aConstraint[i].iTermOffset,
  1134.        p->aConstraint[i].op,
  1135.        p->aConstraint[i].usable);
  1136.   }
  1137.   for(i=0; i<p->nOrderBy; i++){
  1138.     sqlite3DebugPrintf("  orderby[%d]: col=%d desc=%dn",
  1139.        i,
  1140.        p->aOrderBy[i].iColumn,
  1141.        p->aOrderBy[i].desc);
  1142.   }
  1143. }
  1144. static void TRACE_IDX_OUTPUTS(sqlite3_index_info *p){
  1145.   int i;
  1146.   if( !sqlite3WhereTrace ) return;
  1147.   for(i=0; i<p->nConstraint; i++){
  1148.     sqlite3DebugPrintf("  usage[%d]: argvIdx=%d omit=%dn",
  1149.        i,
  1150.        p->aConstraintUsage[i].argvIndex,
  1151.        p->aConstraintUsage[i].omit);
  1152.   }
  1153.   sqlite3DebugPrintf("  idxNum=%dn", p->idxNum);
  1154.   sqlite3DebugPrintf("  idxStr=%sn", p->idxStr);
  1155.   sqlite3DebugPrintf("  orderByConsumed=%dn", p->orderByConsumed);
  1156.   sqlite3DebugPrintf("  estimatedCost=%gn", p->estimatedCost);
  1157. }
  1158. #else
  1159. #define TRACE_IDX_INPUTS(A)
  1160. #define TRACE_IDX_OUTPUTS(A)
  1161. #endif
  1162. #ifndef SQLITE_OMIT_VIRTUALTABLE
  1163. /*
  1164. ** Compute the best index for a virtual table.
  1165. **
  1166. ** The best index is computed by the xBestIndex method of the virtual
  1167. ** table module.  This routine is really just a wrapper that sets up
  1168. ** the sqlite3_index_info structure that is used to communicate with
  1169. ** xBestIndex.
  1170. **
  1171. ** In a join, this routine might be called multiple times for the
  1172. ** same virtual table.  The sqlite3_index_info structure is created
  1173. ** and initialized on the first invocation and reused on all subsequent
  1174. ** invocations.  The sqlite3_index_info structure is also used when
  1175. ** code is generated to access the virtual table.  The whereInfoDelete() 
  1176. ** routine takes care of freeing the sqlite3_index_info structure after
  1177. ** everybody has finished with it.
  1178. */
  1179. static double bestVirtualIndex(
  1180.   Parse *pParse,                 /* The parsing context */
  1181.   WhereClause *pWC,              /* The WHERE clause */
  1182.   struct SrcList_item *pSrc,     /* The FROM clause term to search */
  1183.   Bitmask notReady,              /* Mask of cursors that are not available */
  1184.   ExprList *pOrderBy,            /* The order by clause */
  1185.   int orderByUsable,             /* True if we can potential sort */
  1186.   sqlite3_index_info **ppIdxInfo /* Index information passed to xBestIndex */
  1187. ){
  1188.   Table *pTab = pSrc->pTab;
  1189.   sqlite3_index_info *pIdxInfo;
  1190.   struct sqlite3_index_constraint *pIdxCons;
  1191.   struct sqlite3_index_orderby *pIdxOrderBy;
  1192.   struct sqlite3_index_constraint_usage *pUsage;
  1193.   WhereTerm *pTerm;
  1194.   int i, j;
  1195.   int nOrderBy;
  1196.   int rc;
  1197.   /* If the sqlite3_index_info structure has not been previously
  1198.   ** allocated and initialized for this virtual table, then allocate
  1199.   ** and initialize it now
  1200.   */
  1201.   pIdxInfo = *ppIdxInfo;
  1202.   if( pIdxInfo==0 ){
  1203.     WhereTerm *pTerm;
  1204.     int nTerm;
  1205.     WHERETRACE(("Recomputing index info for %s...n", pTab->zName));
  1206.     /* Count the number of possible WHERE clause constraints referring
  1207.     ** to this virtual table */
  1208.     for(i=nTerm=0, pTerm=pWC->a; i<pWC->nTerm; i++, pTerm++){
  1209.       if( pTerm->leftCursor != pSrc->iCursor ) continue;
  1210.       if( pTerm->eOperator==WO_IN ) continue;
  1211.       if( pTerm->eOperator==WO_ISNULL ) continue;
  1212.       nTerm++;
  1213.     }
  1214.     /* If the ORDER BY clause contains only columns in the current 
  1215.     ** virtual table then allocate space for the aOrderBy part of
  1216.     ** the sqlite3_index_info structure.
  1217.     */
  1218.     nOrderBy = 0;
  1219.     if( pOrderBy ){
  1220.       for(i=0; i<pOrderBy->nExpr; i++){
  1221.         Expr *pExpr = pOrderBy->a[i].pExpr;
  1222.         if( pExpr->op!=TK_COLUMN || pExpr->iTable!=pSrc->iCursor ) break;
  1223.       }
  1224.       if( i==pOrderBy->nExpr ){
  1225.         nOrderBy = pOrderBy->nExpr;
  1226.       }
  1227.     }
  1228.     /* Allocate the sqlite3_index_info structure
  1229.     */
  1230.     pIdxInfo = sqlite3DbMallocZero(pParse->db, sizeof(*pIdxInfo)
  1231.                              + (sizeof(*pIdxCons) + sizeof(*pUsage))*nTerm
  1232.                              + sizeof(*pIdxOrderBy)*nOrderBy );
  1233.     if( pIdxInfo==0 ){
  1234.       sqlite3ErrorMsg(pParse, "out of memory");
  1235.       return 0.0;
  1236.     }
  1237.     *ppIdxInfo = pIdxInfo;
  1238.     /* Initialize the structure.  The sqlite3_index_info structure contains
  1239.     ** many fields that are declared "const" to prevent xBestIndex from
  1240.     ** changing them.  We have to do some funky casting in order to
  1241.     ** initialize those fields.
  1242.     */
  1243.     pIdxCons = (struct sqlite3_index_constraint*)&pIdxInfo[1];
  1244.     pIdxOrderBy = (struct sqlite3_index_orderby*)&pIdxCons[nTerm];
  1245.     pUsage = (struct sqlite3_index_constraint_usage*)&pIdxOrderBy[nOrderBy];
  1246.     *(int*)&pIdxInfo->nConstraint = nTerm;
  1247.     *(int*)&pIdxInfo->nOrderBy = nOrderBy;
  1248.     *(struct sqlite3_index_constraint**)&pIdxInfo->aConstraint = pIdxCons;
  1249.     *(struct sqlite3_index_orderby**)&pIdxInfo->aOrderBy = pIdxOrderBy;
  1250.     *(struct sqlite3_index_constraint_usage**)&pIdxInfo->aConstraintUsage =
  1251.                                                                      pUsage;
  1252.     for(i=j=0, pTerm=pWC->a; i<pWC->nTerm; i++, pTerm++){
  1253.       if( pTerm->leftCursor != pSrc->iCursor ) continue;
  1254.       if( pTerm->eOperator==WO_IN ) continue;
  1255.       if( pTerm->eOperator==WO_ISNULL ) continue;
  1256.       pIdxCons[j].iColumn = pTerm->leftColumn;
  1257.       pIdxCons[j].iTermOffset = i;
  1258.       pIdxCons[j].op = pTerm->eOperator;
  1259.       /* The direct assignment in the previous line is possible only because
  1260.       ** the WO_ and SQLITE_INDEX_CONSTRAINT_ codes are identical.  The
  1261.       ** following asserts verify this fact. */
  1262.       assert( WO_EQ==SQLITE_INDEX_CONSTRAINT_EQ );
  1263.       assert( WO_LT==SQLITE_INDEX_CONSTRAINT_LT );
  1264.       assert( WO_LE==SQLITE_INDEX_CONSTRAINT_LE );
  1265.       assert( WO_GT==SQLITE_INDEX_CONSTRAINT_GT );
  1266.       assert( WO_GE==SQLITE_INDEX_CONSTRAINT_GE );
  1267.       assert( WO_MATCH==SQLITE_INDEX_CONSTRAINT_MATCH );
  1268.       assert( pTerm->eOperator & (WO_EQ|WO_LT|WO_LE|WO_GT|WO_GE|WO_MATCH) );
  1269.       j++;
  1270.     }
  1271.     for(i=0; i<nOrderBy; i++){
  1272.       Expr *pExpr = pOrderBy->a[i].pExpr;
  1273.       pIdxOrderBy[i].iColumn = pExpr->iColumn;
  1274.       pIdxOrderBy[i].desc = pOrderBy->a[i].sortOrder;
  1275.     }
  1276.   }
  1277.   /* At this point, the sqlite3_index_info structure that pIdxInfo points
  1278.   ** to will have been initialized, either during the current invocation or
  1279.   ** during some prior invocation.  Now we just have to customize the
  1280.   ** details of pIdxInfo for the current invocation and pass it to
  1281.   ** xBestIndex.
  1282.   */
  1283.   /* The module name must be defined. Also, by this point there must
  1284.   ** be a pointer to an sqlite3_vtab structure. Otherwise
  1285.   ** sqlite3ViewGetColumnNames() would have picked up the error. 
  1286.   */
  1287.   assert( pTab->azModuleArg && pTab->azModuleArg[0] );
  1288.   assert( pTab->pVtab );
  1289. #if 0
  1290.   if( pTab->pVtab==0 ){
  1291.     sqlite3ErrorMsg(pParse, "undefined module %s for table %s",
  1292.         pTab->azModuleArg[0], pTab->zName);
  1293.     return 0.0;
  1294.   }
  1295. #endif
  1296.   /* Set the aConstraint[].usable fields and initialize all 
  1297.   ** output variables to zero.
  1298.   **
  1299.   ** aConstraint[].usable is true for constraints where the right-hand
  1300.   ** side contains only references to tables to the left of the current
  1301.   ** table.  In other words, if the constraint is of the form:
  1302.   **
  1303.   **           column = expr
  1304.   **
  1305.   ** and we are evaluating a join, then the constraint on column is 
  1306.   ** only valid if all tables referenced in expr occur to the left
  1307.   ** of the table containing column.
  1308.   **
  1309.   ** The aConstraints[] array contains entries for all constraints
  1310.   ** on the current table.  That way we only have to compute it once
  1311.   ** even though we might try to pick the best index multiple times.
  1312.   ** For each attempt at picking an index, the order of tables in the
  1313.   ** join might be different so we have to recompute the usable flag
  1314.   ** each time.
  1315.   */
  1316.   pIdxCons = *(struct sqlite3_index_constraint**)&pIdxInfo->aConstraint;
  1317.   pUsage = pIdxInfo->aConstraintUsage;
  1318.   for(i=0; i<pIdxInfo->nConstraint; i++, pIdxCons++){
  1319.     j = pIdxCons->iTermOffset;
  1320.     pTerm = &pWC->a[j];
  1321.     pIdxCons->usable =  (pTerm->prereqRight & notReady)==0;
  1322.   }
  1323.   memset(pUsage, 0, sizeof(pUsage[0])*pIdxInfo->nConstraint);
  1324.   if( pIdxInfo->needToFreeIdxStr ){
  1325.     sqlite3_free(pIdxInfo->idxStr);
  1326.   }
  1327.   pIdxInfo->idxStr = 0;
  1328.   pIdxInfo->idxNum = 0;
  1329.   pIdxInfo->needToFreeIdxStr = 0;
  1330.   pIdxInfo->orderByConsumed = 0;
  1331.   pIdxInfo->estimatedCost = SQLITE_BIG_DBL / 2.0;
  1332.   nOrderBy = pIdxInfo->nOrderBy;
  1333.   if( pIdxInfo->nOrderBy && !orderByUsable ){
  1334.     *(int*)&pIdxInfo->nOrderBy = 0;
  1335.   }
  1336.   (void)sqlite3SafetyOff(pParse->db);
  1337.   WHERETRACE(("xBestIndex for %sn", pTab->zName));
  1338.   TRACE_IDX_INPUTS(pIdxInfo);
  1339.   rc = pTab->pVtab->pModule->xBestIndex(pTab->pVtab, pIdxInfo);
  1340.   TRACE_IDX_OUTPUTS(pIdxInfo);
  1341.   (void)sqlite3SafetyOn(pParse->db);
  1342.   for(i=0; i<pIdxInfo->nConstraint; i++){
  1343.     if( !pIdxInfo->aConstraint[i].usable && pUsage[i].argvIndex>0 ){
  1344.       sqlite3ErrorMsg(pParse, 
  1345.           "table %s: xBestIndex returned an invalid plan", pTab->zName);
  1346.       return 0.0;
  1347.     }
  1348.   }
  1349.   if( rc!=SQLITE_OK ){
  1350.     if( rc==SQLITE_NOMEM ){
  1351.       pParse->db->mallocFailed = 1;
  1352.     }else {
  1353.       sqlite3ErrorMsg(pParse, "%s", sqlite3ErrStr(rc));
  1354.     }
  1355.   }
  1356.   *(int*)&pIdxInfo->nOrderBy = nOrderBy;
  1357.   return pIdxInfo->estimatedCost;
  1358. }
  1359. #endif /* SQLITE_OMIT_VIRTUALTABLE */
  1360. /*
  1361. ** Find the best index for accessing a particular table.  Return a pointer
  1362. ** to the index, flags that describe how the index should be used, the
  1363. ** number of equality constraints, and the "cost" for this index.
  1364. **
  1365. ** The lowest cost index wins.  The cost is an estimate of the amount of
  1366. ** CPU and disk I/O need to process the request using the selected index.
  1367. ** Factors that influence cost include:
  1368. **
  1369. **    *  The estimated number of rows that will be retrieved.  (The
  1370. **       fewer the better.)
  1371. **
  1372. **    *  Whether or not sorting must occur.
  1373. **
  1374. **    *  Whether or not there must be separate lookups in the
  1375. **       index and in the main table.
  1376. **
  1377. */
  1378. static double bestIndex(
  1379.   Parse *pParse,              /* The parsing context */
  1380.   WhereClause *pWC,           /* The WHERE clause */
  1381.   struct SrcList_item *pSrc,  /* The FROM clause term to search */
  1382.   Bitmask notReady,           /* Mask of cursors that are not available */
  1383.   ExprList *pOrderBy,         /* The order by clause */
  1384.   Index **ppIndex,            /* Make *ppIndex point to the best index */
  1385.   int *pFlags,                /* Put flags describing this choice in *pFlags */
  1386.   int *pnEq                   /* Put the number of == or IN constraints here */
  1387. ){
  1388.   WhereTerm *pTerm;
  1389.   Index *bestIdx = 0;         /* Index that gives the lowest cost */
  1390.   double lowestCost;          /* The cost of using bestIdx */
  1391.   int bestFlags = 0;          /* Flags associated with bestIdx */
  1392.   int bestNEq = 0;            /* Best value for nEq */
  1393.   int iCur = pSrc->iCursor;   /* The cursor of the table to be accessed */
  1394.   Index *pProbe;              /* An index we are evaluating */
  1395.   int rev;                    /* True to scan in reverse order */
  1396.   int flags;                  /* Flags associated with pProbe */
  1397.   int nEq;                    /* Number of == or IN constraints */
  1398.   int eqTermMask;             /* Mask of valid equality operators */
  1399.   double cost;                /* Cost of using pProbe */
  1400.   WHERETRACE(("bestIndex: tbl=%s notReady=%xn", pSrc->pTab->zName, notReady));
  1401.   lowestCost = SQLITE_BIG_DBL;
  1402.   pProbe = pSrc->pTab->pIndex;
  1403.   /* If the table has no indices and there are no terms in the where
  1404.   ** clause that refer to the ROWID, then we will never be able to do
  1405.   ** anything other than a full table scan on this table.  We might as
  1406.   ** well put it first in the join order.  That way, perhaps it can be
  1407.   ** referenced by other tables in the join.
  1408.   */
  1409.   if( pProbe==0 &&
  1410.      findTerm(pWC, iCur, -1, 0, WO_EQ|WO_IN|WO_LT|WO_LE|WO_GT|WO_GE,0)==0 &&
  1411.      (pOrderBy==0 || !sortableByRowid(iCur, pOrderBy, pWC->pMaskSet, &rev)) ){
  1412.     *pFlags = 0;
  1413.     *ppIndex = 0;
  1414.     *pnEq = 0;
  1415.     return 0.0;
  1416.   }
  1417.   /* Check for a rowid=EXPR or rowid IN (...) constraints
  1418.   */
  1419.   pTerm = findTerm(pWC, iCur, -1, notReady, WO_EQ|WO_IN, 0);
  1420.   if( pTerm ){
  1421.     Expr *pExpr;
  1422.     *ppIndex = 0;
  1423.     bestFlags = WHERE_ROWID_EQ;
  1424.     if( pTerm->eOperator & WO_EQ ){
  1425.       /* Rowid== is always the best pick.  Look no further.  Because only
  1426.       ** a single row is generated, output is always in sorted order */
  1427.       *pFlags = WHERE_ROWID_EQ | WHERE_UNIQUE;
  1428.       *pnEq = 1;
  1429.       WHERETRACE(("... best is rowidn"));
  1430.       return 0.0;
  1431.     }else if( (pExpr = pTerm->pExpr)->pList!=0 ){
  1432.       /* Rowid IN (LIST): cost is NlogN where N is the number of list
  1433.       ** elements.  */
  1434.       lowestCost = pExpr->pList->nExpr;
  1435.       lowestCost *= estLog(lowestCost);
  1436.     }else{
  1437.       /* Rowid IN (SELECT): cost is NlogN where N is the number of rows
  1438.       ** in the result of the inner select.  We have no way to estimate
  1439.       ** that value so make a wild guess. */
  1440.       lowestCost = 200;
  1441.     }
  1442.     WHERETRACE(("... rowid IN cost: %.9gn", lowestCost));
  1443.   }
  1444.   /* Estimate the cost of a table scan.  If we do not know how many
  1445.   ** entries are in the table, use 1 million as a guess.
  1446.   */
  1447.   cost = pProbe ? pProbe->aiRowEst[0] : 1000000;
  1448.   WHERETRACE(("... table scan base cost: %.9gn", cost));
  1449.   flags = WHERE_ROWID_RANGE;
  1450.   /* Check for constraints on a range of rowids in a table scan.
  1451.   */
  1452.   pTerm = findTerm(pWC, iCur, -1, notReady, WO_LT|WO_LE|WO_GT|WO_GE, 0);
  1453.   if( pTerm ){
  1454.     if( findTerm(pWC, iCur, -1, notReady, WO_LT|WO_LE, 0) ){
  1455.       flags |= WHERE_TOP_LIMIT;
  1456.       cost /= 3;  /* Guess that rowid<EXPR eliminates two-thirds or rows */
  1457.     }
  1458.     if( findTerm(pWC, iCur, -1, notReady, WO_GT|WO_GE, 0) ){
  1459.       flags |= WHERE_BTM_LIMIT;
  1460.       cost /= 3;  /* Guess that rowid>EXPR eliminates two-thirds of rows */
  1461.     }
  1462.     WHERETRACE(("... rowid range reduces cost to %.9gn", cost));
  1463.   }else{
  1464.     flags = 0;
  1465.   }
  1466.   /* If the table scan does not satisfy the ORDER BY clause, increase
  1467.   ** the cost by NlogN to cover the expense of sorting. */
  1468.   if( pOrderBy ){
  1469.     if( sortableByRowid(iCur, pOrderBy, pWC->pMaskSet, &rev) ){
  1470.       flags |= WHERE_ORDERBY|WHERE_ROWID_RANGE;
  1471.       if( rev ){
  1472.         flags |= WHERE_REVERSE;
  1473.       }
  1474.     }else{
  1475.       cost += cost*estLog(cost);
  1476.       WHERETRACE(("... sorting increases cost to %.9gn", cost));
  1477.     }
  1478.   }
  1479.   if( cost<lowestCost ){
  1480.     lowestCost = cost;
  1481.     bestFlags = flags;
  1482.   }
  1483.   /* If the pSrc table is the right table of a LEFT JOIN then we may not
  1484.   ** use an index to satisfy IS NULL constraints on that table.  This is
  1485.   ** because columns might end up being NULL if the table does not match -
  1486.   ** a circumstance which the index cannot help us discover.  Ticket #2177.
  1487.   */
  1488.   if( (pSrc->jointype & JT_LEFT)!=0 ){
  1489.     eqTermMask = WO_EQ|WO_IN;
  1490.   }else{
  1491.     eqTermMask = WO_EQ|WO_IN|WO_ISNULL;
  1492.   }
  1493.   /* Look at each index.
  1494.   */
  1495.   for(; pProbe; pProbe=pProbe->pNext){
  1496.     int i;                       /* Loop counter */
  1497.     double inMultiplier = 1;
  1498.     WHERETRACE(("... index %s:n", pProbe->zName));
  1499.     /* Count the number of columns in the index that are satisfied
  1500.     ** by x=EXPR constraints or x IN (...) constraints.
  1501.     */
  1502.     flags = 0;
  1503.     for(i=0; i<pProbe->nColumn; i++){
  1504.       int j = pProbe->aiColumn[i];
  1505.       pTerm = findTerm(pWC, iCur, j, notReady, eqTermMask, pProbe);
  1506.       if( pTerm==0 ) break;
  1507.       flags |= WHERE_COLUMN_EQ;
  1508.       if( pTerm->eOperator & WO_IN ){
  1509.         Expr *pExpr = pTerm->pExpr;
  1510.         flags |= WHERE_COLUMN_IN;
  1511.         if( pExpr->pSelect!=0 ){
  1512.           inMultiplier *= 25;
  1513.         }else if( pExpr->pList!=0 ){
  1514.           inMultiplier *= pExpr->pList->nExpr + 1;
  1515.         }
  1516.       }
  1517.     }
  1518.     cost = pProbe->aiRowEst[i] * inMultiplier * estLog(inMultiplier);
  1519.     nEq = i;
  1520.     if( pProbe->onError!=OE_None && (flags & WHERE_COLUMN_IN)==0
  1521.          && nEq==pProbe->nColumn ){
  1522.       flags |= WHERE_UNIQUE;
  1523.     }
  1524.     WHERETRACE(("...... nEq=%d inMult=%.9g cost=%.9gn",nEq,inMultiplier,cost));
  1525.     /* Look for range constraints
  1526.     */
  1527.     if( nEq<pProbe->nColumn ){
  1528.       int j = pProbe->aiColumn[nEq];
  1529.       pTerm = findTerm(pWC, iCur, j, notReady, WO_LT|WO_LE|WO_GT|WO_GE, pProbe);
  1530.       if( pTerm ){
  1531.         flags |= WHERE_COLUMN_RANGE;
  1532.         if( findTerm(pWC, iCur, j, notReady, WO_LT|WO_LE, pProbe) ){
  1533.           flags |= WHERE_TOP_LIMIT;
  1534.           cost /= 3;
  1535.         }
  1536.         if( findTerm(pWC, iCur, j, notReady, WO_GT|WO_GE, pProbe) ){
  1537.           flags |= WHERE_BTM_LIMIT;
  1538.           cost /= 3;
  1539.         }
  1540.         WHERETRACE(("...... range reduces cost to %.9gn", cost));
  1541.       }
  1542.     }
  1543.     /* Add the additional cost of sorting if that is a factor.
  1544.     */
  1545.     if( pOrderBy ){
  1546.       if( (flags & WHERE_COLUMN_IN)==0 &&
  1547.            isSortingIndex(pParse,pWC->pMaskSet,pProbe,iCur,pOrderBy,nEq,&rev) ){
  1548.         if( flags==0 ){
  1549.           flags = WHERE_COLUMN_RANGE;
  1550.         }
  1551.         flags |= WHERE_ORDERBY;
  1552.         if( rev ){
  1553.           flags |= WHERE_REVERSE;
  1554.         }
  1555.       }else{
  1556.         cost += cost*estLog(cost);
  1557.         WHERETRACE(("...... orderby increases cost to %.9gn", cost));
  1558.       }
  1559.     }
  1560.     /* Check to see if we can get away with using just the index without
  1561.     ** ever reading the table.  If that is the case, then halve the
  1562.     ** cost of this index.
  1563.     */
  1564.     if( flags && pSrc->colUsed < (((Bitmask)1)<<(BMS-1)) ){
  1565.       Bitmask m = pSrc->colUsed;
  1566.       int j;
  1567.       for(j=0; j<pProbe->nColumn; j++){
  1568.         int x = pProbe->aiColumn[j];
  1569.         if( x<BMS-1 ){
  1570.           m &= ~(((Bitmask)1)<<x);
  1571.         }
  1572.       }
  1573.       if( m==0 ){
  1574.         flags |= WHERE_IDX_ONLY;
  1575.         cost /= 2;
  1576.         WHERETRACE(("...... idx-only reduces cost to %.9gn", cost));
  1577.       }
  1578.     }
  1579.     /* If this index has achieved the lowest cost so far, then use it.
  1580.     */
  1581.     if( flags && cost < lowestCost ){
  1582.       bestIdx = pProbe;
  1583.       lowestCost = cost;
  1584.       bestFlags = flags;
  1585.       bestNEq = nEq;
  1586.     }
  1587.   }
  1588.   /* Report the best result
  1589.   */
  1590.   *ppIndex = bestIdx;
  1591.   WHERETRACE(("best index is %s, cost=%.9g, flags=%x, nEq=%dn",
  1592.         bestIdx ? bestIdx->zName : "(none)", lowestCost, bestFlags, bestNEq));
  1593.   *pFlags = bestFlags | eqTermMask;
  1594.   *pnEq = bestNEq;
  1595.   return lowestCost;
  1596. }
  1597. /*
  1598. ** Disable a term in the WHERE clause.  Except, do not disable the term
  1599. ** if it controls a LEFT OUTER JOIN and it did not originate in the ON
  1600. ** or USING clause of that join.
  1601. **
  1602. ** Consider the term t2.z='ok' in the following queries:
  1603. **
  1604. **   (1)  SELECT * FROM t1 LEFT JOIN t2 ON t1.a=t2.x WHERE t2.z='ok'
  1605. **   (2)  SELECT * FROM t1 LEFT JOIN t2 ON t1.a=t2.x AND t2.z='ok'
  1606. **   (3)  SELECT * FROM t1, t2 WHERE t1.a=t2.x AND t2.z='ok'
  1607. **
  1608. ** The t2.z='ok' is disabled in the in (2) because it originates
  1609. ** in the ON clause.  The term is disabled in (3) because it is not part
  1610. ** of a LEFT OUTER JOIN.  In (1), the term is not disabled.
  1611. **
  1612. ** Disabling a term causes that term to not be tested in the inner loop
  1613. ** of the join.  Disabling is an optimization.  When terms are satisfied
  1614. ** by indices, we disable them to prevent redundant tests in the inner
  1615. ** loop.  We would get the correct results if nothing were ever disabled,
  1616. ** but joins might run a little slower.  The trick is to disable as much
  1617. ** as we can without disabling too much.  If we disabled in (1), we'd get
  1618. ** the wrong answer.  See ticket #813.
  1619. */
  1620. static void disableTerm(WhereLevel *pLevel, WhereTerm *pTerm){
  1621.   if( pTerm
  1622.       && (pTerm->flags & TERM_CODED)==0
  1623.       && (pLevel->iLeftJoin==0 || ExprHasProperty(pTerm->pExpr, EP_FromJoin))
  1624.   ){
  1625.     pTerm->flags |= TERM_CODED;
  1626.     if( pTerm->iParent>=0 ){
  1627.       WhereTerm *pOther = &pTerm->pWC->a[pTerm->iParent];
  1628.       if( (--pOther->nChild)==0 ){
  1629.         disableTerm(pLevel, pOther);
  1630.       }
  1631.     }
  1632.   }
  1633. }
  1634. /*
  1635. ** Generate code that builds a probe for an index.
  1636. **
  1637. ** There should be nColumn values on the stack.  The index
  1638. ** to be probed is pIdx.  Pop the values from the stack and
  1639. ** replace them all with a single record that is the index
  1640. ** problem.
  1641. */
  1642. static void buildIndexProbe(
  1643.   Parse *pParse,  /* Parsing and code generation context */
  1644.   int nColumn,    /* The number of columns to check for NULL */
  1645.   Index *pIdx,    /* Index that we will be searching */
  1646.   int regSrc,     /* Take values from this register */
  1647.   int regDest     /* Write the result into this register */
  1648. ){
  1649.   Vdbe *v = pParse->pVdbe;
  1650.   assert( regSrc>0 );
  1651.   assert( regDest>0 );
  1652.   assert( v!=0 );
  1653.   sqlite3VdbeAddOp3(v, OP_MakeRecord, regSrc, nColumn, regDest);
  1654.   sqlite3IndexAffinityStr(v, pIdx);
  1655.   sqlite3ExprCacheAffinityChange(pParse, regSrc, nColumn);
  1656. }
  1657. /*
  1658. ** Generate code for a single equality term of the WHERE clause.  An equality
  1659. ** term can be either X=expr or X IN (...).   pTerm is the term to be 
  1660. ** coded.
  1661. **
  1662. ** The current value for the constraint is left in register iReg.
  1663. **
  1664. ** For a constraint of the form X=expr, the expression is evaluated and its
  1665. ** result is left on the stack.  For constraints of the form X IN (...)
  1666. ** this routine sets up a loop that will iterate over all values of X.
  1667. */
  1668. static int codeEqualityTerm(
  1669.   Parse *pParse,      /* The parsing context */
  1670.   WhereTerm *pTerm,   /* The term of the WHERE clause to be coded */
  1671.   WhereLevel *pLevel, /* When level of the FROM clause we are working on */
  1672.   int iTarget         /* Attempt to leave results in this register */
  1673. ){
  1674.   Expr *pX = pTerm->pExpr;
  1675.   Vdbe *v = pParse->pVdbe;
  1676.   int iReg;                  /* Register holding results */
  1677.   if( iTarget<=0 ){
  1678.     iReg = iTarget = sqlite3GetTempReg(pParse);
  1679.   }
  1680.   if( pX->op==TK_EQ ){
  1681.     iReg = sqlite3ExprCodeTarget(pParse, pX->pRight, iTarget);
  1682.   }else if( pX->op==TK_ISNULL ){
  1683.     iReg = iTarget;
  1684.     sqlite3VdbeAddOp2(v, OP_Null, 0, iReg);
  1685. #ifndef SQLITE_OMIT_SUBQUERY
  1686.   }else{
  1687.     int eType;
  1688.     int iTab;
  1689.     struct InLoop *pIn;
  1690.     assert( pX->op==TK_IN );
  1691.     iReg = iTarget;
  1692.     eType = sqlite3FindInIndex(pParse, pX, 1);
  1693.     iTab = pX->iTable;
  1694.     sqlite3VdbeAddOp2(v, OP_Rewind, iTab, 0);
  1695.     VdbeComment((v, "%.*s", pX->span.n, pX->span.z));
  1696.     if( pLevel->nIn==0 ){
  1697.       pLevel->nxt = sqlite3VdbeMakeLabel(v);
  1698.     }
  1699.     pLevel->nIn++;
  1700.     pLevel->aInLoop = sqlite3DbReallocOrFree(pParse->db, pLevel->aInLoop,
  1701.                                     sizeof(pLevel->aInLoop[0])*pLevel->nIn);
  1702.     pIn = pLevel->aInLoop;
  1703.     if( pIn ){
  1704.       pIn += pLevel->nIn - 1;
  1705.       pIn->iCur = iTab;
  1706.       if( eType==IN_INDEX_ROWID ){
  1707.         pIn->topAddr = sqlite3VdbeAddOp2(v, OP_Rowid, iTab, iReg);
  1708.       }else{
  1709.         pIn->topAddr = sqlite3VdbeAddOp3(v, OP_Column, iTab, 0, iReg);
  1710.       }
  1711.       sqlite3VdbeAddOp1(v, OP_IsNull, iReg);
  1712.     }else{
  1713.       pLevel->nIn = 0;
  1714.     }
  1715. #endif
  1716.   }
  1717.   disableTerm(pLevel, pTerm);
  1718.   return iReg;
  1719. }
  1720. /*
  1721. ** Generate code that will evaluate all == and IN constraints for an
  1722. ** index.  The values for all constraints are left on the stack.
  1723. **
  1724. ** For example, consider table t1(a,b,c,d,e,f) with index i1(a,b,c).
  1725. ** Suppose the WHERE clause is this:  a==5 AND b IN (1,2,3) AND c>5 AND c<10
  1726. ** The index has as many as three equality constraints, but in this
  1727. ** example, the third "c" value is an inequality.  So only two 
  1728. ** constraints are coded.  This routine will generate code to evaluate
  1729. ** a==5 and b IN (1,2,3).  The current values for a and b will be left
  1730. ** on the stack - a is the deepest and b the shallowest.
  1731. **
  1732. ** In the example above nEq==2.  But this subroutine works for any value
  1733. ** of nEq including 0.  If nEq==0, this routine is nearly a no-op.
  1734. ** The only thing it does is allocate the pLevel->iMem memory cell.
  1735. **
  1736. ** This routine always allocates at least one memory cell and puts
  1737. ** the address of that memory cell in pLevel->iMem.  The code that
  1738. ** calls this routine will use pLevel->iMem to store the termination
  1739. ** key value of the loop.  If one or more IN operators appear, then
  1740. ** this routine allocates an additional nEq memory cells for internal
  1741. ** use.
  1742. */
  1743. static int codeAllEqualityTerms(
  1744.   Parse *pParse,        /* Parsing context */
  1745.   WhereLevel *pLevel,   /* Which nested loop of the FROM we are coding */
  1746.   WhereClause *pWC,     /* The WHERE clause */
  1747.   Bitmask notReady,     /* Which parts of FROM have not yet been coded */
  1748.   int nExtraReg         /* Number of extra registers to allocate */
  1749. ){
  1750.   int nEq = pLevel->nEq;        /* The number of == or IN constraints to code */
  1751.   Vdbe *v = pParse->pVdbe;      /* The virtual machine under construction */
  1752.   Index *pIdx = pLevel->pIdx;   /* The index being used for this loop */
  1753.   int iCur = pLevel->iTabCur;   /* The cursor of the table */
  1754.   WhereTerm *pTerm;             /* A single constraint term */
  1755.   int j;                        /* Loop counter */
  1756.   int regBase;                  /* Base register */
  1757.   /* Figure out how many memory cells we will need then allocate them.
  1758.   ** We always need at least one used to store the loop terminator
  1759.   ** value.  If there are IN operators we'll need one for each == or
  1760.   ** IN constraint.
  1761.   */
  1762.   pLevel->iMem = pParse->nMem + 1;
  1763.   regBase = pParse->nMem + 2;
  1764.   pParse->nMem += pLevel->nEq + 2 + nExtraReg;
  1765.   /* Evaluate the equality constraints
  1766.   */
  1767.   assert( pIdx->nColumn>=nEq );
  1768.   for(j=0; j<nEq; j++){
  1769.     int r1;
  1770.     int k = pIdx->aiColumn[j];
  1771.     pTerm = findTerm(pWC, iCur, k, notReady, pLevel->flags, pIdx);
  1772.     if( pTerm==0 ) break;
  1773.     assert( (pTerm->flags & TERM_CODED)==0 );
  1774.     r1 = codeEqualityTerm(pParse, pTerm, pLevel, regBase+j);
  1775.     if( r1!=regBase+j ){
  1776.       sqlite3VdbeAddOp2(v, OP_SCopy, r1, regBase+j);
  1777.     }
  1778.     if( (pTerm->eOperator & (WO_ISNULL|WO_IN))==0 ){
  1779.       sqlite3VdbeAddOp2(v, OP_IsNull, regBase+j, pLevel->brk);
  1780.     }
  1781.   }
  1782.   return regBase;
  1783. }
  1784. #if defined(SQLITE_TEST)
  1785. /*
  1786. ** The following variable holds a text description of query plan generated
  1787. ** by the most recent call to sqlite3WhereBegin().  Each call to WhereBegin
  1788. ** overwrites the previous.  This information is used for testing and
  1789. ** analysis only.
  1790. */
  1791. char sqlite3_query_plan[BMS*2*40];  /* Text of the join */
  1792. static int nQPlan = 0;              /* Next free slow in _query_plan[] */
  1793. #endif /* SQLITE_TEST */
  1794. /*
  1795. ** Free a WhereInfo structure
  1796. */
  1797. static void whereInfoFree(WhereInfo *pWInfo){
  1798.   if( pWInfo ){
  1799.     int i;
  1800.     for(i=0; i<pWInfo->nLevel; i++){
  1801.       sqlite3_index_info *pInfo = pWInfo->a[i].pIdxInfo;
  1802.       if( pInfo ){
  1803.         assert( pInfo->needToFreeIdxStr==0 );
  1804.         sqlite3_free(pInfo);
  1805.       }
  1806.     }
  1807.     sqlite3_free(pWInfo);
  1808.   }
  1809. }
  1810. /*
  1811. ** Generate the beginning of the loop used for WHERE clause processing.
  1812. ** The return value is a pointer to an opaque structure that contains
  1813. ** information needed to terminate the loop.  Later, the calling routine
  1814. ** should invoke sqlite3WhereEnd() with the return value of this function
  1815. ** in order to complete the WHERE clause processing.
  1816. **
  1817. ** If an error occurs, this routine returns NULL.
  1818. **
  1819. ** The basic idea is to do a nested loop, one loop for each table in
  1820. ** the FROM clause of a select.  (INSERT and UPDATE statements are the
  1821. ** same as a SELECT with only a single table in the FROM clause.)  For
  1822. ** example, if the SQL is this:
  1823. **
  1824. **       SELECT * FROM t1, t2, t3 WHERE ...;
  1825. **
  1826. ** Then the code generated is conceptually like the following:
  1827. **
  1828. **      foreach row1 in t1 do           Code generated
  1829. **        foreach row2 in t2 do      |-- by sqlite3WhereBegin()
  1830. **          foreach row3 in t3 do   /
  1831. **            ...
  1832. **          end                         Code generated
  1833. **        end                        |-- by sqlite3WhereEnd()
  1834. **      end                         /
  1835. **
  1836. ** Note that the loops might not be nested in the order in which they
  1837. ** appear in the FROM clause if a different order is better able to make
  1838. ** use of indices.  Note also that when the IN operator appears in
  1839. ** the WHERE clause, it might result in additional nested loops for
  1840. ** scanning through all values on the right-hand side of the IN.
  1841. **
  1842. ** There are Btree cursors associated with each table.  t1 uses cursor
  1843. ** number pTabList->a[0].iCursor.  t2 uses the cursor pTabList->a[1].iCursor.
  1844. ** And so forth.  This routine generates code to open those VDBE cursors
  1845. ** and sqlite3WhereEnd() generates the code to close them.
  1846. **
  1847. ** The code that sqlite3WhereBegin() generates leaves the cursors named
  1848. ** in pTabList pointing at their appropriate entries.  The [...] code
  1849. ** can use OP_Column and OP_Rowid opcodes on these cursors to extract
  1850. ** data from the various tables of the loop.
  1851. **
  1852. ** If the WHERE clause is empty, the foreach loops must each scan their
  1853. ** entire tables.  Thus a three-way join is an O(N^3) operation.  But if
  1854. ** the tables have indices and there are terms in the WHERE clause that
  1855. ** refer to those indices, a complete table scan can be avoided and the
  1856. ** code will run much faster.  Most of the work of this routine is checking
  1857. ** to see if there are indices that can be used to speed up the loop.
  1858. **
  1859. ** Terms of the WHERE clause are also used to limit which rows actually
  1860. ** make it to the "..." in the middle of the loop.  After each "foreach",
  1861. ** terms of the WHERE clause that use only terms in that loop and outer
  1862. ** loops are evaluated and if false a jump is made around all subsequent
  1863. ** inner loops (or around the "..." if the test occurs within the inner-
  1864. ** most loop)
  1865. **
  1866. ** OUTER JOINS
  1867. **
  1868. ** An outer join of tables t1 and t2 is conceptally coded as follows:
  1869. **
  1870. **    foreach row1 in t1 do
  1871. **      flag = 0
  1872. **      foreach row2 in t2 do
  1873. **        start:
  1874. **          ...
  1875. **          flag = 1
  1876. **      end
  1877. **      if flag==0 then
  1878. **        move the row2 cursor to a null row
  1879. **        goto start
  1880. **      fi
  1881. **    end
  1882. **
  1883. ** ORDER BY CLAUSE PROCESSING
  1884. **
  1885. ** *ppOrderBy is a pointer to the ORDER BY clause of a SELECT statement,
  1886. ** if there is one.  If there is no ORDER BY clause or if this routine
  1887. ** is called from an UPDATE or DELETE statement, then ppOrderBy is NULL.
  1888. **
  1889. ** If an index can be used so that the natural output order of the table
  1890. ** scan is correct for the ORDER BY clause, then that index is used and
  1891. ** *ppOrderBy is set to NULL.  This is an optimization that prevents an
  1892. ** unnecessary sort of the result set if an index appropriate for the
  1893. ** ORDER BY clause already exists.
  1894. **
  1895. ** If the where clause loops cannot be arranged to provide the correct
  1896. ** output order, then the *ppOrderBy is unchanged.
  1897. */
  1898. WhereInfo *sqlite3WhereBegin(
  1899.   Parse *pParse,        /* The parser context */
  1900.   SrcList *pTabList,    /* A list of all tables to be scanned */
  1901.   Expr *pWhere,         /* The WHERE clause */
  1902.   ExprList **ppOrderBy, /* An ORDER BY clause, or NULL */
  1903.   u8 wflags             /* One of the WHERE_* flags defined in sqliteInt.h */
  1904. ){
  1905.   int i;                     /* Loop counter */
  1906.   WhereInfo *pWInfo;         /* Will become the return value of this function */
  1907.   Vdbe *v = pParse->pVdbe;   /* The virtual database engine */
  1908.   int brk, cont = 0;         /* Addresses used during code generation */
  1909.   Bitmask notReady;          /* Cursors that are not yet positioned */
  1910.   WhereTerm *pTerm;          /* A single term in the WHERE clause */
  1911.   ExprMaskSet maskSet;       /* The expression mask set */
  1912.   WhereClause wc;            /* The WHERE clause is divided into these terms */
  1913.   struct SrcList_item *pTabItem;  /* A single entry from pTabList */
  1914.   WhereLevel *pLevel;             /* A single level in the pWInfo list */
  1915.   int iFrom;                      /* First unused FROM clause element */
  1916.   int andFlags;              /* AND-ed combination of all wc.a[].flags */
  1917.   sqlite3 *db;               /* Database connection */
  1918.   ExprList *pOrderBy = 0;
  1919.   /* The number of tables in the FROM clause is limited by the number of
  1920.   ** bits in a Bitmask 
  1921.   */
  1922.   if( pTabList->nSrc>BMS ){
  1923.     sqlite3ErrorMsg(pParse, "at most %d tables in a join", BMS);
  1924.     return 0;
  1925.   }
  1926.   if( ppOrderBy ){
  1927.     pOrderBy = *ppOrderBy;
  1928.   }
  1929.   /* Split the WHERE clause into separate subexpressions where each
  1930.   ** subexpression is separated by an AND operator.
  1931.   */
  1932.   initMaskSet(&maskSet);
  1933.   whereClauseInit(&wc, pParse, &maskSet);
  1934.   sqlite3ExprCodeConstants(pParse, pWhere);
  1935.   whereSplit(&wc, pWhere, TK_AND);
  1936.     
  1937.   /* Allocate and initialize the WhereInfo structure that will become the
  1938.   ** return value.
  1939.   */
  1940.   db = pParse->db;
  1941.   pWInfo = sqlite3DbMallocZero(db,  
  1942.                       sizeof(WhereInfo) + pTabList->nSrc*sizeof(WhereLevel));
  1943.   if( db->mallocFailed ){
  1944.     goto whereBeginNoMem;
  1945.   }
  1946.   pWInfo->nLevel = pTabList->nSrc;
  1947.   pWInfo->pParse = pParse;
  1948.   pWInfo->pTabList = pTabList;
  1949.   pWInfo->iBreak = sqlite3VdbeMakeLabel(v);
  1950.   /* Special case: a WHERE clause that is constant.  Evaluate the
  1951.   ** expression and either jump over all of the code or fall thru.
  1952.   */
  1953.   if( pWhere && (pTabList->nSrc==0 || sqlite3ExprIsConstantNotJoin(pWhere)) ){
  1954.     sqlite3ExprIfFalse(pParse, pWhere, pWInfo->iBreak, SQLITE_JUMPIFNULL);
  1955.     pWhere = 0;
  1956.   }
  1957.   /* Assign a bit from the bitmask to every term in the FROM clause.
  1958.   **
  1959.   ** When assigning bitmask values to FROM clause cursors, it must be
  1960.   ** the case that if X is the bitmask for the N-th FROM clause term then
  1961.   ** the bitmask for all FROM clause terms to the left of the N-th term
  1962.   ** is (X-1).   An expression from the ON clause of a LEFT JOIN can use
  1963.   ** its Expr.iRightJoinTable value to find the bitmask of the right table
  1964.   ** of the join.  Subtracting one from the right table bitmask gives a
  1965.   ** bitmask for all tables to the left of the join.  Knowing the bitmask
  1966.   ** for all tables to the left of a left join is important.  Ticket #3015.
  1967.   */
  1968.   for(i=0; i<pTabList->nSrc; i++){
  1969.     createMask(&maskSet, pTabList->a[i].iCursor);
  1970.   }
  1971. #ifndef NDEBUG
  1972.   {
  1973.     Bitmask toTheLeft = 0;
  1974.     for(i=0; i<pTabList->nSrc; i++){
  1975.       Bitmask m = getMask(&maskSet, pTabList->a[i].iCursor);
  1976.       assert( (m-1)==toTheLeft );
  1977.       toTheLeft |= m;
  1978.     }
  1979.   }
  1980. #endif
  1981.   /* Analyze all of the subexpressions.  Note that exprAnalyze() might
  1982.   ** add new virtual terms onto the end of the WHERE clause.  We do not
  1983.   ** want to analyze these virtual terms, so start analyzing at the end
  1984.   ** and work forward so that the added virtual terms are never processed.
  1985.   */
  1986.   exprAnalyzeAll(pTabList, &wc);
  1987.   if( db->mallocFailed ){
  1988.     goto whereBeginNoMem;
  1989.   }
  1990.   /* Chose the best index to use for each table in the FROM clause.
  1991.   **
  1992.   ** This loop fills in the following fields:
  1993.   **
  1994.   **   pWInfo->a[].pIdx      The index to use for this level of the loop.
  1995.   **   pWInfo->a[].flags     WHERE_xxx flags associated with pIdx
  1996.   **   pWInfo->a[].nEq       The number of == and IN constraints
  1997.   **   pWInfo->a[].iFrom     When term of the FROM clause is being coded
  1998.   **   pWInfo->a[].iTabCur   The VDBE cursor for the database table
  1999.   **   pWInfo->a[].iIdxCur   The VDBE cursor for the index
  2000.   **
  2001.   ** This loop also figures out the nesting order of tables in the FROM
  2002.   ** clause.
  2003.   */
  2004.   notReady = ~(Bitmask)0;
  2005.   pTabItem = pTabList->a;
  2006.   pLevel = pWInfo->a;
  2007.   andFlags = ~0;
  2008.   WHERETRACE(("*** Optimizer Start ***n"));
  2009.   for(i=iFrom=0, pLevel=pWInfo->a; i<pTabList->nSrc; i++, pLevel++){
  2010.     Index *pIdx;                /* Index for FROM table at pTabItem */
  2011.     int flags;                  /* Flags asssociated with pIdx */
  2012.     int nEq;                    /* Number of == or IN constraints */
  2013.     double cost;                /* The cost for pIdx */
  2014.     int j;                      /* For looping over FROM tables */
  2015.     Index *pBest = 0;           /* The best index seen so far */
  2016.     int bestFlags = 0;          /* Flags associated with pBest */
  2017.     int bestNEq = 0;            /* nEq associated with pBest */
  2018.     double lowestCost;          /* Cost of the pBest */
  2019.     int bestJ = 0;              /* The value of j */
  2020.     Bitmask m;                  /* Bitmask value for j or bestJ */
  2021.     int once = 0;               /* True when first table is seen */
  2022.     sqlite3_index_info *pIndex; /* Current virtual index */
  2023.     lowestCost = SQLITE_BIG_DBL;
  2024.     for(j=iFrom, pTabItem=&pTabList->a[j]; j<pTabList->nSrc; j++, pTabItem++){
  2025.       int doNotReorder;  /* True if this table should not be reordered */
  2026.       doNotReorder =  (pTabItem->jointype & (JT_LEFT|JT_CROSS))!=0;
  2027.       if( once && doNotReorder ) break;
  2028.       m = getMask(&maskSet, pTabItem->iCursor);
  2029.       if( (m & notReady)==0 ){
  2030.         if( j==iFrom ) iFrom++;
  2031.         continue;
  2032.       }
  2033.       assert( pTabItem->pTab );
  2034. #ifndef SQLITE_OMIT_VIRTUALTABLE
  2035.       if( IsVirtual(pTabItem->pTab) ){
  2036.         sqlite3_index_info **ppIdxInfo = &pWInfo->a[j].pIdxInfo;
  2037.         cost = bestVirtualIndex(pParse, &wc, pTabItem, notReady,
  2038.                                 ppOrderBy ? *ppOrderBy : 0, i==0,
  2039.                                 ppIdxInfo);
  2040.         flags = WHERE_VIRTUALTABLE;
  2041.         pIndex = *ppIdxInfo;
  2042.         if( pIndex && pIndex->orderByConsumed ){
  2043.           flags = WHERE_VIRTUALTABLE | WHERE_ORDERBY;
  2044.         }
  2045.         pIdx = 0;
  2046.         nEq = 0;
  2047.         if( (SQLITE_BIG_DBL/2.0)<cost ){
  2048.           /* The cost is not allowed to be larger than SQLITE_BIG_DBL (the
  2049.           ** inital value of lowestCost in this loop. If it is, then
  2050.           ** the (cost<lowestCost) test below will never be true and
  2051.           ** pLevel->pBestIdx never set.
  2052.           */ 
  2053.           cost = (SQLITE_BIG_DBL/2.0);
  2054.         }
  2055.       }else 
  2056. #endif
  2057.       {
  2058.         cost = bestIndex(pParse, &wc, pTabItem, notReady,
  2059.                          (i==0 && ppOrderBy) ? *ppOrderBy : 0,
  2060.                          &pIdx, &flags, &nEq);
  2061.         pIndex = 0;
  2062.       }
  2063.       if( cost<lowestCost ){
  2064.         once = 1;
  2065.         lowestCost = cost;
  2066.         pBest = pIdx;
  2067.         bestFlags = flags;
  2068.         bestNEq = nEq;
  2069.         bestJ = j;
  2070.         pLevel->pBestIdx = pIndex;
  2071.       }
  2072.       if( doNotReorder ) break;
  2073.     }
  2074.     WHERETRACE(("*** Optimizer choose table %d for loop %dn", bestJ,
  2075.            pLevel-pWInfo->a));
  2076.     if( (bestFlags & WHERE_ORDERBY)!=0 ){
  2077.       *ppOrderBy = 0;
  2078.     }
  2079.     andFlags &= bestFlags;
  2080.     pLevel->flags = bestFlags;
  2081.     pLevel->pIdx = pBest;
  2082.     pLevel->nEq = bestNEq;
  2083.     pLevel->aInLoop = 0;
  2084.     pLevel->nIn = 0;
  2085.     if( pBest ){
  2086.       pLevel->iIdxCur = pParse->nTab++;
  2087.     }else{
  2088.       pLevel->iIdxCur = -1;
  2089.     }
  2090.     notReady &= ~getMask(&maskSet, pTabList->a[bestJ].iCursor);
  2091.     pLevel->iFrom = bestJ;
  2092.   }
  2093.   WHERETRACE(("*** Optimizer Finished ***n"));
  2094.   /* If the total query only selects a single row, then the ORDER BY
  2095.   ** clause is irrelevant.
  2096.   */
  2097.   if( (andFlags & WHERE_UNIQUE)!=0 && ppOrderBy ){
  2098.     *ppOrderBy = 0;
  2099.   }
  2100.   /* If the caller is an UPDATE or DELETE statement that is requesting
  2101.   ** to use a one-pass algorithm, determine if this is appropriate.
  2102.   ** The one-pass algorithm only works if the WHERE clause constraints
  2103.   ** the statement to update a single row.
  2104.   */
  2105.   assert( (wflags & WHERE_ONEPASS_DESIRED)==0 || pWInfo->nLevel==1 );
  2106.   if( (wflags & WHERE_ONEPASS_DESIRED)!=0 && (andFlags & WHERE_UNIQUE)!=0 ){
  2107.     pWInfo->okOnePass = 1;
  2108.     pWInfo->a[0].flags &= ~WHERE_IDX_ONLY;
  2109.   }
  2110.   /* Open all tables in the pTabList and any indices selected for
  2111.   ** searching those tables.
  2112.   */
  2113.   sqlite3CodeVerifySchema(pParse, -1); /* Insert the cookie verifier Goto */
  2114.   for(i=0, pLevel=pWInfo->a; i<pTabList->nSrc; i++, pLevel++){
  2115.     Table *pTab;     /* Table to open */
  2116.     Index *pIx;      /* Index used to access pTab (if any) */
  2117.     int iDb;         /* Index of database containing table/index */
  2118.     int iIdxCur = pLevel->iIdxCur;
  2119. #ifndef SQLITE_OMIT_EXPLAIN
  2120.     if( pParse->explain==2 ){
  2121.       char *zMsg;
  2122.       struct SrcList_item *pItem = &pTabList->a[pLevel->iFrom];
  2123.       zMsg = sqlite3MPrintf(db, "TABLE %s", pItem->zName);
  2124.       if( pItem->zAlias ){
  2125.         zMsg = sqlite3MPrintf(db, "%z AS %s", zMsg, pItem->zAlias);
  2126.       }
  2127.       if( (pIx = pLevel->pIdx)!=0 ){
  2128.         zMsg = sqlite3MPrintf(db, "%z WITH INDEX %s", zMsg, pIx->zName);
  2129.       }else if( pLevel->flags & (WHERE_ROWID_EQ|WHERE_ROWID_RANGE) ){
  2130.         zMsg = sqlite3MPrintf(db, "%z USING PRIMARY KEY", zMsg);
  2131.       }
  2132. #ifndef SQLITE_OMIT_VIRTUALTABLE
  2133.       else if( pLevel->pBestIdx ){
  2134.         sqlite3_index_info *pBestIdx = pLevel->pBestIdx;
  2135.         zMsg = sqlite3MPrintf(db, "%z VIRTUAL TABLE INDEX %d:%s", zMsg,
  2136.                     pBestIdx->idxNum, pBestIdx->idxStr);
  2137.       }
  2138. #endif
  2139.       if( pLevel->flags & WHERE_ORDERBY ){
  2140.         zMsg = sqlite3MPrintf(db, "%z ORDER BY", zMsg);
  2141.       }
  2142.       sqlite3VdbeAddOp4(v, OP_Explain, i, pLevel->iFrom, 0, zMsg, P4_DYNAMIC);
  2143.     }
  2144. #endif /* SQLITE_OMIT_EXPLAIN */
  2145.     pTabItem = &pTabList->a[pLevel->iFrom];
  2146.     pTab = pTabItem->pTab;
  2147.     iDb = sqlite3SchemaToIndex(pParse->db, pTab->pSchema);
  2148.     if( pTab->isEphem || pTab->pSelect ) continue;
  2149. #ifndef SQLITE_OMIT_VIRTUALTABLE
  2150.     if( pLevel->pBestIdx ){
  2151.       int iCur = pTabItem->iCursor;
  2152.       sqlite3VdbeAddOp4(v, OP_VOpen, iCur, 0, 0,
  2153.                         (const char*)pTab->pVtab, P4_VTAB);
  2154.     }else
  2155. #endif
  2156.     if( (pLevel->flags & WHERE_IDX_ONLY)==0 ){
  2157.       int op = pWInfo->okOnePass ? OP_OpenWrite : OP_OpenRead;
  2158.       sqlite3OpenTable(pParse, pTabItem->iCursor, iDb, pTab, op);
  2159.       if( !pWInfo->okOnePass && pTab->nCol<(sizeof(Bitmask)*8) ){
  2160.         Bitmask b = pTabItem->colUsed;
  2161.         int n = 0;
  2162.         for(; b; b=b>>1, n++){}
  2163.         sqlite3VdbeChangeP2(v, sqlite3VdbeCurrentAddr(v)-2, n);
  2164.         assert( n<=pTab->nCol );
  2165.       }
  2166.     }else{
  2167.       sqlite3TableLock(pParse, iDb, pTab->tnum, 0, pTab->zName);
  2168.     }
  2169.     pLevel->iTabCur = pTabItem->iCursor;
  2170.     if( (pIx = pLevel->pIdx)!=0 ){
  2171.       KeyInfo *pKey = sqlite3IndexKeyinfo(pParse, pIx);
  2172.       assert( pIx->pSchema==pTab->pSchema );
  2173.       sqlite3VdbeAddOp2(v, OP_SetNumColumns, 0, pIx->nColumn+1);
  2174.       sqlite3VdbeAddOp4(v, OP_OpenRead, iIdxCur, pIx->tnum, iDb,
  2175.                         (char*)pKey, P4_KEYINFO_HANDOFF);
  2176.       VdbeComment((v, "%s", pIx->zName));
  2177.     }
  2178.     sqlite3CodeVerifySchema(pParse, iDb);
  2179.   }
  2180.   pWInfo->iTop = sqlite3VdbeCurrentAddr(v);
  2181.   /* Generate the code to do the search.  Each iteration of the for
  2182.   ** loop below generates code for a single nested loop of the VM
  2183.   ** program.
  2184.   */
  2185.   notReady = ~(Bitmask)0;
  2186.   for(i=0, pLevel=pWInfo->a; i<pTabList->nSrc; i++, pLevel++){
  2187.     int j;
  2188.     int iCur = pTabItem->iCursor;  /* The VDBE cursor for the table */
  2189.     Index *pIdx;       /* The index we will be using */
  2190.     int nxt;           /* Where to jump to continue with the next IN case */
  2191.     int iIdxCur;       /* The VDBE cursor for the index */
  2192.     int omitTable;     /* True if we use the index only */
  2193.     int bRev;          /* True if we need to scan in reverse order */
  2194.     pTabItem = &pTabList->a[pLevel->iFrom];
  2195.     iCur = pTabItem->iCursor;
  2196.     pIdx = pLevel->pIdx;
  2197.     iIdxCur = pLevel->iIdxCur;
  2198.     bRev = (pLevel->flags & WHERE_REVERSE)!=0;
  2199.     omitTable = (pLevel->flags & WHERE_IDX_ONLY)!=0;
  2200.     /* Create labels for the "break" and "continue" instructions
  2201.     ** for the current loop.  Jump to brk to break out of a loop.
  2202.     ** Jump to cont to go immediately to the next iteration of the
  2203.     ** loop.
  2204.     **
  2205.     ** When there is an IN operator, we also have a "nxt" label that
  2206.     ** means to continue with the next IN value combination.  When
  2207.     ** there are no IN operators in the constraints, the "nxt" label
  2208.     ** is the same as "brk".
  2209.     */
  2210.     brk = pLevel->brk = pLevel->nxt = sqlite3VdbeMakeLabel(v);
  2211.     cont = pLevel->cont = sqlite3VdbeMakeLabel(v);
  2212.     /* If this is the right table of a LEFT OUTER JOIN, allocate and
  2213.     ** initialize a memory cell that records if this table matches any
  2214.     ** row of the left table of the join.
  2215.     */
  2216.     if( pLevel->iFrom>0 && (pTabItem[0].jointype & JT_LEFT)!=0 ){
  2217.       pLevel->iLeftJoin = ++pParse->nMem;
  2218.       sqlite3VdbeAddOp2(v, OP_Integer, 0, pLevel->iLeftJoin);
  2219.       VdbeComment((v, "init LEFT JOIN no-match flag"));
  2220.     }
  2221. #ifndef SQLITE_OMIT_VIRTUALTABLE
  2222.     if( pLevel->pBestIdx ){
  2223.       /* Case 0:  The table is a virtual-table.  Use the VFilter and VNext
  2224.       **          to access the data.
  2225.       */
  2226.       int j;
  2227.       int iReg;   /* P3 Value for OP_VFilter */
  2228.       sqlite3_index_info *pBestIdx = pLevel->pBestIdx;
  2229.       int nConstraint = pBestIdx->nConstraint;
  2230.       struct sqlite3_index_constraint_usage *aUsage =
  2231.                                                   pBestIdx->aConstraintUsage;
  2232.       const struct sqlite3_index_constraint *aConstraint =
  2233.                                                   pBestIdx->aConstraint;
  2234.       iReg = sqlite3GetTempRange(pParse, nConstraint+2);
  2235.       for(j=1; j<=nConstraint; j++){
  2236.         int k;
  2237.         for(k=0; k<nConstraint; k++){
  2238.           if( aUsage[k].argvIndex==j ){
  2239.             int iTerm = aConstraint[k].iTermOffset;
  2240.             sqlite3ExprCode(pParse, wc.a[iTerm].pExpr->pRight, iReg+j+1);
  2241.             break;
  2242.           }
  2243.         }
  2244.         if( k==nConstraint ) break;
  2245.       }
  2246.       sqlite3VdbeAddOp2(v, OP_Integer, pBestIdx->idxNum, iReg);
  2247.       sqlite3VdbeAddOp2(v, OP_Integer, j-1, iReg+1);
  2248.       sqlite3VdbeAddOp4(v, OP_VFilter, iCur, brk, iReg, pBestIdx->idxStr,
  2249.                         pBestIdx->needToFreeIdxStr ? P4_MPRINTF : P4_STATIC);
  2250.       sqlite3ReleaseTempRange(pParse, iReg, nConstraint+2);
  2251.       pBestIdx->needToFreeIdxStr = 0;
  2252.       for(j=0; j<pBestIdx->nConstraint; j++){
  2253.         if( aUsage[j].omit ){
  2254.           int iTerm = aConstraint[j].iTermOffset;
  2255.           disableTerm(pLevel, &wc.a[iTerm]);
  2256.         }
  2257.       }
  2258.       pLevel->op = OP_VNext;
  2259.       pLevel->p1 = iCur;
  2260.       pLevel->p2 = sqlite3VdbeCurrentAddr(v);
  2261.     }else
  2262. #endif /* SQLITE_OMIT_VIRTUALTABLE */
  2263.     if( pLevel->flags & WHERE_ROWID_EQ ){
  2264.       /* Case 1:  We can directly reference a single row using an
  2265.       **          equality comparison against the ROWID field.  Or
  2266.       **          we reference multiple rows using a "rowid IN (...)"
  2267.       **          construct.
  2268.       */
  2269.       int r1;
  2270.       pTerm = findTerm(&wc, iCur, -1, notReady, WO_EQ|WO_IN, 0);
  2271.       assert( pTerm!=0 );
  2272.       assert( pTerm->pExpr!=0 );
  2273.       assert( pTerm->leftCursor==iCur );
  2274.       assert( omitTable==0 );
  2275.       r1 = codeEqualityTerm(pParse, pTerm, pLevel, 0);
  2276.       nxt = pLevel->nxt;
  2277.       sqlite3VdbeAddOp2(v, OP_MustBeInt, r1, nxt);
  2278.       sqlite3VdbeAddOp3(v, OP_NotExists, iCur, nxt, r1);
  2279.       VdbeComment((v, "pk"));
  2280.       pLevel->op = OP_Noop;
  2281.     }else if( pLevel->flags & WHERE_ROWID_RANGE ){
  2282.       /* Case 2:  We have an inequality comparison against the ROWID field.
  2283.       */
  2284.       int testOp = OP_Noop;
  2285.       int start;
  2286.       WhereTerm *pStart, *pEnd;
  2287.       assert( omitTable==0 );
  2288.       pStart = findTerm(&wc, iCur, -1, notReady, WO_GT|WO_GE, 0);
  2289.       pEnd = findTerm(&wc, iCur, -1, notReady, WO_LT|WO_LE, 0);
  2290.       if( bRev ){
  2291.         pTerm = pStart;
  2292.         pStart = pEnd;
  2293.         pEnd = pTerm;
  2294.       }
  2295.       if( pStart ){
  2296.         Expr *pX;
  2297.         int r1, regFree1;
  2298.         pX = pStart->pExpr;
  2299.         assert( pX!=0 );
  2300.         assert( pStart->leftCursor==iCur );
  2301.         r1 = sqlite3ExprCodeTemp(pParse, pX->pRight, &regFree1);
  2302.         sqlite3VdbeAddOp3(v, OP_ForceInt, r1, brk, 
  2303.                              pX->op==TK_LE || pX->op==TK_GT);
  2304.         sqlite3VdbeAddOp3(v, bRev ? OP_MoveLt : OP_MoveGe, iCur, brk, r1);
  2305.         VdbeComment((v, "pk"));
  2306.         sqlite3ReleaseTempReg(pParse, regFree1);
  2307.         disableTerm(pLevel, pStart);
  2308.       }else{
  2309.         sqlite3VdbeAddOp2(v, bRev ? OP_Last : OP_Rewind, iCur, brk);
  2310.       }
  2311.       if( pEnd ){
  2312.         Expr *pX;
  2313.         pX = pEnd->pExpr;
  2314.         assert( pX!=0 );
  2315.         assert( pEnd->leftCursor==iCur );
  2316.         pLevel->iMem = ++pParse->nMem;
  2317.         sqlite3ExprCode(pParse, pX->pRight, pLevel->iMem);
  2318.         if( pX->op==TK_LT || pX->op==TK_GT ){
  2319.           testOp = bRev ? OP_Le : OP_Ge;
  2320.         }else{
  2321.           testOp = bRev ? OP_Lt : OP_Gt;
  2322.         }
  2323.         disableTerm(pLevel, pEnd);
  2324.       }
  2325.       start = sqlite3VdbeCurrentAddr(v);
  2326.       pLevel->op = bRev ? OP_Prev : OP_Next;
  2327.       pLevel->p1 = iCur;
  2328.       pLevel->p2 = start;
  2329.       if( testOp!=OP_Noop ){
  2330.         int r1 = sqlite3GetTempReg(pParse);
  2331.         sqlite3VdbeAddOp2(v, OP_Rowid, iCur, r1);
  2332.         /* sqlite3VdbeAddOp2(v, OP_SCopy, pLevel->iMem, 0); */
  2333.         sqlite3VdbeAddOp3(v, testOp, pLevel->iMem, brk, r1);
  2334.         sqlite3VdbeChangeP5(v, SQLITE_AFF_NUMERIC | SQLITE_JUMPIFNULL);
  2335.         sqlite3ReleaseTempReg(pParse, r1);
  2336.       }
  2337.     }else if( pLevel->flags & WHERE_COLUMN_RANGE ){
  2338.       /* Case 3: The WHERE clause term that refers to the right-most
  2339.       **         column of the index is an inequality.  For example, if
  2340.       **         the index is on (x,y,z) and the WHERE clause is of the
  2341.       **         form "x=5 AND y<10" then this case is used.  Only the
  2342.       **         right-most column can be an inequality - the rest must
  2343.       **         use the "==" and "IN" operators.
  2344.       **
  2345.       **         This case is also used when there are no WHERE clause
  2346.       **         constraints but an index is selected anyway, in order
  2347.       **         to force the output order to conform to an ORDER BY.
  2348.       */
  2349.       int start;
  2350.       int nEq = pLevel->nEq;
  2351.       int topEq=0;        /* True if top limit uses ==. False is strictly < */
  2352.       int btmEq=0;        /* True if btm limit uses ==. False if strictly > */
  2353.       int topOp, btmOp;   /* Operators for the top and bottom search bounds */
  2354.       int testOp;
  2355.       int topLimit = (pLevel->flags & WHERE_TOP_LIMIT)!=0;
  2356.       int btmLimit = (pLevel->flags & WHERE_BTM_LIMIT)!=0;
  2357.       int isMinQuery = 0;      /* If this is an optimized SELECT min(x) ... */
  2358.       int regBase;        /* Base register holding constraint values */
  2359.       int r1;             /* Temp register */
  2360.       /* Generate code to evaluate all constraint terms using == or IN
  2361.       ** and level the values of those terms on the stack.
  2362.       */
  2363.       regBase = codeAllEqualityTerms(pParse, pLevel, &wc, notReady, 2);
  2364.       /* Figure out what comparison operators to use for top and bottom 
  2365.       ** search bounds. For an ascending index, the bottom bound is a > or >=
  2366.       ** operator and the top bound is a < or <= operator.  For a descending
  2367.       ** index the operators are reversed.
  2368.       */
  2369.       if( pIdx->aSortOrder[nEq]==SQLITE_SO_ASC ){
  2370.         topOp = WO_LT|WO_LE;
  2371.         btmOp = WO_GT|WO_GE;
  2372.       }else{
  2373.         topOp = WO_GT|WO_GE;
  2374.         btmOp = WO_LT|WO_LE;
  2375.         SWAP(int, topLimit, btmLimit);
  2376.       }
  2377.       /* If this loop satisfies a sort order (pOrderBy) request that 
  2378.       ** was passed to this function to implement a "SELECT min(x) ..." 
  2379.       ** query, then the caller will only allow the loop to run for
  2380.       ** a single iteration. This means that the first row returned
  2381.       ** should not have a NULL value stored in 'x'. If column 'x' is
  2382.       ** the first one after the nEq equality constraints in the index,
  2383.       ** this requires some special handling.
  2384.       */
  2385.       if( (wflags&WHERE_ORDERBY_MIN)!=0
  2386.        && (pLevel->flags&WHERE_ORDERBY)
  2387.        && (pIdx->nColumn>nEq)
  2388.        && (pOrderBy->a[0].pExpr->iColumn==pIdx->aiColumn[nEq])
  2389.       ){
  2390.         isMinQuery = 1;
  2391.       }
  2392.       /* Generate the termination key.  This is the key value that
  2393.       ** will end the search.  There is no termination key if there
  2394.       ** are no equality terms and no "X<..." term.
  2395.       **
  2396.       ** 2002-Dec-04: On a reverse-order scan, the so-called "termination"
  2397.       ** key computed here really ends up being the start key.
  2398.       */
  2399.       nxt = pLevel->nxt;
  2400.       if( topLimit ){
  2401.         Expr *pX;
  2402.         int k = pIdx->aiColumn[nEq];
  2403.         pTerm = findTerm(&wc, iCur, k, notReady, topOp, pIdx);
  2404.         assert( pTerm!=0 );
  2405.         pX = pTerm->pExpr;
  2406.         assert( (pTerm->flags & TERM_CODED)==0 );
  2407.         sqlite3ExprCode(pParse, pX->pRight, regBase+nEq);
  2408.         sqlite3VdbeAddOp2(v, OP_IsNull, regBase+nEq, nxt);
  2409.         topEq = pTerm->eOperator & (WO_LE|WO_GE);
  2410.         disableTerm(pLevel, pTerm);
  2411.         testOp = OP_IdxGE;
  2412.       }else{
  2413.         testOp = nEq>0 ? OP_IdxGE : OP_Noop;
  2414.         topEq = 1;
  2415.       }
  2416.       if( testOp!=OP_Noop || (isMinQuery&&bRev) ){
  2417.         int nCol = nEq + topLimit;
  2418.         if( isMinQuery && bRev && !topLimit ){
  2419.           sqlite3VdbeAddOp2(v, OP_Null, 0, regBase+nCol);
  2420.           nCol++;
  2421.           topEq = 0;
  2422.         }
  2423.         buildIndexProbe(pParse, nCol, pIdx, regBase, pLevel->iMem);
  2424.         if( bRev ){
  2425.           int op = topEq ? OP_MoveLe : OP_MoveLt;
  2426.           sqlite3VdbeAddOp3(v, op, iIdxCur, nxt, pLevel->iMem);
  2427.         }
  2428.       }else if( bRev ){
  2429.         sqlite3VdbeAddOp2(v, OP_Last, iIdxCur, brk);
  2430.       }
  2431.    
  2432.       /* Generate the start key.  This is the key that defines the lower
  2433.       ** bound on the search.  There is no start key if there are no
  2434.       ** equality terms and if there is no "X>..." term.  In
  2435.       ** that case, generate a "Rewind" instruction in place of the
  2436.       ** start key search.
  2437.       **
  2438.       ** 2002-Dec-04: In the case of a reverse-order search, the so-called
  2439.       ** "start" key really ends up being used as the termination key.
  2440.       */
  2441.       if( btmLimit ){
  2442.         Expr *pX;
  2443.         int k = pIdx->aiColumn[nEq];
  2444.         pTerm = findTerm(&wc, iCur, k, notReady, btmOp, pIdx);
  2445.         assert( pTerm!=0 );
  2446.         pX = pTerm->pExpr;
  2447.         assert( (pTerm->flags & TERM_CODED)==0 );
  2448.         sqlite3ExprCode(pParse, pX->pRight, regBase+nEq);
  2449.         sqlite3VdbeAddOp2(v, OP_IsNull, regBase+nEq, nxt);
  2450.         btmEq = pTerm->eOperator & (WO_LE|WO_GE);
  2451.         disableTerm(pLevel, pTerm);
  2452.       }else{
  2453.         btmEq = 1;
  2454.       }
  2455.       if( nEq>0 || btmLimit || (isMinQuery&&!bRev) ){
  2456.         int nCol = nEq + btmLimit;
  2457.         if( isMinQuery && !bRev && !btmLimit ){
  2458.           sqlite3VdbeAddOp2(v, OP_Null, 0, regBase+nCol);
  2459.           nCol++;
  2460.           btmEq = 0;
  2461.         }
  2462.         if( bRev ){
  2463.           r1 = pLevel->iMem;
  2464.           testOp = OP_IdxLT;
  2465.         }else{
  2466.           r1 = sqlite3GetTempReg(pParse);
  2467.         }
  2468.         buildIndexProbe(pParse, nCol, pIdx, regBase, r1);
  2469.         if( !bRev ){
  2470.           int op = btmEq ? OP_MoveGe : OP_MoveGt;
  2471.           sqlite3VdbeAddOp3(v, op, iIdxCur, nxt, r1);
  2472.           sqlite3ReleaseTempReg(pParse, r1);
  2473.         }
  2474.       }else if( bRev ){
  2475.         testOp = OP_Noop;
  2476.       }else{
  2477.         sqlite3VdbeAddOp2(v, OP_Rewind, iIdxCur, brk);
  2478.       }
  2479.       /* Generate the the top of the loop.  If there is a termination
  2480.       ** key we have to test for that key and abort at the top of the
  2481.       ** loop.
  2482.       */
  2483.       start = sqlite3VdbeCurrentAddr(v);
  2484.       if( testOp!=OP_Noop ){
  2485.         sqlite3VdbeAddOp3(v, testOp, iIdxCur, nxt, pLevel->iMem);
  2486.         if( (topEq && !bRev) || (!btmEq && bRev) ){
  2487.           sqlite3VdbeChangeP5(v, 1);
  2488.         }
  2489.       }
  2490.       r1 = sqlite3GetTempReg(pParse);
  2491.       if( topLimit | btmLimit ){
  2492.         sqlite3VdbeAddOp3(v, OP_Column, iIdxCur, nEq, r1);
  2493.         sqlite3VdbeAddOp2(v, OP_IsNull, r1, cont);
  2494.       }
  2495.       if( !omitTable ){
  2496.         sqlite3VdbeAddOp2(v, OP_IdxRowid, iIdxCur, r1);
  2497.         sqlite3VdbeAddOp3(v, OP_MoveGe, iCur, 0, r1);  /* Deferred seek */
  2498.       }
  2499.       sqlite3ReleaseTempReg(pParse, r1);
  2500.       /* Record the instruction used to terminate the loop.
  2501.       */
  2502.       pLevel->op = bRev ? OP_Prev : OP_Next;
  2503.       pLevel->p1 = iIdxCur;
  2504.       pLevel->p2 = start;
  2505.     }else if( pLevel->flags & WHERE_COLUMN_EQ ){
  2506.       /* Case 4:  There is an index and all terms of the WHERE clause that
  2507.       **          refer to the index using the "==" or "IN" operators.
  2508.       */
  2509.       int start;
  2510.       int nEq = pLevel->nEq;
  2511.       int isMinQuery = 0;      /* If this is an optimized SELECT min(x) ... */
  2512.       int regBase;             /* Base register of array holding constraints */
  2513.       int r1;
  2514.       /* Generate code to evaluate all constraint terms using == or IN
  2515.       ** and leave the values of those terms on the stack.
  2516.       */
  2517.       regBase = codeAllEqualityTerms(pParse, pLevel, &wc, notReady, 1);
  2518.       nxt = pLevel->nxt;
  2519.       if( (wflags&WHERE_ORDERBY_MIN)!=0
  2520.        && (pLevel->flags&WHERE_ORDERBY) 
  2521.        && (pIdx->nColumn>nEq)
  2522.        && (pOrderBy->a[0].pExpr->iColumn==pIdx->aiColumn[nEq])
  2523.       ){
  2524.         isMinQuery = 1;
  2525.         buildIndexProbe(pParse, nEq, pIdx, regBase, pLevel->iMem);
  2526.         sqlite3VdbeAddOp2(v, OP_Null, 0, regBase+nEq);
  2527.         r1 = ++pParse->nMem;
  2528.         buildIndexProbe(pParse, nEq+1, pIdx, regBase, r1);
  2529.       }else{
  2530.         /* Generate a single key that will be used to both start and 
  2531.         ** terminate the search
  2532.         */
  2533.         r1 = pLevel->iMem;
  2534.         buildIndexProbe(pParse, nEq, pIdx, regBase, r1);
  2535.       }
  2536.       /* Generate code (1) to move to the first matching element of the table.
  2537.       ** Then generate code (2) that jumps to "nxt" after the cursor is past
  2538.       ** the last matching element of the table.  The code (1) is executed
  2539.       ** once to initialize the search, the code (2) is executed before each
  2540.       ** iteration of the scan to see if the scan has finished. */
  2541.       if( bRev ){
  2542.         /* Scan in reverse order */
  2543.         int op;
  2544.         if( isMinQuery ){
  2545.           op = OP_MoveLt;
  2546.         }else{
  2547.           op = OP_MoveLe;
  2548.         }
  2549.         sqlite3VdbeAddOp3(v, op, iIdxCur, nxt, r1);
  2550.         start = sqlite3VdbeAddOp3(v, OP_IdxLT, iIdxCur, nxt, pLevel->iMem);
  2551.         pLevel->op = OP_Prev;
  2552.       }else{
  2553.         /* Scan in the forward order */
  2554.         int op;
  2555.         if( isMinQuery ){
  2556.           op = OP_MoveGt;
  2557.         }else{
  2558.           op = OP_MoveGe;
  2559.         }
  2560.         sqlite3VdbeAddOp3(v, op, iIdxCur, nxt, r1);
  2561.         start = sqlite3VdbeAddOp3(v, OP_IdxGE, iIdxCur, nxt, pLevel->iMem);
  2562.         sqlite3VdbeChangeP5(v, 1);
  2563.         pLevel->op = OP_Next;
  2564.       }
  2565.       if( !omitTable ){
  2566.         r1 = sqlite3GetTempReg(pParse);
  2567.         sqlite3VdbeAddOp2(v, OP_IdxRowid, iIdxCur, r1);
  2568.         sqlite3VdbeAddOp3(v, OP_MoveGe, iCur, 0, r1);  /* Deferred seek */
  2569.         sqlite3ReleaseTempReg(pParse, r1);
  2570.       }
  2571.       pLevel->p1 = iIdxCur;
  2572.       pLevel->p2 = start;
  2573.     }else{
  2574.       /* Case 5:  There is no usable index.  We must do a complete
  2575.       **          scan of the entire table.
  2576.       */
  2577.       assert( omitTable==0 );
  2578.       assert( bRev==0 );
  2579.       pLevel->op = OP_Next;
  2580.       pLevel->p1 = iCur;
  2581.       pLevel->p2 = 1 + sqlite3VdbeAddOp2(v, OP_Rewind, iCur, brk);
  2582.     }
  2583.     notReady &= ~getMask(&maskSet, iCur);
  2584.     /* Insert code to test every subexpression that can be completely
  2585.     ** computed using the current set of tables.
  2586.     */
  2587.     for(pTerm=wc.a, j=wc.nTerm; j>0; j--, pTerm++){
  2588.       Expr *pE;
  2589.       if( pTerm->flags & (TERM_VIRTUAL|TERM_CODED) ) continue;
  2590.       if( (pTerm->prereqAll & notReady)!=0 ) continue;
  2591.       pE = pTerm->pExpr;
  2592.       assert( pE!=0 );
  2593.       if( pLevel->iLeftJoin && !ExprHasProperty(pE, EP_FromJoin) ){
  2594.         continue;
  2595.       }
  2596.       sqlite3ExprIfFalse(pParse, pE, cont, SQLITE_JUMPIFNULL);
  2597.       pTerm->flags |= TERM_CODED;
  2598.     }
  2599.     /* For a LEFT OUTER JOIN, generate code that will record the fact that
  2600.     ** at least one row of the right table has matched the left table.  
  2601.     */
  2602.     if( pLevel->iLeftJoin ){
  2603.       pLevel->top = sqlite3VdbeCurrentAddr(v);
  2604.       sqlite3VdbeAddOp2(v, OP_Integer, 1, pLevel->iLeftJoin);
  2605.       VdbeComment((v, "record LEFT JOIN hit"));
  2606.       sqlite3ExprClearColumnCache(pParse, pLevel->iTabCur);
  2607.       sqlite3ExprClearColumnCache(pParse, pLevel->iIdxCur);
  2608.       for(pTerm=wc.a, j=0; j<wc.nTerm; j++, pTerm++){
  2609.         if( pTerm->flags & (TERM_VIRTUAL|TERM_CODED) ) continue;
  2610.         if( (pTerm->prereqAll & notReady)!=0 ) continue;
  2611.         assert( pTerm->pExpr );
  2612.         sqlite3ExprIfFalse(pParse, pTerm->pExpr, cont, SQLITE_JUMPIFNULL);
  2613.         pTerm->flags |= TERM_CODED;
  2614.       }
  2615.     }
  2616.   }
  2617. #ifdef SQLITE_TEST  /* For testing and debugging use only */
  2618.   /* Record in the query plan information about the current table
  2619.   ** and the index used to access it (if any).  If the table itself
  2620.   ** is not used, its name is just '{}'.  If no index is used
  2621.   ** the index is listed as "{}".  If the primary key is used the
  2622.   ** index name is '*'.
  2623.   */
  2624.   for(i=0; i<pTabList->nSrc; i++){
  2625.     char *z;
  2626.     int n;
  2627.     pLevel = &pWInfo->a[i];
  2628.     pTabItem = &pTabList->a[pLevel->iFrom];
  2629.     z = pTabItem->zAlias;
  2630.     if( z==0 ) z = pTabItem->pTab->zName;
  2631.     n = strlen(z);
  2632.     if( n+nQPlan < sizeof(sqlite3_query_plan)-10 ){
  2633.       if( pLevel->flags & WHERE_IDX_ONLY ){
  2634.         memcpy(&sqlite3_query_plan[nQPlan], "{}", 2);
  2635.         nQPlan += 2;
  2636.       }else{
  2637.         memcpy(&sqlite3_query_plan[nQPlan], z, n);
  2638.         nQPlan += n;
  2639.       }
  2640.       sqlite3_query_plan[nQPlan++] = ' ';
  2641.     }
  2642.     if( pLevel->flags & (WHERE_ROWID_EQ|WHERE_ROWID_RANGE) ){
  2643.       memcpy(&sqlite3_query_plan[nQPlan], "* ", 2);
  2644.       nQPlan += 2;
  2645.     }else if( pLevel->pIdx==0 ){
  2646.       memcpy(&sqlite3_query_plan[nQPlan], "{} ", 3);
  2647.       nQPlan += 3;
  2648.     }else{
  2649.       n = strlen(pLevel->pIdx->zName);
  2650.       if( n+nQPlan < sizeof(sqlite3_query_plan)-2 ){
  2651.         memcpy(&sqlite3_query_plan[nQPlan], pLevel->pIdx->zName, n);
  2652.         nQPlan += n;
  2653.         sqlite3_query_plan[nQPlan++] = ' ';
  2654.       }
  2655.     }
  2656.   }
  2657.   while( nQPlan>0 && sqlite3_query_plan[nQPlan-1]==' ' ){
  2658.     sqlite3_query_plan[--nQPlan] = 0;
  2659.   }
  2660.   sqlite3_query_plan[nQPlan] = 0;
  2661.   nQPlan = 0;
  2662. #endif /* SQLITE_TEST // Testing and debugging use only */
  2663.   /* Record the continuation address in the WhereInfo structure.  Then
  2664.   ** clean up and return.
  2665.   */
  2666.   pWInfo->iContinue = cont;
  2667.   whereClauseClear(&wc);
  2668.   return pWInfo;
  2669.   /* Jump here if malloc fails */
  2670. whereBeginNoMem:
  2671.   whereClauseClear(&wc);
  2672.   whereInfoFree(pWInfo);
  2673.   return 0;
  2674. }
  2675. /*
  2676. ** Generate the end of the WHERE loop.  See comments on 
  2677. ** sqlite3WhereBegin() for additional information.
  2678. */
  2679. void sqlite3WhereEnd(WhereInfo *pWInfo){
  2680.   Vdbe *v = pWInfo->pParse->pVdbe;
  2681.   int i;
  2682.   WhereLevel *pLevel;
  2683.   SrcList *pTabList = pWInfo->pTabList;
  2684.   /* Generate loop termination code.
  2685.   */
  2686.   sqlite3ExprClearColumnCache(pWInfo->pParse, -1);
  2687.   for(i=pTabList->nSrc-1; i>=0; i--){
  2688.     pLevel = &pWInfo->a[i];
  2689.     sqlite3VdbeResolveLabel(v, pLevel->cont);
  2690.     if( pLevel->op!=OP_Noop ){
  2691.       sqlite3VdbeAddOp2(v, pLevel->op, pLevel->p1, pLevel->p2);
  2692.     }
  2693.     if( pLevel->nIn ){
  2694.       struct InLoop *pIn;
  2695.       int j;
  2696.       sqlite3VdbeResolveLabel(v, pLevel->nxt);
  2697.       for(j=pLevel->nIn, pIn=&pLevel->aInLoop[j-1]; j>0; j--, pIn--){
  2698.         sqlite3VdbeJumpHere(v, pIn->topAddr+1);
  2699.         sqlite3VdbeAddOp2(v, OP_Next, pIn->iCur, pIn->topAddr);
  2700.         sqlite3VdbeJumpHere(v, pIn->topAddr-1);
  2701.       }
  2702.       sqlite3_free(pLevel->aInLoop);
  2703.     }
  2704.     sqlite3VdbeResolveLabel(v, pLevel->brk);
  2705.     if( pLevel->iLeftJoin ){
  2706.       int addr;
  2707.       addr = sqlite3VdbeAddOp1(v, OP_IfPos, pLevel->iLeftJoin);
  2708.       sqlite3VdbeAddOp1(v, OP_NullRow, pTabList->a[i].iCursor);
  2709.       if( pLevel->iIdxCur>=0 ){
  2710.         sqlite3VdbeAddOp1(v, OP_NullRow, pLevel->iIdxCur);
  2711.       }
  2712.       sqlite3VdbeAddOp2(v, OP_Goto, 0, pLevel->top);
  2713.       sqlite3VdbeJumpHere(v, addr);
  2714.     }
  2715.   }
  2716.   /* The "break" point is here, just past the end of the outer loop.
  2717.   ** Set it.
  2718.   */
  2719.   sqlite3VdbeResolveLabel(v, pWInfo->iBreak);
  2720.   /* Close all of the cursors that were opened by sqlite3WhereBegin.
  2721.   */
  2722.   for(i=0, pLevel=pWInfo->a; i<pTabList->nSrc; i++, pLevel++){
  2723.     struct SrcList_item *pTabItem = &pTabList->a[pLevel->iFrom];
  2724.     Table *pTab = pTabItem->pTab;
  2725.     assert( pTab!=0 );
  2726.     if( pTab->isEphem || pTab->pSelect ) continue;
  2727.     if( !pWInfo->okOnePass && (pLevel->flags & WHERE_IDX_ONLY)==0 ){
  2728.       sqlite3VdbeAddOp1(v, OP_Close, pTabItem->iCursor);
  2729.     }
  2730.     if( pLevel->pIdx!=0 ){
  2731.       sqlite3VdbeAddOp1(v, OP_Close, pLevel->iIdxCur);
  2732.     }
  2733.     /* If this scan uses an index, make code substitutions to read data
  2734.     ** from the index in preference to the table. Sometimes, this means
  2735.     ** the table need never be read from. This is a performance boost,
  2736.     ** as the vdbe level waits until the table is read before actually
  2737.     ** seeking the table cursor to the record corresponding to the current
  2738.     ** position in the index.
  2739.     ** 
  2740.     ** Calls to the code generator in between sqlite3WhereBegin and
  2741.     ** sqlite3WhereEnd will have created code that references the table
  2742.     ** directly.  This loop scans all that code looking for opcodes
  2743.     ** that reference the table and converts them into opcodes that
  2744.     ** reference the index.
  2745.     */
  2746.     if( pLevel->pIdx ){
  2747.       int k, j, last;
  2748.       VdbeOp *pOp;
  2749.       Index *pIdx = pLevel->pIdx;
  2750.       int useIndexOnly = pLevel->flags & WHERE_IDX_ONLY;
  2751.       assert( pIdx!=0 );
  2752.       pOp = sqlite3VdbeGetOp(v, pWInfo->iTop);
  2753.       last = sqlite3VdbeCurrentAddr(v);
  2754.       for(k=pWInfo->iTop; k<last; k++, pOp++){
  2755.         if( pOp->p1!=pLevel->iTabCur ) continue;
  2756.         if( pOp->opcode==OP_Column ){
  2757.           for(j=0; j<pIdx->nColumn; j++){
  2758.             if( pOp->p2==pIdx->aiColumn[j] ){
  2759.               pOp->p2 = j;
  2760.               pOp->p1 = pLevel->iIdxCur;
  2761.               break;
  2762.             }
  2763.           }
  2764.           assert(!useIndexOnly || j<pIdx->nColumn);
  2765.         }else if( pOp->opcode==OP_Rowid ){
  2766.           pOp->p1 = pLevel->iIdxCur;
  2767.           pOp->opcode = OP_IdxRowid;
  2768.         }else if( pOp->opcode==OP_NullRow && useIndexOnly ){
  2769.           pOp->opcode = OP_Noop;
  2770.         }
  2771.       }
  2772.     }
  2773.   }
  2774.   /* Final cleanup
  2775.   */
  2776.   whereInfoFree(pWInfo);
  2777.   return;
  2778. }