Lines Matching refs:notReady

143402   Bitmask notReady;          /* FROM entries not usable at this level */
143818 Bitmask notReady, /* RHS must not overlap with this mask */
143850 Bitmask notReady /* Which tables are currently available */
144208 && (pLevel->notReady & pTerm->prereqAll)==0
144862 if( pTerm->prereqAll & pLevel->notReady ) continue;
145197 Bitmask notReady /* Which tables are currently available */
145221 pLevel->notReady = notReady & ~sqlite3WhereGetMask(&pWInfo->sMaskSet, iCur);
145226 sqlite3DebugPrintf("Coding level %d of %d: notReady=%llx iFrom=%d\n",
145227 iLevel, pWInfo->nLevel, (u64)notReady, pLevel->iFrom);
145395 if( (pTerm->prereqAll & pLevel->notReady)==0 ){
145990 ** by this loop in the a[0] slot and all notReady tables in a[1..] slots.
145994 int nNotReady; /* The number of notReady tables */
145999 if( pOrTab==0 ) return notReady;
146165 ** contained one or more AND term from a notReady table. The
146166 ** terms from the notReady table could not be tested and will
146269 if( (pTerm->prereqAll & pLevel->notReady)!=0 ){
146348 assert( (pTerm->prereqRight & pLevel->notReady)!=0 );
146349 pAlt = sqlite3WhereFindTerm(pWC, iCur, pTerm->u.x.leftColumn, notReady,
146379 if( (pTerm->prereqAll & pLevel->notReady)!=0 ){
146396 sqlite3DebugPrintf("End Coding level %d: notReady=%llx\n",
146397 iLevel, (u64)pLevel->notReady);
146400 return pLevel->notReady;
148760 Bitmask notReady, /* RHS must not overlap with this mask */
148771 if( (p->prereqRight & notReady)==0 ){
149006 Bitmask notReady /* Tables in outer loops of the join */
149020 if( (pTerm->prereqRight & notReady)!=0 ) return 0;
149040 Bitmask notReady, /* Mask of cursors that are not available */
149092 if( termCanDriveIndex(pTerm, pSrc, notReady) ){
149145 if( termCanDriveIndex(pTerm, pSrc, notReady) ){
153070 Bitmask notReady; /* Cursors that are not yet positioned */
153361 notReady = ~(Bitmask)0;
153395 notReady &= ~pLoop->maskSelf;
153599 &pTabList->a[pLevel->iFrom], notReady, pLevel);
153607 notReady = sqlite3WhereCodeOneLoopStart(pParse,v,pWInfo,ii,pLevel,notReady);