Lines Matching refs:nested
10470 int nVdbeExec; /* Number of nested calls to VdbeExec() */
10520 int nStatement; /* Number of nested statement-transactions */
11465 ** form is used for name resolution with nested FROM clauses.
11637 ** NameContexts can be nested. When resolving names, the inner-most
11914 u8 nested; /* Number of nested calls to the parser/code generator */
50946 int wantToLock; /* Number of nested calls to sqlite3BtreeEnter() */
69252 ** ensure that statement-transactions are always nested, not overlapping.
70896 ** savepoints nested inside of the savepoint being operated on. */
82262 SrcList *pSrc; /* One particular FROM clause in a nested query */
86237 if( pParse->nested ) return;
86348 assert( pParse->nested<10 ); /* Nesting should only be of limited depth */
86355 pParse->nested++;
86362 pParse->nested--;
86851 if( !pParse->db->init.busy && pParse->nested==0
87022 if( !pParse->nested && strcmp(zName, "sqlite_sequence")==0 ){
90890 ** part of a nested parse and writable_schema pragma has not
90899 && pParse->nested==0 )
91159 if( pParse->nested==0 ) sqlite3VdbeCountChanges(v);
91339 int count = (pParse->nested==0); /* True to count changes */
91368 if( pParse->nested==0 && pParse->pTriggerTab==0 ){
91376 if( (db->flags&SQLITE_CountRows) && !pParse->nested && !pParse->pTriggerTab ){
95337 if( pParse->nested==0 ) sqlite3VdbeCountChanges(v);
95791 if( pParse->nested==0 && pParse->pTriggerTab==0 ){
95800 if( (db->flags&SQLITE_CountRows) && !pParse->nested && !pParse->pTriggerTab ){
96353 assert( pParse->nested==0 );
96364 if( pParse->nested ){
96377 if( !pParse->nested ){
105176 ** Argument pWith (which may be NULL) points to a linked list of nested
108481 if( pParse->nested==0 ) sqlite3VdbeCountChanges(v);
108831 if( pParse->nested==0 && pParse->pTriggerTab==0 ){
108840 if( (db->flags&SQLITE_CountRows) && !pParse->pTriggerTab && !pParse->nested ){
110498 ** This object contains information needed to implement a single nested
110508 ** nested loops as implemented). The order of WhereLevel objects determines
110509 ** the loop nested order, with WhereInfo.a[0] being the outer loop and
110532 } *aInLoop; /* Information about each nested IN operator */
110856 u8 nLevel; /* Number of nested loop */
113504 WhereLevel *pLevel, /* Which nested loop of the FROM we are coding */
116773 ** The basic idea is to do a nested loop, one loop for each table in
116790 ** Note that the loops might not be nested in the order in which they
116793 ** the WHERE clause, it might result in additional nested loops for
116899 /* This function normally generates a nested loop for all tables in
117234 ** loop below generates code for a single nested loop of the VM
120161 /* When doing a nested parse, one can include terms in an expression
120164 if( pParse->nested==0 ){
121746 if( pParse->pVdbe && pParse->nErr>0 && pParse->nested==0 ){
121751 if( pParse->nested==0 ){
133288 int nNest; /* Number of nested brackets */