xref: /sqlite-3.40.0/src/insert.c (revision 463e76ff)
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) ){
400b0b3a95Sdrh     sqlite3VdbeAddOp4Int(v, opcode, iCur, pTab->tnum, iDb, pTab->nNVCol);
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){
132ab45fc04Sdrh   int i, j;
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 
142ab45fc04Sdrh     for(i=j=0; i<pTab->nCol; i++){
14396fb16eeSdrh       assert( pTab->aCol[i].affinity!=0 );
144ab45fc04Sdrh       if( (pTab->aCol[i].colFlags & COLFLAG_VIRTUAL)==0 ){
145ab45fc04Sdrh         zColAff[j++] = pTab->aCol[i].affinity;
146ab45fc04Sdrh       }
1473d1bfeaaSdanielk1977     }
14857bf4a8eSdrh     do{
149ab45fc04Sdrh       zColAff[j--] = 0;
150ab45fc04Sdrh     }while( j>=0 && zColAff[j]<=SQLITE_AFF_BLOB );
1513d1bfeaaSdanielk1977     pTab->zColAff = zColAff;
1523d1bfeaaSdanielk1977   }
1537301e774Sdrh   assert( zColAff!=0 );
1547301e774Sdrh   i = sqlite3Strlen30NN(zColAff);
15557bf4a8eSdrh   if( i ){
15657bf4a8eSdrh     if( iReg ){
15757bf4a8eSdrh       sqlite3VdbeAddOp4(v, OP_Affinity, iReg, i, 0, zColAff, i);
15857bf4a8eSdrh     }else{
15957bf4a8eSdrh       sqlite3VdbeChangeP4(v, -1, zColAff, i);
16057bf4a8eSdrh     }
16157bf4a8eSdrh   }
1623d1bfeaaSdanielk1977 }
1633d1bfeaaSdanielk1977 
1644d88778bSdanielk1977 /*
16548d1178aSdrh ** Return non-zero if the table pTab in database iDb or any of its indices
166b6e8fd10Sdrh ** have been opened at any point in the VDBE program. This is used to see if
16748d1178aSdrh ** a statement of the form  "INSERT INTO <iDb, pTab> SELECT ..." can
168b6e8fd10Sdrh ** run without using a temporary table for the results of the SELECT.
1694d88778bSdanielk1977 */
17005a86c5cSdrh static int readsTable(Parse *p, int iDb, Table *pTab){
171595a523aSdanielk1977   Vdbe *v = sqlite3GetVdbe(p);
1724d88778bSdanielk1977   int i;
17348d1178aSdrh   int iEnd = sqlite3VdbeCurrentAddr(v);
174595a523aSdanielk1977 #ifndef SQLITE_OMIT_VIRTUALTABLE
175595a523aSdanielk1977   VTable *pVTab = IsVirtual(pTab) ? sqlite3GetVTable(p->db, pTab) : 0;
176595a523aSdanielk1977 #endif
177595a523aSdanielk1977 
17805a86c5cSdrh   for(i=1; i<iEnd; i++){
17948d1178aSdrh     VdbeOp *pOp = sqlite3VdbeGetOp(v, i);
180ef0bea92Sdrh     assert( pOp!=0 );
181207872a4Sdanielk1977     if( pOp->opcode==OP_OpenRead && pOp->p3==iDb ){
18248d1178aSdrh       Index *pIndex;
183207872a4Sdanielk1977       int tnum = pOp->p2;
18448d1178aSdrh       if( tnum==pTab->tnum ){
18548d1178aSdrh         return 1;
18648d1178aSdrh       }
18748d1178aSdrh       for(pIndex=pTab->pIndex; pIndex; pIndex=pIndex->pNext){
18848d1178aSdrh         if( tnum==pIndex->tnum ){
18948d1178aSdrh           return 1;
19048d1178aSdrh         }
19148d1178aSdrh       }
19248d1178aSdrh     }
193543165efSdrh #ifndef SQLITE_OMIT_VIRTUALTABLE
194595a523aSdanielk1977     if( pOp->opcode==OP_VOpen && pOp->p4.pVtab==pVTab ){
1952dca4ac1Sdanielk1977       assert( pOp->p4.pVtab!=0 );
19666a5167bSdrh       assert( pOp->p4type==P4_VTAB );
19748d1178aSdrh       return 1;
1984d88778bSdanielk1977     }
199543165efSdrh #endif
2004d88778bSdanielk1977   }
2014d88778bSdanielk1977   return 0;
2024d88778bSdanielk1977 }
2033d1bfeaaSdanielk1977 
204c1431144Sdrh #ifndef SQLITE_OMIT_GENERATED_COLUMNS
205c1431144Sdrh /*
206c1431144Sdrh ** All regular columns for table pTab have been puts into registers
207c1431144Sdrh ** starting with iRegStore.  The registers that correspond to STORED
208c1431144Sdrh ** columns have not been initialized.  This routine goes back and computes
209c1431144Sdrh ** the values for STORED columns based on the previously computed normal
210c1431144Sdrh ** columns.
211c1431144Sdrh */
212c1431144Sdrh void sqlite3ComputeStoredColumns(
213c1431144Sdrh   Parse *pParse,    /* Parsing context */
214c1431144Sdrh   int iRegStore,    /* Register holding the first column */
215c1431144Sdrh   Table *pTab       /* The table */
216c1431144Sdrh ){
217c1431144Sdrh   int i;
2189942ef0dSdrh   /* Because there can be multiple STORED columns that refer to one another,
2199942ef0dSdrh   ** either directly or through VIRTUAL columns, this is a two pass
2209942ef0dSdrh   ** algorithm.  On the first pass, mark all STORED columns as NOT-AVAILABLE.
2219942ef0dSdrh   */
2229942ef0dSdrh   for(i=0; i<pTab->nCol; i++){
2239942ef0dSdrh     if( pTab->aCol[i].colFlags & COLFLAG_STORED ){
2249942ef0dSdrh       pTab->aCol[i].colFlags |= COLFLAG_NOTAVAIL;
2259942ef0dSdrh     }
2269942ef0dSdrh   }
2279942ef0dSdrh   /* On the second pass, compute the value of each NOT-AVAILABLE column.
2289942ef0dSdrh   ** Companion code in the TK_COLUMN case of sqlite3ExprCodeTarget() will
2299942ef0dSdrh   ** compute dependencies and mark remove the COLSPAN_NOTAVAIL mark, as
2309942ef0dSdrh   ** they are needed.
2319942ef0dSdrh   */
232c1431144Sdrh   pParse->iSelfTab = -iRegStore;
233c1431144Sdrh   for(i=0; i<pTab->nCol; i++, iRegStore++){
234c1431144Sdrh     u32 colFlags = pTab->aCol[i].colFlags;
235c1431144Sdrh     if( (colFlags & COLFLAG_VIRTUAL)!=0 ){
236d4cd292cSdrh       /* Virtual columns are not stored */
237c1431144Sdrh       iRegStore--;
2389942ef0dSdrh     }else if( (colFlags & COLFLAG_NOTAVAIL)!=0 ){
239c1431144Sdrh       /* Stored columns are handled on the second pass */
240c1431144Sdrh       sqlite3ExprCode(pParse, pTab->aCol[i].pDflt, iRegStore);
2419942ef0dSdrh       colFlags &= ~COLFLAG_NOTAVAIL;
242c1431144Sdrh     }
243c1431144Sdrh   }
244c1431144Sdrh   pParse->iSelfTab = 0;
245c1431144Sdrh }
246c1431144Sdrh #endif /* SQLITE_OMIT_GENERATED_COLUMNS */
247c1431144Sdrh 
248c1431144Sdrh 
2499d9cf229Sdrh #ifndef SQLITE_OMIT_AUTOINCREMENT
2509d9cf229Sdrh /*
2510b9f50d8Sdrh ** Locate or create an AutoincInfo structure associated with table pTab
2520b9f50d8Sdrh ** which is in database iDb.  Return the register number for the register
2539ef5e770Sdrh ** that holds the maximum rowid.  Return zero if pTab is not an AUTOINCREMENT
2549ef5e770Sdrh ** table.  (Also return zero when doing a VACUUM since we do not want to
2559ef5e770Sdrh ** update the AUTOINCREMENT counters during a VACUUM.)
2569d9cf229Sdrh **
2570b9f50d8Sdrh ** There is at most one AutoincInfo structure per table even if the
2580b9f50d8Sdrh ** same table is autoincremented multiple times due to inserts within
2590b9f50d8Sdrh ** triggers.  A new AutoincInfo structure is created if this is the
2600b9f50d8Sdrh ** first use of table pTab.  On 2nd and subsequent uses, the original
2610b9f50d8Sdrh ** AutoincInfo structure is used.
2629d9cf229Sdrh **
263c8abbc11Sdrh ** Four consecutive registers are allocated:
2640b9f50d8Sdrh **
265c8abbc11Sdrh **   (1)  The name of the pTab table.
266c8abbc11Sdrh **   (2)  The maximum ROWID of pTab.
267c8abbc11Sdrh **   (3)  The rowid in sqlite_sequence of pTab
268c8abbc11Sdrh **   (4)  The original value of the max ROWID in pTab, or NULL if none
2690b9f50d8Sdrh **
2700b9f50d8Sdrh ** The 2nd register is the one that is returned.  That is all the
2710b9f50d8Sdrh ** insert routine needs to know about.
2729d9cf229Sdrh */
2739d9cf229Sdrh static int autoIncBegin(
2749d9cf229Sdrh   Parse *pParse,      /* Parsing context */
2759d9cf229Sdrh   int iDb,            /* Index of the database holding pTab */
2769d9cf229Sdrh   Table *pTab         /* The table we are writing to */
2779d9cf229Sdrh ){
2786a288a33Sdrh   int memId = 0;      /* Register holding maximum rowid */
279186ebd41Sdrh   assert( pParse->db->aDb[iDb].pSchema!=0 );
2809ef5e770Sdrh   if( (pTab->tabFlags & TF_Autoincrement)!=0
2818257aa8dSdrh    && (pParse->db->mDbFlags & DBFLAG_Vacuum)==0
2829ef5e770Sdrh   ){
28365a7cd16Sdan     Parse *pToplevel = sqlite3ParseToplevel(pParse);
2840b9f50d8Sdrh     AutoincInfo *pInfo;
285186ebd41Sdrh     Table *pSeqTab = pParse->db->aDb[iDb].pSchema->pSeqTab;
286186ebd41Sdrh 
287186ebd41Sdrh     /* Verify that the sqlite_sequence table exists and is an ordinary
288186ebd41Sdrh     ** rowid table with exactly two columns.
289186ebd41Sdrh     ** Ticket d8dc2b3a58cd5dc2918a1d4acb 2018-05-23 */
290186ebd41Sdrh     if( pSeqTab==0
291186ebd41Sdrh      || !HasRowid(pSeqTab)
292186ebd41Sdrh      || IsVirtual(pSeqTab)
293186ebd41Sdrh      || pSeqTab->nCol!=2
294186ebd41Sdrh     ){
295186ebd41Sdrh       pParse->nErr++;
296186ebd41Sdrh       pParse->rc = SQLITE_CORRUPT_SEQUENCE;
297186ebd41Sdrh       return 0;
298186ebd41Sdrh     }
2990b9f50d8Sdrh 
30065a7cd16Sdan     pInfo = pToplevel->pAinc;
3010b9f50d8Sdrh     while( pInfo && pInfo->pTab!=pTab ){ pInfo = pInfo->pNext; }
3020b9f50d8Sdrh     if( pInfo==0 ){
303575fad65Sdrh       pInfo = sqlite3DbMallocRawNN(pParse->db, sizeof(*pInfo));
3040b9f50d8Sdrh       if( pInfo==0 ) return 0;
30565a7cd16Sdan       pInfo->pNext = pToplevel->pAinc;
30665a7cd16Sdan       pToplevel->pAinc = pInfo;
3070b9f50d8Sdrh       pInfo->pTab = pTab;
3080b9f50d8Sdrh       pInfo->iDb = iDb;
30965a7cd16Sdan       pToplevel->nMem++;                  /* Register to hold name of table */
31065a7cd16Sdan       pInfo->regCtr = ++pToplevel->nMem;  /* Max rowid register */
311c8abbc11Sdrh       pToplevel->nMem +=2;       /* Rowid in sqlite_sequence + orig max val */
3120b9f50d8Sdrh     }
3130b9f50d8Sdrh     memId = pInfo->regCtr;
3149d9cf229Sdrh   }
3159d9cf229Sdrh   return memId;
3169d9cf229Sdrh }
3179d9cf229Sdrh 
3189d9cf229Sdrh /*
3190b9f50d8Sdrh ** This routine generates code that will initialize all of the
3200b9f50d8Sdrh ** register used by the autoincrement tracker.
3210b9f50d8Sdrh */
3220b9f50d8Sdrh void sqlite3AutoincrementBegin(Parse *pParse){
3230b9f50d8Sdrh   AutoincInfo *p;            /* Information about an AUTOINCREMENT */
3240b9f50d8Sdrh   sqlite3 *db = pParse->db;  /* The database connection */
3250b9f50d8Sdrh   Db *pDb;                   /* Database only autoinc table */
3260b9f50d8Sdrh   int memId;                 /* Register holding max rowid */
3270b9f50d8Sdrh   Vdbe *v = pParse->pVdbe;   /* VDBE under construction */
3280b9f50d8Sdrh 
329345ba7dbSdrh   /* This routine is never called during trigger-generation.  It is
330345ba7dbSdrh   ** only called from the top-level */
331345ba7dbSdrh   assert( pParse->pTriggerTab==0 );
332c149f18fSdrh   assert( sqlite3IsToplevel(pParse) );
33376d462eeSdan 
3340b9f50d8Sdrh   assert( v );   /* We failed long ago if this is not so */
3350b9f50d8Sdrh   for(p = pParse->pAinc; p; p = p->pNext){
3361b32554bSdrh     static const int iLn = VDBE_OFFSET_LINENO(2);
3371b32554bSdrh     static const VdbeOpList autoInc[] = {
3381b32554bSdrh       /* 0  */ {OP_Null,    0,  0, 0},
339c8abbc11Sdrh       /* 1  */ {OP_Rewind,  0, 10, 0},
3401b32554bSdrh       /* 2  */ {OP_Column,  0,  0, 0},
341c8abbc11Sdrh       /* 3  */ {OP_Ne,      0,  9, 0},
3421b32554bSdrh       /* 4  */ {OP_Rowid,   0,  0, 0},
3431b32554bSdrh       /* 5  */ {OP_Column,  0,  1, 0},
344c8abbc11Sdrh       /* 6  */ {OP_AddImm,  0,  0, 0},
345c8abbc11Sdrh       /* 7  */ {OP_Copy,    0,  0, 0},
346c8abbc11Sdrh       /* 8  */ {OP_Goto,    0, 11, 0},
347c8abbc11Sdrh       /* 9  */ {OP_Next,    0,  2, 0},
348c8abbc11Sdrh       /* 10 */ {OP_Integer, 0,  0, 0},
349c8abbc11Sdrh       /* 11 */ {OP_Close,   0,  0, 0}
3501b32554bSdrh     };
3511b32554bSdrh     VdbeOp *aOp;
3520b9f50d8Sdrh     pDb = &db->aDb[p->iDb];
3530b9f50d8Sdrh     memId = p->regCtr;
3542120608eSdrh     assert( sqlite3SchemaMutexHeld(db, 0, pDb->pSchema) );
3550b9f50d8Sdrh     sqlite3OpenTable(pParse, 0, p->iDb, pDb->pSchema->pSeqTab, OP_OpenRead);
356076e85f5Sdrh     sqlite3VdbeLoadString(v, memId-1, p->pTab->zName);
3571b32554bSdrh     aOp = sqlite3VdbeAddOpList(v, ArraySize(autoInc), autoInc, iLn);
3581b32554bSdrh     if( aOp==0 ) break;
3591b32554bSdrh     aOp[0].p2 = memId;
360c8abbc11Sdrh     aOp[0].p3 = memId+2;
3611b32554bSdrh     aOp[2].p3 = memId;
3621b32554bSdrh     aOp[3].p1 = memId-1;
3631b32554bSdrh     aOp[3].p3 = memId;
3641b32554bSdrh     aOp[3].p5 = SQLITE_JUMPIFNULL;
3651b32554bSdrh     aOp[4].p2 = memId+1;
3661b32554bSdrh     aOp[5].p3 = memId;
367c8abbc11Sdrh     aOp[6].p1 = memId;
368c8abbc11Sdrh     aOp[7].p2 = memId+2;
369c8abbc11Sdrh     aOp[7].p1 = memId;
370c8abbc11Sdrh     aOp[10].p2 = memId;
37104ab586bSdrh     if( pParse->nTab==0 ) pParse->nTab = 1;
3720b9f50d8Sdrh   }
3730b9f50d8Sdrh }
3740b9f50d8Sdrh 
3750b9f50d8Sdrh /*
3769d9cf229Sdrh ** Update the maximum rowid for an autoincrement calculation.
3779d9cf229Sdrh **
3781b32554bSdrh ** This routine should be called when the regRowid register holds a
3799d9cf229Sdrh ** new rowid that is about to be inserted.  If that new rowid is
3809d9cf229Sdrh ** larger than the maximum rowid in the memId memory cell, then the
3811b32554bSdrh ** memory cell is updated.
3829d9cf229Sdrh */
3836a288a33Sdrh static void autoIncStep(Parse *pParse, int memId, int regRowid){
3849d9cf229Sdrh   if( memId>0 ){
3856a288a33Sdrh     sqlite3VdbeAddOp2(pParse->pVdbe, OP_MemMax, memId, regRowid);
3869d9cf229Sdrh   }
3879d9cf229Sdrh }
3889d9cf229Sdrh 
3899d9cf229Sdrh /*
3900b9f50d8Sdrh ** This routine generates the code needed to write autoincrement
3910b9f50d8Sdrh ** maximum rowid values back into the sqlite_sequence register.
3920b9f50d8Sdrh ** Every statement that might do an INSERT into an autoincrement
3930b9f50d8Sdrh ** table (either directly or through triggers) needs to call this
3940b9f50d8Sdrh ** routine just before the "exit" code.
3959d9cf229Sdrh */
3961b32554bSdrh static SQLITE_NOINLINE void autoIncrementEnd(Parse *pParse){
3970b9f50d8Sdrh   AutoincInfo *p;
3989d9cf229Sdrh   Vdbe *v = pParse->pVdbe;
3990b9f50d8Sdrh   sqlite3 *db = pParse->db;
4006a288a33Sdrh 
4019d9cf229Sdrh   assert( v );
4020b9f50d8Sdrh   for(p = pParse->pAinc; p; p = p->pNext){
4031b32554bSdrh     static const int iLn = VDBE_OFFSET_LINENO(2);
4041b32554bSdrh     static const VdbeOpList autoIncEnd[] = {
4051b32554bSdrh       /* 0 */ {OP_NotNull,     0, 2, 0},
4061b32554bSdrh       /* 1 */ {OP_NewRowid,    0, 0, 0},
4071b32554bSdrh       /* 2 */ {OP_MakeRecord,  0, 2, 0},
4081b32554bSdrh       /* 3 */ {OP_Insert,      0, 0, 0},
4091b32554bSdrh       /* 4 */ {OP_Close,       0, 0, 0}
4101b32554bSdrh     };
4111b32554bSdrh     VdbeOp *aOp;
4120b9f50d8Sdrh     Db *pDb = &db->aDb[p->iDb];
4130b9f50d8Sdrh     int iRec;
4140b9f50d8Sdrh     int memId = p->regCtr;
4150b9f50d8Sdrh 
4160b9f50d8Sdrh     iRec = sqlite3GetTempReg(pParse);
4172120608eSdrh     assert( sqlite3SchemaMutexHeld(db, 0, pDb->pSchema) );
418c8abbc11Sdrh     sqlite3VdbeAddOp3(v, OP_Le, memId+2, sqlite3VdbeCurrentAddr(v)+7, memId);
419c8abbc11Sdrh     VdbeCoverage(v);
4200b9f50d8Sdrh     sqlite3OpenTable(pParse, 0, p->iDb, pDb->pSchema->pSeqTab, OP_OpenWrite);
4211b32554bSdrh     aOp = sqlite3VdbeAddOpList(v, ArraySize(autoIncEnd), autoIncEnd, iLn);
4221b32554bSdrh     if( aOp==0 ) break;
4231b32554bSdrh     aOp[0].p1 = memId+1;
4241b32554bSdrh     aOp[1].p2 = memId+1;
4251b32554bSdrh     aOp[2].p1 = memId-1;
4261b32554bSdrh     aOp[2].p3 = iRec;
4271b32554bSdrh     aOp[3].p2 = iRec;
4281b32554bSdrh     aOp[3].p3 = memId+1;
4291b32554bSdrh     aOp[3].p5 = OPFLAG_APPEND;
4300b9f50d8Sdrh     sqlite3ReleaseTempReg(pParse, iRec);
4319d9cf229Sdrh   }
4329d9cf229Sdrh }
4331b32554bSdrh void sqlite3AutoincrementEnd(Parse *pParse){
4341b32554bSdrh   if( pParse->pAinc ) autoIncrementEnd(pParse);
4351b32554bSdrh }
4369d9cf229Sdrh #else
4379d9cf229Sdrh /*
4389d9cf229Sdrh ** If SQLITE_OMIT_AUTOINCREMENT is defined, then the three routines
4399d9cf229Sdrh ** above are all no-ops
4409d9cf229Sdrh */
4419d9cf229Sdrh # define autoIncBegin(A,B,C) (0)
442287fb61cSdanielk1977 # define autoIncStep(A,B,C)
4439d9cf229Sdrh #endif /* SQLITE_OMIT_AUTOINCREMENT */
4449d9cf229Sdrh 
4459d9cf229Sdrh 
4469d9cf229Sdrh /* Forward declaration */
4479d9cf229Sdrh static int xferOptimization(
4489d9cf229Sdrh   Parse *pParse,        /* Parser context */
4499d9cf229Sdrh   Table *pDest,         /* The table we are inserting into */
4509d9cf229Sdrh   Select *pSelect,      /* A SELECT statement to use as the data source */
4519d9cf229Sdrh   int onError,          /* How to handle constraint errors */
4529d9cf229Sdrh   int iDbDest           /* The database of pDest */
4539d9cf229Sdrh );
4549d9cf229Sdrh 
4553d1bfeaaSdanielk1977 /*
456d82b5021Sdrh ** This routine is called to handle SQL of the following forms:
457cce7d176Sdrh **
458a21f78b9Sdrh **    insert into TABLE (IDLIST) values(EXPRLIST),(EXPRLIST),...
4591ccde15dSdrh **    insert into TABLE (IDLIST) select
460a21f78b9Sdrh **    insert into TABLE (IDLIST) default values
461cce7d176Sdrh **
4621ccde15dSdrh ** The IDLIST following the table name is always optional.  If omitted,
463a21f78b9Sdrh ** then a list of all (non-hidden) columns for the table is substituted.
464a21f78b9Sdrh ** The IDLIST appears in the pColumn parameter.  pColumn is NULL if IDLIST
465a21f78b9Sdrh ** is omitted.
4661ccde15dSdrh **
467a21f78b9Sdrh ** For the pSelect parameter holds the values to be inserted for the
468a21f78b9Sdrh ** first two forms shown above.  A VALUES clause is really just short-hand
469a21f78b9Sdrh ** for a SELECT statement that omits the FROM clause and everything else
470a21f78b9Sdrh ** that follows.  If the pSelect parameter is NULL, that means that the
471a21f78b9Sdrh ** DEFAULT VALUES form of the INSERT statement is intended.
472142e30dfSdrh **
4739d9cf229Sdrh ** The code generated follows one of four templates.  For a simple
474a21f78b9Sdrh ** insert with data coming from a single-row VALUES clause, the code executes
475e00ee6ebSdrh ** once straight down through.  Pseudo-code follows (we call this
476e00ee6ebSdrh ** the "1st template"):
477142e30dfSdrh **
478142e30dfSdrh **         open write cursor to <table> and its indices
479ec95c441Sdrh **         put VALUES clause expressions into registers
480142e30dfSdrh **         write the resulting record into <table>
481142e30dfSdrh **         cleanup
482142e30dfSdrh **
4839d9cf229Sdrh ** The three remaining templates assume the statement is of the form
484142e30dfSdrh **
485142e30dfSdrh **   INSERT INTO <table> SELECT ...
486142e30dfSdrh **
4879d9cf229Sdrh ** If the SELECT clause is of the restricted form "SELECT * FROM <table2>" -
4889d9cf229Sdrh ** in other words if the SELECT pulls all columns from a single table
4899d9cf229Sdrh ** and there is no WHERE or LIMIT or GROUP BY or ORDER BY clauses, and
4909d9cf229Sdrh ** if <table2> and <table1> are distinct tables but have identical
4919d9cf229Sdrh ** schemas, including all the same indices, then a special optimization
4929d9cf229Sdrh ** is invoked that copies raw records from <table2> over to <table1>.
4939d9cf229Sdrh ** See the xferOptimization() function for the implementation of this
494e00ee6ebSdrh ** template.  This is the 2nd template.
4959d9cf229Sdrh **
4969d9cf229Sdrh **         open a write cursor to <table>
4979d9cf229Sdrh **         open read cursor on <table2>
4989d9cf229Sdrh **         transfer all records in <table2> over to <table>
4999d9cf229Sdrh **         close cursors
5009d9cf229Sdrh **         foreach index on <table>
5019d9cf229Sdrh **           open a write cursor on the <table> index
5029d9cf229Sdrh **           open a read cursor on the corresponding <table2> index
5039d9cf229Sdrh **           transfer all records from the read to the write cursors
5049d9cf229Sdrh **           close cursors
5059d9cf229Sdrh **         end foreach
5069d9cf229Sdrh **
507e00ee6ebSdrh ** The 3rd template is for when the second template does not apply
5089d9cf229Sdrh ** and the SELECT clause does not read from <table> at any time.
5099d9cf229Sdrh ** The generated code follows this template:
510142e30dfSdrh **
511e00ee6ebSdrh **         X <- A
512142e30dfSdrh **         goto B
513142e30dfSdrh **      A: setup for the SELECT
5149d9cf229Sdrh **         loop over the rows in the SELECT
515e00ee6ebSdrh **           load values into registers R..R+n
516e00ee6ebSdrh **           yield X
517142e30dfSdrh **         end loop
518142e30dfSdrh **         cleanup after the SELECT
51981cf13ecSdrh **         end-coroutine X
520e00ee6ebSdrh **      B: open write cursor to <table> and its indices
52181cf13ecSdrh **      C: yield X, at EOF goto D
522e00ee6ebSdrh **         insert the select result into <table> from R..R+n
523e00ee6ebSdrh **         goto C
524142e30dfSdrh **      D: cleanup
525142e30dfSdrh **
526e00ee6ebSdrh ** The 4th template is used if the insert statement takes its
527142e30dfSdrh ** values from a SELECT but the data is being inserted into a table
528142e30dfSdrh ** that is also read as part of the SELECT.  In the third form,
52960ec914cSpeter.d.reid ** we have to use an intermediate table to store the results of
530142e30dfSdrh ** the select.  The template is like this:
531142e30dfSdrh **
532e00ee6ebSdrh **         X <- A
533142e30dfSdrh **         goto B
534142e30dfSdrh **      A: setup for the SELECT
535142e30dfSdrh **         loop over the tables in the SELECT
536e00ee6ebSdrh **           load value into register R..R+n
537e00ee6ebSdrh **           yield X
538142e30dfSdrh **         end loop
539142e30dfSdrh **         cleanup after the SELECT
54081cf13ecSdrh **         end co-routine R
541e00ee6ebSdrh **      B: open temp table
54281cf13ecSdrh **      L: yield X, at EOF goto M
543e00ee6ebSdrh **         insert row from R..R+n into temp table
544e00ee6ebSdrh **         goto L
545e00ee6ebSdrh **      M: open write cursor to <table> and its indices
546e00ee6ebSdrh **         rewind temp table
547e00ee6ebSdrh **      C: loop over rows of intermediate table
548142e30dfSdrh **           transfer values form intermediate table into <table>
549e00ee6ebSdrh **         end loop
550e00ee6ebSdrh **      D: cleanup
551cce7d176Sdrh */
5524adee20fSdanielk1977 void sqlite3Insert(
553cce7d176Sdrh   Parse *pParse,        /* Parser context */
554113088ecSdrh   SrcList *pTabList,    /* Name of table into which we are inserting */
5555974a30fSdrh   Select *pSelect,      /* A SELECT statement to use as the data source */
5569cfcf5d4Sdrh   IdList *pColumn,      /* Column names corresponding to IDLIST. */
5572c2e844aSdrh   int onError,          /* How to handle constraint errors */
55846d2e5c3Sdrh   Upsert *pUpsert       /* ON CONFLICT clauses for upsert, or NULL */
559cce7d176Sdrh ){
5606a288a33Sdrh   sqlite3 *db;          /* The main database structure */
5616a288a33Sdrh   Table *pTab;          /* The table to insert into.  aka TABLE */
56260ffc807Sdrh   int i, j;             /* Loop counters */
5635974a30fSdrh   Vdbe *v;              /* Generate code into this virtual machine */
5645974a30fSdrh   Index *pIdx;          /* For looping over indices of the table */
565967e8b73Sdrh   int nColumn;          /* Number of columns in the data */
5666a288a33Sdrh   int nHidden = 0;      /* Number of hidden columns if TABLE is virtual */
56726198bb4Sdrh   int iDataCur = 0;     /* VDBE cursor that is the main data repository */
56826198bb4Sdrh   int iIdxCur = 0;      /* First index cursor */
569d82b5021Sdrh   int ipkColumn = -1;   /* Column that is the INTEGER PRIMARY KEY */
5700ca3e24bSdrh   int endOfLoop;        /* Label for the end of the insertion loop */
571cfe9a69fSdanielk1977   int srcTab = 0;       /* Data comes from this temporary cursor if >=0 */
572e00ee6ebSdrh   int addrInsTop = 0;   /* Jump to label "D" */
573e00ee6ebSdrh   int addrCont = 0;     /* Top of insert loop. Label "C" in templates 3 and 4 */
5742eb95377Sdrh   SelectDest dest;      /* Destination for SELECT on rhs of INSERT */
5756a288a33Sdrh   int iDb;              /* Index of database holding TABLE */
57605a86c5cSdrh   u8 useTempTable = 0;  /* Store SELECT results in intermediate table */
57705a86c5cSdrh   u8 appendFlag = 0;    /* True if the insert is likely to be an append */
57805a86c5cSdrh   u8 withoutRowid;      /* 0 for normal table.  1 for WITHOUT ROWID table */
579a21f78b9Sdrh   u8 bIdListInOrder;    /* True if IDLIST is in table order */
58075593d96Sdrh   ExprList *pList = 0;  /* List of VALUES() to be inserted  */
581c27ea2aeSdrh   int iRegStore;        /* Register in which to store next column */
582cce7d176Sdrh 
5836a288a33Sdrh   /* Register allocations */
5841bd10f8aSdrh   int regFromSelect = 0;/* Base register for data coming from SELECT */
5856a288a33Sdrh   int regAutoinc = 0;   /* Register holding the AUTOINCREMENT counter */
5866a288a33Sdrh   int regRowCount = 0;  /* Memory cell used for the row counter */
5876a288a33Sdrh   int regIns;           /* Block of regs holding rowid+data being inserted */
5886a288a33Sdrh   int regRowid;         /* registers holding insert rowid */
5896a288a33Sdrh   int regData;          /* register holding first column to insert */
590aa9b8963Sdrh   int *aRegIdx = 0;     /* One register allocated to each index */
5916a288a33Sdrh 
592798da52cSdrh #ifndef SQLITE_OMIT_TRIGGER
593798da52cSdrh   int isView;                 /* True if attempting to insert into a view */
5942f886d1dSdanielk1977   Trigger *pTrigger;          /* List of triggers on pTab, if required */
5952f886d1dSdanielk1977   int tmask;                  /* Mask of trigger times */
596798da52cSdrh #endif
597c3f9bad2Sdanielk1977 
59817435752Sdrh   db = pParse->db;
59917435752Sdrh   if( pParse->nErr || db->mallocFailed ){
6006f7adc8aSdrh     goto insert_cleanup;
6016f7adc8aSdrh   }
6024c883487Sdrh   dest.iSDParm = 0;  /* Suppress a harmless compiler warning */
603daffd0e5Sdrh 
60475593d96Sdrh   /* If the Select object is really just a simple VALUES() list with a
605a21f78b9Sdrh   ** single row (the common case) then keep that one row of values
606a21f78b9Sdrh   ** and discard the other (unused) parts of the pSelect object
60775593d96Sdrh   */
60875593d96Sdrh   if( pSelect && (pSelect->selFlags & SF_Values)!=0 && pSelect->pPrior==0 ){
60975593d96Sdrh     pList = pSelect->pEList;
61075593d96Sdrh     pSelect->pEList = 0;
61175593d96Sdrh     sqlite3SelectDelete(db, pSelect);
61275593d96Sdrh     pSelect = 0;
61375593d96Sdrh   }
61475593d96Sdrh 
6151ccde15dSdrh   /* Locate the table into which we will be inserting new information.
6161ccde15dSdrh   */
617113088ecSdrh   assert( pTabList->nSrc==1 );
6184adee20fSdanielk1977   pTab = sqlite3SrcListLookup(pParse, pTabList);
619c3f9bad2Sdanielk1977   if( pTab==0 ){
620c3f9bad2Sdanielk1977     goto insert_cleanup;
621c3f9bad2Sdanielk1977   }
622da184236Sdanielk1977   iDb = sqlite3SchemaToIndex(db, pTab->pSchema);
623da184236Sdanielk1977   assert( iDb<db->nDb );
624a0daa751Sdrh   if( sqlite3AuthCheck(pParse, SQLITE_INSERT, pTab->zName, 0,
625a0daa751Sdrh                        db->aDb[iDb].zDbSName) ){
6261962bda7Sdrh     goto insert_cleanup;
6271962bda7Sdrh   }
628ec95c441Sdrh   withoutRowid = !HasRowid(pTab);
629c3f9bad2Sdanielk1977 
630b7f9164eSdrh   /* Figure out if we have any triggers and if the table being
631b7f9164eSdrh   ** inserted into is a view
632b7f9164eSdrh   */
633b7f9164eSdrh #ifndef SQLITE_OMIT_TRIGGER
6342f886d1dSdanielk1977   pTrigger = sqlite3TriggersExist(pParse, pTab, TK_INSERT, 0, &tmask);
635b7f9164eSdrh   isView = pTab->pSelect!=0;
636b7f9164eSdrh #else
6372f886d1dSdanielk1977 # define pTrigger 0
6382f886d1dSdanielk1977 # define tmask 0
639b7f9164eSdrh # define isView 0
640b7f9164eSdrh #endif
641b7f9164eSdrh #ifdef SQLITE_OMIT_VIEW
642b7f9164eSdrh # undef isView
643b7f9164eSdrh # define isView 0
644b7f9164eSdrh #endif
6452f886d1dSdanielk1977   assert( (pTrigger && tmask) || (pTrigger==0 && tmask==0) );
646b7f9164eSdrh 
647f573c99bSdrh   /* If pTab is really a view, make sure it has been initialized.
648d82b5021Sdrh   ** ViewGetColumnNames() is a no-op if pTab is not a view.
649f573c99bSdrh   */
650b3d24bf8Sdanielk1977   if( sqlite3ViewGetColumnNames(pParse, pTab) ){
651f573c99bSdrh     goto insert_cleanup;
652f573c99bSdrh   }
653f573c99bSdrh 
654d82b5021Sdrh   /* Cannot insert into a read-only table.
655595a523aSdanielk1977   */
656595a523aSdanielk1977   if( sqlite3IsReadOnly(pParse, pTab, tmask) ){
657595a523aSdanielk1977     goto insert_cleanup;
658595a523aSdanielk1977   }
659595a523aSdanielk1977 
6601ccde15dSdrh   /* Allocate a VDBE
6611ccde15dSdrh   */
6624adee20fSdanielk1977   v = sqlite3GetVdbe(pParse);
6635974a30fSdrh   if( v==0 ) goto insert_cleanup;
6644794f735Sdrh   if( pParse->nested==0 ) sqlite3VdbeCountChanges(v);
6652f886d1dSdanielk1977   sqlite3BeginWriteOperation(pParse, pSelect || pTrigger, iDb);
6661ccde15dSdrh 
6679d9cf229Sdrh #ifndef SQLITE_OMIT_XFER_OPT
6689d9cf229Sdrh   /* If the statement is of the form
6699d9cf229Sdrh   **
6709d9cf229Sdrh   **       INSERT INTO <table1> SELECT * FROM <table2>;
6719d9cf229Sdrh   **
6729d9cf229Sdrh   ** Then special optimizations can be applied that make the transfer
6739d9cf229Sdrh   ** very fast and which reduce fragmentation of indices.
674e00ee6ebSdrh   **
675e00ee6ebSdrh   ** This is the 2nd template.
6769d9cf229Sdrh   */
6779d9cf229Sdrh   if( pColumn==0 && xferOptimization(pParse, pTab, pSelect, onError, iDb) ){
6782f886d1dSdanielk1977     assert( !pTrigger );
6799d9cf229Sdrh     assert( pList==0 );
6800b9f50d8Sdrh     goto insert_end;
6819d9cf229Sdrh   }
6829d9cf229Sdrh #endif /* SQLITE_OMIT_XFER_OPT */
6839d9cf229Sdrh 
6842958a4e6Sdrh   /* If this is an AUTOINCREMENT table, look up the sequence number in the
6856a288a33Sdrh   ** sqlite_sequence table and store it in memory cell regAutoinc.
6862958a4e6Sdrh   */
6876a288a33Sdrh   regAutoinc = autoIncBegin(pParse, iDb, pTab);
6882958a4e6Sdrh 
68905a86c5cSdrh   /* Allocate registers for holding the rowid of the new row,
69060ec914cSpeter.d.reid   ** the content of the new row, and the assembled row record.
6911ccde15dSdrh   */
69205a86c5cSdrh   regRowid = regIns = pParse->nMem+1;
69305a86c5cSdrh   pParse->nMem += pTab->nCol + 1;
694034ca14fSdanielk1977   if( IsVirtual(pTab) ){
69505a86c5cSdrh     regRowid++;
69605a86c5cSdrh     pParse->nMem++;
697034ca14fSdanielk1977   }
69805a86c5cSdrh   regData = regRowid+1;
6991ccde15dSdrh 
7001ccde15dSdrh   /* If the INSERT statement included an IDLIST term, then make sure
7011ccde15dSdrh   ** all elements of the IDLIST really are columns of the table and
7021ccde15dSdrh   ** remember the column indices.
703c8392586Sdrh   **
704c8392586Sdrh   ** If the table has an INTEGER PRIMARY KEY column and that column
705d82b5021Sdrh   ** is named in the IDLIST, then record in the ipkColumn variable
706d82b5021Sdrh   ** the index into IDLIST of the primary key column.  ipkColumn is
707c8392586Sdrh   ** the index of the primary key as it appears in IDLIST, not as
708d82b5021Sdrh   ** is appears in the original table.  (The index of the INTEGER
709d82b5021Sdrh   ** PRIMARY KEY in the original table is pTab->iPKey.)
7101ccde15dSdrh   */
711d4cd292cSdrh   bIdListInOrder = (pTab->tabFlags & (TF_OOOHidden|TF_HasStored))==0;
712967e8b73Sdrh   if( pColumn ){
713967e8b73Sdrh     for(i=0; i<pColumn->nId; i++){
714967e8b73Sdrh       pColumn->a[i].idx = -1;
715cce7d176Sdrh     }
716967e8b73Sdrh     for(i=0; i<pColumn->nId; i++){
717cce7d176Sdrh       for(j=0; j<pTab->nCol; j++){
7184adee20fSdanielk1977         if( sqlite3StrICmp(pColumn->a[i].zName, pTab->aCol[j].zName)==0 ){
719967e8b73Sdrh           pColumn->a[i].idx = j;
72005a86c5cSdrh           if( i!=j ) bIdListInOrder = 0;
7214a32431cSdrh           if( j==pTab->iPKey ){
722d82b5021Sdrh             ipkColumn = i;  assert( !withoutRowid );
7234a32431cSdrh           }
7247e508f1eSdrh #ifndef SQLITE_OMIT_GENERATED_COLUMNS
7257e508f1eSdrh           if( pTab->aCol[j].colFlags & (COLFLAG_STORED|COLFLAG_VIRTUAL) ){
7267e508f1eSdrh             sqlite3ErrorMsg(pParse,
7277e508f1eSdrh                "cannot INSERT into generated column \"%s\"",
7287e508f1eSdrh                pTab->aCol[j].zName);
7297e508f1eSdrh             goto insert_cleanup;
7307e508f1eSdrh           }
7317e508f1eSdrh #endif
732cce7d176Sdrh           break;
733cce7d176Sdrh         }
734cce7d176Sdrh       }
735cce7d176Sdrh       if( j>=pTab->nCol ){
736ec95c441Sdrh         if( sqlite3IsRowid(pColumn->a[i].zName) && !withoutRowid ){
737d82b5021Sdrh           ipkColumn = i;
738e48ae715Sdrh           bIdListInOrder = 0;
739a0217ba7Sdrh         }else{
7404adee20fSdanielk1977           sqlite3ErrorMsg(pParse, "table %S has no column named %s",
741da93d238Sdrh               pTabList, 0, pColumn->a[i].zName);
7421db95106Sdan           pParse->checkSchema = 1;
743cce7d176Sdrh           goto insert_cleanup;
744cce7d176Sdrh         }
745cce7d176Sdrh       }
746cce7d176Sdrh     }
747a0217ba7Sdrh   }
7481ccde15dSdrh 
749cce7d176Sdrh   /* Figure out how many columns of data are supplied.  If the data
750cce7d176Sdrh   ** is coming from a SELECT statement, then generate a co-routine that
751cce7d176Sdrh   ** produces a single row of the SELECT on each invocation.  The
752cce7d176Sdrh   ** co-routine is the common header to the 3rd and 4th templates.
753cce7d176Sdrh   */
7545f085269Sdrh   if( pSelect ){
755a21f78b9Sdrh     /* Data is coming from a SELECT or from a multi-row VALUES clause.
756a21f78b9Sdrh     ** Generate a co-routine to run the SELECT. */
75705a86c5cSdrh     int regYield;       /* Register holding co-routine entry-point */
75805a86c5cSdrh     int addrTop;        /* Top of the co-routine */
75905a86c5cSdrh     int rc;             /* Result code */
760cce7d176Sdrh 
76105a86c5cSdrh     regYield = ++pParse->nMem;
76205a86c5cSdrh     addrTop = sqlite3VdbeCurrentAddr(v) + 1;
76305a86c5cSdrh     sqlite3VdbeAddOp3(v, OP_InitCoroutine, regYield, 0, addrTop);
76405a86c5cSdrh     sqlite3SelectDestInit(&dest, SRT_Coroutine, regYield);
76505a86c5cSdrh     dest.iSdst = bIdListInOrder ? regData : 0;
76605a86c5cSdrh     dest.nSdst = pTab->nCol;
76705a86c5cSdrh     rc = sqlite3Select(pParse, pSelect, &dest);
7682b596da8Sdrh     regFromSelect = dest.iSdst;
769992590beSdrh     if( rc || db->mallocFailed || pParse->nErr ) goto insert_cleanup;
7702fade2f7Sdrh     sqlite3VdbeEndCoroutine(v, regYield);
77105a86c5cSdrh     sqlite3VdbeJumpHere(v, addrTop - 1);                       /* label B: */
772cce7d176Sdrh     assert( pSelect->pEList );
773cce7d176Sdrh     nColumn = pSelect->pEList->nExpr;
774cce7d176Sdrh 
775cce7d176Sdrh     /* Set useTempTable to TRUE if the result of the SELECT statement
776cce7d176Sdrh     ** should be written into a temporary table (template 4).  Set to
777cce7d176Sdrh     ** FALSE if each output row of the SELECT can be written directly into
778cce7d176Sdrh     ** the destination table (template 3).
779cce7d176Sdrh     **
780cce7d176Sdrh     ** A temp table must be used if the table being updated is also one
781cce7d176Sdrh     ** of the tables being read by the SELECT statement.  Also use a
782cce7d176Sdrh     ** temp table in the case of row triggers.
783cce7d176Sdrh     */
78405a86c5cSdrh     if( pTrigger || readsTable(pParse, iDb, pTab) ){
785cce7d176Sdrh       useTempTable = 1;
786cce7d176Sdrh     }
787cce7d176Sdrh 
788cce7d176Sdrh     if( useTempTable ){
789cce7d176Sdrh       /* Invoke the coroutine to extract information from the SELECT
790cce7d176Sdrh       ** and add it to a transient table srcTab.  The code generated
791cce7d176Sdrh       ** here is from the 4th template:
792cce7d176Sdrh       **
793cce7d176Sdrh       **      B: open temp table
79481cf13ecSdrh       **      L: yield X, goto M at EOF
795cce7d176Sdrh       **         insert row from R..R+n into temp table
796cce7d176Sdrh       **         goto L
797cce7d176Sdrh       **      M: ...
798cce7d176Sdrh       */
799cce7d176Sdrh       int regRec;          /* Register to hold packed record */
800cce7d176Sdrh       int regTempRowid;    /* Register to hold temp table ROWID */
80106280ee5Sdrh       int addrL;           /* Label "L" */
802cce7d176Sdrh 
803cce7d176Sdrh       srcTab = pParse->nTab++;
804cce7d176Sdrh       regRec = sqlite3GetTempReg(pParse);
805cce7d176Sdrh       regTempRowid = sqlite3GetTempReg(pParse);
806cce7d176Sdrh       sqlite3VdbeAddOp2(v, OP_OpenEphemeral, srcTab, nColumn);
80706280ee5Sdrh       addrL = sqlite3VdbeAddOp1(v, OP_Yield, dest.iSDParm); VdbeCoverage(v);
808cce7d176Sdrh       sqlite3VdbeAddOp3(v, OP_MakeRecord, regFromSelect, nColumn, regRec);
809cce7d176Sdrh       sqlite3VdbeAddOp2(v, OP_NewRowid, srcTab, regTempRowid);
810cce7d176Sdrh       sqlite3VdbeAddOp3(v, OP_Insert, srcTab, regRec, regTempRowid);
811076e85f5Sdrh       sqlite3VdbeGoto(v, addrL);
81206280ee5Sdrh       sqlite3VdbeJumpHere(v, addrL);
813cce7d176Sdrh       sqlite3ReleaseTempReg(pParse, regRec);
814cce7d176Sdrh       sqlite3ReleaseTempReg(pParse, regTempRowid);
815cce7d176Sdrh     }
816cce7d176Sdrh   }else{
817a21f78b9Sdrh     /* This is the case if the data for the INSERT is coming from a
818a21f78b9Sdrh     ** single-row VALUES clause
819cce7d176Sdrh     */
820cce7d176Sdrh     NameContext sNC;
821cce7d176Sdrh     memset(&sNC, 0, sizeof(sNC));
822cce7d176Sdrh     sNC.pParse = pParse;
823cce7d176Sdrh     srcTab = -1;
824cce7d176Sdrh     assert( useTempTable==0 );
825fea870beSdrh     if( pList ){
826fea870beSdrh       nColumn = pList->nExpr;
827fea870beSdrh       if( sqlite3ResolveExprListNames(&sNC, pList) ){
828cce7d176Sdrh         goto insert_cleanup;
829cce7d176Sdrh       }
830fea870beSdrh     }else{
831fea870beSdrh       nColumn = 0;
832cce7d176Sdrh     }
833cce7d176Sdrh   }
834cce7d176Sdrh 
835aacc543eSdrh   /* If there is no IDLIST term but the table has an integer primary
836d82b5021Sdrh   ** key, the set the ipkColumn variable to the integer primary key
837d82b5021Sdrh   ** column index in the original table definition.
8384a32431cSdrh   */
839147d0cccSdrh   if( pColumn==0 && nColumn>0 ){
840d82b5021Sdrh     ipkColumn = pTab->iPKey;
8414a32431cSdrh   }
8424a32431cSdrh 
843cce7d176Sdrh   /* Make sure the number of columns in the source data matches the number
844cce7d176Sdrh   ** of columns to be inserted into the table.
845cce7d176Sdrh   */
846cce7d176Sdrh   for(i=0; i<pTab->nCol; i++){
8477e508f1eSdrh     if( pTab->aCol[i].colFlags & COLFLAG_NOINSERT ) nHidden++;
848cce7d176Sdrh   }
849cce7d176Sdrh   if( pColumn==0 && nColumn && nColumn!=(pTab->nCol-nHidden) ){
850cce7d176Sdrh     sqlite3ErrorMsg(pParse,
851cce7d176Sdrh        "table %S has %d columns but %d values were supplied",
852cce7d176Sdrh        pTabList, 0, pTab->nCol-nHidden, nColumn);
853cce7d176Sdrh     goto insert_cleanup;
854cce7d176Sdrh   }
855cce7d176Sdrh   if( pColumn!=0 && nColumn!=pColumn->nId ){
856cce7d176Sdrh     sqlite3ErrorMsg(pParse, "%d values for %d columns", nColumn, pColumn->nId);
857cce7d176Sdrh     goto insert_cleanup;
858cce7d176Sdrh   }
859cce7d176Sdrh 
860c3f9bad2Sdanielk1977   /* Initialize the count of rows to be inserted
8611ccde15dSdrh   */
86279636913Sdrh   if( (db->flags & SQLITE_CountRows)!=0
86379636913Sdrh    && !pParse->nested
86479636913Sdrh    && !pParse->pTriggerTab
86579636913Sdrh   ){
8666a288a33Sdrh     regRowCount = ++pParse->nMem;
8676a288a33Sdrh     sqlite3VdbeAddOp2(v, OP_Integer, 0, regRowCount);
868c3f9bad2Sdanielk1977   }
869c3f9bad2Sdanielk1977 
870e448dc4aSdanielk1977   /* If this is not a view, open the table and and all indices */
871e448dc4aSdanielk1977   if( !isView ){
872aa9b8963Sdrh     int nIdx;
873fd261ec6Sdan     nIdx = sqlite3OpenTableAndIndices(pParse, pTab, OP_OpenWrite, 0, -1, 0,
87426198bb4Sdrh                                       &iDataCur, &iIdxCur);
875a7c3b93fSdrh     aRegIdx = sqlite3DbMallocRawNN(db, sizeof(int)*(nIdx+2));
876aa9b8963Sdrh     if( aRegIdx==0 ){
877aa9b8963Sdrh       goto insert_cleanup;
878aa9b8963Sdrh     }
8792c4dfc30Sdrh     for(i=0, pIdx=pTab->pIndex; i<nIdx; pIdx=pIdx->pNext, i++){
8802c4dfc30Sdrh       assert( pIdx );
881aa9b8963Sdrh       aRegIdx[i] = ++pParse->nMem;
8822c4dfc30Sdrh       pParse->nMem += pIdx->nColumn;
883aa9b8963Sdrh     }
884a7c3b93fSdrh     aRegIdx[i] = ++pParse->nMem;  /* Register to store the table record */
885feeb1394Sdrh   }
886788d55aaSdrh #ifndef SQLITE_OMIT_UPSERT
8870b30a116Sdrh   if( pUpsert ){
888b042d921Sdrh     if( IsVirtual(pTab) ){
889b042d921Sdrh       sqlite3ErrorMsg(pParse, "UPSERT not implemented for virtual table \"%s\"",
890b042d921Sdrh               pTab->zName);
891b042d921Sdrh       goto insert_cleanup;
892b042d921Sdrh     }
8939105fd51Sdan     if( sqlite3HasExplicitNulls(pParse, pUpsert->pUpsertTarget) ){
8949105fd51Sdan       goto insert_cleanup;
8959105fd51Sdan     }
896788d55aaSdrh     pTabList->a[0].iCursor = iDataCur;
8970b30a116Sdrh     pUpsert->pUpsertSrc = pTabList;
898eac9fabbSdrh     pUpsert->regData = regData;
8997fc3aba8Sdrh     pUpsert->iDataCur = iDataCur;
9007fc3aba8Sdrh     pUpsert->iIdxCur = iIdxCur;
9010b30a116Sdrh     if( pUpsert->pUpsertTarget ){
902e9c2e772Sdrh       sqlite3UpsertAnalyzeTarget(pParse, pTabList, pUpsert);
903788d55aaSdrh     }
9040b30a116Sdrh   }
905788d55aaSdrh #endif
906788d55aaSdrh 
907feeb1394Sdrh 
908e00ee6ebSdrh   /* This is the top of the main insertion loop */
909142e30dfSdrh   if( useTempTable ){
910e00ee6ebSdrh     /* This block codes the top of loop only.  The complete loop is the
911e00ee6ebSdrh     ** following pseudocode (template 4):
912e00ee6ebSdrh     **
91381cf13ecSdrh     **         rewind temp table, if empty goto D
914e00ee6ebSdrh     **      C: loop over rows of intermediate table
915e00ee6ebSdrh     **           transfer values form intermediate table into <table>
916e00ee6ebSdrh     **         end loop
917e00ee6ebSdrh     **      D: ...
918e00ee6ebSdrh     */
919688852abSdrh     addrInsTop = sqlite3VdbeAddOp1(v, OP_Rewind, srcTab); VdbeCoverage(v);
920e00ee6ebSdrh     addrCont = sqlite3VdbeCurrentAddr(v);
921142e30dfSdrh   }else if( pSelect ){
922e00ee6ebSdrh     /* This block codes the top of loop only.  The complete loop is the
923e00ee6ebSdrh     ** following pseudocode (template 3):
924e00ee6ebSdrh     **
92581cf13ecSdrh     **      C: yield X, at EOF goto D
926e00ee6ebSdrh     **         insert the select result into <table> from R..R+n
927e00ee6ebSdrh     **         goto C
928e00ee6ebSdrh     **      D: ...
929e00ee6ebSdrh     */
93081cf13ecSdrh     addrInsTop = addrCont = sqlite3VdbeAddOp1(v, OP_Yield, dest.iSDParm);
931688852abSdrh     VdbeCoverage(v);
932bed8690fSdrh   }
9331ccde15dSdrh 
9345cf590c1Sdrh   /* Run the BEFORE and INSTEAD OF triggers, if there are any
93570ce3f0cSdrh   */
936ec4ccdbcSdrh   endOfLoop = sqlite3VdbeMakeLabel(pParse);
9372f886d1dSdanielk1977   if( tmask & TRIGGER_BEFORE ){
93876d462eeSdan     int regCols = sqlite3GetTempRange(pParse, pTab->nCol+1);
939c3f9bad2Sdanielk1977 
94070ce3f0cSdrh     /* build the NEW.* reference row.  Note that if there is an INTEGER
94170ce3f0cSdrh     ** PRIMARY KEY into which a NULL is being inserted, that NULL will be
94270ce3f0cSdrh     ** translated into a unique ID for the row.  But on a BEFORE trigger,
94370ce3f0cSdrh     ** we do not know what the unique ID will be (because the insert has
94470ce3f0cSdrh     ** not happened yet) so we substitute a rowid of -1
94570ce3f0cSdrh     */
946d82b5021Sdrh     if( ipkColumn<0 ){
94776d462eeSdan       sqlite3VdbeAddOp2(v, OP_Integer, -1, regCols);
94870ce3f0cSdrh     }else{
949728e0f91Sdrh       int addr1;
950ec95c441Sdrh       assert( !withoutRowid );
9517fe45908Sdrh       if( useTempTable ){
952d82b5021Sdrh         sqlite3VdbeAddOp3(v, OP_Column, srcTab, ipkColumn, regCols);
9537fe45908Sdrh       }else{
954d6fe961eSdrh         assert( pSelect==0 );  /* Otherwise useTempTable is true */
955d82b5021Sdrh         sqlite3ExprCode(pParse, pList->a[ipkColumn].pExpr, regCols);
9567fe45908Sdrh       }
957728e0f91Sdrh       addr1 = sqlite3VdbeAddOp1(v, OP_NotNull, regCols); VdbeCoverage(v);
95876d462eeSdan       sqlite3VdbeAddOp2(v, OP_Integer, -1, regCols);
959728e0f91Sdrh       sqlite3VdbeJumpHere(v, addr1);
960688852abSdrh       sqlite3VdbeAddOp1(v, OP_MustBeInt, regCols); VdbeCoverage(v);
96170ce3f0cSdrh     }
96270ce3f0cSdrh 
963034ca14fSdanielk1977     /* Cannot have triggers on a virtual table. If it were possible,
964034ca14fSdanielk1977     ** this block would have to account for hidden column.
965034ca14fSdanielk1977     */
966034ca14fSdanielk1977     assert( !IsVirtual(pTab) );
967034ca14fSdanielk1977 
96870ce3f0cSdrh     /* Create the new column data
96970ce3f0cSdrh     */
970b1daa3f4Sdrh     for(i=j=0; i<pTab->nCol; i++){
971b1daa3f4Sdrh       if( pColumn ){
972c3f9bad2Sdanielk1977         for(j=0; j<pColumn->nId; j++){
973c3f9bad2Sdanielk1977           if( pColumn->a[j].idx==i ) break;
974c3f9bad2Sdanielk1977         }
975c3f9bad2Sdanielk1977       }
976b1daa3f4Sdrh       if( (!useTempTable && !pList) || (pColumn && j>=pColumn->nId)
97703d69a68Sdrh             || (pColumn==0 && IsOrdinaryHiddenColumn(&pTab->aCol[i])) ){
97876d462eeSdan         sqlite3ExprCode(pParse, pTab->aCol[i].pDflt, regCols+i+1);
979142e30dfSdrh       }else if( useTempTable ){
98076d462eeSdan         sqlite3VdbeAddOp3(v, OP_Column, srcTab, j, regCols+i+1);
981c3f9bad2Sdanielk1977       }else{
982d6fe961eSdrh         assert( pSelect==0 ); /* Otherwise useTempTable is true */
98376d462eeSdan         sqlite3ExprCodeAndCache(pParse, pList->a[j].pExpr, regCols+i+1);
984c3f9bad2Sdanielk1977       }
98503d69a68Sdrh       if( pColumn==0 && !IsOrdinaryHiddenColumn(&pTab->aCol[i]) ) j++;
986c3f9bad2Sdanielk1977     }
987a37cdde0Sdanielk1977 
988a37cdde0Sdanielk1977     /* If this is an INSERT on a view with an INSTEAD OF INSERT trigger,
989a37cdde0Sdanielk1977     ** do not attempt any conversions before assembling the record.
990a37cdde0Sdanielk1977     ** If this is a real table, attempt conversions as required by the
991a37cdde0Sdanielk1977     ** table column affinities.
992a37cdde0Sdanielk1977     */
993a37cdde0Sdanielk1977     if( !isView ){
99457bf4a8eSdrh       sqlite3TableAffinity(v, pTab, regCols+1);
995a37cdde0Sdanielk1977     }
996c3f9bad2Sdanielk1977 
9975cf590c1Sdrh     /* Fire BEFORE or INSTEAD OF triggers */
998165921a7Sdan     sqlite3CodeRowTrigger(pParse, pTrigger, TK_INSERT, 0, TRIGGER_BEFORE,
99994d7f50aSdan         pTab, regCols-pTab->nCol-1, onError, endOfLoop);
1000165921a7Sdan 
100176d462eeSdan     sqlite3ReleaseTempRange(pParse, regCols, pTab->nCol+1);
100270ce3f0cSdrh   }
1003c3f9bad2Sdanielk1977 
1004d82b5021Sdrh   /* Compute the content of the next row to insert into a range of
1005d82b5021Sdrh   ** registers beginning at regIns.
10061ccde15dSdrh   */
10075cf590c1Sdrh   if( !isView ){
10084cbdda9eSdrh     if( IsVirtual(pTab) ){
10094cbdda9eSdrh       /* The row that the VUpdate opcode will delete: none */
10106a288a33Sdrh       sqlite3VdbeAddOp2(v, OP_Null, 0, regIns);
10114cbdda9eSdrh     }
1012d82b5021Sdrh     if( ipkColumn>=0 ){
1013142e30dfSdrh       if( useTempTable ){
1014d82b5021Sdrh         sqlite3VdbeAddOp3(v, OP_Column, srcTab, ipkColumn, regRowid);
1015142e30dfSdrh       }else if( pSelect ){
101605a86c5cSdrh         sqlite3VdbeAddOp2(v, OP_Copy, regFromSelect+ipkColumn, regRowid);
10174a32431cSdrh       }else{
101804fcef00Sdrh         Expr *pIpk = pList->a[ipkColumn].pExpr;
101904fcef00Sdrh         if( pIpk->op==TK_NULL && !IsVirtual(pTab) ){
102004fcef00Sdrh           sqlite3VdbeAddOp3(v, OP_NewRowid, iDataCur, regRowid, regAutoinc);
1021e4d90813Sdrh           appendFlag = 1;
102204fcef00Sdrh         }else{
102304fcef00Sdrh           sqlite3ExprCode(pParse, pList->a[ipkColumn].pExpr, regRowid);
1024e4d90813Sdrh         }
102527a32783Sdrh       }
1026f0863fe5Sdrh       /* If the PRIMARY KEY expression is NULL, then use OP_NewRowid
1027e1e68f49Sdrh       ** to generate a unique primary key value.
1028e1e68f49Sdrh       */
1029e4d90813Sdrh       if( !appendFlag ){
1030728e0f91Sdrh         int addr1;
1031bb50e7adSdanielk1977         if( !IsVirtual(pTab) ){
1032728e0f91Sdrh           addr1 = sqlite3VdbeAddOp1(v, OP_NotNull, regRowid); VdbeCoverage(v);
103326198bb4Sdrh           sqlite3VdbeAddOp3(v, OP_NewRowid, iDataCur, regRowid, regAutoinc);
1034728e0f91Sdrh           sqlite3VdbeJumpHere(v, addr1);
1035bb50e7adSdanielk1977         }else{
1036728e0f91Sdrh           addr1 = sqlite3VdbeCurrentAddr(v);
1037728e0f91Sdrh           sqlite3VdbeAddOp2(v, OP_IsNull, regRowid, addr1+2); VdbeCoverage(v);
1038bb50e7adSdanielk1977         }
1039688852abSdrh         sqlite3VdbeAddOp1(v, OP_MustBeInt, regRowid); VdbeCoverage(v);
1040e4d90813Sdrh       }
1041ec95c441Sdrh     }else if( IsVirtual(pTab) || withoutRowid ){
10426a288a33Sdrh       sqlite3VdbeAddOp2(v, OP_Null, 0, regRowid);
10434a32431cSdrh     }else{
104426198bb4Sdrh       sqlite3VdbeAddOp3(v, OP_NewRowid, iDataCur, regRowid, regAutoinc);
1045e4d90813Sdrh       appendFlag = 1;
10464a32431cSdrh     }
10476a288a33Sdrh     autoIncStep(pParse, regAutoinc, regRowid);
10484a32431cSdrh 
1049d82b5021Sdrh     /* Compute data for all columns of the new entry, beginning
10504a32431cSdrh     ** with the first column.
10514a32431cSdrh     */
1052034ca14fSdanielk1977     nHidden = 0;
1053c27ea2aeSdrh     iRegStore = regRowid+1;
1054c27ea2aeSdrh     for(i=0; i<pTab->nCol; i++, iRegStore++){
1055ab45fc04Sdrh       int k;
1056676fa25aSdrh       u32 colFlags;
1057ab45fc04Sdrh       assert( i>=nHidden );
1058ab45fc04Sdrh       assert( iRegStore==sqlite3ColumnOfTable(pTab,i)+regRowid+1 );
10594a32431cSdrh       if( i==pTab->iPKey ){
10604a32431cSdrh         /* The value of the INTEGER PRIMARY KEY column is always a NULL.
1061d82b5021Sdrh         ** Whenever this column is read, the rowid will be substituted
1062d82b5021Sdrh         ** in its place.  Hence, fill this column with a NULL to avoid
106305a86c5cSdrh         ** taking up data space with information that will never be used.
106405a86c5cSdrh         ** As there may be shallow copies of this value, make it a soft-NULL */
106505a86c5cSdrh         sqlite3VdbeAddOp1(v, OP_SoftNull, iRegStore);
10664a32431cSdrh         continue;
10674a32431cSdrh       }
1068676fa25aSdrh       if( ((colFlags = pTab->aCol[i].colFlags) & COLFLAG_NOINSERT)!=0 ){
1069034ca14fSdanielk1977         nHidden++;
1070676fa25aSdrh         if( (colFlags & COLFLAG_VIRTUAL)!=0 ){
1071ab45fc04Sdrh           /* Virtual columns are no stored */
1072c27ea2aeSdrh           iRegStore--;
10737e508f1eSdrh           continue;
1074c1431144Sdrh         }else if( (colFlags & COLFLAG_STORED)!=0 ){
1075c1431144Sdrh           /* Stored columns are handled on the second pass */
1076c1431144Sdrh           continue;
1077c1431144Sdrh         }else if( pColumn==0 ){
1078c1431144Sdrh           /* Hidden columns that are not explicitly named in the INSERT */
1079676fa25aSdrh           sqlite3ExprCodeFactorable(pParse, pTab->aCol[i].pDflt, iRegStore);
1080676fa25aSdrh           continue;
1081676fa25aSdrh         }
10827e508f1eSdrh       }
1083ab45fc04Sdrh       if( pColumn ){
1084ab45fc04Sdrh         for(j=0; j<pColumn->nId && pColumn->a[j].idx!=i; j++){}
1085ab45fc04Sdrh         if( j>=pColumn->nId ){
1086ab45fc04Sdrh           /* A column not named in the insert column list gets its
1087ab45fc04Sdrh           ** default value */
108805a86c5cSdrh           sqlite3ExprCodeFactorable(pParse, pTab->aCol[i].pDflt, iRegStore);
1089ab45fc04Sdrh           continue;
1090ab45fc04Sdrh         }
1091ab45fc04Sdrh         k = j;
1092ab45fc04Sdrh       }else if( nColumn==0 ){
1093ab45fc04Sdrh         sqlite3ExprCodeFactorable(pParse, pTab->aCol[i].pDflt, iRegStore);
1094ab45fc04Sdrh         continue;
1095ab45fc04Sdrh       }else{
1096ab45fc04Sdrh         k = i - nHidden;
1097ab45fc04Sdrh       }
1098ab45fc04Sdrh 
1099ab45fc04Sdrh       if( useTempTable ){
1100ab45fc04Sdrh         sqlite3VdbeAddOp3(v, OP_Column, srcTab, k, iRegStore);
1101142e30dfSdrh       }else if( pSelect ){
110205a86c5cSdrh         if( regFromSelect!=regData ){
1103ab45fc04Sdrh           sqlite3VdbeAddOp2(v, OP_SCopy, regFromSelect+k, iRegStore);
110405a86c5cSdrh         }
1105cce7d176Sdrh       }else{
1106ab45fc04Sdrh         sqlite3ExprCode(pParse, pList->a[k].pExpr, iRegStore);
1107cce7d176Sdrh       }
1108cce7d176Sdrh     }
11091ccde15dSdrh 
1110c1431144Sdrh #ifndef SQLITE_OMIT_GENERATED_COLUMNS
1111c1431144Sdrh     /* Compute the new value for STORED columns after all other
1112c1431144Sdrh     ** columns have already been computed */
1113c1431144Sdrh     if( pTab->tabFlags & TF_HasStored ){
1114c1431144Sdrh       sqlite3ComputeStoredColumns(pParse, regRowid+1, pTab);
1115c1431144Sdrh     }
1116c1431144Sdrh #endif
1117c1431144Sdrh 
11180ca3e24bSdrh     /* Generate code to check constraints and generate index keys and
11190ca3e24bSdrh     ** do the insertion.
11204a32431cSdrh     */
11214cbdda9eSdrh #ifndef SQLITE_OMIT_VIRTUALTABLE
11224cbdda9eSdrh     if( IsVirtual(pTab) ){
1123595a523aSdanielk1977       const char *pVTab = (const char *)sqlite3GetVTable(db, pTab);
11244f3dd150Sdrh       sqlite3VtabMakeWritable(pParse, pTab);
1125595a523aSdanielk1977       sqlite3VdbeAddOp4(v, OP_VUpdate, 1, pTab->nCol+2, regIns, pVTab, P4_VTAB);
1126b061d058Sdan       sqlite3VdbeChangeP5(v, onError==OE_Default ? OE_Abort : onError);
1127e0af83acSdan       sqlite3MayAbort(pParse);
11284cbdda9eSdrh     }else
11294cbdda9eSdrh #endif
11304cbdda9eSdrh     {
1131de630353Sdanielk1977       int isReplace;    /* Set to true if constraints may cause a replace */
11323b908d41Sdan       int bUseSeek;     /* True to use OPFLAG_SEEKRESULT */
1133f8ffb278Sdrh       sqlite3GenerateConstraintChecks(pParse, pTab, aRegIdx, iDataCur, iIdxCur,
1134788d55aaSdrh           regIns, 0, ipkColumn>=0, onError, endOfLoop, &isReplace, 0, pUpsert
113504adf416Sdrh       );
11368ff2d956Sdan       sqlite3FkCheck(pParse, pTab, 0, regIns, 0, 0);
11373b908d41Sdan 
11383b908d41Sdan       /* Set the OPFLAG_USESEEKRESULT flag if either (a) there are no REPLACE
11393b908d41Sdan       ** constraints or (b) there are no triggers and this table is not a
11403b908d41Sdan       ** parent table in a foreign key constraint. It is safe to set the
11413b908d41Sdan       ** flag in the second case as if any REPLACE constraint is hit, an
11423b908d41Sdan       ** OP_Delete or OP_IdxDelete instruction will be executed on each
11433b908d41Sdan       ** cursor that is disturbed. And these instructions both clear the
11443b908d41Sdan       ** VdbeCursor.seekResult variable, disabling the OPFLAG_USESEEKRESULT
11453b908d41Sdan       ** functionality.  */
11463b908d41Sdan       bUseSeek = (isReplace==0 || (pTrigger==0 &&
11473b908d41Sdan           ((db->flags & SQLITE_ForeignKeys)==0 || sqlite3FkReferences(pTab)==0)
11483b908d41Sdan       ));
114926198bb4Sdrh       sqlite3CompleteInsertion(pParse, pTab, iDataCur, iIdxCur,
11503b908d41Sdan           regIns, aRegIdx, 0, appendFlag, bUseSeek
11513b908d41Sdan       );
11525cf590c1Sdrh     }
11534cbdda9eSdrh   }
11541bee3d7bSdrh 
1155feeb1394Sdrh   /* Update the count of rows that are inserted
11561bee3d7bSdrh   */
115779636913Sdrh   if( regRowCount ){
11586a288a33Sdrh     sqlite3VdbeAddOp2(v, OP_AddImm, regRowCount, 1);
11591bee3d7bSdrh   }
1160c3f9bad2Sdanielk1977 
11612f886d1dSdanielk1977   if( pTrigger ){
1162c3f9bad2Sdanielk1977     /* Code AFTER triggers */
1163165921a7Sdan     sqlite3CodeRowTrigger(pParse, pTrigger, TK_INSERT, 0, TRIGGER_AFTER,
116494d7f50aSdan         pTab, regData-2-pTab->nCol, onError, endOfLoop);
1165c3f9bad2Sdanielk1977   }
11661bee3d7bSdrh 
1167e00ee6ebSdrh   /* The bottom of the main insertion loop, if the data source
1168e00ee6ebSdrh   ** is a SELECT statement.
11691ccde15dSdrh   */
11704adee20fSdanielk1977   sqlite3VdbeResolveLabel(v, endOfLoop);
1171142e30dfSdrh   if( useTempTable ){
1172688852abSdrh     sqlite3VdbeAddOp2(v, OP_Next, srcTab, addrCont); VdbeCoverage(v);
1173e00ee6ebSdrh     sqlite3VdbeJumpHere(v, addrInsTop);
11742eb95377Sdrh     sqlite3VdbeAddOp1(v, OP_Close, srcTab);
1175142e30dfSdrh   }else if( pSelect ){
1176076e85f5Sdrh     sqlite3VdbeGoto(v, addrCont);
1177e00ee6ebSdrh     sqlite3VdbeJumpHere(v, addrInsTop);
11786b56344dSdrh   }
1179c3f9bad2Sdanielk1977 
11800b9f50d8Sdrh insert_end:
1181f3388144Sdrh   /* Update the sqlite_sequence table by storing the content of the
11820b9f50d8Sdrh   ** maximum rowid counter values recorded while inserting into
11830b9f50d8Sdrh   ** autoincrement tables.
11842958a4e6Sdrh   */
1185165921a7Sdan   if( pParse->nested==0 && pParse->pTriggerTab==0 ){
11860b9f50d8Sdrh     sqlite3AutoincrementEnd(pParse);
11870b9f50d8Sdrh   }
11882958a4e6Sdrh 
11891bee3d7bSdrh   /*
1190e7de6f25Sdanielk1977   ** Return the number of rows inserted. If this routine is
1191e7de6f25Sdanielk1977   ** generating code because of a call to sqlite3NestedParse(), do not
1192e7de6f25Sdanielk1977   ** invoke the callback function.
11931bee3d7bSdrh   */
119479636913Sdrh   if( regRowCount ){
11956a288a33Sdrh     sqlite3VdbeAddOp2(v, OP_ResultRow, regRowCount, 1);
119622322fd4Sdanielk1977     sqlite3VdbeSetNumCols(v, 1);
119710fb749bSdanielk1977     sqlite3VdbeSetColName(v, 0, COLNAME_NAME, "rows inserted", SQLITE_STATIC);
11981bee3d7bSdrh   }
1199cce7d176Sdrh 
1200cce7d176Sdrh insert_cleanup:
1201633e6d57Sdrh   sqlite3SrcListDelete(db, pTabList);
1202633e6d57Sdrh   sqlite3ExprListDelete(db, pList);
120346d2e5c3Sdrh   sqlite3UpsertDelete(db, pUpsert);
1204633e6d57Sdrh   sqlite3SelectDelete(db, pSelect);
1205633e6d57Sdrh   sqlite3IdListDelete(db, pColumn);
1206633e6d57Sdrh   sqlite3DbFree(db, aRegIdx);
1207cce7d176Sdrh }
12089cfcf5d4Sdrh 
120975cbd984Sdan /* Make sure "isView" and other macros defined above are undefined. Otherwise
121060ec914cSpeter.d.reid ** they may interfere with compilation of other functions in this file
121175cbd984Sdan ** (or in another file, if this file becomes part of the amalgamation).  */
121275cbd984Sdan #ifdef isView
121375cbd984Sdan  #undef isView
121475cbd984Sdan #endif
121575cbd984Sdan #ifdef pTrigger
121675cbd984Sdan  #undef pTrigger
121775cbd984Sdan #endif
121875cbd984Sdan #ifdef tmask
121975cbd984Sdan  #undef tmask
122075cbd984Sdan #endif
122175cbd984Sdan 
12229cfcf5d4Sdrh /*
1223e9816d82Sdrh ** Meanings of bits in of pWalker->eCode for
1224e9816d82Sdrh ** sqlite3ExprReferencesUpdatedColumn()
122598bfa16dSdrh */
122698bfa16dSdrh #define CKCNSTRNT_COLUMN   0x01    /* CHECK constraint uses a changing column */
122798bfa16dSdrh #define CKCNSTRNT_ROWID    0x02    /* CHECK constraint references the ROWID */
122898bfa16dSdrh 
1229e9816d82Sdrh /* This is the Walker callback from sqlite3ExprReferencesUpdatedColumn().
1230e9816d82Sdrh *  Set bit 0x01 of pWalker->eCode if pWalker->eCode to 0 and if this
1231e9816d82Sdrh ** expression node references any of the
12322a0b527bSdrh ** columns that are being modifed by an UPDATE statement.
12332a0b527bSdrh */
12342a0b527bSdrh static int checkConstraintExprNode(Walker *pWalker, Expr *pExpr){
123598bfa16dSdrh   if( pExpr->op==TK_COLUMN ){
123698bfa16dSdrh     assert( pExpr->iColumn>=0 || pExpr->iColumn==-1 );
123798bfa16dSdrh     if( pExpr->iColumn>=0 ){
123898bfa16dSdrh       if( pWalker->u.aiCol[pExpr->iColumn]>=0 ){
123998bfa16dSdrh         pWalker->eCode |= CKCNSTRNT_COLUMN;
124098bfa16dSdrh       }
124198bfa16dSdrh     }else{
124298bfa16dSdrh       pWalker->eCode |= CKCNSTRNT_ROWID;
124398bfa16dSdrh     }
12442a0b527bSdrh   }
12452a0b527bSdrh   return WRC_Continue;
12462a0b527bSdrh }
12472a0b527bSdrh 
12482a0b527bSdrh /*
12492a0b527bSdrh ** pExpr is a CHECK constraint on a row that is being UPDATE-ed.  The
12502a0b527bSdrh ** only columns that are modified by the UPDATE are those for which
125198bfa16dSdrh ** aiChng[i]>=0, and also the ROWID is modified if chngRowid is true.
125298bfa16dSdrh **
1253e9816d82Sdrh ** Return true if CHECK constraint pExpr uses any of the
125498bfa16dSdrh ** changing columns (or the rowid if it is changing).  In other words,
1255e9816d82Sdrh ** return true if this CHECK constraint must be validated for
125698bfa16dSdrh ** the new row in the UPDATE statement.
1257e9816d82Sdrh **
1258e9816d82Sdrh ** 2018-09-15: pExpr might also be an expression for an index-on-expressions.
1259e9816d82Sdrh ** The operation of this routine is the same - return true if an only if
1260e9816d82Sdrh ** the expression uses one or more of columns identified by the second and
1261e9816d82Sdrh ** third arguments.
12622a0b527bSdrh */
1263e9816d82Sdrh int sqlite3ExprReferencesUpdatedColumn(
1264e9816d82Sdrh   Expr *pExpr,    /* The expression to be checked */
1265e9816d82Sdrh   int *aiChng,    /* aiChng[x]>=0 if column x changed by the UPDATE */
1266e9816d82Sdrh   int chngRowid   /* True if UPDATE changes the rowid */
1267e9816d82Sdrh ){
12682a0b527bSdrh   Walker w;
12692a0b527bSdrh   memset(&w, 0, sizeof(w));
127098bfa16dSdrh   w.eCode = 0;
12712a0b527bSdrh   w.xExprCallback = checkConstraintExprNode;
12722a0b527bSdrh   w.u.aiCol = aiChng;
12732a0b527bSdrh   sqlite3WalkExpr(&w, pExpr);
127405723a9eSdrh   if( !chngRowid ){
127505723a9eSdrh     testcase( (w.eCode & CKCNSTRNT_ROWID)!=0 );
127605723a9eSdrh     w.eCode &= ~CKCNSTRNT_ROWID;
127705723a9eSdrh   }
127805723a9eSdrh   testcase( w.eCode==0 );
127905723a9eSdrh   testcase( w.eCode==CKCNSTRNT_COLUMN );
128005723a9eSdrh   testcase( w.eCode==CKCNSTRNT_ROWID );
128105723a9eSdrh   testcase( w.eCode==(CKCNSTRNT_ROWID|CKCNSTRNT_COLUMN) );
1282e9816d82Sdrh   return w.eCode!=0;
12832a0b527bSdrh }
12842a0b527bSdrh 
128511e85273Sdrh /*
12866934fc7bSdrh ** Generate code to do constraint checks prior to an INSERT or an UPDATE
12876934fc7bSdrh ** on table pTab.
12889cfcf5d4Sdrh **
12896934fc7bSdrh ** The regNewData parameter is the first register in a range that contains
12906934fc7bSdrh ** the data to be inserted or the data after the update.  There will be
12916934fc7bSdrh ** pTab->nCol+1 registers in this range.  The first register (the one
12926934fc7bSdrh ** that regNewData points to) will contain the new rowid, or NULL in the
12936934fc7bSdrh ** case of a WITHOUT ROWID table.  The second register in the range will
12946934fc7bSdrh ** contain the content of the first table column.  The third register will
12956934fc7bSdrh ** contain the content of the second table column.  And so forth.
12960ca3e24bSdrh **
1297f8ffb278Sdrh ** The regOldData parameter is similar to regNewData except that it contains
1298f8ffb278Sdrh ** the data prior to an UPDATE rather than afterwards.  regOldData is zero
1299f8ffb278Sdrh ** for an INSERT.  This routine can distinguish between UPDATE and INSERT by
1300f8ffb278Sdrh ** checking regOldData for zero.
13010ca3e24bSdrh **
1302f8ffb278Sdrh ** For an UPDATE, the pkChng boolean is true if the true primary key (the
1303f8ffb278Sdrh ** rowid for a normal table or the PRIMARY KEY for a WITHOUT ROWID table)
1304f8ffb278Sdrh ** might be modified by the UPDATE.  If pkChng is false, then the key of
1305f8ffb278Sdrh ** the iDataCur content table is guaranteed to be unchanged by the UPDATE.
13060ca3e24bSdrh **
1307f8ffb278Sdrh ** For an INSERT, the pkChng boolean indicates whether or not the rowid
1308f8ffb278Sdrh ** was explicitly specified as part of the INSERT statement.  If pkChng
1309f8ffb278Sdrh ** is zero, it means that the either rowid is computed automatically or
1310f8ffb278Sdrh ** that the table is a WITHOUT ROWID table and has no rowid.  On an INSERT,
1311f8ffb278Sdrh ** pkChng will only be true if the INSERT statement provides an integer
1312f8ffb278Sdrh ** value for either the rowid column or its INTEGER PRIMARY KEY alias.
13130ca3e24bSdrh **
13146934fc7bSdrh ** The code generated by this routine will store new index entries into
1315aa9b8963Sdrh ** registers identified by aRegIdx[].  No index entry is created for
1316aa9b8963Sdrh ** indices where aRegIdx[i]==0.  The order of indices in aRegIdx[] is
1317aa9b8963Sdrh ** the same as the order of indices on the linked list of indices
13186934fc7bSdrh ** at pTab->pIndex.
13196934fc7bSdrh **
1320a7c3b93fSdrh ** (2019-05-07) The generated code also creates a new record for the
1321a7c3b93fSdrh ** main table, if pTab is a rowid table, and stores that record in the
1322a7c3b93fSdrh ** register identified by aRegIdx[nIdx] - in other words in the first
1323a7c3b93fSdrh ** entry of aRegIdx[] past the last index.  It is important that the
1324a7c3b93fSdrh ** record be generated during constraint checks to avoid affinity changes
1325a7c3b93fSdrh ** to the register content that occur after constraint checks but before
1326a7c3b93fSdrh ** the new record is inserted.
1327a7c3b93fSdrh **
13286934fc7bSdrh ** The caller must have already opened writeable cursors on the main
13296934fc7bSdrh ** table and all applicable indices (that is to say, all indices for which
13306934fc7bSdrh ** aRegIdx[] is not zero).  iDataCur is the cursor for the main table when
13316934fc7bSdrh ** inserting or updating a rowid table, or the cursor for the PRIMARY KEY
13326934fc7bSdrh ** index when operating on a WITHOUT ROWID table.  iIdxCur is the cursor
13336934fc7bSdrh ** for the first index in the pTab->pIndex list.  Cursors for other indices
13346934fc7bSdrh ** are at iIdxCur+N for the N-th element of the pTab->pIndex list.
13359cfcf5d4Sdrh **
13369cfcf5d4Sdrh ** This routine also generates code to check constraints.  NOT NULL,
13379cfcf5d4Sdrh ** CHECK, and UNIQUE constraints are all checked.  If a constraint fails,
13381c92853dSdrh ** then the appropriate action is performed.  There are five possible
13391c92853dSdrh ** actions: ROLLBACK, ABORT, FAIL, REPLACE, and IGNORE.
13409cfcf5d4Sdrh **
13419cfcf5d4Sdrh **  Constraint type  Action       What Happens
13429cfcf5d4Sdrh **  ---------------  ----------   ----------------------------------------
13431c92853dSdrh **  any              ROLLBACK     The current transaction is rolled back and
13446934fc7bSdrh **                                sqlite3_step() returns immediately with a
13459cfcf5d4Sdrh **                                return code of SQLITE_CONSTRAINT.
13469cfcf5d4Sdrh **
13471c92853dSdrh **  any              ABORT        Back out changes from the current command
13481c92853dSdrh **                                only (do not do a complete rollback) then
13496934fc7bSdrh **                                cause sqlite3_step() to return immediately
13501c92853dSdrh **                                with SQLITE_CONSTRAINT.
13511c92853dSdrh **
13526934fc7bSdrh **  any              FAIL         Sqlite3_step() returns immediately with a
13531c92853dSdrh **                                return code of SQLITE_CONSTRAINT.  The
13541c92853dSdrh **                                transaction is not rolled back and any
13556934fc7bSdrh **                                changes to prior rows are retained.
13561c92853dSdrh **
13576934fc7bSdrh **  any              IGNORE       The attempt in insert or update the current
13586934fc7bSdrh **                                row is skipped, without throwing an error.
13596934fc7bSdrh **                                Processing continues with the next row.
13606934fc7bSdrh **                                (There is an immediate jump to ignoreDest.)
13619cfcf5d4Sdrh **
13629cfcf5d4Sdrh **  NOT NULL         REPLACE      The NULL value is replace by the default
13639cfcf5d4Sdrh **                                value for that column.  If the default value
13649cfcf5d4Sdrh **                                is NULL, the action is the same as ABORT.
13659cfcf5d4Sdrh **
13669cfcf5d4Sdrh **  UNIQUE           REPLACE      The other row that conflicts with the row
13679cfcf5d4Sdrh **                                being inserted is removed.
13689cfcf5d4Sdrh **
13699cfcf5d4Sdrh **  CHECK            REPLACE      Illegal.  The results in an exception.
13709cfcf5d4Sdrh **
13711c92853dSdrh ** Which action to take is determined by the overrideError parameter.
13721c92853dSdrh ** Or if overrideError==OE_Default, then the pParse->onError parameter
13731c92853dSdrh ** is used.  Or if pParse->onError==OE_Default then the onError value
13741c92853dSdrh ** for the constraint is used.
13759cfcf5d4Sdrh */
13764adee20fSdanielk1977 void sqlite3GenerateConstraintChecks(
13779cfcf5d4Sdrh   Parse *pParse,       /* The parser context */
13786934fc7bSdrh   Table *pTab,         /* The table being inserted or updated */
1379f8ffb278Sdrh   int *aRegIdx,        /* Use register aRegIdx[i] for index i.  0 for unused */
13806934fc7bSdrh   int iDataCur,        /* Canonical data cursor (main table or PK index) */
138126198bb4Sdrh   int iIdxCur,         /* First index cursor */
13826934fc7bSdrh   int regNewData,      /* First register in a range holding values to insert */
1383f8ffb278Sdrh   int regOldData,      /* Previous content.  0 for INSERTs */
1384f8ffb278Sdrh   u8 pkChng,           /* Non-zero if the rowid or PRIMARY KEY changed */
1385f8ffb278Sdrh   u8 overrideError,    /* Override onError to this if not OE_Default */
1386de630353Sdanielk1977   int ignoreDest,      /* Jump to this label on an OE_Ignore resolution */
1387bdb00225Sdrh   int *pbMayReplace,   /* OUT: Set to true if constraint may cause a replace */
1388788d55aaSdrh   int *aiChng,         /* column i is unchanged if aiChng[i]<0 */
1389788d55aaSdrh   Upsert *pUpsert      /* ON CONFLICT clauses, if any.  NULL otherwise */
13909cfcf5d4Sdrh ){
13911b7ecbb4Sdrh   Vdbe *v;             /* VDBE under constrution */
13921b7ecbb4Sdrh   Index *pIdx;         /* Pointer to one of the indices */
139311e85273Sdrh   Index *pPk = 0;      /* The PRIMARY KEY index */
13942938f924Sdrh   sqlite3 *db;         /* Database connection */
1395f8ffb278Sdrh   int i;               /* loop counter */
1396f8ffb278Sdrh   int ix;              /* Index loop counter */
13979cfcf5d4Sdrh   int nCol;            /* Number of columns */
13989cfcf5d4Sdrh   int onError;         /* Conflict resolution strategy */
1399728e0f91Sdrh   int addr1;           /* Address of jump instruction */
14001b7ecbb4Sdrh   int seenReplace = 0; /* True if REPLACE is used to resolve INT PK conflict */
14016fbe41acSdrh   int nPkField;        /* Number of fields in PRIMARY KEY. 1 for ROWID tables */
1402096fd476Sdrh   Index *pUpIdx = 0;   /* Index to which to apply the upsert */
14038d1b82e4Sdrh   u8 isUpdate;         /* True if this is an UPDATE operation */
140457bf4a8eSdrh   u8 bAffinityDone = 0;  /* True if the OP_Affinity operation has been run */
1405096fd476Sdrh   int upsertBypass = 0;  /* Address of Goto to bypass upsert subroutine */
140684304506Sdrh   int upsertJump = 0;    /* Address of Goto that jumps into upsert subroutine */
140784304506Sdrh   int ipkTop = 0;        /* Top of the IPK uniqueness check */
140884304506Sdrh   int ipkBottom = 0;     /* OP_Goto at the end of the IPK uniqueness check */
14099cfcf5d4Sdrh 
1410f8ffb278Sdrh   isUpdate = regOldData!=0;
14112938f924Sdrh   db = pParse->db;
14124adee20fSdanielk1977   v = sqlite3GetVdbe(pParse);
14139cfcf5d4Sdrh   assert( v!=0 );
1414417be79cSdrh   assert( pTab->pSelect==0 );  /* This table is not a VIEW */
14159cfcf5d4Sdrh   nCol = pTab->nCol;
1416aa9b8963Sdrh 
14176934fc7bSdrh   /* pPk is the PRIMARY KEY index for WITHOUT ROWID tables and NULL for
14186934fc7bSdrh   ** normal rowid tables.  nPkField is the number of key fields in the
14196934fc7bSdrh   ** pPk index or 1 for a rowid table.  In other words, nPkField is the
14206934fc7bSdrh   ** number of fields in the true primary key of the table. */
142126198bb4Sdrh   if( HasRowid(pTab) ){
142226198bb4Sdrh     pPk = 0;
142326198bb4Sdrh     nPkField = 1;
142426198bb4Sdrh   }else{
142526198bb4Sdrh     pPk = sqlite3PrimaryKeyIndex(pTab);
142626198bb4Sdrh     nPkField = pPk->nKeyCol;
142726198bb4Sdrh   }
14286fbe41acSdrh 
14296fbe41acSdrh   /* Record that this module has started */
14306fbe41acSdrh   VdbeModuleComment((v, "BEGIN: GenCnstCks(%d,%d,%d,%d,%d)",
14316934fc7bSdrh                      iDataCur, iIdxCur, regNewData, regOldData, pkChng));
14329cfcf5d4Sdrh 
14339cfcf5d4Sdrh   /* Test all NOT NULL constraints.
14349cfcf5d4Sdrh   */
14359cfcf5d4Sdrh   for(i=0; i<nCol; i++){
14360ca3e24bSdrh     if( i==pTab->iPKey ){
1437bdb00225Sdrh       continue;        /* ROWID is never NULL */
1438bdb00225Sdrh     }
1439bdb00225Sdrh     if( aiChng && aiChng[i]<0 ){
1440bdb00225Sdrh       /* Don't bother checking for NOT NULL on columns that do not change */
14410ca3e24bSdrh       continue;
14420ca3e24bSdrh     }
14439cfcf5d4Sdrh     onError = pTab->aCol[i].notNull;
1444bdb00225Sdrh     if( onError==OE_None ) continue;  /* This column is allowed to be NULL */
14459cfcf5d4Sdrh     if( overrideError!=OE_Default ){
14469cfcf5d4Sdrh       onError = overrideError;
1447a996e477Sdrh     }else if( onError==OE_Default ){
1448a996e477Sdrh       onError = OE_Abort;
14499cfcf5d4Sdrh     }
14507977a17fSdanielk1977     if( onError==OE_Replace && pTab->aCol[i].pDflt==0 ){
14519cfcf5d4Sdrh       onError = OE_Abort;
14529cfcf5d4Sdrh     }
1453b84f96f8Sdanielk1977     assert( onError==OE_Rollback || onError==OE_Abort || onError==OE_Fail
1454b84f96f8Sdanielk1977         || onError==OE_Ignore || onError==OE_Replace );
14559bfb0794Sdrh     addr1 = 0;
14569cfcf5d4Sdrh     switch( onError ){
14579bfb0794Sdrh       case OE_Replace: {
14589bfb0794Sdrh         assert( onError==OE_Replace );
1459ec4ccdbcSdrh         addr1 = sqlite3VdbeMakeLabel(pParse);
14609bfb0794Sdrh         sqlite3VdbeAddOp2(v, OP_NotNull, regNewData+1+i, addr1);
14619bfb0794Sdrh           VdbeCoverage(v);
14629bfb0794Sdrh         sqlite3ExprCode(pParse, pTab->aCol[i].pDflt, regNewData+1+i);
14639bfb0794Sdrh         sqlite3VdbeAddOp2(v, OP_NotNull, regNewData+1+i, addr1);
14649bfb0794Sdrh           VdbeCoverage(v);
14659bfb0794Sdrh         onError = OE_Abort;
14669bfb0794Sdrh         /* Fall through into the OE_Abort case to generate code that runs
14679bfb0794Sdrh         ** if both the input and the default value are NULL */
14689bfb0794Sdrh       }
14691c92853dSdrh       case OE_Abort:
1470e0af83acSdan         sqlite3MayAbort(pParse);
14710978d4ffSdrh         /* Fall through */
1472e0af83acSdan       case OE_Rollback:
14731c92853dSdrh       case OE_Fail: {
1474f9c8ce3cSdrh         char *zMsg = sqlite3MPrintf(db, "%s.%s", pTab->zName,
1475f9c8ce3cSdrh                                     pTab->aCol[i].zName);
14762700acaaSdrh         sqlite3VdbeAddOp3(v, OP_HaltIfNull, SQLITE_CONSTRAINT_NOTNULL, onError,
14772700acaaSdrh                           regNewData+1+i);
14782700acaaSdrh         sqlite3VdbeAppendP4(v, zMsg, P4_DYNAMIC);
1479f9c8ce3cSdrh         sqlite3VdbeChangeP5(v, P5_ConstraintNotNull);
1480688852abSdrh         VdbeCoverage(v);
14819bfb0794Sdrh         if( addr1 ) sqlite3VdbeResolveLabel(v, addr1);
14829cfcf5d4Sdrh         break;
14839cfcf5d4Sdrh       }
1484098d1684Sdrh       default: {
14859bfb0794Sdrh         assert( onError==OE_Ignore );
14869bfb0794Sdrh         sqlite3VdbeAddOp2(v, OP_IsNull, regNewData+1+i, ignoreDest);
1487728e0f91Sdrh         VdbeCoverage(v);
14889cfcf5d4Sdrh         break;
14899cfcf5d4Sdrh       }
14909cfcf5d4Sdrh     }
14919cfcf5d4Sdrh   }
14929cfcf5d4Sdrh 
14939cfcf5d4Sdrh   /* Test all CHECK constraints
14949cfcf5d4Sdrh   */
1495ffe07b2dSdrh #ifndef SQLITE_OMIT_CHECK
14962938f924Sdrh   if( pTab->pCheck && (db->flags & SQLITE_IgnoreChecks)==0 ){
14972938f924Sdrh     ExprList *pCheck = pTab->pCheck;
14986e97f8ecSdrh     pParse->iSelfTab = -(regNewData+1);
1499aa01c7e2Sdrh     onError = overrideError!=OE_Default ? overrideError : OE_Abort;
15002938f924Sdrh     for(i=0; i<pCheck->nExpr; i++){
150105723a9eSdrh       int allOk;
15022a0b527bSdrh       Expr *pExpr = pCheck->a[i].pExpr;
1503e9816d82Sdrh       if( aiChng
1504e9816d82Sdrh        && !sqlite3ExprReferencesUpdatedColumn(pExpr, aiChng, pkChng)
1505e9816d82Sdrh       ){
1506e9816d82Sdrh         /* The check constraints do not reference any of the columns being
1507e9816d82Sdrh         ** updated so there is no point it verifying the check constraint */
1508e9816d82Sdrh         continue;
1509e9816d82Sdrh       }
1510ec4ccdbcSdrh       allOk = sqlite3VdbeMakeLabel(pParse);
15114031bafaSdrh       sqlite3VdbeVerifyAbortable(v, onError);
15122a0b527bSdrh       sqlite3ExprIfTrue(pParse, pExpr, allOk, SQLITE_JUMPIFNULL);
15132e06c67cSdrh       if( onError==OE_Ignore ){
1514076e85f5Sdrh         sqlite3VdbeGoto(v, ignoreDest);
1515aa01c7e2Sdrh       }else{
1516f9c8ce3cSdrh         char *zName = pCheck->a[i].zName;
1517f9c8ce3cSdrh         if( zName==0 ) zName = pTab->zName;
15180ce974d1Sdrh         if( onError==OE_Replace ) onError = OE_Abort; /* IMP: R-26383-51744 */
1519d91c1a17Sdrh         sqlite3HaltConstraint(pParse, SQLITE_CONSTRAINT_CHECK,
1520f9c8ce3cSdrh                               onError, zName, P4_TRANSIENT,
1521f9c8ce3cSdrh                               P5_ConstraintCheck);
1522aa01c7e2Sdrh       }
1523ffe07b2dSdrh       sqlite3VdbeResolveLabel(v, allOk);
1524ffe07b2dSdrh     }
15256e97f8ecSdrh     pParse->iSelfTab = 0;
15262938f924Sdrh   }
1527ffe07b2dSdrh #endif /* !defined(SQLITE_OMIT_CHECK) */
15289cfcf5d4Sdrh 
1529096fd476Sdrh   /* UNIQUE and PRIMARY KEY constraints should be handled in the following
1530096fd476Sdrh   ** order:
1531096fd476Sdrh   **
153284304506Sdrh   **   (1)  OE_Update
153384304506Sdrh   **   (2)  OE_Abort, OE_Fail, OE_Rollback, OE_Ignore
1534096fd476Sdrh   **   (3)  OE_Replace
1535096fd476Sdrh   **
1536096fd476Sdrh   ** OE_Fail and OE_Ignore must happen before any changes are made.
1537096fd476Sdrh   ** OE_Update guarantees that only a single row will change, so it
1538096fd476Sdrh   ** must happen before OE_Replace.  Technically, OE_Abort and OE_Rollback
1539096fd476Sdrh   ** could happen in any order, but they are grouped up front for
1540096fd476Sdrh   ** convenience.
1541096fd476Sdrh   **
154284304506Sdrh   ** 2018-08-14: Ticket https://www.sqlite.org/src/info/908f001483982c43
154384304506Sdrh   ** The order of constraints used to have OE_Update as (2) and OE_Abort
154484304506Sdrh   ** and so forth as (1). But apparently PostgreSQL checks the OE_Update
154584304506Sdrh   ** constraint before any others, so it had to be moved.
154684304506Sdrh   **
1547096fd476Sdrh   ** Constraint checking code is generated in this order:
1548096fd476Sdrh   **   (A)  The rowid constraint
1549096fd476Sdrh   **   (B)  Unique index constraints that do not have OE_Replace as their
1550096fd476Sdrh   **        default conflict resolution strategy
1551096fd476Sdrh   **   (C)  Unique index that do use OE_Replace by default.
1552096fd476Sdrh   **
1553096fd476Sdrh   ** The ordering of (2) and (3) is accomplished by making sure the linked
1554096fd476Sdrh   ** list of indexes attached to a table puts all OE_Replace indexes last
1555096fd476Sdrh   ** in the list.  See sqlite3CreateIndex() for where that happens.
1556096fd476Sdrh   */
1557096fd476Sdrh 
1558096fd476Sdrh   if( pUpsert ){
1559096fd476Sdrh     if( pUpsert->pUpsertTarget==0 ){
1560096fd476Sdrh       /* An ON CONFLICT DO NOTHING clause, without a constraint-target.
1561096fd476Sdrh       ** Make all unique constraint resolution be OE_Ignore */
1562dedbc508Sdrh       assert( pUpsert->pUpsertSet==0 );
1563096fd476Sdrh       overrideError = OE_Ignore;
1564096fd476Sdrh       pUpsert = 0;
1565096fd476Sdrh     }else if( (pUpIdx = pUpsert->pUpsertIdx)!=0 ){
156684304506Sdrh       /* If the constraint-target uniqueness check must be run first.
156784304506Sdrh       ** Jump to that uniqueness check now */
156884304506Sdrh       upsertJump = sqlite3VdbeAddOp0(v, OP_Goto);
156984304506Sdrh       VdbeComment((v, "UPSERT constraint goes first"));
1570096fd476Sdrh     }
1571096fd476Sdrh   }
1572096fd476Sdrh 
1573f8ffb278Sdrh   /* If rowid is changing, make sure the new rowid does not previously
1574f8ffb278Sdrh   ** exist in the table.
15759cfcf5d4Sdrh   */
15766fbe41acSdrh   if( pkChng && pPk==0 ){
1577ec4ccdbcSdrh     int addrRowidOk = sqlite3VdbeMakeLabel(pParse);
157811e85273Sdrh 
1579f8ffb278Sdrh     /* Figure out what action to take in case of a rowid collision */
15800ca3e24bSdrh     onError = pTab->keyConf;
15810ca3e24bSdrh     if( overrideError!=OE_Default ){
15820ca3e24bSdrh       onError = overrideError;
1583a996e477Sdrh     }else if( onError==OE_Default ){
1584a996e477Sdrh       onError = OE_Abort;
15850ca3e24bSdrh     }
1586a0217ba7Sdrh 
1587c8a0c90bSdrh     /* figure out whether or not upsert applies in this case */
1588096fd476Sdrh     if( pUpsert && pUpsert->pUpsertIdx==0 ){
1589c8a0c90bSdrh       if( pUpsert->pUpsertSet==0 ){
1590c8a0c90bSdrh         onError = OE_Ignore;  /* DO NOTHING is the same as INSERT OR IGNORE */
1591c8a0c90bSdrh       }else{
1592c8a0c90bSdrh         onError = OE_Update;  /* DO UPDATE */
1593c8a0c90bSdrh       }
1594c8a0c90bSdrh     }
1595c8a0c90bSdrh 
15968d1b82e4Sdrh     /* If the response to a rowid conflict is REPLACE but the response
15978d1b82e4Sdrh     ** to some other UNIQUE constraint is FAIL or IGNORE, then we need
15988d1b82e4Sdrh     ** to defer the running of the rowid conflict checking until after
15998d1b82e4Sdrh     ** the UNIQUE constraints have run.
16008d1b82e4Sdrh     */
160184304506Sdrh     if( onError==OE_Replace      /* IPK rule is REPLACE */
160284304506Sdrh      && onError!=overrideError   /* Rules for other contraints are different */
160384304506Sdrh      && pTab->pIndex             /* There exist other constraints */
1604096fd476Sdrh     ){
160584304506Sdrh       ipkTop = sqlite3VdbeAddOp0(v, OP_Goto)+1;
160684304506Sdrh       VdbeComment((v, "defer IPK REPLACE until last"));
16078d1b82e4Sdrh     }
16088d1b82e4Sdrh 
1609bb6b1ca7Sdrh     if( isUpdate ){
1610bb6b1ca7Sdrh       /* pkChng!=0 does not mean that the rowid has changed, only that
1611bb6b1ca7Sdrh       ** it might have changed.  Skip the conflict logic below if the rowid
1612bb6b1ca7Sdrh       ** is unchanged. */
1613bb6b1ca7Sdrh       sqlite3VdbeAddOp3(v, OP_Eq, regNewData, addrRowidOk, regOldData);
1614bb6b1ca7Sdrh       sqlite3VdbeChangeP5(v, SQLITE_NOTNULL);
1615bb6b1ca7Sdrh       VdbeCoverage(v);
1616bb6b1ca7Sdrh     }
1617bb6b1ca7Sdrh 
1618f8ffb278Sdrh     /* Check to see if the new rowid already exists in the table.  Skip
1619f8ffb278Sdrh     ** the following conflict logic if it does not. */
16207f5f306bSdrh     VdbeNoopComment((v, "uniqueness check for ROWID"));
16214031bafaSdrh     sqlite3VdbeVerifyAbortable(v, onError);
16226934fc7bSdrh     sqlite3VdbeAddOp3(v, OP_NotExists, iDataCur, addrRowidOk, regNewData);
1623688852abSdrh     VdbeCoverage(v);
1624f8ffb278Sdrh 
16250ca3e24bSdrh     switch( onError ){
1626a0217ba7Sdrh       default: {
1627a0217ba7Sdrh         onError = OE_Abort;
1628a0217ba7Sdrh         /* Fall thru into the next case */
1629a0217ba7Sdrh       }
16301c92853dSdrh       case OE_Rollback:
16311c92853dSdrh       case OE_Abort:
16321c92853dSdrh       case OE_Fail: {
16339916048bSdrh         testcase( onError==OE_Rollback );
16349916048bSdrh         testcase( onError==OE_Abort );
16359916048bSdrh         testcase( onError==OE_Fail );
1636f9c8ce3cSdrh         sqlite3RowidConstraint(pParse, onError, pTab);
16370ca3e24bSdrh         break;
16380ca3e24bSdrh       }
16395383ae5cSdrh       case OE_Replace: {
16402283d46cSdan         /* If there are DELETE triggers on this table and the
16412283d46cSdan         ** recursive-triggers flag is set, call GenerateRowDelete() to
1642d5578433Smistachkin         ** remove the conflicting row from the table. This will fire
16432283d46cSdan         ** the triggers and remove both the table and index b-tree entries.
16442283d46cSdan         **
16452283d46cSdan         ** Otherwise, if there are no triggers or the recursive-triggers
1646da730f6eSdan         ** flag is not set, but the table has one or more indexes, call
1647da730f6eSdan         ** GenerateRowIndexDelete(). This removes the index b-tree entries
1648da730f6eSdan         ** only. The table b-tree entry will be replaced by the new entry
1649da730f6eSdan         ** when it is inserted.
1650da730f6eSdan         **
1651da730f6eSdan         ** If either GenerateRowDelete() or GenerateRowIndexDelete() is called,
1652da730f6eSdan         ** also invoke MultiWrite() to indicate that this VDBE may require
1653da730f6eSdan         ** statement rollback (if the statement is aborted after the delete
1654da730f6eSdan         ** takes place). Earlier versions called sqlite3MultiWrite() regardless,
1655da730f6eSdan         ** but being more selective here allows statements like:
1656da730f6eSdan         **
1657da730f6eSdan         **   REPLACE INTO t(rowid) VALUES($newrowid)
1658da730f6eSdan         **
1659da730f6eSdan         ** to run without a statement journal if there are no indexes on the
1660da730f6eSdan         ** table.
1661da730f6eSdan         */
16622283d46cSdan         Trigger *pTrigger = 0;
16632938f924Sdrh         if( db->flags&SQLITE_RecTriggers ){
16642283d46cSdan           pTrigger = sqlite3TriggersExist(pParse, pTab, TK_DELETE, 0, 0);
16652283d46cSdan         }
1666e7a94d81Sdan         if( pTrigger || sqlite3FkRequired(pParse, pTab, 0, 0) ){
1667da730f6eSdan           sqlite3MultiWrite(pParse);
166826198bb4Sdrh           sqlite3GenerateRowDelete(pParse, pTab, pTrigger, iDataCur, iIdxCur,
1669438b8815Sdan                                    regNewData, 1, 0, OE_Replace, 1, -1);
167046c47d46Sdan         }else{
16719b1c62d4Sdrh #ifdef SQLITE_ENABLE_PREUPDATE_HOOK
167254f2cd90Sdrh           assert( HasRowid(pTab) );
167346c47d46Sdan           /* This OP_Delete opcode fires the pre-update-hook only. It does
167446c47d46Sdan           ** not modify the b-tree. It is more efficient to let the coming
167546c47d46Sdan           ** OP_Insert replace the existing entry than it is to delete the
167646c47d46Sdan           ** existing entry and then insert a new one. */
1677cbf1b8efSdrh           sqlite3VdbeAddOp2(v, OP_Delete, iDataCur, OPFLAG_ISNOOP);
1678f14b7fb7Sdrh           sqlite3VdbeAppendP4(v, pTab, P4_TABLE);
16799b1c62d4Sdrh #endif /* SQLITE_ENABLE_PREUPDATE_HOOK */
168046c47d46Sdan           if( pTab->pIndex ){
1681da730f6eSdan             sqlite3MultiWrite(pParse);
1682f0ee1d3cSdan             sqlite3GenerateRowIndexDelete(pParse, pTab, iDataCur, iIdxCur,0,-1);
16832283d46cSdan           }
168446c47d46Sdan         }
16855383ae5cSdrh         seenReplace = 1;
16865383ae5cSdrh         break;
16875383ae5cSdrh       }
16889eddacadSdrh #ifndef SQLITE_OMIT_UPSERT
16899eddacadSdrh       case OE_Update: {
16902cc00423Sdan         sqlite3UpsertDoUpdate(pParse, pUpsert, pTab, 0, iDataCur);
16919eddacadSdrh         /* Fall through */
16929eddacadSdrh       }
16939eddacadSdrh #endif
16940ca3e24bSdrh       case OE_Ignore: {
16959916048bSdrh         testcase( onError==OE_Ignore );
1696076e85f5Sdrh         sqlite3VdbeGoto(v, ignoreDest);
16970ca3e24bSdrh         break;
16980ca3e24bSdrh       }
16990ca3e24bSdrh     }
170011e85273Sdrh     sqlite3VdbeResolveLabel(v, addrRowidOk);
170184304506Sdrh     if( ipkTop ){
170284304506Sdrh       ipkBottom = sqlite3VdbeAddOp0(v, OP_Goto);
170384304506Sdrh       sqlite3VdbeJumpHere(v, ipkTop-1);
1704a05a722fSdrh     }
17050ca3e24bSdrh   }
17060bd1f4eaSdrh 
17070bd1f4eaSdrh   /* Test all UNIQUE constraints by creating entries for each UNIQUE
17080bd1f4eaSdrh   ** index and making sure that duplicate entries do not already exist.
170911e85273Sdrh   ** Compute the revised record entries for indices as we go.
1710f8ffb278Sdrh   **
1711f8ffb278Sdrh   ** This loop also handles the case of the PRIMARY KEY index for a
1712f8ffb278Sdrh   ** WITHOUT ROWID table.
17130bd1f4eaSdrh   */
171426198bb4Sdrh   for(ix=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, ix++){
17156934fc7bSdrh     int regIdx;          /* Range of registers hold conent for pIdx */
17166934fc7bSdrh     int regR;            /* Range of registers holding conflicting PK */
17176934fc7bSdrh     int iThisCur;        /* Cursor for this UNIQUE index */
17186934fc7bSdrh     int addrUniqueOk;    /* Jump here if the UNIQUE constraint is satisfied */
17192184fc75Sdrh 
172026198bb4Sdrh     if( aRegIdx[ix]==0 ) continue;  /* Skip indices that do not change */
17217f5f306bSdrh     if( pUpIdx==pIdx ){
172284304506Sdrh       addrUniqueOk = upsertJump+1;
17237f5f306bSdrh       upsertBypass = sqlite3VdbeGoto(v, 0);
17247f5f306bSdrh       VdbeComment((v, "Skip upsert subroutine"));
172584304506Sdrh       sqlite3VdbeJumpHere(v, upsertJump);
17267f5f306bSdrh     }else{
1727ec4ccdbcSdrh       addrUniqueOk = sqlite3VdbeMakeLabel(pParse);
17287f5f306bSdrh     }
172984304506Sdrh     if( bAffinityDone==0 && (pUpIdx==0 || pUpIdx==pIdx) ){
173084304506Sdrh       sqlite3TableAffinity(v, pTab, regNewData+1);
173184304506Sdrh       bAffinityDone = 1;
173284304506Sdrh     }
17337f5f306bSdrh     VdbeNoopComment((v, "uniqueness check for %s", pIdx->zName));
17346934fc7bSdrh     iThisCur = iIdxCur+ix;
17357f5f306bSdrh 
1736b2fe7d8cSdrh 
1737f8ffb278Sdrh     /* Skip partial indices for which the WHERE clause is not true */
1738b2b9d3d7Sdrh     if( pIdx->pPartIdxWhere ){
173926198bb4Sdrh       sqlite3VdbeAddOp2(v, OP_Null, 0, aRegIdx[ix]);
17406e97f8ecSdrh       pParse->iSelfTab = -(regNewData+1);
174172bc8208Sdrh       sqlite3ExprIfFalseDup(pParse, pIdx->pPartIdxWhere, addrUniqueOk,
1742b2b9d3d7Sdrh                             SQLITE_JUMPIFNULL);
17436e97f8ecSdrh       pParse->iSelfTab = 0;
1744b2b9d3d7Sdrh     }
1745b2b9d3d7Sdrh 
17466934fc7bSdrh     /* Create a record for this index entry as it should appear after
1747f8ffb278Sdrh     ** the insert or update.  Store that record in the aRegIdx[ix] register
1748f8ffb278Sdrh     */
1749bf2f5739Sdrh     regIdx = aRegIdx[ix]+1;
17509cfcf5d4Sdrh     for(i=0; i<pIdx->nColumn; i++){
17516934fc7bSdrh       int iField = pIdx->aiColumn[i];
1752f82b9afcSdrh       int x;
17534b92f98cSdrh       if( iField==XN_EXPR ){
17546e97f8ecSdrh         pParse->iSelfTab = -(regNewData+1);
17551c75c9d7Sdrh         sqlite3ExprCodeCopy(pParse, pIdx->aColExpr->a[i].pExpr, regIdx+i);
17566e97f8ecSdrh         pParse->iSelfTab = 0;
17571f9ca2c8Sdrh         VdbeComment((v, "%s column %d", pIdx->zName, i));
1758*463e76ffSdrh       }else if( iField==XN_ROWID || iField==pTab->iPKey ){
1759f82b9afcSdrh         x = regNewData;
1760*463e76ffSdrh         sqlite3VdbeAddOp2(v, OP_IntCopy, x, regIdx+i);
1761*463e76ffSdrh         VdbeComment((v, "rowid"));
1762*463e76ffSdrh #ifndef SQLITE_OMIT_GENERATED_COLUMNS
1763*463e76ffSdrh       }else if( pTab->aCol[iField].colFlags & COLFLAG_VIRTUAL ){
1764*463e76ffSdrh         pParse->iSelfTab = -(regNewData+1);
1765*463e76ffSdrh         sqlite3ExprCodeCopy(pParse, pTab->aCol[iField].pDflt, regIdx+i);
1766*463e76ffSdrh         pParse->iSelfTab = 0;
1767*463e76ffSdrh         VdbeComment((v, "%s column %d", pIdx->zName, i));
1768*463e76ffSdrh #endif
17699cfcf5d4Sdrh       }else{
1770*463e76ffSdrh         x = sqlite3ColumnOfTable(pTab, iField) + regNewData + 1;
1771*463e76ffSdrh         sqlite3VdbeAddOp2(v, OP_SCopy, x, regIdx+i);
1772*463e76ffSdrh         VdbeComment((v, "%s", pTab->aCol[iField].zName));
17739cfcf5d4Sdrh       }
17741f9ca2c8Sdrh     }
177526198bb4Sdrh     sqlite3VdbeAddOp3(v, OP_MakeRecord, regIdx, pIdx->nColumn, aRegIdx[ix]);
177626198bb4Sdrh     VdbeComment((v, "for %s", pIdx->zName));
17777e4acf7bSdrh #ifdef SQLITE_ENABLE_NULL_TRIM
17789df385ecSdrh     if( pIdx->idxType==SQLITE_IDXTYPE_PRIMARYKEY ){
17799df385ecSdrh       sqlite3SetMakeRecordP5(v, pIdx->pTable);
17809df385ecSdrh     }
17817e4acf7bSdrh #endif
1782b2fe7d8cSdrh 
1783f8ffb278Sdrh     /* In an UPDATE operation, if this index is the PRIMARY KEY index
1784f8ffb278Sdrh     ** of a WITHOUT ROWID table and there has been no change the
1785f8ffb278Sdrh     ** primary key, then no collision is possible.  The collision detection
1786f8ffb278Sdrh     ** logic below can all be skipped. */
178700012df4Sdrh     if( isUpdate && pPk==pIdx && pkChng==0 ){
1788da475b8dSdrh       sqlite3VdbeResolveLabel(v, addrUniqueOk);
1789da475b8dSdrh       continue;
1790da475b8dSdrh     }
1791f8ffb278Sdrh 
17926934fc7bSdrh     /* Find out what action to take in case there is a uniqueness conflict */
17939cfcf5d4Sdrh     onError = pIdx->onError;
1794de630353Sdanielk1977     if( onError==OE_None ){
179511e85273Sdrh       sqlite3VdbeResolveLabel(v, addrUniqueOk);
1796de630353Sdanielk1977       continue;  /* pIdx is not a UNIQUE index */
1797de630353Sdanielk1977     }
17989cfcf5d4Sdrh     if( overrideError!=OE_Default ){
17999cfcf5d4Sdrh       onError = overrideError;
1800a996e477Sdrh     }else if( onError==OE_Default ){
1801a996e477Sdrh       onError = OE_Abort;
18029cfcf5d4Sdrh     }
18035383ae5cSdrh 
1804c8a0c90bSdrh     /* Figure out if the upsert clause applies to this index */
1805096fd476Sdrh     if( pUpIdx==pIdx ){
1806c8a0c90bSdrh       if( pUpsert->pUpsertSet==0 ){
1807c8a0c90bSdrh         onError = OE_Ignore;  /* DO NOTHING is the same as INSERT OR IGNORE */
1808c8a0c90bSdrh       }else{
1809c8a0c90bSdrh         onError = OE_Update;  /* DO UPDATE */
1810c8a0c90bSdrh       }
1811c8a0c90bSdrh     }
1812c8a0c90bSdrh 
1813801f55d8Sdrh     /* Collision detection may be omitted if all of the following are true:
1814801f55d8Sdrh     **   (1) The conflict resolution algorithm is REPLACE
1815801f55d8Sdrh     **   (2) The table is a WITHOUT ROWID table
1816801f55d8Sdrh     **   (3) There are no secondary indexes on the table
1817801f55d8Sdrh     **   (4) No delete triggers need to be fired if there is a conflict
1818f9a12a10Sdan     **   (5) No FK constraint counters need to be updated if a conflict occurs.
1819418454c6Sdan     **
1820418454c6Sdan     ** This is not possible for ENABLE_PREUPDATE_HOOK builds, as the row
1821418454c6Sdan     ** must be explicitly deleted in order to ensure any pre-update hook
1822418454c6Sdan     ** is invoked.  */
1823418454c6Sdan #ifndef SQLITE_ENABLE_PREUPDATE_HOOK
1824801f55d8Sdrh     if( (ix==0 && pIdx->pNext==0)                   /* Condition 3 */
1825801f55d8Sdrh      && pPk==pIdx                                   /* Condition 2 */
1826801f55d8Sdrh      && onError==OE_Replace                         /* Condition 1 */
1827801f55d8Sdrh      && ( 0==(db->flags&SQLITE_RecTriggers) ||      /* Condition 4 */
1828801f55d8Sdrh           0==sqlite3TriggersExist(pParse, pTab, TK_DELETE, 0, 0))
1829f9a12a10Sdan      && ( 0==(db->flags&SQLITE_ForeignKeys) ||      /* Condition 5 */
1830f9a12a10Sdan          (0==pTab->pFKey && 0==sqlite3FkReferences(pTab)))
18314e1f0efbSdan     ){
1832c6c9e158Sdrh       sqlite3VdbeResolveLabel(v, addrUniqueOk);
1833c6c9e158Sdrh       continue;
1834c6c9e158Sdrh     }
1835418454c6Sdan #endif /* ifndef SQLITE_ENABLE_PREUPDATE_HOOK */
1836c6c9e158Sdrh 
1837b2fe7d8cSdrh     /* Check to see if the new index entry will be unique */
18384031bafaSdrh     sqlite3VdbeVerifyAbortable(v, onError);
183926198bb4Sdrh     sqlite3VdbeAddOp4Int(v, OP_NoConflict, iThisCur, addrUniqueOk,
1840688852abSdrh                          regIdx, pIdx->nKeyCol); VdbeCoverage(v);
1841f8ffb278Sdrh 
1842f8ffb278Sdrh     /* Generate code to handle collisions */
1843392ee21dSdrh     regR = (pIdx==pPk) ? regIdx : sqlite3GetTempRange(pParse, nPkField);
184446d03fcbSdrh     if( isUpdate || onError==OE_Replace ){
184511e85273Sdrh       if( HasRowid(pTab) ){
18466934fc7bSdrh         sqlite3VdbeAddOp2(v, OP_IdxRowid, iThisCur, regR);
18470978d4ffSdrh         /* Conflict only if the rowid of the existing index entry
18480978d4ffSdrh         ** is different from old-rowid */
1849f8ffb278Sdrh         if( isUpdate ){
18506934fc7bSdrh           sqlite3VdbeAddOp3(v, OP_Eq, regR, addrUniqueOk, regOldData);
18513d77dee9Sdrh           sqlite3VdbeChangeP5(v, SQLITE_NOTNULL);
1852688852abSdrh           VdbeCoverage(v);
1853f8ffb278Sdrh         }
185426198bb4Sdrh       }else{
1855ccc79f02Sdrh         int x;
185626198bb4Sdrh         /* Extract the PRIMARY KEY from the end of the index entry and
1857da475b8dSdrh         ** store it in registers regR..regR+nPk-1 */
1858a021f121Sdrh         if( pIdx!=pPk ){
185926198bb4Sdrh           for(i=0; i<pPk->nKeyCol; i++){
18604b92f98cSdrh             assert( pPk->aiColumn[i]>=0 );
1861ccc79f02Sdrh             x = sqlite3ColumnOfIndex(pIdx, pPk->aiColumn[i]);
186226198bb4Sdrh             sqlite3VdbeAddOp3(v, OP_Column, iThisCur, x, regR+i);
186326198bb4Sdrh             VdbeComment((v, "%s.%s", pTab->zName,
186426198bb4Sdrh                          pTab->aCol[pPk->aiColumn[i]].zName));
186526198bb4Sdrh           }
1866da475b8dSdrh         }
1867da475b8dSdrh         if( isUpdate ){
1868e83267daSdan           /* If currently processing the PRIMARY KEY of a WITHOUT ROWID
1869e83267daSdan           ** table, only conflict if the new PRIMARY KEY values are actually
1870e83267daSdan           ** different from the old.
1871e83267daSdan           **
1872e83267daSdan           ** For a UNIQUE index, only conflict if the PRIMARY KEY values
1873e83267daSdan           ** of the matched index row are different from the original PRIMARY
1874e83267daSdan           ** KEY values of this row before the update.  */
1875e83267daSdan           int addrJump = sqlite3VdbeCurrentAddr(v)+pPk->nKeyCol;
1876e83267daSdan           int op = OP_Ne;
187748dd1d8eSdrh           int regCmp = (IsPrimaryKeyIndex(pIdx) ? regIdx : regR);
1878e83267daSdan 
1879e83267daSdan           for(i=0; i<pPk->nKeyCol; i++){
1880e83267daSdan             char *p4 = (char*)sqlite3LocateCollSeq(pParse, pPk->azColl[i]);
1881ccc79f02Sdrh             x = pPk->aiColumn[i];
18824b92f98cSdrh             assert( x>=0 );
1883e83267daSdan             if( i==(pPk->nKeyCol-1) ){
1884e83267daSdan               addrJump = addrUniqueOk;
1885e83267daSdan               op = OP_Eq;
188611e85273Sdrh             }
1887e83267daSdan             sqlite3VdbeAddOp4(v, op,
1888e83267daSdan                 regOldData+1+x, addrJump, regCmp+i, p4, P4_COLLSEQ
1889e83267daSdan             );
18903d77dee9Sdrh             sqlite3VdbeChangeP5(v, SQLITE_NOTNULL);
18913d77dee9Sdrh             VdbeCoverageIf(v, op==OP_Eq);
18923d77dee9Sdrh             VdbeCoverageIf(v, op==OP_Ne);
1893da475b8dSdrh           }
189411e85273Sdrh         }
189526198bb4Sdrh       }
189646d03fcbSdrh     }
1897b2fe7d8cSdrh 
1898b2fe7d8cSdrh     /* Generate code that executes if the new index entry is not unique */
1899b84f96f8Sdanielk1977     assert( onError==OE_Rollback || onError==OE_Abort || onError==OE_Fail
19009eddacadSdrh         || onError==OE_Ignore || onError==OE_Replace || onError==OE_Update );
19019cfcf5d4Sdrh     switch( onError ){
19021c92853dSdrh       case OE_Rollback:
19031c92853dSdrh       case OE_Abort:
19041c92853dSdrh       case OE_Fail: {
19059916048bSdrh         testcase( onError==OE_Rollback );
19069916048bSdrh         testcase( onError==OE_Abort );
19079916048bSdrh         testcase( onError==OE_Fail );
1908f9c8ce3cSdrh         sqlite3UniqueConstraint(pParse, onError, pIdx);
19099cfcf5d4Sdrh         break;
19109cfcf5d4Sdrh       }
19119eddacadSdrh #ifndef SQLITE_OMIT_UPSERT
19129eddacadSdrh       case OE_Update: {
19132cc00423Sdan         sqlite3UpsertDoUpdate(pParse, pUpsert, pTab, pIdx, iIdxCur+ix);
19149eddacadSdrh         /* Fall through */
19159eddacadSdrh       }
19169eddacadSdrh #endif
19179cfcf5d4Sdrh       case OE_Ignore: {
19189916048bSdrh         testcase( onError==OE_Ignore );
1919076e85f5Sdrh         sqlite3VdbeGoto(v, ignoreDest);
19209cfcf5d4Sdrh         break;
19219cfcf5d4Sdrh       }
1922098d1684Sdrh       default: {
19232283d46cSdan         Trigger *pTrigger = 0;
1924098d1684Sdrh         assert( onError==OE_Replace );
19252938f924Sdrh         if( db->flags&SQLITE_RecTriggers ){
19262283d46cSdan           pTrigger = sqlite3TriggersExist(pParse, pTab, TK_DELETE, 0, 0);
19272283d46cSdan         }
1928fecfb318Sdan         if( pTrigger || sqlite3FkRequired(pParse, pTab, 0, 0) ){
1929fecfb318Sdan           sqlite3MultiWrite(pParse);
1930fecfb318Sdan         }
193126198bb4Sdrh         sqlite3GenerateRowDelete(pParse, pTab, pTrigger, iDataCur, iIdxCur,
1932b0264eecSdrh             regR, nPkField, 0, OE_Replace,
193368116939Sdrh             (pIdx==pPk ? ONEPASS_SINGLE : ONEPASS_OFF), iThisCur);
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 
1954a7c3b93fSdrh   /* Generate the table record */
1955a7c3b93fSdrh   if( HasRowid(pTab) ){
1956a7c3b93fSdrh     int regRec = aRegIdx[ix];
19570b0b3a95Sdrh     sqlite3VdbeAddOp3(v, OP_MakeRecord, regNewData+1, pTab->nNVCol, regRec);
1958a7c3b93fSdrh     sqlite3SetMakeRecordP5(v, pTab);
1959a7c3b93fSdrh     if( !bAffinityDone ){
1960a7c3b93fSdrh       sqlite3TableAffinity(v, pTab, 0);
1961a7c3b93fSdrh     }
1962a7c3b93fSdrh   }
1963a7c3b93fSdrh 
1964de630353Sdanielk1977   *pbMayReplace = seenReplace;
1965ce60aa46Sdrh   VdbeModuleComment((v, "END: GenCnstCks(%d)", seenReplace));
19669cfcf5d4Sdrh }
19670ca3e24bSdrh 
1968d447dcedSdrh #ifdef SQLITE_ENABLE_NULL_TRIM
19690ca3e24bSdrh /*
1970585ce192Sdrh ** Change the P5 operand on the last opcode (which should be an OP_MakeRecord)
1971585ce192Sdrh ** to be the number of columns in table pTab that must not be NULL-trimmed.
1972585ce192Sdrh **
1973585ce192Sdrh ** Or if no columns of pTab may be NULL-trimmed, leave P5 at zero.
1974585ce192Sdrh */
1975585ce192Sdrh void sqlite3SetMakeRecordP5(Vdbe *v, Table *pTab){
1976585ce192Sdrh   u16 i;
1977585ce192Sdrh 
1978585ce192Sdrh   /* Records with omitted columns are only allowed for schema format
1979585ce192Sdrh   ** version 2 and later (SQLite version 3.1.4, 2005-02-20). */
1980585ce192Sdrh   if( pTab->pSchema->file_format<2 ) return;
1981585ce192Sdrh 
19827e4acf7bSdrh   for(i=pTab->nCol-1; i>0; i--){
19837e4acf7bSdrh     if( pTab->aCol[i].pDflt!=0 ) break;
19847e4acf7bSdrh     if( pTab->aCol[i].colFlags & COLFLAG_PRIMKEY ) break;
19857e4acf7bSdrh   }
19867e4acf7bSdrh   sqlite3VdbeChangeP5(v, i+1);
1987585ce192Sdrh }
1988d447dcedSdrh #endif
1989585ce192Sdrh 
19900ca3e24bSdrh /*
19910ca3e24bSdrh ** This routine generates code to finish the INSERT or UPDATE operation
19924adee20fSdanielk1977 ** that was started by a prior call to sqlite3GenerateConstraintChecks.
19936934fc7bSdrh ** A consecutive range of registers starting at regNewData contains the
199404adf416Sdrh ** rowid and the content to be inserted.
19950ca3e24bSdrh **
1996b419a926Sdrh ** The arguments to this routine should be the same as the first six
19974adee20fSdanielk1977 ** arguments to sqlite3GenerateConstraintChecks.
19980ca3e24bSdrh */
19994adee20fSdanielk1977 void sqlite3CompleteInsertion(
20000ca3e24bSdrh   Parse *pParse,      /* The parser context */
20010ca3e24bSdrh   Table *pTab,        /* the table into which we are inserting */
200226198bb4Sdrh   int iDataCur,       /* Cursor of the canonical data source */
200326198bb4Sdrh   int iIdxCur,        /* First index cursor */
20046934fc7bSdrh   int regNewData,     /* Range of content */
2005aa9b8963Sdrh   int *aRegIdx,       /* Register used by each index.  0 for unused indices */
2006f91c1318Sdan   int update_flags,   /* True for UPDATE, False for INSERT */
2007de630353Sdanielk1977   int appendBias,     /* True if this is likely to be an append */
2008de630353Sdanielk1977   int useSeekResult   /* True to set the USESEEKRESULT flag on OP_[Idx]Insert */
20090ca3e24bSdrh ){
20106934fc7bSdrh   Vdbe *v;            /* Prepared statements under construction */
20116934fc7bSdrh   Index *pIdx;        /* An index being inserted or updated */
20126934fc7bSdrh   u8 pik_flags;       /* flag values passed to the btree insert */
20136934fc7bSdrh   int i;              /* Loop counter */
20140ca3e24bSdrh 
2015f91c1318Sdan   assert( update_flags==0
2016f91c1318Sdan        || update_flags==OPFLAG_ISUPDATE
2017f91c1318Sdan        || update_flags==(OPFLAG_ISUPDATE|OPFLAG_SAVEPOSITION)
2018f91c1318Sdan   );
2019f91c1318Sdan 
20204adee20fSdanielk1977   v = sqlite3GetVdbe(pParse);
20210ca3e24bSdrh   assert( v!=0 );
2022417be79cSdrh   assert( pTab->pSelect==0 );  /* This table is not a VIEW */
2023b2b9d3d7Sdrh   for(i=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, i++){
2024aa9b8963Sdrh     if( aRegIdx[i]==0 ) continue;
2025b2b9d3d7Sdrh     if( pIdx->pPartIdxWhere ){
2026b2b9d3d7Sdrh       sqlite3VdbeAddOp2(v, OP_IsNull, aRegIdx[i], sqlite3VdbeCurrentAddr(v)+2);
2027688852abSdrh       VdbeCoverage(v);
2028b2b9d3d7Sdrh     }
2029cb9a3643Sdan     pik_flags = (useSeekResult ? OPFLAG_USESEEKRESULT : 0);
203048dd1d8eSdrh     if( IsPrimaryKeyIndex(pIdx) && !HasRowid(pTab) ){
20314308e348Sdrh       assert( pParse->nested==0 );
20326546af14Sdrh       pik_flags |= OPFLAG_NCHANGE;
2033f91c1318Sdan       pik_flags |= (update_flags & OPFLAG_SAVEPOSITION);
2034cb9a3643Sdan #ifdef SQLITE_ENABLE_PREUPDATE_HOOK
2035cb9a3643Sdan       if( update_flags==0 ){
203650ef6716Sdrh         int r = sqlite3GetTempReg(pParse);
203750ef6716Sdrh         sqlite3VdbeAddOp2(v, OP_Integer, 0, r);
203850ef6716Sdrh         sqlite3VdbeAddOp4(v, OP_Insert,
203950ef6716Sdrh             iIdxCur+i, aRegIdx[i], r, (char*)pTab, P4_TABLE
2040cb9a3643Sdan         );
2041cb9a3643Sdan         sqlite3VdbeChangeP5(v, OPFLAG_ISNOOP);
204250ef6716Sdrh         sqlite3ReleaseTempReg(pParse, r);
2043de630353Sdanielk1977       }
2044cb9a3643Sdan #endif
2045cb9a3643Sdan     }
2046cb9a3643Sdan     sqlite3VdbeAddOp4Int(v, OP_IdxInsert, iIdxCur+i, aRegIdx[i],
2047cb9a3643Sdan                          aRegIdx[i]+1,
2048cb9a3643Sdan                          pIdx->uniqNotNull ? pIdx->nKeyCol: pIdx->nColumn);
20499b34abeeSdrh     sqlite3VdbeChangeP5(v, pik_flags);
20500ca3e24bSdrh   }
2051ec95c441Sdrh   if( !HasRowid(pTab) ) return;
20524794f735Sdrh   if( pParse->nested ){
20534794f735Sdrh     pik_flags = 0;
20544794f735Sdrh   }else{
205594eb6a14Sdanielk1977     pik_flags = OPFLAG_NCHANGE;
2056f91c1318Sdan     pik_flags |= (update_flags?update_flags:OPFLAG_LASTROWID);
20574794f735Sdrh   }
2058e4d90813Sdrh   if( appendBias ){
2059e4d90813Sdrh     pik_flags |= OPFLAG_APPEND;
2060e4d90813Sdrh   }
2061de630353Sdanielk1977   if( useSeekResult ){
2062de630353Sdanielk1977     pik_flags |= OPFLAG_USESEEKRESULT;
2063de630353Sdanielk1977   }
2064a7c3b93fSdrh   sqlite3VdbeAddOp3(v, OP_Insert, iDataCur, aRegIdx[i], regNewData);
206594eb6a14Sdanielk1977   if( !pParse->nested ){
2066f14b7fb7Sdrh     sqlite3VdbeAppendP4(v, pTab, P4_TABLE);
206794eb6a14Sdanielk1977   }
2068b7654111Sdrh   sqlite3VdbeChangeP5(v, pik_flags);
20690ca3e24bSdrh }
2070cd44690aSdrh 
2071cd44690aSdrh /*
207226198bb4Sdrh ** Allocate cursors for the pTab table and all its indices and generate
207326198bb4Sdrh ** code to open and initialized those cursors.
2074aa9b8963Sdrh **
207526198bb4Sdrh ** The cursor for the object that contains the complete data (normally
207626198bb4Sdrh ** the table itself, but the PRIMARY KEY index in the case of a WITHOUT
207726198bb4Sdrh ** ROWID table) is returned in *piDataCur.  The first index cursor is
207826198bb4Sdrh ** returned in *piIdxCur.  The number of indices is returned.
207926198bb4Sdrh **
208026198bb4Sdrh ** Use iBase as the first cursor (either the *piDataCur for rowid tables
208126198bb4Sdrh ** or the first index for WITHOUT ROWID tables) if it is non-negative.
208226198bb4Sdrh ** If iBase is negative, then allocate the next available cursor.
208326198bb4Sdrh **
208426198bb4Sdrh ** For a rowid table, *piDataCur will be exactly one less than *piIdxCur.
208526198bb4Sdrh ** For a WITHOUT ROWID table, *piDataCur will be somewhere in the range
208626198bb4Sdrh ** of *piIdxCurs, depending on where the PRIMARY KEY index appears on the
208726198bb4Sdrh ** pTab->pIndex list.
2088b6b4b79fSdrh **
2089b6b4b79fSdrh ** If pTab is a virtual table, then this routine is a no-op and the
2090b6b4b79fSdrh ** *piDataCur and *piIdxCur values are left uninitialized.
2091cd44690aSdrh */
2092aa9b8963Sdrh int sqlite3OpenTableAndIndices(
2093290c1948Sdrh   Parse *pParse,   /* Parsing context */
2094290c1948Sdrh   Table *pTab,     /* Table to be opened */
209526198bb4Sdrh   int op,          /* OP_OpenRead or OP_OpenWrite */
2096b89aeb6aSdrh   u8 p5,           /* P5 value for OP_Open* opcodes (except on WITHOUT ROWID) */
209726198bb4Sdrh   int iBase,       /* Use this for the table cursor, if there is one */
20986a53499aSdrh   u8 *aToOpen,     /* If not NULL: boolean for each table and index */
209926198bb4Sdrh   int *piDataCur,  /* Write the database source cursor number here */
210026198bb4Sdrh   int *piIdxCur    /* Write the first index cursor number here */
2101290c1948Sdrh ){
2102cd44690aSdrh   int i;
21034cbdda9eSdrh   int iDb;
21046a53499aSdrh   int iDataCur;
2105cd44690aSdrh   Index *pIdx;
21064cbdda9eSdrh   Vdbe *v;
21074cbdda9eSdrh 
210826198bb4Sdrh   assert( op==OP_OpenRead || op==OP_OpenWrite );
2109fd261ec6Sdan   assert( op==OP_OpenWrite || p5==0 );
211026198bb4Sdrh   if( IsVirtual(pTab) ){
2111b6b4b79fSdrh     /* This routine is a no-op for virtual tables. Leave the output
2112b6b4b79fSdrh     ** variables *piDataCur and *piIdxCur uninitialized so that valgrind
2113b6b4b79fSdrh     ** can detect if they are used by mistake in the caller. */
211426198bb4Sdrh     return 0;
211526198bb4Sdrh   }
21164cbdda9eSdrh   iDb = sqlite3SchemaToIndex(pParse->db, pTab->pSchema);
21174cbdda9eSdrh   v = sqlite3GetVdbe(pParse);
2118cd44690aSdrh   assert( v!=0 );
211926198bb4Sdrh   if( iBase<0 ) iBase = pParse->nTab;
21206a53499aSdrh   iDataCur = iBase++;
21216a53499aSdrh   if( piDataCur ) *piDataCur = iDataCur;
21226a53499aSdrh   if( HasRowid(pTab) && (aToOpen==0 || aToOpen[0]) ){
21236a53499aSdrh     sqlite3OpenTable(pParse, iDataCur, iDb, pTab, op);
21246fbe41acSdrh   }else{
212526198bb4Sdrh     sqlite3TableLock(pParse, iDb, pTab->tnum, op==OP_OpenWrite, pTab->zName);
21266fbe41acSdrh   }
21276a53499aSdrh   if( piIdxCur ) *piIdxCur = iBase;
212826198bb4Sdrh   for(i=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, i++){
212926198bb4Sdrh     int iIdxCur = iBase++;
2130da184236Sdanielk1977     assert( pIdx->pSchema==pTab->pSchema );
213161441c34Sdan     if( IsPrimaryKeyIndex(pIdx) && !HasRowid(pTab) ){
213261441c34Sdan       if( piDataCur ) *piDataCur = iIdxCur;
213361441c34Sdan       p5 = 0;
213461441c34Sdan     }
21356a53499aSdrh     if( aToOpen==0 || aToOpen[i+1] ){
21362ec2fb22Sdrh       sqlite3VdbeAddOp3(v, op, iIdxCur, pIdx->tnum, iDb);
21372ec2fb22Sdrh       sqlite3VdbeSetP4KeyInfo(pParse, pIdx);
2138b89aeb6aSdrh       sqlite3VdbeChangeP5(v, p5);
213961441c34Sdan       VdbeComment((v, "%s", pIdx->zName));
2140b89aeb6aSdrh     }
21416a53499aSdrh   }
214226198bb4Sdrh   if( iBase>pParse->nTab ) pParse->nTab = iBase;
214326198bb4Sdrh   return i;
2144cd44690aSdrh }
21459d9cf229Sdrh 
214691c58e23Sdrh 
214791c58e23Sdrh #ifdef SQLITE_TEST
214891c58e23Sdrh /*
214991c58e23Sdrh ** The following global variable is incremented whenever the
215091c58e23Sdrh ** transfer optimization is used.  This is used for testing
215191c58e23Sdrh ** purposes only - to make sure the transfer optimization really
215260ec914cSpeter.d.reid ** is happening when it is supposed to.
215391c58e23Sdrh */
215491c58e23Sdrh int sqlite3_xferopt_count;
215591c58e23Sdrh #endif /* SQLITE_TEST */
215691c58e23Sdrh 
215791c58e23Sdrh 
21589d9cf229Sdrh #ifndef SQLITE_OMIT_XFER_OPT
21599d9cf229Sdrh /*
21609d9cf229Sdrh ** Check to see if index pSrc is compatible as a source of data
21619d9cf229Sdrh ** for index pDest in an insert transfer optimization.  The rules
21629d9cf229Sdrh ** for a compatible index:
21639d9cf229Sdrh **
21649d9cf229Sdrh **    *   The index is over the same set of columns
21659d9cf229Sdrh **    *   The same DESC and ASC markings occurs on all columns
21669d9cf229Sdrh **    *   The same onError processing (OE_Abort, OE_Ignore, etc)
21679d9cf229Sdrh **    *   The same collating sequence on each column
2168b2b9d3d7Sdrh **    *   The index has the exact same WHERE clause
21699d9cf229Sdrh */
21709d9cf229Sdrh static int xferCompatibleIndex(Index *pDest, Index *pSrc){
21719d9cf229Sdrh   int i;
21729d9cf229Sdrh   assert( pDest && pSrc );
21739d9cf229Sdrh   assert( pDest->pTable!=pSrc->pTable );
2174bbbdc83bSdrh   if( pDest->nKeyCol!=pSrc->nKeyCol ){
21759d9cf229Sdrh     return 0;   /* Different number of columns */
21769d9cf229Sdrh   }
21779d9cf229Sdrh   if( pDest->onError!=pSrc->onError ){
21789d9cf229Sdrh     return 0;   /* Different conflict resolution strategies */
21799d9cf229Sdrh   }
2180bbbdc83bSdrh   for(i=0; i<pSrc->nKeyCol; i++){
21819d9cf229Sdrh     if( pSrc->aiColumn[i]!=pDest->aiColumn[i] ){
21829d9cf229Sdrh       return 0;   /* Different columns indexed */
21839d9cf229Sdrh     }
21844b92f98cSdrh     if( pSrc->aiColumn[i]==XN_EXPR ){
21851f9ca2c8Sdrh       assert( pSrc->aColExpr!=0 && pDest->aColExpr!=0 );
21865aa550cfSdan       if( sqlite3ExprCompare(0, pSrc->aColExpr->a[i].pExpr,
21871f9ca2c8Sdrh                              pDest->aColExpr->a[i].pExpr, -1)!=0 ){
21881f9ca2c8Sdrh         return 0;   /* Different expressions in the index */
21891f9ca2c8Sdrh       }
21901f9ca2c8Sdrh     }
21919d9cf229Sdrh     if( pSrc->aSortOrder[i]!=pDest->aSortOrder[i] ){
21929d9cf229Sdrh       return 0;   /* Different sort orders */
21939d9cf229Sdrh     }
21940472af91Sdrh     if( sqlite3_stricmp(pSrc->azColl[i],pDest->azColl[i])!=0 ){
219560a713c6Sdrh       return 0;   /* Different collating sequences */
21969d9cf229Sdrh     }
21979d9cf229Sdrh   }
21985aa550cfSdan   if( sqlite3ExprCompare(0, pSrc->pPartIdxWhere, pDest->pPartIdxWhere, -1) ){
2199b2b9d3d7Sdrh     return 0;     /* Different WHERE clauses */
2200b2b9d3d7Sdrh   }
22019d9cf229Sdrh 
22029d9cf229Sdrh   /* If no test above fails then the indices must be compatible */
22039d9cf229Sdrh   return 1;
22049d9cf229Sdrh }
22059d9cf229Sdrh 
22069d9cf229Sdrh /*
22079d9cf229Sdrh ** Attempt the transfer optimization on INSERTs of the form
22089d9cf229Sdrh **
22099d9cf229Sdrh **     INSERT INTO tab1 SELECT * FROM tab2;
22109d9cf229Sdrh **
2211ccdf1baeSdrh ** The xfer optimization transfers raw records from tab2 over to tab1.
221260ec914cSpeter.d.reid ** Columns are not decoded and reassembled, which greatly improves
2213ccdf1baeSdrh ** performance.  Raw index records are transferred in the same way.
22149d9cf229Sdrh **
2215ccdf1baeSdrh ** The xfer optimization is only attempted if tab1 and tab2 are compatible.
2216ccdf1baeSdrh ** There are lots of rules for determining compatibility - see comments
2217ccdf1baeSdrh ** embedded in the code for details.
22189d9cf229Sdrh **
2219ccdf1baeSdrh ** This routine returns TRUE if the optimization is guaranteed to be used.
2220ccdf1baeSdrh ** Sometimes the xfer optimization will only work if the destination table
2221ccdf1baeSdrh ** is empty - a factor that can only be determined at run-time.  In that
2222ccdf1baeSdrh ** case, this routine generates code for the xfer optimization but also
2223ccdf1baeSdrh ** does a test to see if the destination table is empty and jumps over the
2224ccdf1baeSdrh ** xfer optimization code if the test fails.  In that case, this routine
2225ccdf1baeSdrh ** returns FALSE so that the caller will know to go ahead and generate
2226ccdf1baeSdrh ** an unoptimized transfer.  This routine also returns FALSE if there
2227ccdf1baeSdrh ** is no chance that the xfer optimization can be applied.
22289d9cf229Sdrh **
2229ccdf1baeSdrh ** This optimization is particularly useful at making VACUUM run faster.
22309d9cf229Sdrh */
22319d9cf229Sdrh static int xferOptimization(
22329d9cf229Sdrh   Parse *pParse,        /* Parser context */
22339d9cf229Sdrh   Table *pDest,         /* The table we are inserting into */
22349d9cf229Sdrh   Select *pSelect,      /* A SELECT statement to use as the data source */
22359d9cf229Sdrh   int onError,          /* How to handle constraint errors */
22369d9cf229Sdrh   int iDbDest           /* The database of pDest */
22379d9cf229Sdrh ){
2238e34162b1Sdan   sqlite3 *db = pParse->db;
22399d9cf229Sdrh   ExprList *pEList;                /* The result set of the SELECT */
22409d9cf229Sdrh   Table *pSrc;                     /* The table in the FROM clause of SELECT */
22419d9cf229Sdrh   Index *pSrcIdx, *pDestIdx;       /* Source and destination indices */
22429d9cf229Sdrh   struct SrcList_item *pItem;      /* An element of pSelect->pSrc */
22439d9cf229Sdrh   int i;                           /* Loop counter */
22449d9cf229Sdrh   int iDbSrc;                      /* The database of pSrc */
22459d9cf229Sdrh   int iSrc, iDest;                 /* Cursors from source and destination */
22469d9cf229Sdrh   int addr1, addr2;                /* Loop addresses */
2247da475b8dSdrh   int emptyDestTest = 0;           /* Address of test for empty pDest */
2248da475b8dSdrh   int emptySrcTest = 0;            /* Address of test for empty pSrc */
22499d9cf229Sdrh   Vdbe *v;                         /* The VDBE we are building */
22506a288a33Sdrh   int regAutoinc;                  /* Memory register used by AUTOINC */
2251f33c9fadSdrh   int destHasUniqueIdx = 0;        /* True if pDest has a UNIQUE index */
2252b7654111Sdrh   int regData, regRowid;           /* Registers holding data and rowid */
22539d9cf229Sdrh 
22549d9cf229Sdrh   if( pSelect==0 ){
22559d9cf229Sdrh     return 0;   /* Must be of the form  INSERT INTO ... SELECT ... */
22569d9cf229Sdrh   }
2257ebbf08a0Sdan   if( pParse->pWith || pSelect->pWith ){
2258ebbf08a0Sdan     /* Do not attempt to process this query if there are an WITH clauses
2259ebbf08a0Sdan     ** attached to it. Proceeding may generate a false "no such table: xxx"
2260ebbf08a0Sdan     ** error if pSelect reads from a CTE named "xxx".  */
2261ebbf08a0Sdan     return 0;
2262ebbf08a0Sdan   }
22632f886d1dSdanielk1977   if( sqlite3TriggerList(pParse, pDest) ){
22649d9cf229Sdrh     return 0;   /* tab1 must not have triggers */
22659d9cf229Sdrh   }
22669d9cf229Sdrh #ifndef SQLITE_OMIT_VIRTUALTABLE
226744266ec6Sdrh   if( IsVirtual(pDest) ){
22689d9cf229Sdrh     return 0;   /* tab1 must not be a virtual table */
22699d9cf229Sdrh   }
22709d9cf229Sdrh #endif
22719d9cf229Sdrh   if( onError==OE_Default ){
2272e7224a01Sdrh     if( pDest->iPKey>=0 ) onError = pDest->keyConf;
2273e7224a01Sdrh     if( onError==OE_Default ) onError = OE_Abort;
22749d9cf229Sdrh   }
22755ce240a6Sdanielk1977   assert(pSelect->pSrc);   /* allocated even if there is no FROM clause */
22769d9cf229Sdrh   if( pSelect->pSrc->nSrc!=1 ){
22779d9cf229Sdrh     return 0;   /* FROM clause must have exactly one term */
22789d9cf229Sdrh   }
22799d9cf229Sdrh   if( pSelect->pSrc->a[0].pSelect ){
22809d9cf229Sdrh     return 0;   /* FROM clause cannot contain a subquery */
22819d9cf229Sdrh   }
22829d9cf229Sdrh   if( pSelect->pWhere ){
22839d9cf229Sdrh     return 0;   /* SELECT may not have a WHERE clause */
22849d9cf229Sdrh   }
22859d9cf229Sdrh   if( pSelect->pOrderBy ){
22869d9cf229Sdrh     return 0;   /* SELECT may not have an ORDER BY clause */
22879d9cf229Sdrh   }
22888103b7d2Sdrh   /* Do not need to test for a HAVING clause.  If HAVING is present but
22898103b7d2Sdrh   ** there is no ORDER BY, we will get an error. */
22909d9cf229Sdrh   if( pSelect->pGroupBy ){
22919d9cf229Sdrh     return 0;   /* SELECT may not have a GROUP BY clause */
22929d9cf229Sdrh   }
22939d9cf229Sdrh   if( pSelect->pLimit ){
22949d9cf229Sdrh     return 0;   /* SELECT may not have a LIMIT clause */
22959d9cf229Sdrh   }
22969d9cf229Sdrh   if( pSelect->pPrior ){
22979d9cf229Sdrh     return 0;   /* SELECT may not be a compound query */
22989d9cf229Sdrh   }
22997d10d5a6Sdrh   if( pSelect->selFlags & SF_Distinct ){
23009d9cf229Sdrh     return 0;   /* SELECT may not be DISTINCT */
23019d9cf229Sdrh   }
23029d9cf229Sdrh   pEList = pSelect->pEList;
23039d9cf229Sdrh   assert( pEList!=0 );
23049d9cf229Sdrh   if( pEList->nExpr!=1 ){
23059d9cf229Sdrh     return 0;   /* The result set must have exactly one column */
23069d9cf229Sdrh   }
23079d9cf229Sdrh   assert( pEList->a[0].pExpr );
23081a1d3cd2Sdrh   if( pEList->a[0].pExpr->op!=TK_ASTERISK ){
23099d9cf229Sdrh     return 0;   /* The result set must be the special operator "*" */
23109d9cf229Sdrh   }
23119d9cf229Sdrh 
23129d9cf229Sdrh   /* At this point we have established that the statement is of the
23139d9cf229Sdrh   ** correct syntactic form to participate in this optimization.  Now
23149d9cf229Sdrh   ** we have to check the semantics.
23159d9cf229Sdrh   */
23169d9cf229Sdrh   pItem = pSelect->pSrc->a;
231741fb5cd1Sdan   pSrc = sqlite3LocateTableItem(pParse, 0, pItem);
23189d9cf229Sdrh   if( pSrc==0 ){
23199d9cf229Sdrh     return 0;   /* FROM clause does not contain a real table */
23209d9cf229Sdrh   }
232121908b21Sdrh   if( pSrc->tnum==pDest->tnum && pSrc->pSchema==pDest->pSchema ){
232221908b21Sdrh     testcase( pSrc!=pDest ); /* Possible due to bad sqlite_master.rootpage */
23239d9cf229Sdrh     return 0;   /* tab1 and tab2 may not be the same table */
23249d9cf229Sdrh   }
232555548273Sdrh   if( HasRowid(pDest)!=HasRowid(pSrc) ){
232655548273Sdrh     return 0;   /* source and destination must both be WITHOUT ROWID or not */
232755548273Sdrh   }
23289d9cf229Sdrh #ifndef SQLITE_OMIT_VIRTUALTABLE
232944266ec6Sdrh   if( IsVirtual(pSrc) ){
23309d9cf229Sdrh     return 0;   /* tab2 must not be a virtual table */
23319d9cf229Sdrh   }
23329d9cf229Sdrh #endif
23339d9cf229Sdrh   if( pSrc->pSelect ){
23349d9cf229Sdrh     return 0;   /* tab2 may not be a view */
23359d9cf229Sdrh   }
23369d9cf229Sdrh   if( pDest->nCol!=pSrc->nCol ){
23379d9cf229Sdrh     return 0;   /* Number of columns must be the same in tab1 and tab2 */
23389d9cf229Sdrh   }
23399d9cf229Sdrh   if( pDest->iPKey!=pSrc->iPKey ){
23409d9cf229Sdrh     return 0;   /* Both tables must have the same INTEGER PRIMARY KEY */
23419d9cf229Sdrh   }
23429d9cf229Sdrh   for(i=0; i<pDest->nCol; i++){
23439940e2aaSdan     Column *pDestCol = &pDest->aCol[i];
23449940e2aaSdan     Column *pSrcCol = &pSrc->aCol[i];
2345ba68f8f3Sdan #ifdef SQLITE_ENABLE_HIDDEN_COLUMNS
23468257aa8dSdrh     if( (db->mDbFlags & DBFLAG_Vacuum)==0
2347aaea3143Sdan      && (pDestCol->colFlags | pSrcCol->colFlags) & COLFLAG_HIDDEN
2348aaea3143Sdan     ){
2349ba68f8f3Sdan       return 0;    /* Neither table may have __hidden__ columns */
2350ba68f8f3Sdan     }
2351ba68f8f3Sdan #endif
2352ae3977a8Sdrh     if( (pDestCol->colFlags & COLFLAG_GENERATED) !=
2353ae3977a8Sdrh         (pSrcCol->colFlags & COLFLAG_GENERATED) ){
2354ae3977a8Sdrh       return 0;    /* Both columns have the same generated type */
2355ae3977a8Sdrh     }
23569940e2aaSdan     if( pDestCol->affinity!=pSrcCol->affinity ){
23579d9cf229Sdrh       return 0;    /* Affinity must be the same on all columns */
23589d9cf229Sdrh     }
23590472af91Sdrh     if( sqlite3_stricmp(pDestCol->zColl, pSrcCol->zColl)!=0 ){
23609d9cf229Sdrh       return 0;    /* Collating sequence must be the same on all columns */
23619d9cf229Sdrh     }
23629940e2aaSdan     if( pDestCol->notNull && !pSrcCol->notNull ){
23639d9cf229Sdrh       return 0;    /* tab2 must be NOT NULL if tab1 is */
23649d9cf229Sdrh     }
2365453e0261Sdrh     /* Default values for second and subsequent columns need to match. */
2366ae3977a8Sdrh     if( (pDestCol->colFlags & COLFLAG_GENERATED)==0 && i>0 ){
236794fa9c41Sdrh       assert( pDestCol->pDflt==0 || pDestCol->pDflt->op==TK_SPAN );
236894fa9c41Sdrh       assert( pSrcCol->pDflt==0 || pSrcCol->pDflt->op==TK_SPAN );
236994fa9c41Sdrh       if( (pDestCol->pDflt==0)!=(pSrcCol->pDflt==0)
237094fa9c41Sdrh        || (pDestCol->pDflt && strcmp(pDestCol->pDflt->u.zToken,
237194fa9c41Sdrh                                        pSrcCol->pDflt->u.zToken)!=0)
23729940e2aaSdan       ){
23739940e2aaSdan         return 0;    /* Default values must be the same for all columns */
23749940e2aaSdan       }
23759d9cf229Sdrh     }
2376ae3977a8Sdrh     /* Generator expressions for generated columns must match */
2377ae3977a8Sdrh     if( (pDestCol->colFlags & COLFLAG_GENERATED)!=0 ){
2378ae3977a8Sdrh       if( sqlite3ExprCompare(0, pSrcCol->pDflt, pDestCol->pDflt, -1)!=0 ){
2379ae3977a8Sdrh          return 0;  /* Different generator expressions */
2380ae3977a8Sdrh       }
2381ae3977a8Sdrh     }
238294fa9c41Sdrh   }
23839d9cf229Sdrh   for(pDestIdx=pDest->pIndex; pDestIdx; pDestIdx=pDestIdx->pNext){
23845f1d1d9cSdrh     if( IsUniqueIndex(pDestIdx) ){
2385f33c9fadSdrh       destHasUniqueIdx = 1;
2386f33c9fadSdrh     }
23879d9cf229Sdrh     for(pSrcIdx=pSrc->pIndex; pSrcIdx; pSrcIdx=pSrcIdx->pNext){
23889d9cf229Sdrh       if( xferCompatibleIndex(pDestIdx, pSrcIdx) ) break;
23899d9cf229Sdrh     }
23909d9cf229Sdrh     if( pSrcIdx==0 ){
23919d9cf229Sdrh       return 0;    /* pDestIdx has no corresponding index in pSrc */
23929d9cf229Sdrh     }
2393e3bd232eSdrh     if( pSrcIdx->tnum==pDestIdx->tnum && pSrc->pSchema==pDest->pSchema
2394e3bd232eSdrh          && sqlite3FaultSim(411)==SQLITE_OK ){
2395e3bd232eSdrh       /* The sqlite3FaultSim() call allows this corruption test to be
2396e3bd232eSdrh       ** bypassed during testing, in order to exercise other corruption tests
2397e3bd232eSdrh       ** further downstream. */
239886223e8dSdrh       return 0;   /* Corrupt schema - two indexes on the same btree */
239986223e8dSdrh     }
24009d9cf229Sdrh   }
24017fc2f41bSdrh #ifndef SQLITE_OMIT_CHECK
2402619a1305Sdrh   if( pDest->pCheck && sqlite3ExprListCompare(pSrc->pCheck,pDest->pCheck,-1) ){
24038103b7d2Sdrh     return 0;   /* Tables have different CHECK constraints.  Ticket #2252 */
24048103b7d2Sdrh   }
24057fc2f41bSdrh #endif
2406713de341Sdrh #ifndef SQLITE_OMIT_FOREIGN_KEY
2407713de341Sdrh   /* Disallow the transfer optimization if the destination table constains
2408713de341Sdrh   ** any foreign key constraints.  This is more restrictive than necessary.
2409713de341Sdrh   ** But the main beneficiary of the transfer optimization is the VACUUM
2410713de341Sdrh   ** command, and the VACUUM command disables foreign key constraints.  So
2411713de341Sdrh   ** the extra complication to make this rule less restrictive is probably
2412713de341Sdrh   ** not worth the effort.  Ticket [6284df89debdfa61db8073e062908af0c9b6118e]
2413713de341Sdrh   */
2414e34162b1Sdan   if( (db->flags & SQLITE_ForeignKeys)!=0 && pDest->pFKey!=0 ){
2415713de341Sdrh     return 0;
2416713de341Sdrh   }
2417713de341Sdrh #endif
2418e34162b1Sdan   if( (db->flags & SQLITE_CountRows)!=0 ){
2419ccdf1baeSdrh     return 0;  /* xfer opt does not play well with PRAGMA count_changes */
24201696124dSdan   }
24219d9cf229Sdrh 
2422ccdf1baeSdrh   /* If we get this far, it means that the xfer optimization is at
2423ccdf1baeSdrh   ** least a possibility, though it might only work if the destination
2424ccdf1baeSdrh   ** table (tab1) is initially empty.
24259d9cf229Sdrh   */
2426dd73521bSdrh #ifdef SQLITE_TEST
2427dd73521bSdrh   sqlite3_xferopt_count++;
2428dd73521bSdrh #endif
2429e34162b1Sdan   iDbSrc = sqlite3SchemaToIndex(db, pSrc->pSchema);
24309d9cf229Sdrh   v = sqlite3GetVdbe(pParse);
2431f53e9b5aSdrh   sqlite3CodeVerifySchema(pParse, iDbSrc);
24329d9cf229Sdrh   iSrc = pParse->nTab++;
24339d9cf229Sdrh   iDest = pParse->nTab++;
24346a288a33Sdrh   regAutoinc = autoIncBegin(pParse, iDbDest, pDest);
243555548273Sdrh   regData = sqlite3GetTempReg(pParse);
243655548273Sdrh   regRowid = sqlite3GetTempReg(pParse);
24379d9cf229Sdrh   sqlite3OpenTable(pParse, iDest, iDbDest, pDest, OP_OpenWrite);
2438427ebba1Sdan   assert( HasRowid(pDest) || destHasUniqueIdx );
24398257aa8dSdrh   if( (db->mDbFlags & DBFLAG_Vacuum)==0 && (
2440e34162b1Sdan       (pDest->iPKey<0 && pDest->pIndex!=0)          /* (1) */
2441ccdf1baeSdrh    || destHasUniqueIdx                              /* (2) */
2442ccdf1baeSdrh    || (onError!=OE_Abort && onError!=OE_Rollback)   /* (3) */
2443e34162b1Sdan   )){
2444ccdf1baeSdrh     /* In some circumstances, we are able to run the xfer optimization
2445e34162b1Sdan     ** only if the destination table is initially empty. Unless the
24468257aa8dSdrh     ** DBFLAG_Vacuum flag is set, this block generates code to make
24478257aa8dSdrh     ** that determination. If DBFLAG_Vacuum is set, then the destination
2448e34162b1Sdan     ** table is always empty.
2449e34162b1Sdan     **
2450e34162b1Sdan     ** Conditions under which the destination must be empty:
2451f33c9fadSdrh     **
2452ccdf1baeSdrh     ** (1) There is no INTEGER PRIMARY KEY but there are indices.
2453ccdf1baeSdrh     **     (If the destination is not initially empty, the rowid fields
2454ccdf1baeSdrh     **     of index entries might need to change.)
2455ccdf1baeSdrh     **
2456ccdf1baeSdrh     ** (2) The destination has a unique index.  (The xfer optimization
2457ccdf1baeSdrh     **     is unable to test uniqueness.)
2458ccdf1baeSdrh     **
2459ccdf1baeSdrh     ** (3) onError is something other than OE_Abort and OE_Rollback.
24609d9cf229Sdrh     */
2461688852abSdrh     addr1 = sqlite3VdbeAddOp2(v, OP_Rewind, iDest, 0); VdbeCoverage(v);
24622991ba05Sdrh     emptyDestTest = sqlite3VdbeAddOp0(v, OP_Goto);
24639d9cf229Sdrh     sqlite3VdbeJumpHere(v, addr1);
24649d9cf229Sdrh   }
2465427ebba1Sdan   if( HasRowid(pSrc) ){
2466c9b9deaeSdrh     u8 insFlags;
24679d9cf229Sdrh     sqlite3OpenTable(pParse, iSrc, iDbSrc, pSrc, OP_OpenRead);
2468688852abSdrh     emptySrcTest = sqlite3VdbeAddOp2(v, OP_Rewind, iSrc, 0); VdbeCoverage(v);
246942242dedSdrh     if( pDest->iPKey>=0 ){
2470b7654111Sdrh       addr1 = sqlite3VdbeAddOp2(v, OP_Rowid, iSrc, regRowid);
24714031bafaSdrh       sqlite3VdbeVerifyAbortable(v, onError);
2472b7654111Sdrh       addr2 = sqlite3VdbeAddOp3(v, OP_NotExists, iDest, 0, regRowid);
2473688852abSdrh       VdbeCoverage(v);
2474f9c8ce3cSdrh       sqlite3RowidConstraint(pParse, onError, pDest);
24759d9cf229Sdrh       sqlite3VdbeJumpHere(v, addr2);
2476b7654111Sdrh       autoIncStep(pParse, regAutoinc, regRowid);
24774e61e883Sdrh     }else if( pDest->pIndex==0 && !(db->mDbFlags & DBFLAG_VacuumInto) ){
2478b7654111Sdrh       addr1 = sqlite3VdbeAddOp2(v, OP_NewRowid, iDest, regRowid);
247995bad4c7Sdrh     }else{
2480b7654111Sdrh       addr1 = sqlite3VdbeAddOp2(v, OP_Rowid, iSrc, regRowid);
24817d10d5a6Sdrh       assert( (pDest->tabFlags & TF_Autoincrement)==0 );
248295bad4c7Sdrh     }
2483e7b554d6Sdrh     sqlite3VdbeAddOp3(v, OP_RowData, iSrc, regData, 1);
24848257aa8dSdrh     if( db->mDbFlags & DBFLAG_Vacuum ){
248586b40dfdSdrh       sqlite3VdbeAddOp1(v, OP_SeekEnd, iDest);
2486c9b9deaeSdrh       insFlags = OPFLAG_NCHANGE|OPFLAG_LASTROWID|
2487c9b9deaeSdrh                            OPFLAG_APPEND|OPFLAG_USESEEKRESULT;
2488c9b9deaeSdrh     }else{
2489c9b9deaeSdrh       insFlags = OPFLAG_NCHANGE|OPFLAG_LASTROWID|OPFLAG_APPEND;
2490c9b9deaeSdrh     }
24919b34abeeSdrh     sqlite3VdbeAddOp4(v, OP_Insert, iDest, regData, regRowid,
249220f272c9Sdrh                       (char*)pDest, P4_TABLE);
2493c9b9deaeSdrh     sqlite3VdbeChangeP5(v, insFlags);
2494688852abSdrh     sqlite3VdbeAddOp2(v, OP_Next, iSrc, addr1); VdbeCoverage(v);
249555548273Sdrh     sqlite3VdbeAddOp2(v, OP_Close, iSrc, 0);
249655548273Sdrh     sqlite3VdbeAddOp2(v, OP_Close, iDest, 0);
2497da475b8dSdrh   }else{
2498da475b8dSdrh     sqlite3TableLock(pParse, iDbDest, pDest->tnum, 1, pDest->zName);
2499da475b8dSdrh     sqlite3TableLock(pParse, iDbSrc, pSrc->tnum, 0, pSrc->zName);
250055548273Sdrh   }
25019d9cf229Sdrh   for(pDestIdx=pDest->pIndex; pDestIdx; pDestIdx=pDestIdx->pNext){
250241b9ca25Sdrh     u8 idxInsFlags = 0;
25031b7ecbb4Sdrh     for(pSrcIdx=pSrc->pIndex; ALWAYS(pSrcIdx); pSrcIdx=pSrcIdx->pNext){
25049d9cf229Sdrh       if( xferCompatibleIndex(pDestIdx, pSrcIdx) ) break;
25059d9cf229Sdrh     }
25069d9cf229Sdrh     assert( pSrcIdx );
25072ec2fb22Sdrh     sqlite3VdbeAddOp3(v, OP_OpenRead, iSrc, pSrcIdx->tnum, iDbSrc);
25082ec2fb22Sdrh     sqlite3VdbeSetP4KeyInfo(pParse, pSrcIdx);
2509d4e70ebdSdrh     VdbeComment((v, "%s", pSrcIdx->zName));
25102ec2fb22Sdrh     sqlite3VdbeAddOp3(v, OP_OpenWrite, iDest, pDestIdx->tnum, iDbDest);
25112ec2fb22Sdrh     sqlite3VdbeSetP4KeyInfo(pParse, pDestIdx);
251259885728Sdan     sqlite3VdbeChangeP5(v, OPFLAG_BULKCSR);
2513207872a4Sdanielk1977     VdbeComment((v, "%s", pDestIdx->zName));
2514688852abSdrh     addr1 = sqlite3VdbeAddOp2(v, OP_Rewind, iSrc, 0); VdbeCoverage(v);
2515e7b554d6Sdrh     sqlite3VdbeAddOp3(v, OP_RowData, iSrc, regData, 1);
25168257aa8dSdrh     if( db->mDbFlags & DBFLAG_Vacuum ){
2517e34162b1Sdan       /* This INSERT command is part of a VACUUM operation, which guarantees
2518e34162b1Sdan       ** that the destination table is empty. If all indexed columns use
2519e34162b1Sdan       ** collation sequence BINARY, then it can also be assumed that the
2520e34162b1Sdan       ** index will be populated by inserting keys in strictly sorted
2521e34162b1Sdan       ** order. In this case, instead of seeking within the b-tree as part
252286b40dfdSdrh       ** of every OP_IdxInsert opcode, an OP_SeekEnd is added before the
2523e34162b1Sdan       ** OP_IdxInsert to seek to the point within the b-tree where each key
2524e34162b1Sdan       ** should be inserted. This is faster.
2525e34162b1Sdan       **
2526e34162b1Sdan       ** If any of the indexed columns use a collation sequence other than
2527e34162b1Sdan       ** BINARY, this optimization is disabled. This is because the user
2528e34162b1Sdan       ** might change the definition of a collation sequence and then run
2529e34162b1Sdan       ** a VACUUM command. In that case keys may not be written in strictly
2530e34162b1Sdan       ** sorted order.  */
2531e34162b1Sdan       for(i=0; i<pSrcIdx->nColumn; i++){
2532f19aa5faSdrh         const char *zColl = pSrcIdx->azColl[i];
2533f19aa5faSdrh         if( sqlite3_stricmp(sqlite3StrBINARY, zColl) ) break;
2534e34162b1Sdan       }
2535e34162b1Sdan       if( i==pSrcIdx->nColumn ){
253641b9ca25Sdrh         idxInsFlags = OPFLAG_USESEEKRESULT;
253786b40dfdSdrh         sqlite3VdbeAddOp1(v, OP_SeekEnd, iDest);
2538e34162b1Sdan       }
2539e34162b1Sdan     }
25409df385ecSdrh     if( !HasRowid(pSrc) && pDestIdx->idxType==SQLITE_IDXTYPE_PRIMARYKEY ){
254141b9ca25Sdrh       idxInsFlags |= OPFLAG_NCHANGE;
254241b9ca25Sdrh     }
25439b4eaebcSdrh     sqlite3VdbeAddOp2(v, OP_IdxInsert, iDest, regData);
25449b4eaebcSdrh     sqlite3VdbeChangeP5(v, idxInsFlags|OPFLAG_APPEND);
2545688852abSdrh     sqlite3VdbeAddOp2(v, OP_Next, iSrc, addr1+1); VdbeCoverage(v);
25469d9cf229Sdrh     sqlite3VdbeJumpHere(v, addr1);
254755548273Sdrh     sqlite3VdbeAddOp2(v, OP_Close, iSrc, 0);
254855548273Sdrh     sqlite3VdbeAddOp2(v, OP_Close, iDest, 0);
25499d9cf229Sdrh   }
2550aceb31b1Sdrh   if( emptySrcTest ) sqlite3VdbeJumpHere(v, emptySrcTest);
2551b7654111Sdrh   sqlite3ReleaseTempReg(pParse, regRowid);
2552b7654111Sdrh   sqlite3ReleaseTempReg(pParse, regData);
25539d9cf229Sdrh   if( emptyDestTest ){
25541dd518cfSdrh     sqlite3AutoincrementEnd(pParse);
255566a5167bSdrh     sqlite3VdbeAddOp2(v, OP_Halt, SQLITE_OK, 0);
25569d9cf229Sdrh     sqlite3VdbeJumpHere(v, emptyDestTest);
255766a5167bSdrh     sqlite3VdbeAddOp2(v, OP_Close, iDest, 0);
25589d9cf229Sdrh     return 0;
25599d9cf229Sdrh   }else{
25609d9cf229Sdrh     return 1;
25619d9cf229Sdrh   }
25629d9cf229Sdrh }
25639d9cf229Sdrh #endif /* SQLITE_OMIT_XFER_OPT */
2564