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 */
50966 int wantToLock; /* Number of nested calls to sqlite3BtreeEnter() */
69272 ** ensure that statement-transactions are always nested, not overlapping.
70916 ** savepoints nested inside of the savepoint being operated on. */
82282 SrcList *pSrc; /* One particular FROM clause in a nested query */
86257 if( pParse->nested ) return;
86368 assert( pParse->nested<10 ); /* Nesting should only be of limited depth */
86375 pParse->nested++;
86382 pParse->nested--;
86871 if( !pParse->db->init.busy && pParse->nested==0
87042 if( !pParse->nested && strcmp(zName, "sqlite_sequence")==0 ){
90910 ** part of a nested parse and writable_schema pragma has not
90919 && pParse->nested==0 )
91179 if( pParse->nested==0 ) sqlite3VdbeCountChanges(v);
91359 int count = (pParse->nested==0); /* True to count changes */
91388 if( pParse->nested==0 && pParse->pTriggerTab==0 ){
91396 if( (db->flags&SQLITE_CountRows) && !pParse->nested && !pParse->pTriggerTab ){
95357 if( pParse->nested==0 ) sqlite3VdbeCountChanges(v);
95811 if( pParse->nested==0 && pParse->pTriggerTab==0 ){
95820 if( (db->flags&SQLITE_CountRows) && !pParse->nested && !pParse->pTriggerTab ){
96373 assert( pParse->nested==0 );
96384 if( pParse->nested ){
96397 if( !pParse->nested ){
105196 ** Argument pWith (which may be NULL) points to a linked list of nested
108501 if( pParse->nested==0 ) sqlite3VdbeCountChanges(v);
108851 if( pParse->nested==0 && pParse->pTriggerTab==0 ){
108860 if( (db->flags&SQLITE_CountRows) && !pParse->pTriggerTab && !pParse->nested ){
110518 ** This object contains information needed to implement a single nested
110528 ** nested loops as implemented). The order of WhereLevel objects determines
110529 ** the loop nested order, with WhereInfo.a[0] being the outer loop and
110552 } *aInLoop; /* Information about each nested IN operator */
110876 u8 nLevel; /* Number of nested loop */
113524 WhereLevel *pLevel, /* Which nested loop of the FROM we are coding */
116793 ** The basic idea is to do a nested loop, one loop for each table in
116810 ** Note that the loops might not be nested in the order in which they
116813 ** the WHERE clause, it might result in additional nested loops for
116919 /* This function normally generates a nested loop for all tables in
117254 ** loop below generates code for a single nested loop of the VM
120181 /* When doing a nested parse, one can include terms in an expression
120184 if( pParse->nested==0 ){
121766 if( pParse->pVdbe && pParse->nErr>0 && pParse->nested==0 ){
121771 if( pParse->nested==0 ){
133320 int nNest; /* Number of nested brackets */