xref: /sqlite-3.40.0/src/insert.c (revision a06eafc8)
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) );
35289a0c84Sdrh   assert( pParse->pVdbe!=0 );
36289a0c84Sdrh   v = pParse->pVdbe;
37bbb5e4e0Sdrh   assert( opcode==OP_OpenWrite || opcode==OP_OpenRead );
382ec2fb22Sdrh   sqlite3TableLock(pParse, iDb, pTab->tnum,
392ec2fb22Sdrh                    (opcode==OP_OpenWrite)?1:0, pTab->zName);
40ec95c441Sdrh   if( HasRowid(pTab) ){
410b0b3a95Sdrh     sqlite3VdbeAddOp4Int(v, opcode, iCur, pTab->tnum, iDb, pTab->nNVCol);
42bbb5e4e0Sdrh     VdbeComment((v, "%s", pTab->zName));
4326198bb4Sdrh   }else{
44dd9930efSdrh     Index *pPk = sqlite3PrimaryKeyIndex(pTab);
45dd9930efSdrh     assert( pPk!=0 );
46afe028a8Sdrh     assert( pPk->tnum==pTab->tnum );
472ec2fb22Sdrh     sqlite3VdbeAddOp3(v, opcode, iCur, pPk->tnum, iDb);
482ec2fb22Sdrh     sqlite3VdbeSetP4KeyInfo(pParse, pPk);
49bbb5e4e0Sdrh     VdbeComment((v, "%s", pTab->zName));
50bbb5e4e0Sdrh   }
51bbb5e4e0Sdrh }
52bbb5e4e0Sdrh 
53bbb5e4e0Sdrh /*
5469f8bb9cSdan ** Return a pointer to the column affinity string associated with index
5569f8bb9cSdan ** pIdx. A column affinity string has one character for each column in
5669f8bb9cSdan ** the table, according to the affinity of the column:
573d1bfeaaSdanielk1977 **
583d1bfeaaSdanielk1977 **  Character      Column affinity
593d1bfeaaSdanielk1977 **  ------------------------------
6005883a34Sdrh **  'A'            BLOB
614583c37cSdrh **  'B'            TEXT
624583c37cSdrh **  'C'            NUMERIC
634583c37cSdrh **  'D'            INTEGER
644583c37cSdrh **  'F'            REAL
652d401ab8Sdrh **
664583c37cSdrh ** An extra 'D' is appended to the end of the string to cover the
672d401ab8Sdrh ** rowid that appears as the last column in every index.
6869f8bb9cSdan **
6969f8bb9cSdan ** Memory for the buffer containing the column index affinity string
7069f8bb9cSdan ** is managed along with the rest of the Index structure. It will be
7169f8bb9cSdan ** released when sqlite3DeleteIndex() is called.
723d1bfeaaSdanielk1977 */
73e9107698Sdrh const char *sqlite3IndexAffinityStr(sqlite3 *db, Index *pIdx){
74a37cdde0Sdanielk1977   if( !pIdx->zColAff ){
75e014a838Sdanielk1977     /* The first time a column affinity string for a particular index is
76a37cdde0Sdanielk1977     ** required, it is allocated and populated here. It is then stored as
77e014a838Sdanielk1977     ** a member of the Index structure for subsequent use.
78a37cdde0Sdanielk1977     **
79a37cdde0Sdanielk1977     ** The column affinity string will eventually be deleted by
80e014a838Sdanielk1977     ** sqliteDeleteIndex() when the Index structure itself is cleaned
81a37cdde0Sdanielk1977     ** up.
82a37cdde0Sdanielk1977     */
83a37cdde0Sdanielk1977     int n;
84a37cdde0Sdanielk1977     Table *pTab = pIdx->pTable;
85ad124329Sdrh     pIdx->zColAff = (char *)sqlite3DbMallocRaw(0, pIdx->nColumn+1);
86a37cdde0Sdanielk1977     if( !pIdx->zColAff ){
874a642b60Sdrh       sqlite3OomFault(db);
8869f8bb9cSdan       return 0;
89a37cdde0Sdanielk1977     }
90a37cdde0Sdanielk1977     for(n=0; n<pIdx->nColumn; n++){
91ad124329Sdrh       i16 x = pIdx->aiColumn[n];
926860e6faSdrh       char aff;
9381506b88Sdrh       if( x>=0 ){
9481506b88Sdrh         aff = pTab->aCol[x].affinity;
9581506b88Sdrh       }else if( x==XN_ROWID ){
9681506b88Sdrh         aff = SQLITE_AFF_INTEGER;
9781506b88Sdrh       }else{
984b92f98cSdrh         assert( x==XN_EXPR );
991f9ca2c8Sdrh         assert( pIdx->aColExpr!=0 );
1006860e6faSdrh         aff = sqlite3ExprAffinity(pIdx->aColExpr->a[n].pExpr);
10181506b88Sdrh       }
10296fb16eeSdrh       if( aff<SQLITE_AFF_BLOB ) aff = SQLITE_AFF_BLOB;
1037314495fSdrh       if( aff>SQLITE_AFF_NUMERIC) aff = SQLITE_AFF_NUMERIC;
1046860e6faSdrh       pIdx->zColAff[n] = aff;
1051f9ca2c8Sdrh     }
1062d401ab8Sdrh     pIdx->zColAff[n] = 0;
107a37cdde0Sdanielk1977   }
1083d1bfeaaSdanielk1977 
10969f8bb9cSdan   return pIdx->zColAff;
110a37cdde0Sdanielk1977 }
111a37cdde0Sdanielk1977 
112a37cdde0Sdanielk1977 /*
11357bf4a8eSdrh ** Compute the affinity string for table pTab, if it has not already been
11405883a34Sdrh ** computed.  As an optimization, omit trailing SQLITE_AFF_BLOB affinities.
11557bf4a8eSdrh **
11605883a34Sdrh ** If the affinity exists (if it is no entirely SQLITE_AFF_BLOB values) and
11757bf4a8eSdrh ** if iReg>0 then code an OP_Affinity opcode that will set the affinities
11857bf4a8eSdrh ** for register iReg and following.  Or if affinities exists and iReg==0,
11957bf4a8eSdrh ** then just set the P4 operand of the previous opcode (which should  be
12057bf4a8eSdrh ** an OP_MakeRecord) to the affinity string.
12157bf4a8eSdrh **
122b6e8fd10Sdrh ** A column affinity string has one character per column:
123a37cdde0Sdanielk1977 **
124a37cdde0Sdanielk1977 **  Character      Column affinity
125a37cdde0Sdanielk1977 **  ------------------------------
12605883a34Sdrh **  'A'            BLOB
1274583c37cSdrh **  'B'            TEXT
1284583c37cSdrh **  'C'            NUMERIC
1294583c37cSdrh **  'D'            INTEGER
1304583c37cSdrh **  'E'            REAL
131a37cdde0Sdanielk1977 */
13257bf4a8eSdrh void sqlite3TableAffinity(Vdbe *v, Table *pTab, int iReg){
133ab45fc04Sdrh   int i, j;
13457bf4a8eSdrh   char *zColAff = pTab->zColAff;
13557bf4a8eSdrh   if( zColAff==0 ){
136abb6fcabSdrh     sqlite3 *db = sqlite3VdbeDb(v);
137b975598eSdrh     zColAff = (char *)sqlite3DbMallocRaw(0, pTab->nCol+1);
1383d1bfeaaSdanielk1977     if( !zColAff ){
1394a642b60Sdrh       sqlite3OomFault(db);
140a37cdde0Sdanielk1977       return;
1413d1bfeaaSdanielk1977     }
1423d1bfeaaSdanielk1977 
143ab45fc04Sdrh     for(i=j=0; i<pTab->nCol; i++){
14496fb16eeSdrh       assert( pTab->aCol[i].affinity!=0 );
145ab45fc04Sdrh       if( (pTab->aCol[i].colFlags & COLFLAG_VIRTUAL)==0 ){
146ab45fc04Sdrh         zColAff[j++] = pTab->aCol[i].affinity;
147ab45fc04Sdrh       }
1483d1bfeaaSdanielk1977     }
14957bf4a8eSdrh     do{
150ab45fc04Sdrh       zColAff[j--] = 0;
151ab45fc04Sdrh     }while( j>=0 && zColAff[j]<=SQLITE_AFF_BLOB );
1523d1bfeaaSdanielk1977     pTab->zColAff = zColAff;
1533d1bfeaaSdanielk1977   }
1547301e774Sdrh   assert( zColAff!=0 );
1557301e774Sdrh   i = sqlite3Strlen30NN(zColAff);
15657bf4a8eSdrh   if( i ){
15757bf4a8eSdrh     if( iReg ){
15857bf4a8eSdrh       sqlite3VdbeAddOp4(v, OP_Affinity, iReg, i, 0, zColAff, i);
15957bf4a8eSdrh     }else{
16057bf4a8eSdrh       sqlite3VdbeChangeP4(v, -1, zColAff, i);
16157bf4a8eSdrh     }
16257bf4a8eSdrh   }
1633d1bfeaaSdanielk1977 }
1643d1bfeaaSdanielk1977 
1654d88778bSdanielk1977 /*
16648d1178aSdrh ** Return non-zero if the table pTab in database iDb or any of its indices
167b6e8fd10Sdrh ** have been opened at any point in the VDBE program. This is used to see if
16848d1178aSdrh ** a statement of the form  "INSERT INTO <iDb, pTab> SELECT ..." can
169b6e8fd10Sdrh ** run without using a temporary table for the results of the SELECT.
1704d88778bSdanielk1977 */
17105a86c5cSdrh static int readsTable(Parse *p, int iDb, Table *pTab){
172595a523aSdanielk1977   Vdbe *v = sqlite3GetVdbe(p);
1734d88778bSdanielk1977   int i;
17448d1178aSdrh   int iEnd = sqlite3VdbeCurrentAddr(v);
175595a523aSdanielk1977 #ifndef SQLITE_OMIT_VIRTUALTABLE
176595a523aSdanielk1977   VTable *pVTab = IsVirtual(pTab) ? sqlite3GetVTable(p->db, pTab) : 0;
177595a523aSdanielk1977 #endif
178595a523aSdanielk1977 
17905a86c5cSdrh   for(i=1; i<iEnd; i++){
18048d1178aSdrh     VdbeOp *pOp = sqlite3VdbeGetOp(v, i);
181ef0bea92Sdrh     assert( pOp!=0 );
182207872a4Sdanielk1977     if( pOp->opcode==OP_OpenRead && pOp->p3==iDb ){
18348d1178aSdrh       Index *pIndex;
1848deae5adSdrh       Pgno tnum = pOp->p2;
18548d1178aSdrh       if( tnum==pTab->tnum ){
18648d1178aSdrh         return 1;
18748d1178aSdrh       }
18848d1178aSdrh       for(pIndex=pTab->pIndex; pIndex; pIndex=pIndex->pNext){
18948d1178aSdrh         if( tnum==pIndex->tnum ){
19048d1178aSdrh           return 1;
19148d1178aSdrh         }
19248d1178aSdrh       }
19348d1178aSdrh     }
194543165efSdrh #ifndef SQLITE_OMIT_VIRTUALTABLE
195595a523aSdanielk1977     if( pOp->opcode==OP_VOpen && pOp->p4.pVtab==pVTab ){
1962dca4ac1Sdanielk1977       assert( pOp->p4.pVtab!=0 );
19766a5167bSdrh       assert( pOp->p4type==P4_VTAB );
19848d1178aSdrh       return 1;
1994d88778bSdanielk1977     }
200543165efSdrh #endif
2014d88778bSdanielk1977   }
2024d88778bSdanielk1977   return 0;
2034d88778bSdanielk1977 }
2043d1bfeaaSdanielk1977 
205dfa15270Sdrh /* This walker callback will compute the union of colFlags flags for all
2067dc76d8bSdrh ** referenced columns in a CHECK constraint or generated column expression.
207dfa15270Sdrh */
208dfa15270Sdrh static int exprColumnFlagUnion(Walker *pWalker, Expr *pExpr){
2097dc76d8bSdrh   if( pExpr->op==TK_COLUMN && pExpr->iColumn>=0 ){
2107dc76d8bSdrh     assert( pExpr->iColumn < pWalker->u.pTab->nCol );
211dfa15270Sdrh     pWalker->eCode |= pWalker->u.pTab->aCol[pExpr->iColumn].colFlags;
212dfa15270Sdrh   }
213dfa15270Sdrh   return WRC_Continue;
214dfa15270Sdrh }
215dfa15270Sdrh 
216c1431144Sdrh #ifndef SQLITE_OMIT_GENERATED_COLUMNS
217c1431144Sdrh /*
218c1431144Sdrh ** All regular columns for table pTab have been puts into registers
219c1431144Sdrh ** starting with iRegStore.  The registers that correspond to STORED
220dd6cc9b5Sdrh ** or VIRTUAL columns have not yet been initialized.  This routine goes
221dd6cc9b5Sdrh ** back and computes the values for those columns based on the previously
222dd6cc9b5Sdrh ** computed normal columns.
223c1431144Sdrh */
224dd6cc9b5Sdrh void sqlite3ComputeGeneratedColumns(
225c1431144Sdrh   Parse *pParse,    /* Parsing context */
226c1431144Sdrh   int iRegStore,    /* Register holding the first column */
227c1431144Sdrh   Table *pTab       /* The table */
228c1431144Sdrh ){
229c1431144Sdrh   int i;
230dfa15270Sdrh   Walker w;
231dfa15270Sdrh   Column *pRedo;
232dfa15270Sdrh   int eProgress;
233b5f6243fSdrh   VdbeOp *pOp;
234b5f6243fSdrh 
235b5f6243fSdrh   assert( pTab->tabFlags & TF_HasGenerated );
236b5f6243fSdrh   testcase( pTab->tabFlags & TF_HasVirtual );
237b5f6243fSdrh   testcase( pTab->tabFlags & TF_HasStored );
238b5f6243fSdrh 
239b5f6243fSdrh   /* Before computing generated columns, first go through and make sure
240b5f6243fSdrh   ** that appropriate affinity has been applied to the regular columns
241b5f6243fSdrh   */
242b5f6243fSdrh   sqlite3TableAffinity(pParse->pVdbe, pTab, iRegStore);
243b5f6243fSdrh   if( (pTab->tabFlags & TF_HasStored)!=0
244b5f6243fSdrh    && (pOp = sqlite3VdbeGetOp(pParse->pVdbe,-1))->opcode==OP_Affinity
245b5f6243fSdrh   ){
246b5f6243fSdrh     /* Change the OP_Affinity argument to '@' (NONE) for all stored
247b5f6243fSdrh     ** columns.  '@' is the no-op affinity and those columns have not
248b5f6243fSdrh     ** yet been computed. */
249b5f6243fSdrh     int ii, jj;
250b5f6243fSdrh     char *zP4 = pOp->p4.z;
251b5f6243fSdrh     assert( zP4!=0 );
252b5f6243fSdrh     assert( pOp->p4type==P4_DYNAMIC );
253b5f6243fSdrh     for(ii=jj=0; zP4[jj]; ii++){
254b5f6243fSdrh       if( pTab->aCol[ii].colFlags & COLFLAG_VIRTUAL ){
255b5f6243fSdrh         continue;
256b5f6243fSdrh       }
257b5f6243fSdrh       if( pTab->aCol[ii].colFlags & COLFLAG_STORED ){
258b5f6243fSdrh         zP4[jj] = SQLITE_AFF_NONE;
259b5f6243fSdrh       }
260b5f6243fSdrh       jj++;
261b5f6243fSdrh     }
262b5f6243fSdrh   }
263dfa15270Sdrh 
264dd6cc9b5Sdrh   /* Because there can be multiple generated columns that refer to one another,
265dd6cc9b5Sdrh   ** this is a two-pass algorithm.  On the first pass, mark all generated
266dd6cc9b5Sdrh   ** columns as "not available".
2679942ef0dSdrh   */
2689942ef0dSdrh   for(i=0; i<pTab->nCol; i++){
269dd6cc9b5Sdrh     if( pTab->aCol[i].colFlags & COLFLAG_GENERATED ){
270ab0992f0Sdrh       testcase( pTab->aCol[i].colFlags & COLFLAG_VIRTUAL );
271ab0992f0Sdrh       testcase( pTab->aCol[i].colFlags & COLFLAG_STORED );
2729942ef0dSdrh       pTab->aCol[i].colFlags |= COLFLAG_NOTAVAIL;
2739942ef0dSdrh     }
2749942ef0dSdrh   }
275dfa15270Sdrh 
276dfa15270Sdrh   w.u.pTab = pTab;
277dfa15270Sdrh   w.xExprCallback = exprColumnFlagUnion;
278dfa15270Sdrh   w.xSelectCallback = 0;
279dfa15270Sdrh   w.xSelectCallback2 = 0;
280dfa15270Sdrh 
2819942ef0dSdrh   /* On the second pass, compute the value of each NOT-AVAILABLE column.
2829942ef0dSdrh   ** Companion code in the TK_COLUMN case of sqlite3ExprCodeTarget() will
2839942ef0dSdrh   ** compute dependencies and mark remove the COLSPAN_NOTAVAIL mark, as
2849942ef0dSdrh   ** they are needed.
2859942ef0dSdrh   */
286c1431144Sdrh   pParse->iSelfTab = -iRegStore;
287dfa15270Sdrh   do{
288dfa15270Sdrh     eProgress = 0;
289dfa15270Sdrh     pRedo = 0;
290dfa15270Sdrh     for(i=0; i<pTab->nCol; i++){
291dfa15270Sdrh       Column *pCol = pTab->aCol + i;
292dfa15270Sdrh       if( (pCol->colFlags & COLFLAG_NOTAVAIL)!=0 ){
293dfa15270Sdrh         int x;
294dfa15270Sdrh         pCol->colFlags |= COLFLAG_BUSY;
295dfa15270Sdrh         w.eCode = 0;
296dfa15270Sdrh         sqlite3WalkExpr(&w, pCol->pDflt);
297dfa15270Sdrh         pCol->colFlags &= ~COLFLAG_BUSY;
298dfa15270Sdrh         if( w.eCode & COLFLAG_NOTAVAIL ){
299dfa15270Sdrh           pRedo = pCol;
300dfa15270Sdrh           continue;
301dd6cc9b5Sdrh         }
302dfa15270Sdrh         eProgress = 1;
303dfa15270Sdrh         assert( pCol->colFlags & COLFLAG_GENERATED );
304dfa15270Sdrh         x = sqlite3TableColumnToStorage(pTab, i) + iRegStore;
305dfa15270Sdrh         sqlite3ExprCodeGeneratedColumn(pParse, pCol, x);
306dfa15270Sdrh         pCol->colFlags &= ~COLFLAG_NOTAVAIL;
307c1431144Sdrh       }
308dfa15270Sdrh     }
309dfa15270Sdrh   }while( pRedo && eProgress );
310dfa15270Sdrh   if( pRedo ){
311dfa15270Sdrh     sqlite3ErrorMsg(pParse, "generated column loop on \"%s\"", pRedo->zName);
312c1431144Sdrh   }
313c1431144Sdrh   pParse->iSelfTab = 0;
314c1431144Sdrh }
315c1431144Sdrh #endif /* SQLITE_OMIT_GENERATED_COLUMNS */
316c1431144Sdrh 
317c1431144Sdrh 
3189d9cf229Sdrh #ifndef SQLITE_OMIT_AUTOINCREMENT
3199d9cf229Sdrh /*
3200b9f50d8Sdrh ** Locate or create an AutoincInfo structure associated with table pTab
3210b9f50d8Sdrh ** which is in database iDb.  Return the register number for the register
3229ef5e770Sdrh ** that holds the maximum rowid.  Return zero if pTab is not an AUTOINCREMENT
3239ef5e770Sdrh ** table.  (Also return zero when doing a VACUUM since we do not want to
3249ef5e770Sdrh ** update the AUTOINCREMENT counters during a VACUUM.)
3259d9cf229Sdrh **
3260b9f50d8Sdrh ** There is at most one AutoincInfo structure per table even if the
3270b9f50d8Sdrh ** same table is autoincremented multiple times due to inserts within
3280b9f50d8Sdrh ** triggers.  A new AutoincInfo structure is created if this is the
3290b9f50d8Sdrh ** first use of table pTab.  On 2nd and subsequent uses, the original
3300b9f50d8Sdrh ** AutoincInfo structure is used.
3319d9cf229Sdrh **
332c8abbc11Sdrh ** Four consecutive registers are allocated:
3330b9f50d8Sdrh **
334c8abbc11Sdrh **   (1)  The name of the pTab table.
335c8abbc11Sdrh **   (2)  The maximum ROWID of pTab.
336c8abbc11Sdrh **   (3)  The rowid in sqlite_sequence of pTab
337c8abbc11Sdrh **   (4)  The original value of the max ROWID in pTab, or NULL if none
3380b9f50d8Sdrh **
3390b9f50d8Sdrh ** The 2nd register is the one that is returned.  That is all the
3400b9f50d8Sdrh ** insert routine needs to know about.
3419d9cf229Sdrh */
3429d9cf229Sdrh static int autoIncBegin(
3439d9cf229Sdrh   Parse *pParse,      /* Parsing context */
3449d9cf229Sdrh   int iDb,            /* Index of the database holding pTab */
3459d9cf229Sdrh   Table *pTab         /* The table we are writing to */
3469d9cf229Sdrh ){
3476a288a33Sdrh   int memId = 0;      /* Register holding maximum rowid */
348186ebd41Sdrh   assert( pParse->db->aDb[iDb].pSchema!=0 );
3499ef5e770Sdrh   if( (pTab->tabFlags & TF_Autoincrement)!=0
3508257aa8dSdrh    && (pParse->db->mDbFlags & DBFLAG_Vacuum)==0
3519ef5e770Sdrh   ){
35265a7cd16Sdan     Parse *pToplevel = sqlite3ParseToplevel(pParse);
3530b9f50d8Sdrh     AutoincInfo *pInfo;
354186ebd41Sdrh     Table *pSeqTab = pParse->db->aDb[iDb].pSchema->pSeqTab;
355186ebd41Sdrh 
356186ebd41Sdrh     /* Verify that the sqlite_sequence table exists and is an ordinary
357186ebd41Sdrh     ** rowid table with exactly two columns.
358186ebd41Sdrh     ** Ticket d8dc2b3a58cd5dc2918a1d4acb 2018-05-23 */
359186ebd41Sdrh     if( pSeqTab==0
360186ebd41Sdrh      || !HasRowid(pSeqTab)
361186ebd41Sdrh      || IsVirtual(pSeqTab)
362186ebd41Sdrh      || pSeqTab->nCol!=2
363186ebd41Sdrh     ){
364186ebd41Sdrh       pParse->nErr++;
365186ebd41Sdrh       pParse->rc = SQLITE_CORRUPT_SEQUENCE;
366186ebd41Sdrh       return 0;
367186ebd41Sdrh     }
3680b9f50d8Sdrh 
36965a7cd16Sdan     pInfo = pToplevel->pAinc;
3700b9f50d8Sdrh     while( pInfo && pInfo->pTab!=pTab ){ pInfo = pInfo->pNext; }
3710b9f50d8Sdrh     if( pInfo==0 ){
372575fad65Sdrh       pInfo = sqlite3DbMallocRawNN(pParse->db, sizeof(*pInfo));
3730b9f50d8Sdrh       if( pInfo==0 ) return 0;
37465a7cd16Sdan       pInfo->pNext = pToplevel->pAinc;
37565a7cd16Sdan       pToplevel->pAinc = pInfo;
3760b9f50d8Sdrh       pInfo->pTab = pTab;
3770b9f50d8Sdrh       pInfo->iDb = iDb;
37865a7cd16Sdan       pToplevel->nMem++;                  /* Register to hold name of table */
37965a7cd16Sdan       pInfo->regCtr = ++pToplevel->nMem;  /* Max rowid register */
380c8abbc11Sdrh       pToplevel->nMem +=2;       /* Rowid in sqlite_sequence + orig max val */
3810b9f50d8Sdrh     }
3820b9f50d8Sdrh     memId = pInfo->regCtr;
3839d9cf229Sdrh   }
3849d9cf229Sdrh   return memId;
3859d9cf229Sdrh }
3869d9cf229Sdrh 
3879d9cf229Sdrh /*
3880b9f50d8Sdrh ** This routine generates code that will initialize all of the
3890b9f50d8Sdrh ** register used by the autoincrement tracker.
3900b9f50d8Sdrh */
3910b9f50d8Sdrh void sqlite3AutoincrementBegin(Parse *pParse){
3920b9f50d8Sdrh   AutoincInfo *p;            /* Information about an AUTOINCREMENT */
3930b9f50d8Sdrh   sqlite3 *db = pParse->db;  /* The database connection */
3940b9f50d8Sdrh   Db *pDb;                   /* Database only autoinc table */
3950b9f50d8Sdrh   int memId;                 /* Register holding max rowid */
3960b9f50d8Sdrh   Vdbe *v = pParse->pVdbe;   /* VDBE under construction */
3970b9f50d8Sdrh 
398345ba7dbSdrh   /* This routine is never called during trigger-generation.  It is
399345ba7dbSdrh   ** only called from the top-level */
400345ba7dbSdrh   assert( pParse->pTriggerTab==0 );
401c149f18fSdrh   assert( sqlite3IsToplevel(pParse) );
40276d462eeSdan 
4030b9f50d8Sdrh   assert( v );   /* We failed long ago if this is not so */
4040b9f50d8Sdrh   for(p = pParse->pAinc; p; p = p->pNext){
4051b32554bSdrh     static const int iLn = VDBE_OFFSET_LINENO(2);
4061b32554bSdrh     static const VdbeOpList autoInc[] = {
4071b32554bSdrh       /* 0  */ {OP_Null,    0,  0, 0},
408c8abbc11Sdrh       /* 1  */ {OP_Rewind,  0, 10, 0},
4091b32554bSdrh       /* 2  */ {OP_Column,  0,  0, 0},
410c8abbc11Sdrh       /* 3  */ {OP_Ne,      0,  9, 0},
4111b32554bSdrh       /* 4  */ {OP_Rowid,   0,  0, 0},
4121b32554bSdrh       /* 5  */ {OP_Column,  0,  1, 0},
413c8abbc11Sdrh       /* 6  */ {OP_AddImm,  0,  0, 0},
414c8abbc11Sdrh       /* 7  */ {OP_Copy,    0,  0, 0},
415c8abbc11Sdrh       /* 8  */ {OP_Goto,    0, 11, 0},
416c8abbc11Sdrh       /* 9  */ {OP_Next,    0,  2, 0},
417c8abbc11Sdrh       /* 10 */ {OP_Integer, 0,  0, 0},
418c8abbc11Sdrh       /* 11 */ {OP_Close,   0,  0, 0}
4191b32554bSdrh     };
4201b32554bSdrh     VdbeOp *aOp;
4210b9f50d8Sdrh     pDb = &db->aDb[p->iDb];
4220b9f50d8Sdrh     memId = p->regCtr;
4232120608eSdrh     assert( sqlite3SchemaMutexHeld(db, 0, pDb->pSchema) );
4240b9f50d8Sdrh     sqlite3OpenTable(pParse, 0, p->iDb, pDb->pSchema->pSeqTab, OP_OpenRead);
425076e85f5Sdrh     sqlite3VdbeLoadString(v, memId-1, p->pTab->zName);
4261b32554bSdrh     aOp = sqlite3VdbeAddOpList(v, ArraySize(autoInc), autoInc, iLn);
4271b32554bSdrh     if( aOp==0 ) break;
4281b32554bSdrh     aOp[0].p2 = memId;
429c8abbc11Sdrh     aOp[0].p3 = memId+2;
4301b32554bSdrh     aOp[2].p3 = memId;
4311b32554bSdrh     aOp[3].p1 = memId-1;
4321b32554bSdrh     aOp[3].p3 = memId;
4331b32554bSdrh     aOp[3].p5 = SQLITE_JUMPIFNULL;
4341b32554bSdrh     aOp[4].p2 = memId+1;
4351b32554bSdrh     aOp[5].p3 = memId;
436c8abbc11Sdrh     aOp[6].p1 = memId;
437c8abbc11Sdrh     aOp[7].p2 = memId+2;
438c8abbc11Sdrh     aOp[7].p1 = memId;
439c8abbc11Sdrh     aOp[10].p2 = memId;
44004ab586bSdrh     if( pParse->nTab==0 ) pParse->nTab = 1;
4410b9f50d8Sdrh   }
4420b9f50d8Sdrh }
4430b9f50d8Sdrh 
4440b9f50d8Sdrh /*
4459d9cf229Sdrh ** Update the maximum rowid for an autoincrement calculation.
4469d9cf229Sdrh **
4471b32554bSdrh ** This routine should be called when the regRowid register holds a
4489d9cf229Sdrh ** new rowid that is about to be inserted.  If that new rowid is
4499d9cf229Sdrh ** larger than the maximum rowid in the memId memory cell, then the
4501b32554bSdrh ** memory cell is updated.
4519d9cf229Sdrh */
4526a288a33Sdrh static void autoIncStep(Parse *pParse, int memId, int regRowid){
4539d9cf229Sdrh   if( memId>0 ){
4546a288a33Sdrh     sqlite3VdbeAddOp2(pParse->pVdbe, OP_MemMax, memId, regRowid);
4559d9cf229Sdrh   }
4569d9cf229Sdrh }
4579d9cf229Sdrh 
4589d9cf229Sdrh /*
4590b9f50d8Sdrh ** This routine generates the code needed to write autoincrement
4600b9f50d8Sdrh ** maximum rowid values back into the sqlite_sequence register.
4610b9f50d8Sdrh ** Every statement that might do an INSERT into an autoincrement
4620b9f50d8Sdrh ** table (either directly or through triggers) needs to call this
4630b9f50d8Sdrh ** routine just before the "exit" code.
4649d9cf229Sdrh */
4651b32554bSdrh static SQLITE_NOINLINE void autoIncrementEnd(Parse *pParse){
4660b9f50d8Sdrh   AutoincInfo *p;
4679d9cf229Sdrh   Vdbe *v = pParse->pVdbe;
4680b9f50d8Sdrh   sqlite3 *db = pParse->db;
4696a288a33Sdrh 
4709d9cf229Sdrh   assert( v );
4710b9f50d8Sdrh   for(p = pParse->pAinc; p; p = p->pNext){
4721b32554bSdrh     static const int iLn = VDBE_OFFSET_LINENO(2);
4731b32554bSdrh     static const VdbeOpList autoIncEnd[] = {
4741b32554bSdrh       /* 0 */ {OP_NotNull,     0, 2, 0},
4751b32554bSdrh       /* 1 */ {OP_NewRowid,    0, 0, 0},
4761b32554bSdrh       /* 2 */ {OP_MakeRecord,  0, 2, 0},
4771b32554bSdrh       /* 3 */ {OP_Insert,      0, 0, 0},
4781b32554bSdrh       /* 4 */ {OP_Close,       0, 0, 0}
4791b32554bSdrh     };
4801b32554bSdrh     VdbeOp *aOp;
4810b9f50d8Sdrh     Db *pDb = &db->aDb[p->iDb];
4820b9f50d8Sdrh     int iRec;
4830b9f50d8Sdrh     int memId = p->regCtr;
4840b9f50d8Sdrh 
4850b9f50d8Sdrh     iRec = sqlite3GetTempReg(pParse);
4862120608eSdrh     assert( sqlite3SchemaMutexHeld(db, 0, pDb->pSchema) );
487c8abbc11Sdrh     sqlite3VdbeAddOp3(v, OP_Le, memId+2, sqlite3VdbeCurrentAddr(v)+7, memId);
488c8abbc11Sdrh     VdbeCoverage(v);
4890b9f50d8Sdrh     sqlite3OpenTable(pParse, 0, p->iDb, pDb->pSchema->pSeqTab, OP_OpenWrite);
4901b32554bSdrh     aOp = sqlite3VdbeAddOpList(v, ArraySize(autoIncEnd), autoIncEnd, iLn);
4911b32554bSdrh     if( aOp==0 ) break;
4921b32554bSdrh     aOp[0].p1 = memId+1;
4931b32554bSdrh     aOp[1].p2 = memId+1;
4941b32554bSdrh     aOp[2].p1 = memId-1;
4951b32554bSdrh     aOp[2].p3 = iRec;
4961b32554bSdrh     aOp[3].p2 = iRec;
4971b32554bSdrh     aOp[3].p3 = memId+1;
4981b32554bSdrh     aOp[3].p5 = OPFLAG_APPEND;
4990b9f50d8Sdrh     sqlite3ReleaseTempReg(pParse, iRec);
5009d9cf229Sdrh   }
5019d9cf229Sdrh }
5021b32554bSdrh void sqlite3AutoincrementEnd(Parse *pParse){
5031b32554bSdrh   if( pParse->pAinc ) autoIncrementEnd(pParse);
5041b32554bSdrh }
5059d9cf229Sdrh #else
5069d9cf229Sdrh /*
5079d9cf229Sdrh ** If SQLITE_OMIT_AUTOINCREMENT is defined, then the three routines
5089d9cf229Sdrh ** above are all no-ops
5099d9cf229Sdrh */
5109d9cf229Sdrh # define autoIncBegin(A,B,C) (0)
511287fb61cSdanielk1977 # define autoIncStep(A,B,C)
5129d9cf229Sdrh #endif /* SQLITE_OMIT_AUTOINCREMENT */
5139d9cf229Sdrh 
5149d9cf229Sdrh 
5159d9cf229Sdrh /* Forward declaration */
5169d9cf229Sdrh static int xferOptimization(
5179d9cf229Sdrh   Parse *pParse,        /* Parser context */
5189d9cf229Sdrh   Table *pDest,         /* The table we are inserting into */
5199d9cf229Sdrh   Select *pSelect,      /* A SELECT statement to use as the data source */
5209d9cf229Sdrh   int onError,          /* How to handle constraint errors */
5219d9cf229Sdrh   int iDbDest           /* The database of pDest */
5229d9cf229Sdrh );
5239d9cf229Sdrh 
5243d1bfeaaSdanielk1977 /*
525d82b5021Sdrh ** This routine is called to handle SQL of the following forms:
526cce7d176Sdrh **
527a21f78b9Sdrh **    insert into TABLE (IDLIST) values(EXPRLIST),(EXPRLIST),...
5281ccde15dSdrh **    insert into TABLE (IDLIST) select
529a21f78b9Sdrh **    insert into TABLE (IDLIST) default values
530cce7d176Sdrh **
5311ccde15dSdrh ** The IDLIST following the table name is always optional.  If omitted,
532a21f78b9Sdrh ** then a list of all (non-hidden) columns for the table is substituted.
533a21f78b9Sdrh ** The IDLIST appears in the pColumn parameter.  pColumn is NULL if IDLIST
534a21f78b9Sdrh ** is omitted.
5351ccde15dSdrh **
536a21f78b9Sdrh ** For the pSelect parameter holds the values to be inserted for the
537a21f78b9Sdrh ** first two forms shown above.  A VALUES clause is really just short-hand
538a21f78b9Sdrh ** for a SELECT statement that omits the FROM clause and everything else
539a21f78b9Sdrh ** that follows.  If the pSelect parameter is NULL, that means that the
540a21f78b9Sdrh ** DEFAULT VALUES form of the INSERT statement is intended.
541142e30dfSdrh **
5429d9cf229Sdrh ** The code generated follows one of four templates.  For a simple
543a21f78b9Sdrh ** insert with data coming from a single-row VALUES clause, the code executes
544e00ee6ebSdrh ** once straight down through.  Pseudo-code follows (we call this
545e00ee6ebSdrh ** the "1st template"):
546142e30dfSdrh **
547142e30dfSdrh **         open write cursor to <table> and its indices
548ec95c441Sdrh **         put VALUES clause expressions into registers
549142e30dfSdrh **         write the resulting record into <table>
550142e30dfSdrh **         cleanup
551142e30dfSdrh **
5529d9cf229Sdrh ** The three remaining templates assume the statement is of the form
553142e30dfSdrh **
554142e30dfSdrh **   INSERT INTO <table> SELECT ...
555142e30dfSdrh **
5569d9cf229Sdrh ** If the SELECT clause is of the restricted form "SELECT * FROM <table2>" -
5579d9cf229Sdrh ** in other words if the SELECT pulls all columns from a single table
5589d9cf229Sdrh ** and there is no WHERE or LIMIT or GROUP BY or ORDER BY clauses, and
5599d9cf229Sdrh ** if <table2> and <table1> are distinct tables but have identical
5609d9cf229Sdrh ** schemas, including all the same indices, then a special optimization
5619d9cf229Sdrh ** is invoked that copies raw records from <table2> over to <table1>.
5629d9cf229Sdrh ** See the xferOptimization() function for the implementation of this
563e00ee6ebSdrh ** template.  This is the 2nd template.
5649d9cf229Sdrh **
5659d9cf229Sdrh **         open a write cursor to <table>
5669d9cf229Sdrh **         open read cursor on <table2>
5679d9cf229Sdrh **         transfer all records in <table2> over to <table>
5689d9cf229Sdrh **         close cursors
5699d9cf229Sdrh **         foreach index on <table>
5709d9cf229Sdrh **           open a write cursor on the <table> index
5719d9cf229Sdrh **           open a read cursor on the corresponding <table2> index
5729d9cf229Sdrh **           transfer all records from the read to the write cursors
5739d9cf229Sdrh **           close cursors
5749d9cf229Sdrh **         end foreach
5759d9cf229Sdrh **
576e00ee6ebSdrh ** The 3rd template is for when the second template does not apply
5779d9cf229Sdrh ** and the SELECT clause does not read from <table> at any time.
5789d9cf229Sdrh ** The generated code follows this template:
579142e30dfSdrh **
580e00ee6ebSdrh **         X <- A
581142e30dfSdrh **         goto B
582142e30dfSdrh **      A: setup for the SELECT
5839d9cf229Sdrh **         loop over the rows in the SELECT
584e00ee6ebSdrh **           load values into registers R..R+n
585e00ee6ebSdrh **           yield X
586142e30dfSdrh **         end loop
587142e30dfSdrh **         cleanup after the SELECT
58881cf13ecSdrh **         end-coroutine X
589e00ee6ebSdrh **      B: open write cursor to <table> and its indices
59081cf13ecSdrh **      C: yield X, at EOF goto D
591e00ee6ebSdrh **         insert the select result into <table> from R..R+n
592e00ee6ebSdrh **         goto C
593142e30dfSdrh **      D: cleanup
594142e30dfSdrh **
595e00ee6ebSdrh ** The 4th template is used if the insert statement takes its
596142e30dfSdrh ** values from a SELECT but the data is being inserted into a table
597142e30dfSdrh ** that is also read as part of the SELECT.  In the third form,
59860ec914cSpeter.d.reid ** we have to use an intermediate table to store the results of
599142e30dfSdrh ** the select.  The template is like this:
600142e30dfSdrh **
601e00ee6ebSdrh **         X <- A
602142e30dfSdrh **         goto B
603142e30dfSdrh **      A: setup for the SELECT
604142e30dfSdrh **         loop over the tables in the SELECT
605e00ee6ebSdrh **           load value into register R..R+n
606e00ee6ebSdrh **           yield X
607142e30dfSdrh **         end loop
608142e30dfSdrh **         cleanup after the SELECT
60981cf13ecSdrh **         end co-routine R
610e00ee6ebSdrh **      B: open temp table
61181cf13ecSdrh **      L: yield X, at EOF goto M
612e00ee6ebSdrh **         insert row from R..R+n into temp table
613e00ee6ebSdrh **         goto L
614e00ee6ebSdrh **      M: open write cursor to <table> and its indices
615e00ee6ebSdrh **         rewind temp table
616e00ee6ebSdrh **      C: loop over rows of intermediate table
617142e30dfSdrh **           transfer values form intermediate table into <table>
618e00ee6ebSdrh **         end loop
619e00ee6ebSdrh **      D: cleanup
620cce7d176Sdrh */
6214adee20fSdanielk1977 void sqlite3Insert(
622cce7d176Sdrh   Parse *pParse,        /* Parser context */
623113088ecSdrh   SrcList *pTabList,    /* Name of table into which we are inserting */
6245974a30fSdrh   Select *pSelect,      /* A SELECT statement to use as the data source */
625f5f1915dSdrh   IdList *pColumn,      /* Column names corresponding to IDLIST, or NULL. */
6262c2e844aSdrh   int onError,          /* How to handle constraint errors */
62746d2e5c3Sdrh   Upsert *pUpsert       /* ON CONFLICT clauses for upsert, or NULL */
628cce7d176Sdrh ){
6296a288a33Sdrh   sqlite3 *db;          /* The main database structure */
6306a288a33Sdrh   Table *pTab;          /* The table to insert into.  aka TABLE */
63160ffc807Sdrh   int i, j;             /* Loop counters */
6325974a30fSdrh   Vdbe *v;              /* Generate code into this virtual machine */
6335974a30fSdrh   Index *pIdx;          /* For looping over indices of the table */
634967e8b73Sdrh   int nColumn;          /* Number of columns in the data */
6356a288a33Sdrh   int nHidden = 0;      /* Number of hidden columns if TABLE is virtual */
63626198bb4Sdrh   int iDataCur = 0;     /* VDBE cursor that is the main data repository */
63726198bb4Sdrh   int iIdxCur = 0;      /* First index cursor */
638d82b5021Sdrh   int ipkColumn = -1;   /* Column that is the INTEGER PRIMARY KEY */
6390ca3e24bSdrh   int endOfLoop;        /* Label for the end of the insertion loop */
640cfe9a69fSdanielk1977   int srcTab = 0;       /* Data comes from this temporary cursor if >=0 */
641e00ee6ebSdrh   int addrInsTop = 0;   /* Jump to label "D" */
642e00ee6ebSdrh   int addrCont = 0;     /* Top of insert loop. Label "C" in templates 3 and 4 */
6432eb95377Sdrh   SelectDest dest;      /* Destination for SELECT on rhs of INSERT */
6446a288a33Sdrh   int iDb;              /* Index of database holding TABLE */
64505a86c5cSdrh   u8 useTempTable = 0;  /* Store SELECT results in intermediate table */
64605a86c5cSdrh   u8 appendFlag = 0;    /* True if the insert is likely to be an append */
64705a86c5cSdrh   u8 withoutRowid;      /* 0 for normal table.  1 for WITHOUT ROWID table */
648a21f78b9Sdrh   u8 bIdListInOrder;    /* True if IDLIST is in table order */
64975593d96Sdrh   ExprList *pList = 0;  /* List of VALUES() to be inserted  */
650c27ea2aeSdrh   int iRegStore;        /* Register in which to store next column */
651cce7d176Sdrh 
6526a288a33Sdrh   /* Register allocations */
6531bd10f8aSdrh   int regFromSelect = 0;/* Base register for data coming from SELECT */
6546a288a33Sdrh   int regAutoinc = 0;   /* Register holding the AUTOINCREMENT counter */
6556a288a33Sdrh   int regRowCount = 0;  /* Memory cell used for the row counter */
6566a288a33Sdrh   int regIns;           /* Block of regs holding rowid+data being inserted */
6576a288a33Sdrh   int regRowid;         /* registers holding insert rowid */
6586a288a33Sdrh   int regData;          /* register holding first column to insert */
659aa9b8963Sdrh   int *aRegIdx = 0;     /* One register allocated to each index */
6606a288a33Sdrh 
661798da52cSdrh #ifndef SQLITE_OMIT_TRIGGER
662798da52cSdrh   int isView;                 /* True if attempting to insert into a view */
6632f886d1dSdanielk1977   Trigger *pTrigger;          /* List of triggers on pTab, if required */
6642f886d1dSdanielk1977   int tmask;                  /* Mask of trigger times */
665798da52cSdrh #endif
666c3f9bad2Sdanielk1977 
66717435752Sdrh   db = pParse->db;
66817435752Sdrh   if( pParse->nErr || db->mallocFailed ){
6696f7adc8aSdrh     goto insert_cleanup;
6706f7adc8aSdrh   }
6714c883487Sdrh   dest.iSDParm = 0;  /* Suppress a harmless compiler warning */
672daffd0e5Sdrh 
67375593d96Sdrh   /* If the Select object is really just a simple VALUES() list with a
674a21f78b9Sdrh   ** single row (the common case) then keep that one row of values
675a21f78b9Sdrh   ** and discard the other (unused) parts of the pSelect object
67675593d96Sdrh   */
67775593d96Sdrh   if( pSelect && (pSelect->selFlags & SF_Values)!=0 && pSelect->pPrior==0 ){
67875593d96Sdrh     pList = pSelect->pEList;
67975593d96Sdrh     pSelect->pEList = 0;
68075593d96Sdrh     sqlite3SelectDelete(db, pSelect);
68175593d96Sdrh     pSelect = 0;
68275593d96Sdrh   }
68375593d96Sdrh 
6841ccde15dSdrh   /* Locate the table into which we will be inserting new information.
6851ccde15dSdrh   */
686113088ecSdrh   assert( pTabList->nSrc==1 );
6874adee20fSdanielk1977   pTab = sqlite3SrcListLookup(pParse, pTabList);
688c3f9bad2Sdanielk1977   if( pTab==0 ){
689c3f9bad2Sdanielk1977     goto insert_cleanup;
690c3f9bad2Sdanielk1977   }
691da184236Sdanielk1977   iDb = sqlite3SchemaToIndex(db, pTab->pSchema);
692da184236Sdanielk1977   assert( iDb<db->nDb );
693a0daa751Sdrh   if( sqlite3AuthCheck(pParse, SQLITE_INSERT, pTab->zName, 0,
694a0daa751Sdrh                        db->aDb[iDb].zDbSName) ){
6951962bda7Sdrh     goto insert_cleanup;
6961962bda7Sdrh   }
697ec95c441Sdrh   withoutRowid = !HasRowid(pTab);
698c3f9bad2Sdanielk1977 
699b7f9164eSdrh   /* Figure out if we have any triggers and if the table being
700b7f9164eSdrh   ** inserted into is a view
701b7f9164eSdrh   */
702b7f9164eSdrh #ifndef SQLITE_OMIT_TRIGGER
7032f886d1dSdanielk1977   pTrigger = sqlite3TriggersExist(pParse, pTab, TK_INSERT, 0, &tmask);
704b7f9164eSdrh   isView = pTab->pSelect!=0;
705b7f9164eSdrh #else
7062f886d1dSdanielk1977 # define pTrigger 0
7072f886d1dSdanielk1977 # define tmask 0
708b7f9164eSdrh # define isView 0
709b7f9164eSdrh #endif
710b7f9164eSdrh #ifdef SQLITE_OMIT_VIEW
711b7f9164eSdrh # undef isView
712b7f9164eSdrh # define isView 0
713b7f9164eSdrh #endif
7142f886d1dSdanielk1977   assert( (pTrigger && tmask) || (pTrigger==0 && tmask==0) );
715b7f9164eSdrh 
716f573c99bSdrh   /* If pTab is really a view, make sure it has been initialized.
717d82b5021Sdrh   ** ViewGetColumnNames() is a no-op if pTab is not a view.
718f573c99bSdrh   */
719b3d24bf8Sdanielk1977   if( sqlite3ViewGetColumnNames(pParse, pTab) ){
720f573c99bSdrh     goto insert_cleanup;
721f573c99bSdrh   }
722f573c99bSdrh 
723d82b5021Sdrh   /* Cannot insert into a read-only table.
724595a523aSdanielk1977   */
725595a523aSdanielk1977   if( sqlite3IsReadOnly(pParse, pTab, tmask) ){
726595a523aSdanielk1977     goto insert_cleanup;
727595a523aSdanielk1977   }
728595a523aSdanielk1977 
7291ccde15dSdrh   /* Allocate a VDBE
7301ccde15dSdrh   */
7314adee20fSdanielk1977   v = sqlite3GetVdbe(pParse);
7325974a30fSdrh   if( v==0 ) goto insert_cleanup;
7334794f735Sdrh   if( pParse->nested==0 ) sqlite3VdbeCountChanges(v);
7342f886d1dSdanielk1977   sqlite3BeginWriteOperation(pParse, pSelect || pTrigger, iDb);
7351ccde15dSdrh 
7369d9cf229Sdrh #ifndef SQLITE_OMIT_XFER_OPT
7379d9cf229Sdrh   /* If the statement is of the form
7389d9cf229Sdrh   **
7399d9cf229Sdrh   **       INSERT INTO <table1> SELECT * FROM <table2>;
7409d9cf229Sdrh   **
7419d9cf229Sdrh   ** Then special optimizations can be applied that make the transfer
7429d9cf229Sdrh   ** very fast and which reduce fragmentation of indices.
743e00ee6ebSdrh   **
744e00ee6ebSdrh   ** This is the 2nd template.
7459d9cf229Sdrh   */
7469d9cf229Sdrh   if( pColumn==0 && xferOptimization(pParse, pTab, pSelect, onError, iDb) ){
7472f886d1dSdanielk1977     assert( !pTrigger );
7489d9cf229Sdrh     assert( pList==0 );
7490b9f50d8Sdrh     goto insert_end;
7509d9cf229Sdrh   }
7519d9cf229Sdrh #endif /* SQLITE_OMIT_XFER_OPT */
7529d9cf229Sdrh 
7532958a4e6Sdrh   /* If this is an AUTOINCREMENT table, look up the sequence number in the
7546a288a33Sdrh   ** sqlite_sequence table and store it in memory cell regAutoinc.
7552958a4e6Sdrh   */
7566a288a33Sdrh   regAutoinc = autoIncBegin(pParse, iDb, pTab);
7572958a4e6Sdrh 
758f5f1915dSdrh   /* Allocate a block registers to hold the rowid and the values
759f5f1915dSdrh   ** for all columns of the new row.
7601ccde15dSdrh   */
76105a86c5cSdrh   regRowid = regIns = pParse->nMem+1;
76205a86c5cSdrh   pParse->nMem += pTab->nCol + 1;
763034ca14fSdanielk1977   if( IsVirtual(pTab) ){
76405a86c5cSdrh     regRowid++;
76505a86c5cSdrh     pParse->nMem++;
766034ca14fSdanielk1977   }
76705a86c5cSdrh   regData = regRowid+1;
7681ccde15dSdrh 
7691ccde15dSdrh   /* If the INSERT statement included an IDLIST term, then make sure
7701ccde15dSdrh   ** all elements of the IDLIST really are columns of the table and
7711ccde15dSdrh   ** remember the column indices.
772c8392586Sdrh   **
773c8392586Sdrh   ** If the table has an INTEGER PRIMARY KEY column and that column
774d82b5021Sdrh   ** is named in the IDLIST, then record in the ipkColumn variable
775d82b5021Sdrh   ** the index into IDLIST of the primary key column.  ipkColumn is
776c8392586Sdrh   ** the index of the primary key as it appears in IDLIST, not as
777d82b5021Sdrh   ** is appears in the original table.  (The index of the INTEGER
778f5f1915dSdrh   ** PRIMARY KEY in the original table is pTab->iPKey.)  After this
779f5f1915dSdrh   ** loop, if ipkColumn==(-1), that means that integer primary key
780f5f1915dSdrh   ** is unspecified, and hence the table is either WITHOUT ROWID or
781f5f1915dSdrh   ** it will automatically generated an integer primary key.
782f5f1915dSdrh   **
783f5f1915dSdrh   ** bIdListInOrder is true if the columns in IDLIST are in storage
784f5f1915dSdrh   ** order.  This enables an optimization that avoids shuffling the
785f5f1915dSdrh   ** columns into storage order.  False negatives are harmless,
786f5f1915dSdrh   ** but false positives will cause database corruption.
7871ccde15dSdrh   */
788d4cd292cSdrh   bIdListInOrder = (pTab->tabFlags & (TF_OOOHidden|TF_HasStored))==0;
789967e8b73Sdrh   if( pColumn ){
790967e8b73Sdrh     for(i=0; i<pColumn->nId; i++){
791967e8b73Sdrh       pColumn->a[i].idx = -1;
792cce7d176Sdrh     }
793967e8b73Sdrh     for(i=0; i<pColumn->nId; i++){
794cce7d176Sdrh       for(j=0; j<pTab->nCol; j++){
7954adee20fSdanielk1977         if( sqlite3StrICmp(pColumn->a[i].zName, pTab->aCol[j].zName)==0 ){
796967e8b73Sdrh           pColumn->a[i].idx = j;
79705a86c5cSdrh           if( i!=j ) bIdListInOrder = 0;
7984a32431cSdrh           if( j==pTab->iPKey ){
799d82b5021Sdrh             ipkColumn = i;  assert( !withoutRowid );
8004a32431cSdrh           }
8017e508f1eSdrh #ifndef SQLITE_OMIT_GENERATED_COLUMNS
8027e508f1eSdrh           if( pTab->aCol[j].colFlags & (COLFLAG_STORED|COLFLAG_VIRTUAL) ){
8037e508f1eSdrh             sqlite3ErrorMsg(pParse,
8047e508f1eSdrh                "cannot INSERT into generated column \"%s\"",
8057e508f1eSdrh                pTab->aCol[j].zName);
8067e508f1eSdrh             goto insert_cleanup;
8077e508f1eSdrh           }
8087e508f1eSdrh #endif
809cce7d176Sdrh           break;
810cce7d176Sdrh         }
811cce7d176Sdrh       }
812cce7d176Sdrh       if( j>=pTab->nCol ){
813ec95c441Sdrh         if( sqlite3IsRowid(pColumn->a[i].zName) && !withoutRowid ){
814d82b5021Sdrh           ipkColumn = i;
815e48ae715Sdrh           bIdListInOrder = 0;
816a0217ba7Sdrh         }else{
8174adee20fSdanielk1977           sqlite3ErrorMsg(pParse, "table %S has no column named %s",
818da93d238Sdrh               pTabList, 0, pColumn->a[i].zName);
8191db95106Sdan           pParse->checkSchema = 1;
820cce7d176Sdrh           goto insert_cleanup;
821cce7d176Sdrh         }
822cce7d176Sdrh       }
823cce7d176Sdrh     }
824a0217ba7Sdrh   }
8251ccde15dSdrh 
826cce7d176Sdrh   /* Figure out how many columns of data are supplied.  If the data
827cce7d176Sdrh   ** is coming from a SELECT statement, then generate a co-routine that
828cce7d176Sdrh   ** produces a single row of the SELECT on each invocation.  The
829cce7d176Sdrh   ** co-routine is the common header to the 3rd and 4th templates.
830cce7d176Sdrh   */
8315f085269Sdrh   if( pSelect ){
832a21f78b9Sdrh     /* Data is coming from a SELECT or from a multi-row VALUES clause.
833a21f78b9Sdrh     ** Generate a co-routine to run the SELECT. */
83405a86c5cSdrh     int regYield;       /* Register holding co-routine entry-point */
83505a86c5cSdrh     int addrTop;        /* Top of the co-routine */
83605a86c5cSdrh     int rc;             /* Result code */
837cce7d176Sdrh 
83805a86c5cSdrh     regYield = ++pParse->nMem;
83905a86c5cSdrh     addrTop = sqlite3VdbeCurrentAddr(v) + 1;
84005a86c5cSdrh     sqlite3VdbeAddOp3(v, OP_InitCoroutine, regYield, 0, addrTop);
84105a86c5cSdrh     sqlite3SelectDestInit(&dest, SRT_Coroutine, regYield);
84205a86c5cSdrh     dest.iSdst = bIdListInOrder ? regData : 0;
84305a86c5cSdrh     dest.nSdst = pTab->nCol;
84405a86c5cSdrh     rc = sqlite3Select(pParse, pSelect, &dest);
8452b596da8Sdrh     regFromSelect = dest.iSdst;
846992590beSdrh     if( rc || db->mallocFailed || pParse->nErr ) goto insert_cleanup;
8472fade2f7Sdrh     sqlite3VdbeEndCoroutine(v, regYield);
84805a86c5cSdrh     sqlite3VdbeJumpHere(v, addrTop - 1);                       /* label B: */
849cce7d176Sdrh     assert( pSelect->pEList );
850cce7d176Sdrh     nColumn = pSelect->pEList->nExpr;
851cce7d176Sdrh 
852cce7d176Sdrh     /* Set useTempTable to TRUE if the result of the SELECT statement
853cce7d176Sdrh     ** should be written into a temporary table (template 4).  Set to
854cce7d176Sdrh     ** FALSE if each output row of the SELECT can be written directly into
855cce7d176Sdrh     ** the destination table (template 3).
856cce7d176Sdrh     **
857cce7d176Sdrh     ** A temp table must be used if the table being updated is also one
858cce7d176Sdrh     ** of the tables being read by the SELECT statement.  Also use a
859cce7d176Sdrh     ** temp table in the case of row triggers.
860cce7d176Sdrh     */
86105a86c5cSdrh     if( pTrigger || readsTable(pParse, iDb, pTab) ){
862cce7d176Sdrh       useTempTable = 1;
863cce7d176Sdrh     }
864cce7d176Sdrh 
865cce7d176Sdrh     if( useTempTable ){
866cce7d176Sdrh       /* Invoke the coroutine to extract information from the SELECT
867cce7d176Sdrh       ** and add it to a transient table srcTab.  The code generated
868cce7d176Sdrh       ** here is from the 4th template:
869cce7d176Sdrh       **
870cce7d176Sdrh       **      B: open temp table
87181cf13ecSdrh       **      L: yield X, goto M at EOF
872cce7d176Sdrh       **         insert row from R..R+n into temp table
873cce7d176Sdrh       **         goto L
874cce7d176Sdrh       **      M: ...
875cce7d176Sdrh       */
876cce7d176Sdrh       int regRec;          /* Register to hold packed record */
877cce7d176Sdrh       int regTempRowid;    /* Register to hold temp table ROWID */
87806280ee5Sdrh       int addrL;           /* Label "L" */
879cce7d176Sdrh 
880cce7d176Sdrh       srcTab = pParse->nTab++;
881cce7d176Sdrh       regRec = sqlite3GetTempReg(pParse);
882cce7d176Sdrh       regTempRowid = sqlite3GetTempReg(pParse);
883cce7d176Sdrh       sqlite3VdbeAddOp2(v, OP_OpenEphemeral, srcTab, nColumn);
88406280ee5Sdrh       addrL = sqlite3VdbeAddOp1(v, OP_Yield, dest.iSDParm); VdbeCoverage(v);
885cce7d176Sdrh       sqlite3VdbeAddOp3(v, OP_MakeRecord, regFromSelect, nColumn, regRec);
886cce7d176Sdrh       sqlite3VdbeAddOp2(v, OP_NewRowid, srcTab, regTempRowid);
887cce7d176Sdrh       sqlite3VdbeAddOp3(v, OP_Insert, srcTab, regRec, regTempRowid);
888076e85f5Sdrh       sqlite3VdbeGoto(v, addrL);
88906280ee5Sdrh       sqlite3VdbeJumpHere(v, addrL);
890cce7d176Sdrh       sqlite3ReleaseTempReg(pParse, regRec);
891cce7d176Sdrh       sqlite3ReleaseTempReg(pParse, regTempRowid);
892cce7d176Sdrh     }
893cce7d176Sdrh   }else{
894a21f78b9Sdrh     /* This is the case if the data for the INSERT is coming from a
895a21f78b9Sdrh     ** single-row VALUES clause
896cce7d176Sdrh     */
897cce7d176Sdrh     NameContext sNC;
898cce7d176Sdrh     memset(&sNC, 0, sizeof(sNC));
899cce7d176Sdrh     sNC.pParse = pParse;
900cce7d176Sdrh     srcTab = -1;
901cce7d176Sdrh     assert( useTempTable==0 );
902fea870beSdrh     if( pList ){
903fea870beSdrh       nColumn = pList->nExpr;
904fea870beSdrh       if( sqlite3ResolveExprListNames(&sNC, pList) ){
905cce7d176Sdrh         goto insert_cleanup;
906cce7d176Sdrh       }
907fea870beSdrh     }else{
908fea870beSdrh       nColumn = 0;
909cce7d176Sdrh     }
910cce7d176Sdrh   }
911cce7d176Sdrh 
912aacc543eSdrh   /* If there is no IDLIST term but the table has an integer primary
913d82b5021Sdrh   ** key, the set the ipkColumn variable to the integer primary key
914d82b5021Sdrh   ** column index in the original table definition.
9154a32431cSdrh   */
916147d0cccSdrh   if( pColumn==0 && nColumn>0 ){
917d82b5021Sdrh     ipkColumn = pTab->iPKey;
918427b96aeSdrh #ifndef SQLITE_OMIT_GENERATED_COLUMNS
9196ab61d70Sdrh     if( ipkColumn>=0 && (pTab->tabFlags & TF_HasGenerated)!=0 ){
920427b96aeSdrh       testcase( pTab->tabFlags & TF_HasVirtual );
9216ab61d70Sdrh       testcase( pTab->tabFlags & TF_HasStored );
922427b96aeSdrh       for(i=ipkColumn-1; i>=0; i--){
923427b96aeSdrh         if( pTab->aCol[i].colFlags & COLFLAG_GENERATED ){
924427b96aeSdrh           testcase( pTab->aCol[i].colFlags & COLFLAG_VIRTUAL );
9256ab61d70Sdrh           testcase( pTab->aCol[i].colFlags & COLFLAG_STORED );
926427b96aeSdrh           ipkColumn--;
927427b96aeSdrh         }
928427b96aeSdrh       }
929427b96aeSdrh     }
930427b96aeSdrh #endif
9314a32431cSdrh   }
9324a32431cSdrh 
933cce7d176Sdrh   /* Make sure the number of columns in the source data matches the number
934cce7d176Sdrh   ** of columns to be inserted into the table.
935cce7d176Sdrh   */
936cce7d176Sdrh   for(i=0; i<pTab->nCol; i++){
9377e508f1eSdrh     if( pTab->aCol[i].colFlags & COLFLAG_NOINSERT ) nHidden++;
938cce7d176Sdrh   }
939cce7d176Sdrh   if( pColumn==0 && nColumn && nColumn!=(pTab->nCol-nHidden) ){
940cce7d176Sdrh     sqlite3ErrorMsg(pParse,
941cce7d176Sdrh        "table %S has %d columns but %d values were supplied",
942cce7d176Sdrh        pTabList, 0, pTab->nCol-nHidden, nColumn);
943cce7d176Sdrh     goto insert_cleanup;
944cce7d176Sdrh   }
945cce7d176Sdrh   if( pColumn!=0 && nColumn!=pColumn->nId ){
946cce7d176Sdrh     sqlite3ErrorMsg(pParse, "%d values for %d columns", nColumn, pColumn->nId);
947cce7d176Sdrh     goto insert_cleanup;
948cce7d176Sdrh   }
949cce7d176Sdrh 
950c3f9bad2Sdanielk1977   /* Initialize the count of rows to be inserted
9511ccde15dSdrh   */
95279636913Sdrh   if( (db->flags & SQLITE_CountRows)!=0
95379636913Sdrh    && !pParse->nested
95479636913Sdrh    && !pParse->pTriggerTab
95579636913Sdrh   ){
9566a288a33Sdrh     regRowCount = ++pParse->nMem;
9576a288a33Sdrh     sqlite3VdbeAddOp2(v, OP_Integer, 0, regRowCount);
958c3f9bad2Sdanielk1977   }
959c3f9bad2Sdanielk1977 
960e448dc4aSdanielk1977   /* If this is not a view, open the table and and all indices */
961e448dc4aSdanielk1977   if( !isView ){
962aa9b8963Sdrh     int nIdx;
963fd261ec6Sdan     nIdx = sqlite3OpenTableAndIndices(pParse, pTab, OP_OpenWrite, 0, -1, 0,
96426198bb4Sdrh                                       &iDataCur, &iIdxCur);
965a7c3b93fSdrh     aRegIdx = sqlite3DbMallocRawNN(db, sizeof(int)*(nIdx+2));
966aa9b8963Sdrh     if( aRegIdx==0 ){
967aa9b8963Sdrh       goto insert_cleanup;
968aa9b8963Sdrh     }
9692c4dfc30Sdrh     for(i=0, pIdx=pTab->pIndex; i<nIdx; pIdx=pIdx->pNext, i++){
9702c4dfc30Sdrh       assert( pIdx );
971aa9b8963Sdrh       aRegIdx[i] = ++pParse->nMem;
9722c4dfc30Sdrh       pParse->nMem += pIdx->nColumn;
973aa9b8963Sdrh     }
974a7c3b93fSdrh     aRegIdx[i] = ++pParse->nMem;  /* Register to store the table record */
975feeb1394Sdrh   }
976788d55aaSdrh #ifndef SQLITE_OMIT_UPSERT
9770b30a116Sdrh   if( pUpsert ){
97820b86324Sdrh     Upsert *pNx;
979b042d921Sdrh     if( IsVirtual(pTab) ){
980b042d921Sdrh       sqlite3ErrorMsg(pParse, "UPSERT not implemented for virtual table \"%s\"",
981b042d921Sdrh               pTab->zName);
982b042d921Sdrh       goto insert_cleanup;
983b042d921Sdrh     }
984c6b24ab1Sdrh     if( pTab->pSelect ){
985c6b24ab1Sdrh       sqlite3ErrorMsg(pParse, "cannot UPSERT a view");
986c6b24ab1Sdrh       goto insert_cleanup;
987c6b24ab1Sdrh     }
9889105fd51Sdan     if( sqlite3HasExplicitNulls(pParse, pUpsert->pUpsertTarget) ){
9899105fd51Sdan       goto insert_cleanup;
9909105fd51Sdan     }
991788d55aaSdrh     pTabList->a[0].iCursor = iDataCur;
99220b86324Sdrh     pNx = pUpsert;
99320b86324Sdrh     do{
99420b86324Sdrh       pNx->pUpsertSrc = pTabList;
99520b86324Sdrh       pNx->regData = regData;
99620b86324Sdrh       pNx->iDataCur = iDataCur;
99720b86324Sdrh       pNx->iIdxCur = iIdxCur;
99820b86324Sdrh       if( pNx->pUpsertTarget ){
99920b86324Sdrh         sqlite3UpsertAnalyzeTarget(pParse, pTabList, pNx);
1000788d55aaSdrh       }
100120b86324Sdrh       pNx = pNx->pNextUpsert;
100220b86324Sdrh     }while( pNx!=0 );
10030b30a116Sdrh   }
1004788d55aaSdrh #endif
1005788d55aaSdrh 
1006feeb1394Sdrh 
1007e00ee6ebSdrh   /* This is the top of the main insertion loop */
1008142e30dfSdrh   if( useTempTable ){
1009e00ee6ebSdrh     /* This block codes the top of loop only.  The complete loop is the
1010e00ee6ebSdrh     ** following pseudocode (template 4):
1011e00ee6ebSdrh     **
101281cf13ecSdrh     **         rewind temp table, if empty goto D
1013e00ee6ebSdrh     **      C: loop over rows of intermediate table
1014e00ee6ebSdrh     **           transfer values form intermediate table into <table>
1015e00ee6ebSdrh     **         end loop
1016e00ee6ebSdrh     **      D: ...
1017e00ee6ebSdrh     */
1018688852abSdrh     addrInsTop = sqlite3VdbeAddOp1(v, OP_Rewind, srcTab); VdbeCoverage(v);
1019e00ee6ebSdrh     addrCont = sqlite3VdbeCurrentAddr(v);
1020142e30dfSdrh   }else if( pSelect ){
1021e00ee6ebSdrh     /* This block codes the top of loop only.  The complete loop is the
1022e00ee6ebSdrh     ** following pseudocode (template 3):
1023e00ee6ebSdrh     **
102481cf13ecSdrh     **      C: yield X, at EOF goto D
1025e00ee6ebSdrh     **         insert the select result into <table> from R..R+n
1026e00ee6ebSdrh     **         goto C
1027e00ee6ebSdrh     **      D: ...
1028e00ee6ebSdrh     */
10293aef2fb1Sdrh     sqlite3VdbeReleaseRegisters(pParse, regData, pTab->nCol, 0, 0);
103081cf13ecSdrh     addrInsTop = addrCont = sqlite3VdbeAddOp1(v, OP_Yield, dest.iSDParm);
1031688852abSdrh     VdbeCoverage(v);
1032f5f1915dSdrh     if( ipkColumn>=0 ){
1033f5f1915dSdrh       /* tag-20191021-001: If the INTEGER PRIMARY KEY is being generated by the
1034f5f1915dSdrh       ** SELECT, go ahead and copy the value into the rowid slot now, so that
1035f5f1915dSdrh       ** the value does not get overwritten by a NULL at tag-20191021-002. */
1036f5f1915dSdrh       sqlite3VdbeAddOp2(v, OP_Copy, regFromSelect+ipkColumn, regRowid);
1037bed8690fSdrh     }
1038f5f1915dSdrh   }
1039f5f1915dSdrh 
1040f5f1915dSdrh   /* Compute data for ordinary columns of the new entry.  Values
1041f5f1915dSdrh   ** are written in storage order into registers starting with regData.
1042f5f1915dSdrh   ** Only ordinary columns are computed in this loop. The rowid
1043f5f1915dSdrh   ** (if there is one) is computed later and generated columns are
1044f5f1915dSdrh   ** computed after the rowid since they might depend on the value
1045f5f1915dSdrh   ** of the rowid.
1046f5f1915dSdrh   */
1047f5f1915dSdrh   nHidden = 0;
1048f5f1915dSdrh   iRegStore = regData;  assert( regData==regRowid+1 );
1049f5f1915dSdrh   for(i=0; i<pTab->nCol; i++, iRegStore++){
1050f5f1915dSdrh     int k;
1051f5f1915dSdrh     u32 colFlags;
1052f5f1915dSdrh     assert( i>=nHidden );
1053f5f1915dSdrh     if( i==pTab->iPKey ){
1054f5f1915dSdrh       /* tag-20191021-002: References to the INTEGER PRIMARY KEY are filled
1055f5f1915dSdrh       ** using the rowid. So put a NULL in the IPK slot of the record to avoid
1056f5f1915dSdrh       ** using excess space.  The file format definition requires this extra
1057f5f1915dSdrh       ** NULL - we cannot optimize further by skipping the column completely */
1058f5f1915dSdrh       sqlite3VdbeAddOp1(v, OP_SoftNull, iRegStore);
1059f5f1915dSdrh       continue;
1060f5f1915dSdrh     }
1061f5f1915dSdrh     if( ((colFlags = pTab->aCol[i].colFlags) & COLFLAG_NOINSERT)!=0 ){
1062f5f1915dSdrh       nHidden++;
1063f5f1915dSdrh       if( (colFlags & COLFLAG_VIRTUAL)!=0 ){
1064f5f1915dSdrh         /* Virtual columns do not participate in OP_MakeRecord.  So back up
1065f5f1915dSdrh         ** iRegStore by one slot to compensate for the iRegStore++ in the
1066f5f1915dSdrh         ** outer for() loop */
1067f5f1915dSdrh         iRegStore--;
1068f5f1915dSdrh         continue;
1069f5f1915dSdrh       }else if( (colFlags & COLFLAG_STORED)!=0 ){
1070f5f1915dSdrh         /* Stored columns are computed later.  But if there are BEFORE
1071f5f1915dSdrh         ** triggers, the slots used for stored columns will be OP_Copy-ed
1072f5f1915dSdrh         ** to a second block of registers, so the register needs to be
1073f5f1915dSdrh         ** initialized to NULL to avoid an uninitialized register read */
1074f5f1915dSdrh         if( tmask & TRIGGER_BEFORE ){
1075f5f1915dSdrh           sqlite3VdbeAddOp1(v, OP_SoftNull, iRegStore);
1076f5f1915dSdrh         }
1077f5f1915dSdrh         continue;
1078f5f1915dSdrh       }else if( pColumn==0 ){
1079f5f1915dSdrh         /* Hidden columns that are not explicitly named in the INSERT
1080f5f1915dSdrh         ** get there default value */
1081f5f1915dSdrh         sqlite3ExprCodeFactorable(pParse, pTab->aCol[i].pDflt, iRegStore);
1082f5f1915dSdrh         continue;
1083f5f1915dSdrh       }
1084f5f1915dSdrh     }
1085f5f1915dSdrh     if( pColumn ){
1086f5f1915dSdrh       for(j=0; j<pColumn->nId && pColumn->a[j].idx!=i; j++){}
1087f5f1915dSdrh       if( j>=pColumn->nId ){
1088f5f1915dSdrh         /* A column not named in the insert column list gets its
1089f5f1915dSdrh         ** default value */
1090f5f1915dSdrh         sqlite3ExprCodeFactorable(pParse, pTab->aCol[i].pDflt, iRegStore);
1091f5f1915dSdrh         continue;
1092f5f1915dSdrh       }
1093f5f1915dSdrh       k = j;
1094f5f1915dSdrh     }else if( nColumn==0 ){
1095f5f1915dSdrh       /* This is INSERT INTO ... DEFAULT VALUES.  Load the default value. */
1096f5f1915dSdrh       sqlite3ExprCodeFactorable(pParse, pTab->aCol[i].pDflt, iRegStore);
1097f5f1915dSdrh       continue;
1098f5f1915dSdrh     }else{
1099f5f1915dSdrh       k = i - nHidden;
1100f5f1915dSdrh     }
1101f5f1915dSdrh 
1102f5f1915dSdrh     if( useTempTable ){
1103f5f1915dSdrh       sqlite3VdbeAddOp3(v, OP_Column, srcTab, k, iRegStore);
1104f5f1915dSdrh     }else if( pSelect ){
1105f5f1915dSdrh       if( regFromSelect!=regData ){
1106f5f1915dSdrh         sqlite3VdbeAddOp2(v, OP_SCopy, regFromSelect+k, iRegStore);
1107f5f1915dSdrh       }
1108f5f1915dSdrh     }else{
1109f5f1915dSdrh       sqlite3ExprCode(pParse, pList->a[k].pExpr, iRegStore);
1110f5f1915dSdrh     }
1111f5f1915dSdrh   }
1112f5f1915dSdrh 
11131ccde15dSdrh 
11145cf590c1Sdrh   /* Run the BEFORE and INSTEAD OF triggers, if there are any
111570ce3f0cSdrh   */
1116ec4ccdbcSdrh   endOfLoop = sqlite3VdbeMakeLabel(pParse);
11172f886d1dSdanielk1977   if( tmask & TRIGGER_BEFORE ){
111876d462eeSdan     int regCols = sqlite3GetTempRange(pParse, pTab->nCol+1);
1119c3f9bad2Sdanielk1977 
112070ce3f0cSdrh     /* build the NEW.* reference row.  Note that if there is an INTEGER
112170ce3f0cSdrh     ** PRIMARY KEY into which a NULL is being inserted, that NULL will be
112270ce3f0cSdrh     ** translated into a unique ID for the row.  But on a BEFORE trigger,
112370ce3f0cSdrh     ** we do not know what the unique ID will be (because the insert has
112470ce3f0cSdrh     ** not happened yet) so we substitute a rowid of -1
112570ce3f0cSdrh     */
1126d82b5021Sdrh     if( ipkColumn<0 ){
112776d462eeSdan       sqlite3VdbeAddOp2(v, OP_Integer, -1, regCols);
112870ce3f0cSdrh     }else{
1129728e0f91Sdrh       int addr1;
1130ec95c441Sdrh       assert( !withoutRowid );
11317fe45908Sdrh       if( useTempTable ){
1132d82b5021Sdrh         sqlite3VdbeAddOp3(v, OP_Column, srcTab, ipkColumn, regCols);
11337fe45908Sdrh       }else{
1134d6fe961eSdrh         assert( pSelect==0 );  /* Otherwise useTempTable is true */
1135d82b5021Sdrh         sqlite3ExprCode(pParse, pList->a[ipkColumn].pExpr, regCols);
11367fe45908Sdrh       }
1137728e0f91Sdrh       addr1 = sqlite3VdbeAddOp1(v, OP_NotNull, regCols); VdbeCoverage(v);
113876d462eeSdan       sqlite3VdbeAddOp2(v, OP_Integer, -1, regCols);
1139728e0f91Sdrh       sqlite3VdbeJumpHere(v, addr1);
1140688852abSdrh       sqlite3VdbeAddOp1(v, OP_MustBeInt, regCols); VdbeCoverage(v);
114170ce3f0cSdrh     }
114270ce3f0cSdrh 
1143034ca14fSdanielk1977     /* Cannot have triggers on a virtual table. If it were possible,
1144034ca14fSdanielk1977     ** this block would have to account for hidden column.
1145034ca14fSdanielk1977     */
1146034ca14fSdanielk1977     assert( !IsVirtual(pTab) );
1147034ca14fSdanielk1977 
1148f5f1915dSdrh     /* Copy the new data already generated. */
1149f5f1915dSdrh     assert( pTab->nNVCol>0 );
1150f5f1915dSdrh     sqlite3VdbeAddOp3(v, OP_Copy, regRowid+1, regCols+1, pTab->nNVCol-1);
1151f5f1915dSdrh 
1152f5f1915dSdrh #ifndef SQLITE_OMIT_GENERATED_COLUMNS
1153f5f1915dSdrh     /* Compute the new value for generated columns after all other
1154f5f1915dSdrh     ** columns have already been computed.  This must be done after
1155f5f1915dSdrh     ** computing the ROWID in case one of the generated columns
1156f5f1915dSdrh     ** refers to the ROWID. */
1157427b96aeSdrh     if( pTab->tabFlags & TF_HasGenerated ){
1158427b96aeSdrh       testcase( pTab->tabFlags & TF_HasVirtual );
1159427b96aeSdrh       testcase( pTab->tabFlags & TF_HasStored );
1160f5f1915dSdrh       sqlite3ComputeGeneratedColumns(pParse, regCols+1, pTab);
1161c3f9bad2Sdanielk1977     }
1162f5f1915dSdrh #endif
1163a37cdde0Sdanielk1977 
1164a37cdde0Sdanielk1977     /* If this is an INSERT on a view with an INSTEAD OF INSERT trigger,
1165a37cdde0Sdanielk1977     ** do not attempt any conversions before assembling the record.
1166a37cdde0Sdanielk1977     ** If this is a real table, attempt conversions as required by the
1167a37cdde0Sdanielk1977     ** table column affinities.
1168a37cdde0Sdanielk1977     */
1169a37cdde0Sdanielk1977     if( !isView ){
117057bf4a8eSdrh       sqlite3TableAffinity(v, pTab, regCols+1);
1171a37cdde0Sdanielk1977     }
1172c3f9bad2Sdanielk1977 
11735cf590c1Sdrh     /* Fire BEFORE or INSTEAD OF triggers */
1174165921a7Sdan     sqlite3CodeRowTrigger(pParse, pTrigger, TK_INSERT, 0, TRIGGER_BEFORE,
117594d7f50aSdan         pTab, regCols-pTab->nCol-1, onError, endOfLoop);
1176165921a7Sdan 
117776d462eeSdan     sqlite3ReleaseTempRange(pParse, regCols, pTab->nCol+1);
117870ce3f0cSdrh   }
1179c3f9bad2Sdanielk1977 
11805cf590c1Sdrh   if( !isView ){
11814cbdda9eSdrh     if( IsVirtual(pTab) ){
11824cbdda9eSdrh       /* The row that the VUpdate opcode will delete: none */
11836a288a33Sdrh       sqlite3VdbeAddOp2(v, OP_Null, 0, regIns);
11844cbdda9eSdrh     }
1185d82b5021Sdrh     if( ipkColumn>=0 ){
1186f5f1915dSdrh       /* Compute the new rowid */
1187142e30dfSdrh       if( useTempTable ){
1188d82b5021Sdrh         sqlite3VdbeAddOp3(v, OP_Column, srcTab, ipkColumn, regRowid);
1189142e30dfSdrh       }else if( pSelect ){
1190f5f1915dSdrh         /* Rowid already initialized at tag-20191021-001 */
11914a32431cSdrh       }else{
119204fcef00Sdrh         Expr *pIpk = pList->a[ipkColumn].pExpr;
119304fcef00Sdrh         if( pIpk->op==TK_NULL && !IsVirtual(pTab) ){
119404fcef00Sdrh           sqlite3VdbeAddOp3(v, OP_NewRowid, iDataCur, regRowid, regAutoinc);
1195e4d90813Sdrh           appendFlag = 1;
119604fcef00Sdrh         }else{
119704fcef00Sdrh           sqlite3ExprCode(pParse, pList->a[ipkColumn].pExpr, regRowid);
1198e4d90813Sdrh         }
119927a32783Sdrh       }
1200f0863fe5Sdrh       /* If the PRIMARY KEY expression is NULL, then use OP_NewRowid
1201e1e68f49Sdrh       ** to generate a unique primary key value.
1202e1e68f49Sdrh       */
1203e4d90813Sdrh       if( !appendFlag ){
1204728e0f91Sdrh         int addr1;
1205bb50e7adSdanielk1977         if( !IsVirtual(pTab) ){
1206728e0f91Sdrh           addr1 = sqlite3VdbeAddOp1(v, OP_NotNull, regRowid); VdbeCoverage(v);
120726198bb4Sdrh           sqlite3VdbeAddOp3(v, OP_NewRowid, iDataCur, regRowid, regAutoinc);
1208728e0f91Sdrh           sqlite3VdbeJumpHere(v, addr1);
1209bb50e7adSdanielk1977         }else{
1210728e0f91Sdrh           addr1 = sqlite3VdbeCurrentAddr(v);
1211728e0f91Sdrh           sqlite3VdbeAddOp2(v, OP_IsNull, regRowid, addr1+2); VdbeCoverage(v);
1212bb50e7adSdanielk1977         }
1213688852abSdrh         sqlite3VdbeAddOp1(v, OP_MustBeInt, regRowid); VdbeCoverage(v);
1214e4d90813Sdrh       }
1215ec95c441Sdrh     }else if( IsVirtual(pTab) || withoutRowid ){
12166a288a33Sdrh       sqlite3VdbeAddOp2(v, OP_Null, 0, regRowid);
12174a32431cSdrh     }else{
121826198bb4Sdrh       sqlite3VdbeAddOp3(v, OP_NewRowid, iDataCur, regRowid, regAutoinc);
1219e4d90813Sdrh       appendFlag = 1;
12204a32431cSdrh     }
12216a288a33Sdrh     autoIncStep(pParse, regAutoinc, regRowid);
12224a32431cSdrh 
1223c1431144Sdrh #ifndef SQLITE_OMIT_GENERATED_COLUMNS
1224dd6cc9b5Sdrh     /* Compute the new value for generated columns after all other
1225f5f1915dSdrh     ** columns have already been computed.  This must be done after
1226f5f1915dSdrh     ** computing the ROWID in case one of the generated columns
1227b5f6243fSdrh     ** is derived from the INTEGER PRIMARY KEY. */
1228427b96aeSdrh     if( pTab->tabFlags & TF_HasGenerated ){
1229dd6cc9b5Sdrh       sqlite3ComputeGeneratedColumns(pParse, regRowid+1, pTab);
12304a32431cSdrh     }
1231c1431144Sdrh #endif
12321ccde15dSdrh 
12330ca3e24bSdrh     /* Generate code to check constraints and generate index keys and
12340ca3e24bSdrh     ** do the insertion.
12354a32431cSdrh     */
12364cbdda9eSdrh #ifndef SQLITE_OMIT_VIRTUALTABLE
12374cbdda9eSdrh     if( IsVirtual(pTab) ){
1238595a523aSdanielk1977       const char *pVTab = (const char *)sqlite3GetVTable(db, pTab);
12394f3dd150Sdrh       sqlite3VtabMakeWritable(pParse, pTab);
1240595a523aSdanielk1977       sqlite3VdbeAddOp4(v, OP_VUpdate, 1, pTab->nCol+2, regIns, pVTab, P4_VTAB);
1241b061d058Sdan       sqlite3VdbeChangeP5(v, onError==OE_Default ? OE_Abort : onError);
1242e0af83acSdan       sqlite3MayAbort(pParse);
12434cbdda9eSdrh     }else
12444cbdda9eSdrh #endif
12454cbdda9eSdrh     {
1246de630353Sdanielk1977       int isReplace;    /* Set to true if constraints may cause a replace */
12473b908d41Sdan       int bUseSeek;     /* True to use OPFLAG_SEEKRESULT */
1248f8ffb278Sdrh       sqlite3GenerateConstraintChecks(pParse, pTab, aRegIdx, iDataCur, iIdxCur,
1249788d55aaSdrh           regIns, 0, ipkColumn>=0, onError, endOfLoop, &isReplace, 0, pUpsert
125004adf416Sdrh       );
12518ff2d956Sdan       sqlite3FkCheck(pParse, pTab, 0, regIns, 0, 0);
12523b908d41Sdan 
12533b908d41Sdan       /* Set the OPFLAG_USESEEKRESULT flag if either (a) there are no REPLACE
12543b908d41Sdan       ** constraints or (b) there are no triggers and this table is not a
12553b908d41Sdan       ** parent table in a foreign key constraint. It is safe to set the
12563b908d41Sdan       ** flag in the second case as if any REPLACE constraint is hit, an
12573b908d41Sdan       ** OP_Delete or OP_IdxDelete instruction will be executed on each
12583b908d41Sdan       ** cursor that is disturbed. And these instructions both clear the
12593b908d41Sdan       ** VdbeCursor.seekResult variable, disabling the OPFLAG_USESEEKRESULT
12603b908d41Sdan       ** functionality.  */
126106baba54Sdrh       bUseSeek = (isReplace==0 || !sqlite3VdbeHasSubProgram(v));
126226198bb4Sdrh       sqlite3CompleteInsertion(pParse, pTab, iDataCur, iIdxCur,
12633b908d41Sdan           regIns, aRegIdx, 0, appendFlag, bUseSeek
12643b908d41Sdan       );
12655cf590c1Sdrh     }
12664cbdda9eSdrh   }
12671bee3d7bSdrh 
1268feeb1394Sdrh   /* Update the count of rows that are inserted
12691bee3d7bSdrh   */
127079636913Sdrh   if( regRowCount ){
12716a288a33Sdrh     sqlite3VdbeAddOp2(v, OP_AddImm, regRowCount, 1);
12721bee3d7bSdrh   }
1273c3f9bad2Sdanielk1977 
12742f886d1dSdanielk1977   if( pTrigger ){
1275c3f9bad2Sdanielk1977     /* Code AFTER triggers */
1276165921a7Sdan     sqlite3CodeRowTrigger(pParse, pTrigger, TK_INSERT, 0, TRIGGER_AFTER,
127794d7f50aSdan         pTab, regData-2-pTab->nCol, onError, endOfLoop);
1278c3f9bad2Sdanielk1977   }
12791bee3d7bSdrh 
1280e00ee6ebSdrh   /* The bottom of the main insertion loop, if the data source
1281e00ee6ebSdrh   ** is a SELECT statement.
12821ccde15dSdrh   */
12834adee20fSdanielk1977   sqlite3VdbeResolveLabel(v, endOfLoop);
1284142e30dfSdrh   if( useTempTable ){
1285688852abSdrh     sqlite3VdbeAddOp2(v, OP_Next, srcTab, addrCont); VdbeCoverage(v);
1286e00ee6ebSdrh     sqlite3VdbeJumpHere(v, addrInsTop);
12872eb95377Sdrh     sqlite3VdbeAddOp1(v, OP_Close, srcTab);
1288142e30dfSdrh   }else if( pSelect ){
1289076e85f5Sdrh     sqlite3VdbeGoto(v, addrCont);
1290d9670abbSdrh #ifdef SQLITE_DEBUG
1291d9670abbSdrh     /* If we are jumping back to an OP_Yield that is preceded by an
1292d9670abbSdrh     ** OP_ReleaseReg, set the p5 flag on the OP_Goto so that the
1293d9670abbSdrh     ** OP_ReleaseReg will be included in the loop. */
1294d9670abbSdrh     if( sqlite3VdbeGetOp(v, addrCont-1)->opcode==OP_ReleaseReg ){
1295d9670abbSdrh       assert( sqlite3VdbeGetOp(v, addrCont)->opcode==OP_Yield );
1296d9670abbSdrh       sqlite3VdbeChangeP5(v, 1);
1297d9670abbSdrh     }
1298d9670abbSdrh #endif
1299e00ee6ebSdrh     sqlite3VdbeJumpHere(v, addrInsTop);
13006b56344dSdrh   }
1301c3f9bad2Sdanielk1977 
13020b9f50d8Sdrh insert_end:
1303f3388144Sdrh   /* Update the sqlite_sequence table by storing the content of the
13040b9f50d8Sdrh   ** maximum rowid counter values recorded while inserting into
13050b9f50d8Sdrh   ** autoincrement tables.
13062958a4e6Sdrh   */
1307165921a7Sdan   if( pParse->nested==0 && pParse->pTriggerTab==0 ){
13080b9f50d8Sdrh     sqlite3AutoincrementEnd(pParse);
13090b9f50d8Sdrh   }
13102958a4e6Sdrh 
13111bee3d7bSdrh   /*
1312e7de6f25Sdanielk1977   ** Return the number of rows inserted. If this routine is
1313e7de6f25Sdanielk1977   ** generating code because of a call to sqlite3NestedParse(), do not
1314e7de6f25Sdanielk1977   ** invoke the callback function.
13151bee3d7bSdrh   */
131679636913Sdrh   if( regRowCount ){
13176a288a33Sdrh     sqlite3VdbeAddOp2(v, OP_ResultRow, regRowCount, 1);
131822322fd4Sdanielk1977     sqlite3VdbeSetNumCols(v, 1);
131910fb749bSdanielk1977     sqlite3VdbeSetColName(v, 0, COLNAME_NAME, "rows inserted", SQLITE_STATIC);
13201bee3d7bSdrh   }
1321cce7d176Sdrh 
1322cce7d176Sdrh insert_cleanup:
1323633e6d57Sdrh   sqlite3SrcListDelete(db, pTabList);
1324633e6d57Sdrh   sqlite3ExprListDelete(db, pList);
132546d2e5c3Sdrh   sqlite3UpsertDelete(db, pUpsert);
1326633e6d57Sdrh   sqlite3SelectDelete(db, pSelect);
1327633e6d57Sdrh   sqlite3IdListDelete(db, pColumn);
1328633e6d57Sdrh   sqlite3DbFree(db, aRegIdx);
1329cce7d176Sdrh }
13309cfcf5d4Sdrh 
133175cbd984Sdan /* Make sure "isView" and other macros defined above are undefined. Otherwise
133260ec914cSpeter.d.reid ** they may interfere with compilation of other functions in this file
133375cbd984Sdan ** (or in another file, if this file becomes part of the amalgamation).  */
133475cbd984Sdan #ifdef isView
133575cbd984Sdan  #undef isView
133675cbd984Sdan #endif
133775cbd984Sdan #ifdef pTrigger
133875cbd984Sdan  #undef pTrigger
133975cbd984Sdan #endif
134075cbd984Sdan #ifdef tmask
134175cbd984Sdan  #undef tmask
134275cbd984Sdan #endif
134375cbd984Sdan 
13449cfcf5d4Sdrh /*
1345e9816d82Sdrh ** Meanings of bits in of pWalker->eCode for
1346e9816d82Sdrh ** sqlite3ExprReferencesUpdatedColumn()
134798bfa16dSdrh */
134898bfa16dSdrh #define CKCNSTRNT_COLUMN   0x01    /* CHECK constraint uses a changing column */
134998bfa16dSdrh #define CKCNSTRNT_ROWID    0x02    /* CHECK constraint references the ROWID */
135098bfa16dSdrh 
1351e9816d82Sdrh /* This is the Walker callback from sqlite3ExprReferencesUpdatedColumn().
1352e9816d82Sdrh *  Set bit 0x01 of pWalker->eCode if pWalker->eCode to 0 and if this
1353e9816d82Sdrh ** expression node references any of the
13542a0b527bSdrh ** columns that are being modifed by an UPDATE statement.
13552a0b527bSdrh */
13562a0b527bSdrh static int checkConstraintExprNode(Walker *pWalker, Expr *pExpr){
135798bfa16dSdrh   if( pExpr->op==TK_COLUMN ){
135898bfa16dSdrh     assert( pExpr->iColumn>=0 || pExpr->iColumn==-1 );
135998bfa16dSdrh     if( pExpr->iColumn>=0 ){
136098bfa16dSdrh       if( pWalker->u.aiCol[pExpr->iColumn]>=0 ){
136198bfa16dSdrh         pWalker->eCode |= CKCNSTRNT_COLUMN;
136298bfa16dSdrh       }
136398bfa16dSdrh     }else{
136498bfa16dSdrh       pWalker->eCode |= CKCNSTRNT_ROWID;
136598bfa16dSdrh     }
13662a0b527bSdrh   }
13672a0b527bSdrh   return WRC_Continue;
13682a0b527bSdrh }
13692a0b527bSdrh 
13702a0b527bSdrh /*
13712a0b527bSdrh ** pExpr is a CHECK constraint on a row that is being UPDATE-ed.  The
13722a0b527bSdrh ** only columns that are modified by the UPDATE are those for which
137398bfa16dSdrh ** aiChng[i]>=0, and also the ROWID is modified if chngRowid is true.
137498bfa16dSdrh **
1375e9816d82Sdrh ** Return true if CHECK constraint pExpr uses any of the
137698bfa16dSdrh ** changing columns (or the rowid if it is changing).  In other words,
1377e9816d82Sdrh ** return true if this CHECK constraint must be validated for
137898bfa16dSdrh ** the new row in the UPDATE statement.
1379e9816d82Sdrh **
1380e9816d82Sdrh ** 2018-09-15: pExpr might also be an expression for an index-on-expressions.
1381e9816d82Sdrh ** The operation of this routine is the same - return true if an only if
1382e9816d82Sdrh ** the expression uses one or more of columns identified by the second and
1383e9816d82Sdrh ** third arguments.
13842a0b527bSdrh */
1385e9816d82Sdrh int sqlite3ExprReferencesUpdatedColumn(
1386e9816d82Sdrh   Expr *pExpr,    /* The expression to be checked */
1387e9816d82Sdrh   int *aiChng,    /* aiChng[x]>=0 if column x changed by the UPDATE */
1388e9816d82Sdrh   int chngRowid   /* True if UPDATE changes the rowid */
1389e9816d82Sdrh ){
13902a0b527bSdrh   Walker w;
13912a0b527bSdrh   memset(&w, 0, sizeof(w));
139298bfa16dSdrh   w.eCode = 0;
13932a0b527bSdrh   w.xExprCallback = checkConstraintExprNode;
13942a0b527bSdrh   w.u.aiCol = aiChng;
13952a0b527bSdrh   sqlite3WalkExpr(&w, pExpr);
139605723a9eSdrh   if( !chngRowid ){
139705723a9eSdrh     testcase( (w.eCode & CKCNSTRNT_ROWID)!=0 );
139805723a9eSdrh     w.eCode &= ~CKCNSTRNT_ROWID;
139905723a9eSdrh   }
140005723a9eSdrh   testcase( w.eCode==0 );
140105723a9eSdrh   testcase( w.eCode==CKCNSTRNT_COLUMN );
140205723a9eSdrh   testcase( w.eCode==CKCNSTRNT_ROWID );
140305723a9eSdrh   testcase( w.eCode==(CKCNSTRNT_ROWID|CKCNSTRNT_COLUMN) );
1404e9816d82Sdrh   return w.eCode!=0;
14052a0b527bSdrh }
14062a0b527bSdrh 
140711e85273Sdrh /*
1408daf2761cSdrh ** The sqlite3GenerateConstraintChecks() routine usually wants to visit
1409daf2761cSdrh ** the indexes of a table in the order provided in the Table->pIndex list.
1410daf2761cSdrh ** However, sometimes (rarely - when there is an upsert) it wants to visit
1411daf2761cSdrh ** the indexes in a different order.  The following data structures accomplish
1412daf2761cSdrh ** this.
1413daf2761cSdrh **
1414daf2761cSdrh ** The IndexIterator object is used to walk through all of the indexes
1415daf2761cSdrh ** of a table in either Index.pNext order, or in some other order established
1416daf2761cSdrh ** by an array of IndexListTerm objects.
1417daf2761cSdrh */
1418daf2761cSdrh typedef struct IndexListTerm IndexListTerm;
1419daf2761cSdrh typedef struct IndexIterator IndexIterator;
1420daf2761cSdrh struct IndexIterator {
1421daf2761cSdrh   int eType;    /* 0 for Index.pNext list.  1 for an array of IndexListTerm */
1422daf2761cSdrh   int i;        /* Index of the current item from the list */
1423daf2761cSdrh   union {
1424daf2761cSdrh     struct {    /* Use this object for eType==0: A Index.pNext list */
1425daf2761cSdrh       Index *pIdx;   /* The current Index */
1426daf2761cSdrh     } lx;
1427daf2761cSdrh     struct {    /* Use this object for eType==1; Array of IndexListTerm */
1428daf2761cSdrh       int nIdx;               /* Size of the array */
1429daf2761cSdrh       IndexListTerm *aIdx;    /* Array of IndexListTerms */
1430daf2761cSdrh     } ax;
1431daf2761cSdrh   } u;
1432daf2761cSdrh };
1433daf2761cSdrh 
1434daf2761cSdrh /* When IndexIterator.eType==1, then each index is an array of instances
1435daf2761cSdrh ** of the following object
1436daf2761cSdrh */
1437daf2761cSdrh struct IndexListTerm {
1438daf2761cSdrh   Index *p;  /* The index */
1439daf2761cSdrh   int ix;    /* Which entry in the original Table.pIndex list is this index*/
1440daf2761cSdrh };
1441daf2761cSdrh 
1442daf2761cSdrh /* Return the first index on the list */
1443daf2761cSdrh static Index *indexIteratorFirst(IndexIterator *pIter, int *pIx){
1444ed4c5469Sdrh   assert( pIter->i==0 );
1445ed4c5469Sdrh   if( pIter->eType ){
1446ed4c5469Sdrh     *pIx = pIter->u.ax.aIdx[0].ix;
1447ed4c5469Sdrh     return pIter->u.ax.aIdx[0].p;
1448ed4c5469Sdrh   }else{
1449ed4c5469Sdrh     *pIx = 0;
1450ed4c5469Sdrh     return pIter->u.lx.pIdx;
1451ed4c5469Sdrh   }
1452daf2761cSdrh }
1453daf2761cSdrh 
1454daf2761cSdrh /* Return the next index from the list.  Return NULL when out of indexes */
1455daf2761cSdrh static Index *indexIteratorNext(IndexIterator *pIter, int *pIx){
1456daf2761cSdrh   if( pIter->eType ){
1457d3e21a10Sdrh     int i = ++pIter->i;
145861e280adSdrh     if( i>=pIter->u.ax.nIdx ){
145961e280adSdrh       *pIx = i;
146061e280adSdrh       return 0;
146161e280adSdrh     }
1462daf2761cSdrh     *pIx = pIter->u.ax.aIdx[i].ix;
1463daf2761cSdrh     return pIter->u.ax.aIdx[i].p;
1464daf2761cSdrh   }else{
1465d3e21a10Sdrh     ++(*pIx);
1466daf2761cSdrh     pIter->u.lx.pIdx = pIter->u.lx.pIdx->pNext;
1467daf2761cSdrh     return pIter->u.lx.pIdx;
1468daf2761cSdrh   }
1469daf2761cSdrh }
1470daf2761cSdrh 
1471daf2761cSdrh /*
14726934fc7bSdrh ** Generate code to do constraint checks prior to an INSERT or an UPDATE
14736934fc7bSdrh ** on table pTab.
14749cfcf5d4Sdrh **
14756934fc7bSdrh ** The regNewData parameter is the first register in a range that contains
14766934fc7bSdrh ** the data to be inserted or the data after the update.  There will be
14776934fc7bSdrh ** pTab->nCol+1 registers in this range.  The first register (the one
14786934fc7bSdrh ** that regNewData points to) will contain the new rowid, or NULL in the
14796934fc7bSdrh ** case of a WITHOUT ROWID table.  The second register in the range will
14806934fc7bSdrh ** contain the content of the first table column.  The third register will
14816934fc7bSdrh ** contain the content of the second table column.  And so forth.
14820ca3e24bSdrh **
1483f8ffb278Sdrh ** The regOldData parameter is similar to regNewData except that it contains
1484f8ffb278Sdrh ** the data prior to an UPDATE rather than afterwards.  regOldData is zero
1485f8ffb278Sdrh ** for an INSERT.  This routine can distinguish between UPDATE and INSERT by
1486f8ffb278Sdrh ** checking regOldData for zero.
14870ca3e24bSdrh **
1488f8ffb278Sdrh ** For an UPDATE, the pkChng boolean is true if the true primary key (the
1489f8ffb278Sdrh ** rowid for a normal table or the PRIMARY KEY for a WITHOUT ROWID table)
1490f8ffb278Sdrh ** might be modified by the UPDATE.  If pkChng is false, then the key of
1491f8ffb278Sdrh ** the iDataCur content table is guaranteed to be unchanged by the UPDATE.
14920ca3e24bSdrh **
1493f8ffb278Sdrh ** For an INSERT, the pkChng boolean indicates whether or not the rowid
1494f8ffb278Sdrh ** was explicitly specified as part of the INSERT statement.  If pkChng
1495f8ffb278Sdrh ** is zero, it means that the either rowid is computed automatically or
1496f8ffb278Sdrh ** that the table is a WITHOUT ROWID table and has no rowid.  On an INSERT,
1497f8ffb278Sdrh ** pkChng will only be true if the INSERT statement provides an integer
1498f8ffb278Sdrh ** value for either the rowid column or its INTEGER PRIMARY KEY alias.
14990ca3e24bSdrh **
15006934fc7bSdrh ** The code generated by this routine will store new index entries into
1501aa9b8963Sdrh ** registers identified by aRegIdx[].  No index entry is created for
1502aa9b8963Sdrh ** indices where aRegIdx[i]==0.  The order of indices in aRegIdx[] is
1503aa9b8963Sdrh ** the same as the order of indices on the linked list of indices
15046934fc7bSdrh ** at pTab->pIndex.
15056934fc7bSdrh **
1506a7c3b93fSdrh ** (2019-05-07) The generated code also creates a new record for the
1507a7c3b93fSdrh ** main table, if pTab is a rowid table, and stores that record in the
1508a7c3b93fSdrh ** register identified by aRegIdx[nIdx] - in other words in the first
1509a7c3b93fSdrh ** entry of aRegIdx[] past the last index.  It is important that the
1510a7c3b93fSdrh ** record be generated during constraint checks to avoid affinity changes
1511a7c3b93fSdrh ** to the register content that occur after constraint checks but before
1512a7c3b93fSdrh ** the new record is inserted.
1513a7c3b93fSdrh **
15146934fc7bSdrh ** The caller must have already opened writeable cursors on the main
15156934fc7bSdrh ** table and all applicable indices (that is to say, all indices for which
15166934fc7bSdrh ** aRegIdx[] is not zero).  iDataCur is the cursor for the main table when
15176934fc7bSdrh ** inserting or updating a rowid table, or the cursor for the PRIMARY KEY
15186934fc7bSdrh ** index when operating on a WITHOUT ROWID table.  iIdxCur is the cursor
15196934fc7bSdrh ** for the first index in the pTab->pIndex list.  Cursors for other indices
15206934fc7bSdrh ** are at iIdxCur+N for the N-th element of the pTab->pIndex list.
15219cfcf5d4Sdrh **
15229cfcf5d4Sdrh ** This routine also generates code to check constraints.  NOT NULL,
15239cfcf5d4Sdrh ** CHECK, and UNIQUE constraints are all checked.  If a constraint fails,
15241c92853dSdrh ** then the appropriate action is performed.  There are five possible
15251c92853dSdrh ** actions: ROLLBACK, ABORT, FAIL, REPLACE, and IGNORE.
15269cfcf5d4Sdrh **
15279cfcf5d4Sdrh **  Constraint type  Action       What Happens
15289cfcf5d4Sdrh **  ---------------  ----------   ----------------------------------------
15291c92853dSdrh **  any              ROLLBACK     The current transaction is rolled back and
15306934fc7bSdrh **                                sqlite3_step() returns immediately with a
15319cfcf5d4Sdrh **                                return code of SQLITE_CONSTRAINT.
15329cfcf5d4Sdrh **
15331c92853dSdrh **  any              ABORT        Back out changes from the current command
15341c92853dSdrh **                                only (do not do a complete rollback) then
15356934fc7bSdrh **                                cause sqlite3_step() to return immediately
15361c92853dSdrh **                                with SQLITE_CONSTRAINT.
15371c92853dSdrh **
15386934fc7bSdrh **  any              FAIL         Sqlite3_step() returns immediately with a
15391c92853dSdrh **                                return code of SQLITE_CONSTRAINT.  The
15401c92853dSdrh **                                transaction is not rolled back and any
15416934fc7bSdrh **                                changes to prior rows are retained.
15421c92853dSdrh **
15436934fc7bSdrh **  any              IGNORE       The attempt in insert or update the current
15446934fc7bSdrh **                                row is skipped, without throwing an error.
15456934fc7bSdrh **                                Processing continues with the next row.
15466934fc7bSdrh **                                (There is an immediate jump to ignoreDest.)
15479cfcf5d4Sdrh **
15489cfcf5d4Sdrh **  NOT NULL         REPLACE      The NULL value is replace by the default
15499cfcf5d4Sdrh **                                value for that column.  If the default value
15509cfcf5d4Sdrh **                                is NULL, the action is the same as ABORT.
15519cfcf5d4Sdrh **
15529cfcf5d4Sdrh **  UNIQUE           REPLACE      The other row that conflicts with the row
15539cfcf5d4Sdrh **                                being inserted is removed.
15549cfcf5d4Sdrh **
15559cfcf5d4Sdrh **  CHECK            REPLACE      Illegal.  The results in an exception.
15569cfcf5d4Sdrh **
15571c92853dSdrh ** Which action to take is determined by the overrideError parameter.
15581c92853dSdrh ** Or if overrideError==OE_Default, then the pParse->onError parameter
15591c92853dSdrh ** is used.  Or if pParse->onError==OE_Default then the onError value
15601c92853dSdrh ** for the constraint is used.
15619cfcf5d4Sdrh */
15624adee20fSdanielk1977 void sqlite3GenerateConstraintChecks(
15639cfcf5d4Sdrh   Parse *pParse,       /* The parser context */
15646934fc7bSdrh   Table *pTab,         /* The table being inserted or updated */
1565f8ffb278Sdrh   int *aRegIdx,        /* Use register aRegIdx[i] for index i.  0 for unused */
15666934fc7bSdrh   int iDataCur,        /* Canonical data cursor (main table or PK index) */
156726198bb4Sdrh   int iIdxCur,         /* First index cursor */
15686934fc7bSdrh   int regNewData,      /* First register in a range holding values to insert */
1569f8ffb278Sdrh   int regOldData,      /* Previous content.  0 for INSERTs */
1570f8ffb278Sdrh   u8 pkChng,           /* Non-zero if the rowid or PRIMARY KEY changed */
1571f8ffb278Sdrh   u8 overrideError,    /* Override onError to this if not OE_Default */
1572de630353Sdanielk1977   int ignoreDest,      /* Jump to this label on an OE_Ignore resolution */
1573bdb00225Sdrh   int *pbMayReplace,   /* OUT: Set to true if constraint may cause a replace */
1574788d55aaSdrh   int *aiChng,         /* column i is unchanged if aiChng[i]<0 */
1575788d55aaSdrh   Upsert *pUpsert      /* ON CONFLICT clauses, if any.  NULL otherwise */
15769cfcf5d4Sdrh ){
15771b7ecbb4Sdrh   Vdbe *v;             /* VDBE under constrution */
15781b7ecbb4Sdrh   Index *pIdx;         /* Pointer to one of the indices */
1579e84ad92fSdrh   Index *pPk = 0;      /* The PRIMARY KEY index for WITHOUT ROWID tables */
15802938f924Sdrh   sqlite3 *db;         /* Database connection */
1581f8ffb278Sdrh   int i;               /* loop counter */
1582f8ffb278Sdrh   int ix;              /* Index loop counter */
15839cfcf5d4Sdrh   int nCol;            /* Number of columns */
15849cfcf5d4Sdrh   int onError;         /* Conflict resolution strategy */
15851b7ecbb4Sdrh   int seenReplace = 0; /* True if REPLACE is used to resolve INT PK conflict */
15866fbe41acSdrh   int nPkField;        /* Number of fields in PRIMARY KEY. 1 for ROWID tables */
158761e280adSdrh   Upsert *pUpsertClause = 0;  /* The specific ON CONFLICT clause for pIdx */
15888d1b82e4Sdrh   u8 isUpdate;           /* True if this is an UPDATE operation */
158957bf4a8eSdrh   u8 bAffinityDone = 0;  /* True if the OP_Affinity operation has been run */
159061e280adSdrh   int upsertIpkReturn = 0; /* Address of Goto at end of IPK uniqueness check */
159161e280adSdrh   int upsertIpkDelay = 0;  /* Address of Goto to bypass initial IPK check */
159284304506Sdrh   int ipkTop = 0;        /* Top of the IPK uniqueness check */
159384304506Sdrh   int ipkBottom = 0;     /* OP_Goto at the end of the IPK uniqueness check */
1594a407eccbSdrh   /* Variables associated with retesting uniqueness constraints after
1595a407eccbSdrh   ** replace triggers fire have run */
1596a407eccbSdrh   int regTrigCnt;       /* Register used to count replace trigger invocations */
1597a407eccbSdrh   int addrRecheck = 0;  /* Jump here to recheck all uniqueness constraints */
1598a407eccbSdrh   int lblRecheckOk = 0; /* Each recheck jumps to this label if it passes */
1599a407eccbSdrh   Trigger *pTrigger;    /* List of DELETE triggers on the table pTab */
1600a407eccbSdrh   int nReplaceTrig = 0; /* Number of replace triggers coded */
160161e280adSdrh   IndexIterator sIdxIter;  /* Index iterator */
16029cfcf5d4Sdrh 
1603f8ffb278Sdrh   isUpdate = regOldData!=0;
16042938f924Sdrh   db = pParse->db;
1605f0b41745Sdrh   v = pParse->pVdbe;
16069cfcf5d4Sdrh   assert( v!=0 );
1607417be79cSdrh   assert( pTab->pSelect==0 );  /* This table is not a VIEW */
16089cfcf5d4Sdrh   nCol = pTab->nCol;
1609aa9b8963Sdrh 
16106934fc7bSdrh   /* pPk is the PRIMARY KEY index for WITHOUT ROWID tables and NULL for
16116934fc7bSdrh   ** normal rowid tables.  nPkField is the number of key fields in the
16126934fc7bSdrh   ** pPk index or 1 for a rowid table.  In other words, nPkField is the
16136934fc7bSdrh   ** number of fields in the true primary key of the table. */
161426198bb4Sdrh   if( HasRowid(pTab) ){
161526198bb4Sdrh     pPk = 0;
161626198bb4Sdrh     nPkField = 1;
161726198bb4Sdrh   }else{
161826198bb4Sdrh     pPk = sqlite3PrimaryKeyIndex(pTab);
161926198bb4Sdrh     nPkField = pPk->nKeyCol;
162026198bb4Sdrh   }
16216fbe41acSdrh 
16226fbe41acSdrh   /* Record that this module has started */
16236fbe41acSdrh   VdbeModuleComment((v, "BEGIN: GenCnstCks(%d,%d,%d,%d,%d)",
16246934fc7bSdrh                      iDataCur, iIdxCur, regNewData, regOldData, pkChng));
16259cfcf5d4Sdrh 
16269cfcf5d4Sdrh   /* Test all NOT NULL constraints.
16279cfcf5d4Sdrh   */
1628cbda9c7aSdrh   if( pTab->tabFlags & TF_HasNotNull ){
1629ad5f1577Sdrh     int b2ndPass = 0;         /* True if currently running 2nd pass */
1630ad5f1577Sdrh     int nSeenReplace = 0;     /* Number of ON CONFLICT REPLACE operations */
1631ad5f1577Sdrh     int nGenerated = 0;       /* Number of generated columns with NOT NULL */
1632ad5f1577Sdrh     while(1){  /* Make 2 passes over columns. Exit loop via "break" */
16339cfcf5d4Sdrh       for(i=0; i<nCol; i++){
1634ad5f1577Sdrh         int iReg;                        /* Register holding column value */
1635ad5f1577Sdrh         Column *pCol = &pTab->aCol[i];   /* The column to check for NOT NULL */
1636ad5f1577Sdrh         int isGenerated;                 /* non-zero if column is generated */
1637ad5f1577Sdrh         onError = pCol->notNull;
1638cbda9c7aSdrh         if( onError==OE_None ) continue; /* No NOT NULL on this column */
16390ca3e24bSdrh         if( i==pTab->iPKey ){
1640bdb00225Sdrh           continue;        /* ROWID is never NULL */
1641bdb00225Sdrh         }
1642ad5f1577Sdrh         isGenerated = pCol->colFlags & COLFLAG_GENERATED;
1643ad5f1577Sdrh         if( isGenerated && !b2ndPass ){
1644ad5f1577Sdrh           nGenerated++;
1645ad5f1577Sdrh           continue;        /* Generated columns processed on 2nd pass */
1646ad5f1577Sdrh         }
1647ad5f1577Sdrh         if( aiChng && aiChng[i]<0 && !isGenerated ){
1648ad5f1577Sdrh           /* Do not check NOT NULL on columns that do not change */
16490ca3e24bSdrh           continue;
16500ca3e24bSdrh         }
16519cfcf5d4Sdrh         if( overrideError!=OE_Default ){
16529cfcf5d4Sdrh           onError = overrideError;
1653a996e477Sdrh         }else if( onError==OE_Default ){
1654a996e477Sdrh           onError = OE_Abort;
16559cfcf5d4Sdrh         }
1656ad5f1577Sdrh         if( onError==OE_Replace ){
1657ad5f1577Sdrh           if( b2ndPass        /* REPLACE becomes ABORT on the 2nd pass */
1658ad5f1577Sdrh            || pCol->pDflt==0  /* REPLACE is ABORT if no DEFAULT value */
1659ad5f1577Sdrh           ){
1660ad5f1577Sdrh             testcase( pCol->colFlags & COLFLAG_VIRTUAL );
1661ad5f1577Sdrh             testcase( pCol->colFlags & COLFLAG_STORED );
1662ad5f1577Sdrh             testcase( pCol->colFlags & COLFLAG_GENERATED );
16639cfcf5d4Sdrh             onError = OE_Abort;
1664ad5f1577Sdrh           }else{
1665ad5f1577Sdrh             assert( !isGenerated );
1666ad5f1577Sdrh           }
1667ad5f1577Sdrh         }else if( b2ndPass && !isGenerated ){
1668ad5f1577Sdrh           continue;
16699cfcf5d4Sdrh         }
1670b84f96f8Sdanielk1977         assert( onError==OE_Rollback || onError==OE_Abort || onError==OE_Fail
1671b84f96f8Sdanielk1977             || onError==OE_Ignore || onError==OE_Replace );
1672c5f808d8Sdrh         testcase( i!=sqlite3TableColumnToStorage(pTab, i) );
1673b9bcf7caSdrh         iReg = sqlite3TableColumnToStorage(pTab, i) + regNewData + 1;
16749cfcf5d4Sdrh         switch( onError ){
16759bfb0794Sdrh           case OE_Replace: {
1676ad5f1577Sdrh             int addr1 = sqlite3VdbeAddOp1(v, OP_NotNull, iReg);
16779bfb0794Sdrh             VdbeCoverage(v);
1678ad5f1577Sdrh             assert( (pCol->colFlags & COLFLAG_GENERATED)==0 );
1679ad5f1577Sdrh             nSeenReplace++;
16805cf1b611Sdrh             sqlite3ExprCodeCopy(pParse, pCol->pDflt, iReg);
1681ad5f1577Sdrh             sqlite3VdbeJumpHere(v, addr1);
1682ad5f1577Sdrh             break;
16839bfb0794Sdrh           }
16841c92853dSdrh           case OE_Abort:
1685e0af83acSdan             sqlite3MayAbort(pParse);
168608b92086Sdrh             /* no break */ deliberate_fall_through
1687e0af83acSdan           case OE_Rollback:
16881c92853dSdrh           case OE_Fail: {
1689f9c8ce3cSdrh             char *zMsg = sqlite3MPrintf(db, "%s.%s", pTab->zName,
1690ad5f1577Sdrh                                         pCol->zName);
1691cbda9c7aSdrh             sqlite3VdbeAddOp3(v, OP_HaltIfNull, SQLITE_CONSTRAINT_NOTNULL,
1692a88c8c1aSdrh                               onError, iReg);
16932700acaaSdrh             sqlite3VdbeAppendP4(v, zMsg, P4_DYNAMIC);
1694f9c8ce3cSdrh             sqlite3VdbeChangeP5(v, P5_ConstraintNotNull);
1695688852abSdrh             VdbeCoverage(v);
16969cfcf5d4Sdrh             break;
16979cfcf5d4Sdrh           }
1698098d1684Sdrh           default: {
16999bfb0794Sdrh             assert( onError==OE_Ignore );
17008e10d74bSdrh             sqlite3VdbeAddOp2(v, OP_IsNull, iReg, ignoreDest);
1701728e0f91Sdrh             VdbeCoverage(v);
17029cfcf5d4Sdrh             break;
17039cfcf5d4Sdrh           }
1704ad5f1577Sdrh         } /* end switch(onError) */
1705ad5f1577Sdrh       } /* end loop i over columns */
1706ad5f1577Sdrh       if( nGenerated==0 && nSeenReplace==0 ){
1707ad5f1577Sdrh         /* If there are no generated columns with NOT NULL constraints
1708ad5f1577Sdrh         ** and no NOT NULL ON CONFLICT REPLACE constraints, then a single
1709ad5f1577Sdrh         ** pass is sufficient */
1710ad5f1577Sdrh         break;
17119cfcf5d4Sdrh       }
1712ad5f1577Sdrh       if( b2ndPass ) break;  /* Never need more than 2 passes */
1713ad5f1577Sdrh       b2ndPass = 1;
1714ef9f719dSdrh #ifndef SQLITE_OMIT_GENERATED_COLUMNS
1715ad5f1577Sdrh       if( nSeenReplace>0 && (pTab->tabFlags & TF_HasGenerated)!=0 ){
1716ad5f1577Sdrh         /* If any NOT NULL ON CONFLICT REPLACE constraints fired on the
1717ad5f1577Sdrh         ** first pass, recomputed values for all generated columns, as
1718ad5f1577Sdrh         ** those values might depend on columns affected by the REPLACE.
1719ad5f1577Sdrh         */
1720ad5f1577Sdrh         sqlite3ComputeGeneratedColumns(pParse, regNewData+1, pTab);
17219cfcf5d4Sdrh       }
1722ef9f719dSdrh #endif
1723ad5f1577Sdrh     } /* end of 2-pass loop */
1724ad5f1577Sdrh   } /* end if( has-not-null-constraints ) */
17259cfcf5d4Sdrh 
17269cfcf5d4Sdrh   /* Test all CHECK constraints
17279cfcf5d4Sdrh   */
1728ffe07b2dSdrh #ifndef SQLITE_OMIT_CHECK
17292938f924Sdrh   if( pTab->pCheck && (db->flags & SQLITE_IgnoreChecks)==0 ){
17302938f924Sdrh     ExprList *pCheck = pTab->pCheck;
17316e97f8ecSdrh     pParse->iSelfTab = -(regNewData+1);
1732aa01c7e2Sdrh     onError = overrideError!=OE_Default ? overrideError : OE_Abort;
17332938f924Sdrh     for(i=0; i<pCheck->nExpr; i++){
173405723a9eSdrh       int allOk;
17355cf1b611Sdrh       Expr *pCopy;
17362a0b527bSdrh       Expr *pExpr = pCheck->a[i].pExpr;
1737e9816d82Sdrh       if( aiChng
1738e9816d82Sdrh        && !sqlite3ExprReferencesUpdatedColumn(pExpr, aiChng, pkChng)
1739e9816d82Sdrh       ){
1740e9816d82Sdrh         /* The check constraints do not reference any of the columns being
1741e9816d82Sdrh         ** updated so there is no point it verifying the check constraint */
1742e9816d82Sdrh         continue;
1743e9816d82Sdrh       }
17449dce0ef4Sdrh       if( bAffinityDone==0 ){
17459dce0ef4Sdrh         sqlite3TableAffinity(v, pTab, regNewData+1);
17469dce0ef4Sdrh         bAffinityDone = 1;
17479dce0ef4Sdrh       }
1748ec4ccdbcSdrh       allOk = sqlite3VdbeMakeLabel(pParse);
17494031bafaSdrh       sqlite3VdbeVerifyAbortable(v, onError);
17505cf1b611Sdrh       pCopy = sqlite3ExprDup(db, pExpr, 0);
17515cf1b611Sdrh       if( !db->mallocFailed ){
17525cf1b611Sdrh         sqlite3ExprIfTrue(pParse, pCopy, allOk, SQLITE_JUMPIFNULL);
17535cf1b611Sdrh       }
17545cf1b611Sdrh       sqlite3ExprDelete(db, pCopy);
17552e06c67cSdrh       if( onError==OE_Ignore ){
1756076e85f5Sdrh         sqlite3VdbeGoto(v, ignoreDest);
1757aa01c7e2Sdrh       }else{
175841cee668Sdrh         char *zName = pCheck->a[i].zEName;
1759e2678b93Sdrh         assert( zName!=0 || pParse->db->mallocFailed );
17600ce974d1Sdrh         if( onError==OE_Replace ) onError = OE_Abort; /* IMP: R-26383-51744 */
1761d91c1a17Sdrh         sqlite3HaltConstraint(pParse, SQLITE_CONSTRAINT_CHECK,
1762f9c8ce3cSdrh                               onError, zName, P4_TRANSIENT,
1763f9c8ce3cSdrh                               P5_ConstraintCheck);
1764aa01c7e2Sdrh       }
1765ffe07b2dSdrh       sqlite3VdbeResolveLabel(v, allOk);
1766ffe07b2dSdrh     }
17676e97f8ecSdrh     pParse->iSelfTab = 0;
17682938f924Sdrh   }
1769ffe07b2dSdrh #endif /* !defined(SQLITE_OMIT_CHECK) */
17709cfcf5d4Sdrh 
1771096fd476Sdrh   /* UNIQUE and PRIMARY KEY constraints should be handled in the following
1772096fd476Sdrh   ** order:
1773096fd476Sdrh   **
177484304506Sdrh   **   (1)  OE_Update
177584304506Sdrh   **   (2)  OE_Abort, OE_Fail, OE_Rollback, OE_Ignore
1776096fd476Sdrh   **   (3)  OE_Replace
1777096fd476Sdrh   **
1778096fd476Sdrh   ** OE_Fail and OE_Ignore must happen before any changes are made.
1779096fd476Sdrh   ** OE_Update guarantees that only a single row will change, so it
1780096fd476Sdrh   ** must happen before OE_Replace.  Technically, OE_Abort and OE_Rollback
1781096fd476Sdrh   ** could happen in any order, but they are grouped up front for
1782096fd476Sdrh   ** convenience.
1783096fd476Sdrh   **
178484304506Sdrh   ** 2018-08-14: Ticket https://www.sqlite.org/src/info/908f001483982c43
178584304506Sdrh   ** The order of constraints used to have OE_Update as (2) and OE_Abort
178684304506Sdrh   ** and so forth as (1). But apparently PostgreSQL checks the OE_Update
178784304506Sdrh   ** constraint before any others, so it had to be moved.
178884304506Sdrh   **
1789096fd476Sdrh   ** Constraint checking code is generated in this order:
1790096fd476Sdrh   **   (A)  The rowid constraint
1791096fd476Sdrh   **   (B)  Unique index constraints that do not have OE_Replace as their
1792096fd476Sdrh   **        default conflict resolution strategy
1793096fd476Sdrh   **   (C)  Unique index that do use OE_Replace by default.
1794096fd476Sdrh   **
1795096fd476Sdrh   ** The ordering of (2) and (3) is accomplished by making sure the linked
1796096fd476Sdrh   ** list of indexes attached to a table puts all OE_Replace indexes last
1797096fd476Sdrh   ** in the list.  See sqlite3CreateIndex() for where that happens.
1798096fd476Sdrh   */
179961e280adSdrh   sIdxIter.eType = 0;
180061e280adSdrh   sIdxIter.i = 0;
1801d3e21a10Sdrh   sIdxIter.u.ax.aIdx = 0;  /* Silence harmless compiler warning */
180261e280adSdrh   sIdxIter.u.lx.pIdx = pTab->pIndex;
1803096fd476Sdrh   if( pUpsert ){
1804096fd476Sdrh     if( pUpsert->pUpsertTarget==0 ){
180561e280adSdrh       /* There is just on ON CONFLICT clause and it has no constraint-target */
180661e280adSdrh       assert( pUpsert->pNextUpsert==0 );
1807255c1c15Sdrh       if( pUpsert->isDoUpdate==0 ){
180861e280adSdrh         /* A single ON CONFLICT DO NOTHING clause, without a constraint-target.
1809096fd476Sdrh         ** Make all unique constraint resolution be OE_Ignore */
1810096fd476Sdrh         overrideError = OE_Ignore;
1811096fd476Sdrh         pUpsert = 0;
181261e280adSdrh       }else{
181361e280adSdrh         /* A single ON CONFLICT DO UPDATE.  Make all resolutions OE_Update */
181461e280adSdrh         overrideError = OE_Update;
181561e280adSdrh       }
181661e280adSdrh     }else if( pTab->pIndex!=0 ){
181761e280adSdrh       /* Otherwise, we'll need to run the IndexListTerm array version of the
181861e280adSdrh       ** iterator to ensure that all of the ON CONFLICT conditions are
181961e280adSdrh       ** checked first and in order. */
182061e280adSdrh       int nIdx, jj;
182161e280adSdrh       u64 nByte;
182261e280adSdrh       Upsert *pTerm;
182361e280adSdrh       u8 *bUsed;
182461e280adSdrh       for(nIdx=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, nIdx++){
182561e280adSdrh          assert( aRegIdx[nIdx]>0 );
182661e280adSdrh       }
182761e280adSdrh       sIdxIter.eType = 1;
182861e280adSdrh       sIdxIter.u.ax.nIdx = nIdx;
182961e280adSdrh       nByte = (sizeof(IndexListTerm)+1)*nIdx + nIdx;
183061e280adSdrh       sIdxIter.u.ax.aIdx = sqlite3DbMallocZero(db, nByte);
183161e280adSdrh       if( sIdxIter.u.ax.aIdx==0 ) return; /* OOM */
183261e280adSdrh       bUsed = (u8*)&sIdxIter.u.ax.aIdx[nIdx];
183361e280adSdrh       pUpsert->pToFree = sIdxIter.u.ax.aIdx;
183461e280adSdrh       for(i=0, pTerm=pUpsert; pTerm; pTerm=pTerm->pNextUpsert){
183561e280adSdrh         if( pTerm->pUpsertTarget==0 ) break;
183661e280adSdrh         if( pTerm->pUpsertIdx==0 ) continue;  /* Skip ON CONFLICT for the IPK */
183761e280adSdrh         jj = 0;
183861e280adSdrh         pIdx = pTab->pIndex;
183961e280adSdrh         while( ALWAYS(pIdx!=0) && pIdx!=pTerm->pUpsertIdx ){
184061e280adSdrh            pIdx = pIdx->pNext;
184161e280adSdrh            jj++;
184261e280adSdrh         }
184361e280adSdrh         if( bUsed[jj] ) continue; /* Duplicate ON CONFLICT clause ignored */
184461e280adSdrh         bUsed[jj] = 1;
184561e280adSdrh         sIdxIter.u.ax.aIdx[i].p = pIdx;
184661e280adSdrh         sIdxIter.u.ax.aIdx[i].ix = jj;
184761e280adSdrh         i++;
184861e280adSdrh       }
184961e280adSdrh       for(jj=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, jj++){
185061e280adSdrh         if( bUsed[jj] ) continue;
185161e280adSdrh         sIdxIter.u.ax.aIdx[i].p = pIdx;
185261e280adSdrh         sIdxIter.u.ax.aIdx[i].ix = jj;
185361e280adSdrh         i++;
185461e280adSdrh       }
185561e280adSdrh       assert( i==nIdx );
1856096fd476Sdrh     }
1857096fd476Sdrh   }
1858096fd476Sdrh 
1859a407eccbSdrh   /* Determine if it is possible that triggers (either explicitly coded
1860a407eccbSdrh   ** triggers or FK resolution actions) might run as a result of deletes
1861a407eccbSdrh   ** that happen when OE_Replace conflict resolution occurs. (Call these
1862a407eccbSdrh   ** "replace triggers".)  If any replace triggers run, we will need to
1863a407eccbSdrh   ** recheck all of the uniqueness constraints after they have all run.
1864a407eccbSdrh   ** But on the recheck, the resolution is OE_Abort instead of OE_Replace.
1865a407eccbSdrh   **
1866a407eccbSdrh   ** If replace triggers are a possibility, then
1867a407eccbSdrh   **
1868a407eccbSdrh   **   (1) Allocate register regTrigCnt and initialize it to zero.
1869a407eccbSdrh   **       That register will count the number of replace triggers that
1870d3c468b7Sdrh   **       fire.  Constraint recheck only occurs if the number is positive.
1871d3c468b7Sdrh   **   (2) Initialize pTrigger to the list of all DELETE triggers on pTab.
1872a407eccbSdrh   **   (3) Initialize addrRecheck and lblRecheckOk
1873a407eccbSdrh   **
1874a407eccbSdrh   ** The uniqueness rechecking code will create a series of tests to run
1875a407eccbSdrh   ** in a second pass.  The addrRecheck and lblRecheckOk variables are
1876a407eccbSdrh   ** used to link together these tests which are separated from each other
1877a407eccbSdrh   ** in the generate bytecode.
1878a407eccbSdrh   */
1879a407eccbSdrh   if( (db->flags & (SQLITE_RecTriggers|SQLITE_ForeignKeys))==0 ){
1880a407eccbSdrh     /* There are not DELETE triggers nor FK constraints.  No constraint
1881a407eccbSdrh     ** rechecks are needed. */
1882a407eccbSdrh     pTrigger = 0;
1883a407eccbSdrh     regTrigCnt = 0;
1884a407eccbSdrh   }else{
1885a407eccbSdrh     if( db->flags&SQLITE_RecTriggers ){
1886a407eccbSdrh       pTrigger = sqlite3TriggersExist(pParse, pTab, TK_DELETE, 0, 0);
1887a407eccbSdrh       regTrigCnt = pTrigger!=0 || sqlite3FkRequired(pParse, pTab, 0, 0);
1888a407eccbSdrh     }else{
1889a407eccbSdrh       pTrigger = 0;
1890a407eccbSdrh       regTrigCnt = sqlite3FkRequired(pParse, pTab, 0, 0);
1891a407eccbSdrh     }
1892a407eccbSdrh     if( regTrigCnt ){
1893a407eccbSdrh       /* Replace triggers might exist.  Allocate the counter and
1894a407eccbSdrh       ** initialize it to zero. */
1895a407eccbSdrh       regTrigCnt = ++pParse->nMem;
1896a407eccbSdrh       sqlite3VdbeAddOp2(v, OP_Integer, 0, regTrigCnt);
1897a407eccbSdrh       VdbeComment((v, "trigger count"));
1898a407eccbSdrh       lblRecheckOk = sqlite3VdbeMakeLabel(pParse);
1899a407eccbSdrh       addrRecheck = lblRecheckOk;
1900a407eccbSdrh     }
1901a407eccbSdrh   }
1902a407eccbSdrh 
1903f8ffb278Sdrh   /* If rowid is changing, make sure the new rowid does not previously
1904f8ffb278Sdrh   ** exist in the table.
19059cfcf5d4Sdrh   */
19066fbe41acSdrh   if( pkChng && pPk==0 ){
1907ec4ccdbcSdrh     int addrRowidOk = sqlite3VdbeMakeLabel(pParse);
190811e85273Sdrh 
1909f8ffb278Sdrh     /* Figure out what action to take in case of a rowid collision */
19100ca3e24bSdrh     onError = pTab->keyConf;
19110ca3e24bSdrh     if( overrideError!=OE_Default ){
19120ca3e24bSdrh       onError = overrideError;
1913a996e477Sdrh     }else if( onError==OE_Default ){
1914a996e477Sdrh       onError = OE_Abort;
19150ca3e24bSdrh     }
1916a0217ba7Sdrh 
1917c8a0c90bSdrh     /* figure out whether or not upsert applies in this case */
191861e280adSdrh     if( pUpsert ){
191961e280adSdrh       pUpsertClause = sqlite3UpsertOfIndex(pUpsert,0);
192061e280adSdrh       if( pUpsertClause!=0 ){
1921255c1c15Sdrh         if( pUpsertClause->isDoUpdate==0 ){
1922c8a0c90bSdrh           onError = OE_Ignore;  /* DO NOTHING is the same as INSERT OR IGNORE */
1923c8a0c90bSdrh         }else{
1924c8a0c90bSdrh           onError = OE_Update;  /* DO UPDATE */
1925c8a0c90bSdrh         }
1926c8a0c90bSdrh       }
192761e280adSdrh       if( pUpsertClause!=pUpsert ){
192861e280adSdrh         /* The first ON CONFLICT clause has a conflict target other than
192961e280adSdrh         ** the IPK.  We have to jump ahead to that first ON CONFLICT clause
193061e280adSdrh         ** and then come back here and deal with the IPK afterwards */
193161e280adSdrh         upsertIpkDelay = sqlite3VdbeAddOp0(v, OP_Goto);
193261e280adSdrh       }
193361e280adSdrh     }
1934c8a0c90bSdrh 
19358d1b82e4Sdrh     /* If the response to a rowid conflict is REPLACE but the response
19368d1b82e4Sdrh     ** to some other UNIQUE constraint is FAIL or IGNORE, then we need
19378d1b82e4Sdrh     ** to defer the running of the rowid conflict checking until after
19388d1b82e4Sdrh     ** the UNIQUE constraints have run.
19398d1b82e4Sdrh     */
194084304506Sdrh     if( onError==OE_Replace      /* IPK rule is REPLACE */
19419a60e716Smistachkin      && onError!=overrideError   /* Rules for other constraints are different */
194284304506Sdrh      && pTab->pIndex             /* There exist other constraints */
1943096fd476Sdrh     ){
194484304506Sdrh       ipkTop = sqlite3VdbeAddOp0(v, OP_Goto)+1;
194584304506Sdrh       VdbeComment((v, "defer IPK REPLACE until last"));
19468d1b82e4Sdrh     }
19478d1b82e4Sdrh 
1948bb6b1ca7Sdrh     if( isUpdate ){
1949bb6b1ca7Sdrh       /* pkChng!=0 does not mean that the rowid has changed, only that
1950bb6b1ca7Sdrh       ** it might have changed.  Skip the conflict logic below if the rowid
1951bb6b1ca7Sdrh       ** is unchanged. */
1952bb6b1ca7Sdrh       sqlite3VdbeAddOp3(v, OP_Eq, regNewData, addrRowidOk, regOldData);
1953bb6b1ca7Sdrh       sqlite3VdbeChangeP5(v, SQLITE_NOTNULL);
1954bb6b1ca7Sdrh       VdbeCoverage(v);
1955bb6b1ca7Sdrh     }
1956bb6b1ca7Sdrh 
1957f8ffb278Sdrh     /* Check to see if the new rowid already exists in the table.  Skip
1958f8ffb278Sdrh     ** the following conflict logic if it does not. */
19597f5f306bSdrh     VdbeNoopComment((v, "uniqueness check for ROWID"));
19604031bafaSdrh     sqlite3VdbeVerifyAbortable(v, onError);
19616934fc7bSdrh     sqlite3VdbeAddOp3(v, OP_NotExists, iDataCur, addrRowidOk, regNewData);
1962688852abSdrh     VdbeCoverage(v);
1963f8ffb278Sdrh 
19640ca3e24bSdrh     switch( onError ){
1965a0217ba7Sdrh       default: {
1966a0217ba7Sdrh         onError = OE_Abort;
196708b92086Sdrh         /* no break */ deliberate_fall_through
1968a0217ba7Sdrh       }
19691c92853dSdrh       case OE_Rollback:
19701c92853dSdrh       case OE_Abort:
19711c92853dSdrh       case OE_Fail: {
19729916048bSdrh         testcase( onError==OE_Rollback );
19739916048bSdrh         testcase( onError==OE_Abort );
19749916048bSdrh         testcase( onError==OE_Fail );
1975f9c8ce3cSdrh         sqlite3RowidConstraint(pParse, onError, pTab);
19760ca3e24bSdrh         break;
19770ca3e24bSdrh       }
19785383ae5cSdrh       case OE_Replace: {
19792283d46cSdan         /* If there are DELETE triggers on this table and the
19802283d46cSdan         ** recursive-triggers flag is set, call GenerateRowDelete() to
1981d5578433Smistachkin         ** remove the conflicting row from the table. This will fire
19822283d46cSdan         ** the triggers and remove both the table and index b-tree entries.
19832283d46cSdan         **
19842283d46cSdan         ** Otherwise, if there are no triggers or the recursive-triggers
1985da730f6eSdan         ** flag is not set, but the table has one or more indexes, call
1986da730f6eSdan         ** GenerateRowIndexDelete(). This removes the index b-tree entries
1987da730f6eSdan         ** only. The table b-tree entry will be replaced by the new entry
1988da730f6eSdan         ** when it is inserted.
1989da730f6eSdan         **
1990da730f6eSdan         ** If either GenerateRowDelete() or GenerateRowIndexDelete() is called,
1991da730f6eSdan         ** also invoke MultiWrite() to indicate that this VDBE may require
1992da730f6eSdan         ** statement rollback (if the statement is aborted after the delete
1993da730f6eSdan         ** takes place). Earlier versions called sqlite3MultiWrite() regardless,
1994da730f6eSdan         ** but being more selective here allows statements like:
1995da730f6eSdan         **
1996da730f6eSdan         **   REPLACE INTO t(rowid) VALUES($newrowid)
1997da730f6eSdan         **
1998da730f6eSdan         ** to run without a statement journal if there are no indexes on the
1999da730f6eSdan         ** table.
2000da730f6eSdan         */
2001a407eccbSdrh         if( regTrigCnt ){
2002da730f6eSdan           sqlite3MultiWrite(pParse);
200326198bb4Sdrh           sqlite3GenerateRowDelete(pParse, pTab, pTrigger, iDataCur, iIdxCur,
2004438b8815Sdan                                    regNewData, 1, 0, OE_Replace, 1, -1);
2005a407eccbSdrh           sqlite3VdbeAddOp2(v, OP_AddImm, regTrigCnt, 1); /* incr trigger cnt */
2006a407eccbSdrh           nReplaceTrig++;
200746c47d46Sdan         }else{
20089b1c62d4Sdrh #ifdef SQLITE_ENABLE_PREUPDATE_HOOK
200954f2cd90Sdrh           assert( HasRowid(pTab) );
201046c47d46Sdan           /* This OP_Delete opcode fires the pre-update-hook only. It does
201146c47d46Sdan           ** not modify the b-tree. It is more efficient to let the coming
201246c47d46Sdan           ** OP_Insert replace the existing entry than it is to delete the
201346c47d46Sdan           ** existing entry and then insert a new one. */
2014cbf1b8efSdrh           sqlite3VdbeAddOp2(v, OP_Delete, iDataCur, OPFLAG_ISNOOP);
2015f14b7fb7Sdrh           sqlite3VdbeAppendP4(v, pTab, P4_TABLE);
20169b1c62d4Sdrh #endif /* SQLITE_ENABLE_PREUPDATE_HOOK */
201746c47d46Sdan           if( pTab->pIndex ){
2018da730f6eSdan             sqlite3MultiWrite(pParse);
2019f0ee1d3cSdan             sqlite3GenerateRowIndexDelete(pParse, pTab, iDataCur, iIdxCur,0,-1);
20202283d46cSdan           }
202146c47d46Sdan         }
20225383ae5cSdrh         seenReplace = 1;
20235383ae5cSdrh         break;
20245383ae5cSdrh       }
20259eddacadSdrh #ifndef SQLITE_OMIT_UPSERT
20269eddacadSdrh       case OE_Update: {
20272cc00423Sdan         sqlite3UpsertDoUpdate(pParse, pUpsert, pTab, 0, iDataCur);
202808b92086Sdrh         /* no break */ deliberate_fall_through
20299eddacadSdrh       }
20309eddacadSdrh #endif
20310ca3e24bSdrh       case OE_Ignore: {
20329916048bSdrh         testcase( onError==OE_Ignore );
2033076e85f5Sdrh         sqlite3VdbeGoto(v, ignoreDest);
20340ca3e24bSdrh         break;
20350ca3e24bSdrh       }
20360ca3e24bSdrh     }
203711e85273Sdrh     sqlite3VdbeResolveLabel(v, addrRowidOk);
203861e280adSdrh     if( pUpsert && pUpsertClause!=pUpsert ){
203961e280adSdrh       upsertIpkReturn = sqlite3VdbeAddOp0(v, OP_Goto);
204061e280adSdrh     }else if( ipkTop ){
204184304506Sdrh       ipkBottom = sqlite3VdbeAddOp0(v, OP_Goto);
204284304506Sdrh       sqlite3VdbeJumpHere(v, ipkTop-1);
2043a05a722fSdrh     }
20440ca3e24bSdrh   }
20450bd1f4eaSdrh 
20460bd1f4eaSdrh   /* Test all UNIQUE constraints by creating entries for each UNIQUE
20470bd1f4eaSdrh   ** index and making sure that duplicate entries do not already exist.
204811e85273Sdrh   ** Compute the revised record entries for indices as we go.
2049f8ffb278Sdrh   **
2050f8ffb278Sdrh   ** This loop also handles the case of the PRIMARY KEY index for a
2051f8ffb278Sdrh   ** WITHOUT ROWID table.
20520bd1f4eaSdrh   */
205361e280adSdrh   for(pIdx = indexIteratorFirst(&sIdxIter, &ix);
2054daf2761cSdrh       pIdx;
205561e280adSdrh       pIdx = indexIteratorNext(&sIdxIter, &ix)
2056daf2761cSdrh   ){
20576934fc7bSdrh     int regIdx;          /* Range of registers hold conent for pIdx */
20586934fc7bSdrh     int regR;            /* Range of registers holding conflicting PK */
20596934fc7bSdrh     int iThisCur;        /* Cursor for this UNIQUE index */
20606934fc7bSdrh     int addrUniqueOk;    /* Jump here if the UNIQUE constraint is satisfied */
2061a407eccbSdrh     int addrConflictCk;  /* First opcode in the conflict check logic */
20622184fc75Sdrh 
206326198bb4Sdrh     if( aRegIdx[ix]==0 ) continue;  /* Skip indices that do not change */
206461e280adSdrh     if( pUpsert ){
206561e280adSdrh       pUpsertClause = sqlite3UpsertOfIndex(pUpsert, pIdx);
206661e280adSdrh       if( upsertIpkDelay && pUpsertClause==pUpsert ){
206761e280adSdrh         sqlite3VdbeJumpHere(v, upsertIpkDelay);
20687f5f306bSdrh       }
206961e280adSdrh     }
207061e280adSdrh     addrUniqueOk = sqlite3VdbeMakeLabel(pParse);
207161e280adSdrh     if( bAffinityDone==0 ){
207284304506Sdrh       sqlite3TableAffinity(v, pTab, regNewData+1);
207384304506Sdrh       bAffinityDone = 1;
207484304506Sdrh     }
20758e50d65aSdrh     VdbeNoopComment((v, "prep index %s", pIdx->zName));
20766934fc7bSdrh     iThisCur = iIdxCur+ix;
20777f5f306bSdrh 
2078b2fe7d8cSdrh 
2079f8ffb278Sdrh     /* Skip partial indices for which the WHERE clause is not true */
2080b2b9d3d7Sdrh     if( pIdx->pPartIdxWhere ){
208126198bb4Sdrh       sqlite3VdbeAddOp2(v, OP_Null, 0, aRegIdx[ix]);
20826e97f8ecSdrh       pParse->iSelfTab = -(regNewData+1);
208372bc8208Sdrh       sqlite3ExprIfFalseDup(pParse, pIdx->pPartIdxWhere, addrUniqueOk,
2084b2b9d3d7Sdrh                             SQLITE_JUMPIFNULL);
20856e97f8ecSdrh       pParse->iSelfTab = 0;
2086b2b9d3d7Sdrh     }
2087b2b9d3d7Sdrh 
20886934fc7bSdrh     /* Create a record for this index entry as it should appear after
2089f8ffb278Sdrh     ** the insert or update.  Store that record in the aRegIdx[ix] register
2090f8ffb278Sdrh     */
2091bf2f5739Sdrh     regIdx = aRegIdx[ix]+1;
20929cfcf5d4Sdrh     for(i=0; i<pIdx->nColumn; i++){
20936934fc7bSdrh       int iField = pIdx->aiColumn[i];
2094f82b9afcSdrh       int x;
20954b92f98cSdrh       if( iField==XN_EXPR ){
20966e97f8ecSdrh         pParse->iSelfTab = -(regNewData+1);
20971c75c9d7Sdrh         sqlite3ExprCodeCopy(pParse, pIdx->aColExpr->a[i].pExpr, regIdx+i);
20986e97f8ecSdrh         pParse->iSelfTab = 0;
20991f9ca2c8Sdrh         VdbeComment((v, "%s column %d", pIdx->zName, i));
2100463e76ffSdrh       }else if( iField==XN_ROWID || iField==pTab->iPKey ){
2101f82b9afcSdrh         x = regNewData;
2102463e76ffSdrh         sqlite3VdbeAddOp2(v, OP_IntCopy, x, regIdx+i);
2103463e76ffSdrh         VdbeComment((v, "rowid"));
21049cfcf5d4Sdrh       }else{
2105c5f808d8Sdrh         testcase( sqlite3TableColumnToStorage(pTab, iField)!=iField );
2106b9bcf7caSdrh         x = sqlite3TableColumnToStorage(pTab, iField) + regNewData + 1;
2107463e76ffSdrh         sqlite3VdbeAddOp2(v, OP_SCopy, x, regIdx+i);
2108463e76ffSdrh         VdbeComment((v, "%s", pTab->aCol[iField].zName));
21099cfcf5d4Sdrh       }
21101f9ca2c8Sdrh     }
211126198bb4Sdrh     sqlite3VdbeAddOp3(v, OP_MakeRecord, regIdx, pIdx->nColumn, aRegIdx[ix]);
211226198bb4Sdrh     VdbeComment((v, "for %s", pIdx->zName));
21137e4acf7bSdrh #ifdef SQLITE_ENABLE_NULL_TRIM
21149df385ecSdrh     if( pIdx->idxType==SQLITE_IDXTYPE_PRIMARYKEY ){
21159df385ecSdrh       sqlite3SetMakeRecordP5(v, pIdx->pTable);
21169df385ecSdrh     }
21177e4acf7bSdrh #endif
21183aef2fb1Sdrh     sqlite3VdbeReleaseRegisters(pParse, regIdx, pIdx->nColumn, 0, 0);
2119b2fe7d8cSdrh 
2120f8ffb278Sdrh     /* In an UPDATE operation, if this index is the PRIMARY KEY index
2121f8ffb278Sdrh     ** of a WITHOUT ROWID table and there has been no change the
2122f8ffb278Sdrh     ** primary key, then no collision is possible.  The collision detection
2123f8ffb278Sdrh     ** logic below can all be skipped. */
212400012df4Sdrh     if( isUpdate && pPk==pIdx && pkChng==0 ){
2125da475b8dSdrh       sqlite3VdbeResolveLabel(v, addrUniqueOk);
2126da475b8dSdrh       continue;
2127da475b8dSdrh     }
2128f8ffb278Sdrh 
21296934fc7bSdrh     /* Find out what action to take in case there is a uniqueness conflict */
21309cfcf5d4Sdrh     onError = pIdx->onError;
2131de630353Sdanielk1977     if( onError==OE_None ){
213211e85273Sdrh       sqlite3VdbeResolveLabel(v, addrUniqueOk);
2133de630353Sdanielk1977       continue;  /* pIdx is not a UNIQUE index */
2134de630353Sdanielk1977     }
21359cfcf5d4Sdrh     if( overrideError!=OE_Default ){
21369cfcf5d4Sdrh       onError = overrideError;
2137a996e477Sdrh     }else if( onError==OE_Default ){
2138a996e477Sdrh       onError = OE_Abort;
21399cfcf5d4Sdrh     }
21405383ae5cSdrh 
2141c8a0c90bSdrh     /* Figure out if the upsert clause applies to this index */
214261e280adSdrh     if( pUpsertClause ){
2143255c1c15Sdrh       if( pUpsertClause->isDoUpdate==0 ){
2144c8a0c90bSdrh         onError = OE_Ignore;  /* DO NOTHING is the same as INSERT OR IGNORE */
2145c8a0c90bSdrh       }else{
2146c8a0c90bSdrh         onError = OE_Update;  /* DO UPDATE */
2147c8a0c90bSdrh       }
2148c8a0c90bSdrh     }
2149c8a0c90bSdrh 
2150801f55d8Sdrh     /* Collision detection may be omitted if all of the following are true:
2151801f55d8Sdrh     **   (1) The conflict resolution algorithm is REPLACE
2152801f55d8Sdrh     **   (2) The table is a WITHOUT ROWID table
2153801f55d8Sdrh     **   (3) There are no secondary indexes on the table
2154801f55d8Sdrh     **   (4) No delete triggers need to be fired if there is a conflict
2155f9a12a10Sdan     **   (5) No FK constraint counters need to be updated if a conflict occurs.
2156418454c6Sdan     **
2157418454c6Sdan     ** This is not possible for ENABLE_PREUPDATE_HOOK builds, as the row
2158418454c6Sdan     ** must be explicitly deleted in order to ensure any pre-update hook
2159418454c6Sdan     ** is invoked.  */
2160418454c6Sdan #ifndef SQLITE_ENABLE_PREUPDATE_HOOK
2161801f55d8Sdrh     if( (ix==0 && pIdx->pNext==0)                   /* Condition 3 */
2162801f55d8Sdrh      && pPk==pIdx                                   /* Condition 2 */
2163801f55d8Sdrh      && onError==OE_Replace                         /* Condition 1 */
2164801f55d8Sdrh      && ( 0==(db->flags&SQLITE_RecTriggers) ||      /* Condition 4 */
2165801f55d8Sdrh           0==sqlite3TriggersExist(pParse, pTab, TK_DELETE, 0, 0))
2166f9a12a10Sdan      && ( 0==(db->flags&SQLITE_ForeignKeys) ||      /* Condition 5 */
2167f9a12a10Sdan          (0==pTab->pFKey && 0==sqlite3FkReferences(pTab)))
21684e1f0efbSdan     ){
2169c6c9e158Sdrh       sqlite3VdbeResolveLabel(v, addrUniqueOk);
2170c6c9e158Sdrh       continue;
2171c6c9e158Sdrh     }
2172418454c6Sdan #endif /* ifndef SQLITE_ENABLE_PREUPDATE_HOOK */
2173c6c9e158Sdrh 
2174b2fe7d8cSdrh     /* Check to see if the new index entry will be unique */
21754031bafaSdrh     sqlite3VdbeVerifyAbortable(v, onError);
2176a407eccbSdrh     addrConflictCk =
217726198bb4Sdrh       sqlite3VdbeAddOp4Int(v, OP_NoConflict, iThisCur, addrUniqueOk,
2178688852abSdrh                            regIdx, pIdx->nKeyCol); VdbeCoverage(v);
2179f8ffb278Sdrh 
2180f8ffb278Sdrh     /* Generate code to handle collisions */
2181d3e21a10Sdrh     regR = pIdx==pPk ? regIdx : sqlite3GetTempRange(pParse, nPkField);
218246d03fcbSdrh     if( isUpdate || onError==OE_Replace ){
218311e85273Sdrh       if( HasRowid(pTab) ){
21846934fc7bSdrh         sqlite3VdbeAddOp2(v, OP_IdxRowid, iThisCur, regR);
21850978d4ffSdrh         /* Conflict only if the rowid of the existing index entry
21860978d4ffSdrh         ** is different from old-rowid */
2187f8ffb278Sdrh         if( isUpdate ){
21886934fc7bSdrh           sqlite3VdbeAddOp3(v, OP_Eq, regR, addrUniqueOk, regOldData);
21893d77dee9Sdrh           sqlite3VdbeChangeP5(v, SQLITE_NOTNULL);
2190688852abSdrh           VdbeCoverage(v);
2191f8ffb278Sdrh         }
219226198bb4Sdrh       }else{
2193ccc79f02Sdrh         int x;
219426198bb4Sdrh         /* Extract the PRIMARY KEY from the end of the index entry and
2195da475b8dSdrh         ** store it in registers regR..regR+nPk-1 */
2196a021f121Sdrh         if( pIdx!=pPk ){
219726198bb4Sdrh           for(i=0; i<pPk->nKeyCol; i++){
21984b92f98cSdrh             assert( pPk->aiColumn[i]>=0 );
2199b9bcf7caSdrh             x = sqlite3TableColumnToIndex(pIdx, pPk->aiColumn[i]);
220026198bb4Sdrh             sqlite3VdbeAddOp3(v, OP_Column, iThisCur, x, regR+i);
220126198bb4Sdrh             VdbeComment((v, "%s.%s", pTab->zName,
220226198bb4Sdrh                          pTab->aCol[pPk->aiColumn[i]].zName));
220326198bb4Sdrh           }
2204da475b8dSdrh         }
2205da475b8dSdrh         if( isUpdate ){
2206e83267daSdan           /* If currently processing the PRIMARY KEY of a WITHOUT ROWID
2207e83267daSdan           ** table, only conflict if the new PRIMARY KEY values are actually
2208e83267daSdan           ** different from the old.
2209e83267daSdan           **
2210e83267daSdan           ** For a UNIQUE index, only conflict if the PRIMARY KEY values
2211e83267daSdan           ** of the matched index row are different from the original PRIMARY
2212e83267daSdan           ** KEY values of this row before the update.  */
2213e83267daSdan           int addrJump = sqlite3VdbeCurrentAddr(v)+pPk->nKeyCol;
2214e83267daSdan           int op = OP_Ne;
221548dd1d8eSdrh           int regCmp = (IsPrimaryKeyIndex(pIdx) ? regIdx : regR);
2216e83267daSdan 
2217e83267daSdan           for(i=0; i<pPk->nKeyCol; i++){
2218e83267daSdan             char *p4 = (char*)sqlite3LocateCollSeq(pParse, pPk->azColl[i]);
2219ccc79f02Sdrh             x = pPk->aiColumn[i];
22204b92f98cSdrh             assert( x>=0 );
2221e83267daSdan             if( i==(pPk->nKeyCol-1) ){
2222e83267daSdan               addrJump = addrUniqueOk;
2223e83267daSdan               op = OP_Eq;
222411e85273Sdrh             }
2225b6d861e5Sdrh             x = sqlite3TableColumnToStorage(pTab, x);
2226e83267daSdan             sqlite3VdbeAddOp4(v, op,
2227e83267daSdan                 regOldData+1+x, addrJump, regCmp+i, p4, P4_COLLSEQ
2228e83267daSdan             );
22293d77dee9Sdrh             sqlite3VdbeChangeP5(v, SQLITE_NOTNULL);
22303d77dee9Sdrh             VdbeCoverageIf(v, op==OP_Eq);
22313d77dee9Sdrh             VdbeCoverageIf(v, op==OP_Ne);
2232da475b8dSdrh           }
223311e85273Sdrh         }
223426198bb4Sdrh       }
223546d03fcbSdrh     }
2236b2fe7d8cSdrh 
2237b2fe7d8cSdrh     /* Generate code that executes if the new index entry is not unique */
2238b84f96f8Sdanielk1977     assert( onError==OE_Rollback || onError==OE_Abort || onError==OE_Fail
22399eddacadSdrh         || onError==OE_Ignore || onError==OE_Replace || onError==OE_Update );
22409cfcf5d4Sdrh     switch( onError ){
22411c92853dSdrh       case OE_Rollback:
22421c92853dSdrh       case OE_Abort:
22431c92853dSdrh       case OE_Fail: {
22449916048bSdrh         testcase( onError==OE_Rollback );
22459916048bSdrh         testcase( onError==OE_Abort );
22469916048bSdrh         testcase( onError==OE_Fail );
2247f9c8ce3cSdrh         sqlite3UniqueConstraint(pParse, onError, pIdx);
22489cfcf5d4Sdrh         break;
22499cfcf5d4Sdrh       }
22509eddacadSdrh #ifndef SQLITE_OMIT_UPSERT
22519eddacadSdrh       case OE_Update: {
22522cc00423Sdan         sqlite3UpsertDoUpdate(pParse, pUpsert, pTab, pIdx, iIdxCur+ix);
225308b92086Sdrh         /* no break */ deliberate_fall_through
22549eddacadSdrh       }
22559eddacadSdrh #endif
22569cfcf5d4Sdrh       case OE_Ignore: {
22579916048bSdrh         testcase( onError==OE_Ignore );
2258076e85f5Sdrh         sqlite3VdbeGoto(v, ignoreDest);
22599cfcf5d4Sdrh         break;
22609cfcf5d4Sdrh       }
2261098d1684Sdrh       default: {
2262a407eccbSdrh         int nConflictCk;   /* Number of opcodes in conflict check logic */
2263a407eccbSdrh 
2264098d1684Sdrh         assert( onError==OE_Replace );
2265a407eccbSdrh         nConflictCk = sqlite3VdbeCurrentAddr(v) - addrConflictCk;
2266d3c468b7Sdrh         assert( nConflictCk>0 );
2267d3c468b7Sdrh         testcase( nConflictCk>1 );
2268a407eccbSdrh         if( regTrigCnt ){
2269fecfb318Sdan           sqlite3MultiWrite(pParse);
2270a407eccbSdrh           nReplaceTrig++;
2271fecfb318Sdan         }
22727b14b65dSdrh         if( pTrigger && isUpdate ){
22737b14b65dSdrh           sqlite3VdbeAddOp1(v, OP_CursorLock, iDataCur);
22747b14b65dSdrh         }
227526198bb4Sdrh         sqlite3GenerateRowDelete(pParse, pTab, pTrigger, iDataCur, iIdxCur,
2276b0264eecSdrh             regR, nPkField, 0, OE_Replace,
227768116939Sdrh             (pIdx==pPk ? ONEPASS_SINGLE : ONEPASS_OFF), iThisCur);
22787b14b65dSdrh         if( pTrigger && isUpdate ){
22797b14b65dSdrh           sqlite3VdbeAddOp1(v, OP_CursorUnlock, iDataCur);
22807b14b65dSdrh         }
2281a407eccbSdrh         if( regTrigCnt ){
2282a407eccbSdrh           int addrBypass;  /* Jump destination to bypass recheck logic */
2283a407eccbSdrh 
2284a407eccbSdrh           sqlite3VdbeAddOp2(v, OP_AddImm, regTrigCnt, 1); /* incr trigger cnt */
2285a407eccbSdrh           addrBypass = sqlite3VdbeAddOp0(v, OP_Goto);  /* Bypass recheck */
2286a407eccbSdrh           VdbeComment((v, "bypass recheck"));
2287a407eccbSdrh 
2288a407eccbSdrh           /* Here we insert code that will be invoked after all constraint
2289a407eccbSdrh           ** checks have run, if and only if one or more replace triggers
2290a407eccbSdrh           ** fired. */
2291a407eccbSdrh           sqlite3VdbeResolveLabel(v, lblRecheckOk);
2292a407eccbSdrh           lblRecheckOk = sqlite3VdbeMakeLabel(pParse);
2293a407eccbSdrh           if( pIdx->pPartIdxWhere ){
2294a407eccbSdrh             /* Bypass the recheck if this partial index is not defined
2295a407eccbSdrh             ** for the current row */
22960660884eSdrh             sqlite3VdbeAddOp2(v, OP_IsNull, regIdx-1, lblRecheckOk);
2297a407eccbSdrh             VdbeCoverage(v);
2298a407eccbSdrh           }
2299a407eccbSdrh           /* Copy the constraint check code from above, except change
2300a407eccbSdrh           ** the constraint-ok jump destination to be the address of
2301a407eccbSdrh           ** the next retest block */
2302d3c468b7Sdrh           while( nConflictCk>0 ){
2303d901b168Sdrh             VdbeOp x;    /* Conflict check opcode to copy */
2304d901b168Sdrh             /* The sqlite3VdbeAddOp4() call might reallocate the opcode array.
2305d901b168Sdrh             ** Hence, make a complete copy of the opcode, rather than using
2306d901b168Sdrh             ** a pointer to the opcode. */
2307d901b168Sdrh             x = *sqlite3VdbeGetOp(v, addrConflictCk);
2308d901b168Sdrh             if( x.opcode!=OP_IdxRowid ){
2309d901b168Sdrh               int p2;      /* New P2 value for copied conflict check opcode */
2310b9f2e5f7Sdrh               const char *zP4;
2311d901b168Sdrh               if( sqlite3OpcodeProperty[x.opcode]&OPFLG_JUMP ){
2312a407eccbSdrh                 p2 = lblRecheckOk;
2313a407eccbSdrh               }else{
2314d901b168Sdrh                 p2 = x.p2;
2315a407eccbSdrh               }
2316b9f2e5f7Sdrh               zP4 = x.p4type==P4_INT32 ? SQLITE_INT_TO_PTR(x.p4.i) : x.p4.z;
2317b9f2e5f7Sdrh               sqlite3VdbeAddOp4(v, x.opcode, x.p1, p2, x.p3, zP4, x.p4type);
2318d901b168Sdrh               sqlite3VdbeChangeP5(v, x.p5);
2319d901b168Sdrh               VdbeCoverageIf(v, p2!=x.p2);
2320a407eccbSdrh             }
2321a407eccbSdrh             nConflictCk--;
2322d901b168Sdrh             addrConflictCk++;
2323a407eccbSdrh           }
2324a407eccbSdrh           /* If the retest fails, issue an abort */
23252da8d6feSdrh           sqlite3UniqueConstraint(pParse, OE_Abort, pIdx);
2326a407eccbSdrh 
2327a407eccbSdrh           sqlite3VdbeJumpHere(v, addrBypass); /* Terminate the recheck bypass */
23282da8d6feSdrh         }
23290ca3e24bSdrh         seenReplace = 1;
23309cfcf5d4Sdrh         break;
23319cfcf5d4Sdrh       }
23329cfcf5d4Sdrh     }
233311e85273Sdrh     sqlite3VdbeResolveLabel(v, addrUniqueOk);
2334392ee21dSdrh     if( regR!=regIdx ) sqlite3ReleaseTempRange(pParse, regR, nPkField);
2335ed4c5469Sdrh     if( pUpsertClause
2336ed4c5469Sdrh      && upsertIpkReturn
2337ed4c5469Sdrh      && sqlite3UpsertNextIsIPK(pUpsertClause)
2338ed4c5469Sdrh     ){
233961e280adSdrh       sqlite3VdbeGoto(v, upsertIpkDelay+1);
234061e280adSdrh       sqlite3VdbeJumpHere(v, upsertIpkReturn);
234158b18a47Sdrh       upsertIpkReturn = 0;
234261e280adSdrh     }
23439cfcf5d4Sdrh   }
234484304506Sdrh 
234584304506Sdrh   /* If the IPK constraint is a REPLACE, run it last */
234684304506Sdrh   if( ipkTop ){
23476214d939Sdrh     sqlite3VdbeGoto(v, ipkTop);
234884304506Sdrh     VdbeComment((v, "Do IPK REPLACE"));
234984304506Sdrh     sqlite3VdbeJumpHere(v, ipkBottom);
235084304506Sdrh   }
2351de630353Sdanielk1977 
2352a407eccbSdrh   /* Recheck all uniqueness constraints after replace triggers have run */
2353a407eccbSdrh   testcase( regTrigCnt!=0 && nReplaceTrig==0 );
2354d3c468b7Sdrh   assert( regTrigCnt!=0 || nReplaceTrig==0 );
2355a407eccbSdrh   if( nReplaceTrig ){
2356a407eccbSdrh     sqlite3VdbeAddOp2(v, OP_IfNot, regTrigCnt, lblRecheckOk);VdbeCoverage(v);
2357a407eccbSdrh     if( !pPk ){
2358a407eccbSdrh       if( isUpdate ){
2359a407eccbSdrh         sqlite3VdbeAddOp3(v, OP_Eq, regNewData, addrRecheck, regOldData);
2360a407eccbSdrh         sqlite3VdbeChangeP5(v, SQLITE_NOTNULL);
2361a407eccbSdrh         VdbeCoverage(v);
2362a407eccbSdrh       }
2363a407eccbSdrh       sqlite3VdbeAddOp3(v, OP_NotExists, iDataCur, addrRecheck, regNewData);
2364a407eccbSdrh       VdbeCoverage(v);
2365a407eccbSdrh       sqlite3RowidConstraint(pParse, OE_Abort, pTab);
2366a407eccbSdrh     }else{
2367a407eccbSdrh       sqlite3VdbeGoto(v, addrRecheck);
2368a407eccbSdrh     }
2369a407eccbSdrh     sqlite3VdbeResolveLabel(v, lblRecheckOk);
2370a407eccbSdrh   }
2371a407eccbSdrh 
2372a7c3b93fSdrh   /* Generate the table record */
2373a7c3b93fSdrh   if( HasRowid(pTab) ){
2374a7c3b93fSdrh     int regRec = aRegIdx[ix];
23750b0b3a95Sdrh     sqlite3VdbeAddOp3(v, OP_MakeRecord, regNewData+1, pTab->nNVCol, regRec);
2376a7c3b93fSdrh     sqlite3SetMakeRecordP5(v, pTab);
2377a7c3b93fSdrh     if( !bAffinityDone ){
2378a7c3b93fSdrh       sqlite3TableAffinity(v, pTab, 0);
2379a7c3b93fSdrh     }
2380a7c3b93fSdrh   }
2381a7c3b93fSdrh 
2382de630353Sdanielk1977   *pbMayReplace = seenReplace;
2383ce60aa46Sdrh   VdbeModuleComment((v, "END: GenCnstCks(%d)", seenReplace));
23849cfcf5d4Sdrh }
23850ca3e24bSdrh 
2386d447dcedSdrh #ifdef SQLITE_ENABLE_NULL_TRIM
23870ca3e24bSdrh /*
2388585ce192Sdrh ** Change the P5 operand on the last opcode (which should be an OP_MakeRecord)
2389585ce192Sdrh ** to be the number of columns in table pTab that must not be NULL-trimmed.
2390585ce192Sdrh **
2391585ce192Sdrh ** Or if no columns of pTab may be NULL-trimmed, leave P5 at zero.
2392585ce192Sdrh */
2393585ce192Sdrh void sqlite3SetMakeRecordP5(Vdbe *v, Table *pTab){
2394585ce192Sdrh   u16 i;
2395585ce192Sdrh 
2396585ce192Sdrh   /* Records with omitted columns are only allowed for schema format
2397585ce192Sdrh   ** version 2 and later (SQLite version 3.1.4, 2005-02-20). */
2398585ce192Sdrh   if( pTab->pSchema->file_format<2 ) return;
2399585ce192Sdrh 
24007e4acf7bSdrh   for(i=pTab->nCol-1; i>0; i--){
24017e4acf7bSdrh     if( pTab->aCol[i].pDflt!=0 ) break;
24027e4acf7bSdrh     if( pTab->aCol[i].colFlags & COLFLAG_PRIMKEY ) break;
24037e4acf7bSdrh   }
24047e4acf7bSdrh   sqlite3VdbeChangeP5(v, i+1);
2405585ce192Sdrh }
2406d447dcedSdrh #endif
2407585ce192Sdrh 
24080ca3e24bSdrh /*
24090ca3e24bSdrh ** This routine generates code to finish the INSERT or UPDATE operation
24104adee20fSdanielk1977 ** that was started by a prior call to sqlite3GenerateConstraintChecks.
24116934fc7bSdrh ** A consecutive range of registers starting at regNewData contains the
241204adf416Sdrh ** rowid and the content to be inserted.
24130ca3e24bSdrh **
2414b419a926Sdrh ** The arguments to this routine should be the same as the first six
24154adee20fSdanielk1977 ** arguments to sqlite3GenerateConstraintChecks.
24160ca3e24bSdrh */
24174adee20fSdanielk1977 void sqlite3CompleteInsertion(
24180ca3e24bSdrh   Parse *pParse,      /* The parser context */
24190ca3e24bSdrh   Table *pTab,        /* the table into which we are inserting */
242026198bb4Sdrh   int iDataCur,       /* Cursor of the canonical data source */
242126198bb4Sdrh   int iIdxCur,        /* First index cursor */
24226934fc7bSdrh   int regNewData,     /* Range of content */
2423aa9b8963Sdrh   int *aRegIdx,       /* Register used by each index.  0 for unused indices */
2424f91c1318Sdan   int update_flags,   /* True for UPDATE, False for INSERT */
2425de630353Sdanielk1977   int appendBias,     /* True if this is likely to be an append */
2426de630353Sdanielk1977   int useSeekResult   /* True to set the USESEEKRESULT flag on OP_[Idx]Insert */
24270ca3e24bSdrh ){
24286934fc7bSdrh   Vdbe *v;            /* Prepared statements under construction */
24296934fc7bSdrh   Index *pIdx;        /* An index being inserted or updated */
24306934fc7bSdrh   u8 pik_flags;       /* flag values passed to the btree insert */
24316934fc7bSdrh   int i;              /* Loop counter */
24320ca3e24bSdrh 
2433f91c1318Sdan   assert( update_flags==0
2434f91c1318Sdan        || update_flags==OPFLAG_ISUPDATE
2435f91c1318Sdan        || update_flags==(OPFLAG_ISUPDATE|OPFLAG_SAVEPOSITION)
2436f91c1318Sdan   );
2437f91c1318Sdan 
2438f0b41745Sdrh   v = pParse->pVdbe;
24390ca3e24bSdrh   assert( v!=0 );
2440417be79cSdrh   assert( pTab->pSelect==0 );  /* This table is not a VIEW */
2441b2b9d3d7Sdrh   for(i=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, i++){
2442d35bdd6cSdrh     /* All REPLACE indexes are at the end of the list */
2443d35bdd6cSdrh     assert( pIdx->onError!=OE_Replace
2444d35bdd6cSdrh          || pIdx->pNext==0
2445d35bdd6cSdrh          || pIdx->pNext->onError==OE_Replace );
2446aa9b8963Sdrh     if( aRegIdx[i]==0 ) continue;
2447b2b9d3d7Sdrh     if( pIdx->pPartIdxWhere ){
2448b2b9d3d7Sdrh       sqlite3VdbeAddOp2(v, OP_IsNull, aRegIdx[i], sqlite3VdbeCurrentAddr(v)+2);
2449688852abSdrh       VdbeCoverage(v);
2450b2b9d3d7Sdrh     }
2451cb9a3643Sdan     pik_flags = (useSeekResult ? OPFLAG_USESEEKRESULT : 0);
245248dd1d8eSdrh     if( IsPrimaryKeyIndex(pIdx) && !HasRowid(pTab) ){
24534308e348Sdrh       assert( pParse->nested==0 );
24546546af14Sdrh       pik_flags |= OPFLAG_NCHANGE;
2455f91c1318Sdan       pik_flags |= (update_flags & OPFLAG_SAVEPOSITION);
2456cb9a3643Sdan #ifdef SQLITE_ENABLE_PREUPDATE_HOOK
2457cb9a3643Sdan       if( update_flags==0 ){
245850ef6716Sdrh         int r = sqlite3GetTempReg(pParse);
245950ef6716Sdrh         sqlite3VdbeAddOp2(v, OP_Integer, 0, r);
246050ef6716Sdrh         sqlite3VdbeAddOp4(v, OP_Insert,
246150ef6716Sdrh             iIdxCur+i, aRegIdx[i], r, (char*)pTab, P4_TABLE
2462cb9a3643Sdan         );
2463cb9a3643Sdan         sqlite3VdbeChangeP5(v, OPFLAG_ISNOOP);
246450ef6716Sdrh         sqlite3ReleaseTempReg(pParse, r);
2465de630353Sdanielk1977       }
2466cb9a3643Sdan #endif
2467cb9a3643Sdan     }
2468cb9a3643Sdan     sqlite3VdbeAddOp4Int(v, OP_IdxInsert, iIdxCur+i, aRegIdx[i],
2469cb9a3643Sdan                          aRegIdx[i]+1,
2470cb9a3643Sdan                          pIdx->uniqNotNull ? pIdx->nKeyCol: pIdx->nColumn);
24719b34abeeSdrh     sqlite3VdbeChangeP5(v, pik_flags);
24720ca3e24bSdrh   }
2473ec95c441Sdrh   if( !HasRowid(pTab) ) return;
24744794f735Sdrh   if( pParse->nested ){
24754794f735Sdrh     pik_flags = 0;
24764794f735Sdrh   }else{
247794eb6a14Sdanielk1977     pik_flags = OPFLAG_NCHANGE;
2478f91c1318Sdan     pik_flags |= (update_flags?update_flags:OPFLAG_LASTROWID);
24794794f735Sdrh   }
2480e4d90813Sdrh   if( appendBias ){
2481e4d90813Sdrh     pik_flags |= OPFLAG_APPEND;
2482e4d90813Sdrh   }
2483de630353Sdanielk1977   if( useSeekResult ){
2484de630353Sdanielk1977     pik_flags |= OPFLAG_USESEEKRESULT;
2485de630353Sdanielk1977   }
2486a7c3b93fSdrh   sqlite3VdbeAddOp3(v, OP_Insert, iDataCur, aRegIdx[i], regNewData);
248794eb6a14Sdanielk1977   if( !pParse->nested ){
2488f14b7fb7Sdrh     sqlite3VdbeAppendP4(v, pTab, P4_TABLE);
248994eb6a14Sdanielk1977   }
2490b7654111Sdrh   sqlite3VdbeChangeP5(v, pik_flags);
24910ca3e24bSdrh }
2492cd44690aSdrh 
2493cd44690aSdrh /*
249426198bb4Sdrh ** Allocate cursors for the pTab table and all its indices and generate
249526198bb4Sdrh ** code to open and initialized those cursors.
2496aa9b8963Sdrh **
249726198bb4Sdrh ** The cursor for the object that contains the complete data (normally
249826198bb4Sdrh ** the table itself, but the PRIMARY KEY index in the case of a WITHOUT
249926198bb4Sdrh ** ROWID table) is returned in *piDataCur.  The first index cursor is
250026198bb4Sdrh ** returned in *piIdxCur.  The number of indices is returned.
250126198bb4Sdrh **
250226198bb4Sdrh ** Use iBase as the first cursor (either the *piDataCur for rowid tables
250326198bb4Sdrh ** or the first index for WITHOUT ROWID tables) if it is non-negative.
250426198bb4Sdrh ** If iBase is negative, then allocate the next available cursor.
250526198bb4Sdrh **
250626198bb4Sdrh ** For a rowid table, *piDataCur will be exactly one less than *piIdxCur.
250726198bb4Sdrh ** For a WITHOUT ROWID table, *piDataCur will be somewhere in the range
250826198bb4Sdrh ** of *piIdxCurs, depending on where the PRIMARY KEY index appears on the
250926198bb4Sdrh ** pTab->pIndex list.
2510b6b4b79fSdrh **
2511b6b4b79fSdrh ** If pTab is a virtual table, then this routine is a no-op and the
2512b6b4b79fSdrh ** *piDataCur and *piIdxCur values are left uninitialized.
2513cd44690aSdrh */
2514aa9b8963Sdrh int sqlite3OpenTableAndIndices(
2515290c1948Sdrh   Parse *pParse,   /* Parsing context */
2516290c1948Sdrh   Table *pTab,     /* Table to be opened */
251726198bb4Sdrh   int op,          /* OP_OpenRead or OP_OpenWrite */
2518b89aeb6aSdrh   u8 p5,           /* P5 value for OP_Open* opcodes (except on WITHOUT ROWID) */
251926198bb4Sdrh   int iBase,       /* Use this for the table cursor, if there is one */
25206a53499aSdrh   u8 *aToOpen,     /* If not NULL: boolean for each table and index */
252126198bb4Sdrh   int *piDataCur,  /* Write the database source cursor number here */
252226198bb4Sdrh   int *piIdxCur    /* Write the first index cursor number here */
2523290c1948Sdrh ){
2524cd44690aSdrh   int i;
25254cbdda9eSdrh   int iDb;
25266a53499aSdrh   int iDataCur;
2527cd44690aSdrh   Index *pIdx;
25284cbdda9eSdrh   Vdbe *v;
25294cbdda9eSdrh 
253026198bb4Sdrh   assert( op==OP_OpenRead || op==OP_OpenWrite );
2531fd261ec6Sdan   assert( op==OP_OpenWrite || p5==0 );
253226198bb4Sdrh   if( IsVirtual(pTab) ){
2533b6b4b79fSdrh     /* This routine is a no-op for virtual tables. Leave the output
2534b6b4b79fSdrh     ** variables *piDataCur and *piIdxCur uninitialized so that valgrind
2535b6b4b79fSdrh     ** can detect if they are used by mistake in the caller. */
253626198bb4Sdrh     return 0;
253726198bb4Sdrh   }
25384cbdda9eSdrh   iDb = sqlite3SchemaToIndex(pParse->db, pTab->pSchema);
2539f0b41745Sdrh   v = pParse->pVdbe;
2540cd44690aSdrh   assert( v!=0 );
254126198bb4Sdrh   if( iBase<0 ) iBase = pParse->nTab;
25426a53499aSdrh   iDataCur = iBase++;
25436a53499aSdrh   if( piDataCur ) *piDataCur = iDataCur;
25446a53499aSdrh   if( HasRowid(pTab) && (aToOpen==0 || aToOpen[0]) ){
25456a53499aSdrh     sqlite3OpenTable(pParse, iDataCur, iDb, pTab, op);
25466fbe41acSdrh   }else{
254726198bb4Sdrh     sqlite3TableLock(pParse, iDb, pTab->tnum, op==OP_OpenWrite, pTab->zName);
25486fbe41acSdrh   }
25496a53499aSdrh   if( piIdxCur ) *piIdxCur = iBase;
255026198bb4Sdrh   for(i=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, i++){
255126198bb4Sdrh     int iIdxCur = iBase++;
2552da184236Sdanielk1977     assert( pIdx->pSchema==pTab->pSchema );
255361441c34Sdan     if( IsPrimaryKeyIndex(pIdx) && !HasRowid(pTab) ){
255461441c34Sdan       if( piDataCur ) *piDataCur = iIdxCur;
255561441c34Sdan       p5 = 0;
255661441c34Sdan     }
25576a53499aSdrh     if( aToOpen==0 || aToOpen[i+1] ){
25582ec2fb22Sdrh       sqlite3VdbeAddOp3(v, op, iIdxCur, pIdx->tnum, iDb);
25592ec2fb22Sdrh       sqlite3VdbeSetP4KeyInfo(pParse, pIdx);
2560b89aeb6aSdrh       sqlite3VdbeChangeP5(v, p5);
256161441c34Sdan       VdbeComment((v, "%s", pIdx->zName));
2562b89aeb6aSdrh     }
25636a53499aSdrh   }
256426198bb4Sdrh   if( iBase>pParse->nTab ) pParse->nTab = iBase;
256526198bb4Sdrh   return i;
2566cd44690aSdrh }
25679d9cf229Sdrh 
256891c58e23Sdrh 
256991c58e23Sdrh #ifdef SQLITE_TEST
257091c58e23Sdrh /*
257191c58e23Sdrh ** The following global variable is incremented whenever the
257291c58e23Sdrh ** transfer optimization is used.  This is used for testing
257391c58e23Sdrh ** purposes only - to make sure the transfer optimization really
257460ec914cSpeter.d.reid ** is happening when it is supposed to.
257591c58e23Sdrh */
257691c58e23Sdrh int sqlite3_xferopt_count;
257791c58e23Sdrh #endif /* SQLITE_TEST */
257891c58e23Sdrh 
257991c58e23Sdrh 
25809d9cf229Sdrh #ifndef SQLITE_OMIT_XFER_OPT
25819d9cf229Sdrh /*
25829d9cf229Sdrh ** Check to see if index pSrc is compatible as a source of data
25839d9cf229Sdrh ** for index pDest in an insert transfer optimization.  The rules
25849d9cf229Sdrh ** for a compatible index:
25859d9cf229Sdrh **
25869d9cf229Sdrh **    *   The index is over the same set of columns
25879d9cf229Sdrh **    *   The same DESC and ASC markings occurs on all columns
25889d9cf229Sdrh **    *   The same onError processing (OE_Abort, OE_Ignore, etc)
25899d9cf229Sdrh **    *   The same collating sequence on each column
2590b2b9d3d7Sdrh **    *   The index has the exact same WHERE clause
25919d9cf229Sdrh */
25929d9cf229Sdrh static int xferCompatibleIndex(Index *pDest, Index *pSrc){
25939d9cf229Sdrh   int i;
25949d9cf229Sdrh   assert( pDest && pSrc );
25959d9cf229Sdrh   assert( pDest->pTable!=pSrc->pTable );
25961e7c00e6Sdrh   if( pDest->nKeyCol!=pSrc->nKeyCol || pDest->nColumn!=pSrc->nColumn ){
25979d9cf229Sdrh     return 0;   /* Different number of columns */
25989d9cf229Sdrh   }
25999d9cf229Sdrh   if( pDest->onError!=pSrc->onError ){
26009d9cf229Sdrh     return 0;   /* Different conflict resolution strategies */
26019d9cf229Sdrh   }
2602bbbdc83bSdrh   for(i=0; i<pSrc->nKeyCol; i++){
26039d9cf229Sdrh     if( pSrc->aiColumn[i]!=pDest->aiColumn[i] ){
26049d9cf229Sdrh       return 0;   /* Different columns indexed */
26059d9cf229Sdrh     }
26064b92f98cSdrh     if( pSrc->aiColumn[i]==XN_EXPR ){
26071f9ca2c8Sdrh       assert( pSrc->aColExpr!=0 && pDest->aColExpr!=0 );
26085aa550cfSdan       if( sqlite3ExprCompare(0, pSrc->aColExpr->a[i].pExpr,
26091f9ca2c8Sdrh                              pDest->aColExpr->a[i].pExpr, -1)!=0 ){
26101f9ca2c8Sdrh         return 0;   /* Different expressions in the index */
26111f9ca2c8Sdrh       }
26121f9ca2c8Sdrh     }
26139d9cf229Sdrh     if( pSrc->aSortOrder[i]!=pDest->aSortOrder[i] ){
26149d9cf229Sdrh       return 0;   /* Different sort orders */
26159d9cf229Sdrh     }
26160472af91Sdrh     if( sqlite3_stricmp(pSrc->azColl[i],pDest->azColl[i])!=0 ){
261760a713c6Sdrh       return 0;   /* Different collating sequences */
26189d9cf229Sdrh     }
26199d9cf229Sdrh   }
26205aa550cfSdan   if( sqlite3ExprCompare(0, pSrc->pPartIdxWhere, pDest->pPartIdxWhere, -1) ){
2621b2b9d3d7Sdrh     return 0;     /* Different WHERE clauses */
2622b2b9d3d7Sdrh   }
26239d9cf229Sdrh 
26249d9cf229Sdrh   /* If no test above fails then the indices must be compatible */
26259d9cf229Sdrh   return 1;
26269d9cf229Sdrh }
26279d9cf229Sdrh 
26289d9cf229Sdrh /*
26299d9cf229Sdrh ** Attempt the transfer optimization on INSERTs of the form
26309d9cf229Sdrh **
26319d9cf229Sdrh **     INSERT INTO tab1 SELECT * FROM tab2;
26329d9cf229Sdrh **
2633ccdf1baeSdrh ** The xfer optimization transfers raw records from tab2 over to tab1.
263460ec914cSpeter.d.reid ** Columns are not decoded and reassembled, which greatly improves
2635ccdf1baeSdrh ** performance.  Raw index records are transferred in the same way.
26369d9cf229Sdrh **
2637ccdf1baeSdrh ** The xfer optimization is only attempted if tab1 and tab2 are compatible.
2638ccdf1baeSdrh ** There are lots of rules for determining compatibility - see comments
2639ccdf1baeSdrh ** embedded in the code for details.
26409d9cf229Sdrh **
2641ccdf1baeSdrh ** This routine returns TRUE if the optimization is guaranteed to be used.
2642ccdf1baeSdrh ** Sometimes the xfer optimization will only work if the destination table
2643ccdf1baeSdrh ** is empty - a factor that can only be determined at run-time.  In that
2644ccdf1baeSdrh ** case, this routine generates code for the xfer optimization but also
2645ccdf1baeSdrh ** does a test to see if the destination table is empty and jumps over the
2646ccdf1baeSdrh ** xfer optimization code if the test fails.  In that case, this routine
2647ccdf1baeSdrh ** returns FALSE so that the caller will know to go ahead and generate
2648ccdf1baeSdrh ** an unoptimized transfer.  This routine also returns FALSE if there
2649ccdf1baeSdrh ** is no chance that the xfer optimization can be applied.
26509d9cf229Sdrh **
2651ccdf1baeSdrh ** This optimization is particularly useful at making VACUUM run faster.
26529d9cf229Sdrh */
26539d9cf229Sdrh static int xferOptimization(
26549d9cf229Sdrh   Parse *pParse,        /* Parser context */
26559d9cf229Sdrh   Table *pDest,         /* The table we are inserting into */
26569d9cf229Sdrh   Select *pSelect,      /* A SELECT statement to use as the data source */
26579d9cf229Sdrh   int onError,          /* How to handle constraint errors */
26589d9cf229Sdrh   int iDbDest           /* The database of pDest */
26599d9cf229Sdrh ){
2660e34162b1Sdan   sqlite3 *db = pParse->db;
26619d9cf229Sdrh   ExprList *pEList;                /* The result set of the SELECT */
26629d9cf229Sdrh   Table *pSrc;                     /* The table in the FROM clause of SELECT */
26639d9cf229Sdrh   Index *pSrcIdx, *pDestIdx;       /* Source and destination indices */
26649d9cf229Sdrh   struct SrcList_item *pItem;      /* An element of pSelect->pSrc */
26659d9cf229Sdrh   int i;                           /* Loop counter */
26669d9cf229Sdrh   int iDbSrc;                      /* The database of pSrc */
26679d9cf229Sdrh   int iSrc, iDest;                 /* Cursors from source and destination */
26689d9cf229Sdrh   int addr1, addr2;                /* Loop addresses */
2669da475b8dSdrh   int emptyDestTest = 0;           /* Address of test for empty pDest */
2670da475b8dSdrh   int emptySrcTest = 0;            /* Address of test for empty pSrc */
26719d9cf229Sdrh   Vdbe *v;                         /* The VDBE we are building */
26726a288a33Sdrh   int regAutoinc;                  /* Memory register used by AUTOINC */
2673f33c9fadSdrh   int destHasUniqueIdx = 0;        /* True if pDest has a UNIQUE index */
2674b7654111Sdrh   int regData, regRowid;           /* Registers holding data and rowid */
26759d9cf229Sdrh 
26769d9cf229Sdrh   if( pSelect==0 ){
26779d9cf229Sdrh     return 0;   /* Must be of the form  INSERT INTO ... SELECT ... */
26789d9cf229Sdrh   }
2679ebbf08a0Sdan   if( pParse->pWith || pSelect->pWith ){
2680ebbf08a0Sdan     /* Do not attempt to process this query if there are an WITH clauses
2681ebbf08a0Sdan     ** attached to it. Proceeding may generate a false "no such table: xxx"
2682ebbf08a0Sdan     ** error if pSelect reads from a CTE named "xxx".  */
2683ebbf08a0Sdan     return 0;
2684ebbf08a0Sdan   }
26852f886d1dSdanielk1977   if( sqlite3TriggerList(pParse, pDest) ){
26869d9cf229Sdrh     return 0;   /* tab1 must not have triggers */
26879d9cf229Sdrh   }
26889d9cf229Sdrh #ifndef SQLITE_OMIT_VIRTUALTABLE
268944266ec6Sdrh   if( IsVirtual(pDest) ){
26909d9cf229Sdrh     return 0;   /* tab1 must not be a virtual table */
26919d9cf229Sdrh   }
26929d9cf229Sdrh #endif
26939d9cf229Sdrh   if( onError==OE_Default ){
2694e7224a01Sdrh     if( pDest->iPKey>=0 ) onError = pDest->keyConf;
2695e7224a01Sdrh     if( onError==OE_Default ) onError = OE_Abort;
26969d9cf229Sdrh   }
26975ce240a6Sdanielk1977   assert(pSelect->pSrc);   /* allocated even if there is no FROM clause */
26989d9cf229Sdrh   if( pSelect->pSrc->nSrc!=1 ){
26999d9cf229Sdrh     return 0;   /* FROM clause must have exactly one term */
27009d9cf229Sdrh   }
27019d9cf229Sdrh   if( pSelect->pSrc->a[0].pSelect ){
27029d9cf229Sdrh     return 0;   /* FROM clause cannot contain a subquery */
27039d9cf229Sdrh   }
27049d9cf229Sdrh   if( pSelect->pWhere ){
27059d9cf229Sdrh     return 0;   /* SELECT may not have a WHERE clause */
27069d9cf229Sdrh   }
27079d9cf229Sdrh   if( pSelect->pOrderBy ){
27089d9cf229Sdrh     return 0;   /* SELECT may not have an ORDER BY clause */
27099d9cf229Sdrh   }
27108103b7d2Sdrh   /* Do not need to test for a HAVING clause.  If HAVING is present but
27118103b7d2Sdrh   ** there is no ORDER BY, we will get an error. */
27129d9cf229Sdrh   if( pSelect->pGroupBy ){
27139d9cf229Sdrh     return 0;   /* SELECT may not have a GROUP BY clause */
27149d9cf229Sdrh   }
27159d9cf229Sdrh   if( pSelect->pLimit ){
27169d9cf229Sdrh     return 0;   /* SELECT may not have a LIMIT clause */
27179d9cf229Sdrh   }
27189d9cf229Sdrh   if( pSelect->pPrior ){
27199d9cf229Sdrh     return 0;   /* SELECT may not be a compound query */
27209d9cf229Sdrh   }
27217d10d5a6Sdrh   if( pSelect->selFlags & SF_Distinct ){
27229d9cf229Sdrh     return 0;   /* SELECT may not be DISTINCT */
27239d9cf229Sdrh   }
27249d9cf229Sdrh   pEList = pSelect->pEList;
27259d9cf229Sdrh   assert( pEList!=0 );
27269d9cf229Sdrh   if( pEList->nExpr!=1 ){
27279d9cf229Sdrh     return 0;   /* The result set must have exactly one column */
27289d9cf229Sdrh   }
27299d9cf229Sdrh   assert( pEList->a[0].pExpr );
27301a1d3cd2Sdrh   if( pEList->a[0].pExpr->op!=TK_ASTERISK ){
27319d9cf229Sdrh     return 0;   /* The result set must be the special operator "*" */
27329d9cf229Sdrh   }
27339d9cf229Sdrh 
27349d9cf229Sdrh   /* At this point we have established that the statement is of the
27359d9cf229Sdrh   ** correct syntactic form to participate in this optimization.  Now
27369d9cf229Sdrh   ** we have to check the semantics.
27379d9cf229Sdrh   */
27389d9cf229Sdrh   pItem = pSelect->pSrc->a;
273941fb5cd1Sdan   pSrc = sqlite3LocateTableItem(pParse, 0, pItem);
27409d9cf229Sdrh   if( pSrc==0 ){
27419d9cf229Sdrh     return 0;   /* FROM clause does not contain a real table */
27429d9cf229Sdrh   }
274321908b21Sdrh   if( pSrc->tnum==pDest->tnum && pSrc->pSchema==pDest->pSchema ){
27441e32bed3Sdrh     testcase( pSrc!=pDest ); /* Possible due to bad sqlite_schema.rootpage */
27459d9cf229Sdrh     return 0;   /* tab1 and tab2 may not be the same table */
27469d9cf229Sdrh   }
274755548273Sdrh   if( HasRowid(pDest)!=HasRowid(pSrc) ){
274855548273Sdrh     return 0;   /* source and destination must both be WITHOUT ROWID or not */
274955548273Sdrh   }
27509d9cf229Sdrh #ifndef SQLITE_OMIT_VIRTUALTABLE
275144266ec6Sdrh   if( IsVirtual(pSrc) ){
27529d9cf229Sdrh     return 0;   /* tab2 must not be a virtual table */
27539d9cf229Sdrh   }
27549d9cf229Sdrh #endif
27559d9cf229Sdrh   if( pSrc->pSelect ){
27569d9cf229Sdrh     return 0;   /* tab2 may not be a view */
27579d9cf229Sdrh   }
27589d9cf229Sdrh   if( pDest->nCol!=pSrc->nCol ){
27599d9cf229Sdrh     return 0;   /* Number of columns must be the same in tab1 and tab2 */
27609d9cf229Sdrh   }
27619d9cf229Sdrh   if( pDest->iPKey!=pSrc->iPKey ){
27629d9cf229Sdrh     return 0;   /* Both tables must have the same INTEGER PRIMARY KEY */
27639d9cf229Sdrh   }
27649d9cf229Sdrh   for(i=0; i<pDest->nCol; i++){
27659940e2aaSdan     Column *pDestCol = &pDest->aCol[i];
27669940e2aaSdan     Column *pSrcCol = &pSrc->aCol[i];
2767ba68f8f3Sdan #ifdef SQLITE_ENABLE_HIDDEN_COLUMNS
27688257aa8dSdrh     if( (db->mDbFlags & DBFLAG_Vacuum)==0
2769aaea3143Sdan      && (pDestCol->colFlags | pSrcCol->colFlags) & COLFLAG_HIDDEN
2770aaea3143Sdan     ){
2771ba68f8f3Sdan       return 0;    /* Neither table may have __hidden__ columns */
2772ba68f8f3Sdan     }
2773ba68f8f3Sdan #endif
27746ab61d70Sdrh #ifndef SQLITE_OMIT_GENERATED_COLUMNS
27756ab61d70Sdrh     /* Even if tables t1 and t2 have identical schemas, if they contain
27766ab61d70Sdrh     ** generated columns, then this statement is semantically incorrect:
27776ab61d70Sdrh     **
27786ab61d70Sdrh     **     INSERT INTO t2 SELECT * FROM t1;
27796ab61d70Sdrh     **
27806ab61d70Sdrh     ** The reason is that generated column values are returned by the
27816ab61d70Sdrh     ** the SELECT statement on the right but the INSERT statement on the
27826ab61d70Sdrh     ** left wants them to be omitted.
27836ab61d70Sdrh     **
27846ab61d70Sdrh     ** Nevertheless, this is a useful notational shorthand to tell SQLite
27856ab61d70Sdrh     ** to do a bulk transfer all of the content from t1 over to t2.
27866ab61d70Sdrh     **
27876ab61d70Sdrh     ** We could, in theory, disable this (except for internal use by the
27886ab61d70Sdrh     ** VACUUM command where it is actually needed).  But why do that?  It
27896ab61d70Sdrh     ** seems harmless enough, and provides a useful service.
27906ab61d70Sdrh     */
2791ae3977a8Sdrh     if( (pDestCol->colFlags & COLFLAG_GENERATED) !=
2792ae3977a8Sdrh         (pSrcCol->colFlags & COLFLAG_GENERATED) ){
27936ab61d70Sdrh       return 0;    /* Both columns have the same generated-column type */
2794ae3977a8Sdrh     }
27956ab61d70Sdrh     /* But the transfer is only allowed if both the source and destination
27966ab61d70Sdrh     ** tables have the exact same expressions for generated columns.
27976ab61d70Sdrh     ** This requirement could be relaxed for VIRTUAL columns, I suppose.
27986ab61d70Sdrh     */
27996ab61d70Sdrh     if( (pDestCol->colFlags & COLFLAG_GENERATED)!=0 ){
28006ab61d70Sdrh       if( sqlite3ExprCompare(0, pSrcCol->pDflt, pDestCol->pDflt, -1)!=0 ){
28016ab61d70Sdrh         testcase( pDestCol->colFlags & COLFLAG_VIRTUAL );
28026ab61d70Sdrh         testcase( pDestCol->colFlags & COLFLAG_STORED );
28036ab61d70Sdrh         return 0;  /* Different generator expressions */
28046ab61d70Sdrh       }
28056ab61d70Sdrh     }
28066ab61d70Sdrh #endif
28079940e2aaSdan     if( pDestCol->affinity!=pSrcCol->affinity ){
28089d9cf229Sdrh       return 0;    /* Affinity must be the same on all columns */
28099d9cf229Sdrh     }
28100472af91Sdrh     if( sqlite3_stricmp(pDestCol->zColl, pSrcCol->zColl)!=0 ){
28119d9cf229Sdrh       return 0;    /* Collating sequence must be the same on all columns */
28129d9cf229Sdrh     }
28139940e2aaSdan     if( pDestCol->notNull && !pSrcCol->notNull ){
28149d9cf229Sdrh       return 0;    /* tab2 must be NOT NULL if tab1 is */
28159d9cf229Sdrh     }
2816453e0261Sdrh     /* Default values for second and subsequent columns need to match. */
2817ae3977a8Sdrh     if( (pDestCol->colFlags & COLFLAG_GENERATED)==0 && i>0 ){
281894fa9c41Sdrh       assert( pDestCol->pDflt==0 || pDestCol->pDflt->op==TK_SPAN );
281994fa9c41Sdrh       assert( pSrcCol->pDflt==0 || pSrcCol->pDflt->op==TK_SPAN );
282094fa9c41Sdrh       if( (pDestCol->pDflt==0)!=(pSrcCol->pDflt==0)
282194fa9c41Sdrh        || (pDestCol->pDflt && strcmp(pDestCol->pDflt->u.zToken,
282294fa9c41Sdrh                                        pSrcCol->pDflt->u.zToken)!=0)
28239940e2aaSdan       ){
28249940e2aaSdan         return 0;    /* Default values must be the same for all columns */
28259940e2aaSdan       }
28269d9cf229Sdrh     }
282794fa9c41Sdrh   }
28289d9cf229Sdrh   for(pDestIdx=pDest->pIndex; pDestIdx; pDestIdx=pDestIdx->pNext){
28295f1d1d9cSdrh     if( IsUniqueIndex(pDestIdx) ){
2830f33c9fadSdrh       destHasUniqueIdx = 1;
2831f33c9fadSdrh     }
28329d9cf229Sdrh     for(pSrcIdx=pSrc->pIndex; pSrcIdx; pSrcIdx=pSrcIdx->pNext){
28339d9cf229Sdrh       if( xferCompatibleIndex(pDestIdx, pSrcIdx) ) break;
28349d9cf229Sdrh     }
28359d9cf229Sdrh     if( pSrcIdx==0 ){
28369d9cf229Sdrh       return 0;    /* pDestIdx has no corresponding index in pSrc */
28379d9cf229Sdrh     }
2838e3bd232eSdrh     if( pSrcIdx->tnum==pDestIdx->tnum && pSrc->pSchema==pDest->pSchema
2839e3bd232eSdrh          && sqlite3FaultSim(411)==SQLITE_OK ){
2840e3bd232eSdrh       /* The sqlite3FaultSim() call allows this corruption test to be
2841e3bd232eSdrh       ** bypassed during testing, in order to exercise other corruption tests
2842e3bd232eSdrh       ** further downstream. */
284386223e8dSdrh       return 0;   /* Corrupt schema - two indexes on the same btree */
284486223e8dSdrh     }
28459d9cf229Sdrh   }
28467fc2f41bSdrh #ifndef SQLITE_OMIT_CHECK
2847619a1305Sdrh   if( pDest->pCheck && sqlite3ExprListCompare(pSrc->pCheck,pDest->pCheck,-1) ){
28488103b7d2Sdrh     return 0;   /* Tables have different CHECK constraints.  Ticket #2252 */
28498103b7d2Sdrh   }
28507fc2f41bSdrh #endif
2851713de341Sdrh #ifndef SQLITE_OMIT_FOREIGN_KEY
2852713de341Sdrh   /* Disallow the transfer optimization if the destination table constains
2853713de341Sdrh   ** any foreign key constraints.  This is more restrictive than necessary.
2854713de341Sdrh   ** But the main beneficiary of the transfer optimization is the VACUUM
2855713de341Sdrh   ** command, and the VACUUM command disables foreign key constraints.  So
2856713de341Sdrh   ** the extra complication to make this rule less restrictive is probably
2857713de341Sdrh   ** not worth the effort.  Ticket [6284df89debdfa61db8073e062908af0c9b6118e]
2858713de341Sdrh   */
2859e34162b1Sdan   if( (db->flags & SQLITE_ForeignKeys)!=0 && pDest->pFKey!=0 ){
2860713de341Sdrh     return 0;
2861713de341Sdrh   }
2862713de341Sdrh #endif
2863e34162b1Sdan   if( (db->flags & SQLITE_CountRows)!=0 ){
2864ccdf1baeSdrh     return 0;  /* xfer opt does not play well with PRAGMA count_changes */
28651696124dSdan   }
28669d9cf229Sdrh 
2867ccdf1baeSdrh   /* If we get this far, it means that the xfer optimization is at
2868ccdf1baeSdrh   ** least a possibility, though it might only work if the destination
2869ccdf1baeSdrh   ** table (tab1) is initially empty.
28709d9cf229Sdrh   */
2871dd73521bSdrh #ifdef SQLITE_TEST
2872dd73521bSdrh   sqlite3_xferopt_count++;
2873dd73521bSdrh #endif
2874e34162b1Sdan   iDbSrc = sqlite3SchemaToIndex(db, pSrc->pSchema);
28759d9cf229Sdrh   v = sqlite3GetVdbe(pParse);
2876f53e9b5aSdrh   sqlite3CodeVerifySchema(pParse, iDbSrc);
28779d9cf229Sdrh   iSrc = pParse->nTab++;
28789d9cf229Sdrh   iDest = pParse->nTab++;
28796a288a33Sdrh   regAutoinc = autoIncBegin(pParse, iDbDest, pDest);
288055548273Sdrh   regData = sqlite3GetTempReg(pParse);
28817aae7358Sdan   sqlite3VdbeAddOp2(v, OP_Null, 0, regData);
288255548273Sdrh   regRowid = sqlite3GetTempReg(pParse);
28839d9cf229Sdrh   sqlite3OpenTable(pParse, iDest, iDbDest, pDest, OP_OpenWrite);
2884427ebba1Sdan   assert( HasRowid(pDest) || destHasUniqueIdx );
28858257aa8dSdrh   if( (db->mDbFlags & DBFLAG_Vacuum)==0 && (
2886e34162b1Sdan       (pDest->iPKey<0 && pDest->pIndex!=0)          /* (1) */
2887ccdf1baeSdrh    || destHasUniqueIdx                              /* (2) */
2888ccdf1baeSdrh    || (onError!=OE_Abort && onError!=OE_Rollback)   /* (3) */
2889e34162b1Sdan   )){
2890ccdf1baeSdrh     /* In some circumstances, we are able to run the xfer optimization
2891e34162b1Sdan     ** only if the destination table is initially empty. Unless the
28928257aa8dSdrh     ** DBFLAG_Vacuum flag is set, this block generates code to make
28938257aa8dSdrh     ** that determination. If DBFLAG_Vacuum is set, then the destination
2894e34162b1Sdan     ** table is always empty.
2895e34162b1Sdan     **
2896e34162b1Sdan     ** Conditions under which the destination must be empty:
2897f33c9fadSdrh     **
2898ccdf1baeSdrh     ** (1) There is no INTEGER PRIMARY KEY but there are indices.
2899ccdf1baeSdrh     **     (If the destination is not initially empty, the rowid fields
2900ccdf1baeSdrh     **     of index entries might need to change.)
2901ccdf1baeSdrh     **
2902ccdf1baeSdrh     ** (2) The destination has a unique index.  (The xfer optimization
2903ccdf1baeSdrh     **     is unable to test uniqueness.)
2904ccdf1baeSdrh     **
2905ccdf1baeSdrh     ** (3) onError is something other than OE_Abort and OE_Rollback.
29069d9cf229Sdrh     */
2907688852abSdrh     addr1 = sqlite3VdbeAddOp2(v, OP_Rewind, iDest, 0); VdbeCoverage(v);
29082991ba05Sdrh     emptyDestTest = sqlite3VdbeAddOp0(v, OP_Goto);
29099d9cf229Sdrh     sqlite3VdbeJumpHere(v, addr1);
29109d9cf229Sdrh   }
2911427ebba1Sdan   if( HasRowid(pSrc) ){
2912c9b9deaeSdrh     u8 insFlags;
29139d9cf229Sdrh     sqlite3OpenTable(pParse, iSrc, iDbSrc, pSrc, OP_OpenRead);
2914688852abSdrh     emptySrcTest = sqlite3VdbeAddOp2(v, OP_Rewind, iSrc, 0); VdbeCoverage(v);
291542242dedSdrh     if( pDest->iPKey>=0 ){
2916b7654111Sdrh       addr1 = sqlite3VdbeAddOp2(v, OP_Rowid, iSrc, regRowid);
2917036e0675Sdan       if( (db->mDbFlags & DBFLAG_Vacuum)==0 ){
29184031bafaSdrh         sqlite3VdbeVerifyAbortable(v, onError);
2919b7654111Sdrh         addr2 = sqlite3VdbeAddOp3(v, OP_NotExists, iDest, 0, regRowid);
2920688852abSdrh         VdbeCoverage(v);
2921f9c8ce3cSdrh         sqlite3RowidConstraint(pParse, onError, pDest);
29229d9cf229Sdrh         sqlite3VdbeJumpHere(v, addr2);
2923036e0675Sdan       }
2924b7654111Sdrh       autoIncStep(pParse, regAutoinc, regRowid);
29254e61e883Sdrh     }else if( pDest->pIndex==0 && !(db->mDbFlags & DBFLAG_VacuumInto) ){
2926b7654111Sdrh       addr1 = sqlite3VdbeAddOp2(v, OP_NewRowid, iDest, regRowid);
292795bad4c7Sdrh     }else{
2928b7654111Sdrh       addr1 = sqlite3VdbeAddOp2(v, OP_Rowid, iSrc, regRowid);
29297d10d5a6Sdrh       assert( (pDest->tabFlags & TF_Autoincrement)==0 );
293095bad4c7Sdrh     }
29317aae7358Sdan 
29328257aa8dSdrh     if( db->mDbFlags & DBFLAG_Vacuum ){
293386b40dfdSdrh       sqlite3VdbeAddOp1(v, OP_SeekEnd, iDest);
29347aae7358Sdan       insFlags = OPFLAG_APPEND|OPFLAG_USESEEKRESULT|OPFLAG_PREFORMAT;
2935c9b9deaeSdrh     }else{
29367aae7358Sdan       insFlags = OPFLAG_NCHANGE|OPFLAG_LASTROWID|OPFLAG_APPEND|OPFLAG_PREFORMAT;
29377aae7358Sdan     }
29387aae7358Sdan #ifdef SQLITE_ENABLE_PREUPDATE_HOOK
29397aae7358Sdan     if( db->xPreUpdateCallback ){
294051f37b2bSdrh       sqlite3VdbeAddOp3(v, OP_RowData, iSrc, regData, 1);
29417aae7358Sdan       insFlags &= ~OPFLAG_PREFORMAT;
29427aae7358Sdan     }else
29437aae7358Sdan #endif
29447aae7358Sdan     {
29457aae7358Sdan       sqlite3VdbeAddOp3(v, OP_RowCell, iDest, iSrc, regRowid);
29467aae7358Sdan     }
29479b34abeeSdrh     sqlite3VdbeAddOp4(v, OP_Insert, iDest, regData, regRowid,
294820f272c9Sdrh         (char*)pDest, P4_TABLE);
2949c9b9deaeSdrh     sqlite3VdbeChangeP5(v, insFlags);
29507aae7358Sdan 
2951688852abSdrh     sqlite3VdbeAddOp2(v, OP_Next, iSrc, addr1); VdbeCoverage(v);
295255548273Sdrh     sqlite3VdbeAddOp2(v, OP_Close, iSrc, 0);
295355548273Sdrh     sqlite3VdbeAddOp2(v, OP_Close, iDest, 0);
2954da475b8dSdrh   }else{
2955da475b8dSdrh     sqlite3TableLock(pParse, iDbDest, pDest->tnum, 1, pDest->zName);
2956da475b8dSdrh     sqlite3TableLock(pParse, iDbSrc, pSrc->tnum, 0, pSrc->zName);
295755548273Sdrh   }
29589d9cf229Sdrh   for(pDestIdx=pDest->pIndex; pDestIdx; pDestIdx=pDestIdx->pNext){
295941b9ca25Sdrh     u8 idxInsFlags = 0;
29601b7ecbb4Sdrh     for(pSrcIdx=pSrc->pIndex; ALWAYS(pSrcIdx); pSrcIdx=pSrcIdx->pNext){
29619d9cf229Sdrh       if( xferCompatibleIndex(pDestIdx, pSrcIdx) ) break;
29629d9cf229Sdrh     }
29639d9cf229Sdrh     assert( pSrcIdx );
29642ec2fb22Sdrh     sqlite3VdbeAddOp3(v, OP_OpenRead, iSrc, pSrcIdx->tnum, iDbSrc);
29652ec2fb22Sdrh     sqlite3VdbeSetP4KeyInfo(pParse, pSrcIdx);
2966d4e70ebdSdrh     VdbeComment((v, "%s", pSrcIdx->zName));
29672ec2fb22Sdrh     sqlite3VdbeAddOp3(v, OP_OpenWrite, iDest, pDestIdx->tnum, iDbDest);
29682ec2fb22Sdrh     sqlite3VdbeSetP4KeyInfo(pParse, pDestIdx);
296959885728Sdan     sqlite3VdbeChangeP5(v, OPFLAG_BULKCSR);
2970207872a4Sdanielk1977     VdbeComment((v, "%s", pDestIdx->zName));
2971688852abSdrh     addr1 = sqlite3VdbeAddOp2(v, OP_Rewind, iSrc, 0); VdbeCoverage(v);
29728257aa8dSdrh     if( db->mDbFlags & DBFLAG_Vacuum ){
2973e34162b1Sdan       /* This INSERT command is part of a VACUUM operation, which guarantees
2974e34162b1Sdan       ** that the destination table is empty. If all indexed columns use
2975e34162b1Sdan       ** collation sequence BINARY, then it can also be assumed that the
2976e34162b1Sdan       ** index will be populated by inserting keys in strictly sorted
2977e34162b1Sdan       ** order. In this case, instead of seeking within the b-tree as part
297886b40dfdSdrh       ** of every OP_IdxInsert opcode, an OP_SeekEnd is added before the
2979e34162b1Sdan       ** OP_IdxInsert to seek to the point within the b-tree where each key
2980e34162b1Sdan       ** should be inserted. This is faster.
2981e34162b1Sdan       **
2982e34162b1Sdan       ** If any of the indexed columns use a collation sequence other than
2983e34162b1Sdan       ** BINARY, this optimization is disabled. This is because the user
2984e34162b1Sdan       ** might change the definition of a collation sequence and then run
2985e34162b1Sdan       ** a VACUUM command. In that case keys may not be written in strictly
2986e34162b1Sdan       ** sorted order.  */
2987e34162b1Sdan       for(i=0; i<pSrcIdx->nColumn; i++){
2988f19aa5faSdrh         const char *zColl = pSrcIdx->azColl[i];
2989f19aa5faSdrh         if( sqlite3_stricmp(sqlite3StrBINARY, zColl) ) break;
2990e34162b1Sdan       }
2991e34162b1Sdan       if( i==pSrcIdx->nColumn ){
29927aae7358Sdan         idxInsFlags = OPFLAG_USESEEKRESULT|OPFLAG_PREFORMAT;
299386b40dfdSdrh         sqlite3VdbeAddOp1(v, OP_SeekEnd, iDest);
2994*a06eafc8Sdrh         sqlite3VdbeAddOp2(v, OP_RowCell, iDest, iSrc);
2995e34162b1Sdan       }
2996c84ad318Sdrh     }else if( !HasRowid(pSrc) && pDestIdx->idxType==SQLITE_IDXTYPE_PRIMARYKEY ){
299741b9ca25Sdrh       idxInsFlags |= OPFLAG_NCHANGE;
299841b9ca25Sdrh     }
29997aae7358Sdan     if( idxInsFlags!=(OPFLAG_USESEEKRESULT|OPFLAG_PREFORMAT) ){
300051f37b2bSdrh       sqlite3VdbeAddOp3(v, OP_RowData, iSrc, regData, 1);
30017aae7358Sdan     }
30029b4eaebcSdrh     sqlite3VdbeAddOp2(v, OP_IdxInsert, iDest, regData);
30039b4eaebcSdrh     sqlite3VdbeChangeP5(v, idxInsFlags|OPFLAG_APPEND);
3004688852abSdrh     sqlite3VdbeAddOp2(v, OP_Next, iSrc, addr1+1); VdbeCoverage(v);
30059d9cf229Sdrh     sqlite3VdbeJumpHere(v, addr1);
300655548273Sdrh     sqlite3VdbeAddOp2(v, OP_Close, iSrc, 0);
300755548273Sdrh     sqlite3VdbeAddOp2(v, OP_Close, iDest, 0);
30089d9cf229Sdrh   }
3009aceb31b1Sdrh   if( emptySrcTest ) sqlite3VdbeJumpHere(v, emptySrcTest);
3010b7654111Sdrh   sqlite3ReleaseTempReg(pParse, regRowid);
3011b7654111Sdrh   sqlite3ReleaseTempReg(pParse, regData);
30129d9cf229Sdrh   if( emptyDestTest ){
30131dd518cfSdrh     sqlite3AutoincrementEnd(pParse);
301466a5167bSdrh     sqlite3VdbeAddOp2(v, OP_Halt, SQLITE_OK, 0);
30159d9cf229Sdrh     sqlite3VdbeJumpHere(v, emptyDestTest);
301666a5167bSdrh     sqlite3VdbeAddOp2(v, OP_Close, iDest, 0);
30179d9cf229Sdrh     return 0;
30189d9cf229Sdrh   }else{
30199d9cf229Sdrh     return 1;
30209d9cf229Sdrh   }
30219d9cf229Sdrh }
30229d9cf229Sdrh #endif /* SQLITE_OMIT_XFER_OPT */
3023