Searched defs:nLimit (Results 1 - 2 of 2) sorted by relevance
/illumos-gate/usr/src/lib/libsqlite/src/ |
H A D | select.c | 35 int nLimit, /* LIMIT value. -1 means not used */ 59 pNew->nLimit = nLimit; 1224 ** nLimit and nOffset fields. nLimit and nOffset hold the integers 1232 ** a limit or offset is defined by nLimit and nOffset. iLimit and 1235 ** Only if nLimit>=0 or nOffset>0 do the limit registers get 1242 ** If the comparison is p->nLimit>0 then "LIMIT 0" shows 1244 ** p->nLimit>=0 then "LIMIT 0" show no rows at all. 1250 if( p->nLimit> 27 sqliteSelectNew( ExprList *pEList, SrcList *pSrc, Expr *pWhere, ExprList *pGroupBy, Expr *pHaving, ExprList *pOrderBy, int isDistinct, int nLimit, int nOffset ) argument 1357 int nLimit, nOffset; /* Saved values of p->nLimit and p->nOffset */ local 1442 int nLimit, nOffset; local [all...] |
H A D | sqliteInt.h | 847 ** nLimit is set to -1 if there is no LIMIT clause. nOffset is set to 0. 848 ** If there is a LIMIT clause, the parser sets nLimit to the value of the 850 ** offset). But later on, nLimit and nOffset become the memory locations 863 int nLimit, nOffset; /* LIMIT and OFFSET values. -1 means not used */ member in struct:Select
|
Completed in 67 milliseconds