xref: /sqlite-3.40.0/src/insert.c (revision a407eccb)
1cce7d176Sdrh /*
2b19a2bc6Sdrh ** 2001 September 15
3cce7d176Sdrh **
4b19a2bc6Sdrh ** The author disclaims copyright to this source code.  In place of
5b19a2bc6Sdrh ** a legal notice, here is a blessing:
6cce7d176Sdrh **
7b19a2bc6Sdrh **    May you do good and not evil.
8b19a2bc6Sdrh **    May you find forgiveness for yourself and forgive others.
9b19a2bc6Sdrh **    May you share freely, never taking more than you give.
10cce7d176Sdrh **
11cce7d176Sdrh *************************************************************************
12cce7d176Sdrh ** This file contains C code routines that are called by the parser
13b19a2bc6Sdrh ** to handle INSERT statements in SQLite.
14cce7d176Sdrh */
15cce7d176Sdrh #include "sqliteInt.h"
16cce7d176Sdrh 
17cce7d176Sdrh /*
1826198bb4Sdrh ** Generate code that will
19dd9930efSdrh **
2026198bb4Sdrh **   (1) acquire a lock for table pTab then
2126198bb4Sdrh **   (2) open pTab as cursor iCur.
2226198bb4Sdrh **
2326198bb4Sdrh ** If pTab is a WITHOUT ROWID table, then it is the PRIMARY KEY index
2426198bb4Sdrh ** for that table that is actually opened.
25bbb5e4e0Sdrh */
26bbb5e4e0Sdrh void sqlite3OpenTable(
272ec2fb22Sdrh   Parse *pParse,  /* Generate code into this VDBE */
28bbb5e4e0Sdrh   int iCur,       /* The cursor number of the table */
29bbb5e4e0Sdrh   int iDb,        /* The database index in sqlite3.aDb[] */
30bbb5e4e0Sdrh   Table *pTab,    /* The table to be opened */
31bbb5e4e0Sdrh   int opcode      /* OP_OpenRead or OP_OpenWrite */
32bbb5e4e0Sdrh ){
33bbb5e4e0Sdrh   Vdbe *v;
345f53aac2Sdrh   assert( !IsVirtual(pTab) );
352ec2fb22Sdrh   v = sqlite3GetVdbe(pParse);
36bbb5e4e0Sdrh   assert( opcode==OP_OpenWrite || opcode==OP_OpenRead );
372ec2fb22Sdrh   sqlite3TableLock(pParse, iDb, pTab->tnum,
382ec2fb22Sdrh                    (opcode==OP_OpenWrite)?1:0, pTab->zName);
39ec95c441Sdrh   if( HasRowid(pTab) ){
40261c02d9Sdrh     sqlite3VdbeAddOp4Int(v, opcode, iCur, pTab->tnum, iDb, pTab->nCol);
41bbb5e4e0Sdrh     VdbeComment((v, "%s", pTab->zName));
4226198bb4Sdrh   }else{
43dd9930efSdrh     Index *pPk = sqlite3PrimaryKeyIndex(pTab);
44dd9930efSdrh     assert( pPk!=0 );
45afe028a8Sdrh     assert( pPk->tnum==pTab->tnum );
462ec2fb22Sdrh     sqlite3VdbeAddOp3(v, opcode, iCur, pPk->tnum, iDb);
472ec2fb22Sdrh     sqlite3VdbeSetP4KeyInfo(pParse, pPk);
48bbb5e4e0Sdrh     VdbeComment((v, "%s", pTab->zName));
49bbb5e4e0Sdrh   }
50bbb5e4e0Sdrh }
51bbb5e4e0Sdrh 
52bbb5e4e0Sdrh /*
5369f8bb9cSdan ** Return a pointer to the column affinity string associated with index
5469f8bb9cSdan ** pIdx. A column affinity string has one character for each column in
5569f8bb9cSdan ** the table, according to the affinity of the column:
563d1bfeaaSdanielk1977 **
573d1bfeaaSdanielk1977 **  Character      Column affinity
583d1bfeaaSdanielk1977 **  ------------------------------
5905883a34Sdrh **  'A'            BLOB
604583c37cSdrh **  'B'            TEXT
614583c37cSdrh **  'C'            NUMERIC
624583c37cSdrh **  'D'            INTEGER
634583c37cSdrh **  'F'            REAL
642d401ab8Sdrh **
654583c37cSdrh ** An extra 'D' is appended to the end of the string to cover the
662d401ab8Sdrh ** rowid that appears as the last column in every index.
6769f8bb9cSdan **
6869f8bb9cSdan ** Memory for the buffer containing the column index affinity string
6969f8bb9cSdan ** is managed along with the rest of the Index structure. It will be
7069f8bb9cSdan ** released when sqlite3DeleteIndex() is called.
713d1bfeaaSdanielk1977 */
72e9107698Sdrh const char *sqlite3IndexAffinityStr(sqlite3 *db, Index *pIdx){
73a37cdde0Sdanielk1977   if( !pIdx->zColAff ){
74e014a838Sdanielk1977     /* The first time a column affinity string for a particular index is
75a37cdde0Sdanielk1977     ** required, it is allocated and populated here. It is then stored as
76e014a838Sdanielk1977     ** a member of the Index structure for subsequent use.
77a37cdde0Sdanielk1977     **
78a37cdde0Sdanielk1977     ** The column affinity string will eventually be deleted by
79e014a838Sdanielk1977     ** sqliteDeleteIndex() when the Index structure itself is cleaned
80a37cdde0Sdanielk1977     ** up.
81a37cdde0Sdanielk1977     */
82a37cdde0Sdanielk1977     int n;
83a37cdde0Sdanielk1977     Table *pTab = pIdx->pTable;
84ad124329Sdrh     pIdx->zColAff = (char *)sqlite3DbMallocRaw(0, pIdx->nColumn+1);
85a37cdde0Sdanielk1977     if( !pIdx->zColAff ){
864a642b60Sdrh       sqlite3OomFault(db);
8769f8bb9cSdan       return 0;
88a37cdde0Sdanielk1977     }
89a37cdde0Sdanielk1977     for(n=0; n<pIdx->nColumn; n++){
90ad124329Sdrh       i16 x = pIdx->aiColumn[n];
916860e6faSdrh       char aff;
9281506b88Sdrh       if( x>=0 ){
9381506b88Sdrh         aff = pTab->aCol[x].affinity;
9481506b88Sdrh       }else if( x==XN_ROWID ){
9581506b88Sdrh         aff = SQLITE_AFF_INTEGER;
9681506b88Sdrh       }else{
974b92f98cSdrh         assert( x==XN_EXPR );
981f9ca2c8Sdrh         assert( pIdx->aColExpr!=0 );
996860e6faSdrh         aff = sqlite3ExprAffinity(pIdx->aColExpr->a[n].pExpr);
10081506b88Sdrh       }
10196fb16eeSdrh       if( aff<SQLITE_AFF_BLOB ) aff = SQLITE_AFF_BLOB;
1027314495fSdrh       if( aff>SQLITE_AFF_NUMERIC) aff = SQLITE_AFF_NUMERIC;
1036860e6faSdrh       pIdx->zColAff[n] = aff;
1041f9ca2c8Sdrh     }
1052d401ab8Sdrh     pIdx->zColAff[n] = 0;
106a37cdde0Sdanielk1977   }
1073d1bfeaaSdanielk1977 
10869f8bb9cSdan   return pIdx->zColAff;
109a37cdde0Sdanielk1977 }
110a37cdde0Sdanielk1977 
111a37cdde0Sdanielk1977 /*
11257bf4a8eSdrh ** Compute the affinity string for table pTab, if it has not already been
11305883a34Sdrh ** computed.  As an optimization, omit trailing SQLITE_AFF_BLOB affinities.
11457bf4a8eSdrh **
11505883a34Sdrh ** If the affinity exists (if it is no entirely SQLITE_AFF_BLOB values) and
11657bf4a8eSdrh ** if iReg>0 then code an OP_Affinity opcode that will set the affinities
11757bf4a8eSdrh ** for register iReg and following.  Or if affinities exists and iReg==0,
11857bf4a8eSdrh ** then just set the P4 operand of the previous opcode (which should  be
11957bf4a8eSdrh ** an OP_MakeRecord) to the affinity string.
12057bf4a8eSdrh **
121b6e8fd10Sdrh ** A column affinity string has one character per column:
122a37cdde0Sdanielk1977 **
123a37cdde0Sdanielk1977 **  Character      Column affinity
124a37cdde0Sdanielk1977 **  ------------------------------
12505883a34Sdrh **  'A'            BLOB
1264583c37cSdrh **  'B'            TEXT
1274583c37cSdrh **  'C'            NUMERIC
1284583c37cSdrh **  'D'            INTEGER
1294583c37cSdrh **  'E'            REAL
130a37cdde0Sdanielk1977 */
13157bf4a8eSdrh void sqlite3TableAffinity(Vdbe *v, Table *pTab, int iReg){
1323d1bfeaaSdanielk1977   int i;
13357bf4a8eSdrh   char *zColAff = pTab->zColAff;
13457bf4a8eSdrh   if( zColAff==0 ){
135abb6fcabSdrh     sqlite3 *db = sqlite3VdbeDb(v);
136b975598eSdrh     zColAff = (char *)sqlite3DbMallocRaw(0, pTab->nCol+1);
1373d1bfeaaSdanielk1977     if( !zColAff ){
1384a642b60Sdrh       sqlite3OomFault(db);
139a37cdde0Sdanielk1977       return;
1403d1bfeaaSdanielk1977     }
1413d1bfeaaSdanielk1977 
1423d1bfeaaSdanielk1977     for(i=0; i<pTab->nCol; i++){
14396fb16eeSdrh       assert( pTab->aCol[i].affinity!=0 );
144a37cdde0Sdanielk1977       zColAff[i] = pTab->aCol[i].affinity;
1453d1bfeaaSdanielk1977     }
14657bf4a8eSdrh     do{
14757bf4a8eSdrh       zColAff[i--] = 0;
14896fb16eeSdrh     }while( i>=0 && zColAff[i]<=SQLITE_AFF_BLOB );
1493d1bfeaaSdanielk1977     pTab->zColAff = zColAff;
1503d1bfeaaSdanielk1977   }
1517301e774Sdrh   assert( zColAff!=0 );
1527301e774Sdrh   i = sqlite3Strlen30NN(zColAff);
15357bf4a8eSdrh   if( i ){
15457bf4a8eSdrh     if( iReg ){
15557bf4a8eSdrh       sqlite3VdbeAddOp4(v, OP_Affinity, iReg, i, 0, zColAff, i);
15657bf4a8eSdrh     }else{
15757bf4a8eSdrh       sqlite3VdbeChangeP4(v, -1, zColAff, i);
15857bf4a8eSdrh     }
15957bf4a8eSdrh   }
1603d1bfeaaSdanielk1977 }
1613d1bfeaaSdanielk1977 
1624d88778bSdanielk1977 /*
16348d1178aSdrh ** Return non-zero if the table pTab in database iDb or any of its indices
164b6e8fd10Sdrh ** have been opened at any point in the VDBE program. This is used to see if
16548d1178aSdrh ** a statement of the form  "INSERT INTO <iDb, pTab> SELECT ..." can
166b6e8fd10Sdrh ** run without using a temporary table for the results of the SELECT.
1674d88778bSdanielk1977 */
16805a86c5cSdrh static int readsTable(Parse *p, int iDb, Table *pTab){
169595a523aSdanielk1977   Vdbe *v = sqlite3GetVdbe(p);
1704d88778bSdanielk1977   int i;
17148d1178aSdrh   int iEnd = sqlite3VdbeCurrentAddr(v);
172595a523aSdanielk1977 #ifndef SQLITE_OMIT_VIRTUALTABLE
173595a523aSdanielk1977   VTable *pVTab = IsVirtual(pTab) ? sqlite3GetVTable(p->db, pTab) : 0;
174595a523aSdanielk1977 #endif
175595a523aSdanielk1977 
17605a86c5cSdrh   for(i=1; i<iEnd; i++){
17748d1178aSdrh     VdbeOp *pOp = sqlite3VdbeGetOp(v, i);
178ef0bea92Sdrh     assert( pOp!=0 );
179207872a4Sdanielk1977     if( pOp->opcode==OP_OpenRead && pOp->p3==iDb ){
18048d1178aSdrh       Index *pIndex;
181207872a4Sdanielk1977       int tnum = pOp->p2;
18248d1178aSdrh       if( tnum==pTab->tnum ){
18348d1178aSdrh         return 1;
18448d1178aSdrh       }
18548d1178aSdrh       for(pIndex=pTab->pIndex; pIndex; pIndex=pIndex->pNext){
18648d1178aSdrh         if( tnum==pIndex->tnum ){
18748d1178aSdrh           return 1;
18848d1178aSdrh         }
18948d1178aSdrh       }
19048d1178aSdrh     }
191543165efSdrh #ifndef SQLITE_OMIT_VIRTUALTABLE
192595a523aSdanielk1977     if( pOp->opcode==OP_VOpen && pOp->p4.pVtab==pVTab ){
1932dca4ac1Sdanielk1977       assert( pOp->p4.pVtab!=0 );
19466a5167bSdrh       assert( pOp->p4type==P4_VTAB );
19548d1178aSdrh       return 1;
1964d88778bSdanielk1977     }
197543165efSdrh #endif
1984d88778bSdanielk1977   }
1994d88778bSdanielk1977   return 0;
2004d88778bSdanielk1977 }
2013d1bfeaaSdanielk1977 
2029d9cf229Sdrh #ifndef SQLITE_OMIT_AUTOINCREMENT
2039d9cf229Sdrh /*
2040b9f50d8Sdrh ** Locate or create an AutoincInfo structure associated with table pTab
2050b9f50d8Sdrh ** which is in database iDb.  Return the register number for the register
2069ef5e770Sdrh ** that holds the maximum rowid.  Return zero if pTab is not an AUTOINCREMENT
2079ef5e770Sdrh ** table.  (Also return zero when doing a VACUUM since we do not want to
2089ef5e770Sdrh ** update the AUTOINCREMENT counters during a VACUUM.)
2099d9cf229Sdrh **
2100b9f50d8Sdrh ** There is at most one AutoincInfo structure per table even if the
2110b9f50d8Sdrh ** same table is autoincremented multiple times due to inserts within
2120b9f50d8Sdrh ** triggers.  A new AutoincInfo structure is created if this is the
2130b9f50d8Sdrh ** first use of table pTab.  On 2nd and subsequent uses, the original
2140b9f50d8Sdrh ** AutoincInfo structure is used.
2159d9cf229Sdrh **
216c8abbc11Sdrh ** Four consecutive registers are allocated:
2170b9f50d8Sdrh **
218c8abbc11Sdrh **   (1)  The name of the pTab table.
219c8abbc11Sdrh **   (2)  The maximum ROWID of pTab.
220c8abbc11Sdrh **   (3)  The rowid in sqlite_sequence of pTab
221c8abbc11Sdrh **   (4)  The original value of the max ROWID in pTab, or NULL if none
2220b9f50d8Sdrh **
2230b9f50d8Sdrh ** The 2nd register is the one that is returned.  That is all the
2240b9f50d8Sdrh ** insert routine needs to know about.
2259d9cf229Sdrh */
2269d9cf229Sdrh static int autoIncBegin(
2279d9cf229Sdrh   Parse *pParse,      /* Parsing context */
2289d9cf229Sdrh   int iDb,            /* Index of the database holding pTab */
2299d9cf229Sdrh   Table *pTab         /* The table we are writing to */
2309d9cf229Sdrh ){
2316a288a33Sdrh   int memId = 0;      /* Register holding maximum rowid */
232186ebd41Sdrh   assert( pParse->db->aDb[iDb].pSchema!=0 );
2339ef5e770Sdrh   if( (pTab->tabFlags & TF_Autoincrement)!=0
2348257aa8dSdrh    && (pParse->db->mDbFlags & DBFLAG_Vacuum)==0
2359ef5e770Sdrh   ){
23665a7cd16Sdan     Parse *pToplevel = sqlite3ParseToplevel(pParse);
2370b9f50d8Sdrh     AutoincInfo *pInfo;
238186ebd41Sdrh     Table *pSeqTab = pParse->db->aDb[iDb].pSchema->pSeqTab;
239186ebd41Sdrh 
240186ebd41Sdrh     /* Verify that the sqlite_sequence table exists and is an ordinary
241186ebd41Sdrh     ** rowid table with exactly two columns.
242186ebd41Sdrh     ** Ticket d8dc2b3a58cd5dc2918a1d4acb 2018-05-23 */
243186ebd41Sdrh     if( pSeqTab==0
244186ebd41Sdrh      || !HasRowid(pSeqTab)
245186ebd41Sdrh      || IsVirtual(pSeqTab)
246186ebd41Sdrh      || pSeqTab->nCol!=2
247186ebd41Sdrh     ){
248186ebd41Sdrh       pParse->nErr++;
249186ebd41Sdrh       pParse->rc = SQLITE_CORRUPT_SEQUENCE;
250186ebd41Sdrh       return 0;
251186ebd41Sdrh     }
2520b9f50d8Sdrh 
25365a7cd16Sdan     pInfo = pToplevel->pAinc;
2540b9f50d8Sdrh     while( pInfo && pInfo->pTab!=pTab ){ pInfo = pInfo->pNext; }
2550b9f50d8Sdrh     if( pInfo==0 ){
256575fad65Sdrh       pInfo = sqlite3DbMallocRawNN(pParse->db, sizeof(*pInfo));
2570b9f50d8Sdrh       if( pInfo==0 ) return 0;
25865a7cd16Sdan       pInfo->pNext = pToplevel->pAinc;
25965a7cd16Sdan       pToplevel->pAinc = pInfo;
2600b9f50d8Sdrh       pInfo->pTab = pTab;
2610b9f50d8Sdrh       pInfo->iDb = iDb;
26265a7cd16Sdan       pToplevel->nMem++;                  /* Register to hold name of table */
26365a7cd16Sdan       pInfo->regCtr = ++pToplevel->nMem;  /* Max rowid register */
264c8abbc11Sdrh       pToplevel->nMem +=2;       /* Rowid in sqlite_sequence + orig max val */
2650b9f50d8Sdrh     }
2660b9f50d8Sdrh     memId = pInfo->regCtr;
2679d9cf229Sdrh   }
2689d9cf229Sdrh   return memId;
2699d9cf229Sdrh }
2709d9cf229Sdrh 
2719d9cf229Sdrh /*
2720b9f50d8Sdrh ** This routine generates code that will initialize all of the
2730b9f50d8Sdrh ** register used by the autoincrement tracker.
2740b9f50d8Sdrh */
2750b9f50d8Sdrh void sqlite3AutoincrementBegin(Parse *pParse){
2760b9f50d8Sdrh   AutoincInfo *p;            /* Information about an AUTOINCREMENT */
2770b9f50d8Sdrh   sqlite3 *db = pParse->db;  /* The database connection */
2780b9f50d8Sdrh   Db *pDb;                   /* Database only autoinc table */
2790b9f50d8Sdrh   int memId;                 /* Register holding max rowid */
2800b9f50d8Sdrh   Vdbe *v = pParse->pVdbe;   /* VDBE under construction */
2810b9f50d8Sdrh 
282345ba7dbSdrh   /* This routine is never called during trigger-generation.  It is
283345ba7dbSdrh   ** only called from the top-level */
284345ba7dbSdrh   assert( pParse->pTriggerTab==0 );
285c149f18fSdrh   assert( sqlite3IsToplevel(pParse) );
28676d462eeSdan 
2870b9f50d8Sdrh   assert( v );   /* We failed long ago if this is not so */
2880b9f50d8Sdrh   for(p = pParse->pAinc; p; p = p->pNext){
2891b32554bSdrh     static const int iLn = VDBE_OFFSET_LINENO(2);
2901b32554bSdrh     static const VdbeOpList autoInc[] = {
2911b32554bSdrh       /* 0  */ {OP_Null,    0,  0, 0},
292c8abbc11Sdrh       /* 1  */ {OP_Rewind,  0, 10, 0},
2931b32554bSdrh       /* 2  */ {OP_Column,  0,  0, 0},
294c8abbc11Sdrh       /* 3  */ {OP_Ne,      0,  9, 0},
2951b32554bSdrh       /* 4  */ {OP_Rowid,   0,  0, 0},
2961b32554bSdrh       /* 5  */ {OP_Column,  0,  1, 0},
297c8abbc11Sdrh       /* 6  */ {OP_AddImm,  0,  0, 0},
298c8abbc11Sdrh       /* 7  */ {OP_Copy,    0,  0, 0},
299c8abbc11Sdrh       /* 8  */ {OP_Goto,    0, 11, 0},
300c8abbc11Sdrh       /* 9  */ {OP_Next,    0,  2, 0},
301c8abbc11Sdrh       /* 10 */ {OP_Integer, 0,  0, 0},
302c8abbc11Sdrh       /* 11 */ {OP_Close,   0,  0, 0}
3031b32554bSdrh     };
3041b32554bSdrh     VdbeOp *aOp;
3050b9f50d8Sdrh     pDb = &db->aDb[p->iDb];
3060b9f50d8Sdrh     memId = p->regCtr;
3072120608eSdrh     assert( sqlite3SchemaMutexHeld(db, 0, pDb->pSchema) );
3080b9f50d8Sdrh     sqlite3OpenTable(pParse, 0, p->iDb, pDb->pSchema->pSeqTab, OP_OpenRead);
309076e85f5Sdrh     sqlite3VdbeLoadString(v, memId-1, p->pTab->zName);
3101b32554bSdrh     aOp = sqlite3VdbeAddOpList(v, ArraySize(autoInc), autoInc, iLn);
3111b32554bSdrh     if( aOp==0 ) break;
3121b32554bSdrh     aOp[0].p2 = memId;
313c8abbc11Sdrh     aOp[0].p3 = memId+2;
3141b32554bSdrh     aOp[2].p3 = memId;
3151b32554bSdrh     aOp[3].p1 = memId-1;
3161b32554bSdrh     aOp[3].p3 = memId;
3171b32554bSdrh     aOp[3].p5 = SQLITE_JUMPIFNULL;
3181b32554bSdrh     aOp[4].p2 = memId+1;
3191b32554bSdrh     aOp[5].p3 = memId;
320c8abbc11Sdrh     aOp[6].p1 = memId;
321c8abbc11Sdrh     aOp[7].p2 = memId+2;
322c8abbc11Sdrh     aOp[7].p1 = memId;
323c8abbc11Sdrh     aOp[10].p2 = memId;
32404ab586bSdrh     if( pParse->nTab==0 ) pParse->nTab = 1;
3250b9f50d8Sdrh   }
3260b9f50d8Sdrh }
3270b9f50d8Sdrh 
3280b9f50d8Sdrh /*
3299d9cf229Sdrh ** Update the maximum rowid for an autoincrement calculation.
3309d9cf229Sdrh **
3311b32554bSdrh ** This routine should be called when the regRowid register holds a
3329d9cf229Sdrh ** new rowid that is about to be inserted.  If that new rowid is
3339d9cf229Sdrh ** larger than the maximum rowid in the memId memory cell, then the
3341b32554bSdrh ** memory cell is updated.
3359d9cf229Sdrh */
3366a288a33Sdrh static void autoIncStep(Parse *pParse, int memId, int regRowid){
3379d9cf229Sdrh   if( memId>0 ){
3386a288a33Sdrh     sqlite3VdbeAddOp2(pParse->pVdbe, OP_MemMax, memId, regRowid);
3399d9cf229Sdrh   }
3409d9cf229Sdrh }
3419d9cf229Sdrh 
3429d9cf229Sdrh /*
3430b9f50d8Sdrh ** This routine generates the code needed to write autoincrement
3440b9f50d8Sdrh ** maximum rowid values back into the sqlite_sequence register.
3450b9f50d8Sdrh ** Every statement that might do an INSERT into an autoincrement
3460b9f50d8Sdrh ** table (either directly or through triggers) needs to call this
3470b9f50d8Sdrh ** routine just before the "exit" code.
3489d9cf229Sdrh */
3491b32554bSdrh static SQLITE_NOINLINE void autoIncrementEnd(Parse *pParse){
3500b9f50d8Sdrh   AutoincInfo *p;
3519d9cf229Sdrh   Vdbe *v = pParse->pVdbe;
3520b9f50d8Sdrh   sqlite3 *db = pParse->db;
3536a288a33Sdrh 
3549d9cf229Sdrh   assert( v );
3550b9f50d8Sdrh   for(p = pParse->pAinc; p; p = p->pNext){
3561b32554bSdrh     static const int iLn = VDBE_OFFSET_LINENO(2);
3571b32554bSdrh     static const VdbeOpList autoIncEnd[] = {
3581b32554bSdrh       /* 0 */ {OP_NotNull,     0, 2, 0},
3591b32554bSdrh       /* 1 */ {OP_NewRowid,    0, 0, 0},
3601b32554bSdrh       /* 2 */ {OP_MakeRecord,  0, 2, 0},
3611b32554bSdrh       /* 3 */ {OP_Insert,      0, 0, 0},
3621b32554bSdrh       /* 4 */ {OP_Close,       0, 0, 0}
3631b32554bSdrh     };
3641b32554bSdrh     VdbeOp *aOp;
3650b9f50d8Sdrh     Db *pDb = &db->aDb[p->iDb];
3660b9f50d8Sdrh     int iRec;
3670b9f50d8Sdrh     int memId = p->regCtr;
3680b9f50d8Sdrh 
3690b9f50d8Sdrh     iRec = sqlite3GetTempReg(pParse);
3702120608eSdrh     assert( sqlite3SchemaMutexHeld(db, 0, pDb->pSchema) );
371c8abbc11Sdrh     sqlite3VdbeAddOp3(v, OP_Le, memId+2, sqlite3VdbeCurrentAddr(v)+7, memId);
372c8abbc11Sdrh     VdbeCoverage(v);
3730b9f50d8Sdrh     sqlite3OpenTable(pParse, 0, p->iDb, pDb->pSchema->pSeqTab, OP_OpenWrite);
3741b32554bSdrh     aOp = sqlite3VdbeAddOpList(v, ArraySize(autoIncEnd), autoIncEnd, iLn);
3751b32554bSdrh     if( aOp==0 ) break;
3761b32554bSdrh     aOp[0].p1 = memId+1;
3771b32554bSdrh     aOp[1].p2 = memId+1;
3781b32554bSdrh     aOp[2].p1 = memId-1;
3791b32554bSdrh     aOp[2].p3 = iRec;
3801b32554bSdrh     aOp[3].p2 = iRec;
3811b32554bSdrh     aOp[3].p3 = memId+1;
3821b32554bSdrh     aOp[3].p5 = OPFLAG_APPEND;
3830b9f50d8Sdrh     sqlite3ReleaseTempReg(pParse, iRec);
3849d9cf229Sdrh   }
3859d9cf229Sdrh }
3861b32554bSdrh void sqlite3AutoincrementEnd(Parse *pParse){
3871b32554bSdrh   if( pParse->pAinc ) autoIncrementEnd(pParse);
3881b32554bSdrh }
3899d9cf229Sdrh #else
3909d9cf229Sdrh /*
3919d9cf229Sdrh ** If SQLITE_OMIT_AUTOINCREMENT is defined, then the three routines
3929d9cf229Sdrh ** above are all no-ops
3939d9cf229Sdrh */
3949d9cf229Sdrh # define autoIncBegin(A,B,C) (0)
395287fb61cSdanielk1977 # define autoIncStep(A,B,C)
3969d9cf229Sdrh #endif /* SQLITE_OMIT_AUTOINCREMENT */
3979d9cf229Sdrh 
3989d9cf229Sdrh 
3999d9cf229Sdrh /* Forward declaration */
4009d9cf229Sdrh static int xferOptimization(
4019d9cf229Sdrh   Parse *pParse,        /* Parser context */
4029d9cf229Sdrh   Table *pDest,         /* The table we are inserting into */
4039d9cf229Sdrh   Select *pSelect,      /* A SELECT statement to use as the data source */
4049d9cf229Sdrh   int onError,          /* How to handle constraint errors */
4059d9cf229Sdrh   int iDbDest           /* The database of pDest */
4069d9cf229Sdrh );
4079d9cf229Sdrh 
4083d1bfeaaSdanielk1977 /*
409d82b5021Sdrh ** This routine is called to handle SQL of the following forms:
410cce7d176Sdrh **
411a21f78b9Sdrh **    insert into TABLE (IDLIST) values(EXPRLIST),(EXPRLIST),...
4121ccde15dSdrh **    insert into TABLE (IDLIST) select
413a21f78b9Sdrh **    insert into TABLE (IDLIST) default values
414cce7d176Sdrh **
4151ccde15dSdrh ** The IDLIST following the table name is always optional.  If omitted,
416a21f78b9Sdrh ** then a list of all (non-hidden) columns for the table is substituted.
417a21f78b9Sdrh ** The IDLIST appears in the pColumn parameter.  pColumn is NULL if IDLIST
418a21f78b9Sdrh ** is omitted.
4191ccde15dSdrh **
420a21f78b9Sdrh ** For the pSelect parameter holds the values to be inserted for the
421a21f78b9Sdrh ** first two forms shown above.  A VALUES clause is really just short-hand
422a21f78b9Sdrh ** for a SELECT statement that omits the FROM clause and everything else
423a21f78b9Sdrh ** that follows.  If the pSelect parameter is NULL, that means that the
424a21f78b9Sdrh ** DEFAULT VALUES form of the INSERT statement is intended.
425142e30dfSdrh **
4269d9cf229Sdrh ** The code generated follows one of four templates.  For a simple
427a21f78b9Sdrh ** insert with data coming from a single-row VALUES clause, the code executes
428e00ee6ebSdrh ** once straight down through.  Pseudo-code follows (we call this
429e00ee6ebSdrh ** the "1st template"):
430142e30dfSdrh **
431142e30dfSdrh **         open write cursor to <table> and its indices
432ec95c441Sdrh **         put VALUES clause expressions into registers
433142e30dfSdrh **         write the resulting record into <table>
434142e30dfSdrh **         cleanup
435142e30dfSdrh **
4369d9cf229Sdrh ** The three remaining templates assume the statement is of the form
437142e30dfSdrh **
438142e30dfSdrh **   INSERT INTO <table> SELECT ...
439142e30dfSdrh **
4409d9cf229Sdrh ** If the SELECT clause is of the restricted form "SELECT * FROM <table2>" -
4419d9cf229Sdrh ** in other words if the SELECT pulls all columns from a single table
4429d9cf229Sdrh ** and there is no WHERE or LIMIT or GROUP BY or ORDER BY clauses, and
4439d9cf229Sdrh ** if <table2> and <table1> are distinct tables but have identical
4449d9cf229Sdrh ** schemas, including all the same indices, then a special optimization
4459d9cf229Sdrh ** is invoked that copies raw records from <table2> over to <table1>.
4469d9cf229Sdrh ** See the xferOptimization() function for the implementation of this
447e00ee6ebSdrh ** template.  This is the 2nd template.
4489d9cf229Sdrh **
4499d9cf229Sdrh **         open a write cursor to <table>
4509d9cf229Sdrh **         open read cursor on <table2>
4519d9cf229Sdrh **         transfer all records in <table2> over to <table>
4529d9cf229Sdrh **         close cursors
4539d9cf229Sdrh **         foreach index on <table>
4549d9cf229Sdrh **           open a write cursor on the <table> index
4559d9cf229Sdrh **           open a read cursor on the corresponding <table2> index
4569d9cf229Sdrh **           transfer all records from the read to the write cursors
4579d9cf229Sdrh **           close cursors
4589d9cf229Sdrh **         end foreach
4599d9cf229Sdrh **
460e00ee6ebSdrh ** The 3rd template is for when the second template does not apply
4619d9cf229Sdrh ** and the SELECT clause does not read from <table> at any time.
4629d9cf229Sdrh ** The generated code follows this template:
463142e30dfSdrh **
464e00ee6ebSdrh **         X <- A
465142e30dfSdrh **         goto B
466142e30dfSdrh **      A: setup for the SELECT
4679d9cf229Sdrh **         loop over the rows in the SELECT
468e00ee6ebSdrh **           load values into registers R..R+n
469e00ee6ebSdrh **           yield X
470142e30dfSdrh **         end loop
471142e30dfSdrh **         cleanup after the SELECT
47281cf13ecSdrh **         end-coroutine X
473e00ee6ebSdrh **      B: open write cursor to <table> and its indices
47481cf13ecSdrh **      C: yield X, at EOF goto D
475e00ee6ebSdrh **         insert the select result into <table> from R..R+n
476e00ee6ebSdrh **         goto C
477142e30dfSdrh **      D: cleanup
478142e30dfSdrh **
479e00ee6ebSdrh ** The 4th template is used if the insert statement takes its
480142e30dfSdrh ** values from a SELECT but the data is being inserted into a table
481142e30dfSdrh ** that is also read as part of the SELECT.  In the third form,
48260ec914cSpeter.d.reid ** we have to use an intermediate table to store the results of
483142e30dfSdrh ** the select.  The template is like this:
484142e30dfSdrh **
485e00ee6ebSdrh **         X <- A
486142e30dfSdrh **         goto B
487142e30dfSdrh **      A: setup for the SELECT
488142e30dfSdrh **         loop over the tables in the SELECT
489e00ee6ebSdrh **           load value into register R..R+n
490e00ee6ebSdrh **           yield X
491142e30dfSdrh **         end loop
492142e30dfSdrh **         cleanup after the SELECT
49381cf13ecSdrh **         end co-routine R
494e00ee6ebSdrh **      B: open temp table
49581cf13ecSdrh **      L: yield X, at EOF goto M
496e00ee6ebSdrh **         insert row from R..R+n into temp table
497e00ee6ebSdrh **         goto L
498e00ee6ebSdrh **      M: open write cursor to <table> and its indices
499e00ee6ebSdrh **         rewind temp table
500e00ee6ebSdrh **      C: loop over rows of intermediate table
501142e30dfSdrh **           transfer values form intermediate table into <table>
502e00ee6ebSdrh **         end loop
503e00ee6ebSdrh **      D: cleanup
504cce7d176Sdrh */
5054adee20fSdanielk1977 void sqlite3Insert(
506cce7d176Sdrh   Parse *pParse,        /* Parser context */
507113088ecSdrh   SrcList *pTabList,    /* Name of table into which we are inserting */
5085974a30fSdrh   Select *pSelect,      /* A SELECT statement to use as the data source */
5099cfcf5d4Sdrh   IdList *pColumn,      /* Column names corresponding to IDLIST. */
5102c2e844aSdrh   int onError,          /* How to handle constraint errors */
51146d2e5c3Sdrh   Upsert *pUpsert       /* ON CONFLICT clauses for upsert, or NULL */
512cce7d176Sdrh ){
5136a288a33Sdrh   sqlite3 *db;          /* The main database structure */
5146a288a33Sdrh   Table *pTab;          /* The table to insert into.  aka TABLE */
51560ffc807Sdrh   int i, j;             /* Loop counters */
5165974a30fSdrh   Vdbe *v;              /* Generate code into this virtual machine */
5175974a30fSdrh   Index *pIdx;          /* For looping over indices of the table */
518967e8b73Sdrh   int nColumn;          /* Number of columns in the data */
5196a288a33Sdrh   int nHidden = 0;      /* Number of hidden columns if TABLE is virtual */
52026198bb4Sdrh   int iDataCur = 0;     /* VDBE cursor that is the main data repository */
52126198bb4Sdrh   int iIdxCur = 0;      /* First index cursor */
522d82b5021Sdrh   int ipkColumn = -1;   /* Column that is the INTEGER PRIMARY KEY */
5230ca3e24bSdrh   int endOfLoop;        /* Label for the end of the insertion loop */
524cfe9a69fSdanielk1977   int srcTab = 0;       /* Data comes from this temporary cursor if >=0 */
525e00ee6ebSdrh   int addrInsTop = 0;   /* Jump to label "D" */
526e00ee6ebSdrh   int addrCont = 0;     /* Top of insert loop. Label "C" in templates 3 and 4 */
5272eb95377Sdrh   SelectDest dest;      /* Destination for SELECT on rhs of INSERT */
5286a288a33Sdrh   int iDb;              /* Index of database holding TABLE */
52905a86c5cSdrh   u8 useTempTable = 0;  /* Store SELECT results in intermediate table */
53005a86c5cSdrh   u8 appendFlag = 0;    /* True if the insert is likely to be an append */
53105a86c5cSdrh   u8 withoutRowid;      /* 0 for normal table.  1 for WITHOUT ROWID table */
532a21f78b9Sdrh   u8 bIdListInOrder;    /* True if IDLIST is in table order */
53375593d96Sdrh   ExprList *pList = 0;  /* List of VALUES() to be inserted  */
534cce7d176Sdrh 
5356a288a33Sdrh   /* Register allocations */
5361bd10f8aSdrh   int regFromSelect = 0;/* Base register for data coming from SELECT */
5376a288a33Sdrh   int regAutoinc = 0;   /* Register holding the AUTOINCREMENT counter */
5386a288a33Sdrh   int regRowCount = 0;  /* Memory cell used for the row counter */
5396a288a33Sdrh   int regIns;           /* Block of regs holding rowid+data being inserted */
5406a288a33Sdrh   int regRowid;         /* registers holding insert rowid */
5416a288a33Sdrh   int regData;          /* register holding first column to insert */
542aa9b8963Sdrh   int *aRegIdx = 0;     /* One register allocated to each index */
5436a288a33Sdrh 
544798da52cSdrh #ifndef SQLITE_OMIT_TRIGGER
545798da52cSdrh   int isView;                 /* True if attempting to insert into a view */
5462f886d1dSdanielk1977   Trigger *pTrigger;          /* List of triggers on pTab, if required */
5472f886d1dSdanielk1977   int tmask;                  /* Mask of trigger times */
548798da52cSdrh #endif
549c3f9bad2Sdanielk1977 
55017435752Sdrh   db = pParse->db;
55117435752Sdrh   if( pParse->nErr || db->mallocFailed ){
5526f7adc8aSdrh     goto insert_cleanup;
5536f7adc8aSdrh   }
5544c883487Sdrh   dest.iSDParm = 0;  /* Suppress a harmless compiler warning */
555daffd0e5Sdrh 
55675593d96Sdrh   /* If the Select object is really just a simple VALUES() list with a
557a21f78b9Sdrh   ** single row (the common case) then keep that one row of values
558a21f78b9Sdrh   ** and discard the other (unused) parts of the pSelect object
55975593d96Sdrh   */
56075593d96Sdrh   if( pSelect && (pSelect->selFlags & SF_Values)!=0 && pSelect->pPrior==0 ){
56175593d96Sdrh     pList = pSelect->pEList;
56275593d96Sdrh     pSelect->pEList = 0;
56375593d96Sdrh     sqlite3SelectDelete(db, pSelect);
56475593d96Sdrh     pSelect = 0;
56575593d96Sdrh   }
56675593d96Sdrh 
5671ccde15dSdrh   /* Locate the table into which we will be inserting new information.
5681ccde15dSdrh   */
569113088ecSdrh   assert( pTabList->nSrc==1 );
5704adee20fSdanielk1977   pTab = sqlite3SrcListLookup(pParse, pTabList);
571c3f9bad2Sdanielk1977   if( pTab==0 ){
572c3f9bad2Sdanielk1977     goto insert_cleanup;
573c3f9bad2Sdanielk1977   }
574da184236Sdanielk1977   iDb = sqlite3SchemaToIndex(db, pTab->pSchema);
575da184236Sdanielk1977   assert( iDb<db->nDb );
576a0daa751Sdrh   if( sqlite3AuthCheck(pParse, SQLITE_INSERT, pTab->zName, 0,
577a0daa751Sdrh                        db->aDb[iDb].zDbSName) ){
5781962bda7Sdrh     goto insert_cleanup;
5791962bda7Sdrh   }
580ec95c441Sdrh   withoutRowid = !HasRowid(pTab);
581c3f9bad2Sdanielk1977 
582b7f9164eSdrh   /* Figure out if we have any triggers and if the table being
583b7f9164eSdrh   ** inserted into is a view
584b7f9164eSdrh   */
585b7f9164eSdrh #ifndef SQLITE_OMIT_TRIGGER
5862f886d1dSdanielk1977   pTrigger = sqlite3TriggersExist(pParse, pTab, TK_INSERT, 0, &tmask);
587b7f9164eSdrh   isView = pTab->pSelect!=0;
588b7f9164eSdrh #else
5892f886d1dSdanielk1977 # define pTrigger 0
5902f886d1dSdanielk1977 # define tmask 0
591b7f9164eSdrh # define isView 0
592b7f9164eSdrh #endif
593b7f9164eSdrh #ifdef SQLITE_OMIT_VIEW
594b7f9164eSdrh # undef isView
595b7f9164eSdrh # define isView 0
596b7f9164eSdrh #endif
5972f886d1dSdanielk1977   assert( (pTrigger && tmask) || (pTrigger==0 && tmask==0) );
598b7f9164eSdrh 
599f573c99bSdrh   /* If pTab is really a view, make sure it has been initialized.
600d82b5021Sdrh   ** ViewGetColumnNames() is a no-op if pTab is not a view.
601f573c99bSdrh   */
602b3d24bf8Sdanielk1977   if( sqlite3ViewGetColumnNames(pParse, pTab) ){
603f573c99bSdrh     goto insert_cleanup;
604f573c99bSdrh   }
605f573c99bSdrh 
606d82b5021Sdrh   /* Cannot insert into a read-only table.
607595a523aSdanielk1977   */
608595a523aSdanielk1977   if( sqlite3IsReadOnly(pParse, pTab, tmask) ){
609595a523aSdanielk1977     goto insert_cleanup;
610595a523aSdanielk1977   }
611595a523aSdanielk1977 
6121ccde15dSdrh   /* Allocate a VDBE
6131ccde15dSdrh   */
6144adee20fSdanielk1977   v = sqlite3GetVdbe(pParse);
6155974a30fSdrh   if( v==0 ) goto insert_cleanup;
6164794f735Sdrh   if( pParse->nested==0 ) sqlite3VdbeCountChanges(v);
6172f886d1dSdanielk1977   sqlite3BeginWriteOperation(pParse, pSelect || pTrigger, iDb);
6181ccde15dSdrh 
6199d9cf229Sdrh #ifndef SQLITE_OMIT_XFER_OPT
6209d9cf229Sdrh   /* If the statement is of the form
6219d9cf229Sdrh   **
6229d9cf229Sdrh   **       INSERT INTO <table1> SELECT * FROM <table2>;
6239d9cf229Sdrh   **
6249d9cf229Sdrh   ** Then special optimizations can be applied that make the transfer
6259d9cf229Sdrh   ** very fast and which reduce fragmentation of indices.
626e00ee6ebSdrh   **
627e00ee6ebSdrh   ** This is the 2nd template.
6289d9cf229Sdrh   */
6299d9cf229Sdrh   if( pColumn==0 && xferOptimization(pParse, pTab, pSelect, onError, iDb) ){
6302f886d1dSdanielk1977     assert( !pTrigger );
6319d9cf229Sdrh     assert( pList==0 );
6320b9f50d8Sdrh     goto insert_end;
6339d9cf229Sdrh   }
6349d9cf229Sdrh #endif /* SQLITE_OMIT_XFER_OPT */
6359d9cf229Sdrh 
6362958a4e6Sdrh   /* If this is an AUTOINCREMENT table, look up the sequence number in the
6376a288a33Sdrh   ** sqlite_sequence table and store it in memory cell regAutoinc.
6382958a4e6Sdrh   */
6396a288a33Sdrh   regAutoinc = autoIncBegin(pParse, iDb, pTab);
6402958a4e6Sdrh 
64105a86c5cSdrh   /* Allocate registers for holding the rowid of the new row,
64260ec914cSpeter.d.reid   ** the content of the new row, and the assembled row record.
6431ccde15dSdrh   */
64405a86c5cSdrh   regRowid = regIns = pParse->nMem+1;
64505a86c5cSdrh   pParse->nMem += pTab->nCol + 1;
646034ca14fSdanielk1977   if( IsVirtual(pTab) ){
64705a86c5cSdrh     regRowid++;
64805a86c5cSdrh     pParse->nMem++;
649034ca14fSdanielk1977   }
65005a86c5cSdrh   regData = regRowid+1;
6511ccde15dSdrh 
6521ccde15dSdrh   /* If the INSERT statement included an IDLIST term, then make sure
6531ccde15dSdrh   ** all elements of the IDLIST really are columns of the table and
6541ccde15dSdrh   ** remember the column indices.
655c8392586Sdrh   **
656c8392586Sdrh   ** If the table has an INTEGER PRIMARY KEY column and that column
657d82b5021Sdrh   ** is named in the IDLIST, then record in the ipkColumn variable
658d82b5021Sdrh   ** the index into IDLIST of the primary key column.  ipkColumn is
659c8392586Sdrh   ** the index of the primary key as it appears in IDLIST, not as
660d82b5021Sdrh   ** is appears in the original table.  (The index of the INTEGER
661d82b5021Sdrh   ** PRIMARY KEY in the original table is pTab->iPKey.)
6621ccde15dSdrh   */
663a21f78b9Sdrh   bIdListInOrder = (pTab->tabFlags & TF_OOOHidden)==0;
664967e8b73Sdrh   if( pColumn ){
665967e8b73Sdrh     for(i=0; i<pColumn->nId; i++){
666967e8b73Sdrh       pColumn->a[i].idx = -1;
667cce7d176Sdrh     }
668967e8b73Sdrh     for(i=0; i<pColumn->nId; i++){
669cce7d176Sdrh       for(j=0; j<pTab->nCol; j++){
6704adee20fSdanielk1977         if( sqlite3StrICmp(pColumn->a[i].zName, pTab->aCol[j].zName)==0 ){
671967e8b73Sdrh           pColumn->a[i].idx = j;
67205a86c5cSdrh           if( i!=j ) bIdListInOrder = 0;
6734a32431cSdrh           if( j==pTab->iPKey ){
674d82b5021Sdrh             ipkColumn = i;  assert( !withoutRowid );
6754a32431cSdrh           }
676cce7d176Sdrh           break;
677cce7d176Sdrh         }
678cce7d176Sdrh       }
679cce7d176Sdrh       if( j>=pTab->nCol ){
680ec95c441Sdrh         if( sqlite3IsRowid(pColumn->a[i].zName) && !withoutRowid ){
681d82b5021Sdrh           ipkColumn = i;
682e48ae715Sdrh           bIdListInOrder = 0;
683a0217ba7Sdrh         }else{
6844adee20fSdanielk1977           sqlite3ErrorMsg(pParse, "table %S has no column named %s",
685da93d238Sdrh               pTabList, 0, pColumn->a[i].zName);
6861db95106Sdan           pParse->checkSchema = 1;
687cce7d176Sdrh           goto insert_cleanup;
688cce7d176Sdrh         }
689cce7d176Sdrh       }
690cce7d176Sdrh     }
691a0217ba7Sdrh   }
6921ccde15dSdrh 
693cce7d176Sdrh   /* Figure out how many columns of data are supplied.  If the data
694cce7d176Sdrh   ** is coming from a SELECT statement, then generate a co-routine that
695cce7d176Sdrh   ** produces a single row of the SELECT on each invocation.  The
696cce7d176Sdrh   ** co-routine is the common header to the 3rd and 4th templates.
697cce7d176Sdrh   */
6985f085269Sdrh   if( pSelect ){
699a21f78b9Sdrh     /* Data is coming from a SELECT or from a multi-row VALUES clause.
700a21f78b9Sdrh     ** Generate a co-routine to run the SELECT. */
70105a86c5cSdrh     int regYield;       /* Register holding co-routine entry-point */
70205a86c5cSdrh     int addrTop;        /* Top of the co-routine */
70305a86c5cSdrh     int rc;             /* Result code */
704cce7d176Sdrh 
70505a86c5cSdrh     regYield = ++pParse->nMem;
70605a86c5cSdrh     addrTop = sqlite3VdbeCurrentAddr(v) + 1;
70705a86c5cSdrh     sqlite3VdbeAddOp3(v, OP_InitCoroutine, regYield, 0, addrTop);
70805a86c5cSdrh     sqlite3SelectDestInit(&dest, SRT_Coroutine, regYield);
70905a86c5cSdrh     dest.iSdst = bIdListInOrder ? regData : 0;
71005a86c5cSdrh     dest.nSdst = pTab->nCol;
71105a86c5cSdrh     rc = sqlite3Select(pParse, pSelect, &dest);
7122b596da8Sdrh     regFromSelect = dest.iSdst;
713992590beSdrh     if( rc || db->mallocFailed || pParse->nErr ) goto insert_cleanup;
7142fade2f7Sdrh     sqlite3VdbeEndCoroutine(v, regYield);
71505a86c5cSdrh     sqlite3VdbeJumpHere(v, addrTop - 1);                       /* label B: */
716cce7d176Sdrh     assert( pSelect->pEList );
717cce7d176Sdrh     nColumn = pSelect->pEList->nExpr;
718cce7d176Sdrh 
719cce7d176Sdrh     /* Set useTempTable to TRUE if the result of the SELECT statement
720cce7d176Sdrh     ** should be written into a temporary table (template 4).  Set to
721cce7d176Sdrh     ** FALSE if each output row of the SELECT can be written directly into
722cce7d176Sdrh     ** the destination table (template 3).
723cce7d176Sdrh     **
724cce7d176Sdrh     ** A temp table must be used if the table being updated is also one
725cce7d176Sdrh     ** of the tables being read by the SELECT statement.  Also use a
726cce7d176Sdrh     ** temp table in the case of row triggers.
727cce7d176Sdrh     */
72805a86c5cSdrh     if( pTrigger || readsTable(pParse, iDb, pTab) ){
729cce7d176Sdrh       useTempTable = 1;
730cce7d176Sdrh     }
731cce7d176Sdrh 
732cce7d176Sdrh     if( useTempTable ){
733cce7d176Sdrh       /* Invoke the coroutine to extract information from the SELECT
734cce7d176Sdrh       ** and add it to a transient table srcTab.  The code generated
735cce7d176Sdrh       ** here is from the 4th template:
736cce7d176Sdrh       **
737cce7d176Sdrh       **      B: open temp table
73881cf13ecSdrh       **      L: yield X, goto M at EOF
739cce7d176Sdrh       **         insert row from R..R+n into temp table
740cce7d176Sdrh       **         goto L
741cce7d176Sdrh       **      M: ...
742cce7d176Sdrh       */
743cce7d176Sdrh       int regRec;          /* Register to hold packed record */
744cce7d176Sdrh       int regTempRowid;    /* Register to hold temp table ROWID */
74506280ee5Sdrh       int addrL;           /* Label "L" */
746cce7d176Sdrh 
747cce7d176Sdrh       srcTab = pParse->nTab++;
748cce7d176Sdrh       regRec = sqlite3GetTempReg(pParse);
749cce7d176Sdrh       regTempRowid = sqlite3GetTempReg(pParse);
750cce7d176Sdrh       sqlite3VdbeAddOp2(v, OP_OpenEphemeral, srcTab, nColumn);
75106280ee5Sdrh       addrL = sqlite3VdbeAddOp1(v, OP_Yield, dest.iSDParm); VdbeCoverage(v);
752cce7d176Sdrh       sqlite3VdbeAddOp3(v, OP_MakeRecord, regFromSelect, nColumn, regRec);
753cce7d176Sdrh       sqlite3VdbeAddOp2(v, OP_NewRowid, srcTab, regTempRowid);
754cce7d176Sdrh       sqlite3VdbeAddOp3(v, OP_Insert, srcTab, regRec, regTempRowid);
755076e85f5Sdrh       sqlite3VdbeGoto(v, addrL);
75606280ee5Sdrh       sqlite3VdbeJumpHere(v, addrL);
757cce7d176Sdrh       sqlite3ReleaseTempReg(pParse, regRec);
758cce7d176Sdrh       sqlite3ReleaseTempReg(pParse, regTempRowid);
759cce7d176Sdrh     }
760cce7d176Sdrh   }else{
761a21f78b9Sdrh     /* This is the case if the data for the INSERT is coming from a
762a21f78b9Sdrh     ** single-row VALUES clause
763cce7d176Sdrh     */
764cce7d176Sdrh     NameContext sNC;
765cce7d176Sdrh     memset(&sNC, 0, sizeof(sNC));
766cce7d176Sdrh     sNC.pParse = pParse;
767cce7d176Sdrh     srcTab = -1;
768cce7d176Sdrh     assert( useTempTable==0 );
769fea870beSdrh     if( pList ){
770fea870beSdrh       nColumn = pList->nExpr;
771fea870beSdrh       if( sqlite3ResolveExprListNames(&sNC, pList) ){
772cce7d176Sdrh         goto insert_cleanup;
773cce7d176Sdrh       }
774fea870beSdrh     }else{
775fea870beSdrh       nColumn = 0;
776cce7d176Sdrh     }
777cce7d176Sdrh   }
778cce7d176Sdrh 
779aacc543eSdrh   /* If there is no IDLIST term but the table has an integer primary
780d82b5021Sdrh   ** key, the set the ipkColumn variable to the integer primary key
781d82b5021Sdrh   ** column index in the original table definition.
7824a32431cSdrh   */
783147d0cccSdrh   if( pColumn==0 && nColumn>0 ){
784d82b5021Sdrh     ipkColumn = pTab->iPKey;
7854a32431cSdrh   }
7864a32431cSdrh 
787cce7d176Sdrh   /* Make sure the number of columns in the source data matches the number
788cce7d176Sdrh   ** of columns to be inserted into the table.
789cce7d176Sdrh   */
790cce7d176Sdrh   for(i=0; i<pTab->nCol; i++){
791cce7d176Sdrh     nHidden += (IsHiddenColumn(&pTab->aCol[i]) ? 1 : 0);
792cce7d176Sdrh   }
793cce7d176Sdrh   if( pColumn==0 && nColumn && nColumn!=(pTab->nCol-nHidden) ){
794cce7d176Sdrh     sqlite3ErrorMsg(pParse,
795cce7d176Sdrh        "table %S has %d columns but %d values were supplied",
796cce7d176Sdrh        pTabList, 0, pTab->nCol-nHidden, nColumn);
797cce7d176Sdrh     goto insert_cleanup;
798cce7d176Sdrh   }
799cce7d176Sdrh   if( pColumn!=0 && nColumn!=pColumn->nId ){
800cce7d176Sdrh     sqlite3ErrorMsg(pParse, "%d values for %d columns", nColumn, pColumn->nId);
801cce7d176Sdrh     goto insert_cleanup;
802cce7d176Sdrh   }
803cce7d176Sdrh 
804c3f9bad2Sdanielk1977   /* Initialize the count of rows to be inserted
8051ccde15dSdrh   */
80679636913Sdrh   if( (db->flags & SQLITE_CountRows)!=0
80779636913Sdrh    && !pParse->nested
80879636913Sdrh    && !pParse->pTriggerTab
80979636913Sdrh   ){
8106a288a33Sdrh     regRowCount = ++pParse->nMem;
8116a288a33Sdrh     sqlite3VdbeAddOp2(v, OP_Integer, 0, regRowCount);
812c3f9bad2Sdanielk1977   }
813c3f9bad2Sdanielk1977 
814e448dc4aSdanielk1977   /* If this is not a view, open the table and and all indices */
815e448dc4aSdanielk1977   if( !isView ){
816aa9b8963Sdrh     int nIdx;
817fd261ec6Sdan     nIdx = sqlite3OpenTableAndIndices(pParse, pTab, OP_OpenWrite, 0, -1, 0,
81826198bb4Sdrh                                       &iDataCur, &iIdxCur);
819a7c3b93fSdrh     aRegIdx = sqlite3DbMallocRawNN(db, sizeof(int)*(nIdx+2));
820aa9b8963Sdrh     if( aRegIdx==0 ){
821aa9b8963Sdrh       goto insert_cleanup;
822aa9b8963Sdrh     }
8232c4dfc30Sdrh     for(i=0, pIdx=pTab->pIndex; i<nIdx; pIdx=pIdx->pNext, i++){
8242c4dfc30Sdrh       assert( pIdx );
825aa9b8963Sdrh       aRegIdx[i] = ++pParse->nMem;
8262c4dfc30Sdrh       pParse->nMem += pIdx->nColumn;
827aa9b8963Sdrh     }
828a7c3b93fSdrh     aRegIdx[i] = ++pParse->nMem;  /* Register to store the table record */
829feeb1394Sdrh   }
830788d55aaSdrh #ifndef SQLITE_OMIT_UPSERT
8310b30a116Sdrh   if( pUpsert ){
832b042d921Sdrh     if( IsVirtual(pTab) ){
833b042d921Sdrh       sqlite3ErrorMsg(pParse, "UPSERT not implemented for virtual table \"%s\"",
834b042d921Sdrh               pTab->zName);
835b042d921Sdrh       goto insert_cleanup;
836b042d921Sdrh     }
8379105fd51Sdan     if( sqlite3HasExplicitNulls(pParse, pUpsert->pUpsertTarget) ){
8389105fd51Sdan       goto insert_cleanup;
8399105fd51Sdan     }
840788d55aaSdrh     pTabList->a[0].iCursor = iDataCur;
8410b30a116Sdrh     pUpsert->pUpsertSrc = pTabList;
842eac9fabbSdrh     pUpsert->regData = regData;
8437fc3aba8Sdrh     pUpsert->iDataCur = iDataCur;
8447fc3aba8Sdrh     pUpsert->iIdxCur = iIdxCur;
8450b30a116Sdrh     if( pUpsert->pUpsertTarget ){
846e9c2e772Sdrh       sqlite3UpsertAnalyzeTarget(pParse, pTabList, pUpsert);
847788d55aaSdrh     }
8480b30a116Sdrh   }
849788d55aaSdrh #endif
850788d55aaSdrh 
851feeb1394Sdrh 
852e00ee6ebSdrh   /* This is the top of the main insertion loop */
853142e30dfSdrh   if( useTempTable ){
854e00ee6ebSdrh     /* This block codes the top of loop only.  The complete loop is the
855e00ee6ebSdrh     ** following pseudocode (template 4):
856e00ee6ebSdrh     **
85781cf13ecSdrh     **         rewind temp table, if empty goto D
858e00ee6ebSdrh     **      C: loop over rows of intermediate table
859e00ee6ebSdrh     **           transfer values form intermediate table into <table>
860e00ee6ebSdrh     **         end loop
861e00ee6ebSdrh     **      D: ...
862e00ee6ebSdrh     */
863688852abSdrh     addrInsTop = sqlite3VdbeAddOp1(v, OP_Rewind, srcTab); VdbeCoverage(v);
864e00ee6ebSdrh     addrCont = sqlite3VdbeCurrentAddr(v);
865142e30dfSdrh   }else if( pSelect ){
866e00ee6ebSdrh     /* This block codes the top of loop only.  The complete loop is the
867e00ee6ebSdrh     ** following pseudocode (template 3):
868e00ee6ebSdrh     **
86981cf13ecSdrh     **      C: yield X, at EOF goto D
870e00ee6ebSdrh     **         insert the select result into <table> from R..R+n
871e00ee6ebSdrh     **         goto C
872e00ee6ebSdrh     **      D: ...
873e00ee6ebSdrh     */
87481cf13ecSdrh     addrInsTop = addrCont = sqlite3VdbeAddOp1(v, OP_Yield, dest.iSDParm);
875688852abSdrh     VdbeCoverage(v);
876bed8690fSdrh   }
8771ccde15dSdrh 
8785cf590c1Sdrh   /* Run the BEFORE and INSTEAD OF triggers, if there are any
87970ce3f0cSdrh   */
880ec4ccdbcSdrh   endOfLoop = sqlite3VdbeMakeLabel(pParse);
8812f886d1dSdanielk1977   if( tmask & TRIGGER_BEFORE ){
88276d462eeSdan     int regCols = sqlite3GetTempRange(pParse, pTab->nCol+1);
883c3f9bad2Sdanielk1977 
88470ce3f0cSdrh     /* build the NEW.* reference row.  Note that if there is an INTEGER
88570ce3f0cSdrh     ** PRIMARY KEY into which a NULL is being inserted, that NULL will be
88670ce3f0cSdrh     ** translated into a unique ID for the row.  But on a BEFORE trigger,
88770ce3f0cSdrh     ** we do not know what the unique ID will be (because the insert has
88870ce3f0cSdrh     ** not happened yet) so we substitute a rowid of -1
88970ce3f0cSdrh     */
890d82b5021Sdrh     if( ipkColumn<0 ){
89176d462eeSdan       sqlite3VdbeAddOp2(v, OP_Integer, -1, regCols);
89270ce3f0cSdrh     }else{
893728e0f91Sdrh       int addr1;
894ec95c441Sdrh       assert( !withoutRowid );
8957fe45908Sdrh       if( useTempTable ){
896d82b5021Sdrh         sqlite3VdbeAddOp3(v, OP_Column, srcTab, ipkColumn, regCols);
8977fe45908Sdrh       }else{
898d6fe961eSdrh         assert( pSelect==0 );  /* Otherwise useTempTable is true */
899d82b5021Sdrh         sqlite3ExprCode(pParse, pList->a[ipkColumn].pExpr, regCols);
9007fe45908Sdrh       }
901728e0f91Sdrh       addr1 = sqlite3VdbeAddOp1(v, OP_NotNull, regCols); VdbeCoverage(v);
90276d462eeSdan       sqlite3VdbeAddOp2(v, OP_Integer, -1, regCols);
903728e0f91Sdrh       sqlite3VdbeJumpHere(v, addr1);
904688852abSdrh       sqlite3VdbeAddOp1(v, OP_MustBeInt, regCols); VdbeCoverage(v);
90570ce3f0cSdrh     }
90670ce3f0cSdrh 
907034ca14fSdanielk1977     /* Cannot have triggers on a virtual table. If it were possible,
908034ca14fSdanielk1977     ** this block would have to account for hidden column.
909034ca14fSdanielk1977     */
910034ca14fSdanielk1977     assert( !IsVirtual(pTab) );
911034ca14fSdanielk1977 
91270ce3f0cSdrh     /* Create the new column data
91370ce3f0cSdrh     */
914b1daa3f4Sdrh     for(i=j=0; i<pTab->nCol; i++){
915b1daa3f4Sdrh       if( pColumn ){
916c3f9bad2Sdanielk1977         for(j=0; j<pColumn->nId; j++){
917c3f9bad2Sdanielk1977           if( pColumn->a[j].idx==i ) break;
918c3f9bad2Sdanielk1977         }
919c3f9bad2Sdanielk1977       }
920b1daa3f4Sdrh       if( (!useTempTable && !pList) || (pColumn && j>=pColumn->nId)
92103d69a68Sdrh             || (pColumn==0 && IsOrdinaryHiddenColumn(&pTab->aCol[i])) ){
92276d462eeSdan         sqlite3ExprCode(pParse, pTab->aCol[i].pDflt, regCols+i+1);
923142e30dfSdrh       }else if( useTempTable ){
92476d462eeSdan         sqlite3VdbeAddOp3(v, OP_Column, srcTab, j, regCols+i+1);
925c3f9bad2Sdanielk1977       }else{
926d6fe961eSdrh         assert( pSelect==0 ); /* Otherwise useTempTable is true */
92776d462eeSdan         sqlite3ExprCodeAndCache(pParse, pList->a[j].pExpr, regCols+i+1);
928c3f9bad2Sdanielk1977       }
92903d69a68Sdrh       if( pColumn==0 && !IsOrdinaryHiddenColumn(&pTab->aCol[i]) ) j++;
930c3f9bad2Sdanielk1977     }
931a37cdde0Sdanielk1977 
932a37cdde0Sdanielk1977     /* If this is an INSERT on a view with an INSTEAD OF INSERT trigger,
933a37cdde0Sdanielk1977     ** do not attempt any conversions before assembling the record.
934a37cdde0Sdanielk1977     ** If this is a real table, attempt conversions as required by the
935a37cdde0Sdanielk1977     ** table column affinities.
936a37cdde0Sdanielk1977     */
937a37cdde0Sdanielk1977     if( !isView ){
93857bf4a8eSdrh       sqlite3TableAffinity(v, pTab, regCols+1);
939a37cdde0Sdanielk1977     }
940c3f9bad2Sdanielk1977 
9415cf590c1Sdrh     /* Fire BEFORE or INSTEAD OF triggers */
942165921a7Sdan     sqlite3CodeRowTrigger(pParse, pTrigger, TK_INSERT, 0, TRIGGER_BEFORE,
94394d7f50aSdan         pTab, regCols-pTab->nCol-1, onError, endOfLoop);
944165921a7Sdan 
94576d462eeSdan     sqlite3ReleaseTempRange(pParse, regCols, pTab->nCol+1);
94670ce3f0cSdrh   }
947c3f9bad2Sdanielk1977 
948d82b5021Sdrh   /* Compute the content of the next row to insert into a range of
949d82b5021Sdrh   ** registers beginning at regIns.
9501ccde15dSdrh   */
9515cf590c1Sdrh   if( !isView ){
9524cbdda9eSdrh     if( IsVirtual(pTab) ){
9534cbdda9eSdrh       /* The row that the VUpdate opcode will delete: none */
9546a288a33Sdrh       sqlite3VdbeAddOp2(v, OP_Null, 0, regIns);
9554cbdda9eSdrh     }
956d82b5021Sdrh     if( ipkColumn>=0 ){
957142e30dfSdrh       if( useTempTable ){
958d82b5021Sdrh         sqlite3VdbeAddOp3(v, OP_Column, srcTab, ipkColumn, regRowid);
959142e30dfSdrh       }else if( pSelect ){
96005a86c5cSdrh         sqlite3VdbeAddOp2(v, OP_Copy, regFromSelect+ipkColumn, regRowid);
9614a32431cSdrh       }else{
96204fcef00Sdrh         Expr *pIpk = pList->a[ipkColumn].pExpr;
96304fcef00Sdrh         if( pIpk->op==TK_NULL && !IsVirtual(pTab) ){
96404fcef00Sdrh           sqlite3VdbeAddOp3(v, OP_NewRowid, iDataCur, regRowid, regAutoinc);
965e4d90813Sdrh           appendFlag = 1;
96604fcef00Sdrh         }else{
96704fcef00Sdrh           sqlite3ExprCode(pParse, pList->a[ipkColumn].pExpr, regRowid);
968e4d90813Sdrh         }
96927a32783Sdrh       }
970f0863fe5Sdrh       /* If the PRIMARY KEY expression is NULL, then use OP_NewRowid
971e1e68f49Sdrh       ** to generate a unique primary key value.
972e1e68f49Sdrh       */
973e4d90813Sdrh       if( !appendFlag ){
974728e0f91Sdrh         int addr1;
975bb50e7adSdanielk1977         if( !IsVirtual(pTab) ){
976728e0f91Sdrh           addr1 = sqlite3VdbeAddOp1(v, OP_NotNull, regRowid); VdbeCoverage(v);
97726198bb4Sdrh           sqlite3VdbeAddOp3(v, OP_NewRowid, iDataCur, regRowid, regAutoinc);
978728e0f91Sdrh           sqlite3VdbeJumpHere(v, addr1);
979bb50e7adSdanielk1977         }else{
980728e0f91Sdrh           addr1 = sqlite3VdbeCurrentAddr(v);
981728e0f91Sdrh           sqlite3VdbeAddOp2(v, OP_IsNull, regRowid, addr1+2); VdbeCoverage(v);
982bb50e7adSdanielk1977         }
983688852abSdrh         sqlite3VdbeAddOp1(v, OP_MustBeInt, regRowid); VdbeCoverage(v);
984e4d90813Sdrh       }
985ec95c441Sdrh     }else if( IsVirtual(pTab) || withoutRowid ){
9866a288a33Sdrh       sqlite3VdbeAddOp2(v, OP_Null, 0, regRowid);
9874a32431cSdrh     }else{
98826198bb4Sdrh       sqlite3VdbeAddOp3(v, OP_NewRowid, iDataCur, regRowid, regAutoinc);
989e4d90813Sdrh       appendFlag = 1;
9904a32431cSdrh     }
9916a288a33Sdrh     autoIncStep(pParse, regAutoinc, regRowid);
9924a32431cSdrh 
993d82b5021Sdrh     /* Compute data for all columns of the new entry, beginning
9944a32431cSdrh     ** with the first column.
9954a32431cSdrh     */
996034ca14fSdanielk1977     nHidden = 0;
997cce7d176Sdrh     for(i=0; i<pTab->nCol; i++){
9986a288a33Sdrh       int iRegStore = regRowid+1+i;
9994a32431cSdrh       if( i==pTab->iPKey ){
10004a32431cSdrh         /* The value of the INTEGER PRIMARY KEY column is always a NULL.
1001d82b5021Sdrh         ** Whenever this column is read, the rowid will be substituted
1002d82b5021Sdrh         ** in its place.  Hence, fill this column with a NULL to avoid
100305a86c5cSdrh         ** taking up data space with information that will never be used.
100405a86c5cSdrh         ** As there may be shallow copies of this value, make it a soft-NULL */
100505a86c5cSdrh         sqlite3VdbeAddOp1(v, OP_SoftNull, iRegStore);
10064a32431cSdrh         continue;
10074a32431cSdrh       }
1008967e8b73Sdrh       if( pColumn==0 ){
1009034ca14fSdanielk1977         if( IsHiddenColumn(&pTab->aCol[i]) ){
1010034ca14fSdanielk1977           j = -1;
1011034ca14fSdanielk1977           nHidden++;
1012034ca14fSdanielk1977         }else{
1013034ca14fSdanielk1977           j = i - nHidden;
1014034ca14fSdanielk1977         }
1015cce7d176Sdrh       }else{
1016967e8b73Sdrh         for(j=0; j<pColumn->nId; j++){
1017967e8b73Sdrh           if( pColumn->a[j].idx==i ) break;
1018cce7d176Sdrh         }
1019cce7d176Sdrh       }
1020034ca14fSdanielk1977       if( j<0 || nColumn==0 || (pColumn && j>=pColumn->nId) ){
102105a86c5cSdrh         sqlite3ExprCodeFactorable(pParse, pTab->aCol[i].pDflt, iRegStore);
1022142e30dfSdrh       }else if( useTempTable ){
1023287fb61cSdanielk1977         sqlite3VdbeAddOp3(v, OP_Column, srcTab, j, iRegStore);
1024142e30dfSdrh       }else if( pSelect ){
102505a86c5cSdrh         if( regFromSelect!=regData ){
1026b7654111Sdrh           sqlite3VdbeAddOp2(v, OP_SCopy, regFromSelect+j, iRegStore);
102705a86c5cSdrh         }
1028cce7d176Sdrh       }else{
1029287fb61cSdanielk1977         sqlite3ExprCode(pParse, pList->a[j].pExpr, iRegStore);
1030cce7d176Sdrh       }
1031cce7d176Sdrh     }
10321ccde15dSdrh 
10330ca3e24bSdrh     /* Generate code to check constraints and generate index keys and
10340ca3e24bSdrh     ** do the insertion.
10354a32431cSdrh     */
10364cbdda9eSdrh #ifndef SQLITE_OMIT_VIRTUALTABLE
10374cbdda9eSdrh     if( IsVirtual(pTab) ){
1038595a523aSdanielk1977       const char *pVTab = (const char *)sqlite3GetVTable(db, pTab);
10394f3dd150Sdrh       sqlite3VtabMakeWritable(pParse, pTab);
1040595a523aSdanielk1977       sqlite3VdbeAddOp4(v, OP_VUpdate, 1, pTab->nCol+2, regIns, pVTab, P4_VTAB);
1041b061d058Sdan       sqlite3VdbeChangeP5(v, onError==OE_Default ? OE_Abort : onError);
1042e0af83acSdan       sqlite3MayAbort(pParse);
10434cbdda9eSdrh     }else
10444cbdda9eSdrh #endif
10454cbdda9eSdrh     {
1046de630353Sdanielk1977       int isReplace;    /* Set to true if constraints may cause a replace */
10473b908d41Sdan       int bUseSeek;     /* True to use OPFLAG_SEEKRESULT */
1048f8ffb278Sdrh       sqlite3GenerateConstraintChecks(pParse, pTab, aRegIdx, iDataCur, iIdxCur,
1049788d55aaSdrh           regIns, 0, ipkColumn>=0, onError, endOfLoop, &isReplace, 0, pUpsert
105004adf416Sdrh       );
10518ff2d956Sdan       sqlite3FkCheck(pParse, pTab, 0, regIns, 0, 0);
10523b908d41Sdan 
10533b908d41Sdan       /* Set the OPFLAG_USESEEKRESULT flag if either (a) there are no REPLACE
10543b908d41Sdan       ** constraints or (b) there are no triggers and this table is not a
10553b908d41Sdan       ** parent table in a foreign key constraint. It is safe to set the
10563b908d41Sdan       ** flag in the second case as if any REPLACE constraint is hit, an
10573b908d41Sdan       ** OP_Delete or OP_IdxDelete instruction will be executed on each
10583b908d41Sdan       ** cursor that is disturbed. And these instructions both clear the
10593b908d41Sdan       ** VdbeCursor.seekResult variable, disabling the OPFLAG_USESEEKRESULT
10603b908d41Sdan       ** functionality.  */
106106baba54Sdrh       bUseSeek = (isReplace==0 || !sqlite3VdbeHasSubProgram(v));
106226198bb4Sdrh       sqlite3CompleteInsertion(pParse, pTab, iDataCur, iIdxCur,
10633b908d41Sdan           regIns, aRegIdx, 0, appendFlag, bUseSeek
10643b908d41Sdan       );
10655cf590c1Sdrh     }
10664cbdda9eSdrh   }
10671bee3d7bSdrh 
1068feeb1394Sdrh   /* Update the count of rows that are inserted
10691bee3d7bSdrh   */
107079636913Sdrh   if( regRowCount ){
10716a288a33Sdrh     sqlite3VdbeAddOp2(v, OP_AddImm, regRowCount, 1);
10721bee3d7bSdrh   }
1073c3f9bad2Sdanielk1977 
10742f886d1dSdanielk1977   if( pTrigger ){
1075c3f9bad2Sdanielk1977     /* Code AFTER triggers */
1076165921a7Sdan     sqlite3CodeRowTrigger(pParse, pTrigger, TK_INSERT, 0, TRIGGER_AFTER,
107794d7f50aSdan         pTab, regData-2-pTab->nCol, onError, endOfLoop);
1078c3f9bad2Sdanielk1977   }
10791bee3d7bSdrh 
1080e00ee6ebSdrh   /* The bottom of the main insertion loop, if the data source
1081e00ee6ebSdrh   ** is a SELECT statement.
10821ccde15dSdrh   */
10834adee20fSdanielk1977   sqlite3VdbeResolveLabel(v, endOfLoop);
1084142e30dfSdrh   if( useTempTable ){
1085688852abSdrh     sqlite3VdbeAddOp2(v, OP_Next, srcTab, addrCont); VdbeCoverage(v);
1086e00ee6ebSdrh     sqlite3VdbeJumpHere(v, addrInsTop);
10872eb95377Sdrh     sqlite3VdbeAddOp1(v, OP_Close, srcTab);
1088142e30dfSdrh   }else if( pSelect ){
1089076e85f5Sdrh     sqlite3VdbeGoto(v, addrCont);
1090e00ee6ebSdrh     sqlite3VdbeJumpHere(v, addrInsTop);
10916b56344dSdrh   }
1092c3f9bad2Sdanielk1977 
10930b9f50d8Sdrh insert_end:
1094f3388144Sdrh   /* Update the sqlite_sequence table by storing the content of the
10950b9f50d8Sdrh   ** maximum rowid counter values recorded while inserting into
10960b9f50d8Sdrh   ** autoincrement tables.
10972958a4e6Sdrh   */
1098165921a7Sdan   if( pParse->nested==0 && pParse->pTriggerTab==0 ){
10990b9f50d8Sdrh     sqlite3AutoincrementEnd(pParse);
11000b9f50d8Sdrh   }
11012958a4e6Sdrh 
11021bee3d7bSdrh   /*
1103e7de6f25Sdanielk1977   ** Return the number of rows inserted. If this routine is
1104e7de6f25Sdanielk1977   ** generating code because of a call to sqlite3NestedParse(), do not
1105e7de6f25Sdanielk1977   ** invoke the callback function.
11061bee3d7bSdrh   */
110779636913Sdrh   if( regRowCount ){
11086a288a33Sdrh     sqlite3VdbeAddOp2(v, OP_ResultRow, regRowCount, 1);
110922322fd4Sdanielk1977     sqlite3VdbeSetNumCols(v, 1);
111010fb749bSdanielk1977     sqlite3VdbeSetColName(v, 0, COLNAME_NAME, "rows inserted", SQLITE_STATIC);
11111bee3d7bSdrh   }
1112cce7d176Sdrh 
1113cce7d176Sdrh insert_cleanup:
1114633e6d57Sdrh   sqlite3SrcListDelete(db, pTabList);
1115633e6d57Sdrh   sqlite3ExprListDelete(db, pList);
111646d2e5c3Sdrh   sqlite3UpsertDelete(db, pUpsert);
1117633e6d57Sdrh   sqlite3SelectDelete(db, pSelect);
1118633e6d57Sdrh   sqlite3IdListDelete(db, pColumn);
1119633e6d57Sdrh   sqlite3DbFree(db, aRegIdx);
1120cce7d176Sdrh }
11219cfcf5d4Sdrh 
112275cbd984Sdan /* Make sure "isView" and other macros defined above are undefined. Otherwise
112360ec914cSpeter.d.reid ** they may interfere with compilation of other functions in this file
112475cbd984Sdan ** (or in another file, if this file becomes part of the amalgamation).  */
112575cbd984Sdan #ifdef isView
112675cbd984Sdan  #undef isView
112775cbd984Sdan #endif
112875cbd984Sdan #ifdef pTrigger
112975cbd984Sdan  #undef pTrigger
113075cbd984Sdan #endif
113175cbd984Sdan #ifdef tmask
113275cbd984Sdan  #undef tmask
113375cbd984Sdan #endif
113475cbd984Sdan 
11359cfcf5d4Sdrh /*
1136e9816d82Sdrh ** Meanings of bits in of pWalker->eCode for
1137e9816d82Sdrh ** sqlite3ExprReferencesUpdatedColumn()
113898bfa16dSdrh */
113998bfa16dSdrh #define CKCNSTRNT_COLUMN   0x01    /* CHECK constraint uses a changing column */
114098bfa16dSdrh #define CKCNSTRNT_ROWID    0x02    /* CHECK constraint references the ROWID */
114198bfa16dSdrh 
1142e9816d82Sdrh /* This is the Walker callback from sqlite3ExprReferencesUpdatedColumn().
1143e9816d82Sdrh *  Set bit 0x01 of pWalker->eCode if pWalker->eCode to 0 and if this
1144e9816d82Sdrh ** expression node references any of the
11452a0b527bSdrh ** columns that are being modifed by an UPDATE statement.
11462a0b527bSdrh */
11472a0b527bSdrh static int checkConstraintExprNode(Walker *pWalker, Expr *pExpr){
114898bfa16dSdrh   if( pExpr->op==TK_COLUMN ){
114998bfa16dSdrh     assert( pExpr->iColumn>=0 || pExpr->iColumn==-1 );
115098bfa16dSdrh     if( pExpr->iColumn>=0 ){
115198bfa16dSdrh       if( pWalker->u.aiCol[pExpr->iColumn]>=0 ){
115298bfa16dSdrh         pWalker->eCode |= CKCNSTRNT_COLUMN;
115398bfa16dSdrh       }
115498bfa16dSdrh     }else{
115598bfa16dSdrh       pWalker->eCode |= CKCNSTRNT_ROWID;
115698bfa16dSdrh     }
11572a0b527bSdrh   }
11582a0b527bSdrh   return WRC_Continue;
11592a0b527bSdrh }
11602a0b527bSdrh 
11612a0b527bSdrh /*
11622a0b527bSdrh ** pExpr is a CHECK constraint on a row that is being UPDATE-ed.  The
11632a0b527bSdrh ** only columns that are modified by the UPDATE are those for which
116498bfa16dSdrh ** aiChng[i]>=0, and also the ROWID is modified if chngRowid is true.
116598bfa16dSdrh **
1166e9816d82Sdrh ** Return true if CHECK constraint pExpr uses any of the
116798bfa16dSdrh ** changing columns (or the rowid if it is changing).  In other words,
1168e9816d82Sdrh ** return true if this CHECK constraint must be validated for
116998bfa16dSdrh ** the new row in the UPDATE statement.
1170e9816d82Sdrh **
1171e9816d82Sdrh ** 2018-09-15: pExpr might also be an expression for an index-on-expressions.
1172e9816d82Sdrh ** The operation of this routine is the same - return true if an only if
1173e9816d82Sdrh ** the expression uses one or more of columns identified by the second and
1174e9816d82Sdrh ** third arguments.
11752a0b527bSdrh */
1176e9816d82Sdrh int sqlite3ExprReferencesUpdatedColumn(
1177e9816d82Sdrh   Expr *pExpr,    /* The expression to be checked */
1178e9816d82Sdrh   int *aiChng,    /* aiChng[x]>=0 if column x changed by the UPDATE */
1179e9816d82Sdrh   int chngRowid   /* True if UPDATE changes the rowid */
1180e9816d82Sdrh ){
11812a0b527bSdrh   Walker w;
11822a0b527bSdrh   memset(&w, 0, sizeof(w));
118398bfa16dSdrh   w.eCode = 0;
11842a0b527bSdrh   w.xExprCallback = checkConstraintExprNode;
11852a0b527bSdrh   w.u.aiCol = aiChng;
11862a0b527bSdrh   sqlite3WalkExpr(&w, pExpr);
118705723a9eSdrh   if( !chngRowid ){
118805723a9eSdrh     testcase( (w.eCode & CKCNSTRNT_ROWID)!=0 );
118905723a9eSdrh     w.eCode &= ~CKCNSTRNT_ROWID;
119005723a9eSdrh   }
119105723a9eSdrh   testcase( w.eCode==0 );
119205723a9eSdrh   testcase( w.eCode==CKCNSTRNT_COLUMN );
119305723a9eSdrh   testcase( w.eCode==CKCNSTRNT_ROWID );
119405723a9eSdrh   testcase( w.eCode==(CKCNSTRNT_ROWID|CKCNSTRNT_COLUMN) );
1195e9816d82Sdrh   return w.eCode!=0;
11962a0b527bSdrh }
11972a0b527bSdrh 
119811e85273Sdrh /*
11996934fc7bSdrh ** Generate code to do constraint checks prior to an INSERT or an UPDATE
12006934fc7bSdrh ** on table pTab.
12019cfcf5d4Sdrh **
12026934fc7bSdrh ** The regNewData parameter is the first register in a range that contains
12036934fc7bSdrh ** the data to be inserted or the data after the update.  There will be
12046934fc7bSdrh ** pTab->nCol+1 registers in this range.  The first register (the one
12056934fc7bSdrh ** that regNewData points to) will contain the new rowid, or NULL in the
12066934fc7bSdrh ** case of a WITHOUT ROWID table.  The second register in the range will
12076934fc7bSdrh ** contain the content of the first table column.  The third register will
12086934fc7bSdrh ** contain the content of the second table column.  And so forth.
12090ca3e24bSdrh **
1210f8ffb278Sdrh ** The regOldData parameter is similar to regNewData except that it contains
1211f8ffb278Sdrh ** the data prior to an UPDATE rather than afterwards.  regOldData is zero
1212f8ffb278Sdrh ** for an INSERT.  This routine can distinguish between UPDATE and INSERT by
1213f8ffb278Sdrh ** checking regOldData for zero.
12140ca3e24bSdrh **
1215f8ffb278Sdrh ** For an UPDATE, the pkChng boolean is true if the true primary key (the
1216f8ffb278Sdrh ** rowid for a normal table or the PRIMARY KEY for a WITHOUT ROWID table)
1217f8ffb278Sdrh ** might be modified by the UPDATE.  If pkChng is false, then the key of
1218f8ffb278Sdrh ** the iDataCur content table is guaranteed to be unchanged by the UPDATE.
12190ca3e24bSdrh **
1220f8ffb278Sdrh ** For an INSERT, the pkChng boolean indicates whether or not the rowid
1221f8ffb278Sdrh ** was explicitly specified as part of the INSERT statement.  If pkChng
1222f8ffb278Sdrh ** is zero, it means that the either rowid is computed automatically or
1223f8ffb278Sdrh ** that the table is a WITHOUT ROWID table and has no rowid.  On an INSERT,
1224f8ffb278Sdrh ** pkChng will only be true if the INSERT statement provides an integer
1225f8ffb278Sdrh ** value for either the rowid column or its INTEGER PRIMARY KEY alias.
12260ca3e24bSdrh **
12276934fc7bSdrh ** The code generated by this routine will store new index entries into
1228aa9b8963Sdrh ** registers identified by aRegIdx[].  No index entry is created for
1229aa9b8963Sdrh ** indices where aRegIdx[i]==0.  The order of indices in aRegIdx[] is
1230aa9b8963Sdrh ** the same as the order of indices on the linked list of indices
12316934fc7bSdrh ** at pTab->pIndex.
12326934fc7bSdrh **
1233a7c3b93fSdrh ** (2019-05-07) The generated code also creates a new record for the
1234a7c3b93fSdrh ** main table, if pTab is a rowid table, and stores that record in the
1235a7c3b93fSdrh ** register identified by aRegIdx[nIdx] - in other words in the first
1236a7c3b93fSdrh ** entry of aRegIdx[] past the last index.  It is important that the
1237a7c3b93fSdrh ** record be generated during constraint checks to avoid affinity changes
1238a7c3b93fSdrh ** to the register content that occur after constraint checks but before
1239a7c3b93fSdrh ** the new record is inserted.
1240a7c3b93fSdrh **
12416934fc7bSdrh ** The caller must have already opened writeable cursors on the main
12426934fc7bSdrh ** table and all applicable indices (that is to say, all indices for which
12436934fc7bSdrh ** aRegIdx[] is not zero).  iDataCur is the cursor for the main table when
12446934fc7bSdrh ** inserting or updating a rowid table, or the cursor for the PRIMARY KEY
12456934fc7bSdrh ** index when operating on a WITHOUT ROWID table.  iIdxCur is the cursor
12466934fc7bSdrh ** for the first index in the pTab->pIndex list.  Cursors for other indices
12476934fc7bSdrh ** are at iIdxCur+N for the N-th element of the pTab->pIndex list.
12489cfcf5d4Sdrh **
12499cfcf5d4Sdrh ** This routine also generates code to check constraints.  NOT NULL,
12509cfcf5d4Sdrh ** CHECK, and UNIQUE constraints are all checked.  If a constraint fails,
12511c92853dSdrh ** then the appropriate action is performed.  There are five possible
12521c92853dSdrh ** actions: ROLLBACK, ABORT, FAIL, REPLACE, and IGNORE.
12539cfcf5d4Sdrh **
12549cfcf5d4Sdrh **  Constraint type  Action       What Happens
12559cfcf5d4Sdrh **  ---------------  ----------   ----------------------------------------
12561c92853dSdrh **  any              ROLLBACK     The current transaction is rolled back and
12576934fc7bSdrh **                                sqlite3_step() returns immediately with a
12589cfcf5d4Sdrh **                                return code of SQLITE_CONSTRAINT.
12599cfcf5d4Sdrh **
12601c92853dSdrh **  any              ABORT        Back out changes from the current command
12611c92853dSdrh **                                only (do not do a complete rollback) then
12626934fc7bSdrh **                                cause sqlite3_step() to return immediately
12631c92853dSdrh **                                with SQLITE_CONSTRAINT.
12641c92853dSdrh **
12656934fc7bSdrh **  any              FAIL         Sqlite3_step() returns immediately with a
12661c92853dSdrh **                                return code of SQLITE_CONSTRAINT.  The
12671c92853dSdrh **                                transaction is not rolled back and any
12686934fc7bSdrh **                                changes to prior rows are retained.
12691c92853dSdrh **
12706934fc7bSdrh **  any              IGNORE       The attempt in insert or update the current
12716934fc7bSdrh **                                row is skipped, without throwing an error.
12726934fc7bSdrh **                                Processing continues with the next row.
12736934fc7bSdrh **                                (There is an immediate jump to ignoreDest.)
12749cfcf5d4Sdrh **
12759cfcf5d4Sdrh **  NOT NULL         REPLACE      The NULL value is replace by the default
12769cfcf5d4Sdrh **                                value for that column.  If the default value
12779cfcf5d4Sdrh **                                is NULL, the action is the same as ABORT.
12789cfcf5d4Sdrh **
12799cfcf5d4Sdrh **  UNIQUE           REPLACE      The other row that conflicts with the row
12809cfcf5d4Sdrh **                                being inserted is removed.
12819cfcf5d4Sdrh **
12829cfcf5d4Sdrh **  CHECK            REPLACE      Illegal.  The results in an exception.
12839cfcf5d4Sdrh **
12841c92853dSdrh ** Which action to take is determined by the overrideError parameter.
12851c92853dSdrh ** Or if overrideError==OE_Default, then the pParse->onError parameter
12861c92853dSdrh ** is used.  Or if pParse->onError==OE_Default then the onError value
12871c92853dSdrh ** for the constraint is used.
12889cfcf5d4Sdrh */
12894adee20fSdanielk1977 void sqlite3GenerateConstraintChecks(
12909cfcf5d4Sdrh   Parse *pParse,       /* The parser context */
12916934fc7bSdrh   Table *pTab,         /* The table being inserted or updated */
1292f8ffb278Sdrh   int *aRegIdx,        /* Use register aRegIdx[i] for index i.  0 for unused */
12936934fc7bSdrh   int iDataCur,        /* Canonical data cursor (main table or PK index) */
129426198bb4Sdrh   int iIdxCur,         /* First index cursor */
12956934fc7bSdrh   int regNewData,      /* First register in a range holding values to insert */
1296f8ffb278Sdrh   int regOldData,      /* Previous content.  0 for INSERTs */
1297f8ffb278Sdrh   u8 pkChng,           /* Non-zero if the rowid or PRIMARY KEY changed */
1298f8ffb278Sdrh   u8 overrideError,    /* Override onError to this if not OE_Default */
1299de630353Sdanielk1977   int ignoreDest,      /* Jump to this label on an OE_Ignore resolution */
1300bdb00225Sdrh   int *pbMayReplace,   /* OUT: Set to true if constraint may cause a replace */
1301788d55aaSdrh   int *aiChng,         /* column i is unchanged if aiChng[i]<0 */
1302788d55aaSdrh   Upsert *pUpsert      /* ON CONFLICT clauses, if any.  NULL otherwise */
13039cfcf5d4Sdrh ){
13041b7ecbb4Sdrh   Vdbe *v;             /* VDBE under constrution */
13051b7ecbb4Sdrh   Index *pIdx;         /* Pointer to one of the indices */
130611e85273Sdrh   Index *pPk = 0;      /* The PRIMARY KEY index */
13072938f924Sdrh   sqlite3 *db;         /* Database connection */
1308f8ffb278Sdrh   int i;               /* loop counter */
1309f8ffb278Sdrh   int ix;              /* Index loop counter */
13109cfcf5d4Sdrh   int nCol;            /* Number of columns */
13119cfcf5d4Sdrh   int onError;         /* Conflict resolution strategy */
1312728e0f91Sdrh   int addr1;           /* Address of jump instruction */
13131b7ecbb4Sdrh   int seenReplace = 0; /* True if REPLACE is used to resolve INT PK conflict */
13146fbe41acSdrh   int nPkField;        /* Number of fields in PRIMARY KEY. 1 for ROWID tables */
1315096fd476Sdrh   Index *pUpIdx = 0;   /* Index to which to apply the upsert */
13168d1b82e4Sdrh   u8 isUpdate;         /* True if this is an UPDATE operation */
131757bf4a8eSdrh   u8 bAffinityDone = 0;  /* True if the OP_Affinity operation has been run */
1318096fd476Sdrh   int upsertBypass = 0;  /* Address of Goto to bypass upsert subroutine */
131984304506Sdrh   int upsertJump = 0;    /* Address of Goto that jumps into upsert subroutine */
132084304506Sdrh   int ipkTop = 0;        /* Top of the IPK uniqueness check */
132184304506Sdrh   int ipkBottom = 0;     /* OP_Goto at the end of the IPK uniqueness check */
1322*a407eccbSdrh   /* Variables associated with retesting uniqueness constraints after
1323*a407eccbSdrh   ** replace triggers fire have run */
1324*a407eccbSdrh   int regTrigCnt;       /* Register used to count replace trigger invocations */
1325*a407eccbSdrh   int addrRecheck = 0;  /* Jump here to recheck all uniqueness constraints */
1326*a407eccbSdrh   int lblRecheckOk = 0; /* Each recheck jumps to this label if it passes */
1327*a407eccbSdrh   Trigger *pTrigger;    /* List of DELETE triggers on the table pTab */
1328*a407eccbSdrh   int nReplaceTrig = 0; /* Number of replace triggers coded */
13299cfcf5d4Sdrh 
1330f8ffb278Sdrh   isUpdate = regOldData!=0;
13312938f924Sdrh   db = pParse->db;
13324adee20fSdanielk1977   v = sqlite3GetVdbe(pParse);
13339cfcf5d4Sdrh   assert( v!=0 );
1334417be79cSdrh   assert( pTab->pSelect==0 );  /* This table is not a VIEW */
13359cfcf5d4Sdrh   nCol = pTab->nCol;
1336aa9b8963Sdrh 
13376934fc7bSdrh   /* pPk is the PRIMARY KEY index for WITHOUT ROWID tables and NULL for
13386934fc7bSdrh   ** normal rowid tables.  nPkField is the number of key fields in the
13396934fc7bSdrh   ** pPk index or 1 for a rowid table.  In other words, nPkField is the
13406934fc7bSdrh   ** number of fields in the true primary key of the table. */
134126198bb4Sdrh   if( HasRowid(pTab) ){
134226198bb4Sdrh     pPk = 0;
134326198bb4Sdrh     nPkField = 1;
134426198bb4Sdrh   }else{
134526198bb4Sdrh     pPk = sqlite3PrimaryKeyIndex(pTab);
134626198bb4Sdrh     nPkField = pPk->nKeyCol;
134726198bb4Sdrh   }
13486fbe41acSdrh 
13496fbe41acSdrh   /* Record that this module has started */
13506fbe41acSdrh   VdbeModuleComment((v, "BEGIN: GenCnstCks(%d,%d,%d,%d,%d)",
13516934fc7bSdrh                      iDataCur, iIdxCur, regNewData, regOldData, pkChng));
13529cfcf5d4Sdrh 
13539cfcf5d4Sdrh   /* Test all NOT NULL constraints.
13549cfcf5d4Sdrh   */
13559cfcf5d4Sdrh   for(i=0; i<nCol; i++){
13560ca3e24bSdrh     if( i==pTab->iPKey ){
1357bdb00225Sdrh       continue;        /* ROWID is never NULL */
1358bdb00225Sdrh     }
1359bdb00225Sdrh     if( aiChng && aiChng[i]<0 ){
1360bdb00225Sdrh       /* Don't bother checking for NOT NULL on columns that do not change */
13610ca3e24bSdrh       continue;
13620ca3e24bSdrh     }
13639cfcf5d4Sdrh     onError = pTab->aCol[i].notNull;
1364bdb00225Sdrh     if( onError==OE_None ) continue;  /* This column is allowed to be NULL */
13659cfcf5d4Sdrh     if( overrideError!=OE_Default ){
13669cfcf5d4Sdrh       onError = overrideError;
1367a996e477Sdrh     }else if( onError==OE_Default ){
1368a996e477Sdrh       onError = OE_Abort;
13699cfcf5d4Sdrh     }
13707977a17fSdanielk1977     if( onError==OE_Replace && pTab->aCol[i].pDflt==0 ){
13719cfcf5d4Sdrh       onError = OE_Abort;
13729cfcf5d4Sdrh     }
1373b84f96f8Sdanielk1977     assert( onError==OE_Rollback || onError==OE_Abort || onError==OE_Fail
1374b84f96f8Sdanielk1977         || onError==OE_Ignore || onError==OE_Replace );
13759bfb0794Sdrh     addr1 = 0;
13769cfcf5d4Sdrh     switch( onError ){
13779bfb0794Sdrh       case OE_Replace: {
13789bfb0794Sdrh         assert( onError==OE_Replace );
1379ec4ccdbcSdrh         addr1 = sqlite3VdbeMakeLabel(pParse);
13809bfb0794Sdrh         sqlite3VdbeAddOp2(v, OP_NotNull, regNewData+1+i, addr1);
13819bfb0794Sdrh           VdbeCoverage(v);
13829bfb0794Sdrh         sqlite3ExprCode(pParse, pTab->aCol[i].pDflt, regNewData+1+i);
13839bfb0794Sdrh         sqlite3VdbeAddOp2(v, OP_NotNull, regNewData+1+i, addr1);
13849bfb0794Sdrh           VdbeCoverage(v);
13859bfb0794Sdrh         onError = OE_Abort;
13869bfb0794Sdrh         /* Fall through into the OE_Abort case to generate code that runs
13879bfb0794Sdrh         ** if both the input and the default value are NULL */
13889bfb0794Sdrh       }
13891c92853dSdrh       case OE_Abort:
1390e0af83acSdan         sqlite3MayAbort(pParse);
13910978d4ffSdrh         /* Fall through */
1392e0af83acSdan       case OE_Rollback:
13931c92853dSdrh       case OE_Fail: {
1394f9c8ce3cSdrh         char *zMsg = sqlite3MPrintf(db, "%s.%s", pTab->zName,
1395f9c8ce3cSdrh                                     pTab->aCol[i].zName);
13962700acaaSdrh         sqlite3VdbeAddOp3(v, OP_HaltIfNull, SQLITE_CONSTRAINT_NOTNULL, onError,
13972700acaaSdrh                           regNewData+1+i);
13982700acaaSdrh         sqlite3VdbeAppendP4(v, zMsg, P4_DYNAMIC);
1399f9c8ce3cSdrh         sqlite3VdbeChangeP5(v, P5_ConstraintNotNull);
1400688852abSdrh         VdbeCoverage(v);
14019bfb0794Sdrh         if( addr1 ) sqlite3VdbeResolveLabel(v, addr1);
14029cfcf5d4Sdrh         break;
14039cfcf5d4Sdrh       }
1404098d1684Sdrh       default: {
14059bfb0794Sdrh         assert( onError==OE_Ignore );
14069bfb0794Sdrh         sqlite3VdbeAddOp2(v, OP_IsNull, regNewData+1+i, ignoreDest);
1407728e0f91Sdrh         VdbeCoverage(v);
14089cfcf5d4Sdrh         break;
14099cfcf5d4Sdrh       }
14109cfcf5d4Sdrh     }
14119cfcf5d4Sdrh   }
14129cfcf5d4Sdrh 
14139cfcf5d4Sdrh   /* Test all CHECK constraints
14149cfcf5d4Sdrh   */
1415ffe07b2dSdrh #ifndef SQLITE_OMIT_CHECK
14162938f924Sdrh   if( pTab->pCheck && (db->flags & SQLITE_IgnoreChecks)==0 ){
14172938f924Sdrh     ExprList *pCheck = pTab->pCheck;
14186e97f8ecSdrh     pParse->iSelfTab = -(regNewData+1);
1419aa01c7e2Sdrh     onError = overrideError!=OE_Default ? overrideError : OE_Abort;
14202938f924Sdrh     for(i=0; i<pCheck->nExpr; i++){
142105723a9eSdrh       int allOk;
14222a0b527bSdrh       Expr *pExpr = pCheck->a[i].pExpr;
1423e9816d82Sdrh       if( aiChng
1424e9816d82Sdrh        && !sqlite3ExprReferencesUpdatedColumn(pExpr, aiChng, pkChng)
1425e9816d82Sdrh       ){
1426e9816d82Sdrh         /* The check constraints do not reference any of the columns being
1427e9816d82Sdrh         ** updated so there is no point it verifying the check constraint */
1428e9816d82Sdrh         continue;
1429e9816d82Sdrh       }
1430ec4ccdbcSdrh       allOk = sqlite3VdbeMakeLabel(pParse);
14314031bafaSdrh       sqlite3VdbeVerifyAbortable(v, onError);
14322a0b527bSdrh       sqlite3ExprIfTrue(pParse, pExpr, allOk, SQLITE_JUMPIFNULL);
14332e06c67cSdrh       if( onError==OE_Ignore ){
1434076e85f5Sdrh         sqlite3VdbeGoto(v, ignoreDest);
1435aa01c7e2Sdrh       }else{
1436f9c8ce3cSdrh         char *zName = pCheck->a[i].zName;
1437f9c8ce3cSdrh         if( zName==0 ) zName = pTab->zName;
14380ce974d1Sdrh         if( onError==OE_Replace ) onError = OE_Abort; /* IMP: R-26383-51744 */
1439d91c1a17Sdrh         sqlite3HaltConstraint(pParse, SQLITE_CONSTRAINT_CHECK,
1440f9c8ce3cSdrh                               onError, zName, P4_TRANSIENT,
1441f9c8ce3cSdrh                               P5_ConstraintCheck);
1442aa01c7e2Sdrh       }
1443ffe07b2dSdrh       sqlite3VdbeResolveLabel(v, allOk);
1444ffe07b2dSdrh     }
14456e97f8ecSdrh     pParse->iSelfTab = 0;
14462938f924Sdrh   }
1447ffe07b2dSdrh #endif /* !defined(SQLITE_OMIT_CHECK) */
14489cfcf5d4Sdrh 
1449096fd476Sdrh   /* UNIQUE and PRIMARY KEY constraints should be handled in the following
1450096fd476Sdrh   ** order:
1451096fd476Sdrh   **
145284304506Sdrh   **   (1)  OE_Update
145384304506Sdrh   **   (2)  OE_Abort, OE_Fail, OE_Rollback, OE_Ignore
1454096fd476Sdrh   **   (3)  OE_Replace
1455096fd476Sdrh   **
1456096fd476Sdrh   ** OE_Fail and OE_Ignore must happen before any changes are made.
1457096fd476Sdrh   ** OE_Update guarantees that only a single row will change, so it
1458096fd476Sdrh   ** must happen before OE_Replace.  Technically, OE_Abort and OE_Rollback
1459096fd476Sdrh   ** could happen in any order, but they are grouped up front for
1460096fd476Sdrh   ** convenience.
1461096fd476Sdrh   **
146284304506Sdrh   ** 2018-08-14: Ticket https://www.sqlite.org/src/info/908f001483982c43
146384304506Sdrh   ** The order of constraints used to have OE_Update as (2) and OE_Abort
146484304506Sdrh   ** and so forth as (1). But apparently PostgreSQL checks the OE_Update
146584304506Sdrh   ** constraint before any others, so it had to be moved.
146684304506Sdrh   **
1467096fd476Sdrh   ** Constraint checking code is generated in this order:
1468096fd476Sdrh   **   (A)  The rowid constraint
1469096fd476Sdrh   **   (B)  Unique index constraints that do not have OE_Replace as their
1470096fd476Sdrh   **        default conflict resolution strategy
1471096fd476Sdrh   **   (C)  Unique index that do use OE_Replace by default.
1472096fd476Sdrh   **
1473096fd476Sdrh   ** The ordering of (2) and (3) is accomplished by making sure the linked
1474096fd476Sdrh   ** list of indexes attached to a table puts all OE_Replace indexes last
1475096fd476Sdrh   ** in the list.  See sqlite3CreateIndex() for where that happens.
1476096fd476Sdrh   */
1477096fd476Sdrh 
1478096fd476Sdrh   if( pUpsert ){
1479096fd476Sdrh     if( pUpsert->pUpsertTarget==0 ){
1480096fd476Sdrh       /* An ON CONFLICT DO NOTHING clause, without a constraint-target.
1481096fd476Sdrh       ** Make all unique constraint resolution be OE_Ignore */
1482dedbc508Sdrh       assert( pUpsert->pUpsertSet==0 );
1483096fd476Sdrh       overrideError = OE_Ignore;
1484096fd476Sdrh       pUpsert = 0;
1485096fd476Sdrh     }else if( (pUpIdx = pUpsert->pUpsertIdx)!=0 ){
148684304506Sdrh       /* If the constraint-target uniqueness check must be run first.
148784304506Sdrh       ** Jump to that uniqueness check now */
148884304506Sdrh       upsertJump = sqlite3VdbeAddOp0(v, OP_Goto);
148984304506Sdrh       VdbeComment((v, "UPSERT constraint goes first"));
1490096fd476Sdrh     }
1491096fd476Sdrh   }
1492096fd476Sdrh 
1493*a407eccbSdrh   /* Determine if it is possible that triggers (either explicitly coded
1494*a407eccbSdrh   ** triggers or FK resolution actions) might run as a result of deletes
1495*a407eccbSdrh   ** that happen when OE_Replace conflict resolution occurs. (Call these
1496*a407eccbSdrh   ** "replace triggers".)  If any replace triggers run, we will need to
1497*a407eccbSdrh   ** recheck all of the uniqueness constraints after they have all run.
1498*a407eccbSdrh   ** But on the recheck, the resolution is OE_Abort instead of OE_Replace.
1499*a407eccbSdrh   **
1500*a407eccbSdrh   ** If replace triggers are a possibility, then
1501*a407eccbSdrh   **
1502*a407eccbSdrh   **   (1) Allocate register regTrigCnt and initialize it to zero.
1503*a407eccbSdrh   **       That register will count the number of replace triggers that
1504*a407eccbSdrh   **       fire.  Constraint recheck only occurs if the number if positive.
1505*a407eccbSdrh   **   (2) Initialize pTrigger to the set of all DELETE triggers.
1506*a407eccbSdrh   **   (3) Initialize addrRecheck and lblRecheckOk
1507*a407eccbSdrh   **
1508*a407eccbSdrh   ** The uniqueness rechecking code will create a series of tests to run
1509*a407eccbSdrh   ** in a second pass.  The addrRecheck and lblRecheckOk variables are
1510*a407eccbSdrh   ** used to link together these tests which are separated from each other
1511*a407eccbSdrh   ** in the generate bytecode.
1512*a407eccbSdrh   */
1513*a407eccbSdrh   if( (db->flags & (SQLITE_RecTriggers|SQLITE_ForeignKeys))==0 ){
1514*a407eccbSdrh     /* There are not DELETE triggers nor FK constraints.  No constraint
1515*a407eccbSdrh     ** rechecks are needed. */
1516*a407eccbSdrh     pTrigger = 0;
1517*a407eccbSdrh     regTrigCnt = 0;
1518*a407eccbSdrh   }else{
1519*a407eccbSdrh     if( db->flags&SQLITE_RecTriggers ){
1520*a407eccbSdrh       pTrigger = sqlite3TriggersExist(pParse, pTab, TK_DELETE, 0, 0);
1521*a407eccbSdrh       regTrigCnt = pTrigger!=0 || sqlite3FkRequired(pParse, pTab, 0, 0);
1522*a407eccbSdrh     }else{
1523*a407eccbSdrh       pTrigger = 0;
1524*a407eccbSdrh       regTrigCnt = sqlite3FkRequired(pParse, pTab, 0, 0);
1525*a407eccbSdrh     }
1526*a407eccbSdrh     if( regTrigCnt ){
1527*a407eccbSdrh       /* Replace triggers might exist.  Allocate the counter and
1528*a407eccbSdrh       ** initialize it to zero. */
1529*a407eccbSdrh       regTrigCnt = ++pParse->nMem;
1530*a407eccbSdrh       sqlite3VdbeAddOp2(v, OP_Integer, 0, regTrigCnt);
1531*a407eccbSdrh       VdbeComment((v, "trigger count"));
1532*a407eccbSdrh       lblRecheckOk = sqlite3VdbeMakeLabel(pParse);
1533*a407eccbSdrh       addrRecheck = lblRecheckOk;
1534*a407eccbSdrh     }
1535*a407eccbSdrh   }
1536*a407eccbSdrh 
1537f8ffb278Sdrh   /* If rowid is changing, make sure the new rowid does not previously
1538f8ffb278Sdrh   ** exist in the table.
15399cfcf5d4Sdrh   */
15406fbe41acSdrh   if( pkChng && pPk==0 ){
1541ec4ccdbcSdrh     int addrRowidOk = sqlite3VdbeMakeLabel(pParse);
154211e85273Sdrh 
1543f8ffb278Sdrh     /* Figure out what action to take in case of a rowid collision */
15440ca3e24bSdrh     onError = pTab->keyConf;
15450ca3e24bSdrh     if( overrideError!=OE_Default ){
15460ca3e24bSdrh       onError = overrideError;
1547a996e477Sdrh     }else if( onError==OE_Default ){
1548a996e477Sdrh       onError = OE_Abort;
15490ca3e24bSdrh     }
1550a0217ba7Sdrh 
1551c8a0c90bSdrh     /* figure out whether or not upsert applies in this case */
1552096fd476Sdrh     if( pUpsert && pUpsert->pUpsertIdx==0 ){
1553c8a0c90bSdrh       if( pUpsert->pUpsertSet==0 ){
1554c8a0c90bSdrh         onError = OE_Ignore;  /* DO NOTHING is the same as INSERT OR IGNORE */
1555c8a0c90bSdrh       }else{
1556c8a0c90bSdrh         onError = OE_Update;  /* DO UPDATE */
1557c8a0c90bSdrh       }
1558c8a0c90bSdrh     }
1559c8a0c90bSdrh 
15608d1b82e4Sdrh     /* If the response to a rowid conflict is REPLACE but the response
15618d1b82e4Sdrh     ** to some other UNIQUE constraint is FAIL or IGNORE, then we need
15628d1b82e4Sdrh     ** to defer the running of the rowid conflict checking until after
15638d1b82e4Sdrh     ** the UNIQUE constraints have run.
15648d1b82e4Sdrh     */
156584304506Sdrh     if( onError==OE_Replace      /* IPK rule is REPLACE */
156684304506Sdrh      && onError!=overrideError   /* Rules for other contraints are different */
156784304506Sdrh      && pTab->pIndex             /* There exist other constraints */
1568096fd476Sdrh     ){
156984304506Sdrh       ipkTop = sqlite3VdbeAddOp0(v, OP_Goto)+1;
157084304506Sdrh       VdbeComment((v, "defer IPK REPLACE until last"));
15718d1b82e4Sdrh     }
15728d1b82e4Sdrh 
1573bb6b1ca7Sdrh     if( isUpdate ){
1574bb6b1ca7Sdrh       /* pkChng!=0 does not mean that the rowid has changed, only that
1575bb6b1ca7Sdrh       ** it might have changed.  Skip the conflict logic below if the rowid
1576bb6b1ca7Sdrh       ** is unchanged. */
1577bb6b1ca7Sdrh       sqlite3VdbeAddOp3(v, OP_Eq, regNewData, addrRowidOk, regOldData);
1578bb6b1ca7Sdrh       sqlite3VdbeChangeP5(v, SQLITE_NOTNULL);
1579bb6b1ca7Sdrh       VdbeCoverage(v);
1580bb6b1ca7Sdrh     }
1581bb6b1ca7Sdrh 
1582f8ffb278Sdrh     /* Check to see if the new rowid already exists in the table.  Skip
1583f8ffb278Sdrh     ** the following conflict logic if it does not. */
15847f5f306bSdrh     VdbeNoopComment((v, "uniqueness check for ROWID"));
15854031bafaSdrh     sqlite3VdbeVerifyAbortable(v, onError);
15866934fc7bSdrh     sqlite3VdbeAddOp3(v, OP_NotExists, iDataCur, addrRowidOk, regNewData);
1587688852abSdrh     VdbeCoverage(v);
1588f8ffb278Sdrh 
15890ca3e24bSdrh     switch( onError ){
1590a0217ba7Sdrh       default: {
1591a0217ba7Sdrh         onError = OE_Abort;
1592a0217ba7Sdrh         /* Fall thru into the next case */
1593a0217ba7Sdrh       }
15941c92853dSdrh       case OE_Rollback:
15951c92853dSdrh       case OE_Abort:
15961c92853dSdrh       case OE_Fail: {
15979916048bSdrh         testcase( onError==OE_Rollback );
15989916048bSdrh         testcase( onError==OE_Abort );
15999916048bSdrh         testcase( onError==OE_Fail );
1600f9c8ce3cSdrh         sqlite3RowidConstraint(pParse, onError, pTab);
16010ca3e24bSdrh         break;
16020ca3e24bSdrh       }
16035383ae5cSdrh       case OE_Replace: {
16042283d46cSdan         /* If there are DELETE triggers on this table and the
16052283d46cSdan         ** recursive-triggers flag is set, call GenerateRowDelete() to
1606d5578433Smistachkin         ** remove the conflicting row from the table. This will fire
16072283d46cSdan         ** the triggers and remove both the table and index b-tree entries.
16082283d46cSdan         **
16092283d46cSdan         ** Otherwise, if there are no triggers or the recursive-triggers
1610da730f6eSdan         ** flag is not set, but the table has one or more indexes, call
1611da730f6eSdan         ** GenerateRowIndexDelete(). This removes the index b-tree entries
1612da730f6eSdan         ** only. The table b-tree entry will be replaced by the new entry
1613da730f6eSdan         ** when it is inserted.
1614da730f6eSdan         **
1615da730f6eSdan         ** If either GenerateRowDelete() or GenerateRowIndexDelete() is called,
1616da730f6eSdan         ** also invoke MultiWrite() to indicate that this VDBE may require
1617da730f6eSdan         ** statement rollback (if the statement is aborted after the delete
1618da730f6eSdan         ** takes place). Earlier versions called sqlite3MultiWrite() regardless,
1619da730f6eSdan         ** but being more selective here allows statements like:
1620da730f6eSdan         **
1621da730f6eSdan         **   REPLACE INTO t(rowid) VALUES($newrowid)
1622da730f6eSdan         **
1623da730f6eSdan         ** to run without a statement journal if there are no indexes on the
1624da730f6eSdan         ** table.
1625da730f6eSdan         */
1626*a407eccbSdrh         if( regTrigCnt ){
1627da730f6eSdan           sqlite3MultiWrite(pParse);
162826198bb4Sdrh           sqlite3GenerateRowDelete(pParse, pTab, pTrigger, iDataCur, iIdxCur,
1629438b8815Sdan                                    regNewData, 1, 0, OE_Replace, 1, -1);
1630*a407eccbSdrh           sqlite3VdbeAddOp2(v, OP_AddImm, regTrigCnt, 1); /* incr trigger cnt */
1631*a407eccbSdrh           nReplaceTrig++;
163246c47d46Sdan         }else{
16339b1c62d4Sdrh #ifdef SQLITE_ENABLE_PREUPDATE_HOOK
163454f2cd90Sdrh           assert( HasRowid(pTab) );
163546c47d46Sdan           /* This OP_Delete opcode fires the pre-update-hook only. It does
163646c47d46Sdan           ** not modify the b-tree. It is more efficient to let the coming
163746c47d46Sdan           ** OP_Insert replace the existing entry than it is to delete the
163846c47d46Sdan           ** existing entry and then insert a new one. */
1639cbf1b8efSdrh           sqlite3VdbeAddOp2(v, OP_Delete, iDataCur, OPFLAG_ISNOOP);
1640f14b7fb7Sdrh           sqlite3VdbeAppendP4(v, pTab, P4_TABLE);
16419b1c62d4Sdrh #endif /* SQLITE_ENABLE_PREUPDATE_HOOK */
164246c47d46Sdan           if( pTab->pIndex ){
1643da730f6eSdan             sqlite3MultiWrite(pParse);
1644f0ee1d3cSdan             sqlite3GenerateRowIndexDelete(pParse, pTab, iDataCur, iIdxCur,0,-1);
16452283d46cSdan           }
164646c47d46Sdan         }
16475383ae5cSdrh         seenReplace = 1;
16485383ae5cSdrh         break;
16495383ae5cSdrh       }
16509eddacadSdrh #ifndef SQLITE_OMIT_UPSERT
16519eddacadSdrh       case OE_Update: {
16522cc00423Sdan         sqlite3UpsertDoUpdate(pParse, pUpsert, pTab, 0, iDataCur);
16539eddacadSdrh         /* Fall through */
16549eddacadSdrh       }
16559eddacadSdrh #endif
16560ca3e24bSdrh       case OE_Ignore: {
16579916048bSdrh         testcase( onError==OE_Ignore );
1658076e85f5Sdrh         sqlite3VdbeGoto(v, ignoreDest);
16590ca3e24bSdrh         break;
16600ca3e24bSdrh       }
16610ca3e24bSdrh     }
166211e85273Sdrh     sqlite3VdbeResolveLabel(v, addrRowidOk);
166384304506Sdrh     if( ipkTop ){
166484304506Sdrh       ipkBottom = sqlite3VdbeAddOp0(v, OP_Goto);
166584304506Sdrh       sqlite3VdbeJumpHere(v, ipkTop-1);
1666a05a722fSdrh     }
16670ca3e24bSdrh   }
16680bd1f4eaSdrh 
16690bd1f4eaSdrh   /* Test all UNIQUE constraints by creating entries for each UNIQUE
16700bd1f4eaSdrh   ** index and making sure that duplicate entries do not already exist.
167111e85273Sdrh   ** Compute the revised record entries for indices as we go.
1672f8ffb278Sdrh   **
1673f8ffb278Sdrh   ** This loop also handles the case of the PRIMARY KEY index for a
1674f8ffb278Sdrh   ** WITHOUT ROWID table.
16750bd1f4eaSdrh   */
167626198bb4Sdrh   for(ix=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, ix++){
16776934fc7bSdrh     int regIdx;          /* Range of registers hold conent for pIdx */
16786934fc7bSdrh     int regR;            /* Range of registers holding conflicting PK */
16796934fc7bSdrh     int iThisCur;        /* Cursor for this UNIQUE index */
16806934fc7bSdrh     int addrUniqueOk;    /* Jump here if the UNIQUE constraint is satisfied */
1681*a407eccbSdrh     int addrConflictCk;  /* First opcode in the conflict check logic */
16822184fc75Sdrh 
168326198bb4Sdrh     if( aRegIdx[ix]==0 ) continue;  /* Skip indices that do not change */
16847f5f306bSdrh     if( pUpIdx==pIdx ){
168584304506Sdrh       addrUniqueOk = upsertJump+1;
16867f5f306bSdrh       upsertBypass = sqlite3VdbeGoto(v, 0);
16877f5f306bSdrh       VdbeComment((v, "Skip upsert subroutine"));
168884304506Sdrh       sqlite3VdbeJumpHere(v, upsertJump);
16897f5f306bSdrh     }else{
1690ec4ccdbcSdrh       addrUniqueOk = sqlite3VdbeMakeLabel(pParse);
16917f5f306bSdrh     }
169284304506Sdrh     if( bAffinityDone==0 && (pUpIdx==0 || pUpIdx==pIdx) ){
169384304506Sdrh       sqlite3TableAffinity(v, pTab, regNewData+1);
169484304506Sdrh       bAffinityDone = 1;
169584304506Sdrh     }
16967f5f306bSdrh     VdbeNoopComment((v, "uniqueness check for %s", pIdx->zName));
16976934fc7bSdrh     iThisCur = iIdxCur+ix;
16987f5f306bSdrh 
1699b2fe7d8cSdrh 
1700f8ffb278Sdrh     /* Skip partial indices for which the WHERE clause is not true */
1701b2b9d3d7Sdrh     if( pIdx->pPartIdxWhere ){
170226198bb4Sdrh       sqlite3VdbeAddOp2(v, OP_Null, 0, aRegIdx[ix]);
17036e97f8ecSdrh       pParse->iSelfTab = -(regNewData+1);
170472bc8208Sdrh       sqlite3ExprIfFalseDup(pParse, pIdx->pPartIdxWhere, addrUniqueOk,
1705b2b9d3d7Sdrh                             SQLITE_JUMPIFNULL);
17066e97f8ecSdrh       pParse->iSelfTab = 0;
1707b2b9d3d7Sdrh     }
1708b2b9d3d7Sdrh 
17096934fc7bSdrh     /* Create a record for this index entry as it should appear after
1710f8ffb278Sdrh     ** the insert or update.  Store that record in the aRegIdx[ix] register
1711f8ffb278Sdrh     */
1712bf2f5739Sdrh     regIdx = aRegIdx[ix]+1;
17139cfcf5d4Sdrh     for(i=0; i<pIdx->nColumn; i++){
17146934fc7bSdrh       int iField = pIdx->aiColumn[i];
1715f82b9afcSdrh       int x;
17164b92f98cSdrh       if( iField==XN_EXPR ){
17176e97f8ecSdrh         pParse->iSelfTab = -(regNewData+1);
17181c75c9d7Sdrh         sqlite3ExprCodeCopy(pParse, pIdx->aColExpr->a[i].pExpr, regIdx+i);
17196e97f8ecSdrh         pParse->iSelfTab = 0;
17201f9ca2c8Sdrh         VdbeComment((v, "%s column %d", pIdx->zName, i));
17211f9ca2c8Sdrh       }else{
17224b92f98cSdrh         if( iField==XN_ROWID || iField==pTab->iPKey ){
1723f82b9afcSdrh           x = regNewData;
17249cfcf5d4Sdrh         }else{
1725f82b9afcSdrh           x = iField + regNewData + 1;
17269cfcf5d4Sdrh         }
1727fed7ac6fSdrh         sqlite3VdbeAddOp2(v, iField<0 ? OP_IntCopy : OP_SCopy, x, regIdx+i);
1728f82b9afcSdrh         VdbeComment((v, "%s", iField<0 ? "rowid" : pTab->aCol[iField].zName));
17299cfcf5d4Sdrh       }
17301f9ca2c8Sdrh     }
173126198bb4Sdrh     sqlite3VdbeAddOp3(v, OP_MakeRecord, regIdx, pIdx->nColumn, aRegIdx[ix]);
173226198bb4Sdrh     VdbeComment((v, "for %s", pIdx->zName));
17337e4acf7bSdrh #ifdef SQLITE_ENABLE_NULL_TRIM
17349df385ecSdrh     if( pIdx->idxType==SQLITE_IDXTYPE_PRIMARYKEY ){
17359df385ecSdrh       sqlite3SetMakeRecordP5(v, pIdx->pTable);
17369df385ecSdrh     }
17377e4acf7bSdrh #endif
1738b2fe7d8cSdrh 
1739f8ffb278Sdrh     /* In an UPDATE operation, if this index is the PRIMARY KEY index
1740f8ffb278Sdrh     ** of a WITHOUT ROWID table and there has been no change the
1741f8ffb278Sdrh     ** primary key, then no collision is possible.  The collision detection
1742f8ffb278Sdrh     ** logic below can all be skipped. */
174300012df4Sdrh     if( isUpdate && pPk==pIdx && pkChng==0 ){
1744da475b8dSdrh       sqlite3VdbeResolveLabel(v, addrUniqueOk);
1745da475b8dSdrh       continue;
1746da475b8dSdrh     }
1747f8ffb278Sdrh 
17486934fc7bSdrh     /* Find out what action to take in case there is a uniqueness conflict */
17499cfcf5d4Sdrh     onError = pIdx->onError;
1750de630353Sdanielk1977     if( onError==OE_None ){
175111e85273Sdrh       sqlite3VdbeResolveLabel(v, addrUniqueOk);
1752de630353Sdanielk1977       continue;  /* pIdx is not a UNIQUE index */
1753de630353Sdanielk1977     }
17549cfcf5d4Sdrh     if( overrideError!=OE_Default ){
17559cfcf5d4Sdrh       onError = overrideError;
1756a996e477Sdrh     }else if( onError==OE_Default ){
1757a996e477Sdrh       onError = OE_Abort;
17589cfcf5d4Sdrh     }
17595383ae5cSdrh 
1760c8a0c90bSdrh     /* Figure out if the upsert clause applies to this index */
1761096fd476Sdrh     if( pUpIdx==pIdx ){
1762c8a0c90bSdrh       if( pUpsert->pUpsertSet==0 ){
1763c8a0c90bSdrh         onError = OE_Ignore;  /* DO NOTHING is the same as INSERT OR IGNORE */
1764c8a0c90bSdrh       }else{
1765c8a0c90bSdrh         onError = OE_Update;  /* DO UPDATE */
1766c8a0c90bSdrh       }
1767c8a0c90bSdrh     }
1768c8a0c90bSdrh 
1769801f55d8Sdrh     /* Collision detection may be omitted if all of the following are true:
1770801f55d8Sdrh     **   (1) The conflict resolution algorithm is REPLACE
1771801f55d8Sdrh     **   (2) The table is a WITHOUT ROWID table
1772801f55d8Sdrh     **   (3) There are no secondary indexes on the table
1773801f55d8Sdrh     **   (4) No delete triggers need to be fired if there is a conflict
1774f9a12a10Sdan     **   (5) No FK constraint counters need to be updated if a conflict occurs.
1775418454c6Sdan     **
1776418454c6Sdan     ** This is not possible for ENABLE_PREUPDATE_HOOK builds, as the row
1777418454c6Sdan     ** must be explicitly deleted in order to ensure any pre-update hook
1778418454c6Sdan     ** is invoked.  */
1779418454c6Sdan #ifndef SQLITE_ENABLE_PREUPDATE_HOOK
1780801f55d8Sdrh     if( (ix==0 && pIdx->pNext==0)                   /* Condition 3 */
1781801f55d8Sdrh      && pPk==pIdx                                   /* Condition 2 */
1782801f55d8Sdrh      && onError==OE_Replace                         /* Condition 1 */
1783801f55d8Sdrh      && ( 0==(db->flags&SQLITE_RecTriggers) ||      /* Condition 4 */
1784801f55d8Sdrh           0==sqlite3TriggersExist(pParse, pTab, TK_DELETE, 0, 0))
1785f9a12a10Sdan      && ( 0==(db->flags&SQLITE_ForeignKeys) ||      /* Condition 5 */
1786f9a12a10Sdan          (0==pTab->pFKey && 0==sqlite3FkReferences(pTab)))
17874e1f0efbSdan     ){
1788c6c9e158Sdrh       sqlite3VdbeResolveLabel(v, addrUniqueOk);
1789c6c9e158Sdrh       continue;
1790c6c9e158Sdrh     }
1791418454c6Sdan #endif /* ifndef SQLITE_ENABLE_PREUPDATE_HOOK */
1792c6c9e158Sdrh 
1793b2fe7d8cSdrh     /* Check to see if the new index entry will be unique */
17944031bafaSdrh     sqlite3VdbeVerifyAbortable(v, onError);
1795*a407eccbSdrh     addrConflictCk =
179626198bb4Sdrh       sqlite3VdbeAddOp4Int(v, OP_NoConflict, iThisCur, addrUniqueOk,
1797688852abSdrh                            regIdx, pIdx->nKeyCol); VdbeCoverage(v);
1798f8ffb278Sdrh 
1799f8ffb278Sdrh     /* Generate code to handle collisions */
1800392ee21dSdrh     regR = (pIdx==pPk) ? regIdx : sqlite3GetTempRange(pParse, nPkField);
180146d03fcbSdrh     if( isUpdate || onError==OE_Replace ){
180211e85273Sdrh       if( HasRowid(pTab) ){
18036934fc7bSdrh         sqlite3VdbeAddOp2(v, OP_IdxRowid, iThisCur, regR);
18040978d4ffSdrh         /* Conflict only if the rowid of the existing index entry
18050978d4ffSdrh         ** is different from old-rowid */
1806f8ffb278Sdrh         if( isUpdate ){
18076934fc7bSdrh           sqlite3VdbeAddOp3(v, OP_Eq, regR, addrUniqueOk, regOldData);
18083d77dee9Sdrh           sqlite3VdbeChangeP5(v, SQLITE_NOTNULL);
1809688852abSdrh           VdbeCoverage(v);
1810f8ffb278Sdrh         }
181126198bb4Sdrh       }else{
1812ccc79f02Sdrh         int x;
181326198bb4Sdrh         /* Extract the PRIMARY KEY from the end of the index entry and
1814da475b8dSdrh         ** store it in registers regR..regR+nPk-1 */
1815a021f121Sdrh         if( pIdx!=pPk ){
181626198bb4Sdrh           for(i=0; i<pPk->nKeyCol; i++){
18174b92f98cSdrh             assert( pPk->aiColumn[i]>=0 );
1818ccc79f02Sdrh             x = sqlite3ColumnOfIndex(pIdx, pPk->aiColumn[i]);
181926198bb4Sdrh             sqlite3VdbeAddOp3(v, OP_Column, iThisCur, x, regR+i);
182026198bb4Sdrh             VdbeComment((v, "%s.%s", pTab->zName,
182126198bb4Sdrh                          pTab->aCol[pPk->aiColumn[i]].zName));
182226198bb4Sdrh           }
1823da475b8dSdrh         }
1824da475b8dSdrh         if( isUpdate ){
1825e83267daSdan           /* If currently processing the PRIMARY KEY of a WITHOUT ROWID
1826e83267daSdan           ** table, only conflict if the new PRIMARY KEY values are actually
1827e83267daSdan           ** different from the old.
1828e83267daSdan           **
1829e83267daSdan           ** For a UNIQUE index, only conflict if the PRIMARY KEY values
1830e83267daSdan           ** of the matched index row are different from the original PRIMARY
1831e83267daSdan           ** KEY values of this row before the update.  */
1832e83267daSdan           int addrJump = sqlite3VdbeCurrentAddr(v)+pPk->nKeyCol;
1833e83267daSdan           int op = OP_Ne;
183448dd1d8eSdrh           int regCmp = (IsPrimaryKeyIndex(pIdx) ? regIdx : regR);
1835e83267daSdan 
1836e83267daSdan           for(i=0; i<pPk->nKeyCol; i++){
1837e83267daSdan             char *p4 = (char*)sqlite3LocateCollSeq(pParse, pPk->azColl[i]);
1838ccc79f02Sdrh             x = pPk->aiColumn[i];
18394b92f98cSdrh             assert( x>=0 );
1840e83267daSdan             if( i==(pPk->nKeyCol-1) ){
1841e83267daSdan               addrJump = addrUniqueOk;
1842e83267daSdan               op = OP_Eq;
184311e85273Sdrh             }
1844e83267daSdan             sqlite3VdbeAddOp4(v, op,
1845e83267daSdan                 regOldData+1+x, addrJump, regCmp+i, p4, P4_COLLSEQ
1846e83267daSdan             );
18473d77dee9Sdrh             sqlite3VdbeChangeP5(v, SQLITE_NOTNULL);
18483d77dee9Sdrh             VdbeCoverageIf(v, op==OP_Eq);
18493d77dee9Sdrh             VdbeCoverageIf(v, op==OP_Ne);
1850da475b8dSdrh           }
185111e85273Sdrh         }
185226198bb4Sdrh       }
185346d03fcbSdrh     }
1854b2fe7d8cSdrh 
1855b2fe7d8cSdrh     /* Generate code that executes if the new index entry is not unique */
1856b84f96f8Sdanielk1977     assert( onError==OE_Rollback || onError==OE_Abort || onError==OE_Fail
18579eddacadSdrh         || onError==OE_Ignore || onError==OE_Replace || onError==OE_Update );
18589cfcf5d4Sdrh     switch( onError ){
18591c92853dSdrh       case OE_Rollback:
18601c92853dSdrh       case OE_Abort:
18611c92853dSdrh       case OE_Fail: {
18629916048bSdrh         testcase( onError==OE_Rollback );
18639916048bSdrh         testcase( onError==OE_Abort );
18649916048bSdrh         testcase( onError==OE_Fail );
1865f9c8ce3cSdrh         sqlite3UniqueConstraint(pParse, onError, pIdx);
18669cfcf5d4Sdrh         break;
18679cfcf5d4Sdrh       }
18689eddacadSdrh #ifndef SQLITE_OMIT_UPSERT
18699eddacadSdrh       case OE_Update: {
18702cc00423Sdan         sqlite3UpsertDoUpdate(pParse, pUpsert, pTab, pIdx, iIdxCur+ix);
18719eddacadSdrh         /* Fall through */
18729eddacadSdrh       }
18739eddacadSdrh #endif
18749cfcf5d4Sdrh       case OE_Ignore: {
18759916048bSdrh         testcase( onError==OE_Ignore );
1876076e85f5Sdrh         sqlite3VdbeGoto(v, ignoreDest);
18779cfcf5d4Sdrh         break;
18789cfcf5d4Sdrh       }
1879098d1684Sdrh       default: {
1880*a407eccbSdrh         int nConflictCk;   /* Number of opcodes in conflict check logic */
1881*a407eccbSdrh 
1882098d1684Sdrh         assert( onError==OE_Replace );
1883*a407eccbSdrh         nConflictCk = sqlite3VdbeCurrentAddr(v) - addrConflictCk;
1884*a407eccbSdrh         if( regTrigCnt ){
1885fecfb318Sdan           sqlite3MultiWrite(pParse);
1886*a407eccbSdrh           nReplaceTrig++;
1887fecfb318Sdan         }
188826198bb4Sdrh         sqlite3GenerateRowDelete(pParse, pTab, pTrigger, iDataCur, iIdxCur,
1889b0264eecSdrh             regR, nPkField, 0, OE_Replace,
189068116939Sdrh             (pIdx==pPk ? ONEPASS_SINGLE : ONEPASS_OFF), iThisCur);
1891*a407eccbSdrh         if( regTrigCnt ){
1892*a407eccbSdrh           VdbeOp *pOp;     /* Conflict check opcode to copy */
1893*a407eccbSdrh           int p2;          /* New P2 value for copied conflict check opcode */
1894*a407eccbSdrh           int addrBypass;  /* Jump destination to bypass recheck logic */
1895*a407eccbSdrh 
1896*a407eccbSdrh           sqlite3VdbeAddOp2(v, OP_AddImm, regTrigCnt, 1); /* incr trigger cnt */
1897*a407eccbSdrh           addrBypass = sqlite3VdbeAddOp0(v, OP_Goto);  /* Bypass recheck */
1898*a407eccbSdrh           VdbeComment((v, "bypass recheck"));
1899*a407eccbSdrh 
1900*a407eccbSdrh           /* Here we insert code that will be invoked after all constraint
1901*a407eccbSdrh           ** checks have run, if and only if one or more replace triggers
1902*a407eccbSdrh           ** fired. */
1903*a407eccbSdrh           sqlite3VdbeResolveLabel(v, lblRecheckOk);
1904*a407eccbSdrh           lblRecheckOk = sqlite3VdbeMakeLabel(pParse);
1905*a407eccbSdrh           if( pIdx->pPartIdxWhere ){
1906*a407eccbSdrh             /* Bypass the recheck if this partial index is not defined
1907*a407eccbSdrh             ** for the current row */
1908*a407eccbSdrh             sqlite3VdbeAddOp2(v, OP_IsNull, regIdx, lblRecheckOk);
1909*a407eccbSdrh             VdbeCoverage(v);
1910*a407eccbSdrh           }
1911*a407eccbSdrh           /* Copy the constraint check code from above, except change
1912*a407eccbSdrh           ** the constraint-ok jump destination to be the address of
1913*a407eccbSdrh           ** the next retest block */
1914*a407eccbSdrh           pOp = sqlite3VdbeGetOp(v, addrConflictCk);
1915*a407eccbSdrh           while( nConflictCk>0 && !db->mallocFailed ){
1916*a407eccbSdrh             if( sqlite3OpcodeProperty[pOp->opcode]&OPFLG_JUMP ){
1917*a407eccbSdrh               p2 = lblRecheckOk;
1918*a407eccbSdrh             }else{
1919*a407eccbSdrh               p2 = pOp->p2;
1920*a407eccbSdrh             }
1921*a407eccbSdrh             if( pOp->opcode!=OP_IdxRowid ){
1922*a407eccbSdrh               sqlite3VdbeAddOp4(v, pOp->opcode, pOp->p1, p2, pOp->p3,
1923*a407eccbSdrh                                 pOp->p4.z, pOp->p4type);
1924*a407eccbSdrh               sqlite3VdbeChangeP5(v, pOp->p5);
1925*a407eccbSdrh             }
1926*a407eccbSdrh             nConflictCk--;
1927*a407eccbSdrh             pOp++;
1928*a407eccbSdrh           }
1929*a407eccbSdrh           /* If the retest fails, issue an abort */
19302da8d6feSdrh           sqlite3UniqueConstraint(pParse, OE_Abort, pIdx);
1931*a407eccbSdrh 
1932*a407eccbSdrh           sqlite3VdbeJumpHere(v, addrBypass); /* Terminate the recheck bypass */
19332da8d6feSdrh         }
19340ca3e24bSdrh         seenReplace = 1;
19359cfcf5d4Sdrh         break;
19369cfcf5d4Sdrh       }
19379cfcf5d4Sdrh     }
19387f5f306bSdrh     if( pUpIdx==pIdx ){
193984304506Sdrh       sqlite3VdbeGoto(v, upsertJump+1);
19407f5f306bSdrh       sqlite3VdbeJumpHere(v, upsertBypass);
19417f5f306bSdrh     }else{
194211e85273Sdrh       sqlite3VdbeResolveLabel(v, addrUniqueOk);
19437f5f306bSdrh     }
1944392ee21dSdrh     if( regR!=regIdx ) sqlite3ReleaseTempRange(pParse, regR, nPkField);
19459cfcf5d4Sdrh   }
194684304506Sdrh 
194784304506Sdrh   /* If the IPK constraint is a REPLACE, run it last */
194884304506Sdrh   if( ipkTop ){
19496214d939Sdrh     sqlite3VdbeGoto(v, ipkTop);
195084304506Sdrh     VdbeComment((v, "Do IPK REPLACE"));
195184304506Sdrh     sqlite3VdbeJumpHere(v, ipkBottom);
195284304506Sdrh   }
1953de630353Sdanielk1977 
1954*a407eccbSdrh   /* Recheck all uniqueness constraints after replace triggers have run */
1955*a407eccbSdrh   testcase( regTrigCnt!=0 && nReplaceTrig==0 );
1956*a407eccbSdrh   if( nReplaceTrig ){
1957*a407eccbSdrh     sqlite3VdbeAddOp2(v, OP_IfNot, regTrigCnt, lblRecheckOk);VdbeCoverage(v);
1958*a407eccbSdrh     if( !pPk ){
1959*a407eccbSdrh       if( isUpdate ){
1960*a407eccbSdrh         sqlite3VdbeAddOp3(v, OP_Eq, regNewData, addrRecheck, regOldData);
1961*a407eccbSdrh         sqlite3VdbeChangeP5(v, SQLITE_NOTNULL);
1962*a407eccbSdrh         VdbeCoverage(v);
1963*a407eccbSdrh       }
1964*a407eccbSdrh       sqlite3VdbeAddOp3(v, OP_NotExists, iDataCur, addrRecheck, regNewData);
1965*a407eccbSdrh       VdbeCoverage(v);
1966*a407eccbSdrh       sqlite3RowidConstraint(pParse, OE_Abort, pTab);
1967*a407eccbSdrh     }else{
1968*a407eccbSdrh       sqlite3VdbeGoto(v, addrRecheck);
1969*a407eccbSdrh     }
1970*a407eccbSdrh     sqlite3VdbeResolveLabel(v, lblRecheckOk);
1971*a407eccbSdrh   }
1972*a407eccbSdrh 
1973a7c3b93fSdrh   /* Generate the table record */
1974a7c3b93fSdrh   if( HasRowid(pTab) ){
1975a7c3b93fSdrh     int regRec = aRegIdx[ix];
1976a7c3b93fSdrh     sqlite3VdbeAddOp3(v, OP_MakeRecord, regNewData+1, pTab->nCol, regRec);
1977a7c3b93fSdrh     sqlite3SetMakeRecordP5(v, pTab);
1978a7c3b93fSdrh     if( !bAffinityDone ){
1979a7c3b93fSdrh       sqlite3TableAffinity(v, pTab, 0);
1980a7c3b93fSdrh     }
1981a7c3b93fSdrh   }
1982a7c3b93fSdrh 
1983de630353Sdanielk1977   *pbMayReplace = seenReplace;
1984ce60aa46Sdrh   VdbeModuleComment((v, "END: GenCnstCks(%d)", seenReplace));
19859cfcf5d4Sdrh }
19860ca3e24bSdrh 
1987d447dcedSdrh #ifdef SQLITE_ENABLE_NULL_TRIM
19880ca3e24bSdrh /*
1989585ce192Sdrh ** Change the P5 operand on the last opcode (which should be an OP_MakeRecord)
1990585ce192Sdrh ** to be the number of columns in table pTab that must not be NULL-trimmed.
1991585ce192Sdrh **
1992585ce192Sdrh ** Or if no columns of pTab may be NULL-trimmed, leave P5 at zero.
1993585ce192Sdrh */
1994585ce192Sdrh void sqlite3SetMakeRecordP5(Vdbe *v, Table *pTab){
1995585ce192Sdrh   u16 i;
1996585ce192Sdrh 
1997585ce192Sdrh   /* Records with omitted columns are only allowed for schema format
1998585ce192Sdrh   ** version 2 and later (SQLite version 3.1.4, 2005-02-20). */
1999585ce192Sdrh   if( pTab->pSchema->file_format<2 ) return;
2000585ce192Sdrh 
20017e4acf7bSdrh   for(i=pTab->nCol-1; i>0; i--){
20027e4acf7bSdrh     if( pTab->aCol[i].pDflt!=0 ) break;
20037e4acf7bSdrh     if( pTab->aCol[i].colFlags & COLFLAG_PRIMKEY ) break;
20047e4acf7bSdrh   }
20057e4acf7bSdrh   sqlite3VdbeChangeP5(v, i+1);
2006585ce192Sdrh }
2007d447dcedSdrh #endif
2008585ce192Sdrh 
20090ca3e24bSdrh /*
20100ca3e24bSdrh ** This routine generates code to finish the INSERT or UPDATE operation
20114adee20fSdanielk1977 ** that was started by a prior call to sqlite3GenerateConstraintChecks.
20126934fc7bSdrh ** A consecutive range of registers starting at regNewData contains the
201304adf416Sdrh ** rowid and the content to be inserted.
20140ca3e24bSdrh **
2015b419a926Sdrh ** The arguments to this routine should be the same as the first six
20164adee20fSdanielk1977 ** arguments to sqlite3GenerateConstraintChecks.
20170ca3e24bSdrh */
20184adee20fSdanielk1977 void sqlite3CompleteInsertion(
20190ca3e24bSdrh   Parse *pParse,      /* The parser context */
20200ca3e24bSdrh   Table *pTab,        /* the table into which we are inserting */
202126198bb4Sdrh   int iDataCur,       /* Cursor of the canonical data source */
202226198bb4Sdrh   int iIdxCur,        /* First index cursor */
20236934fc7bSdrh   int regNewData,     /* Range of content */
2024aa9b8963Sdrh   int *aRegIdx,       /* Register used by each index.  0 for unused indices */
2025f91c1318Sdan   int update_flags,   /* True for UPDATE, False for INSERT */
2026de630353Sdanielk1977   int appendBias,     /* True if this is likely to be an append */
2027de630353Sdanielk1977   int useSeekResult   /* True to set the USESEEKRESULT flag on OP_[Idx]Insert */
20280ca3e24bSdrh ){
20296934fc7bSdrh   Vdbe *v;            /* Prepared statements under construction */
20306934fc7bSdrh   Index *pIdx;        /* An index being inserted or updated */
20316934fc7bSdrh   u8 pik_flags;       /* flag values passed to the btree insert */
20326934fc7bSdrh   int i;              /* Loop counter */
20330ca3e24bSdrh 
2034f91c1318Sdan   assert( update_flags==0
2035f91c1318Sdan        || update_flags==OPFLAG_ISUPDATE
2036f91c1318Sdan        || update_flags==(OPFLAG_ISUPDATE|OPFLAG_SAVEPOSITION)
2037f91c1318Sdan   );
2038f91c1318Sdan 
20394adee20fSdanielk1977   v = sqlite3GetVdbe(pParse);
20400ca3e24bSdrh   assert( v!=0 );
2041417be79cSdrh   assert( pTab->pSelect==0 );  /* This table is not a VIEW */
2042b2b9d3d7Sdrh   for(i=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, i++){
2043aa9b8963Sdrh     if( aRegIdx[i]==0 ) continue;
2044b2b9d3d7Sdrh     if( pIdx->pPartIdxWhere ){
2045b2b9d3d7Sdrh       sqlite3VdbeAddOp2(v, OP_IsNull, aRegIdx[i], sqlite3VdbeCurrentAddr(v)+2);
2046688852abSdrh       VdbeCoverage(v);
2047b2b9d3d7Sdrh     }
2048cb9a3643Sdan     pik_flags = (useSeekResult ? OPFLAG_USESEEKRESULT : 0);
204948dd1d8eSdrh     if( IsPrimaryKeyIndex(pIdx) && !HasRowid(pTab) ){
20504308e348Sdrh       assert( pParse->nested==0 );
20516546af14Sdrh       pik_flags |= OPFLAG_NCHANGE;
2052f91c1318Sdan       pik_flags |= (update_flags & OPFLAG_SAVEPOSITION);
2053cb9a3643Sdan #ifdef SQLITE_ENABLE_PREUPDATE_HOOK
2054cb9a3643Sdan       if( update_flags==0 ){
205550ef6716Sdrh         int r = sqlite3GetTempReg(pParse);
205650ef6716Sdrh         sqlite3VdbeAddOp2(v, OP_Integer, 0, r);
205750ef6716Sdrh         sqlite3VdbeAddOp4(v, OP_Insert,
205850ef6716Sdrh             iIdxCur+i, aRegIdx[i], r, (char*)pTab, P4_TABLE
2059cb9a3643Sdan         );
2060cb9a3643Sdan         sqlite3VdbeChangeP5(v, OPFLAG_ISNOOP);
206150ef6716Sdrh         sqlite3ReleaseTempReg(pParse, r);
2062de630353Sdanielk1977       }
2063cb9a3643Sdan #endif
2064cb9a3643Sdan     }
2065cb9a3643Sdan     sqlite3VdbeAddOp4Int(v, OP_IdxInsert, iIdxCur+i, aRegIdx[i],
2066cb9a3643Sdan                          aRegIdx[i]+1,
2067cb9a3643Sdan                          pIdx->uniqNotNull ? pIdx->nKeyCol: pIdx->nColumn);
20689b34abeeSdrh     sqlite3VdbeChangeP5(v, pik_flags);
20690ca3e24bSdrh   }
2070ec95c441Sdrh   if( !HasRowid(pTab) ) return;
20714794f735Sdrh   if( pParse->nested ){
20724794f735Sdrh     pik_flags = 0;
20734794f735Sdrh   }else{
207494eb6a14Sdanielk1977     pik_flags = OPFLAG_NCHANGE;
2075f91c1318Sdan     pik_flags |= (update_flags?update_flags:OPFLAG_LASTROWID);
20764794f735Sdrh   }
2077e4d90813Sdrh   if( appendBias ){
2078e4d90813Sdrh     pik_flags |= OPFLAG_APPEND;
2079e4d90813Sdrh   }
2080de630353Sdanielk1977   if( useSeekResult ){
2081de630353Sdanielk1977     pik_flags |= OPFLAG_USESEEKRESULT;
2082de630353Sdanielk1977   }
2083a7c3b93fSdrh   sqlite3VdbeAddOp3(v, OP_Insert, iDataCur, aRegIdx[i], regNewData);
208494eb6a14Sdanielk1977   if( !pParse->nested ){
2085f14b7fb7Sdrh     sqlite3VdbeAppendP4(v, pTab, P4_TABLE);
208694eb6a14Sdanielk1977   }
2087b7654111Sdrh   sqlite3VdbeChangeP5(v, pik_flags);
20880ca3e24bSdrh }
2089cd44690aSdrh 
2090cd44690aSdrh /*
209126198bb4Sdrh ** Allocate cursors for the pTab table and all its indices and generate
209226198bb4Sdrh ** code to open and initialized those cursors.
2093aa9b8963Sdrh **
209426198bb4Sdrh ** The cursor for the object that contains the complete data (normally
209526198bb4Sdrh ** the table itself, but the PRIMARY KEY index in the case of a WITHOUT
209626198bb4Sdrh ** ROWID table) is returned in *piDataCur.  The first index cursor is
209726198bb4Sdrh ** returned in *piIdxCur.  The number of indices is returned.
209826198bb4Sdrh **
209926198bb4Sdrh ** Use iBase as the first cursor (either the *piDataCur for rowid tables
210026198bb4Sdrh ** or the first index for WITHOUT ROWID tables) if it is non-negative.
210126198bb4Sdrh ** If iBase is negative, then allocate the next available cursor.
210226198bb4Sdrh **
210326198bb4Sdrh ** For a rowid table, *piDataCur will be exactly one less than *piIdxCur.
210426198bb4Sdrh ** For a WITHOUT ROWID table, *piDataCur will be somewhere in the range
210526198bb4Sdrh ** of *piIdxCurs, depending on where the PRIMARY KEY index appears on the
210626198bb4Sdrh ** pTab->pIndex list.
2107b6b4b79fSdrh **
2108b6b4b79fSdrh ** If pTab is a virtual table, then this routine is a no-op and the
2109b6b4b79fSdrh ** *piDataCur and *piIdxCur values are left uninitialized.
2110cd44690aSdrh */
2111aa9b8963Sdrh int sqlite3OpenTableAndIndices(
2112290c1948Sdrh   Parse *pParse,   /* Parsing context */
2113290c1948Sdrh   Table *pTab,     /* Table to be opened */
211426198bb4Sdrh   int op,          /* OP_OpenRead or OP_OpenWrite */
2115b89aeb6aSdrh   u8 p5,           /* P5 value for OP_Open* opcodes (except on WITHOUT ROWID) */
211626198bb4Sdrh   int iBase,       /* Use this for the table cursor, if there is one */
21176a53499aSdrh   u8 *aToOpen,     /* If not NULL: boolean for each table and index */
211826198bb4Sdrh   int *piDataCur,  /* Write the database source cursor number here */
211926198bb4Sdrh   int *piIdxCur    /* Write the first index cursor number here */
2120290c1948Sdrh ){
2121cd44690aSdrh   int i;
21224cbdda9eSdrh   int iDb;
21236a53499aSdrh   int iDataCur;
2124cd44690aSdrh   Index *pIdx;
21254cbdda9eSdrh   Vdbe *v;
21264cbdda9eSdrh 
212726198bb4Sdrh   assert( op==OP_OpenRead || op==OP_OpenWrite );
2128fd261ec6Sdan   assert( op==OP_OpenWrite || p5==0 );
212926198bb4Sdrh   if( IsVirtual(pTab) ){
2130b6b4b79fSdrh     /* This routine is a no-op for virtual tables. Leave the output
2131b6b4b79fSdrh     ** variables *piDataCur and *piIdxCur uninitialized so that valgrind
2132b6b4b79fSdrh     ** can detect if they are used by mistake in the caller. */
213326198bb4Sdrh     return 0;
213426198bb4Sdrh   }
21354cbdda9eSdrh   iDb = sqlite3SchemaToIndex(pParse->db, pTab->pSchema);
21364cbdda9eSdrh   v = sqlite3GetVdbe(pParse);
2137cd44690aSdrh   assert( v!=0 );
213826198bb4Sdrh   if( iBase<0 ) iBase = pParse->nTab;
21396a53499aSdrh   iDataCur = iBase++;
21406a53499aSdrh   if( piDataCur ) *piDataCur = iDataCur;
21416a53499aSdrh   if( HasRowid(pTab) && (aToOpen==0 || aToOpen[0]) ){
21426a53499aSdrh     sqlite3OpenTable(pParse, iDataCur, iDb, pTab, op);
21436fbe41acSdrh   }else{
214426198bb4Sdrh     sqlite3TableLock(pParse, iDb, pTab->tnum, op==OP_OpenWrite, pTab->zName);
21456fbe41acSdrh   }
21466a53499aSdrh   if( piIdxCur ) *piIdxCur = iBase;
214726198bb4Sdrh   for(i=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, i++){
214826198bb4Sdrh     int iIdxCur = iBase++;
2149da184236Sdanielk1977     assert( pIdx->pSchema==pTab->pSchema );
215061441c34Sdan     if( IsPrimaryKeyIndex(pIdx) && !HasRowid(pTab) ){
215161441c34Sdan       if( piDataCur ) *piDataCur = iIdxCur;
215261441c34Sdan       p5 = 0;
215361441c34Sdan     }
21546a53499aSdrh     if( aToOpen==0 || aToOpen[i+1] ){
21552ec2fb22Sdrh       sqlite3VdbeAddOp3(v, op, iIdxCur, pIdx->tnum, iDb);
21562ec2fb22Sdrh       sqlite3VdbeSetP4KeyInfo(pParse, pIdx);
2157b89aeb6aSdrh       sqlite3VdbeChangeP5(v, p5);
215861441c34Sdan       VdbeComment((v, "%s", pIdx->zName));
2159b89aeb6aSdrh     }
21606a53499aSdrh   }
216126198bb4Sdrh   if( iBase>pParse->nTab ) pParse->nTab = iBase;
216226198bb4Sdrh   return i;
2163cd44690aSdrh }
21649d9cf229Sdrh 
216591c58e23Sdrh 
216691c58e23Sdrh #ifdef SQLITE_TEST
216791c58e23Sdrh /*
216891c58e23Sdrh ** The following global variable is incremented whenever the
216991c58e23Sdrh ** transfer optimization is used.  This is used for testing
217091c58e23Sdrh ** purposes only - to make sure the transfer optimization really
217160ec914cSpeter.d.reid ** is happening when it is supposed to.
217291c58e23Sdrh */
217391c58e23Sdrh int sqlite3_xferopt_count;
217491c58e23Sdrh #endif /* SQLITE_TEST */
217591c58e23Sdrh 
217691c58e23Sdrh 
21779d9cf229Sdrh #ifndef SQLITE_OMIT_XFER_OPT
21789d9cf229Sdrh /*
21799d9cf229Sdrh ** Check to see if index pSrc is compatible as a source of data
21809d9cf229Sdrh ** for index pDest in an insert transfer optimization.  The rules
21819d9cf229Sdrh ** for a compatible index:
21829d9cf229Sdrh **
21839d9cf229Sdrh **    *   The index is over the same set of columns
21849d9cf229Sdrh **    *   The same DESC and ASC markings occurs on all columns
21859d9cf229Sdrh **    *   The same onError processing (OE_Abort, OE_Ignore, etc)
21869d9cf229Sdrh **    *   The same collating sequence on each column
2187b2b9d3d7Sdrh **    *   The index has the exact same WHERE clause
21889d9cf229Sdrh */
21899d9cf229Sdrh static int xferCompatibleIndex(Index *pDest, Index *pSrc){
21909d9cf229Sdrh   int i;
21919d9cf229Sdrh   assert( pDest && pSrc );
21929d9cf229Sdrh   assert( pDest->pTable!=pSrc->pTable );
2193bbbdc83bSdrh   if( pDest->nKeyCol!=pSrc->nKeyCol ){
21949d9cf229Sdrh     return 0;   /* Different number of columns */
21959d9cf229Sdrh   }
21969d9cf229Sdrh   if( pDest->onError!=pSrc->onError ){
21979d9cf229Sdrh     return 0;   /* Different conflict resolution strategies */
21989d9cf229Sdrh   }
2199bbbdc83bSdrh   for(i=0; i<pSrc->nKeyCol; i++){
22009d9cf229Sdrh     if( pSrc->aiColumn[i]!=pDest->aiColumn[i] ){
22019d9cf229Sdrh       return 0;   /* Different columns indexed */
22029d9cf229Sdrh     }
22034b92f98cSdrh     if( pSrc->aiColumn[i]==XN_EXPR ){
22041f9ca2c8Sdrh       assert( pSrc->aColExpr!=0 && pDest->aColExpr!=0 );
22055aa550cfSdan       if( sqlite3ExprCompare(0, pSrc->aColExpr->a[i].pExpr,
22061f9ca2c8Sdrh                              pDest->aColExpr->a[i].pExpr, -1)!=0 ){
22071f9ca2c8Sdrh         return 0;   /* Different expressions in the index */
22081f9ca2c8Sdrh       }
22091f9ca2c8Sdrh     }
22109d9cf229Sdrh     if( pSrc->aSortOrder[i]!=pDest->aSortOrder[i] ){
22119d9cf229Sdrh       return 0;   /* Different sort orders */
22129d9cf229Sdrh     }
22130472af91Sdrh     if( sqlite3_stricmp(pSrc->azColl[i],pDest->azColl[i])!=0 ){
221460a713c6Sdrh       return 0;   /* Different collating sequences */
22159d9cf229Sdrh     }
22169d9cf229Sdrh   }
22175aa550cfSdan   if( sqlite3ExprCompare(0, pSrc->pPartIdxWhere, pDest->pPartIdxWhere, -1) ){
2218b2b9d3d7Sdrh     return 0;     /* Different WHERE clauses */
2219b2b9d3d7Sdrh   }
22209d9cf229Sdrh 
22219d9cf229Sdrh   /* If no test above fails then the indices must be compatible */
22229d9cf229Sdrh   return 1;
22239d9cf229Sdrh }
22249d9cf229Sdrh 
22259d9cf229Sdrh /*
22269d9cf229Sdrh ** Attempt the transfer optimization on INSERTs of the form
22279d9cf229Sdrh **
22289d9cf229Sdrh **     INSERT INTO tab1 SELECT * FROM tab2;
22299d9cf229Sdrh **
2230ccdf1baeSdrh ** The xfer optimization transfers raw records from tab2 over to tab1.
223160ec914cSpeter.d.reid ** Columns are not decoded and reassembled, which greatly improves
2232ccdf1baeSdrh ** performance.  Raw index records are transferred in the same way.
22339d9cf229Sdrh **
2234ccdf1baeSdrh ** The xfer optimization is only attempted if tab1 and tab2 are compatible.
2235ccdf1baeSdrh ** There are lots of rules for determining compatibility - see comments
2236ccdf1baeSdrh ** embedded in the code for details.
22379d9cf229Sdrh **
2238ccdf1baeSdrh ** This routine returns TRUE if the optimization is guaranteed to be used.
2239ccdf1baeSdrh ** Sometimes the xfer optimization will only work if the destination table
2240ccdf1baeSdrh ** is empty - a factor that can only be determined at run-time.  In that
2241ccdf1baeSdrh ** case, this routine generates code for the xfer optimization but also
2242ccdf1baeSdrh ** does a test to see if the destination table is empty and jumps over the
2243ccdf1baeSdrh ** xfer optimization code if the test fails.  In that case, this routine
2244ccdf1baeSdrh ** returns FALSE so that the caller will know to go ahead and generate
2245ccdf1baeSdrh ** an unoptimized transfer.  This routine also returns FALSE if there
2246ccdf1baeSdrh ** is no chance that the xfer optimization can be applied.
22479d9cf229Sdrh **
2248ccdf1baeSdrh ** This optimization is particularly useful at making VACUUM run faster.
22499d9cf229Sdrh */
22509d9cf229Sdrh static int xferOptimization(
22519d9cf229Sdrh   Parse *pParse,        /* Parser context */
22529d9cf229Sdrh   Table *pDest,         /* The table we are inserting into */
22539d9cf229Sdrh   Select *pSelect,      /* A SELECT statement to use as the data source */
22549d9cf229Sdrh   int onError,          /* How to handle constraint errors */
22559d9cf229Sdrh   int iDbDest           /* The database of pDest */
22569d9cf229Sdrh ){
2257e34162b1Sdan   sqlite3 *db = pParse->db;
22589d9cf229Sdrh   ExprList *pEList;                /* The result set of the SELECT */
22599d9cf229Sdrh   Table *pSrc;                     /* The table in the FROM clause of SELECT */
22609d9cf229Sdrh   Index *pSrcIdx, *pDestIdx;       /* Source and destination indices */
22619d9cf229Sdrh   struct SrcList_item *pItem;      /* An element of pSelect->pSrc */
22629d9cf229Sdrh   int i;                           /* Loop counter */
22639d9cf229Sdrh   int iDbSrc;                      /* The database of pSrc */
22649d9cf229Sdrh   int iSrc, iDest;                 /* Cursors from source and destination */
22659d9cf229Sdrh   int addr1, addr2;                /* Loop addresses */
2266da475b8dSdrh   int emptyDestTest = 0;           /* Address of test for empty pDest */
2267da475b8dSdrh   int emptySrcTest = 0;            /* Address of test for empty pSrc */
22689d9cf229Sdrh   Vdbe *v;                         /* The VDBE we are building */
22696a288a33Sdrh   int regAutoinc;                  /* Memory register used by AUTOINC */
2270f33c9fadSdrh   int destHasUniqueIdx = 0;        /* True if pDest has a UNIQUE index */
2271b7654111Sdrh   int regData, regRowid;           /* Registers holding data and rowid */
22729d9cf229Sdrh 
22739d9cf229Sdrh   if( pSelect==0 ){
22749d9cf229Sdrh     return 0;   /* Must be of the form  INSERT INTO ... SELECT ... */
22759d9cf229Sdrh   }
2276ebbf08a0Sdan   if( pParse->pWith || pSelect->pWith ){
2277ebbf08a0Sdan     /* Do not attempt to process this query if there are an WITH clauses
2278ebbf08a0Sdan     ** attached to it. Proceeding may generate a false "no such table: xxx"
2279ebbf08a0Sdan     ** error if pSelect reads from a CTE named "xxx".  */
2280ebbf08a0Sdan     return 0;
2281ebbf08a0Sdan   }
22822f886d1dSdanielk1977   if( sqlite3TriggerList(pParse, pDest) ){
22839d9cf229Sdrh     return 0;   /* tab1 must not have triggers */
22849d9cf229Sdrh   }
22859d9cf229Sdrh #ifndef SQLITE_OMIT_VIRTUALTABLE
228644266ec6Sdrh   if( IsVirtual(pDest) ){
22879d9cf229Sdrh     return 0;   /* tab1 must not be a virtual table */
22889d9cf229Sdrh   }
22899d9cf229Sdrh #endif
22909d9cf229Sdrh   if( onError==OE_Default ){
2291e7224a01Sdrh     if( pDest->iPKey>=0 ) onError = pDest->keyConf;
2292e7224a01Sdrh     if( onError==OE_Default ) onError = OE_Abort;
22939d9cf229Sdrh   }
22945ce240a6Sdanielk1977   assert(pSelect->pSrc);   /* allocated even if there is no FROM clause */
22959d9cf229Sdrh   if( pSelect->pSrc->nSrc!=1 ){
22969d9cf229Sdrh     return 0;   /* FROM clause must have exactly one term */
22979d9cf229Sdrh   }
22989d9cf229Sdrh   if( pSelect->pSrc->a[0].pSelect ){
22999d9cf229Sdrh     return 0;   /* FROM clause cannot contain a subquery */
23009d9cf229Sdrh   }
23019d9cf229Sdrh   if( pSelect->pWhere ){
23029d9cf229Sdrh     return 0;   /* SELECT may not have a WHERE clause */
23039d9cf229Sdrh   }
23049d9cf229Sdrh   if( pSelect->pOrderBy ){
23059d9cf229Sdrh     return 0;   /* SELECT may not have an ORDER BY clause */
23069d9cf229Sdrh   }
23078103b7d2Sdrh   /* Do not need to test for a HAVING clause.  If HAVING is present but
23088103b7d2Sdrh   ** there is no ORDER BY, we will get an error. */
23099d9cf229Sdrh   if( pSelect->pGroupBy ){
23109d9cf229Sdrh     return 0;   /* SELECT may not have a GROUP BY clause */
23119d9cf229Sdrh   }
23129d9cf229Sdrh   if( pSelect->pLimit ){
23139d9cf229Sdrh     return 0;   /* SELECT may not have a LIMIT clause */
23149d9cf229Sdrh   }
23159d9cf229Sdrh   if( pSelect->pPrior ){
23169d9cf229Sdrh     return 0;   /* SELECT may not be a compound query */
23179d9cf229Sdrh   }
23187d10d5a6Sdrh   if( pSelect->selFlags & SF_Distinct ){
23199d9cf229Sdrh     return 0;   /* SELECT may not be DISTINCT */
23209d9cf229Sdrh   }
23219d9cf229Sdrh   pEList = pSelect->pEList;
23229d9cf229Sdrh   assert( pEList!=0 );
23239d9cf229Sdrh   if( pEList->nExpr!=1 ){
23249d9cf229Sdrh     return 0;   /* The result set must have exactly one column */
23259d9cf229Sdrh   }
23269d9cf229Sdrh   assert( pEList->a[0].pExpr );
23271a1d3cd2Sdrh   if( pEList->a[0].pExpr->op!=TK_ASTERISK ){
23289d9cf229Sdrh     return 0;   /* The result set must be the special operator "*" */
23299d9cf229Sdrh   }
23309d9cf229Sdrh 
23319d9cf229Sdrh   /* At this point we have established that the statement is of the
23329d9cf229Sdrh   ** correct syntactic form to participate in this optimization.  Now
23339d9cf229Sdrh   ** we have to check the semantics.
23349d9cf229Sdrh   */
23359d9cf229Sdrh   pItem = pSelect->pSrc->a;
233641fb5cd1Sdan   pSrc = sqlite3LocateTableItem(pParse, 0, pItem);
23379d9cf229Sdrh   if( pSrc==0 ){
23389d9cf229Sdrh     return 0;   /* FROM clause does not contain a real table */
23399d9cf229Sdrh   }
234021908b21Sdrh   if( pSrc->tnum==pDest->tnum && pSrc->pSchema==pDest->pSchema ){
234121908b21Sdrh     testcase( pSrc!=pDest ); /* Possible due to bad sqlite_master.rootpage */
23429d9cf229Sdrh     return 0;   /* tab1 and tab2 may not be the same table */
23439d9cf229Sdrh   }
234455548273Sdrh   if( HasRowid(pDest)!=HasRowid(pSrc) ){
234555548273Sdrh     return 0;   /* source and destination must both be WITHOUT ROWID or not */
234655548273Sdrh   }
23479d9cf229Sdrh #ifndef SQLITE_OMIT_VIRTUALTABLE
234844266ec6Sdrh   if( IsVirtual(pSrc) ){
23499d9cf229Sdrh     return 0;   /* tab2 must not be a virtual table */
23509d9cf229Sdrh   }
23519d9cf229Sdrh #endif
23529d9cf229Sdrh   if( pSrc->pSelect ){
23539d9cf229Sdrh     return 0;   /* tab2 may not be a view */
23549d9cf229Sdrh   }
23559d9cf229Sdrh   if( pDest->nCol!=pSrc->nCol ){
23569d9cf229Sdrh     return 0;   /* Number of columns must be the same in tab1 and tab2 */
23579d9cf229Sdrh   }
23589d9cf229Sdrh   if( pDest->iPKey!=pSrc->iPKey ){
23599d9cf229Sdrh     return 0;   /* Both tables must have the same INTEGER PRIMARY KEY */
23609d9cf229Sdrh   }
23619d9cf229Sdrh   for(i=0; i<pDest->nCol; i++){
23629940e2aaSdan     Column *pDestCol = &pDest->aCol[i];
23639940e2aaSdan     Column *pSrcCol = &pSrc->aCol[i];
2364ba68f8f3Sdan #ifdef SQLITE_ENABLE_HIDDEN_COLUMNS
23658257aa8dSdrh     if( (db->mDbFlags & DBFLAG_Vacuum)==0
2366aaea3143Sdan      && (pDestCol->colFlags | pSrcCol->colFlags) & COLFLAG_HIDDEN
2367aaea3143Sdan     ){
2368ba68f8f3Sdan       return 0;    /* Neither table may have __hidden__ columns */
2369ba68f8f3Sdan     }
2370ba68f8f3Sdan #endif
23719940e2aaSdan     if( pDestCol->affinity!=pSrcCol->affinity ){
23729d9cf229Sdrh       return 0;    /* Affinity must be the same on all columns */
23739d9cf229Sdrh     }
23740472af91Sdrh     if( sqlite3_stricmp(pDestCol->zColl, pSrcCol->zColl)!=0 ){
23759d9cf229Sdrh       return 0;    /* Collating sequence must be the same on all columns */
23769d9cf229Sdrh     }
23779940e2aaSdan     if( pDestCol->notNull && !pSrcCol->notNull ){
23789d9cf229Sdrh       return 0;    /* tab2 must be NOT NULL if tab1 is */
23799d9cf229Sdrh     }
2380453e0261Sdrh     /* Default values for second and subsequent columns need to match. */
238194fa9c41Sdrh     if( i>0 ){
238294fa9c41Sdrh       assert( pDestCol->pDflt==0 || pDestCol->pDflt->op==TK_SPAN );
238394fa9c41Sdrh       assert( pSrcCol->pDflt==0 || pSrcCol->pDflt->op==TK_SPAN );
238494fa9c41Sdrh       if( (pDestCol->pDflt==0)!=(pSrcCol->pDflt==0)
238594fa9c41Sdrh        || (pDestCol->pDflt && strcmp(pDestCol->pDflt->u.zToken,
238694fa9c41Sdrh                                        pSrcCol->pDflt->u.zToken)!=0)
23879940e2aaSdan       ){
23889940e2aaSdan         return 0;    /* Default values must be the same for all columns */
23899940e2aaSdan       }
23909d9cf229Sdrh     }
239194fa9c41Sdrh   }
23929d9cf229Sdrh   for(pDestIdx=pDest->pIndex; pDestIdx; pDestIdx=pDestIdx->pNext){
23935f1d1d9cSdrh     if( IsUniqueIndex(pDestIdx) ){
2394f33c9fadSdrh       destHasUniqueIdx = 1;
2395f33c9fadSdrh     }
23969d9cf229Sdrh     for(pSrcIdx=pSrc->pIndex; pSrcIdx; pSrcIdx=pSrcIdx->pNext){
23979d9cf229Sdrh       if( xferCompatibleIndex(pDestIdx, pSrcIdx) ) break;
23989d9cf229Sdrh     }
23999d9cf229Sdrh     if( pSrcIdx==0 ){
24009d9cf229Sdrh       return 0;    /* pDestIdx has no corresponding index in pSrc */
24019d9cf229Sdrh     }
2402e3bd232eSdrh     if( pSrcIdx->tnum==pDestIdx->tnum && pSrc->pSchema==pDest->pSchema
2403e3bd232eSdrh          && sqlite3FaultSim(411)==SQLITE_OK ){
2404e3bd232eSdrh       /* The sqlite3FaultSim() call allows this corruption test to be
2405e3bd232eSdrh       ** bypassed during testing, in order to exercise other corruption tests
2406e3bd232eSdrh       ** further downstream. */
240786223e8dSdrh       return 0;   /* Corrupt schema - two indexes on the same btree */
240886223e8dSdrh     }
24099d9cf229Sdrh   }
24107fc2f41bSdrh #ifndef SQLITE_OMIT_CHECK
2411619a1305Sdrh   if( pDest->pCheck && sqlite3ExprListCompare(pSrc->pCheck,pDest->pCheck,-1) ){
24128103b7d2Sdrh     return 0;   /* Tables have different CHECK constraints.  Ticket #2252 */
24138103b7d2Sdrh   }
24147fc2f41bSdrh #endif
2415713de341Sdrh #ifndef SQLITE_OMIT_FOREIGN_KEY
2416713de341Sdrh   /* Disallow the transfer optimization if the destination table constains
2417713de341Sdrh   ** any foreign key constraints.  This is more restrictive than necessary.
2418713de341Sdrh   ** But the main beneficiary of the transfer optimization is the VACUUM
2419713de341Sdrh   ** command, and the VACUUM command disables foreign key constraints.  So
2420713de341Sdrh   ** the extra complication to make this rule less restrictive is probably
2421713de341Sdrh   ** not worth the effort.  Ticket [6284df89debdfa61db8073e062908af0c9b6118e]
2422713de341Sdrh   */
2423e34162b1Sdan   if( (db->flags & SQLITE_ForeignKeys)!=0 && pDest->pFKey!=0 ){
2424713de341Sdrh     return 0;
2425713de341Sdrh   }
2426713de341Sdrh #endif
2427e34162b1Sdan   if( (db->flags & SQLITE_CountRows)!=0 ){
2428ccdf1baeSdrh     return 0;  /* xfer opt does not play well with PRAGMA count_changes */
24291696124dSdan   }
24309d9cf229Sdrh 
2431ccdf1baeSdrh   /* If we get this far, it means that the xfer optimization is at
2432ccdf1baeSdrh   ** least a possibility, though it might only work if the destination
2433ccdf1baeSdrh   ** table (tab1) is initially empty.
24349d9cf229Sdrh   */
2435dd73521bSdrh #ifdef SQLITE_TEST
2436dd73521bSdrh   sqlite3_xferopt_count++;
2437dd73521bSdrh #endif
2438e34162b1Sdan   iDbSrc = sqlite3SchemaToIndex(db, pSrc->pSchema);
24399d9cf229Sdrh   v = sqlite3GetVdbe(pParse);
2440f53e9b5aSdrh   sqlite3CodeVerifySchema(pParse, iDbSrc);
24419d9cf229Sdrh   iSrc = pParse->nTab++;
24429d9cf229Sdrh   iDest = pParse->nTab++;
24436a288a33Sdrh   regAutoinc = autoIncBegin(pParse, iDbDest, pDest);
244455548273Sdrh   regData = sqlite3GetTempReg(pParse);
244555548273Sdrh   regRowid = sqlite3GetTempReg(pParse);
24469d9cf229Sdrh   sqlite3OpenTable(pParse, iDest, iDbDest, pDest, OP_OpenWrite);
2447427ebba1Sdan   assert( HasRowid(pDest) || destHasUniqueIdx );
24488257aa8dSdrh   if( (db->mDbFlags & DBFLAG_Vacuum)==0 && (
2449e34162b1Sdan       (pDest->iPKey<0 && pDest->pIndex!=0)          /* (1) */
2450ccdf1baeSdrh    || destHasUniqueIdx                              /* (2) */
2451ccdf1baeSdrh    || (onError!=OE_Abort && onError!=OE_Rollback)   /* (3) */
2452e34162b1Sdan   )){
2453ccdf1baeSdrh     /* In some circumstances, we are able to run the xfer optimization
2454e34162b1Sdan     ** only if the destination table is initially empty. Unless the
24558257aa8dSdrh     ** DBFLAG_Vacuum flag is set, this block generates code to make
24568257aa8dSdrh     ** that determination. If DBFLAG_Vacuum is set, then the destination
2457e34162b1Sdan     ** table is always empty.
2458e34162b1Sdan     **
2459e34162b1Sdan     ** Conditions under which the destination must be empty:
2460f33c9fadSdrh     **
2461ccdf1baeSdrh     ** (1) There is no INTEGER PRIMARY KEY but there are indices.
2462ccdf1baeSdrh     **     (If the destination is not initially empty, the rowid fields
2463ccdf1baeSdrh     **     of index entries might need to change.)
2464ccdf1baeSdrh     **
2465ccdf1baeSdrh     ** (2) The destination has a unique index.  (The xfer optimization
2466ccdf1baeSdrh     **     is unable to test uniqueness.)
2467ccdf1baeSdrh     **
2468ccdf1baeSdrh     ** (3) onError is something other than OE_Abort and OE_Rollback.
24699d9cf229Sdrh     */
2470688852abSdrh     addr1 = sqlite3VdbeAddOp2(v, OP_Rewind, iDest, 0); VdbeCoverage(v);
24712991ba05Sdrh     emptyDestTest = sqlite3VdbeAddOp0(v, OP_Goto);
24729d9cf229Sdrh     sqlite3VdbeJumpHere(v, addr1);
24739d9cf229Sdrh   }
2474427ebba1Sdan   if( HasRowid(pSrc) ){
2475c9b9deaeSdrh     u8 insFlags;
24769d9cf229Sdrh     sqlite3OpenTable(pParse, iSrc, iDbSrc, pSrc, OP_OpenRead);
2477688852abSdrh     emptySrcTest = sqlite3VdbeAddOp2(v, OP_Rewind, iSrc, 0); VdbeCoverage(v);
247842242dedSdrh     if( pDest->iPKey>=0 ){
2479b7654111Sdrh       addr1 = sqlite3VdbeAddOp2(v, OP_Rowid, iSrc, regRowid);
24804031bafaSdrh       sqlite3VdbeVerifyAbortable(v, onError);
2481b7654111Sdrh       addr2 = sqlite3VdbeAddOp3(v, OP_NotExists, iDest, 0, regRowid);
2482688852abSdrh       VdbeCoverage(v);
2483f9c8ce3cSdrh       sqlite3RowidConstraint(pParse, onError, pDest);
24849d9cf229Sdrh       sqlite3VdbeJumpHere(v, addr2);
2485b7654111Sdrh       autoIncStep(pParse, regAutoinc, regRowid);
24864e61e883Sdrh     }else if( pDest->pIndex==0 && !(db->mDbFlags & DBFLAG_VacuumInto) ){
2487b7654111Sdrh       addr1 = sqlite3VdbeAddOp2(v, OP_NewRowid, iDest, regRowid);
248895bad4c7Sdrh     }else{
2489b7654111Sdrh       addr1 = sqlite3VdbeAddOp2(v, OP_Rowid, iSrc, regRowid);
24907d10d5a6Sdrh       assert( (pDest->tabFlags & TF_Autoincrement)==0 );
249195bad4c7Sdrh     }
2492e7b554d6Sdrh     sqlite3VdbeAddOp3(v, OP_RowData, iSrc, regData, 1);
24938257aa8dSdrh     if( db->mDbFlags & DBFLAG_Vacuum ){
249486b40dfdSdrh       sqlite3VdbeAddOp1(v, OP_SeekEnd, iDest);
2495c9b9deaeSdrh       insFlags = OPFLAG_NCHANGE|OPFLAG_LASTROWID|
2496c9b9deaeSdrh                            OPFLAG_APPEND|OPFLAG_USESEEKRESULT;
2497c9b9deaeSdrh     }else{
2498c9b9deaeSdrh       insFlags = OPFLAG_NCHANGE|OPFLAG_LASTROWID|OPFLAG_APPEND;
2499c9b9deaeSdrh     }
25009b34abeeSdrh     sqlite3VdbeAddOp4(v, OP_Insert, iDest, regData, regRowid,
250120f272c9Sdrh                       (char*)pDest, P4_TABLE);
2502c9b9deaeSdrh     sqlite3VdbeChangeP5(v, insFlags);
2503688852abSdrh     sqlite3VdbeAddOp2(v, OP_Next, iSrc, addr1); VdbeCoverage(v);
250455548273Sdrh     sqlite3VdbeAddOp2(v, OP_Close, iSrc, 0);
250555548273Sdrh     sqlite3VdbeAddOp2(v, OP_Close, iDest, 0);
2506da475b8dSdrh   }else{
2507da475b8dSdrh     sqlite3TableLock(pParse, iDbDest, pDest->tnum, 1, pDest->zName);
2508da475b8dSdrh     sqlite3TableLock(pParse, iDbSrc, pSrc->tnum, 0, pSrc->zName);
250955548273Sdrh   }
25109d9cf229Sdrh   for(pDestIdx=pDest->pIndex; pDestIdx; pDestIdx=pDestIdx->pNext){
251141b9ca25Sdrh     u8 idxInsFlags = 0;
25121b7ecbb4Sdrh     for(pSrcIdx=pSrc->pIndex; ALWAYS(pSrcIdx); pSrcIdx=pSrcIdx->pNext){
25139d9cf229Sdrh       if( xferCompatibleIndex(pDestIdx, pSrcIdx) ) break;
25149d9cf229Sdrh     }
25159d9cf229Sdrh     assert( pSrcIdx );
25162ec2fb22Sdrh     sqlite3VdbeAddOp3(v, OP_OpenRead, iSrc, pSrcIdx->tnum, iDbSrc);
25172ec2fb22Sdrh     sqlite3VdbeSetP4KeyInfo(pParse, pSrcIdx);
2518d4e70ebdSdrh     VdbeComment((v, "%s", pSrcIdx->zName));
25192ec2fb22Sdrh     sqlite3VdbeAddOp3(v, OP_OpenWrite, iDest, pDestIdx->tnum, iDbDest);
25202ec2fb22Sdrh     sqlite3VdbeSetP4KeyInfo(pParse, pDestIdx);
252159885728Sdan     sqlite3VdbeChangeP5(v, OPFLAG_BULKCSR);
2522207872a4Sdanielk1977     VdbeComment((v, "%s", pDestIdx->zName));
2523688852abSdrh     addr1 = sqlite3VdbeAddOp2(v, OP_Rewind, iSrc, 0); VdbeCoverage(v);
2524e7b554d6Sdrh     sqlite3VdbeAddOp3(v, OP_RowData, iSrc, regData, 1);
25258257aa8dSdrh     if( db->mDbFlags & DBFLAG_Vacuum ){
2526e34162b1Sdan       /* This INSERT command is part of a VACUUM operation, which guarantees
2527e34162b1Sdan       ** that the destination table is empty. If all indexed columns use
2528e34162b1Sdan       ** collation sequence BINARY, then it can also be assumed that the
2529e34162b1Sdan       ** index will be populated by inserting keys in strictly sorted
2530e34162b1Sdan       ** order. In this case, instead of seeking within the b-tree as part
253186b40dfdSdrh       ** of every OP_IdxInsert opcode, an OP_SeekEnd is added before the
2532e34162b1Sdan       ** OP_IdxInsert to seek to the point within the b-tree where each key
2533e34162b1Sdan       ** should be inserted. This is faster.
2534e34162b1Sdan       **
2535e34162b1Sdan       ** If any of the indexed columns use a collation sequence other than
2536e34162b1Sdan       ** BINARY, this optimization is disabled. This is because the user
2537e34162b1Sdan       ** might change the definition of a collation sequence and then run
2538e34162b1Sdan       ** a VACUUM command. In that case keys may not be written in strictly
2539e34162b1Sdan       ** sorted order.  */
2540e34162b1Sdan       for(i=0; i<pSrcIdx->nColumn; i++){
2541f19aa5faSdrh         const char *zColl = pSrcIdx->azColl[i];
2542f19aa5faSdrh         if( sqlite3_stricmp(sqlite3StrBINARY, zColl) ) break;
2543e34162b1Sdan       }
2544e34162b1Sdan       if( i==pSrcIdx->nColumn ){
254541b9ca25Sdrh         idxInsFlags = OPFLAG_USESEEKRESULT;
254686b40dfdSdrh         sqlite3VdbeAddOp1(v, OP_SeekEnd, iDest);
2547e34162b1Sdan       }
2548e34162b1Sdan     }
25499df385ecSdrh     if( !HasRowid(pSrc) && pDestIdx->idxType==SQLITE_IDXTYPE_PRIMARYKEY ){
255041b9ca25Sdrh       idxInsFlags |= OPFLAG_NCHANGE;
255141b9ca25Sdrh     }
25529b4eaebcSdrh     sqlite3VdbeAddOp2(v, OP_IdxInsert, iDest, regData);
25539b4eaebcSdrh     sqlite3VdbeChangeP5(v, idxInsFlags|OPFLAG_APPEND);
2554688852abSdrh     sqlite3VdbeAddOp2(v, OP_Next, iSrc, addr1+1); VdbeCoverage(v);
25559d9cf229Sdrh     sqlite3VdbeJumpHere(v, addr1);
255655548273Sdrh     sqlite3VdbeAddOp2(v, OP_Close, iSrc, 0);
255755548273Sdrh     sqlite3VdbeAddOp2(v, OP_Close, iDest, 0);
25589d9cf229Sdrh   }
2559aceb31b1Sdrh   if( emptySrcTest ) sqlite3VdbeJumpHere(v, emptySrcTest);
2560b7654111Sdrh   sqlite3ReleaseTempReg(pParse, regRowid);
2561b7654111Sdrh   sqlite3ReleaseTempReg(pParse, regData);
25629d9cf229Sdrh   if( emptyDestTest ){
25631dd518cfSdrh     sqlite3AutoincrementEnd(pParse);
256466a5167bSdrh     sqlite3VdbeAddOp2(v, OP_Halt, SQLITE_OK, 0);
25659d9cf229Sdrh     sqlite3VdbeJumpHere(v, emptyDestTest);
256666a5167bSdrh     sqlite3VdbeAddOp2(v, OP_Close, iDest, 0);
25679d9cf229Sdrh     return 0;
25689d9cf229Sdrh   }else{
25699d9cf229Sdrh     return 1;
25709d9cf229Sdrh   }
25719d9cf229Sdrh }
25729d9cf229Sdrh #endif /* SQLITE_OMIT_XFER_OPT */
2573