Lines Matching refs:iPlan
826 int iPlan = 0; in closureBestIndex() local
836 if( (iPlan & 1)==0 in closureBestIndex()
840 iPlan |= 1; in closureBestIndex()
845 if( (iPlan & 0x0000f0)==0 in closureBestIndex()
851 iPlan |= idx<<4; in closureBestIndex()
853 if( pConstraint->op==SQLITE_INDEX_CONSTRAINT_LT ) iPlan |= 0x000002; in closureBestIndex()
856 if( (iPlan & 0x000f00)==0 in closureBestIndex()
860 iPlan |= idx<<8; in closureBestIndex()
865 if( (iPlan & 0x00f000)==0 in closureBestIndex()
869 iPlan |= idx<<12; in closureBestIndex()
873 if( (iPlan & 0x0f0000)==0 in closureBestIndex()
877 iPlan |= idx<<16; in closureBestIndex()
882 if( (pVtab->zTableName==0 && (iPlan & 0x000f00)==0) in closureBestIndex()
883 || (pVtab->zIdColumn==0 && (iPlan & 0x00f000)==0) in closureBestIndex()
884 || (pVtab->zParentColumn==0 && (iPlan & 0x0f0000)==0) in closureBestIndex()
889 iPlan = 0; in closureBestIndex()
891 if( (iPlan&1)==0 ){ in closureBestIndex()
901 iPlan = 0; in closureBestIndex()
903 pIdxInfo->idxNum = iPlan; in closureBestIndex()