Lines Matching refs:tab1
131360 ** INSERT INTO tab1 SELECT * FROM tab2;
131362 ** The xfer optimization transfers raw records from tab2 over to tab1.
131366 ** The xfer optimization is only attempted if tab1 and tab2 are compatible.
131414 return 0; /* tab1 must not be a virtual table */
131469 return 0; /* tab1 and tab2 may not be the same table */
131478 return 0; /* Number of columns must be the same in tab1 and tab2 */
131539 return 0; /* tab2 must be NOT NULL if tab1 is */
131599 ** table (tab1) is initially empty.
141258 int tab1, tab2;
141269 tab1 = pParse->nTab++;
141273 addr = sqlite3VdbeAddOp2(v, OP_OpenEphemeral, tab1, 0);
141279 /* Code the SELECTs to our left into temporary table "tab1".
141281 sqlite3SelectDestInit(&intersectdest, SRT_Union, tab1);
141318 sqlite3VdbeAddOp2(v, OP_Rewind, tab1, iBreak); VdbeCoverage(v);
141320 iStart = sqlite3VdbeAddOp2(v, OP_RowData, tab1, r1);
141324 selectInnerLoop(pParse, p, tab1,
141327 sqlite3VdbeAddOp2(v, OP_Next, tab1, iStart); VdbeCoverage(v);
141330 sqlite3VdbeAddOp2(v, OP_Close, tab1, 0);