Home
last modified time | relevance | path

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

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dwhere.c388 WhereInfo *pWInfo; /* Will become the return value of this function */ in sqliteWhereBegin() local
422 pWInfo = sqliteMalloc( sizeof(WhereInfo) + pTabList->nSrc*sizeof(WhereLevel)); in sqliteWhereBegin()
424 sqliteFree(pWInfo); in sqliteWhereBegin()
427 pWInfo->pParse = pParse; in sqliteWhereBegin()
428 pWInfo->pTabList = pTabList; in sqliteWhereBegin()
429 pWInfo->peakNTab = pWInfo->savedNTab = pParse->nTab; in sqliteWhereBegin()
430 pWInfo->iBreak = sqliteVdbeMakeLabel(v); in sqliteWhereBegin()
436 sqliteExprIfFalse(pParse, pWhere, pWInfo->iBreak, 1); in sqliteWhereBegin()
499 pWInfo->a[i].iCur = -1; in sqliteWhereBegin()
528 pWInfo->a[i].pIdx = 0; in sqliteWhereBegin()
[all …]
H A Ddelete.c66 WhereInfo *pWInfo; /* Information about the WHERE clause */ in sqliteDeleteFrom() local
197 pWInfo = sqliteWhereBegin(pParse, pTabList, pWhere, 1, 0); in sqliteDeleteFrom()
198 if( pWInfo==0 ) goto delete_from_cleanup; in sqliteDeleteFrom()
209 sqliteWhereEnd(pWInfo); in sqliteDeleteFrom()
H A Dupdate.c37 WhereInfo *pWInfo; /* Information about the WHERE clause */ in sqliteUpdate() local
228 pWInfo = sqliteWhereBegin(pParse, pTabList, pWhere, 1, 0); in sqliteUpdate()
229 if( pWInfo==0 ) goto update_cleanup; in sqliteUpdate()
237 sqliteWhereEnd(pWInfo); in sqliteUpdate()
H A Dselect.c2018 WhereInfo *pWInfo; in sqliteSelect() local
2326 pWInfo = sqliteWhereBegin(pParse, pTabList, pWhere, 0, in sqliteSelect()
2328 if( pWInfo==0 ) goto select_end; in sqliteSelect()
2335 iParm, pWInfo->iContinue, pWInfo->iBreak) ){ in sqliteSelect()
2380 sqliteWhereEnd(pWInfo); in sqliteSelect()