Lines Matching defs:tab1
134905 ** INSERT INTO tab1 SELECT * FROM tab2;
134907 ** The xfer optimization transfers raw records from tab2 over to tab1.
134911 ** The xfer optimization is only attempted if tab1 and tab2 are compatible.
134959 return 0; /* tab1 must not be a virtual table */
135014 return 0; /* tab1 and tab2 may not be the same table */
135023 return 0; /* Number of columns must be the same in tab1 and tab2 */
135084 return 0; /* tab2 must be NOT NULL if tab1 is */
135144 ** table (tab1) is initially empty.
144856 int tab1, tab2;
144867 tab1 = pParse->nTab++;
144871 addr = sqlite3VdbeAddOp2(v, OP_OpenEphemeral, tab1, 0);
144877 /* Code the SELECTs to our left into temporary table "tab1".
144879 sqlite3SelectDestInit(&intersectdest, SRT_Union, tab1);
144916 sqlite3VdbeAddOp2(v, OP_Rewind, tab1, iBreak); VdbeCoverage(v);
144918 iStart = sqlite3VdbeAddOp2(v, OP_RowData, tab1, r1);
144922 selectInnerLoop(pParse, p, tab1,
144925 sqlite3VdbeAddOp2(v, OP_Next, tab1, iStart); VdbeCoverage(v);
144928 sqlite3VdbeAddOp2(v, OP_Close, tab1, 0);