Lines Matching defs:tab1
103578 ** INSERT INTO tab1 SELECT * FROM tab2;
103580 ** The xfer optimization transfers raw records from tab2 over to tab1.
103584 ** The xfer optimization is only attempted if tab1 and tab2 are compatible.
103633 return 0; /* tab1 must not have triggers */
103637 return 0; /* tab1 must not be a virtual table */
103692 return 0; /* tab1 and tab2 may not be the same table */
103706 return 0; /* Number of columns must be the same in tab1 and tab2 */
103721 return 0; /* tab2 must be NOT NULL if tab1 is */
103765 ** table (tab1) is initially empty.
108953 ** (tab1.col1 = tab2.col2)
108955 ** where tab1 is the iSrc'th table in SrcList pSrc and tab2 is the
108956 ** (iSrc+1)'th. Column col1 is column iColLeft of tab1, and col2 is
111046 int tab1, tab2;
111057 tab1 = pParse->nTab++;
111061 addr = sqlite3VdbeAddOp2(v, OP_OpenEphemeral, tab1, 0);
111067 /* Code the SELECTs to our left into temporary table "tab1".
111069 sqlite3SelectDestInit(&intersectdest, SRT_Union, tab1);
111109 sqlite3VdbeAddOp2(v, OP_Rewind, tab1, iBreak); VdbeCoverage(v);
111111 iStart = sqlite3VdbeAddOp2(v, OP_RowKey, tab1, r1);
111114 selectInnerLoop(pParse, p, p->pEList, tab1,
111117 sqlite3VdbeAddOp2(v, OP_Next, tab1, iStart); VdbeCoverage(v);
111120 sqlite3VdbeAddOp2(v, OP_Close, tab1, 0);