Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c17552 Index *pIdx; /* Used when p4type is P4_INDEX */ member
22154 SQLITE_PRIVATE int sqlite3ExprCoveredByIndex(Expr*, int iCur, Index *pIdx);
73376 Index *pIdx = (Index *)sqliteHashData(p); local
73377 if( pIdx->tnum==iRoot ){
73384 iTab = pIdx->pTable->tnum;
74940 static SQLITE_INLINE int allocateSpace(MemPage *pPage, int nByte, int *pIdx){ argument
74988 *pIdx = g2 = (int)(pSpace-data);
75022 *pIdx = top;
87078 Index *pIdx; member
87100 Index *pIdx = p->pIdx; /* Index being probed */ local
[all …]
H A Dshell.c19904 static int dbdataBestIndex(sqlite3_vtab *tab, sqlite3_index_info *pIdx){ in dbdataBestIndex() argument
19911 for(i=0; i<pIdx->nConstraint; i++){ in dbdataBestIndex()
19912 struct sqlite3_index_constraint *p = &pIdx->aConstraint[i]; in dbdataBestIndex()
19925 pIdx->aConstraintUsage[iSchema].argvIndex = 1; in dbdataBestIndex()
19926 pIdx->aConstraintUsage[iSchema].omit = 1; in dbdataBestIndex()
19929 pIdx->aConstraintUsage[iPgno].argvIndex = 1 + (iSchema>=0); in dbdataBestIndex()
19930 pIdx->aConstraintUsage[iPgno].omit = 1; in dbdataBestIndex()
19931 pIdx->estimatedCost = 100; in dbdataBestIndex()
19932 pIdx->estimatedRows = 50; in dbdataBestIndex()
19934 if( pTab->bPtr==0 && pIdx->nOrderBy && pIdx->aOrderBy[0].desc==0 ){ in dbdataBestIndex()
[all …]