Home
last modified time | relevance | path

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

/sqlite-3.40.0/ext/fts3/
H A Dfts3_aux.c155 int iGe = -1; in fts3auxBestIndexMethod() local
181 if( op==SQLITE_INDEX_CONSTRAINT_GT ) iGe = i; in fts3auxBestIndexMethod()
182 if( op==SQLITE_INDEX_CONSTRAINT_GE ) iGe = i; in fts3auxBestIndexMethod()
197 if( iGe>=0 ){ in fts3auxBestIndexMethod()
199 pInfo->aConstraintUsage[iGe].argvIndex = iNext++; in fts3auxBestIndexMethod()
379 int iGe = -1; /* Index of term>=? value in apVal */ in fts3auxFilterMethod() local
398 iGe = iNext++; in fts3auxFilterMethod()
419 if( iEq>=0 || iGe>=0 ){ in fts3auxFilterMethod()
421 assert( (iEq==0 && iGe==-1) || (iEq==-1 && iGe==0) ); in fts3auxFilterMethod()