Lines Matching defs:tab2
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.
131469 return 0; /* tab1 and tab2 may not be the same table */
131475 return 0; /* tab2 may not be a view or virtual 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 */
141258 int tab1, tab2;
141270 tab2 = pParse->nTab++;
141288 /* Code the current SELECT into temporary table "tab2"
141290 addr = sqlite3VdbeAddOp2(v, OP_OpenEphemeral, tab2, 0);
141296 intersectdest.iSDParm = tab2;
141321 sqlite3VdbeAddOp4Int(v, OP_NotFound, tab2, iCont, r1, 0);
141329 sqlite3VdbeAddOp2(v, OP_Close, tab2, 0);
142687 ** SELECT abs(z*2) FROM tab2
142696 ** SELECT abs(z*2)+1 FROM tab2 WHERE abs(z*2)+1!=5