Home | History | Annotate | Download | only in orig

Lines Matching refs:aConstraint

5544 ** ^(The aConstraint[] array records WHERE clause constraints of the form:
5549 ** stored in aConstraint[].op using one of the
5552 ** aConstraint[].iColumn.)^ ^(aConstraint[].usable is TRUE if the
5559 ** ^The aConstraint[] array only reports WHERE clause terms that are
5567 ** the right-hand side of the corresponding aConstraint[] is evaluated
5588 int nConstraint; /* Number of entries in aConstraint */
5594 } *aConstraint; /* Table of WHERE clause constraints */
5616 ** [sqlite3_index_info].aConstraint[].op field. Each value represents
104292 p->aConstraint[i].iColumn,
104293 p->aConstraint[i].iTermOffset,
104294 p->aConstraint[i].op,
104295 p->aConstraint[i].usable);
104743 *(struct sqlite3_index_constraint**)&pIdxInfo->aConstraint = pIdxCons;
104816 if( !p->aConstraint[i].usable && p->aConstraintUsage[i].argvIndex>0 ){
104893 /* Set the aConstraint[].usable fields and initialize all
104896 ** aConstraint[].usable is true for constraints where the right-hand
104913 pIdxCons = *(struct sqlite3_index_constraint**)&pIdxInfo->aConstraint;
104939 pIdxCons = *(struct sqlite3_index_constraint**)&pIdxInfo->aConstraint;
106398 const struct sqlite3_index_constraint *aConstraint =
106399 pVtabIdx->aConstraint;
106406 int iTerm = aConstraint[k].iTermOffset;
106420 int iTerm = aConstraint[j].iTermOffset;
118041 struct sqlite3_index_constraint *pCons = &pInfo->aConstraint[i];
121965 if( pInfo->aConstraint[i].usable && pInfo->aConstraint[i].iColumn==0 ){
121966 int op = pInfo->aConstraint[i].op;
130328 int nConstraint; /* Number of entries in aConstraint */
130329 RtreeConstraint *aConstraint; /* Search constraints. */
130932 ** Free the RtreeCursor.aConstraint[] array and its contents.
130935 if( pCsr->aConstraint ){
130938 sqlite3_rtree_geometry *pGeom = pCsr->aConstraint[i].pGeom;
130944 sqlite3_free(pCsr->aConstraint);
130945 pCsr->aConstraint = 0;
130999 ** (excluded) by the constraints in the pCursor->aConstraint[]
131013 RtreeConstraint *p = &pCursor->aConstraint[ii];
131050 ** pCursor->aConstraint[] array. If so, set *pbEof to true before
131066 RtreeConstraint *p = &pCursor->aConstraint[ii];
131374 /* Normal case - r-tree scan. Set up the RtreeCursor.aConstraint array
131378 pCsr->aConstraint = sqlite3_malloc(sizeof(RtreeConstraint)*argc);
131380 if( !pCsr->aConstraint ){
131383 memset(pCsr->aConstraint, 0, sizeof(RtreeConstraint)*argc);
131387 RtreeConstraint *p = &pCsr->aConstraint[ii];
131479 struct sqlite3_index_constraint *p = &pIdxInfo->aConstraint[ii];