Home
last modified time | relevance | path

Searched refs:pProbe (Results 1 – 2 of 2) sorted by relevance

/sqlite-3.40.0/src/
H A Dwhere.c2813 pProbe->pTable->zName,pProbe->zName, in whereLoopAddBtreeIndex()
2867 if( IsUniqueIndex(pProbe) && saved_nEq==pProbe->nKeyCol-1 ){ in whereLoopAddBtreeIndex()
2964 || (pProbe->nKeyCol==1 && pProbe->onError && eOp==WO_EQ) in whereLoopAddBtreeIndex()
3079 pNew->nOut += (pProbe->aiRowLogEst[nEq] - pProbe->aiRowLogEst[nEq-1]); in whereLoopAddBtreeIndex()
3149 && pProbe->noSkipScan==0 in whereLoopAddBtreeIndex()
3150 && pProbe->hasStat1!=0 in whereLoopAddBtreeIndex()
3160 nIter = pProbe->aiRowLogEst[saved_nEq] - pProbe->aiRowLogEst[saved_nEq+1]; in whereLoopAddBtreeIndex()
3173 pProbe->pTable->zName, pProbe->zName, saved_nEq, rc)); in whereLoopAddBtreeIndex()
3406 pProbe = pTab->pIndex; in whereLoopAddBtree()
3430 pProbe = &sPk; in whereLoopAddBtree()
[all …]
/sqlite-3.40.0/ext/recover/
H A Dsqlite3recover.c1375 sqlite3_stmt *pProbe = 0; in recoverLostAndFoundCreate() local
1378 pProbe = recoverPrepare(p, p->dbOut, in recoverLostAndFoundCreate()
1390 sqlite3_bind_text(pProbe, 1, zTbl, -1, SQLITE_STATIC); in recoverLostAndFoundCreate()
1391 if( SQLITE_ROW==sqlite3_step(pProbe) ){ in recoverLostAndFoundCreate()
1394 recoverReset(p, pProbe); in recoverLostAndFoundCreate()
1398 sqlite3_clear_bindings(pProbe); in recoverLostAndFoundCreate()
1403 recoverFinalize(p, pProbe); in recoverLostAndFoundCreate()