xref: /sqlite-3.40.0/src/insert.c (revision dedbc508)
1cce7d176Sdrh /*
2b19a2bc6Sdrh ** 2001 September 15
3cce7d176Sdrh **
4b19a2bc6Sdrh ** The author disclaims copyright to this source code.  In place of
5b19a2bc6Sdrh ** a legal notice, here is a blessing:
6cce7d176Sdrh **
7b19a2bc6Sdrh **    May you do good and not evil.
8b19a2bc6Sdrh **    May you find forgiveness for yourself and forgive others.
9b19a2bc6Sdrh **    May you share freely, never taking more than you give.
10cce7d176Sdrh **
11cce7d176Sdrh *************************************************************************
12cce7d176Sdrh ** This file contains C code routines that are called by the parser
13b19a2bc6Sdrh ** to handle INSERT statements in SQLite.
14cce7d176Sdrh */
15cce7d176Sdrh #include "sqliteInt.h"
16cce7d176Sdrh 
17cce7d176Sdrh /*
1826198bb4Sdrh ** Generate code that will
19dd9930efSdrh **
2026198bb4Sdrh **   (1) acquire a lock for table pTab then
2126198bb4Sdrh **   (2) open pTab as cursor iCur.
2226198bb4Sdrh **
2326198bb4Sdrh ** If pTab is a WITHOUT ROWID table, then it is the PRIMARY KEY index
2426198bb4Sdrh ** for that table that is actually opened.
25bbb5e4e0Sdrh */
26bbb5e4e0Sdrh void sqlite3OpenTable(
272ec2fb22Sdrh   Parse *pParse,  /* Generate code into this VDBE */
28bbb5e4e0Sdrh   int iCur,       /* The cursor number of the table */
29bbb5e4e0Sdrh   int iDb,        /* The database index in sqlite3.aDb[] */
30bbb5e4e0Sdrh   Table *pTab,    /* The table to be opened */
31bbb5e4e0Sdrh   int opcode      /* OP_OpenRead or OP_OpenWrite */
32bbb5e4e0Sdrh ){
33bbb5e4e0Sdrh   Vdbe *v;
345f53aac2Sdrh   assert( !IsVirtual(pTab) );
352ec2fb22Sdrh   v = sqlite3GetVdbe(pParse);
36bbb5e4e0Sdrh   assert( opcode==OP_OpenWrite || opcode==OP_OpenRead );
372ec2fb22Sdrh   sqlite3TableLock(pParse, iDb, pTab->tnum,
382ec2fb22Sdrh                    (opcode==OP_OpenWrite)?1:0, pTab->zName);
39ec95c441Sdrh   if( HasRowid(pTab) ){
40261c02d9Sdrh     sqlite3VdbeAddOp4Int(v, opcode, iCur, pTab->tnum, iDb, pTab->nCol);
41bbb5e4e0Sdrh     VdbeComment((v, "%s", pTab->zName));
4226198bb4Sdrh   }else{
43dd9930efSdrh     Index *pPk = sqlite3PrimaryKeyIndex(pTab);
44dd9930efSdrh     assert( pPk!=0 );
45afe028a8Sdrh     assert( pPk->tnum==pTab->tnum );
462ec2fb22Sdrh     sqlite3VdbeAddOp3(v, opcode, iCur, pPk->tnum, iDb);
472ec2fb22Sdrh     sqlite3VdbeSetP4KeyInfo(pParse, pPk);
48bbb5e4e0Sdrh     VdbeComment((v, "%s", pTab->zName));
49bbb5e4e0Sdrh   }
50bbb5e4e0Sdrh }
51bbb5e4e0Sdrh 
52bbb5e4e0Sdrh /*
5369f8bb9cSdan ** Return a pointer to the column affinity string associated with index
5469f8bb9cSdan ** pIdx. A column affinity string has one character for each column in
5569f8bb9cSdan ** the table, according to the affinity of the column:
563d1bfeaaSdanielk1977 **
573d1bfeaaSdanielk1977 **  Character      Column affinity
583d1bfeaaSdanielk1977 **  ------------------------------
5905883a34Sdrh **  'A'            BLOB
604583c37cSdrh **  'B'            TEXT
614583c37cSdrh **  'C'            NUMERIC
624583c37cSdrh **  'D'            INTEGER
634583c37cSdrh **  'F'            REAL
642d401ab8Sdrh **
654583c37cSdrh ** An extra 'D' is appended to the end of the string to cover the
662d401ab8Sdrh ** rowid that appears as the last column in every index.
6769f8bb9cSdan **
6869f8bb9cSdan ** Memory for the buffer containing the column index affinity string
6969f8bb9cSdan ** is managed along with the rest of the Index structure. It will be
7069f8bb9cSdan ** released when sqlite3DeleteIndex() is called.
713d1bfeaaSdanielk1977 */
72e9107698Sdrh const char *sqlite3IndexAffinityStr(sqlite3 *db, Index *pIdx){
73a37cdde0Sdanielk1977   if( !pIdx->zColAff ){
74e014a838Sdanielk1977     /* The first time a column affinity string for a particular index is
75a37cdde0Sdanielk1977     ** required, it is allocated and populated here. It is then stored as
76e014a838Sdanielk1977     ** a member of the Index structure for subsequent use.
77a37cdde0Sdanielk1977     **
78a37cdde0Sdanielk1977     ** The column affinity string will eventually be deleted by
79e014a838Sdanielk1977     ** sqliteDeleteIndex() when the Index structure itself is cleaned
80a37cdde0Sdanielk1977     ** up.
81a37cdde0Sdanielk1977     */
82a37cdde0Sdanielk1977     int n;
83a37cdde0Sdanielk1977     Table *pTab = pIdx->pTable;
84ad124329Sdrh     pIdx->zColAff = (char *)sqlite3DbMallocRaw(0, pIdx->nColumn+1);
85a37cdde0Sdanielk1977     if( !pIdx->zColAff ){
864a642b60Sdrh       sqlite3OomFault(db);
8769f8bb9cSdan       return 0;
88a37cdde0Sdanielk1977     }
89a37cdde0Sdanielk1977     for(n=0; n<pIdx->nColumn; n++){
90ad124329Sdrh       i16 x = pIdx->aiColumn[n];
911f9ca2c8Sdrh       if( x>=0 ){
921f9ca2c8Sdrh         pIdx->zColAff[n] = pTab->aCol[x].affinity;
934b92f98cSdrh       }else if( x==XN_ROWID ){
941f9ca2c8Sdrh         pIdx->zColAff[n] = SQLITE_AFF_INTEGER;
951f9ca2c8Sdrh       }else{
966860e6faSdrh         char aff;
974b92f98cSdrh         assert( x==XN_EXPR );
981f9ca2c8Sdrh         assert( pIdx->aColExpr!=0 );
996860e6faSdrh         aff = sqlite3ExprAffinity(pIdx->aColExpr->a[n].pExpr);
1006860e6faSdrh         if( aff==0 ) aff = SQLITE_AFF_BLOB;
1016860e6faSdrh         pIdx->zColAff[n] = aff;
1021f9ca2c8Sdrh       }
103a37cdde0Sdanielk1977     }
1042d401ab8Sdrh     pIdx->zColAff[n] = 0;
105a37cdde0Sdanielk1977   }
1063d1bfeaaSdanielk1977 
10769f8bb9cSdan   return pIdx->zColAff;
108a37cdde0Sdanielk1977 }
109a37cdde0Sdanielk1977 
110a37cdde0Sdanielk1977 /*
11157bf4a8eSdrh ** Compute the affinity string for table pTab, if it has not already been
11205883a34Sdrh ** computed.  As an optimization, omit trailing SQLITE_AFF_BLOB affinities.
11357bf4a8eSdrh **
11405883a34Sdrh ** If the affinity exists (if it is no entirely SQLITE_AFF_BLOB values) and
11557bf4a8eSdrh ** if iReg>0 then code an OP_Affinity opcode that will set the affinities
11657bf4a8eSdrh ** for register iReg and following.  Or if affinities exists and iReg==0,
11757bf4a8eSdrh ** then just set the P4 operand of the previous opcode (which should  be
11857bf4a8eSdrh ** an OP_MakeRecord) to the affinity string.
11957bf4a8eSdrh **
120b6e8fd10Sdrh ** A column affinity string has one character per column:
121a37cdde0Sdanielk1977 **
122a37cdde0Sdanielk1977 **  Character      Column affinity
123a37cdde0Sdanielk1977 **  ------------------------------
12405883a34Sdrh **  'A'            BLOB
1254583c37cSdrh **  'B'            TEXT
1264583c37cSdrh **  'C'            NUMERIC
1274583c37cSdrh **  'D'            INTEGER
1284583c37cSdrh **  'E'            REAL
129a37cdde0Sdanielk1977 */
13057bf4a8eSdrh void sqlite3TableAffinity(Vdbe *v, Table *pTab, int iReg){
1313d1bfeaaSdanielk1977   int i;
13257bf4a8eSdrh   char *zColAff = pTab->zColAff;
13357bf4a8eSdrh   if( zColAff==0 ){
134abb6fcabSdrh     sqlite3 *db = sqlite3VdbeDb(v);
135b975598eSdrh     zColAff = (char *)sqlite3DbMallocRaw(0, pTab->nCol+1);
1363d1bfeaaSdanielk1977     if( !zColAff ){
1374a642b60Sdrh       sqlite3OomFault(db);
138a37cdde0Sdanielk1977       return;
1393d1bfeaaSdanielk1977     }
1403d1bfeaaSdanielk1977 
1413d1bfeaaSdanielk1977     for(i=0; i<pTab->nCol; i++){
142a37cdde0Sdanielk1977       zColAff[i] = pTab->aCol[i].affinity;
1433d1bfeaaSdanielk1977     }
14457bf4a8eSdrh     do{
14557bf4a8eSdrh       zColAff[i--] = 0;
14605883a34Sdrh     }while( i>=0 && zColAff[i]==SQLITE_AFF_BLOB );
1473d1bfeaaSdanielk1977     pTab->zColAff = zColAff;
1483d1bfeaaSdanielk1977   }
14957bf4a8eSdrh   i = sqlite3Strlen30(zColAff);
15057bf4a8eSdrh   if( i ){
15157bf4a8eSdrh     if( iReg ){
15257bf4a8eSdrh       sqlite3VdbeAddOp4(v, OP_Affinity, iReg, i, 0, zColAff, i);
15357bf4a8eSdrh     }else{
15457bf4a8eSdrh       sqlite3VdbeChangeP4(v, -1, zColAff, i);
15557bf4a8eSdrh     }
15657bf4a8eSdrh   }
1573d1bfeaaSdanielk1977 }
1583d1bfeaaSdanielk1977 
1594d88778bSdanielk1977 /*
16048d1178aSdrh ** Return non-zero if the table pTab in database iDb or any of its indices
161b6e8fd10Sdrh ** have been opened at any point in the VDBE program. This is used to see if
16248d1178aSdrh ** a statement of the form  "INSERT INTO <iDb, pTab> SELECT ..." can
163b6e8fd10Sdrh ** run without using a temporary table for the results of the SELECT.
1644d88778bSdanielk1977 */
16505a86c5cSdrh static int readsTable(Parse *p, int iDb, Table *pTab){
166595a523aSdanielk1977   Vdbe *v = sqlite3GetVdbe(p);
1674d88778bSdanielk1977   int i;
16848d1178aSdrh   int iEnd = sqlite3VdbeCurrentAddr(v);
169595a523aSdanielk1977 #ifndef SQLITE_OMIT_VIRTUALTABLE
170595a523aSdanielk1977   VTable *pVTab = IsVirtual(pTab) ? sqlite3GetVTable(p->db, pTab) : 0;
171595a523aSdanielk1977 #endif
172595a523aSdanielk1977 
17305a86c5cSdrh   for(i=1; i<iEnd; i++){
17448d1178aSdrh     VdbeOp *pOp = sqlite3VdbeGetOp(v, i);
175ef0bea92Sdrh     assert( pOp!=0 );
176207872a4Sdanielk1977     if( pOp->opcode==OP_OpenRead && pOp->p3==iDb ){
17748d1178aSdrh       Index *pIndex;
178207872a4Sdanielk1977       int tnum = pOp->p2;
17948d1178aSdrh       if( tnum==pTab->tnum ){
18048d1178aSdrh         return 1;
18148d1178aSdrh       }
18248d1178aSdrh       for(pIndex=pTab->pIndex; pIndex; pIndex=pIndex->pNext){
18348d1178aSdrh         if( tnum==pIndex->tnum ){
18448d1178aSdrh           return 1;
18548d1178aSdrh         }
18648d1178aSdrh       }
18748d1178aSdrh     }
188543165efSdrh #ifndef SQLITE_OMIT_VIRTUALTABLE
189595a523aSdanielk1977     if( pOp->opcode==OP_VOpen && pOp->p4.pVtab==pVTab ){
1902dca4ac1Sdanielk1977       assert( pOp->p4.pVtab!=0 );
19166a5167bSdrh       assert( pOp->p4type==P4_VTAB );
19248d1178aSdrh       return 1;
1934d88778bSdanielk1977     }
194543165efSdrh #endif
1954d88778bSdanielk1977   }
1964d88778bSdanielk1977   return 0;
1974d88778bSdanielk1977 }
1983d1bfeaaSdanielk1977 
1999d9cf229Sdrh #ifndef SQLITE_OMIT_AUTOINCREMENT
2009d9cf229Sdrh /*
2010b9f50d8Sdrh ** Locate or create an AutoincInfo structure associated with table pTab
2020b9f50d8Sdrh ** which is in database iDb.  Return the register number for the register
2039ef5e770Sdrh ** that holds the maximum rowid.  Return zero if pTab is not an AUTOINCREMENT
2049ef5e770Sdrh ** table.  (Also return zero when doing a VACUUM since we do not want to
2059ef5e770Sdrh ** update the AUTOINCREMENT counters during a VACUUM.)
2069d9cf229Sdrh **
2070b9f50d8Sdrh ** There is at most one AutoincInfo structure per table even if the
2080b9f50d8Sdrh ** same table is autoincremented multiple times due to inserts within
2090b9f50d8Sdrh ** triggers.  A new AutoincInfo structure is created if this is the
2100b9f50d8Sdrh ** first use of table pTab.  On 2nd and subsequent uses, the original
2110b9f50d8Sdrh ** AutoincInfo structure is used.
2129d9cf229Sdrh **
213c8abbc11Sdrh ** Four consecutive registers are allocated:
2140b9f50d8Sdrh **
215c8abbc11Sdrh **   (1)  The name of the pTab table.
216c8abbc11Sdrh **   (2)  The maximum ROWID of pTab.
217c8abbc11Sdrh **   (3)  The rowid in sqlite_sequence of pTab
218c8abbc11Sdrh **   (4)  The original value of the max ROWID in pTab, or NULL if none
2190b9f50d8Sdrh **
2200b9f50d8Sdrh ** The 2nd register is the one that is returned.  That is all the
2210b9f50d8Sdrh ** insert routine needs to know about.
2229d9cf229Sdrh */
2239d9cf229Sdrh static int autoIncBegin(
2249d9cf229Sdrh   Parse *pParse,      /* Parsing context */
2259d9cf229Sdrh   int iDb,            /* Index of the database holding pTab */
2269d9cf229Sdrh   Table *pTab         /* The table we are writing to */
2279d9cf229Sdrh ){
2286a288a33Sdrh   int memId = 0;      /* Register holding maximum rowid */
2299ef5e770Sdrh   if( (pTab->tabFlags & TF_Autoincrement)!=0
2308257aa8dSdrh    && (pParse->db->mDbFlags & DBFLAG_Vacuum)==0
2319ef5e770Sdrh   ){
23265a7cd16Sdan     Parse *pToplevel = sqlite3ParseToplevel(pParse);
2330b9f50d8Sdrh     AutoincInfo *pInfo;
2340b9f50d8Sdrh 
23565a7cd16Sdan     pInfo = pToplevel->pAinc;
2360b9f50d8Sdrh     while( pInfo && pInfo->pTab!=pTab ){ pInfo = pInfo->pNext; }
2370b9f50d8Sdrh     if( pInfo==0 ){
238575fad65Sdrh       pInfo = sqlite3DbMallocRawNN(pParse->db, sizeof(*pInfo));
2390b9f50d8Sdrh       if( pInfo==0 ) return 0;
24065a7cd16Sdan       pInfo->pNext = pToplevel->pAinc;
24165a7cd16Sdan       pToplevel->pAinc = pInfo;
2420b9f50d8Sdrh       pInfo->pTab = pTab;
2430b9f50d8Sdrh       pInfo->iDb = iDb;
24465a7cd16Sdan       pToplevel->nMem++;                  /* Register to hold name of table */
24565a7cd16Sdan       pInfo->regCtr = ++pToplevel->nMem;  /* Max rowid register */
246c8abbc11Sdrh       pToplevel->nMem +=2;       /* Rowid in sqlite_sequence + orig max val */
2470b9f50d8Sdrh     }
2480b9f50d8Sdrh     memId = pInfo->regCtr;
2499d9cf229Sdrh   }
2509d9cf229Sdrh   return memId;
2519d9cf229Sdrh }
2529d9cf229Sdrh 
2539d9cf229Sdrh /*
2540b9f50d8Sdrh ** This routine generates code that will initialize all of the
2550b9f50d8Sdrh ** register used by the autoincrement tracker.
2560b9f50d8Sdrh */
2570b9f50d8Sdrh void sqlite3AutoincrementBegin(Parse *pParse){
2580b9f50d8Sdrh   AutoincInfo *p;            /* Information about an AUTOINCREMENT */
2590b9f50d8Sdrh   sqlite3 *db = pParse->db;  /* The database connection */
2600b9f50d8Sdrh   Db *pDb;                   /* Database only autoinc table */
2610b9f50d8Sdrh   int memId;                 /* Register holding max rowid */
2620b9f50d8Sdrh   Vdbe *v = pParse->pVdbe;   /* VDBE under construction */
2630b9f50d8Sdrh 
264345ba7dbSdrh   /* This routine is never called during trigger-generation.  It is
265345ba7dbSdrh   ** only called from the top-level */
266345ba7dbSdrh   assert( pParse->pTriggerTab==0 );
267c149f18fSdrh   assert( sqlite3IsToplevel(pParse) );
26876d462eeSdan 
2690b9f50d8Sdrh   assert( v );   /* We failed long ago if this is not so */
2700b9f50d8Sdrh   for(p = pParse->pAinc; p; p = p->pNext){
2711b32554bSdrh     static const int iLn = VDBE_OFFSET_LINENO(2);
2721b32554bSdrh     static const VdbeOpList autoInc[] = {
2731b32554bSdrh       /* 0  */ {OP_Null,    0,  0, 0},
274c8abbc11Sdrh       /* 1  */ {OP_Rewind,  0, 10, 0},
2751b32554bSdrh       /* 2  */ {OP_Column,  0,  0, 0},
276c8abbc11Sdrh       /* 3  */ {OP_Ne,      0,  9, 0},
2771b32554bSdrh       /* 4  */ {OP_Rowid,   0,  0, 0},
2781b32554bSdrh       /* 5  */ {OP_Column,  0,  1, 0},
279c8abbc11Sdrh       /* 6  */ {OP_AddImm,  0,  0, 0},
280c8abbc11Sdrh       /* 7  */ {OP_Copy,    0,  0, 0},
281c8abbc11Sdrh       /* 8  */ {OP_Goto,    0, 11, 0},
282c8abbc11Sdrh       /* 9  */ {OP_Next,    0,  2, 0},
283c8abbc11Sdrh       /* 10 */ {OP_Integer, 0,  0, 0},
284c8abbc11Sdrh       /* 11 */ {OP_Close,   0,  0, 0}
2851b32554bSdrh     };
2861b32554bSdrh     VdbeOp *aOp;
2870b9f50d8Sdrh     pDb = &db->aDb[p->iDb];
2880b9f50d8Sdrh     memId = p->regCtr;
2892120608eSdrh     assert( sqlite3SchemaMutexHeld(db, 0, pDb->pSchema) );
2900b9f50d8Sdrh     sqlite3OpenTable(pParse, 0, p->iDb, pDb->pSchema->pSeqTab, OP_OpenRead);
291076e85f5Sdrh     sqlite3VdbeLoadString(v, memId-1, p->pTab->zName);
2921b32554bSdrh     aOp = sqlite3VdbeAddOpList(v, ArraySize(autoInc), autoInc, iLn);
2931b32554bSdrh     if( aOp==0 ) break;
2941b32554bSdrh     aOp[0].p2 = memId;
295c8abbc11Sdrh     aOp[0].p3 = memId+2;
2961b32554bSdrh     aOp[2].p3 = memId;
2971b32554bSdrh     aOp[3].p1 = memId-1;
2981b32554bSdrh     aOp[3].p3 = memId;
2991b32554bSdrh     aOp[3].p5 = SQLITE_JUMPIFNULL;
3001b32554bSdrh     aOp[4].p2 = memId+1;
3011b32554bSdrh     aOp[5].p3 = memId;
302c8abbc11Sdrh     aOp[6].p1 = memId;
303c8abbc11Sdrh     aOp[7].p2 = memId+2;
304c8abbc11Sdrh     aOp[7].p1 = memId;
305c8abbc11Sdrh     aOp[10].p2 = memId;
3060b9f50d8Sdrh   }
3070b9f50d8Sdrh }
3080b9f50d8Sdrh 
3090b9f50d8Sdrh /*
3109d9cf229Sdrh ** Update the maximum rowid for an autoincrement calculation.
3119d9cf229Sdrh **
3121b32554bSdrh ** This routine should be called when the regRowid register holds a
3139d9cf229Sdrh ** new rowid that is about to be inserted.  If that new rowid is
3149d9cf229Sdrh ** larger than the maximum rowid in the memId memory cell, then the
3151b32554bSdrh ** memory cell is updated.
3169d9cf229Sdrh */
3176a288a33Sdrh static void autoIncStep(Parse *pParse, int memId, int regRowid){
3189d9cf229Sdrh   if( memId>0 ){
3196a288a33Sdrh     sqlite3VdbeAddOp2(pParse->pVdbe, OP_MemMax, memId, regRowid);
3209d9cf229Sdrh   }
3219d9cf229Sdrh }
3229d9cf229Sdrh 
3239d9cf229Sdrh /*
3240b9f50d8Sdrh ** This routine generates the code needed to write autoincrement
3250b9f50d8Sdrh ** maximum rowid values back into the sqlite_sequence register.
3260b9f50d8Sdrh ** Every statement that might do an INSERT into an autoincrement
3270b9f50d8Sdrh ** table (either directly or through triggers) needs to call this
3280b9f50d8Sdrh ** routine just before the "exit" code.
3299d9cf229Sdrh */
3301b32554bSdrh static SQLITE_NOINLINE void autoIncrementEnd(Parse *pParse){
3310b9f50d8Sdrh   AutoincInfo *p;
3329d9cf229Sdrh   Vdbe *v = pParse->pVdbe;
3330b9f50d8Sdrh   sqlite3 *db = pParse->db;
3346a288a33Sdrh 
3359d9cf229Sdrh   assert( v );
3360b9f50d8Sdrh   for(p = pParse->pAinc; p; p = p->pNext){
3371b32554bSdrh     static const int iLn = VDBE_OFFSET_LINENO(2);
3381b32554bSdrh     static const VdbeOpList autoIncEnd[] = {
3391b32554bSdrh       /* 0 */ {OP_NotNull,     0, 2, 0},
3401b32554bSdrh       /* 1 */ {OP_NewRowid,    0, 0, 0},
3411b32554bSdrh       /* 2 */ {OP_MakeRecord,  0, 2, 0},
3421b32554bSdrh       /* 3 */ {OP_Insert,      0, 0, 0},
3431b32554bSdrh       /* 4 */ {OP_Close,       0, 0, 0}
3441b32554bSdrh     };
3451b32554bSdrh     VdbeOp *aOp;
3460b9f50d8Sdrh     Db *pDb = &db->aDb[p->iDb];
3470b9f50d8Sdrh     int iRec;
3480b9f50d8Sdrh     int memId = p->regCtr;
3490b9f50d8Sdrh 
3500b9f50d8Sdrh     iRec = sqlite3GetTempReg(pParse);
3512120608eSdrh     assert( sqlite3SchemaMutexHeld(db, 0, pDb->pSchema) );
352c8abbc11Sdrh     sqlite3VdbeAddOp3(v, OP_Le, memId+2, sqlite3VdbeCurrentAddr(v)+7, memId);
353c8abbc11Sdrh     VdbeCoverage(v);
3540b9f50d8Sdrh     sqlite3OpenTable(pParse, 0, p->iDb, pDb->pSchema->pSeqTab, OP_OpenWrite);
3551b32554bSdrh     aOp = sqlite3VdbeAddOpList(v, ArraySize(autoIncEnd), autoIncEnd, iLn);
3561b32554bSdrh     if( aOp==0 ) break;
3571b32554bSdrh     aOp[0].p1 = memId+1;
3581b32554bSdrh     aOp[1].p2 = memId+1;
3591b32554bSdrh     aOp[2].p1 = memId-1;
3601b32554bSdrh     aOp[2].p3 = iRec;
3611b32554bSdrh     aOp[3].p2 = iRec;
3621b32554bSdrh     aOp[3].p3 = memId+1;
3631b32554bSdrh     aOp[3].p5 = OPFLAG_APPEND;
3640b9f50d8Sdrh     sqlite3ReleaseTempReg(pParse, iRec);
3659d9cf229Sdrh   }
3669d9cf229Sdrh }
3671b32554bSdrh void sqlite3AutoincrementEnd(Parse *pParse){
3681b32554bSdrh   if( pParse->pAinc ) autoIncrementEnd(pParse);
3691b32554bSdrh }
3709d9cf229Sdrh #else
3719d9cf229Sdrh /*
3729d9cf229Sdrh ** If SQLITE_OMIT_AUTOINCREMENT is defined, then the three routines
3739d9cf229Sdrh ** above are all no-ops
3749d9cf229Sdrh */
3759d9cf229Sdrh # define autoIncBegin(A,B,C) (0)
376287fb61cSdanielk1977 # define autoIncStep(A,B,C)
3779d9cf229Sdrh #endif /* SQLITE_OMIT_AUTOINCREMENT */
3789d9cf229Sdrh 
3799d9cf229Sdrh 
3809d9cf229Sdrh /* Forward declaration */
3819d9cf229Sdrh static int xferOptimization(
3829d9cf229Sdrh   Parse *pParse,        /* Parser context */
3839d9cf229Sdrh   Table *pDest,         /* The table we are inserting into */
3849d9cf229Sdrh   Select *pSelect,      /* A SELECT statement to use as the data source */
3859d9cf229Sdrh   int onError,          /* How to handle constraint errors */
3869d9cf229Sdrh   int iDbDest           /* The database of pDest */
3879d9cf229Sdrh );
3889d9cf229Sdrh 
3893d1bfeaaSdanielk1977 /*
390d82b5021Sdrh ** This routine is called to handle SQL of the following forms:
391cce7d176Sdrh **
392a21f78b9Sdrh **    insert into TABLE (IDLIST) values(EXPRLIST),(EXPRLIST),...
3931ccde15dSdrh **    insert into TABLE (IDLIST) select
394a21f78b9Sdrh **    insert into TABLE (IDLIST) default values
395cce7d176Sdrh **
3961ccde15dSdrh ** The IDLIST following the table name is always optional.  If omitted,
397a21f78b9Sdrh ** then a list of all (non-hidden) columns for the table is substituted.
398a21f78b9Sdrh ** The IDLIST appears in the pColumn parameter.  pColumn is NULL if IDLIST
399a21f78b9Sdrh ** is omitted.
4001ccde15dSdrh **
401a21f78b9Sdrh ** For the pSelect parameter holds the values to be inserted for the
402a21f78b9Sdrh ** first two forms shown above.  A VALUES clause is really just short-hand
403a21f78b9Sdrh ** for a SELECT statement that omits the FROM clause and everything else
404a21f78b9Sdrh ** that follows.  If the pSelect parameter is NULL, that means that the
405a21f78b9Sdrh ** DEFAULT VALUES form of the INSERT statement is intended.
406142e30dfSdrh **
4079d9cf229Sdrh ** The code generated follows one of four templates.  For a simple
408a21f78b9Sdrh ** insert with data coming from a single-row VALUES clause, the code executes
409e00ee6ebSdrh ** once straight down through.  Pseudo-code follows (we call this
410e00ee6ebSdrh ** the "1st template"):
411142e30dfSdrh **
412142e30dfSdrh **         open write cursor to <table> and its indices
413ec95c441Sdrh **         put VALUES clause expressions into registers
414142e30dfSdrh **         write the resulting record into <table>
415142e30dfSdrh **         cleanup
416142e30dfSdrh **
4179d9cf229Sdrh ** The three remaining templates assume the statement is of the form
418142e30dfSdrh **
419142e30dfSdrh **   INSERT INTO <table> SELECT ...
420142e30dfSdrh **
4219d9cf229Sdrh ** If the SELECT clause is of the restricted form "SELECT * FROM <table2>" -
4229d9cf229Sdrh ** in other words if the SELECT pulls all columns from a single table
4239d9cf229Sdrh ** and there is no WHERE or LIMIT or GROUP BY or ORDER BY clauses, and
4249d9cf229Sdrh ** if <table2> and <table1> are distinct tables but have identical
4259d9cf229Sdrh ** schemas, including all the same indices, then a special optimization
4269d9cf229Sdrh ** is invoked that copies raw records from <table2> over to <table1>.
4279d9cf229Sdrh ** See the xferOptimization() function for the implementation of this
428e00ee6ebSdrh ** template.  This is the 2nd template.
4299d9cf229Sdrh **
4309d9cf229Sdrh **         open a write cursor to <table>
4319d9cf229Sdrh **         open read cursor on <table2>
4329d9cf229Sdrh **         transfer all records in <table2> over to <table>
4339d9cf229Sdrh **         close cursors
4349d9cf229Sdrh **         foreach index on <table>
4359d9cf229Sdrh **           open a write cursor on the <table> index
4369d9cf229Sdrh **           open a read cursor on the corresponding <table2> index
4379d9cf229Sdrh **           transfer all records from the read to the write cursors
4389d9cf229Sdrh **           close cursors
4399d9cf229Sdrh **         end foreach
4409d9cf229Sdrh **
441e00ee6ebSdrh ** The 3rd template is for when the second template does not apply
4429d9cf229Sdrh ** and the SELECT clause does not read from <table> at any time.
4439d9cf229Sdrh ** The generated code follows this template:
444142e30dfSdrh **
445e00ee6ebSdrh **         X <- A
446142e30dfSdrh **         goto B
447142e30dfSdrh **      A: setup for the SELECT
4489d9cf229Sdrh **         loop over the rows in the SELECT
449e00ee6ebSdrh **           load values into registers R..R+n
450e00ee6ebSdrh **           yield X
451142e30dfSdrh **         end loop
452142e30dfSdrh **         cleanup after the SELECT
45381cf13ecSdrh **         end-coroutine X
454e00ee6ebSdrh **      B: open write cursor to <table> and its indices
45581cf13ecSdrh **      C: yield X, at EOF goto D
456e00ee6ebSdrh **         insert the select result into <table> from R..R+n
457e00ee6ebSdrh **         goto C
458142e30dfSdrh **      D: cleanup
459142e30dfSdrh **
460e00ee6ebSdrh ** The 4th template is used if the insert statement takes its
461142e30dfSdrh ** values from a SELECT but the data is being inserted into a table
462142e30dfSdrh ** that is also read as part of the SELECT.  In the third form,
46360ec914cSpeter.d.reid ** we have to use an intermediate table to store the results of
464142e30dfSdrh ** the select.  The template is like this:
465142e30dfSdrh **
466e00ee6ebSdrh **         X <- A
467142e30dfSdrh **         goto B
468142e30dfSdrh **      A: setup for the SELECT
469142e30dfSdrh **         loop over the tables in the SELECT
470e00ee6ebSdrh **           load value into register R..R+n
471e00ee6ebSdrh **           yield X
472142e30dfSdrh **         end loop
473142e30dfSdrh **         cleanup after the SELECT
47481cf13ecSdrh **         end co-routine R
475e00ee6ebSdrh **      B: open temp table
47681cf13ecSdrh **      L: yield X, at EOF goto M
477e00ee6ebSdrh **         insert row from R..R+n into temp table
478e00ee6ebSdrh **         goto L
479e00ee6ebSdrh **      M: open write cursor to <table> and its indices
480e00ee6ebSdrh **         rewind temp table
481e00ee6ebSdrh **      C: loop over rows of intermediate table
482142e30dfSdrh **           transfer values form intermediate table into <table>
483e00ee6ebSdrh **         end loop
484e00ee6ebSdrh **      D: cleanup
485cce7d176Sdrh */
4864adee20fSdanielk1977 void sqlite3Insert(
487cce7d176Sdrh   Parse *pParse,        /* Parser context */
488113088ecSdrh   SrcList *pTabList,    /* Name of table into which we are inserting */
4895974a30fSdrh   Select *pSelect,      /* A SELECT statement to use as the data source */
4909cfcf5d4Sdrh   IdList *pColumn,      /* Column names corresponding to IDLIST. */
4912c2e844aSdrh   int onError,          /* How to handle constraint errors */
49246d2e5c3Sdrh   Upsert *pUpsert       /* ON CONFLICT clauses for upsert, or NULL */
493cce7d176Sdrh ){
4946a288a33Sdrh   sqlite3 *db;          /* The main database structure */
4956a288a33Sdrh   Table *pTab;          /* The table to insert into.  aka TABLE */
49660ffc807Sdrh   int i, j;             /* Loop counters */
4975974a30fSdrh   Vdbe *v;              /* Generate code into this virtual machine */
4985974a30fSdrh   Index *pIdx;          /* For looping over indices of the table */
499967e8b73Sdrh   int nColumn;          /* Number of columns in the data */
5006a288a33Sdrh   int nHidden = 0;      /* Number of hidden columns if TABLE is virtual */
50126198bb4Sdrh   int iDataCur = 0;     /* VDBE cursor that is the main data repository */
50226198bb4Sdrh   int iIdxCur = 0;      /* First index cursor */
503d82b5021Sdrh   int ipkColumn = -1;   /* Column that is the INTEGER PRIMARY KEY */
5040ca3e24bSdrh   int endOfLoop;        /* Label for the end of the insertion loop */
505cfe9a69fSdanielk1977   int srcTab = 0;       /* Data comes from this temporary cursor if >=0 */
506e00ee6ebSdrh   int addrInsTop = 0;   /* Jump to label "D" */
507e00ee6ebSdrh   int addrCont = 0;     /* Top of insert loop. Label "C" in templates 3 and 4 */
5082eb95377Sdrh   SelectDest dest;      /* Destination for SELECT on rhs of INSERT */
5096a288a33Sdrh   int iDb;              /* Index of database holding TABLE */
51005a86c5cSdrh   u8 useTempTable = 0;  /* Store SELECT results in intermediate table */
51105a86c5cSdrh   u8 appendFlag = 0;    /* True if the insert is likely to be an append */
51205a86c5cSdrh   u8 withoutRowid;      /* 0 for normal table.  1 for WITHOUT ROWID table */
513a21f78b9Sdrh   u8 bIdListInOrder;    /* True if IDLIST is in table order */
51475593d96Sdrh   ExprList *pList = 0;  /* List of VALUES() to be inserted  */
515cce7d176Sdrh 
5166a288a33Sdrh   /* Register allocations */
5171bd10f8aSdrh   int regFromSelect = 0;/* Base register for data coming from SELECT */
5186a288a33Sdrh   int regAutoinc = 0;   /* Register holding the AUTOINCREMENT counter */
5196a288a33Sdrh   int regRowCount = 0;  /* Memory cell used for the row counter */
5206a288a33Sdrh   int regIns;           /* Block of regs holding rowid+data being inserted */
5216a288a33Sdrh   int regRowid;         /* registers holding insert rowid */
5226a288a33Sdrh   int regData;          /* register holding first column to insert */
523aa9b8963Sdrh   int *aRegIdx = 0;     /* One register allocated to each index */
5246a288a33Sdrh 
525798da52cSdrh #ifndef SQLITE_OMIT_TRIGGER
526798da52cSdrh   int isView;                 /* True if attempting to insert into a view */
5272f886d1dSdanielk1977   Trigger *pTrigger;          /* List of triggers on pTab, if required */
5282f886d1dSdanielk1977   int tmask;                  /* Mask of trigger times */
529798da52cSdrh #endif
530c3f9bad2Sdanielk1977 
53117435752Sdrh   db = pParse->db;
53217435752Sdrh   if( pParse->nErr || db->mallocFailed ){
5336f7adc8aSdrh     goto insert_cleanup;
5346f7adc8aSdrh   }
5354c883487Sdrh   dest.iSDParm = 0;  /* Suppress a harmless compiler warning */
536daffd0e5Sdrh 
53775593d96Sdrh   /* If the Select object is really just a simple VALUES() list with a
538a21f78b9Sdrh   ** single row (the common case) then keep that one row of values
539a21f78b9Sdrh   ** and discard the other (unused) parts of the pSelect object
54075593d96Sdrh   */
54175593d96Sdrh   if( pSelect && (pSelect->selFlags & SF_Values)!=0 && pSelect->pPrior==0 ){
54275593d96Sdrh     pList = pSelect->pEList;
54375593d96Sdrh     pSelect->pEList = 0;
54475593d96Sdrh     sqlite3SelectDelete(db, pSelect);
54575593d96Sdrh     pSelect = 0;
54675593d96Sdrh   }
54775593d96Sdrh 
5481ccde15dSdrh   /* Locate the table into which we will be inserting new information.
5491ccde15dSdrh   */
550113088ecSdrh   assert( pTabList->nSrc==1 );
5514adee20fSdanielk1977   pTab = sqlite3SrcListLookup(pParse, pTabList);
552c3f9bad2Sdanielk1977   if( pTab==0 ){
553c3f9bad2Sdanielk1977     goto insert_cleanup;
554c3f9bad2Sdanielk1977   }
555da184236Sdanielk1977   iDb = sqlite3SchemaToIndex(db, pTab->pSchema);
556da184236Sdanielk1977   assert( iDb<db->nDb );
557a0daa751Sdrh   if( sqlite3AuthCheck(pParse, SQLITE_INSERT, pTab->zName, 0,
558a0daa751Sdrh                        db->aDb[iDb].zDbSName) ){
5591962bda7Sdrh     goto insert_cleanup;
5601962bda7Sdrh   }
561ec95c441Sdrh   withoutRowid = !HasRowid(pTab);
562c3f9bad2Sdanielk1977 
563b7f9164eSdrh   /* Figure out if we have any triggers and if the table being
564b7f9164eSdrh   ** inserted into is a view
565b7f9164eSdrh   */
566b7f9164eSdrh #ifndef SQLITE_OMIT_TRIGGER
5672f886d1dSdanielk1977   pTrigger = sqlite3TriggersExist(pParse, pTab, TK_INSERT, 0, &tmask);
568b7f9164eSdrh   isView = pTab->pSelect!=0;
569b7f9164eSdrh #else
5702f886d1dSdanielk1977 # define pTrigger 0
5712f886d1dSdanielk1977 # define tmask 0
572b7f9164eSdrh # define isView 0
573b7f9164eSdrh #endif
574b7f9164eSdrh #ifdef SQLITE_OMIT_VIEW
575b7f9164eSdrh # undef isView
576b7f9164eSdrh # define isView 0
577b7f9164eSdrh #endif
5782f886d1dSdanielk1977   assert( (pTrigger && tmask) || (pTrigger==0 && tmask==0) );
579b7f9164eSdrh 
580f573c99bSdrh   /* If pTab is really a view, make sure it has been initialized.
581d82b5021Sdrh   ** ViewGetColumnNames() is a no-op if pTab is not a view.
582f573c99bSdrh   */
583b3d24bf8Sdanielk1977   if( sqlite3ViewGetColumnNames(pParse, pTab) ){
584f573c99bSdrh     goto insert_cleanup;
585f573c99bSdrh   }
586f573c99bSdrh 
587d82b5021Sdrh   /* Cannot insert into a read-only table.
588595a523aSdanielk1977   */
589595a523aSdanielk1977   if( sqlite3IsReadOnly(pParse, pTab, tmask) ){
590595a523aSdanielk1977     goto insert_cleanup;
591595a523aSdanielk1977   }
592595a523aSdanielk1977 
5931ccde15dSdrh   /* Allocate a VDBE
5941ccde15dSdrh   */
5954adee20fSdanielk1977   v = sqlite3GetVdbe(pParse);
5965974a30fSdrh   if( v==0 ) goto insert_cleanup;
5974794f735Sdrh   if( pParse->nested==0 ) sqlite3VdbeCountChanges(v);
5982f886d1dSdanielk1977   sqlite3BeginWriteOperation(pParse, pSelect || pTrigger, iDb);
5991ccde15dSdrh 
6009d9cf229Sdrh #ifndef SQLITE_OMIT_XFER_OPT
6019d9cf229Sdrh   /* If the statement is of the form
6029d9cf229Sdrh   **
6039d9cf229Sdrh   **       INSERT INTO <table1> SELECT * FROM <table2>;
6049d9cf229Sdrh   **
6059d9cf229Sdrh   ** Then special optimizations can be applied that make the transfer
6069d9cf229Sdrh   ** very fast and which reduce fragmentation of indices.
607e00ee6ebSdrh   **
608e00ee6ebSdrh   ** This is the 2nd template.
6099d9cf229Sdrh   */
6109d9cf229Sdrh   if( pColumn==0 && xferOptimization(pParse, pTab, pSelect, onError, iDb) ){
6112f886d1dSdanielk1977     assert( !pTrigger );
6129d9cf229Sdrh     assert( pList==0 );
6130b9f50d8Sdrh     goto insert_end;
6149d9cf229Sdrh   }
6159d9cf229Sdrh #endif /* SQLITE_OMIT_XFER_OPT */
6169d9cf229Sdrh 
6172958a4e6Sdrh   /* If this is an AUTOINCREMENT table, look up the sequence number in the
6186a288a33Sdrh   ** sqlite_sequence table and store it in memory cell regAutoinc.
6192958a4e6Sdrh   */
6206a288a33Sdrh   regAutoinc = autoIncBegin(pParse, iDb, pTab);
6212958a4e6Sdrh 
62205a86c5cSdrh   /* Allocate registers for holding the rowid of the new row,
62360ec914cSpeter.d.reid   ** the content of the new row, and the assembled row record.
6241ccde15dSdrh   */
62505a86c5cSdrh   regRowid = regIns = pParse->nMem+1;
62605a86c5cSdrh   pParse->nMem += pTab->nCol + 1;
627034ca14fSdanielk1977   if( IsVirtual(pTab) ){
62805a86c5cSdrh     regRowid++;
62905a86c5cSdrh     pParse->nMem++;
630034ca14fSdanielk1977   }
63105a86c5cSdrh   regData = regRowid+1;
6321ccde15dSdrh 
6331ccde15dSdrh   /* If the INSERT statement included an IDLIST term, then make sure
6341ccde15dSdrh   ** all elements of the IDLIST really are columns of the table and
6351ccde15dSdrh   ** remember the column indices.
636c8392586Sdrh   **
637c8392586Sdrh   ** If the table has an INTEGER PRIMARY KEY column and that column
638d82b5021Sdrh   ** is named in the IDLIST, then record in the ipkColumn variable
639d82b5021Sdrh   ** the index into IDLIST of the primary key column.  ipkColumn is
640c8392586Sdrh   ** the index of the primary key as it appears in IDLIST, not as
641d82b5021Sdrh   ** is appears in the original table.  (The index of the INTEGER
642d82b5021Sdrh   ** PRIMARY KEY in the original table is pTab->iPKey.)
6431ccde15dSdrh   */
644a21f78b9Sdrh   bIdListInOrder = (pTab->tabFlags & TF_OOOHidden)==0;
645967e8b73Sdrh   if( pColumn ){
646967e8b73Sdrh     for(i=0; i<pColumn->nId; i++){
647967e8b73Sdrh       pColumn->a[i].idx = -1;
648cce7d176Sdrh     }
649967e8b73Sdrh     for(i=0; i<pColumn->nId; i++){
650cce7d176Sdrh       for(j=0; j<pTab->nCol; j++){
6514adee20fSdanielk1977         if( sqlite3StrICmp(pColumn->a[i].zName, pTab->aCol[j].zName)==0 ){
652967e8b73Sdrh           pColumn->a[i].idx = j;
65305a86c5cSdrh           if( i!=j ) bIdListInOrder = 0;
6544a32431cSdrh           if( j==pTab->iPKey ){
655d82b5021Sdrh             ipkColumn = i;  assert( !withoutRowid );
6564a32431cSdrh           }
657cce7d176Sdrh           break;
658cce7d176Sdrh         }
659cce7d176Sdrh       }
660cce7d176Sdrh       if( j>=pTab->nCol ){
661ec95c441Sdrh         if( sqlite3IsRowid(pColumn->a[i].zName) && !withoutRowid ){
662d82b5021Sdrh           ipkColumn = i;
663e48ae715Sdrh           bIdListInOrder = 0;
664a0217ba7Sdrh         }else{
6654adee20fSdanielk1977           sqlite3ErrorMsg(pParse, "table %S has no column named %s",
666da93d238Sdrh               pTabList, 0, pColumn->a[i].zName);
6671db95106Sdan           pParse->checkSchema = 1;
668cce7d176Sdrh           goto insert_cleanup;
669cce7d176Sdrh         }
670cce7d176Sdrh       }
671cce7d176Sdrh     }
672a0217ba7Sdrh   }
6731ccde15dSdrh 
674cce7d176Sdrh   /* Figure out how many columns of data are supplied.  If the data
675cce7d176Sdrh   ** is coming from a SELECT statement, then generate a co-routine that
676cce7d176Sdrh   ** produces a single row of the SELECT on each invocation.  The
677cce7d176Sdrh   ** co-routine is the common header to the 3rd and 4th templates.
678cce7d176Sdrh   */
6795f085269Sdrh   if( pSelect ){
680a21f78b9Sdrh     /* Data is coming from a SELECT or from a multi-row VALUES clause.
681a21f78b9Sdrh     ** Generate a co-routine to run the SELECT. */
68205a86c5cSdrh     int regYield;       /* Register holding co-routine entry-point */
68305a86c5cSdrh     int addrTop;        /* Top of the co-routine */
68405a86c5cSdrh     int rc;             /* Result code */
685cce7d176Sdrh 
68605a86c5cSdrh     regYield = ++pParse->nMem;
68705a86c5cSdrh     addrTop = sqlite3VdbeCurrentAddr(v) + 1;
68805a86c5cSdrh     sqlite3VdbeAddOp3(v, OP_InitCoroutine, regYield, 0, addrTop);
68905a86c5cSdrh     sqlite3SelectDestInit(&dest, SRT_Coroutine, regYield);
69005a86c5cSdrh     dest.iSdst = bIdListInOrder ? regData : 0;
69105a86c5cSdrh     dest.nSdst = pTab->nCol;
69205a86c5cSdrh     rc = sqlite3Select(pParse, pSelect, &dest);
6932b596da8Sdrh     regFromSelect = dest.iSdst;
694992590beSdrh     if( rc || db->mallocFailed || pParse->nErr ) goto insert_cleanup;
6952fade2f7Sdrh     sqlite3VdbeEndCoroutine(v, regYield);
69605a86c5cSdrh     sqlite3VdbeJumpHere(v, addrTop - 1);                       /* label B: */
697cce7d176Sdrh     assert( pSelect->pEList );
698cce7d176Sdrh     nColumn = pSelect->pEList->nExpr;
699cce7d176Sdrh 
700cce7d176Sdrh     /* Set useTempTable to TRUE if the result of the SELECT statement
701cce7d176Sdrh     ** should be written into a temporary table (template 4).  Set to
702cce7d176Sdrh     ** FALSE if each output row of the SELECT can be written directly into
703cce7d176Sdrh     ** the destination table (template 3).
704cce7d176Sdrh     **
705cce7d176Sdrh     ** A temp table must be used if the table being updated is also one
706cce7d176Sdrh     ** of the tables being read by the SELECT statement.  Also use a
707cce7d176Sdrh     ** temp table in the case of row triggers.
708cce7d176Sdrh     */
70905a86c5cSdrh     if( pTrigger || readsTable(pParse, iDb, pTab) ){
710cce7d176Sdrh       useTempTable = 1;
711cce7d176Sdrh     }
712cce7d176Sdrh 
713cce7d176Sdrh     if( useTempTable ){
714cce7d176Sdrh       /* Invoke the coroutine to extract information from the SELECT
715cce7d176Sdrh       ** and add it to a transient table srcTab.  The code generated
716cce7d176Sdrh       ** here is from the 4th template:
717cce7d176Sdrh       **
718cce7d176Sdrh       **      B: open temp table
71981cf13ecSdrh       **      L: yield X, goto M at EOF
720cce7d176Sdrh       **         insert row from R..R+n into temp table
721cce7d176Sdrh       **         goto L
722cce7d176Sdrh       **      M: ...
723cce7d176Sdrh       */
724cce7d176Sdrh       int regRec;          /* Register to hold packed record */
725cce7d176Sdrh       int regTempRowid;    /* Register to hold temp table ROWID */
72606280ee5Sdrh       int addrL;           /* Label "L" */
727cce7d176Sdrh 
728cce7d176Sdrh       srcTab = pParse->nTab++;
729cce7d176Sdrh       regRec = sqlite3GetTempReg(pParse);
730cce7d176Sdrh       regTempRowid = sqlite3GetTempReg(pParse);
731cce7d176Sdrh       sqlite3VdbeAddOp2(v, OP_OpenEphemeral, srcTab, nColumn);
73206280ee5Sdrh       addrL = sqlite3VdbeAddOp1(v, OP_Yield, dest.iSDParm); VdbeCoverage(v);
733cce7d176Sdrh       sqlite3VdbeAddOp3(v, OP_MakeRecord, regFromSelect, nColumn, regRec);
734cce7d176Sdrh       sqlite3VdbeAddOp2(v, OP_NewRowid, srcTab, regTempRowid);
735cce7d176Sdrh       sqlite3VdbeAddOp3(v, OP_Insert, srcTab, regRec, regTempRowid);
736076e85f5Sdrh       sqlite3VdbeGoto(v, addrL);
73706280ee5Sdrh       sqlite3VdbeJumpHere(v, addrL);
738cce7d176Sdrh       sqlite3ReleaseTempReg(pParse, regRec);
739cce7d176Sdrh       sqlite3ReleaseTempReg(pParse, regTempRowid);
740cce7d176Sdrh     }
741cce7d176Sdrh   }else{
742a21f78b9Sdrh     /* This is the case if the data for the INSERT is coming from a
743a21f78b9Sdrh     ** single-row VALUES clause
744cce7d176Sdrh     */
745cce7d176Sdrh     NameContext sNC;
746cce7d176Sdrh     memset(&sNC, 0, sizeof(sNC));
747cce7d176Sdrh     sNC.pParse = pParse;
748cce7d176Sdrh     srcTab = -1;
749cce7d176Sdrh     assert( useTempTable==0 );
750fea870beSdrh     if( pList ){
751fea870beSdrh       nColumn = pList->nExpr;
752fea870beSdrh       if( sqlite3ResolveExprListNames(&sNC, pList) ){
753cce7d176Sdrh         goto insert_cleanup;
754cce7d176Sdrh       }
755fea870beSdrh     }else{
756fea870beSdrh       nColumn = 0;
757cce7d176Sdrh     }
758cce7d176Sdrh   }
759cce7d176Sdrh 
760aacc543eSdrh   /* If there is no IDLIST term but the table has an integer primary
761d82b5021Sdrh   ** key, the set the ipkColumn variable to the integer primary key
762d82b5021Sdrh   ** column index in the original table definition.
7634a32431cSdrh   */
764147d0cccSdrh   if( pColumn==0 && nColumn>0 ){
765d82b5021Sdrh     ipkColumn = pTab->iPKey;
7664a32431cSdrh   }
7674a32431cSdrh 
768cce7d176Sdrh   /* Make sure the number of columns in the source data matches the number
769cce7d176Sdrh   ** of columns to be inserted into the table.
770cce7d176Sdrh   */
771cce7d176Sdrh   for(i=0; i<pTab->nCol; i++){
772cce7d176Sdrh     nHidden += (IsHiddenColumn(&pTab->aCol[i]) ? 1 : 0);
773cce7d176Sdrh   }
774cce7d176Sdrh   if( pColumn==0 && nColumn && nColumn!=(pTab->nCol-nHidden) ){
775cce7d176Sdrh     sqlite3ErrorMsg(pParse,
776cce7d176Sdrh        "table %S has %d columns but %d values were supplied",
777cce7d176Sdrh        pTabList, 0, pTab->nCol-nHidden, nColumn);
778cce7d176Sdrh     goto insert_cleanup;
779cce7d176Sdrh   }
780cce7d176Sdrh   if( pColumn!=0 && nColumn!=pColumn->nId ){
781cce7d176Sdrh     sqlite3ErrorMsg(pParse, "%d values for %d columns", nColumn, pColumn->nId);
782cce7d176Sdrh     goto insert_cleanup;
783cce7d176Sdrh   }
784cce7d176Sdrh 
785c3f9bad2Sdanielk1977   /* Initialize the count of rows to be inserted
7861ccde15dSdrh   */
787142e30dfSdrh   if( db->flags & SQLITE_CountRows ){
7886a288a33Sdrh     regRowCount = ++pParse->nMem;
7896a288a33Sdrh     sqlite3VdbeAddOp2(v, OP_Integer, 0, regRowCount);
790c3f9bad2Sdanielk1977   }
791c3f9bad2Sdanielk1977 
792e448dc4aSdanielk1977   /* If this is not a view, open the table and and all indices */
793e448dc4aSdanielk1977   if( !isView ){
794aa9b8963Sdrh     int nIdx;
795fd261ec6Sdan     nIdx = sqlite3OpenTableAndIndices(pParse, pTab, OP_OpenWrite, 0, -1, 0,
79626198bb4Sdrh                                       &iDataCur, &iIdxCur);
797575fad65Sdrh     aRegIdx = sqlite3DbMallocRawNN(db, sizeof(int)*(nIdx+1));
798aa9b8963Sdrh     if( aRegIdx==0 ){
799aa9b8963Sdrh       goto insert_cleanup;
800aa9b8963Sdrh     }
8012c4dfc30Sdrh     for(i=0, pIdx=pTab->pIndex; i<nIdx; pIdx=pIdx->pNext, i++){
8022c4dfc30Sdrh       assert( pIdx );
803aa9b8963Sdrh       aRegIdx[i] = ++pParse->nMem;
8042c4dfc30Sdrh       pParse->nMem += pIdx->nColumn;
805aa9b8963Sdrh     }
806feeb1394Sdrh   }
807788d55aaSdrh #ifndef SQLITE_OMIT_UPSERT
8080b30a116Sdrh   if( pUpsert ){
809788d55aaSdrh     pTabList->a[0].iCursor = iDataCur;
8100b30a116Sdrh     pUpsert->pUpsertSrc = pTabList;
811eac9fabbSdrh     pUpsert->regData = regData;
8120b30a116Sdrh     if( pUpsert->pUpsertTarget ){
813e9c2e772Sdrh       sqlite3UpsertAnalyzeTarget(pParse, pTabList, pUpsert);
814788d55aaSdrh     }
8150b30a116Sdrh   }
816788d55aaSdrh #endif
817788d55aaSdrh 
818feeb1394Sdrh 
819e00ee6ebSdrh   /* This is the top of the main insertion loop */
820142e30dfSdrh   if( useTempTable ){
821e00ee6ebSdrh     /* This block codes the top of loop only.  The complete loop is the
822e00ee6ebSdrh     ** following pseudocode (template 4):
823e00ee6ebSdrh     **
82481cf13ecSdrh     **         rewind temp table, if empty goto D
825e00ee6ebSdrh     **      C: loop over rows of intermediate table
826e00ee6ebSdrh     **           transfer values form intermediate table into <table>
827e00ee6ebSdrh     **         end loop
828e00ee6ebSdrh     **      D: ...
829e00ee6ebSdrh     */
830688852abSdrh     addrInsTop = sqlite3VdbeAddOp1(v, OP_Rewind, srcTab); VdbeCoverage(v);
831e00ee6ebSdrh     addrCont = sqlite3VdbeCurrentAddr(v);
832142e30dfSdrh   }else if( pSelect ){
833e00ee6ebSdrh     /* This block codes the top of loop only.  The complete loop is the
834e00ee6ebSdrh     ** following pseudocode (template 3):
835e00ee6ebSdrh     **
83681cf13ecSdrh     **      C: yield X, at EOF goto D
837e00ee6ebSdrh     **         insert the select result into <table> from R..R+n
838e00ee6ebSdrh     **         goto C
839e00ee6ebSdrh     **      D: ...
840e00ee6ebSdrh     */
84181cf13ecSdrh     addrInsTop = addrCont = sqlite3VdbeAddOp1(v, OP_Yield, dest.iSDParm);
842688852abSdrh     VdbeCoverage(v);
843bed8690fSdrh   }
8441ccde15dSdrh 
8455cf590c1Sdrh   /* Run the BEFORE and INSTEAD OF triggers, if there are any
84670ce3f0cSdrh   */
8474adee20fSdanielk1977   endOfLoop = sqlite3VdbeMakeLabel(v);
8482f886d1dSdanielk1977   if( tmask & TRIGGER_BEFORE ){
84976d462eeSdan     int regCols = sqlite3GetTempRange(pParse, pTab->nCol+1);
850c3f9bad2Sdanielk1977 
85170ce3f0cSdrh     /* build the NEW.* reference row.  Note that if there is an INTEGER
85270ce3f0cSdrh     ** PRIMARY KEY into which a NULL is being inserted, that NULL will be
85370ce3f0cSdrh     ** translated into a unique ID for the row.  But on a BEFORE trigger,
85470ce3f0cSdrh     ** we do not know what the unique ID will be (because the insert has
85570ce3f0cSdrh     ** not happened yet) so we substitute a rowid of -1
85670ce3f0cSdrh     */
857d82b5021Sdrh     if( ipkColumn<0 ){
85876d462eeSdan       sqlite3VdbeAddOp2(v, OP_Integer, -1, regCols);
85970ce3f0cSdrh     }else{
860728e0f91Sdrh       int addr1;
861ec95c441Sdrh       assert( !withoutRowid );
8627fe45908Sdrh       if( useTempTable ){
863d82b5021Sdrh         sqlite3VdbeAddOp3(v, OP_Column, srcTab, ipkColumn, regCols);
8647fe45908Sdrh       }else{
865d6fe961eSdrh         assert( pSelect==0 );  /* Otherwise useTempTable is true */
866d82b5021Sdrh         sqlite3ExprCode(pParse, pList->a[ipkColumn].pExpr, regCols);
8677fe45908Sdrh       }
868728e0f91Sdrh       addr1 = sqlite3VdbeAddOp1(v, OP_NotNull, regCols); VdbeCoverage(v);
86976d462eeSdan       sqlite3VdbeAddOp2(v, OP_Integer, -1, regCols);
870728e0f91Sdrh       sqlite3VdbeJumpHere(v, addr1);
871688852abSdrh       sqlite3VdbeAddOp1(v, OP_MustBeInt, regCols); VdbeCoverage(v);
87270ce3f0cSdrh     }
87370ce3f0cSdrh 
874034ca14fSdanielk1977     /* Cannot have triggers on a virtual table. If it were possible,
875034ca14fSdanielk1977     ** this block would have to account for hidden column.
876034ca14fSdanielk1977     */
877034ca14fSdanielk1977     assert( !IsVirtual(pTab) );
878034ca14fSdanielk1977 
87970ce3f0cSdrh     /* Create the new column data
88070ce3f0cSdrh     */
881b1daa3f4Sdrh     for(i=j=0; i<pTab->nCol; i++){
882b1daa3f4Sdrh       if( pColumn ){
883c3f9bad2Sdanielk1977         for(j=0; j<pColumn->nId; j++){
884c3f9bad2Sdanielk1977           if( pColumn->a[j].idx==i ) break;
885c3f9bad2Sdanielk1977         }
886c3f9bad2Sdanielk1977       }
887b1daa3f4Sdrh       if( (!useTempTable && !pList) || (pColumn && j>=pColumn->nId)
88803d69a68Sdrh             || (pColumn==0 && IsOrdinaryHiddenColumn(&pTab->aCol[i])) ){
88976d462eeSdan         sqlite3ExprCode(pParse, pTab->aCol[i].pDflt, regCols+i+1);
890142e30dfSdrh       }else if( useTempTable ){
89176d462eeSdan         sqlite3VdbeAddOp3(v, OP_Column, srcTab, j, regCols+i+1);
892c3f9bad2Sdanielk1977       }else{
893d6fe961eSdrh         assert( pSelect==0 ); /* Otherwise useTempTable is true */
89476d462eeSdan         sqlite3ExprCodeAndCache(pParse, pList->a[j].pExpr, regCols+i+1);
895c3f9bad2Sdanielk1977       }
89603d69a68Sdrh       if( pColumn==0 && !IsOrdinaryHiddenColumn(&pTab->aCol[i]) ) j++;
897c3f9bad2Sdanielk1977     }
898a37cdde0Sdanielk1977 
899a37cdde0Sdanielk1977     /* If this is an INSERT on a view with an INSTEAD OF INSERT trigger,
900a37cdde0Sdanielk1977     ** do not attempt any conversions before assembling the record.
901a37cdde0Sdanielk1977     ** If this is a real table, attempt conversions as required by the
902a37cdde0Sdanielk1977     ** table column affinities.
903a37cdde0Sdanielk1977     */
904a37cdde0Sdanielk1977     if( !isView ){
90557bf4a8eSdrh       sqlite3TableAffinity(v, pTab, regCols+1);
906a37cdde0Sdanielk1977     }
907c3f9bad2Sdanielk1977 
9085cf590c1Sdrh     /* Fire BEFORE or INSTEAD OF triggers */
909165921a7Sdan     sqlite3CodeRowTrigger(pParse, pTrigger, TK_INSERT, 0, TRIGGER_BEFORE,
91094d7f50aSdan         pTab, regCols-pTab->nCol-1, onError, endOfLoop);
911165921a7Sdan 
91276d462eeSdan     sqlite3ReleaseTempRange(pParse, regCols, pTab->nCol+1);
91370ce3f0cSdrh   }
914c3f9bad2Sdanielk1977 
915d82b5021Sdrh   /* Compute the content of the next row to insert into a range of
916d82b5021Sdrh   ** registers beginning at regIns.
9171ccde15dSdrh   */
9185cf590c1Sdrh   if( !isView ){
9194cbdda9eSdrh     if( IsVirtual(pTab) ){
9204cbdda9eSdrh       /* The row that the VUpdate opcode will delete: none */
9216a288a33Sdrh       sqlite3VdbeAddOp2(v, OP_Null, 0, regIns);
9224cbdda9eSdrh     }
923d82b5021Sdrh     if( ipkColumn>=0 ){
924142e30dfSdrh       if( useTempTable ){
925d82b5021Sdrh         sqlite3VdbeAddOp3(v, OP_Column, srcTab, ipkColumn, regRowid);
926142e30dfSdrh       }else if( pSelect ){
92705a86c5cSdrh         sqlite3VdbeAddOp2(v, OP_Copy, regFromSelect+ipkColumn, regRowid);
9284a32431cSdrh       }else{
929e4d90813Sdrh         VdbeOp *pOp;
930d82b5021Sdrh         sqlite3ExprCode(pParse, pList->a[ipkColumn].pExpr, regRowid);
93120411ea7Sdrh         pOp = sqlite3VdbeGetOp(v, -1);
9329d9c41e2Sdrh         assert( pOp!=0 );
9339d9c41e2Sdrh         if( pOp->opcode==OP_Null && !IsVirtual(pTab) ){
934e4d90813Sdrh           appendFlag = 1;
935e4d90813Sdrh           pOp->opcode = OP_NewRowid;
93626198bb4Sdrh           pOp->p1 = iDataCur;
9376a288a33Sdrh           pOp->p2 = regRowid;
9386a288a33Sdrh           pOp->p3 = regAutoinc;
939e4d90813Sdrh         }
94027a32783Sdrh       }
941f0863fe5Sdrh       /* If the PRIMARY KEY expression is NULL, then use OP_NewRowid
942e1e68f49Sdrh       ** to generate a unique primary key value.
943e1e68f49Sdrh       */
944e4d90813Sdrh       if( !appendFlag ){
945728e0f91Sdrh         int addr1;
946bb50e7adSdanielk1977         if( !IsVirtual(pTab) ){
947728e0f91Sdrh           addr1 = sqlite3VdbeAddOp1(v, OP_NotNull, regRowid); VdbeCoverage(v);
94826198bb4Sdrh           sqlite3VdbeAddOp3(v, OP_NewRowid, iDataCur, regRowid, regAutoinc);
949728e0f91Sdrh           sqlite3VdbeJumpHere(v, addr1);
950bb50e7adSdanielk1977         }else{
951728e0f91Sdrh           addr1 = sqlite3VdbeCurrentAddr(v);
952728e0f91Sdrh           sqlite3VdbeAddOp2(v, OP_IsNull, regRowid, addr1+2); VdbeCoverage(v);
953bb50e7adSdanielk1977         }
954688852abSdrh         sqlite3VdbeAddOp1(v, OP_MustBeInt, regRowid); VdbeCoverage(v);
955e4d90813Sdrh       }
956ec95c441Sdrh     }else if( IsVirtual(pTab) || withoutRowid ){
9576a288a33Sdrh       sqlite3VdbeAddOp2(v, OP_Null, 0, regRowid);
9584a32431cSdrh     }else{
95926198bb4Sdrh       sqlite3VdbeAddOp3(v, OP_NewRowid, iDataCur, regRowid, regAutoinc);
960e4d90813Sdrh       appendFlag = 1;
9614a32431cSdrh     }
9626a288a33Sdrh     autoIncStep(pParse, regAutoinc, regRowid);
9634a32431cSdrh 
964d82b5021Sdrh     /* Compute data for all columns of the new entry, beginning
9654a32431cSdrh     ** with the first column.
9664a32431cSdrh     */
967034ca14fSdanielk1977     nHidden = 0;
968cce7d176Sdrh     for(i=0; i<pTab->nCol; i++){
9696a288a33Sdrh       int iRegStore = regRowid+1+i;
9704a32431cSdrh       if( i==pTab->iPKey ){
9714a32431cSdrh         /* The value of the INTEGER PRIMARY KEY column is always a NULL.
972d82b5021Sdrh         ** Whenever this column is read, the rowid will be substituted
973d82b5021Sdrh         ** in its place.  Hence, fill this column with a NULL to avoid
97405a86c5cSdrh         ** taking up data space with information that will never be used.
97505a86c5cSdrh         ** As there may be shallow copies of this value, make it a soft-NULL */
97605a86c5cSdrh         sqlite3VdbeAddOp1(v, OP_SoftNull, iRegStore);
9774a32431cSdrh         continue;
9784a32431cSdrh       }
979967e8b73Sdrh       if( pColumn==0 ){
980034ca14fSdanielk1977         if( IsHiddenColumn(&pTab->aCol[i]) ){
981034ca14fSdanielk1977           j = -1;
982034ca14fSdanielk1977           nHidden++;
983034ca14fSdanielk1977         }else{
984034ca14fSdanielk1977           j = i - nHidden;
985034ca14fSdanielk1977         }
986cce7d176Sdrh       }else{
987967e8b73Sdrh         for(j=0; j<pColumn->nId; j++){
988967e8b73Sdrh           if( pColumn->a[j].idx==i ) break;
989cce7d176Sdrh         }
990cce7d176Sdrh       }
991034ca14fSdanielk1977       if( j<0 || nColumn==0 || (pColumn && j>=pColumn->nId) ){
99205a86c5cSdrh         sqlite3ExprCodeFactorable(pParse, pTab->aCol[i].pDflt, iRegStore);
993142e30dfSdrh       }else if( useTempTable ){
994287fb61cSdanielk1977         sqlite3VdbeAddOp3(v, OP_Column, srcTab, j, iRegStore);
995142e30dfSdrh       }else if( pSelect ){
99605a86c5cSdrh         if( regFromSelect!=regData ){
997b7654111Sdrh           sqlite3VdbeAddOp2(v, OP_SCopy, regFromSelect+j, iRegStore);
99805a86c5cSdrh         }
999cce7d176Sdrh       }else{
1000287fb61cSdanielk1977         sqlite3ExprCode(pParse, pList->a[j].pExpr, iRegStore);
1001cce7d176Sdrh       }
1002cce7d176Sdrh     }
10031ccde15dSdrh 
10040ca3e24bSdrh     /* Generate code to check constraints and generate index keys and
10050ca3e24bSdrh     ** do the insertion.
10064a32431cSdrh     */
10074cbdda9eSdrh #ifndef SQLITE_OMIT_VIRTUALTABLE
10084cbdda9eSdrh     if( IsVirtual(pTab) ){
1009595a523aSdanielk1977       const char *pVTab = (const char *)sqlite3GetVTable(db, pTab);
10104f3dd150Sdrh       sqlite3VtabMakeWritable(pParse, pTab);
1011595a523aSdanielk1977       sqlite3VdbeAddOp4(v, OP_VUpdate, 1, pTab->nCol+2, regIns, pVTab, P4_VTAB);
1012b061d058Sdan       sqlite3VdbeChangeP5(v, onError==OE_Default ? OE_Abort : onError);
1013e0af83acSdan       sqlite3MayAbort(pParse);
10144cbdda9eSdrh     }else
10154cbdda9eSdrh #endif
10164cbdda9eSdrh     {
1017de630353Sdanielk1977       int isReplace;    /* Set to true if constraints may cause a replace */
10183b908d41Sdan       int bUseSeek;     /* True to use OPFLAG_SEEKRESULT */
1019f8ffb278Sdrh       sqlite3GenerateConstraintChecks(pParse, pTab, aRegIdx, iDataCur, iIdxCur,
1020788d55aaSdrh           regIns, 0, ipkColumn>=0, onError, endOfLoop, &isReplace, 0, pUpsert
102104adf416Sdrh       );
10228ff2d956Sdan       sqlite3FkCheck(pParse, pTab, 0, regIns, 0, 0);
10233b908d41Sdan 
10243b908d41Sdan       /* Set the OPFLAG_USESEEKRESULT flag if either (a) there are no REPLACE
10253b908d41Sdan       ** constraints or (b) there are no triggers and this table is not a
10263b908d41Sdan       ** parent table in a foreign key constraint. It is safe to set the
10273b908d41Sdan       ** flag in the second case as if any REPLACE constraint is hit, an
10283b908d41Sdan       ** OP_Delete or OP_IdxDelete instruction will be executed on each
10293b908d41Sdan       ** cursor that is disturbed. And these instructions both clear the
10303b908d41Sdan       ** VdbeCursor.seekResult variable, disabling the OPFLAG_USESEEKRESULT
10313b908d41Sdan       ** functionality.  */
10323b908d41Sdan       bUseSeek = (isReplace==0 || (pTrigger==0 &&
10333b908d41Sdan           ((db->flags & SQLITE_ForeignKeys)==0 || sqlite3FkReferences(pTab)==0)
10343b908d41Sdan       ));
103526198bb4Sdrh       sqlite3CompleteInsertion(pParse, pTab, iDataCur, iIdxCur,
10363b908d41Sdan           regIns, aRegIdx, 0, appendFlag, bUseSeek
10373b908d41Sdan       );
10385cf590c1Sdrh     }
10394cbdda9eSdrh   }
10401bee3d7bSdrh 
1041feeb1394Sdrh   /* Update the count of rows that are inserted
10421bee3d7bSdrh   */
1043142e30dfSdrh   if( (db->flags & SQLITE_CountRows)!=0 ){
10446a288a33Sdrh     sqlite3VdbeAddOp2(v, OP_AddImm, regRowCount, 1);
10451bee3d7bSdrh   }
1046c3f9bad2Sdanielk1977 
10472f886d1dSdanielk1977   if( pTrigger ){
1048c3f9bad2Sdanielk1977     /* Code AFTER triggers */
1049165921a7Sdan     sqlite3CodeRowTrigger(pParse, pTrigger, TK_INSERT, 0, TRIGGER_AFTER,
105094d7f50aSdan         pTab, regData-2-pTab->nCol, onError, endOfLoop);
1051c3f9bad2Sdanielk1977   }
10521bee3d7bSdrh 
1053e00ee6ebSdrh   /* The bottom of the main insertion loop, if the data source
1054e00ee6ebSdrh   ** is a SELECT statement.
10551ccde15dSdrh   */
10564adee20fSdanielk1977   sqlite3VdbeResolveLabel(v, endOfLoop);
1057142e30dfSdrh   if( useTempTable ){
1058688852abSdrh     sqlite3VdbeAddOp2(v, OP_Next, srcTab, addrCont); VdbeCoverage(v);
1059e00ee6ebSdrh     sqlite3VdbeJumpHere(v, addrInsTop);
10602eb95377Sdrh     sqlite3VdbeAddOp1(v, OP_Close, srcTab);
1061142e30dfSdrh   }else if( pSelect ){
1062076e85f5Sdrh     sqlite3VdbeGoto(v, addrCont);
1063e00ee6ebSdrh     sqlite3VdbeJumpHere(v, addrInsTop);
10646b56344dSdrh   }
1065c3f9bad2Sdanielk1977 
10660b9f50d8Sdrh insert_end:
1067f3388144Sdrh   /* Update the sqlite_sequence table by storing the content of the
10680b9f50d8Sdrh   ** maximum rowid counter values recorded while inserting into
10690b9f50d8Sdrh   ** autoincrement tables.
10702958a4e6Sdrh   */
1071165921a7Sdan   if( pParse->nested==0 && pParse->pTriggerTab==0 ){
10720b9f50d8Sdrh     sqlite3AutoincrementEnd(pParse);
10730b9f50d8Sdrh   }
10742958a4e6Sdrh 
10751bee3d7bSdrh   /*
1076e7de6f25Sdanielk1977   ** Return the number of rows inserted. If this routine is
1077e7de6f25Sdanielk1977   ** generating code because of a call to sqlite3NestedParse(), do not
1078e7de6f25Sdanielk1977   ** invoke the callback function.
10791bee3d7bSdrh   */
1080165921a7Sdan   if( (db->flags&SQLITE_CountRows) && !pParse->nested && !pParse->pTriggerTab ){
10816a288a33Sdrh     sqlite3VdbeAddOp2(v, OP_ResultRow, regRowCount, 1);
108222322fd4Sdanielk1977     sqlite3VdbeSetNumCols(v, 1);
108310fb749bSdanielk1977     sqlite3VdbeSetColName(v, 0, COLNAME_NAME, "rows inserted", SQLITE_STATIC);
10841bee3d7bSdrh   }
1085cce7d176Sdrh 
1086cce7d176Sdrh insert_cleanup:
1087633e6d57Sdrh   sqlite3SrcListDelete(db, pTabList);
1088633e6d57Sdrh   sqlite3ExprListDelete(db, pList);
108946d2e5c3Sdrh   sqlite3UpsertDelete(db, pUpsert);
1090633e6d57Sdrh   sqlite3SelectDelete(db, pSelect);
1091633e6d57Sdrh   sqlite3IdListDelete(db, pColumn);
1092633e6d57Sdrh   sqlite3DbFree(db, aRegIdx);
1093cce7d176Sdrh }
10949cfcf5d4Sdrh 
109575cbd984Sdan /* Make sure "isView" and other macros defined above are undefined. Otherwise
109660ec914cSpeter.d.reid ** they may interfere with compilation of other functions in this file
109775cbd984Sdan ** (or in another file, if this file becomes part of the amalgamation).  */
109875cbd984Sdan #ifdef isView
109975cbd984Sdan  #undef isView
110075cbd984Sdan #endif
110175cbd984Sdan #ifdef pTrigger
110275cbd984Sdan  #undef pTrigger
110375cbd984Sdan #endif
110475cbd984Sdan #ifdef tmask
110575cbd984Sdan  #undef tmask
110675cbd984Sdan #endif
110775cbd984Sdan 
11089cfcf5d4Sdrh /*
110998bfa16dSdrh ** Meanings of bits in of pWalker->eCode for checkConstraintUnchanged()
111098bfa16dSdrh */
111198bfa16dSdrh #define CKCNSTRNT_COLUMN   0x01    /* CHECK constraint uses a changing column */
111298bfa16dSdrh #define CKCNSTRNT_ROWID    0x02    /* CHECK constraint references the ROWID */
111398bfa16dSdrh 
11142a0b527bSdrh /* This is the Walker callback from checkConstraintUnchanged().  Set
111598bfa16dSdrh ** bit 0x01 of pWalker->eCode if
11162a0b527bSdrh ** pWalker->eCode to 0 if this expression node references any of the
11172a0b527bSdrh ** columns that are being modifed by an UPDATE statement.
11182a0b527bSdrh */
11192a0b527bSdrh static int checkConstraintExprNode(Walker *pWalker, Expr *pExpr){
112098bfa16dSdrh   if( pExpr->op==TK_COLUMN ){
112198bfa16dSdrh     assert( pExpr->iColumn>=0 || pExpr->iColumn==-1 );
112298bfa16dSdrh     if( pExpr->iColumn>=0 ){
112398bfa16dSdrh       if( pWalker->u.aiCol[pExpr->iColumn]>=0 ){
112498bfa16dSdrh         pWalker->eCode |= CKCNSTRNT_COLUMN;
112598bfa16dSdrh       }
112698bfa16dSdrh     }else{
112798bfa16dSdrh       pWalker->eCode |= CKCNSTRNT_ROWID;
112898bfa16dSdrh     }
11292a0b527bSdrh   }
11302a0b527bSdrh   return WRC_Continue;
11312a0b527bSdrh }
11322a0b527bSdrh 
11332a0b527bSdrh /*
11342a0b527bSdrh ** pExpr is a CHECK constraint on a row that is being UPDATE-ed.  The
11352a0b527bSdrh ** only columns that are modified by the UPDATE are those for which
113698bfa16dSdrh ** aiChng[i]>=0, and also the ROWID is modified if chngRowid is true.
113798bfa16dSdrh **
113898bfa16dSdrh ** Return true if CHECK constraint pExpr does not use any of the
113998bfa16dSdrh ** changing columns (or the rowid if it is changing).  In other words,
114098bfa16dSdrh ** return true if this CHECK constraint can be skipped when validating
114198bfa16dSdrh ** the new row in the UPDATE statement.
11422a0b527bSdrh */
114398bfa16dSdrh static int checkConstraintUnchanged(Expr *pExpr, int *aiChng, int chngRowid){
11442a0b527bSdrh   Walker w;
11452a0b527bSdrh   memset(&w, 0, sizeof(w));
114698bfa16dSdrh   w.eCode = 0;
11472a0b527bSdrh   w.xExprCallback = checkConstraintExprNode;
11482a0b527bSdrh   w.u.aiCol = aiChng;
11492a0b527bSdrh   sqlite3WalkExpr(&w, pExpr);
115005723a9eSdrh   if( !chngRowid ){
115105723a9eSdrh     testcase( (w.eCode & CKCNSTRNT_ROWID)!=0 );
115205723a9eSdrh     w.eCode &= ~CKCNSTRNT_ROWID;
115305723a9eSdrh   }
115405723a9eSdrh   testcase( w.eCode==0 );
115505723a9eSdrh   testcase( w.eCode==CKCNSTRNT_COLUMN );
115605723a9eSdrh   testcase( w.eCode==CKCNSTRNT_ROWID );
115705723a9eSdrh   testcase( w.eCode==(CKCNSTRNT_ROWID|CKCNSTRNT_COLUMN) );
115898bfa16dSdrh   return !w.eCode;
11592a0b527bSdrh }
11602a0b527bSdrh 
116111e85273Sdrh /*
1162096fd476Sdrh ** An instance of the ConstraintAddr object remembers the byte-code addresses
1163096fd476Sdrh ** for sections of the constraint checks that deal with uniqueness constraints
1164096fd476Sdrh ** on the rowid and on the upsert constraint.
1165096fd476Sdrh **
1166096fd476Sdrh ** This information is passed into checkReorderConstraintChecks() to insert
1167096fd476Sdrh ** some OP_Goto operations so that the rowid and upsert constraints occur
1168096fd476Sdrh ** in the correct order relative to other constraints.
1169096fd476Sdrh */
1170096fd476Sdrh typedef struct ConstraintAddr ConstraintAddr;
1171096fd476Sdrh struct ConstraintAddr {
1172096fd476Sdrh   int ipkTop;          /* Subroutine for rowid constraint check */
1173096fd476Sdrh   int upsertTop;       /* Label for upsert constraint check subroutine */
1174096fd476Sdrh   int ipkBtm;          /* Return opcode rowid constraint check */
1175096fd476Sdrh   int upsertBtm;       /* upsert constraint returns to this label */
1176096fd476Sdrh };
1177096fd476Sdrh 
1178096fd476Sdrh /*
1179096fd476Sdrh ** Generate any OP_Goto operations needed to cause constraints to be
1180096fd476Sdrh ** run that haven't already been run.
1181096fd476Sdrh */
1182096fd476Sdrh static void reorderConstraintChecks(Vdbe *v, ConstraintAddr *p){
1183096fd476Sdrh   if( p->upsertTop ){
1184096fd476Sdrh     sqlite3VdbeGoto(v, p->upsertTop);
1185096fd476Sdrh     VdbeComment((v, "call upsert subroutine"));
1186096fd476Sdrh     sqlite3VdbeResolveLabel(v, p->upsertBtm);
1187096fd476Sdrh     p->upsertTop = 0;
1188096fd476Sdrh   }
1189096fd476Sdrh   if( p->ipkTop ){
1190096fd476Sdrh     sqlite3VdbeGoto(v, p->ipkTop);
1191096fd476Sdrh     VdbeComment((v, "call rowid constraint-check subroutine"));
1192096fd476Sdrh     sqlite3VdbeJumpHere(v, p->ipkBtm);
1193096fd476Sdrh     p->ipkTop = 0;
1194096fd476Sdrh   }
1195096fd476Sdrh }
1196096fd476Sdrh 
1197096fd476Sdrh /*
11986934fc7bSdrh ** Generate code to do constraint checks prior to an INSERT or an UPDATE
11996934fc7bSdrh ** on table pTab.
12009cfcf5d4Sdrh **
12016934fc7bSdrh ** The regNewData parameter is the first register in a range that contains
12026934fc7bSdrh ** the data to be inserted or the data after the update.  There will be
12036934fc7bSdrh ** pTab->nCol+1 registers in this range.  The first register (the one
12046934fc7bSdrh ** that regNewData points to) will contain the new rowid, or NULL in the
12056934fc7bSdrh ** case of a WITHOUT ROWID table.  The second register in the range will
12066934fc7bSdrh ** contain the content of the first table column.  The third register will
12076934fc7bSdrh ** contain the content of the second table column.  And so forth.
12080ca3e24bSdrh **
1209f8ffb278Sdrh ** The regOldData parameter is similar to regNewData except that it contains
1210f8ffb278Sdrh ** the data prior to an UPDATE rather than afterwards.  regOldData is zero
1211f8ffb278Sdrh ** for an INSERT.  This routine can distinguish between UPDATE and INSERT by
1212f8ffb278Sdrh ** checking regOldData for zero.
12130ca3e24bSdrh **
1214f8ffb278Sdrh ** For an UPDATE, the pkChng boolean is true if the true primary key (the
1215f8ffb278Sdrh ** rowid for a normal table or the PRIMARY KEY for a WITHOUT ROWID table)
1216f8ffb278Sdrh ** might be modified by the UPDATE.  If pkChng is false, then the key of
1217f8ffb278Sdrh ** the iDataCur content table is guaranteed to be unchanged by the UPDATE.
12180ca3e24bSdrh **
1219f8ffb278Sdrh ** For an INSERT, the pkChng boolean indicates whether or not the rowid
1220f8ffb278Sdrh ** was explicitly specified as part of the INSERT statement.  If pkChng
1221f8ffb278Sdrh ** is zero, it means that the either rowid is computed automatically or
1222f8ffb278Sdrh ** that the table is a WITHOUT ROWID table and has no rowid.  On an INSERT,
1223f8ffb278Sdrh ** pkChng will only be true if the INSERT statement provides an integer
1224f8ffb278Sdrh ** value for either the rowid column or its INTEGER PRIMARY KEY alias.
12250ca3e24bSdrh **
12266934fc7bSdrh ** The code generated by this routine will store new index entries into
1227aa9b8963Sdrh ** registers identified by aRegIdx[].  No index entry is created for
1228aa9b8963Sdrh ** indices where aRegIdx[i]==0.  The order of indices in aRegIdx[] is
1229aa9b8963Sdrh ** the same as the order of indices on the linked list of indices
12306934fc7bSdrh ** at pTab->pIndex.
12316934fc7bSdrh **
12326934fc7bSdrh ** The caller must have already opened writeable cursors on the main
12336934fc7bSdrh ** table and all applicable indices (that is to say, all indices for which
12346934fc7bSdrh ** aRegIdx[] is not zero).  iDataCur is the cursor for the main table when
12356934fc7bSdrh ** inserting or updating a rowid table, or the cursor for the PRIMARY KEY
12366934fc7bSdrh ** index when operating on a WITHOUT ROWID table.  iIdxCur is the cursor
12376934fc7bSdrh ** for the first index in the pTab->pIndex list.  Cursors for other indices
12386934fc7bSdrh ** are at iIdxCur+N for the N-th element of the pTab->pIndex list.
12399cfcf5d4Sdrh **
12409cfcf5d4Sdrh ** This routine also generates code to check constraints.  NOT NULL,
12419cfcf5d4Sdrh ** CHECK, and UNIQUE constraints are all checked.  If a constraint fails,
12421c92853dSdrh ** then the appropriate action is performed.  There are five possible
12431c92853dSdrh ** actions: ROLLBACK, ABORT, FAIL, REPLACE, and IGNORE.
12449cfcf5d4Sdrh **
12459cfcf5d4Sdrh **  Constraint type  Action       What Happens
12469cfcf5d4Sdrh **  ---------------  ----------   ----------------------------------------
12471c92853dSdrh **  any              ROLLBACK     The current transaction is rolled back and
12486934fc7bSdrh **                                sqlite3_step() returns immediately with a
12499cfcf5d4Sdrh **                                return code of SQLITE_CONSTRAINT.
12509cfcf5d4Sdrh **
12511c92853dSdrh **  any              ABORT        Back out changes from the current command
12521c92853dSdrh **                                only (do not do a complete rollback) then
12536934fc7bSdrh **                                cause sqlite3_step() to return immediately
12541c92853dSdrh **                                with SQLITE_CONSTRAINT.
12551c92853dSdrh **
12566934fc7bSdrh **  any              FAIL         Sqlite3_step() returns immediately with a
12571c92853dSdrh **                                return code of SQLITE_CONSTRAINT.  The
12581c92853dSdrh **                                transaction is not rolled back and any
12596934fc7bSdrh **                                changes to prior rows are retained.
12601c92853dSdrh **
12616934fc7bSdrh **  any              IGNORE       The attempt in insert or update the current
12626934fc7bSdrh **                                row is skipped, without throwing an error.
12636934fc7bSdrh **                                Processing continues with the next row.
12646934fc7bSdrh **                                (There is an immediate jump to ignoreDest.)
12659cfcf5d4Sdrh **
12669cfcf5d4Sdrh **  NOT NULL         REPLACE      The NULL value is replace by the default
12679cfcf5d4Sdrh **                                value for that column.  If the default value
12689cfcf5d4Sdrh **                                is NULL, the action is the same as ABORT.
12699cfcf5d4Sdrh **
12709cfcf5d4Sdrh **  UNIQUE           REPLACE      The other row that conflicts with the row
12719cfcf5d4Sdrh **                                being inserted is removed.
12729cfcf5d4Sdrh **
12739cfcf5d4Sdrh **  CHECK            REPLACE      Illegal.  The results in an exception.
12749cfcf5d4Sdrh **
12751c92853dSdrh ** Which action to take is determined by the overrideError parameter.
12761c92853dSdrh ** Or if overrideError==OE_Default, then the pParse->onError parameter
12771c92853dSdrh ** is used.  Or if pParse->onError==OE_Default then the onError value
12781c92853dSdrh ** for the constraint is used.
12799cfcf5d4Sdrh */
12804adee20fSdanielk1977 void sqlite3GenerateConstraintChecks(
12819cfcf5d4Sdrh   Parse *pParse,       /* The parser context */
12826934fc7bSdrh   Table *pTab,         /* The table being inserted or updated */
1283f8ffb278Sdrh   int *aRegIdx,        /* Use register aRegIdx[i] for index i.  0 for unused */
12846934fc7bSdrh   int iDataCur,        /* Canonical data cursor (main table or PK index) */
128526198bb4Sdrh   int iIdxCur,         /* First index cursor */
12866934fc7bSdrh   int regNewData,      /* First register in a range holding values to insert */
1287f8ffb278Sdrh   int regOldData,      /* Previous content.  0 for INSERTs */
1288f8ffb278Sdrh   u8 pkChng,           /* Non-zero if the rowid or PRIMARY KEY changed */
1289f8ffb278Sdrh   u8 overrideError,    /* Override onError to this if not OE_Default */
1290de630353Sdanielk1977   int ignoreDest,      /* Jump to this label on an OE_Ignore resolution */
1291bdb00225Sdrh   int *pbMayReplace,   /* OUT: Set to true if constraint may cause a replace */
1292788d55aaSdrh   int *aiChng,         /* column i is unchanged if aiChng[i]<0 */
1293788d55aaSdrh   Upsert *pUpsert      /* ON CONFLICT clauses, if any.  NULL otherwise */
12949cfcf5d4Sdrh ){
12951b7ecbb4Sdrh   Vdbe *v;             /* VDBE under constrution */
12961b7ecbb4Sdrh   Index *pIdx;         /* Pointer to one of the indices */
129711e85273Sdrh   Index *pPk = 0;      /* The PRIMARY KEY index */
12982938f924Sdrh   sqlite3 *db;         /* Database connection */
1299f8ffb278Sdrh   int i;               /* loop counter */
1300f8ffb278Sdrh   int ix;              /* Index loop counter */
13019cfcf5d4Sdrh   int nCol;            /* Number of columns */
13029cfcf5d4Sdrh   int onError;         /* Conflict resolution strategy */
1303728e0f91Sdrh   int addr1;           /* Address of jump instruction */
13041b7ecbb4Sdrh   int seenReplace = 0; /* True if REPLACE is used to resolve INT PK conflict */
13056fbe41acSdrh   int nPkField;        /* Number of fields in PRIMARY KEY. 1 for ROWID tables */
1306096fd476Sdrh   ConstraintAddr sAddr;/* Address information for constraint reordering */
1307096fd476Sdrh   Index *pUpIdx = 0;   /* Index to which to apply the upsert */
13088d1b82e4Sdrh   u8 isUpdate;         /* True if this is an UPDATE operation */
130957bf4a8eSdrh   u8 bAffinityDone = 0;  /* True if the OP_Affinity operation has been run */
1310096fd476Sdrh   int upsertBypass = 0;  /* Address of Goto to bypass upsert subroutine */
13119cfcf5d4Sdrh 
1312f8ffb278Sdrh   isUpdate = regOldData!=0;
13132938f924Sdrh   db = pParse->db;
13144adee20fSdanielk1977   v = sqlite3GetVdbe(pParse);
13159cfcf5d4Sdrh   assert( v!=0 );
1316417be79cSdrh   assert( pTab->pSelect==0 );  /* This table is not a VIEW */
13179cfcf5d4Sdrh   nCol = pTab->nCol;
1318096fd476Sdrh   sAddr.ipkTop = 0;
1319096fd476Sdrh   sAddr.upsertTop = 0;
1320aa9b8963Sdrh 
13216934fc7bSdrh   /* pPk is the PRIMARY KEY index for WITHOUT ROWID tables and NULL for
13226934fc7bSdrh   ** normal rowid tables.  nPkField is the number of key fields in the
13236934fc7bSdrh   ** pPk index or 1 for a rowid table.  In other words, nPkField is the
13246934fc7bSdrh   ** number of fields in the true primary key of the table. */
132526198bb4Sdrh   if( HasRowid(pTab) ){
132626198bb4Sdrh     pPk = 0;
132726198bb4Sdrh     nPkField = 1;
132826198bb4Sdrh   }else{
132926198bb4Sdrh     pPk = sqlite3PrimaryKeyIndex(pTab);
133026198bb4Sdrh     nPkField = pPk->nKeyCol;
133126198bb4Sdrh   }
13326fbe41acSdrh 
13336fbe41acSdrh   /* Record that this module has started */
13346fbe41acSdrh   VdbeModuleComment((v, "BEGIN: GenCnstCks(%d,%d,%d,%d,%d)",
13356934fc7bSdrh                      iDataCur, iIdxCur, regNewData, regOldData, pkChng));
13369cfcf5d4Sdrh 
13379cfcf5d4Sdrh   /* Test all NOT NULL constraints.
13389cfcf5d4Sdrh   */
13399cfcf5d4Sdrh   for(i=0; i<nCol; i++){
13400ca3e24bSdrh     if( i==pTab->iPKey ){
1341bdb00225Sdrh       continue;        /* ROWID is never NULL */
1342bdb00225Sdrh     }
1343bdb00225Sdrh     if( aiChng && aiChng[i]<0 ){
1344bdb00225Sdrh       /* Don't bother checking for NOT NULL on columns that do not change */
13450ca3e24bSdrh       continue;
13460ca3e24bSdrh     }
13479cfcf5d4Sdrh     onError = pTab->aCol[i].notNull;
1348bdb00225Sdrh     if( onError==OE_None ) continue;  /* This column is allowed to be NULL */
13499cfcf5d4Sdrh     if( overrideError!=OE_Default ){
13509cfcf5d4Sdrh       onError = overrideError;
1351a996e477Sdrh     }else if( onError==OE_Default ){
1352a996e477Sdrh       onError = OE_Abort;
13539cfcf5d4Sdrh     }
13547977a17fSdanielk1977     if( onError==OE_Replace && pTab->aCol[i].pDflt==0 ){
13559cfcf5d4Sdrh       onError = OE_Abort;
13569cfcf5d4Sdrh     }
1357b84f96f8Sdanielk1977     assert( onError==OE_Rollback || onError==OE_Abort || onError==OE_Fail
1358b84f96f8Sdanielk1977         || onError==OE_Ignore || onError==OE_Replace );
13599cfcf5d4Sdrh     switch( onError ){
13601c92853dSdrh       case OE_Abort:
1361e0af83acSdan         sqlite3MayAbort(pParse);
13620978d4ffSdrh         /* Fall through */
1363e0af83acSdan       case OE_Rollback:
13641c92853dSdrh       case OE_Fail: {
1365f9c8ce3cSdrh         char *zMsg = sqlite3MPrintf(db, "%s.%s", pTab->zName,
1366f9c8ce3cSdrh                                     pTab->aCol[i].zName);
13672700acaaSdrh         sqlite3VdbeAddOp3(v, OP_HaltIfNull, SQLITE_CONSTRAINT_NOTNULL, onError,
13682700acaaSdrh                           regNewData+1+i);
13692700acaaSdrh         sqlite3VdbeAppendP4(v, zMsg, P4_DYNAMIC);
1370f9c8ce3cSdrh         sqlite3VdbeChangeP5(v, P5_ConstraintNotNull);
1371688852abSdrh         VdbeCoverage(v);
13729cfcf5d4Sdrh         break;
13739cfcf5d4Sdrh       }
13749cfcf5d4Sdrh       case OE_Ignore: {
13756934fc7bSdrh         sqlite3VdbeAddOp2(v, OP_IsNull, regNewData+1+i, ignoreDest);
1376688852abSdrh         VdbeCoverage(v);
13779cfcf5d4Sdrh         break;
13789cfcf5d4Sdrh       }
1379098d1684Sdrh       default: {
1380098d1684Sdrh         assert( onError==OE_Replace );
1381728e0f91Sdrh         addr1 = sqlite3VdbeAddOp1(v, OP_NotNull, regNewData+1+i);
1382728e0f91Sdrh            VdbeCoverage(v);
13836934fc7bSdrh         sqlite3ExprCode(pParse, pTab->aCol[i].pDflt, regNewData+1+i);
1384728e0f91Sdrh         sqlite3VdbeJumpHere(v, addr1);
13859cfcf5d4Sdrh         break;
13869cfcf5d4Sdrh       }
13879cfcf5d4Sdrh     }
13889cfcf5d4Sdrh   }
13899cfcf5d4Sdrh 
13909cfcf5d4Sdrh   /* Test all CHECK constraints
13919cfcf5d4Sdrh   */
1392ffe07b2dSdrh #ifndef SQLITE_OMIT_CHECK
13932938f924Sdrh   if( pTab->pCheck && (db->flags & SQLITE_IgnoreChecks)==0 ){
13942938f924Sdrh     ExprList *pCheck = pTab->pCheck;
13956e97f8ecSdrh     pParse->iSelfTab = -(regNewData+1);
1396aa01c7e2Sdrh     onError = overrideError!=OE_Default ? overrideError : OE_Abort;
13972938f924Sdrh     for(i=0; i<pCheck->nExpr; i++){
139805723a9eSdrh       int allOk;
13992a0b527bSdrh       Expr *pExpr = pCheck->a[i].pExpr;
140098bfa16dSdrh       if( aiChng && checkConstraintUnchanged(pExpr, aiChng, pkChng) ) continue;
140105723a9eSdrh       allOk = sqlite3VdbeMakeLabel(v);
14022a0b527bSdrh       sqlite3ExprIfTrue(pParse, pExpr, allOk, SQLITE_JUMPIFNULL);
14032e06c67cSdrh       if( onError==OE_Ignore ){
1404076e85f5Sdrh         sqlite3VdbeGoto(v, ignoreDest);
1405aa01c7e2Sdrh       }else{
1406f9c8ce3cSdrh         char *zName = pCheck->a[i].zName;
1407f9c8ce3cSdrh         if( zName==0 ) zName = pTab->zName;
14086dc84902Sdrh         if( onError==OE_Replace ) onError = OE_Abort; /* IMP: R-15569-63625 */
1409d91c1a17Sdrh         sqlite3HaltConstraint(pParse, SQLITE_CONSTRAINT_CHECK,
1410f9c8ce3cSdrh                               onError, zName, P4_TRANSIENT,
1411f9c8ce3cSdrh                               P5_ConstraintCheck);
1412aa01c7e2Sdrh       }
1413ffe07b2dSdrh       sqlite3VdbeResolveLabel(v, allOk);
1414ffe07b2dSdrh     }
14156e97f8ecSdrh     pParse->iSelfTab = 0;
14162938f924Sdrh   }
1417ffe07b2dSdrh #endif /* !defined(SQLITE_OMIT_CHECK) */
14189cfcf5d4Sdrh 
1419096fd476Sdrh   /* UNIQUE and PRIMARY KEY constraints should be handled in the following
1420096fd476Sdrh   ** order:
1421096fd476Sdrh   **
1422096fd476Sdrh   **   (1)  OE_Abort, OE_Fail, OE_Rollback, OE_Ignore
1423096fd476Sdrh   **   (2)  OE_Update
1424096fd476Sdrh   **   (3)  OE_Replace
1425096fd476Sdrh   **
1426096fd476Sdrh   ** OE_Fail and OE_Ignore must happen before any changes are made.
1427096fd476Sdrh   ** OE_Update guarantees that only a single row will change, so it
1428096fd476Sdrh   ** must happen before OE_Replace.  Technically, OE_Abort and OE_Rollback
1429096fd476Sdrh   ** could happen in any order, but they are grouped up front for
1430096fd476Sdrh   ** convenience.
1431096fd476Sdrh   **
1432096fd476Sdrh   ** Constraint checking code is generated in this order:
1433096fd476Sdrh   **   (A)  The rowid constraint
1434096fd476Sdrh   **   (B)  Unique index constraints that do not have OE_Replace as their
1435096fd476Sdrh   **        default conflict resolution strategy
1436096fd476Sdrh   **   (C)  Unique index that do use OE_Replace by default.
1437096fd476Sdrh   **
1438096fd476Sdrh   ** The ordering of (2) and (3) is accomplished by making sure the linked
1439096fd476Sdrh   ** list of indexes attached to a table puts all OE_Replace indexes last
1440096fd476Sdrh   ** in the list.  See sqlite3CreateIndex() for where that happens.
1441096fd476Sdrh   */
1442096fd476Sdrh 
1443096fd476Sdrh   if( pUpsert ){
1444096fd476Sdrh     if( pUpsert->pUpsertTarget==0 ){
1445096fd476Sdrh       /* An ON CONFLICT DO NOTHING clause, without a constraint-target.
1446096fd476Sdrh       ** Make all unique constraint resolution be OE_Ignore */
1447*dedbc508Sdrh       assert( pUpsert->pUpsertSet==0 );
1448096fd476Sdrh       overrideError = OE_Ignore;
1449096fd476Sdrh       pUpsert = 0;
1450096fd476Sdrh     }else if( (pUpIdx = pUpsert->pUpsertIdx)!=0 ){
1451*dedbc508Sdrh       /* If the constraint-target is on some column other than
1452*dedbc508Sdrh       ** then ROWID, then we might need to move the UPSERT around
1453*dedbc508Sdrh       ** so that it occurs in the correct order. */
1454096fd476Sdrh       sAddr.upsertTop = sqlite3VdbeMakeLabel(v);
1455096fd476Sdrh       sAddr.upsertBtm = sqlite3VdbeMakeLabel(v);
1456096fd476Sdrh     }
1457096fd476Sdrh   }
1458096fd476Sdrh 
1459f8ffb278Sdrh   /* If rowid is changing, make sure the new rowid does not previously
1460f8ffb278Sdrh   ** exist in the table.
14619cfcf5d4Sdrh   */
14626fbe41acSdrh   if( pkChng && pPk==0 ){
146311e85273Sdrh     int addrRowidOk = sqlite3VdbeMakeLabel(v);
146411e85273Sdrh 
1465f8ffb278Sdrh     /* Figure out what action to take in case of a rowid collision */
14660ca3e24bSdrh     onError = pTab->keyConf;
14670ca3e24bSdrh     if( overrideError!=OE_Default ){
14680ca3e24bSdrh       onError = overrideError;
1469a996e477Sdrh     }else if( onError==OE_Default ){
1470a996e477Sdrh       onError = OE_Abort;
14710ca3e24bSdrh     }
1472a0217ba7Sdrh 
147379b0c956Sdrh     if( isUpdate ){
14747405fa74Sdrh       /* pkChng!=0 does not mean that the rowid has changed, only that
1475f8ffb278Sdrh       ** it might have changed.  Skip the conflict logic below if the rowid
1476f8ffb278Sdrh       ** is unchanged. */
14776934fc7bSdrh       sqlite3VdbeAddOp3(v, OP_Eq, regNewData, addrRowidOk, regOldData);
14783d77dee9Sdrh       sqlite3VdbeChangeP5(v, SQLITE_NOTNULL);
1479688852abSdrh       VdbeCoverage(v);
148079b0c956Sdrh     }
1481f8ffb278Sdrh 
1482c8a0c90bSdrh     /* figure out whether or not upsert applies in this case */
1483096fd476Sdrh     if( pUpsert && pUpsert->pUpsertIdx==0 ){
1484c8a0c90bSdrh       if( pUpsert->pUpsertSet==0 ){
1485c8a0c90bSdrh         onError = OE_Ignore;  /* DO NOTHING is the same as INSERT OR IGNORE */
1486c8a0c90bSdrh       }else{
1487c8a0c90bSdrh         onError = OE_Update;  /* DO UPDATE */
1488c8a0c90bSdrh       }
1489c8a0c90bSdrh     }
1490c8a0c90bSdrh 
14918d1b82e4Sdrh     /* If the response to a rowid conflict is REPLACE but the response
14928d1b82e4Sdrh     ** to some other UNIQUE constraint is FAIL or IGNORE, then we need
14938d1b82e4Sdrh     ** to defer the running of the rowid conflict checking until after
14948d1b82e4Sdrh     ** the UNIQUE constraints have run.
14958d1b82e4Sdrh     */
1496096fd476Sdrh     assert( OE_Update>OE_Replace );
1497096fd476Sdrh     assert( OE_Ignore<OE_Replace );
1498096fd476Sdrh     assert( OE_Fail<OE_Replace );
1499096fd476Sdrh     assert( OE_Abort<OE_Replace );
1500096fd476Sdrh     assert( OE_Rollback<OE_Replace );
1501096fd476Sdrh     if( onError>=OE_Replace
1502096fd476Sdrh      && onError!=overrideError
1503096fd476Sdrh      && pTab->pIndex
1504096fd476Sdrh     ){
1505096fd476Sdrh       sAddr.ipkTop = sqlite3VdbeAddOp0(v, OP_Goto)+1;
15068d1b82e4Sdrh     }
15078d1b82e4Sdrh 
1508f8ffb278Sdrh     /* Check to see if the new rowid already exists in the table.  Skip
1509f8ffb278Sdrh     ** the following conflict logic if it does not. */
1510096fd476Sdrh     VdbeNoopComment((v, "constraint checks for ROWID"));
15116934fc7bSdrh     sqlite3VdbeAddOp3(v, OP_NotExists, iDataCur, addrRowidOk, regNewData);
1512688852abSdrh     VdbeCoverage(v);
1513f8ffb278Sdrh 
15140ca3e24bSdrh     switch( onError ){
1515a0217ba7Sdrh       default: {
1516a0217ba7Sdrh         onError = OE_Abort;
1517a0217ba7Sdrh         /* Fall thru into the next case */
1518a0217ba7Sdrh       }
15191c92853dSdrh       case OE_Rollback:
15201c92853dSdrh       case OE_Abort:
15211c92853dSdrh       case OE_Fail: {
1522f9c8ce3cSdrh         sqlite3RowidConstraint(pParse, onError, pTab);
15230ca3e24bSdrh         break;
15240ca3e24bSdrh       }
15255383ae5cSdrh       case OE_Replace: {
15262283d46cSdan         /* If there are DELETE triggers on this table and the
15272283d46cSdan         ** recursive-triggers flag is set, call GenerateRowDelete() to
1528d5578433Smistachkin         ** remove the conflicting row from the table. This will fire
15292283d46cSdan         ** the triggers and remove both the table and index b-tree entries.
15302283d46cSdan         **
15312283d46cSdan         ** Otherwise, if there are no triggers or the recursive-triggers
1532da730f6eSdan         ** flag is not set, but the table has one or more indexes, call
1533da730f6eSdan         ** GenerateRowIndexDelete(). This removes the index b-tree entries
1534da730f6eSdan         ** only. The table b-tree entry will be replaced by the new entry
1535da730f6eSdan         ** when it is inserted.
1536da730f6eSdan         **
1537da730f6eSdan         ** If either GenerateRowDelete() or GenerateRowIndexDelete() is called,
1538da730f6eSdan         ** also invoke MultiWrite() to indicate that this VDBE may require
1539da730f6eSdan         ** statement rollback (if the statement is aborted after the delete
1540da730f6eSdan         ** takes place). Earlier versions called sqlite3MultiWrite() regardless,
1541da730f6eSdan         ** but being more selective here allows statements like:
1542da730f6eSdan         **
1543da730f6eSdan         **   REPLACE INTO t(rowid) VALUES($newrowid)
1544da730f6eSdan         **
1545da730f6eSdan         ** to run without a statement journal if there are no indexes on the
1546da730f6eSdan         ** table.
1547da730f6eSdan         */
15482283d46cSdan         Trigger *pTrigger = 0;
15492938f924Sdrh         if( db->flags&SQLITE_RecTriggers ){
15502283d46cSdan           pTrigger = sqlite3TriggersExist(pParse, pTab, TK_DELETE, 0, 0);
15512283d46cSdan         }
1552e7a94d81Sdan         if( pTrigger || sqlite3FkRequired(pParse, pTab, 0, 0) ){
1553da730f6eSdan           sqlite3MultiWrite(pParse);
155426198bb4Sdrh           sqlite3GenerateRowDelete(pParse, pTab, pTrigger, iDataCur, iIdxCur,
1555438b8815Sdan                                    regNewData, 1, 0, OE_Replace, 1, -1);
155646c47d46Sdan         }else{
15579b1c62d4Sdrh #ifdef SQLITE_ENABLE_PREUPDATE_HOOK
155854f2cd90Sdrh           assert( HasRowid(pTab) );
155946c47d46Sdan           /* This OP_Delete opcode fires the pre-update-hook only. It does
156046c47d46Sdan           ** not modify the b-tree. It is more efficient to let the coming
156146c47d46Sdan           ** OP_Insert replace the existing entry than it is to delete the
156246c47d46Sdan           ** existing entry and then insert a new one. */
1563cbf1b8efSdrh           sqlite3VdbeAddOp2(v, OP_Delete, iDataCur, OPFLAG_ISNOOP);
1564f14b7fb7Sdrh           sqlite3VdbeAppendP4(v, pTab, P4_TABLE);
15659b1c62d4Sdrh #endif /* SQLITE_ENABLE_PREUPDATE_HOOK */
156646c47d46Sdan           if( pTab->pIndex ){
1567da730f6eSdan             sqlite3MultiWrite(pParse);
1568f0ee1d3cSdan             sqlite3GenerateRowIndexDelete(pParse, pTab, iDataCur, iIdxCur,0,-1);
15692283d46cSdan           }
157046c47d46Sdan         }
15715383ae5cSdrh         seenReplace = 1;
15725383ae5cSdrh         break;
15735383ae5cSdrh       }
15749eddacadSdrh #ifndef SQLITE_OMIT_UPSERT
15759eddacadSdrh       case OE_Update: {
15762cc00423Sdan         sqlite3UpsertDoUpdate(pParse, pUpsert, pTab, 0, iDataCur);
15779eddacadSdrh         /* Fall through */
15789eddacadSdrh       }
15799eddacadSdrh #endif
15800ca3e24bSdrh       case OE_Ignore: {
1581076e85f5Sdrh         sqlite3VdbeGoto(v, ignoreDest);
15820ca3e24bSdrh         break;
15830ca3e24bSdrh       }
15840ca3e24bSdrh     }
158511e85273Sdrh     sqlite3VdbeResolveLabel(v, addrRowidOk);
1586096fd476Sdrh     if( sAddr.ipkTop ){
1587096fd476Sdrh       sAddr.ipkBtm = sqlite3VdbeAddOp0(v, OP_Goto);
1588096fd476Sdrh       sqlite3VdbeJumpHere(v, sAddr.ipkTop-1);
1589a05a722fSdrh     }
15900ca3e24bSdrh   }
15910bd1f4eaSdrh 
15920bd1f4eaSdrh   /* Test all UNIQUE constraints by creating entries for each UNIQUE
15930bd1f4eaSdrh   ** index and making sure that duplicate entries do not already exist.
159411e85273Sdrh   ** Compute the revised record entries for indices as we go.
1595f8ffb278Sdrh   **
1596f8ffb278Sdrh   ** This loop also handles the case of the PRIMARY KEY index for a
1597f8ffb278Sdrh   ** WITHOUT ROWID table.
15980bd1f4eaSdrh   */
159926198bb4Sdrh   for(ix=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, ix++){
16006934fc7bSdrh     int regIdx;          /* Range of registers hold conent for pIdx */
16016934fc7bSdrh     int regR;            /* Range of registers holding conflicting PK */
16026934fc7bSdrh     int iThisCur;        /* Cursor for this UNIQUE index */
16036934fc7bSdrh     int addrUniqueOk;    /* Jump here if the UNIQUE constraint is satisfied */
16042184fc75Sdrh 
160526198bb4Sdrh     if( aRegIdx[ix]==0 ) continue;  /* Skip indices that do not change */
1606096fd476Sdrh     VdbeNoopComment((v, "constraint checks for %s", pIdx->zName));
160757bf4a8eSdrh     if( bAffinityDone==0 ){
160857bf4a8eSdrh       sqlite3TableAffinity(v, pTab, regNewData+1);
160957bf4a8eSdrh       bAffinityDone = 1;
161057bf4a8eSdrh     }
16116934fc7bSdrh     iThisCur = iIdxCur+ix;
1612096fd476Sdrh     if( pUpIdx==pIdx ){
1613096fd476Sdrh       addrUniqueOk = sAddr.upsertBtm;
1614096fd476Sdrh     }else{
16156934fc7bSdrh       addrUniqueOk = sqlite3VdbeMakeLabel(v);
1616096fd476Sdrh     }
1617b2fe7d8cSdrh 
1618f8ffb278Sdrh     /* Skip partial indices for which the WHERE clause is not true */
1619b2b9d3d7Sdrh     if( pIdx->pPartIdxWhere ){
162026198bb4Sdrh       sqlite3VdbeAddOp2(v, OP_Null, 0, aRegIdx[ix]);
16216e97f8ecSdrh       pParse->iSelfTab = -(regNewData+1);
162272bc8208Sdrh       sqlite3ExprIfFalseDup(pParse, pIdx->pPartIdxWhere, addrUniqueOk,
1623b2b9d3d7Sdrh                             SQLITE_JUMPIFNULL);
16246e97f8ecSdrh       pParse->iSelfTab = 0;
1625b2b9d3d7Sdrh     }
1626b2b9d3d7Sdrh 
16276934fc7bSdrh     /* Create a record for this index entry as it should appear after
1628f8ffb278Sdrh     ** the insert or update.  Store that record in the aRegIdx[ix] register
1629f8ffb278Sdrh     */
1630bf2f5739Sdrh     regIdx = aRegIdx[ix]+1;
16319cfcf5d4Sdrh     for(i=0; i<pIdx->nColumn; i++){
16326934fc7bSdrh       int iField = pIdx->aiColumn[i];
1633f82b9afcSdrh       int x;
16344b92f98cSdrh       if( iField==XN_EXPR ){
16356e97f8ecSdrh         pParse->iSelfTab = -(regNewData+1);
16361c75c9d7Sdrh         sqlite3ExprCodeCopy(pParse, pIdx->aColExpr->a[i].pExpr, regIdx+i);
16376e97f8ecSdrh         pParse->iSelfTab = 0;
16381f9ca2c8Sdrh         VdbeComment((v, "%s column %d", pIdx->zName, i));
16391f9ca2c8Sdrh       }else{
16404b92f98cSdrh         if( iField==XN_ROWID || iField==pTab->iPKey ){
1641f82b9afcSdrh           x = regNewData;
16429cfcf5d4Sdrh         }else{
1643f82b9afcSdrh           x = iField + regNewData + 1;
16449cfcf5d4Sdrh         }
1645fed7ac6fSdrh         sqlite3VdbeAddOp2(v, iField<0 ? OP_IntCopy : OP_SCopy, x, regIdx+i);
1646f82b9afcSdrh         VdbeComment((v, "%s", iField<0 ? "rowid" : pTab->aCol[iField].zName));
16479cfcf5d4Sdrh       }
16481f9ca2c8Sdrh     }
164926198bb4Sdrh     sqlite3VdbeAddOp3(v, OP_MakeRecord, regIdx, pIdx->nColumn, aRegIdx[ix]);
165026198bb4Sdrh     VdbeComment((v, "for %s", pIdx->zName));
16517e4acf7bSdrh #ifdef SQLITE_ENABLE_NULL_TRIM
16527e4acf7bSdrh     if( pIdx->idxType==2 ) sqlite3SetMakeRecordP5(v, pIdx->pTable);
16537e4acf7bSdrh #endif
1654b2fe7d8cSdrh 
1655f8ffb278Sdrh     /* In an UPDATE operation, if this index is the PRIMARY KEY index
1656f8ffb278Sdrh     ** of a WITHOUT ROWID table and there has been no change the
1657f8ffb278Sdrh     ** primary key, then no collision is possible.  The collision detection
1658f8ffb278Sdrh     ** logic below can all be skipped. */
165900012df4Sdrh     if( isUpdate && pPk==pIdx && pkChng==0 ){
1660da475b8dSdrh       sqlite3VdbeResolveLabel(v, addrUniqueOk);
1661da475b8dSdrh       continue;
1662da475b8dSdrh     }
1663f8ffb278Sdrh 
16646934fc7bSdrh     /* Find out what action to take in case there is a uniqueness conflict */
16659cfcf5d4Sdrh     onError = pIdx->onError;
1666de630353Sdanielk1977     if( onError==OE_None ){
166711e85273Sdrh       sqlite3VdbeResolveLabel(v, addrUniqueOk);
1668de630353Sdanielk1977       continue;  /* pIdx is not a UNIQUE index */
1669de630353Sdanielk1977     }
16709cfcf5d4Sdrh     if( overrideError!=OE_Default ){
16719cfcf5d4Sdrh       onError = overrideError;
1672a996e477Sdrh     }else if( onError==OE_Default ){
1673a996e477Sdrh       onError = OE_Abort;
16749cfcf5d4Sdrh     }
1675096fd476Sdrh     if( onError==OE_Replace ){
1676096fd476Sdrh       reorderConstraintChecks(v, &sAddr);
1677096fd476Sdrh     }
16785383ae5cSdrh 
1679c8a0c90bSdrh     /* Figure out if the upsert clause applies to this index */
1680096fd476Sdrh     if( pUpIdx==pIdx ){
1681c8a0c90bSdrh       if( pUpsert->pUpsertSet==0 ){
1682c8a0c90bSdrh         onError = OE_Ignore;  /* DO NOTHING is the same as INSERT OR IGNORE */
1683c8a0c90bSdrh       }else{
1684c8a0c90bSdrh         onError = OE_Update;  /* DO UPDATE */
1685c8a0c90bSdrh       }
1686096fd476Sdrh       upsertBypass = sqlite3VdbeGoto(v, 0);
1687096fd476Sdrh       VdbeComment((v, "Upsert bypass"));
1688096fd476Sdrh       sqlite3VdbeResolveLabel(v, sAddr.upsertTop);
1689c8a0c90bSdrh     }
1690c8a0c90bSdrh 
1691801f55d8Sdrh     /* Collision detection may be omitted if all of the following are true:
1692801f55d8Sdrh     **   (1) The conflict resolution algorithm is REPLACE
1693801f55d8Sdrh     **   (2) The table is a WITHOUT ROWID table
1694801f55d8Sdrh     **   (3) There are no secondary indexes on the table
1695801f55d8Sdrh     **   (4) No delete triggers need to be fired if there is a conflict
1696f9a12a10Sdan     **   (5) No FK constraint counters need to be updated if a conflict occurs.
1697801f55d8Sdrh     */
1698801f55d8Sdrh     if( (ix==0 && pIdx->pNext==0)                   /* Condition 3 */
1699801f55d8Sdrh      && pPk==pIdx                                   /* Condition 2 */
1700801f55d8Sdrh      && onError==OE_Replace                         /* Condition 1 */
1701801f55d8Sdrh      && ( 0==(db->flags&SQLITE_RecTriggers) ||      /* Condition 4 */
1702801f55d8Sdrh           0==sqlite3TriggersExist(pParse, pTab, TK_DELETE, 0, 0))
1703f9a12a10Sdan      && ( 0==(db->flags&SQLITE_ForeignKeys) ||      /* Condition 5 */
1704f9a12a10Sdan          (0==pTab->pFKey && 0==sqlite3FkReferences(pTab)))
17054e1f0efbSdan     ){
1706c6c9e158Sdrh       sqlite3VdbeResolveLabel(v, addrUniqueOk);
1707c6c9e158Sdrh       continue;
1708c6c9e158Sdrh     }
1709c6c9e158Sdrh 
1710b2fe7d8cSdrh     /* Check to see if the new index entry will be unique */
17114d795ef7Sdrh     sqlite3ExprCachePush(pParse);
171226198bb4Sdrh     sqlite3VdbeAddOp4Int(v, OP_NoConflict, iThisCur, addrUniqueOk,
1713688852abSdrh                          regIdx, pIdx->nKeyCol); VdbeCoverage(v);
1714f8ffb278Sdrh 
1715f8ffb278Sdrh     /* Generate code to handle collisions */
1716392ee21dSdrh     regR = (pIdx==pPk) ? regIdx : sqlite3GetTempRange(pParse, nPkField);
171746d03fcbSdrh     if( isUpdate || onError==OE_Replace ){
171811e85273Sdrh       if( HasRowid(pTab) ){
17196934fc7bSdrh         sqlite3VdbeAddOp2(v, OP_IdxRowid, iThisCur, regR);
17200978d4ffSdrh         /* Conflict only if the rowid of the existing index entry
17210978d4ffSdrh         ** is different from old-rowid */
1722f8ffb278Sdrh         if( isUpdate ){
17236934fc7bSdrh           sqlite3VdbeAddOp3(v, OP_Eq, regR, addrUniqueOk, regOldData);
17243d77dee9Sdrh           sqlite3VdbeChangeP5(v, SQLITE_NOTNULL);
1725688852abSdrh           VdbeCoverage(v);
1726f8ffb278Sdrh         }
172726198bb4Sdrh       }else{
1728ccc79f02Sdrh         int x;
172926198bb4Sdrh         /* Extract the PRIMARY KEY from the end of the index entry and
1730da475b8dSdrh         ** store it in registers regR..regR+nPk-1 */
1731a021f121Sdrh         if( pIdx!=pPk ){
173226198bb4Sdrh           for(i=0; i<pPk->nKeyCol; i++){
17334b92f98cSdrh             assert( pPk->aiColumn[i]>=0 );
1734ccc79f02Sdrh             x = sqlite3ColumnOfIndex(pIdx, pPk->aiColumn[i]);
173526198bb4Sdrh             sqlite3VdbeAddOp3(v, OP_Column, iThisCur, x, regR+i);
173626198bb4Sdrh             VdbeComment((v, "%s.%s", pTab->zName,
173726198bb4Sdrh                          pTab->aCol[pPk->aiColumn[i]].zName));
173826198bb4Sdrh           }
1739da475b8dSdrh         }
1740da475b8dSdrh         if( isUpdate ){
1741e83267daSdan           /* If currently processing the PRIMARY KEY of a WITHOUT ROWID
1742e83267daSdan           ** table, only conflict if the new PRIMARY KEY values are actually
1743e83267daSdan           ** different from the old.
1744e83267daSdan           **
1745e83267daSdan           ** For a UNIQUE index, only conflict if the PRIMARY KEY values
1746e83267daSdan           ** of the matched index row are different from the original PRIMARY
1747e83267daSdan           ** KEY values of this row before the update.  */
1748e83267daSdan           int addrJump = sqlite3VdbeCurrentAddr(v)+pPk->nKeyCol;
1749e83267daSdan           int op = OP_Ne;
175048dd1d8eSdrh           int regCmp = (IsPrimaryKeyIndex(pIdx) ? regIdx : regR);
1751e83267daSdan 
1752e83267daSdan           for(i=0; i<pPk->nKeyCol; i++){
1753e83267daSdan             char *p4 = (char*)sqlite3LocateCollSeq(pParse, pPk->azColl[i]);
1754ccc79f02Sdrh             x = pPk->aiColumn[i];
17554b92f98cSdrh             assert( x>=0 );
1756e83267daSdan             if( i==(pPk->nKeyCol-1) ){
1757e83267daSdan               addrJump = addrUniqueOk;
1758e83267daSdan               op = OP_Eq;
175911e85273Sdrh             }
1760e83267daSdan             sqlite3VdbeAddOp4(v, op,
1761e83267daSdan                 regOldData+1+x, addrJump, regCmp+i, p4, P4_COLLSEQ
1762e83267daSdan             );
17633d77dee9Sdrh             sqlite3VdbeChangeP5(v, SQLITE_NOTNULL);
17643d77dee9Sdrh             VdbeCoverageIf(v, op==OP_Eq);
17653d77dee9Sdrh             VdbeCoverageIf(v, op==OP_Ne);
1766da475b8dSdrh           }
176711e85273Sdrh         }
176826198bb4Sdrh       }
176946d03fcbSdrh     }
1770b2fe7d8cSdrh 
1771b2fe7d8cSdrh     /* Generate code that executes if the new index entry is not unique */
1772b84f96f8Sdanielk1977     assert( onError==OE_Rollback || onError==OE_Abort || onError==OE_Fail
17739eddacadSdrh         || onError==OE_Ignore || onError==OE_Replace || onError==OE_Update );
17749cfcf5d4Sdrh     switch( onError ){
17751c92853dSdrh       case OE_Rollback:
17761c92853dSdrh       case OE_Abort:
17771c92853dSdrh       case OE_Fail: {
1778f9c8ce3cSdrh         sqlite3UniqueConstraint(pParse, onError, pIdx);
17799cfcf5d4Sdrh         break;
17809cfcf5d4Sdrh       }
17819eddacadSdrh #ifndef SQLITE_OMIT_UPSERT
17829eddacadSdrh       case OE_Update: {
17832cc00423Sdan         sqlite3UpsertDoUpdate(pParse, pUpsert, pTab, pIdx, iIdxCur+ix);
17849eddacadSdrh         /* Fall through */
17859eddacadSdrh       }
17869eddacadSdrh #endif
17879cfcf5d4Sdrh       case OE_Ignore: {
1788076e85f5Sdrh         sqlite3VdbeGoto(v, ignoreDest);
17899cfcf5d4Sdrh         break;
17909cfcf5d4Sdrh       }
1791098d1684Sdrh       default: {
17922283d46cSdan         Trigger *pTrigger = 0;
1793098d1684Sdrh         assert( onError==OE_Replace );
17941bea559aSdan         sqlite3MultiWrite(pParse);
17952938f924Sdrh         if( db->flags&SQLITE_RecTriggers ){
17962283d46cSdan           pTrigger = sqlite3TriggersExist(pParse, pTab, TK_DELETE, 0, 0);
17972283d46cSdan         }
179826198bb4Sdrh         sqlite3GenerateRowDelete(pParse, pTab, pTrigger, iDataCur, iIdxCur,
1799b0264eecSdrh             regR, nPkField, 0, OE_Replace,
180068116939Sdrh             (pIdx==pPk ? ONEPASS_SINGLE : ONEPASS_OFF), iThisCur);
18010ca3e24bSdrh         seenReplace = 1;
18029cfcf5d4Sdrh         break;
18039cfcf5d4Sdrh       }
18049cfcf5d4Sdrh     }
180511e85273Sdrh     sqlite3VdbeResolveLabel(v, addrUniqueOk);
18064d795ef7Sdrh     sqlite3ExprCachePop(pParse);
1807392ee21dSdrh     if( regR!=regIdx ) sqlite3ReleaseTempRange(pParse, regR, nPkField);
1808096fd476Sdrh     if( pUpIdx==pIdx ) sqlite3VdbeJumpHere(v, upsertBypass);
1809096fd476Sdrh 
18109cfcf5d4Sdrh   }
1811096fd476Sdrh   reorderConstraintChecks(v, &sAddr);
1812de630353Sdanielk1977 
1813de630353Sdanielk1977   *pbMayReplace = seenReplace;
1814ce60aa46Sdrh   VdbeModuleComment((v, "END: GenCnstCks(%d)", seenReplace));
18159cfcf5d4Sdrh }
18160ca3e24bSdrh 
1817d447dcedSdrh #ifdef SQLITE_ENABLE_NULL_TRIM
18180ca3e24bSdrh /*
1819585ce192Sdrh ** Change the P5 operand on the last opcode (which should be an OP_MakeRecord)
1820585ce192Sdrh ** to be the number of columns in table pTab that must not be NULL-trimmed.
1821585ce192Sdrh **
1822585ce192Sdrh ** Or if no columns of pTab may be NULL-trimmed, leave P5 at zero.
1823585ce192Sdrh */
1824585ce192Sdrh void sqlite3SetMakeRecordP5(Vdbe *v, Table *pTab){
1825585ce192Sdrh   u16 i;
1826585ce192Sdrh 
1827585ce192Sdrh   /* Records with omitted columns are only allowed for schema format
1828585ce192Sdrh   ** version 2 and later (SQLite version 3.1.4, 2005-02-20). */
1829585ce192Sdrh   if( pTab->pSchema->file_format<2 ) return;
1830585ce192Sdrh 
18317e4acf7bSdrh   for(i=pTab->nCol-1; i>0; i--){
18327e4acf7bSdrh     if( pTab->aCol[i].pDflt!=0 ) break;
18337e4acf7bSdrh     if( pTab->aCol[i].colFlags & COLFLAG_PRIMKEY ) break;
18347e4acf7bSdrh   }
18357e4acf7bSdrh   sqlite3VdbeChangeP5(v, i+1);
1836585ce192Sdrh }
1837d447dcedSdrh #endif
1838585ce192Sdrh 
18390ca3e24bSdrh /*
18400ca3e24bSdrh ** This routine generates code to finish the INSERT or UPDATE operation
18414adee20fSdanielk1977 ** that was started by a prior call to sqlite3GenerateConstraintChecks.
18426934fc7bSdrh ** A consecutive range of registers starting at regNewData contains the
184304adf416Sdrh ** rowid and the content to be inserted.
18440ca3e24bSdrh **
1845b419a926Sdrh ** The arguments to this routine should be the same as the first six
18464adee20fSdanielk1977 ** arguments to sqlite3GenerateConstraintChecks.
18470ca3e24bSdrh */
18484adee20fSdanielk1977 void sqlite3CompleteInsertion(
18490ca3e24bSdrh   Parse *pParse,      /* The parser context */
18500ca3e24bSdrh   Table *pTab,        /* the table into which we are inserting */
185126198bb4Sdrh   int iDataCur,       /* Cursor of the canonical data source */
185226198bb4Sdrh   int iIdxCur,        /* First index cursor */
18536934fc7bSdrh   int regNewData,     /* Range of content */
1854aa9b8963Sdrh   int *aRegIdx,       /* Register used by each index.  0 for unused indices */
1855f91c1318Sdan   int update_flags,   /* True for UPDATE, False for INSERT */
1856de630353Sdanielk1977   int appendBias,     /* True if this is likely to be an append */
1857de630353Sdanielk1977   int useSeekResult   /* True to set the USESEEKRESULT flag on OP_[Idx]Insert */
18580ca3e24bSdrh ){
18596934fc7bSdrh   Vdbe *v;            /* Prepared statements under construction */
18606934fc7bSdrh   Index *pIdx;        /* An index being inserted or updated */
18616934fc7bSdrh   u8 pik_flags;       /* flag values passed to the btree insert */
18626934fc7bSdrh   int regData;        /* Content registers (after the rowid) */
186360ec914cSpeter.d.reid   int regRec;         /* Register holding assembled record for the table */
18646934fc7bSdrh   int i;              /* Loop counter */
186557bf4a8eSdrh   u8 bAffinityDone = 0; /* True if OP_Affinity has been run already */
18660ca3e24bSdrh 
1867f91c1318Sdan   assert( update_flags==0
1868f91c1318Sdan        || update_flags==OPFLAG_ISUPDATE
1869f91c1318Sdan        || update_flags==(OPFLAG_ISUPDATE|OPFLAG_SAVEPOSITION)
1870f91c1318Sdan   );
1871f91c1318Sdan 
18724adee20fSdanielk1977   v = sqlite3GetVdbe(pParse);
18730ca3e24bSdrh   assert( v!=0 );
1874417be79cSdrh   assert( pTab->pSelect==0 );  /* This table is not a VIEW */
1875b2b9d3d7Sdrh   for(i=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, i++){
1876aa9b8963Sdrh     if( aRegIdx[i]==0 ) continue;
187757bf4a8eSdrh     bAffinityDone = 1;
1878b2b9d3d7Sdrh     if( pIdx->pPartIdxWhere ){
1879b2b9d3d7Sdrh       sqlite3VdbeAddOp2(v, OP_IsNull, aRegIdx[i], sqlite3VdbeCurrentAddr(v)+2);
1880688852abSdrh       VdbeCoverage(v);
1881b2b9d3d7Sdrh     }
1882cb9a3643Sdan     pik_flags = (useSeekResult ? OPFLAG_USESEEKRESULT : 0);
188348dd1d8eSdrh     if( IsPrimaryKeyIndex(pIdx) && !HasRowid(pTab) ){
18844308e348Sdrh       assert( pParse->nested==0 );
18856546af14Sdrh       pik_flags |= OPFLAG_NCHANGE;
1886f91c1318Sdan       pik_flags |= (update_flags & OPFLAG_SAVEPOSITION);
1887cb9a3643Sdan #ifdef SQLITE_ENABLE_PREUPDATE_HOOK
1888cb9a3643Sdan       if( update_flags==0 ){
1889cb9a3643Sdan         sqlite3VdbeAddOp4(v, OP_InsertInt,
1890cb9a3643Sdan             iIdxCur+i, aRegIdx[i], 0, (char*)pTab, P4_TABLE
1891cb9a3643Sdan         );
1892cb9a3643Sdan         sqlite3VdbeChangeP5(v, OPFLAG_ISNOOP);
1893de630353Sdanielk1977       }
1894cb9a3643Sdan #endif
1895cb9a3643Sdan     }
1896cb9a3643Sdan     sqlite3VdbeAddOp4Int(v, OP_IdxInsert, iIdxCur+i, aRegIdx[i],
1897cb9a3643Sdan                          aRegIdx[i]+1,
1898cb9a3643Sdan                          pIdx->uniqNotNull ? pIdx->nKeyCol: pIdx->nColumn);
18999b34abeeSdrh     sqlite3VdbeChangeP5(v, pik_flags);
19000ca3e24bSdrh   }
1901ec95c441Sdrh   if( !HasRowid(pTab) ) return;
19026934fc7bSdrh   regData = regNewData + 1;
1903b7654111Sdrh   regRec = sqlite3GetTempReg(pParse);
19041db639ceSdrh   sqlite3VdbeAddOp3(v, OP_MakeRecord, regData, pTab->nCol, regRec);
1905585ce192Sdrh   sqlite3SetMakeRecordP5(v, pTab);
19062adb878bSdrh   if( !bAffinityDone ){
19072adb878bSdrh     sqlite3TableAffinity(v, pTab, 0);
1908da250ea5Sdrh     sqlite3ExprCacheAffinityChange(pParse, regData, pTab->nCol);
19092adb878bSdrh   }
19104794f735Sdrh   if( pParse->nested ){
19114794f735Sdrh     pik_flags = 0;
19124794f735Sdrh   }else{
191394eb6a14Sdanielk1977     pik_flags = OPFLAG_NCHANGE;
1914f91c1318Sdan     pik_flags |= (update_flags?update_flags:OPFLAG_LASTROWID);
19154794f735Sdrh   }
1916e4d90813Sdrh   if( appendBias ){
1917e4d90813Sdrh     pik_flags |= OPFLAG_APPEND;
1918e4d90813Sdrh   }
1919de630353Sdanielk1977   if( useSeekResult ){
1920de630353Sdanielk1977     pik_flags |= OPFLAG_USESEEKRESULT;
1921de630353Sdanielk1977   }
19226934fc7bSdrh   sqlite3VdbeAddOp3(v, OP_Insert, iDataCur, regRec, regNewData);
192394eb6a14Sdanielk1977   if( !pParse->nested ){
1924f14b7fb7Sdrh     sqlite3VdbeAppendP4(v, pTab, P4_TABLE);
192594eb6a14Sdanielk1977   }
1926b7654111Sdrh   sqlite3VdbeChangeP5(v, pik_flags);
19270ca3e24bSdrh }
1928cd44690aSdrh 
1929cd44690aSdrh /*
193026198bb4Sdrh ** Allocate cursors for the pTab table and all its indices and generate
193126198bb4Sdrh ** code to open and initialized those cursors.
1932aa9b8963Sdrh **
193326198bb4Sdrh ** The cursor for the object that contains the complete data (normally
193426198bb4Sdrh ** the table itself, but the PRIMARY KEY index in the case of a WITHOUT
193526198bb4Sdrh ** ROWID table) is returned in *piDataCur.  The first index cursor is
193626198bb4Sdrh ** returned in *piIdxCur.  The number of indices is returned.
193726198bb4Sdrh **
193826198bb4Sdrh ** Use iBase as the first cursor (either the *piDataCur for rowid tables
193926198bb4Sdrh ** or the first index for WITHOUT ROWID tables) if it is non-negative.
194026198bb4Sdrh ** If iBase is negative, then allocate the next available cursor.
194126198bb4Sdrh **
194226198bb4Sdrh ** For a rowid table, *piDataCur will be exactly one less than *piIdxCur.
194326198bb4Sdrh ** For a WITHOUT ROWID table, *piDataCur will be somewhere in the range
194426198bb4Sdrh ** of *piIdxCurs, depending on where the PRIMARY KEY index appears on the
194526198bb4Sdrh ** pTab->pIndex list.
1946b6b4b79fSdrh **
1947b6b4b79fSdrh ** If pTab is a virtual table, then this routine is a no-op and the
1948b6b4b79fSdrh ** *piDataCur and *piIdxCur values are left uninitialized.
1949cd44690aSdrh */
1950aa9b8963Sdrh int sqlite3OpenTableAndIndices(
1951290c1948Sdrh   Parse *pParse,   /* Parsing context */
1952290c1948Sdrh   Table *pTab,     /* Table to be opened */
195326198bb4Sdrh   int op,          /* OP_OpenRead or OP_OpenWrite */
1954b89aeb6aSdrh   u8 p5,           /* P5 value for OP_Open* opcodes (except on WITHOUT ROWID) */
195526198bb4Sdrh   int iBase,       /* Use this for the table cursor, if there is one */
19566a53499aSdrh   u8 *aToOpen,     /* If not NULL: boolean for each table and index */
195726198bb4Sdrh   int *piDataCur,  /* Write the database source cursor number here */
195826198bb4Sdrh   int *piIdxCur    /* Write the first index cursor number here */
1959290c1948Sdrh ){
1960cd44690aSdrh   int i;
19614cbdda9eSdrh   int iDb;
19626a53499aSdrh   int iDataCur;
1963cd44690aSdrh   Index *pIdx;
19644cbdda9eSdrh   Vdbe *v;
19654cbdda9eSdrh 
196626198bb4Sdrh   assert( op==OP_OpenRead || op==OP_OpenWrite );
1967fd261ec6Sdan   assert( op==OP_OpenWrite || p5==0 );
196826198bb4Sdrh   if( IsVirtual(pTab) ){
1969b6b4b79fSdrh     /* This routine is a no-op for virtual tables. Leave the output
1970b6b4b79fSdrh     ** variables *piDataCur and *piIdxCur uninitialized so that valgrind
1971b6b4b79fSdrh     ** can detect if they are used by mistake in the caller. */
197226198bb4Sdrh     return 0;
197326198bb4Sdrh   }
19744cbdda9eSdrh   iDb = sqlite3SchemaToIndex(pParse->db, pTab->pSchema);
19754cbdda9eSdrh   v = sqlite3GetVdbe(pParse);
1976cd44690aSdrh   assert( v!=0 );
197726198bb4Sdrh   if( iBase<0 ) iBase = pParse->nTab;
19786a53499aSdrh   iDataCur = iBase++;
19796a53499aSdrh   if( piDataCur ) *piDataCur = iDataCur;
19806a53499aSdrh   if( HasRowid(pTab) && (aToOpen==0 || aToOpen[0]) ){
19816a53499aSdrh     sqlite3OpenTable(pParse, iDataCur, iDb, pTab, op);
19826fbe41acSdrh   }else{
198326198bb4Sdrh     sqlite3TableLock(pParse, iDb, pTab->tnum, op==OP_OpenWrite, pTab->zName);
19846fbe41acSdrh   }
19856a53499aSdrh   if( piIdxCur ) *piIdxCur = iBase;
198626198bb4Sdrh   for(i=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, i++){
198726198bb4Sdrh     int iIdxCur = iBase++;
1988da184236Sdanielk1977     assert( pIdx->pSchema==pTab->pSchema );
198961441c34Sdan     if( IsPrimaryKeyIndex(pIdx) && !HasRowid(pTab) ){
199061441c34Sdan       if( piDataCur ) *piDataCur = iIdxCur;
199161441c34Sdan       p5 = 0;
199261441c34Sdan     }
19936a53499aSdrh     if( aToOpen==0 || aToOpen[i+1] ){
19942ec2fb22Sdrh       sqlite3VdbeAddOp3(v, op, iIdxCur, pIdx->tnum, iDb);
19952ec2fb22Sdrh       sqlite3VdbeSetP4KeyInfo(pParse, pIdx);
1996b89aeb6aSdrh       sqlite3VdbeChangeP5(v, p5);
199761441c34Sdan       VdbeComment((v, "%s", pIdx->zName));
1998b89aeb6aSdrh     }
19996a53499aSdrh   }
200026198bb4Sdrh   if( iBase>pParse->nTab ) pParse->nTab = iBase;
200126198bb4Sdrh   return i;
2002cd44690aSdrh }
20039d9cf229Sdrh 
200491c58e23Sdrh 
200591c58e23Sdrh #ifdef SQLITE_TEST
200691c58e23Sdrh /*
200791c58e23Sdrh ** The following global variable is incremented whenever the
200891c58e23Sdrh ** transfer optimization is used.  This is used for testing
200991c58e23Sdrh ** purposes only - to make sure the transfer optimization really
201060ec914cSpeter.d.reid ** is happening when it is supposed to.
201191c58e23Sdrh */
201291c58e23Sdrh int sqlite3_xferopt_count;
201391c58e23Sdrh #endif /* SQLITE_TEST */
201491c58e23Sdrh 
201591c58e23Sdrh 
20169d9cf229Sdrh #ifndef SQLITE_OMIT_XFER_OPT
20179d9cf229Sdrh /*
20189d9cf229Sdrh ** Check to see if index pSrc is compatible as a source of data
20199d9cf229Sdrh ** for index pDest in an insert transfer optimization.  The rules
20209d9cf229Sdrh ** for a compatible index:
20219d9cf229Sdrh **
20229d9cf229Sdrh **    *   The index is over the same set of columns
20239d9cf229Sdrh **    *   The same DESC and ASC markings occurs on all columns
20249d9cf229Sdrh **    *   The same onError processing (OE_Abort, OE_Ignore, etc)
20259d9cf229Sdrh **    *   The same collating sequence on each column
2026b2b9d3d7Sdrh **    *   The index has the exact same WHERE clause
20279d9cf229Sdrh */
20289d9cf229Sdrh static int xferCompatibleIndex(Index *pDest, Index *pSrc){
20299d9cf229Sdrh   int i;
20309d9cf229Sdrh   assert( pDest && pSrc );
20319d9cf229Sdrh   assert( pDest->pTable!=pSrc->pTable );
2032bbbdc83bSdrh   if( pDest->nKeyCol!=pSrc->nKeyCol ){
20339d9cf229Sdrh     return 0;   /* Different number of columns */
20349d9cf229Sdrh   }
20359d9cf229Sdrh   if( pDest->onError!=pSrc->onError ){
20369d9cf229Sdrh     return 0;   /* Different conflict resolution strategies */
20379d9cf229Sdrh   }
2038bbbdc83bSdrh   for(i=0; i<pSrc->nKeyCol; i++){
20399d9cf229Sdrh     if( pSrc->aiColumn[i]!=pDest->aiColumn[i] ){
20409d9cf229Sdrh       return 0;   /* Different columns indexed */
20419d9cf229Sdrh     }
20424b92f98cSdrh     if( pSrc->aiColumn[i]==XN_EXPR ){
20431f9ca2c8Sdrh       assert( pSrc->aColExpr!=0 && pDest->aColExpr!=0 );
20445aa550cfSdan       if( sqlite3ExprCompare(0, pSrc->aColExpr->a[i].pExpr,
20451f9ca2c8Sdrh                              pDest->aColExpr->a[i].pExpr, -1)!=0 ){
20461f9ca2c8Sdrh         return 0;   /* Different expressions in the index */
20471f9ca2c8Sdrh       }
20481f9ca2c8Sdrh     }
20499d9cf229Sdrh     if( pSrc->aSortOrder[i]!=pDest->aSortOrder[i] ){
20509d9cf229Sdrh       return 0;   /* Different sort orders */
20519d9cf229Sdrh     }
20520472af91Sdrh     if( sqlite3_stricmp(pSrc->azColl[i],pDest->azColl[i])!=0 ){
205360a713c6Sdrh       return 0;   /* Different collating sequences */
20549d9cf229Sdrh     }
20559d9cf229Sdrh   }
20565aa550cfSdan   if( sqlite3ExprCompare(0, pSrc->pPartIdxWhere, pDest->pPartIdxWhere, -1) ){
2057b2b9d3d7Sdrh     return 0;     /* Different WHERE clauses */
2058b2b9d3d7Sdrh   }
20599d9cf229Sdrh 
20609d9cf229Sdrh   /* If no test above fails then the indices must be compatible */
20619d9cf229Sdrh   return 1;
20629d9cf229Sdrh }
20639d9cf229Sdrh 
20649d9cf229Sdrh /*
20659d9cf229Sdrh ** Attempt the transfer optimization on INSERTs of the form
20669d9cf229Sdrh **
20679d9cf229Sdrh **     INSERT INTO tab1 SELECT * FROM tab2;
20689d9cf229Sdrh **
2069ccdf1baeSdrh ** The xfer optimization transfers raw records from tab2 over to tab1.
207060ec914cSpeter.d.reid ** Columns are not decoded and reassembled, which greatly improves
2071ccdf1baeSdrh ** performance.  Raw index records are transferred in the same way.
20729d9cf229Sdrh **
2073ccdf1baeSdrh ** The xfer optimization is only attempted if tab1 and tab2 are compatible.
2074ccdf1baeSdrh ** There are lots of rules for determining compatibility - see comments
2075ccdf1baeSdrh ** embedded in the code for details.
20769d9cf229Sdrh **
2077ccdf1baeSdrh ** This routine returns TRUE if the optimization is guaranteed to be used.
2078ccdf1baeSdrh ** Sometimes the xfer optimization will only work if the destination table
2079ccdf1baeSdrh ** is empty - a factor that can only be determined at run-time.  In that
2080ccdf1baeSdrh ** case, this routine generates code for the xfer optimization but also
2081ccdf1baeSdrh ** does a test to see if the destination table is empty and jumps over the
2082ccdf1baeSdrh ** xfer optimization code if the test fails.  In that case, this routine
2083ccdf1baeSdrh ** returns FALSE so that the caller will know to go ahead and generate
2084ccdf1baeSdrh ** an unoptimized transfer.  This routine also returns FALSE if there
2085ccdf1baeSdrh ** is no chance that the xfer optimization can be applied.
20869d9cf229Sdrh **
2087ccdf1baeSdrh ** This optimization is particularly useful at making VACUUM run faster.
20889d9cf229Sdrh */
20899d9cf229Sdrh static int xferOptimization(
20909d9cf229Sdrh   Parse *pParse,        /* Parser context */
20919d9cf229Sdrh   Table *pDest,         /* The table we are inserting into */
20929d9cf229Sdrh   Select *pSelect,      /* A SELECT statement to use as the data source */
20939d9cf229Sdrh   int onError,          /* How to handle constraint errors */
20949d9cf229Sdrh   int iDbDest           /* The database of pDest */
20959d9cf229Sdrh ){
2096e34162b1Sdan   sqlite3 *db = pParse->db;
20979d9cf229Sdrh   ExprList *pEList;                /* The result set of the SELECT */
20989d9cf229Sdrh   Table *pSrc;                     /* The table in the FROM clause of SELECT */
20999d9cf229Sdrh   Index *pSrcIdx, *pDestIdx;       /* Source and destination indices */
21009d9cf229Sdrh   struct SrcList_item *pItem;      /* An element of pSelect->pSrc */
21019d9cf229Sdrh   int i;                           /* Loop counter */
21029d9cf229Sdrh   int iDbSrc;                      /* The database of pSrc */
21039d9cf229Sdrh   int iSrc, iDest;                 /* Cursors from source and destination */
21049d9cf229Sdrh   int addr1, addr2;                /* Loop addresses */
2105da475b8dSdrh   int emptyDestTest = 0;           /* Address of test for empty pDest */
2106da475b8dSdrh   int emptySrcTest = 0;            /* Address of test for empty pSrc */
21079d9cf229Sdrh   Vdbe *v;                         /* The VDBE we are building */
21086a288a33Sdrh   int regAutoinc;                  /* Memory register used by AUTOINC */
2109f33c9fadSdrh   int destHasUniqueIdx = 0;        /* True if pDest has a UNIQUE index */
2110b7654111Sdrh   int regData, regRowid;           /* Registers holding data and rowid */
21119d9cf229Sdrh 
21129d9cf229Sdrh   if( pSelect==0 ){
21139d9cf229Sdrh     return 0;   /* Must be of the form  INSERT INTO ... SELECT ... */
21149d9cf229Sdrh   }
2115ebbf08a0Sdan   if( pParse->pWith || pSelect->pWith ){
2116ebbf08a0Sdan     /* Do not attempt to process this query if there are an WITH clauses
2117ebbf08a0Sdan     ** attached to it. Proceeding may generate a false "no such table: xxx"
2118ebbf08a0Sdan     ** error if pSelect reads from a CTE named "xxx".  */
2119ebbf08a0Sdan     return 0;
2120ebbf08a0Sdan   }
21212f886d1dSdanielk1977   if( sqlite3TriggerList(pParse, pDest) ){
21229d9cf229Sdrh     return 0;   /* tab1 must not have triggers */
21239d9cf229Sdrh   }
21249d9cf229Sdrh #ifndef SQLITE_OMIT_VIRTUALTABLE
212544266ec6Sdrh   if( IsVirtual(pDest) ){
21269d9cf229Sdrh     return 0;   /* tab1 must not be a virtual table */
21279d9cf229Sdrh   }
21289d9cf229Sdrh #endif
21299d9cf229Sdrh   if( onError==OE_Default ){
2130e7224a01Sdrh     if( pDest->iPKey>=0 ) onError = pDest->keyConf;
2131e7224a01Sdrh     if( onError==OE_Default ) onError = OE_Abort;
21329d9cf229Sdrh   }
21335ce240a6Sdanielk1977   assert(pSelect->pSrc);   /* allocated even if there is no FROM clause */
21349d9cf229Sdrh   if( pSelect->pSrc->nSrc!=1 ){
21359d9cf229Sdrh     return 0;   /* FROM clause must have exactly one term */
21369d9cf229Sdrh   }
21379d9cf229Sdrh   if( pSelect->pSrc->a[0].pSelect ){
21389d9cf229Sdrh     return 0;   /* FROM clause cannot contain a subquery */
21399d9cf229Sdrh   }
21409d9cf229Sdrh   if( pSelect->pWhere ){
21419d9cf229Sdrh     return 0;   /* SELECT may not have a WHERE clause */
21429d9cf229Sdrh   }
21439d9cf229Sdrh   if( pSelect->pOrderBy ){
21449d9cf229Sdrh     return 0;   /* SELECT may not have an ORDER BY clause */
21459d9cf229Sdrh   }
21468103b7d2Sdrh   /* Do not need to test for a HAVING clause.  If HAVING is present but
21478103b7d2Sdrh   ** there is no ORDER BY, we will get an error. */
21489d9cf229Sdrh   if( pSelect->pGroupBy ){
21499d9cf229Sdrh     return 0;   /* SELECT may not have a GROUP BY clause */
21509d9cf229Sdrh   }
21519d9cf229Sdrh   if( pSelect->pLimit ){
21529d9cf229Sdrh     return 0;   /* SELECT may not have a LIMIT clause */
21539d9cf229Sdrh   }
21549d9cf229Sdrh   if( pSelect->pPrior ){
21559d9cf229Sdrh     return 0;   /* SELECT may not be a compound query */
21569d9cf229Sdrh   }
21577d10d5a6Sdrh   if( pSelect->selFlags & SF_Distinct ){
21589d9cf229Sdrh     return 0;   /* SELECT may not be DISTINCT */
21599d9cf229Sdrh   }
21609d9cf229Sdrh   pEList = pSelect->pEList;
21619d9cf229Sdrh   assert( pEList!=0 );
21629d9cf229Sdrh   if( pEList->nExpr!=1 ){
21639d9cf229Sdrh     return 0;   /* The result set must have exactly one column */
21649d9cf229Sdrh   }
21659d9cf229Sdrh   assert( pEList->a[0].pExpr );
21661a1d3cd2Sdrh   if( pEList->a[0].pExpr->op!=TK_ASTERISK ){
21679d9cf229Sdrh     return 0;   /* The result set must be the special operator "*" */
21689d9cf229Sdrh   }
21699d9cf229Sdrh 
21709d9cf229Sdrh   /* At this point we have established that the statement is of the
21719d9cf229Sdrh   ** correct syntactic form to participate in this optimization.  Now
21729d9cf229Sdrh   ** we have to check the semantics.
21739d9cf229Sdrh   */
21749d9cf229Sdrh   pItem = pSelect->pSrc->a;
217541fb5cd1Sdan   pSrc = sqlite3LocateTableItem(pParse, 0, pItem);
21769d9cf229Sdrh   if( pSrc==0 ){
21779d9cf229Sdrh     return 0;   /* FROM clause does not contain a real table */
21789d9cf229Sdrh   }
21799d9cf229Sdrh   if( pSrc==pDest ){
21809d9cf229Sdrh     return 0;   /* tab1 and tab2 may not be the same table */
21819d9cf229Sdrh   }
218255548273Sdrh   if( HasRowid(pDest)!=HasRowid(pSrc) ){
218355548273Sdrh     return 0;   /* source and destination must both be WITHOUT ROWID or not */
218455548273Sdrh   }
21859d9cf229Sdrh #ifndef SQLITE_OMIT_VIRTUALTABLE
218644266ec6Sdrh   if( IsVirtual(pSrc) ){
21879d9cf229Sdrh     return 0;   /* tab2 must not be a virtual table */
21889d9cf229Sdrh   }
21899d9cf229Sdrh #endif
21909d9cf229Sdrh   if( pSrc->pSelect ){
21919d9cf229Sdrh     return 0;   /* tab2 may not be a view */
21929d9cf229Sdrh   }
21939d9cf229Sdrh   if( pDest->nCol!=pSrc->nCol ){
21949d9cf229Sdrh     return 0;   /* Number of columns must be the same in tab1 and tab2 */
21959d9cf229Sdrh   }
21969d9cf229Sdrh   if( pDest->iPKey!=pSrc->iPKey ){
21979d9cf229Sdrh     return 0;   /* Both tables must have the same INTEGER PRIMARY KEY */
21989d9cf229Sdrh   }
21999d9cf229Sdrh   for(i=0; i<pDest->nCol; i++){
22009940e2aaSdan     Column *pDestCol = &pDest->aCol[i];
22019940e2aaSdan     Column *pSrcCol = &pSrc->aCol[i];
2202ba68f8f3Sdan #ifdef SQLITE_ENABLE_HIDDEN_COLUMNS
22038257aa8dSdrh     if( (db->mDbFlags & DBFLAG_Vacuum)==0
2204aaea3143Sdan      && (pDestCol->colFlags | pSrcCol->colFlags) & COLFLAG_HIDDEN
2205aaea3143Sdan     ){
2206ba68f8f3Sdan       return 0;    /* Neither table may have __hidden__ columns */
2207ba68f8f3Sdan     }
2208ba68f8f3Sdan #endif
22099940e2aaSdan     if( pDestCol->affinity!=pSrcCol->affinity ){
22109d9cf229Sdrh       return 0;    /* Affinity must be the same on all columns */
22119d9cf229Sdrh     }
22120472af91Sdrh     if( sqlite3_stricmp(pDestCol->zColl, pSrcCol->zColl)!=0 ){
22139d9cf229Sdrh       return 0;    /* Collating sequence must be the same on all columns */
22149d9cf229Sdrh     }
22159940e2aaSdan     if( pDestCol->notNull && !pSrcCol->notNull ){
22169d9cf229Sdrh       return 0;    /* tab2 must be NOT NULL if tab1 is */
22179d9cf229Sdrh     }
2218453e0261Sdrh     /* Default values for second and subsequent columns need to match. */
221994fa9c41Sdrh     if( i>0 ){
222094fa9c41Sdrh       assert( pDestCol->pDflt==0 || pDestCol->pDflt->op==TK_SPAN );
222194fa9c41Sdrh       assert( pSrcCol->pDflt==0 || pSrcCol->pDflt->op==TK_SPAN );
222294fa9c41Sdrh       if( (pDestCol->pDflt==0)!=(pSrcCol->pDflt==0)
222394fa9c41Sdrh        || (pDestCol->pDflt && strcmp(pDestCol->pDflt->u.zToken,
222494fa9c41Sdrh                                        pSrcCol->pDflt->u.zToken)!=0)
22259940e2aaSdan       ){
22269940e2aaSdan         return 0;    /* Default values must be the same for all columns */
22279940e2aaSdan       }
22289d9cf229Sdrh     }
222994fa9c41Sdrh   }
22309d9cf229Sdrh   for(pDestIdx=pDest->pIndex; pDestIdx; pDestIdx=pDestIdx->pNext){
22315f1d1d9cSdrh     if( IsUniqueIndex(pDestIdx) ){
2232f33c9fadSdrh       destHasUniqueIdx = 1;
2233f33c9fadSdrh     }
22349d9cf229Sdrh     for(pSrcIdx=pSrc->pIndex; pSrcIdx; pSrcIdx=pSrcIdx->pNext){
22359d9cf229Sdrh       if( xferCompatibleIndex(pDestIdx, pSrcIdx) ) break;
22369d9cf229Sdrh     }
22379d9cf229Sdrh     if( pSrcIdx==0 ){
22389d9cf229Sdrh       return 0;    /* pDestIdx has no corresponding index in pSrc */
22399d9cf229Sdrh     }
22409d9cf229Sdrh   }
22417fc2f41bSdrh #ifndef SQLITE_OMIT_CHECK
2242619a1305Sdrh   if( pDest->pCheck && sqlite3ExprListCompare(pSrc->pCheck,pDest->pCheck,-1) ){
22438103b7d2Sdrh     return 0;   /* Tables have different CHECK constraints.  Ticket #2252 */
22448103b7d2Sdrh   }
22457fc2f41bSdrh #endif
2246713de341Sdrh #ifndef SQLITE_OMIT_FOREIGN_KEY
2247713de341Sdrh   /* Disallow the transfer optimization if the destination table constains
2248713de341Sdrh   ** any foreign key constraints.  This is more restrictive than necessary.
2249713de341Sdrh   ** But the main beneficiary of the transfer optimization is the VACUUM
2250713de341Sdrh   ** command, and the VACUUM command disables foreign key constraints.  So
2251713de341Sdrh   ** the extra complication to make this rule less restrictive is probably
2252713de341Sdrh   ** not worth the effort.  Ticket [6284df89debdfa61db8073e062908af0c9b6118e]
2253713de341Sdrh   */
2254e34162b1Sdan   if( (db->flags & SQLITE_ForeignKeys)!=0 && pDest->pFKey!=0 ){
2255713de341Sdrh     return 0;
2256713de341Sdrh   }
2257713de341Sdrh #endif
2258e34162b1Sdan   if( (db->flags & SQLITE_CountRows)!=0 ){
2259ccdf1baeSdrh     return 0;  /* xfer opt does not play well with PRAGMA count_changes */
22601696124dSdan   }
22619d9cf229Sdrh 
2262ccdf1baeSdrh   /* If we get this far, it means that the xfer optimization is at
2263ccdf1baeSdrh   ** least a possibility, though it might only work if the destination
2264ccdf1baeSdrh   ** table (tab1) is initially empty.
22659d9cf229Sdrh   */
2266dd73521bSdrh #ifdef SQLITE_TEST
2267dd73521bSdrh   sqlite3_xferopt_count++;
2268dd73521bSdrh #endif
2269e34162b1Sdan   iDbSrc = sqlite3SchemaToIndex(db, pSrc->pSchema);
22709d9cf229Sdrh   v = sqlite3GetVdbe(pParse);
2271f53e9b5aSdrh   sqlite3CodeVerifySchema(pParse, iDbSrc);
22729d9cf229Sdrh   iSrc = pParse->nTab++;
22739d9cf229Sdrh   iDest = pParse->nTab++;
22746a288a33Sdrh   regAutoinc = autoIncBegin(pParse, iDbDest, pDest);
227555548273Sdrh   regData = sqlite3GetTempReg(pParse);
227655548273Sdrh   regRowid = sqlite3GetTempReg(pParse);
22779d9cf229Sdrh   sqlite3OpenTable(pParse, iDest, iDbDest, pDest, OP_OpenWrite);
2278427ebba1Sdan   assert( HasRowid(pDest) || destHasUniqueIdx );
22798257aa8dSdrh   if( (db->mDbFlags & DBFLAG_Vacuum)==0 && (
2280e34162b1Sdan       (pDest->iPKey<0 && pDest->pIndex!=0)          /* (1) */
2281ccdf1baeSdrh    || destHasUniqueIdx                              /* (2) */
2282ccdf1baeSdrh    || (onError!=OE_Abort && onError!=OE_Rollback)   /* (3) */
2283e34162b1Sdan   )){
2284ccdf1baeSdrh     /* In some circumstances, we are able to run the xfer optimization
2285e34162b1Sdan     ** only if the destination table is initially empty. Unless the
22868257aa8dSdrh     ** DBFLAG_Vacuum flag is set, this block generates code to make
22878257aa8dSdrh     ** that determination. If DBFLAG_Vacuum is set, then the destination
2288e34162b1Sdan     ** table is always empty.
2289e34162b1Sdan     **
2290e34162b1Sdan     ** Conditions under which the destination must be empty:
2291f33c9fadSdrh     **
2292ccdf1baeSdrh     ** (1) There is no INTEGER PRIMARY KEY but there are indices.
2293ccdf1baeSdrh     **     (If the destination is not initially empty, the rowid fields
2294ccdf1baeSdrh     **     of index entries might need to change.)
2295ccdf1baeSdrh     **
2296ccdf1baeSdrh     ** (2) The destination has a unique index.  (The xfer optimization
2297ccdf1baeSdrh     **     is unable to test uniqueness.)
2298ccdf1baeSdrh     **
2299ccdf1baeSdrh     ** (3) onError is something other than OE_Abort and OE_Rollback.
23009d9cf229Sdrh     */
2301688852abSdrh     addr1 = sqlite3VdbeAddOp2(v, OP_Rewind, iDest, 0); VdbeCoverage(v);
23022991ba05Sdrh     emptyDestTest = sqlite3VdbeAddOp0(v, OP_Goto);
23039d9cf229Sdrh     sqlite3VdbeJumpHere(v, addr1);
23049d9cf229Sdrh   }
2305427ebba1Sdan   if( HasRowid(pSrc) ){
2306c9b9deaeSdrh     u8 insFlags;
23079d9cf229Sdrh     sqlite3OpenTable(pParse, iSrc, iDbSrc, pSrc, OP_OpenRead);
2308688852abSdrh     emptySrcTest = sqlite3VdbeAddOp2(v, OP_Rewind, iSrc, 0); VdbeCoverage(v);
230942242dedSdrh     if( pDest->iPKey>=0 ){
2310b7654111Sdrh       addr1 = sqlite3VdbeAddOp2(v, OP_Rowid, iSrc, regRowid);
2311b7654111Sdrh       addr2 = sqlite3VdbeAddOp3(v, OP_NotExists, iDest, 0, regRowid);
2312688852abSdrh       VdbeCoverage(v);
2313f9c8ce3cSdrh       sqlite3RowidConstraint(pParse, onError, pDest);
23149d9cf229Sdrh       sqlite3VdbeJumpHere(v, addr2);
2315b7654111Sdrh       autoIncStep(pParse, regAutoinc, regRowid);
2316bd36ba69Sdrh     }else if( pDest->pIndex==0 ){
2317b7654111Sdrh       addr1 = sqlite3VdbeAddOp2(v, OP_NewRowid, iDest, regRowid);
231895bad4c7Sdrh     }else{
2319b7654111Sdrh       addr1 = sqlite3VdbeAddOp2(v, OP_Rowid, iSrc, regRowid);
23207d10d5a6Sdrh       assert( (pDest->tabFlags & TF_Autoincrement)==0 );
232195bad4c7Sdrh     }
2322e7b554d6Sdrh     sqlite3VdbeAddOp3(v, OP_RowData, iSrc, regData, 1);
23238257aa8dSdrh     if( db->mDbFlags & DBFLAG_Vacuum ){
232486b40dfdSdrh       sqlite3VdbeAddOp1(v, OP_SeekEnd, iDest);
2325c9b9deaeSdrh       insFlags = OPFLAG_NCHANGE|OPFLAG_LASTROWID|
2326c9b9deaeSdrh                            OPFLAG_APPEND|OPFLAG_USESEEKRESULT;
2327c9b9deaeSdrh     }else{
2328c9b9deaeSdrh       insFlags = OPFLAG_NCHANGE|OPFLAG_LASTROWID|OPFLAG_APPEND;
2329c9b9deaeSdrh     }
23309b34abeeSdrh     sqlite3VdbeAddOp4(v, OP_Insert, iDest, regData, regRowid,
233120f272c9Sdrh                       (char*)pDest, P4_TABLE);
2332c9b9deaeSdrh     sqlite3VdbeChangeP5(v, insFlags);
2333688852abSdrh     sqlite3VdbeAddOp2(v, OP_Next, iSrc, addr1); VdbeCoverage(v);
233455548273Sdrh     sqlite3VdbeAddOp2(v, OP_Close, iSrc, 0);
233555548273Sdrh     sqlite3VdbeAddOp2(v, OP_Close, iDest, 0);
2336da475b8dSdrh   }else{
2337da475b8dSdrh     sqlite3TableLock(pParse, iDbDest, pDest->tnum, 1, pDest->zName);
2338da475b8dSdrh     sqlite3TableLock(pParse, iDbSrc, pSrc->tnum, 0, pSrc->zName);
233955548273Sdrh   }
23409d9cf229Sdrh   for(pDestIdx=pDest->pIndex; pDestIdx; pDestIdx=pDestIdx->pNext){
234141b9ca25Sdrh     u8 idxInsFlags = 0;
23421b7ecbb4Sdrh     for(pSrcIdx=pSrc->pIndex; ALWAYS(pSrcIdx); pSrcIdx=pSrcIdx->pNext){
23439d9cf229Sdrh       if( xferCompatibleIndex(pDestIdx, pSrcIdx) ) break;
23449d9cf229Sdrh     }
23459d9cf229Sdrh     assert( pSrcIdx );
23462ec2fb22Sdrh     sqlite3VdbeAddOp3(v, OP_OpenRead, iSrc, pSrcIdx->tnum, iDbSrc);
23472ec2fb22Sdrh     sqlite3VdbeSetP4KeyInfo(pParse, pSrcIdx);
2348d4e70ebdSdrh     VdbeComment((v, "%s", pSrcIdx->zName));
23492ec2fb22Sdrh     sqlite3VdbeAddOp3(v, OP_OpenWrite, iDest, pDestIdx->tnum, iDbDest);
23502ec2fb22Sdrh     sqlite3VdbeSetP4KeyInfo(pParse, pDestIdx);
235159885728Sdan     sqlite3VdbeChangeP5(v, OPFLAG_BULKCSR);
2352207872a4Sdanielk1977     VdbeComment((v, "%s", pDestIdx->zName));
2353688852abSdrh     addr1 = sqlite3VdbeAddOp2(v, OP_Rewind, iSrc, 0); VdbeCoverage(v);
2354e7b554d6Sdrh     sqlite3VdbeAddOp3(v, OP_RowData, iSrc, regData, 1);
23558257aa8dSdrh     if( db->mDbFlags & DBFLAG_Vacuum ){
2356e34162b1Sdan       /* This INSERT command is part of a VACUUM operation, which guarantees
2357e34162b1Sdan       ** that the destination table is empty. If all indexed columns use
2358e34162b1Sdan       ** collation sequence BINARY, then it can also be assumed that the
2359e34162b1Sdan       ** index will be populated by inserting keys in strictly sorted
2360e34162b1Sdan       ** order. In this case, instead of seeking within the b-tree as part
236186b40dfdSdrh       ** of every OP_IdxInsert opcode, an OP_SeekEnd is added before the
2362e34162b1Sdan       ** OP_IdxInsert to seek to the point within the b-tree where each key
2363e34162b1Sdan       ** should be inserted. This is faster.
2364e34162b1Sdan       **
2365e34162b1Sdan       ** If any of the indexed columns use a collation sequence other than
2366e34162b1Sdan       ** BINARY, this optimization is disabled. This is because the user
2367e34162b1Sdan       ** might change the definition of a collation sequence and then run
2368e34162b1Sdan       ** a VACUUM command. In that case keys may not be written in strictly
2369e34162b1Sdan       ** sorted order.  */
2370e34162b1Sdan       for(i=0; i<pSrcIdx->nColumn; i++){
2371f19aa5faSdrh         const char *zColl = pSrcIdx->azColl[i];
2372f19aa5faSdrh         if( sqlite3_stricmp(sqlite3StrBINARY, zColl) ) break;
2373e34162b1Sdan       }
2374e34162b1Sdan       if( i==pSrcIdx->nColumn ){
237541b9ca25Sdrh         idxInsFlags = OPFLAG_USESEEKRESULT;
237686b40dfdSdrh         sqlite3VdbeAddOp1(v, OP_SeekEnd, iDest);
2377e34162b1Sdan       }
2378e34162b1Sdan     }
237941b9ca25Sdrh     if( !HasRowid(pSrc) && pDestIdx->idxType==2 ){
238041b9ca25Sdrh       idxInsFlags |= OPFLAG_NCHANGE;
238141b9ca25Sdrh     }
23829b4eaebcSdrh     sqlite3VdbeAddOp2(v, OP_IdxInsert, iDest, regData);
23839b4eaebcSdrh     sqlite3VdbeChangeP5(v, idxInsFlags|OPFLAG_APPEND);
2384688852abSdrh     sqlite3VdbeAddOp2(v, OP_Next, iSrc, addr1+1); VdbeCoverage(v);
23859d9cf229Sdrh     sqlite3VdbeJumpHere(v, addr1);
238655548273Sdrh     sqlite3VdbeAddOp2(v, OP_Close, iSrc, 0);
238755548273Sdrh     sqlite3VdbeAddOp2(v, OP_Close, iDest, 0);
23889d9cf229Sdrh   }
2389aceb31b1Sdrh   if( emptySrcTest ) sqlite3VdbeJumpHere(v, emptySrcTest);
2390b7654111Sdrh   sqlite3ReleaseTempReg(pParse, regRowid);
2391b7654111Sdrh   sqlite3ReleaseTempReg(pParse, regData);
23929d9cf229Sdrh   if( emptyDestTest ){
23931dd518cfSdrh     sqlite3AutoincrementEnd(pParse);
239466a5167bSdrh     sqlite3VdbeAddOp2(v, OP_Halt, SQLITE_OK, 0);
23959d9cf229Sdrh     sqlite3VdbeJumpHere(v, emptyDestTest);
239666a5167bSdrh     sqlite3VdbeAddOp2(v, OP_Close, iDest, 0);
23979d9cf229Sdrh     return 0;
23989d9cf229Sdrh   }else{
23999d9cf229Sdrh     return 1;
24009d9cf229Sdrh   }
24019d9cf229Sdrh }
24029d9cf229Sdrh #endif /* SQLITE_OMIT_XFER_OPT */
2403