xref: /sqlite-3.40.0/src/insert.c (revision f4d31bcb)
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 /*
18bbb5e4e0Sdrh ** Generate code that will open a table for reading.
19bbb5e4e0Sdrh */
20bbb5e4e0Sdrh void sqlite3OpenTable(
21bbb5e4e0Sdrh   Parse *p,       /* Generate code into this VDBE */
22bbb5e4e0Sdrh   int iCur,       /* The cursor number of the table */
23bbb5e4e0Sdrh   int iDb,        /* The database index in sqlite3.aDb[] */
24bbb5e4e0Sdrh   Table *pTab,    /* The table to be opened */
25bbb5e4e0Sdrh   int opcode      /* OP_OpenRead or OP_OpenWrite */
26bbb5e4e0Sdrh ){
27bbb5e4e0Sdrh   Vdbe *v;
28bbb5e4e0Sdrh   if( IsVirtual(pTab) ) return;
29bbb5e4e0Sdrh   v = sqlite3GetVdbe(p);
30bbb5e4e0Sdrh   assert( opcode==OP_OpenWrite || opcode==OP_OpenRead );
31bbb5e4e0Sdrh   sqlite3TableLock(p, iDb, pTab->tnum, (opcode==OP_OpenWrite)?1:0, pTab->zName);
32bbb5e4e0Sdrh   sqlite3VdbeAddOp3(v, opcode, iCur, pTab->tnum, iDb);
33bbb5e4e0Sdrh   sqlite3VdbeChangeP4(v, -1, SQLITE_INT_TO_PTR(pTab->nCol), P4_INT32);
34bbb5e4e0Sdrh   VdbeComment((v, "%s", pTab->zName));
35bbb5e4e0Sdrh }
36bbb5e4e0Sdrh 
37bbb5e4e0Sdrh /*
3869f8bb9cSdan ** Return a pointer to the column affinity string associated with index
3969f8bb9cSdan ** pIdx. A column affinity string has one character for each column in
4069f8bb9cSdan ** the table, according to the affinity of the column:
413d1bfeaaSdanielk1977 **
423d1bfeaaSdanielk1977 **  Character      Column affinity
433d1bfeaaSdanielk1977 **  ------------------------------
443eda040bSdrh **  'a'            TEXT
453eda040bSdrh **  'b'            NONE
463eda040bSdrh **  'c'            NUMERIC
473eda040bSdrh **  'd'            INTEGER
483eda040bSdrh **  'e'            REAL
492d401ab8Sdrh **
500c733f67Sdan ** An extra 'd' is appended to the end of the string to cover the
512d401ab8Sdrh ** rowid that appears as the last column in every index.
5269f8bb9cSdan **
5369f8bb9cSdan ** Memory for the buffer containing the column index affinity string
5469f8bb9cSdan ** is managed along with the rest of the Index structure. It will be
5569f8bb9cSdan ** released when sqlite3DeleteIndex() is called.
563d1bfeaaSdanielk1977 */
5769f8bb9cSdan const char *sqlite3IndexAffinityStr(Vdbe *v, Index *pIdx){
58a37cdde0Sdanielk1977   if( !pIdx->zColAff ){
59e014a838Sdanielk1977     /* The first time a column affinity string for a particular index is
60a37cdde0Sdanielk1977     ** required, it is allocated and populated here. It is then stored as
61e014a838Sdanielk1977     ** a member of the Index structure for subsequent use.
62a37cdde0Sdanielk1977     **
63a37cdde0Sdanielk1977     ** The column affinity string will eventually be deleted by
64e014a838Sdanielk1977     ** sqliteDeleteIndex() when the Index structure itself is cleaned
65a37cdde0Sdanielk1977     ** up.
66a37cdde0Sdanielk1977     */
67a37cdde0Sdanielk1977     int n;
68a37cdde0Sdanielk1977     Table *pTab = pIdx->pTable;
69abb6fcabSdrh     sqlite3 *db = sqlite3VdbeDb(v);
70b975598eSdrh     pIdx->zColAff = (char *)sqlite3DbMallocRaw(0, pIdx->nColumn+2);
71a37cdde0Sdanielk1977     if( !pIdx->zColAff ){
72633e6d57Sdrh       db->mallocFailed = 1;
7369f8bb9cSdan       return 0;
74a37cdde0Sdanielk1977     }
75a37cdde0Sdanielk1977     for(n=0; n<pIdx->nColumn; n++){
76a37cdde0Sdanielk1977       pIdx->zColAff[n] = pTab->aCol[pIdx->aiColumn[n]].affinity;
77a37cdde0Sdanielk1977     }
780c733f67Sdan     pIdx->zColAff[n++] = SQLITE_AFF_INTEGER;
792d401ab8Sdrh     pIdx->zColAff[n] = 0;
80a37cdde0Sdanielk1977   }
813d1bfeaaSdanielk1977 
8269f8bb9cSdan   return pIdx->zColAff;
83a37cdde0Sdanielk1977 }
84a37cdde0Sdanielk1977 
85a37cdde0Sdanielk1977 /*
8666a5167bSdrh ** Set P4 of the most recently inserted opcode to a column affinity
87a37cdde0Sdanielk1977 ** string for table pTab. A column affinity string has one character
88a37cdde0Sdanielk1977 ** for each column indexed by the index, according to the affinity of the
89a37cdde0Sdanielk1977 ** column:
90a37cdde0Sdanielk1977 **
91a37cdde0Sdanielk1977 **  Character      Column affinity
92a37cdde0Sdanielk1977 **  ------------------------------
933eda040bSdrh **  'a'            TEXT
943eda040bSdrh **  'b'            NONE
953eda040bSdrh **  'c'            NUMERIC
963eda040bSdrh **  'd'            INTEGER
973eda040bSdrh **  'e'            REAL
98a37cdde0Sdanielk1977 */
99a37cdde0Sdanielk1977 void sqlite3TableAffinityStr(Vdbe *v, Table *pTab){
1003d1bfeaaSdanielk1977   /* The first time a column affinity string for a particular table
1013d1bfeaaSdanielk1977   ** is required, it is allocated and populated here. It is then
1023d1bfeaaSdanielk1977   ** stored as a member of the Table structure for subsequent use.
1033d1bfeaaSdanielk1977   **
1043d1bfeaaSdanielk1977   ** The column affinity string will eventually be deleted by
1053d1bfeaaSdanielk1977   ** sqlite3DeleteTable() when the Table structure itself is cleaned up.
1063d1bfeaaSdanielk1977   */
1073d1bfeaaSdanielk1977   if( !pTab->zColAff ){
1083d1bfeaaSdanielk1977     char *zColAff;
1093d1bfeaaSdanielk1977     int i;
110abb6fcabSdrh     sqlite3 *db = sqlite3VdbeDb(v);
1113d1bfeaaSdanielk1977 
112b975598eSdrh     zColAff = (char *)sqlite3DbMallocRaw(0, pTab->nCol+1);
1133d1bfeaaSdanielk1977     if( !zColAff ){
114633e6d57Sdrh       db->mallocFailed = 1;
115a37cdde0Sdanielk1977       return;
1163d1bfeaaSdanielk1977     }
1173d1bfeaaSdanielk1977 
1183d1bfeaaSdanielk1977     for(i=0; i<pTab->nCol; i++){
119a37cdde0Sdanielk1977       zColAff[i] = pTab->aCol[i].affinity;
1203d1bfeaaSdanielk1977     }
1213d1bfeaaSdanielk1977     zColAff[pTab->nCol] = '\0';
1223d1bfeaaSdanielk1977 
1233d1bfeaaSdanielk1977     pTab->zColAff = zColAff;
1243d1bfeaaSdanielk1977   }
1253d1bfeaaSdanielk1977 
1268d129422Sdrh   sqlite3VdbeChangeP4(v, -1, pTab->zColAff, P4_TRANSIENT);
1273d1bfeaaSdanielk1977 }
1283d1bfeaaSdanielk1977 
1294d88778bSdanielk1977 /*
13048d1178aSdrh ** Return non-zero if the table pTab in database iDb or any of its indices
13148d1178aSdrh ** have been opened at any point in the VDBE program beginning at location
13248d1178aSdrh ** iStartAddr throught the end of the program.  This is used to see if
13348d1178aSdrh ** a statement of the form  "INSERT INTO <iDb, pTab> SELECT ..." can
13448d1178aSdrh ** run without using temporary table for the results of the SELECT.
1354d88778bSdanielk1977 */
136595a523aSdanielk1977 static int readsTable(Parse *p, int iStartAddr, int iDb, Table *pTab){
137595a523aSdanielk1977   Vdbe *v = sqlite3GetVdbe(p);
1384d88778bSdanielk1977   int i;
13948d1178aSdrh   int iEnd = sqlite3VdbeCurrentAddr(v);
140595a523aSdanielk1977 #ifndef SQLITE_OMIT_VIRTUALTABLE
141595a523aSdanielk1977   VTable *pVTab = IsVirtual(pTab) ? sqlite3GetVTable(p->db, pTab) : 0;
142595a523aSdanielk1977 #endif
143595a523aSdanielk1977 
14448d1178aSdrh   for(i=iStartAddr; i<iEnd; i++){
14548d1178aSdrh     VdbeOp *pOp = sqlite3VdbeGetOp(v, i);
146ef0bea92Sdrh     assert( pOp!=0 );
147207872a4Sdanielk1977     if( pOp->opcode==OP_OpenRead && pOp->p3==iDb ){
14848d1178aSdrh       Index *pIndex;
149207872a4Sdanielk1977       int tnum = pOp->p2;
15048d1178aSdrh       if( tnum==pTab->tnum ){
15148d1178aSdrh         return 1;
15248d1178aSdrh       }
15348d1178aSdrh       for(pIndex=pTab->pIndex; pIndex; pIndex=pIndex->pNext){
15448d1178aSdrh         if( tnum==pIndex->tnum ){
15548d1178aSdrh           return 1;
15648d1178aSdrh         }
15748d1178aSdrh       }
15848d1178aSdrh     }
159543165efSdrh #ifndef SQLITE_OMIT_VIRTUALTABLE
160595a523aSdanielk1977     if( pOp->opcode==OP_VOpen && pOp->p4.pVtab==pVTab ){
1612dca4ac1Sdanielk1977       assert( pOp->p4.pVtab!=0 );
16266a5167bSdrh       assert( pOp->p4type==P4_VTAB );
16348d1178aSdrh       return 1;
1644d88778bSdanielk1977     }
165543165efSdrh #endif
1664d88778bSdanielk1977   }
1674d88778bSdanielk1977   return 0;
1684d88778bSdanielk1977 }
1693d1bfeaaSdanielk1977 
1709d9cf229Sdrh #ifndef SQLITE_OMIT_AUTOINCREMENT
1719d9cf229Sdrh /*
1720b9f50d8Sdrh ** Locate or create an AutoincInfo structure associated with table pTab
1730b9f50d8Sdrh ** which is in database iDb.  Return the register number for the register
1740b9f50d8Sdrh ** that holds the maximum rowid.
1759d9cf229Sdrh **
1760b9f50d8Sdrh ** There is at most one AutoincInfo structure per table even if the
1770b9f50d8Sdrh ** same table is autoincremented multiple times due to inserts within
1780b9f50d8Sdrh ** triggers.  A new AutoincInfo structure is created if this is the
1790b9f50d8Sdrh ** first use of table pTab.  On 2nd and subsequent uses, the original
1800b9f50d8Sdrh ** AutoincInfo structure is used.
1819d9cf229Sdrh **
1820b9f50d8Sdrh ** Three memory locations are allocated:
1830b9f50d8Sdrh **
1840b9f50d8Sdrh **   (1)  Register to hold the name of the pTab table.
1850b9f50d8Sdrh **   (2)  Register to hold the maximum ROWID of pTab.
1860b9f50d8Sdrh **   (3)  Register to hold the rowid in sqlite_sequence of pTab
1870b9f50d8Sdrh **
1880b9f50d8Sdrh ** The 2nd register is the one that is returned.  That is all the
1890b9f50d8Sdrh ** insert routine needs to know about.
1909d9cf229Sdrh */
1919d9cf229Sdrh static int autoIncBegin(
1929d9cf229Sdrh   Parse *pParse,      /* Parsing context */
1939d9cf229Sdrh   int iDb,            /* Index of the database holding pTab */
1949d9cf229Sdrh   Table *pTab         /* The table we are writing to */
1959d9cf229Sdrh ){
1966a288a33Sdrh   int memId = 0;      /* Register holding maximum rowid */
1977d10d5a6Sdrh   if( pTab->tabFlags & TF_Autoincrement ){
19865a7cd16Sdan     Parse *pToplevel = sqlite3ParseToplevel(pParse);
1990b9f50d8Sdrh     AutoincInfo *pInfo;
2000b9f50d8Sdrh 
20165a7cd16Sdan     pInfo = pToplevel->pAinc;
2020b9f50d8Sdrh     while( pInfo && pInfo->pTab!=pTab ){ pInfo = pInfo->pNext; }
2030b9f50d8Sdrh     if( pInfo==0 ){
2040b9f50d8Sdrh       pInfo = sqlite3DbMallocRaw(pParse->db, sizeof(*pInfo));
2050b9f50d8Sdrh       if( pInfo==0 ) return 0;
20665a7cd16Sdan       pInfo->pNext = pToplevel->pAinc;
20765a7cd16Sdan       pToplevel->pAinc = pInfo;
2080b9f50d8Sdrh       pInfo->pTab = pTab;
2090b9f50d8Sdrh       pInfo->iDb = iDb;
21065a7cd16Sdan       pToplevel->nMem++;                  /* Register to hold name of table */
21165a7cd16Sdan       pInfo->regCtr = ++pToplevel->nMem;  /* Max rowid register */
21265a7cd16Sdan       pToplevel->nMem++;                  /* Rowid in sqlite_sequence */
2130b9f50d8Sdrh     }
2140b9f50d8Sdrh     memId = pInfo->regCtr;
2159d9cf229Sdrh   }
2169d9cf229Sdrh   return memId;
2179d9cf229Sdrh }
2189d9cf229Sdrh 
2199d9cf229Sdrh /*
2200b9f50d8Sdrh ** This routine generates code that will initialize all of the
2210b9f50d8Sdrh ** register used by the autoincrement tracker.
2220b9f50d8Sdrh */
2230b9f50d8Sdrh void sqlite3AutoincrementBegin(Parse *pParse){
2240b9f50d8Sdrh   AutoincInfo *p;            /* Information about an AUTOINCREMENT */
2250b9f50d8Sdrh   sqlite3 *db = pParse->db;  /* The database connection */
2260b9f50d8Sdrh   Db *pDb;                   /* Database only autoinc table */
2270b9f50d8Sdrh   int memId;                 /* Register holding max rowid */
2280b9f50d8Sdrh   int addr;                  /* A VDBE address */
2290b9f50d8Sdrh   Vdbe *v = pParse->pVdbe;   /* VDBE under construction */
2300b9f50d8Sdrh 
231345ba7dbSdrh   /* This routine is never called during trigger-generation.  It is
232345ba7dbSdrh   ** only called from the top-level */
233345ba7dbSdrh   assert( pParse->pTriggerTab==0 );
234345ba7dbSdrh   assert( pParse==sqlite3ParseToplevel(pParse) );
23576d462eeSdan 
2360b9f50d8Sdrh   assert( v );   /* We failed long ago if this is not so */
2370b9f50d8Sdrh   for(p = pParse->pAinc; p; p = p->pNext){
2380b9f50d8Sdrh     pDb = &db->aDb[p->iDb];
2390b9f50d8Sdrh     memId = p->regCtr;
2402120608eSdrh     assert( sqlite3SchemaMutexHeld(db, 0, pDb->pSchema) );
2410b9f50d8Sdrh     sqlite3OpenTable(pParse, 0, p->iDb, pDb->pSchema->pSeqTab, OP_OpenRead);
242*f4d31bcbSdrh     sqlite3VdbeAddOp3(v, OP_Null, 0, memId, memId+1);
2430b9f50d8Sdrh     addr = sqlite3VdbeCurrentAddr(v);
2440b9f50d8Sdrh     sqlite3VdbeAddOp4(v, OP_String8, 0, memId-1, 0, p->pTab->zName, 0);
2450b9f50d8Sdrh     sqlite3VdbeAddOp2(v, OP_Rewind, 0, addr+9);
2460b9f50d8Sdrh     sqlite3VdbeAddOp3(v, OP_Column, 0, 0, memId);
2470b9f50d8Sdrh     sqlite3VdbeAddOp3(v, OP_Ne, memId-1, addr+7, memId);
2480b9f50d8Sdrh     sqlite3VdbeChangeP5(v, SQLITE_JUMPIFNULL);
2490b9f50d8Sdrh     sqlite3VdbeAddOp2(v, OP_Rowid, 0, memId+1);
2500b9f50d8Sdrh     sqlite3VdbeAddOp3(v, OP_Column, 0, 1, memId);
2510b9f50d8Sdrh     sqlite3VdbeAddOp2(v, OP_Goto, 0, addr+9);
2520b9f50d8Sdrh     sqlite3VdbeAddOp2(v, OP_Next, 0, addr+2);
2530b9f50d8Sdrh     sqlite3VdbeAddOp2(v, OP_Integer, 0, memId);
2540b9f50d8Sdrh     sqlite3VdbeAddOp0(v, OP_Close);
2550b9f50d8Sdrh   }
2560b9f50d8Sdrh }
2570b9f50d8Sdrh 
2580b9f50d8Sdrh /*
2599d9cf229Sdrh ** Update the maximum rowid for an autoincrement calculation.
2609d9cf229Sdrh **
2619d9cf229Sdrh ** This routine should be called when the top of the stack holds a
2629d9cf229Sdrh ** new rowid that is about to be inserted.  If that new rowid is
2639d9cf229Sdrh ** larger than the maximum rowid in the memId memory cell, then the
2649d9cf229Sdrh ** memory cell is updated.  The stack is unchanged.
2659d9cf229Sdrh */
2666a288a33Sdrh static void autoIncStep(Parse *pParse, int memId, int regRowid){
2679d9cf229Sdrh   if( memId>0 ){
2686a288a33Sdrh     sqlite3VdbeAddOp2(pParse->pVdbe, OP_MemMax, memId, regRowid);
2699d9cf229Sdrh   }
2709d9cf229Sdrh }
2719d9cf229Sdrh 
2729d9cf229Sdrh /*
2730b9f50d8Sdrh ** This routine generates the code needed to write autoincrement
2740b9f50d8Sdrh ** maximum rowid values back into the sqlite_sequence register.
2750b9f50d8Sdrh ** Every statement that might do an INSERT into an autoincrement
2760b9f50d8Sdrh ** table (either directly or through triggers) needs to call this
2770b9f50d8Sdrh ** routine just before the "exit" code.
2789d9cf229Sdrh */
2790b9f50d8Sdrh void sqlite3AutoincrementEnd(Parse *pParse){
2800b9f50d8Sdrh   AutoincInfo *p;
2819d9cf229Sdrh   Vdbe *v = pParse->pVdbe;
2820b9f50d8Sdrh   sqlite3 *db = pParse->db;
2836a288a33Sdrh 
2849d9cf229Sdrh   assert( v );
2850b9f50d8Sdrh   for(p = pParse->pAinc; p; p = p->pNext){
2860b9f50d8Sdrh     Db *pDb = &db->aDb[p->iDb];
2870b9f50d8Sdrh     int j1, j2, j3, j4, j5;
2880b9f50d8Sdrh     int iRec;
2890b9f50d8Sdrh     int memId = p->regCtr;
2900b9f50d8Sdrh 
2910b9f50d8Sdrh     iRec = sqlite3GetTempReg(pParse);
2922120608eSdrh     assert( sqlite3SchemaMutexHeld(db, 0, pDb->pSchema) );
2930b9f50d8Sdrh     sqlite3OpenTable(pParse, 0, p->iDb, pDb->pSchema->pSeqTab, OP_OpenWrite);
2946a288a33Sdrh     j1 = sqlite3VdbeAddOp1(v, OP_NotNull, memId+1);
2950b9f50d8Sdrh     j2 = sqlite3VdbeAddOp0(v, OP_Rewind);
2960b9f50d8Sdrh     j3 = sqlite3VdbeAddOp3(v, OP_Column, 0, 0, iRec);
2970b9f50d8Sdrh     j4 = sqlite3VdbeAddOp3(v, OP_Eq, memId-1, 0, iRec);
2980b9f50d8Sdrh     sqlite3VdbeAddOp2(v, OP_Next, 0, j3);
2990b9f50d8Sdrh     sqlite3VdbeJumpHere(v, j2);
3000b9f50d8Sdrh     sqlite3VdbeAddOp2(v, OP_NewRowid, 0, memId+1);
3010b9f50d8Sdrh     j5 = sqlite3VdbeAddOp0(v, OP_Goto);
3020b9f50d8Sdrh     sqlite3VdbeJumpHere(v, j4);
3030b9f50d8Sdrh     sqlite3VdbeAddOp2(v, OP_Rowid, 0, memId+1);
3046a288a33Sdrh     sqlite3VdbeJumpHere(v, j1);
3050b9f50d8Sdrh     sqlite3VdbeJumpHere(v, j5);
306a7a8e14bSdanielk1977     sqlite3VdbeAddOp3(v, OP_MakeRecord, memId-1, 2, iRec);
3070b9f50d8Sdrh     sqlite3VdbeAddOp3(v, OP_Insert, 0, iRec, memId+1);
30835573356Sdrh     sqlite3VdbeChangeP5(v, OPFLAG_APPEND);
3090b9f50d8Sdrh     sqlite3VdbeAddOp0(v, OP_Close);
3100b9f50d8Sdrh     sqlite3ReleaseTempReg(pParse, iRec);
3119d9cf229Sdrh   }
3129d9cf229Sdrh }
3139d9cf229Sdrh #else
3149d9cf229Sdrh /*
3159d9cf229Sdrh ** If SQLITE_OMIT_AUTOINCREMENT is defined, then the three routines
3169d9cf229Sdrh ** above are all no-ops
3179d9cf229Sdrh */
3189d9cf229Sdrh # define autoIncBegin(A,B,C) (0)
319287fb61cSdanielk1977 # define autoIncStep(A,B,C)
3209d9cf229Sdrh #endif /* SQLITE_OMIT_AUTOINCREMENT */
3219d9cf229Sdrh 
3229d9cf229Sdrh 
3239d9cf229Sdrh /* Forward declaration */
3249d9cf229Sdrh static int xferOptimization(
3259d9cf229Sdrh   Parse *pParse,        /* Parser context */
3269d9cf229Sdrh   Table *pDest,         /* The table we are inserting into */
3279d9cf229Sdrh   Select *pSelect,      /* A SELECT statement to use as the data source */
3289d9cf229Sdrh   int onError,          /* How to handle constraint errors */
3299d9cf229Sdrh   int iDbDest           /* The database of pDest */
3309d9cf229Sdrh );
3319d9cf229Sdrh 
3323d1bfeaaSdanielk1977 /*
3331ccde15dSdrh ** This routine is call to handle SQL of the following forms:
334cce7d176Sdrh **
335cce7d176Sdrh **    insert into TABLE (IDLIST) values(EXPRLIST)
3361ccde15dSdrh **    insert into TABLE (IDLIST) select
337cce7d176Sdrh **
3381ccde15dSdrh ** The IDLIST following the table name is always optional.  If omitted,
3391ccde15dSdrh ** then a list of all columns for the table is substituted.  The IDLIST
340967e8b73Sdrh ** appears in the pColumn parameter.  pColumn is NULL if IDLIST is omitted.
3411ccde15dSdrh **
3421ccde15dSdrh ** The pList parameter holds EXPRLIST in the first form of the INSERT
3431ccde15dSdrh ** statement above, and pSelect is NULL.  For the second form, pList is
3441ccde15dSdrh ** NULL and pSelect is a pointer to the select statement used to generate
3451ccde15dSdrh ** data for the insert.
346142e30dfSdrh **
3479d9cf229Sdrh ** The code generated follows one of four templates.  For a simple
348142e30dfSdrh ** select with data coming from a VALUES clause, the code executes
349e00ee6ebSdrh ** once straight down through.  Pseudo-code follows (we call this
350e00ee6ebSdrh ** the "1st template"):
351142e30dfSdrh **
352142e30dfSdrh **         open write cursor to <table> and its indices
353142e30dfSdrh **         puts VALUES clause expressions onto the stack
354142e30dfSdrh **         write the resulting record into <table>
355142e30dfSdrh **         cleanup
356142e30dfSdrh **
3579d9cf229Sdrh ** The three remaining templates assume the statement is of the form
358142e30dfSdrh **
359142e30dfSdrh **   INSERT INTO <table> SELECT ...
360142e30dfSdrh **
3619d9cf229Sdrh ** If the SELECT clause is of the restricted form "SELECT * FROM <table2>" -
3629d9cf229Sdrh ** in other words if the SELECT pulls all columns from a single table
3639d9cf229Sdrh ** and there is no WHERE or LIMIT or GROUP BY or ORDER BY clauses, and
3649d9cf229Sdrh ** if <table2> and <table1> are distinct tables but have identical
3659d9cf229Sdrh ** schemas, including all the same indices, then a special optimization
3669d9cf229Sdrh ** is invoked that copies raw records from <table2> over to <table1>.
3679d9cf229Sdrh ** See the xferOptimization() function for the implementation of this
368e00ee6ebSdrh ** template.  This is the 2nd template.
3699d9cf229Sdrh **
3709d9cf229Sdrh **         open a write cursor to <table>
3719d9cf229Sdrh **         open read cursor on <table2>
3729d9cf229Sdrh **         transfer all records in <table2> over to <table>
3739d9cf229Sdrh **         close cursors
3749d9cf229Sdrh **         foreach index on <table>
3759d9cf229Sdrh **           open a write cursor on the <table> index
3769d9cf229Sdrh **           open a read cursor on the corresponding <table2> index
3779d9cf229Sdrh **           transfer all records from the read to the write cursors
3789d9cf229Sdrh **           close cursors
3799d9cf229Sdrh **         end foreach
3809d9cf229Sdrh **
381e00ee6ebSdrh ** The 3rd template is for when the second template does not apply
3829d9cf229Sdrh ** and the SELECT clause does not read from <table> at any time.
3839d9cf229Sdrh ** The generated code follows this template:
384142e30dfSdrh **
385e00ee6ebSdrh **         EOF <- 0
386e00ee6ebSdrh **         X <- A
387142e30dfSdrh **         goto B
388142e30dfSdrh **      A: setup for the SELECT
3899d9cf229Sdrh **         loop over the rows in the SELECT
390e00ee6ebSdrh **           load values into registers R..R+n
391e00ee6ebSdrh **           yield X
392142e30dfSdrh **         end loop
393142e30dfSdrh **         cleanup after the SELECT
394e00ee6ebSdrh **         EOF <- 1
395e00ee6ebSdrh **         yield X
396142e30dfSdrh **         goto A
397e00ee6ebSdrh **      B: open write cursor to <table> and its indices
398e00ee6ebSdrh **      C: yield X
399e00ee6ebSdrh **         if EOF goto D
400e00ee6ebSdrh **         insert the select result into <table> from R..R+n
401e00ee6ebSdrh **         goto C
402142e30dfSdrh **      D: cleanup
403142e30dfSdrh **
404e00ee6ebSdrh ** The 4th template is used if the insert statement takes its
405142e30dfSdrh ** values from a SELECT but the data is being inserted into a table
406142e30dfSdrh ** that is also read as part of the SELECT.  In the third form,
407142e30dfSdrh ** we have to use a intermediate table to store the results of
408142e30dfSdrh ** the select.  The template is like this:
409142e30dfSdrh **
410e00ee6ebSdrh **         EOF <- 0
411e00ee6ebSdrh **         X <- A
412142e30dfSdrh **         goto B
413142e30dfSdrh **      A: setup for the SELECT
414142e30dfSdrh **         loop over the tables in the SELECT
415e00ee6ebSdrh **           load value into register R..R+n
416e00ee6ebSdrh **           yield X
417142e30dfSdrh **         end loop
418142e30dfSdrh **         cleanup after the SELECT
419e00ee6ebSdrh **         EOF <- 1
420e00ee6ebSdrh **         yield X
421e00ee6ebSdrh **         halt-error
422e00ee6ebSdrh **      B: open temp table
423e00ee6ebSdrh **      L: yield X
424e00ee6ebSdrh **         if EOF goto M
425e00ee6ebSdrh **         insert row from R..R+n into temp table
426e00ee6ebSdrh **         goto L
427e00ee6ebSdrh **      M: open write cursor to <table> and its indices
428e00ee6ebSdrh **         rewind temp table
429e00ee6ebSdrh **      C: loop over rows of intermediate table
430142e30dfSdrh **           transfer values form intermediate table into <table>
431e00ee6ebSdrh **         end loop
432e00ee6ebSdrh **      D: cleanup
433cce7d176Sdrh */
4344adee20fSdanielk1977 void sqlite3Insert(
435cce7d176Sdrh   Parse *pParse,        /* Parser context */
436113088ecSdrh   SrcList *pTabList,    /* Name of table into which we are inserting */
437cce7d176Sdrh   ExprList *pList,      /* List of values to be inserted */
4385974a30fSdrh   Select *pSelect,      /* A SELECT statement to use as the data source */
4399cfcf5d4Sdrh   IdList *pColumn,      /* Column names corresponding to IDLIST. */
4409cfcf5d4Sdrh   int onError           /* How to handle constraint errors */
441cce7d176Sdrh ){
4426a288a33Sdrh   sqlite3 *db;          /* The main database structure */
4436a288a33Sdrh   Table *pTab;          /* The table to insert into.  aka TABLE */
444113088ecSdrh   char *zTab;           /* Name of the table into which we are inserting */
445e22a334bSdrh   const char *zDb;      /* Name of the database holding this table */
4465974a30fSdrh   int i, j, idx;        /* Loop counters */
4475974a30fSdrh   Vdbe *v;              /* Generate code into this virtual machine */
4485974a30fSdrh   Index *pIdx;          /* For looping over indices of the table */
449967e8b73Sdrh   int nColumn;          /* Number of columns in the data */
4506a288a33Sdrh   int nHidden = 0;      /* Number of hidden columns if TABLE is virtual */
45104adf416Sdrh   int baseCur = 0;      /* VDBE Cursor number for pTab */
4524a32431cSdrh   int keyColumn = -1;   /* Column that is the INTEGER PRIMARY KEY */
4530ca3e24bSdrh   int endOfLoop;        /* Label for the end of the insertion loop */
4544d88778bSdanielk1977   int useTempTable = 0; /* Store SELECT results in intermediate table */
455cfe9a69fSdanielk1977   int srcTab = 0;       /* Data comes from this temporary cursor if >=0 */
456e00ee6ebSdrh   int addrInsTop = 0;   /* Jump to label "D" */
457e00ee6ebSdrh   int addrCont = 0;     /* Top of insert loop. Label "C" in templates 3 and 4 */
458e00ee6ebSdrh   int addrSelect = 0;   /* Address of coroutine that implements the SELECT */
4592eb95377Sdrh   SelectDest dest;      /* Destination for SELECT on rhs of INSERT */
4606a288a33Sdrh   int iDb;              /* Index of database holding TABLE */
4612958a4e6Sdrh   Db *pDb;              /* The database containing table being inserted into */
462e4d90813Sdrh   int appendFlag = 0;   /* True if the insert is likely to be an append */
463cce7d176Sdrh 
4646a288a33Sdrh   /* Register allocations */
4651bd10f8aSdrh   int regFromSelect = 0;/* Base register for data coming from SELECT */
4666a288a33Sdrh   int regAutoinc = 0;   /* Register holding the AUTOINCREMENT counter */
4676a288a33Sdrh   int regRowCount = 0;  /* Memory cell used for the row counter */
4686a288a33Sdrh   int regIns;           /* Block of regs holding rowid+data being inserted */
4696a288a33Sdrh   int regRowid;         /* registers holding insert rowid */
4706a288a33Sdrh   int regData;          /* register holding first column to insert */
4711bd10f8aSdrh   int regEof = 0;       /* Register recording end of SELECT data */
472aa9b8963Sdrh   int *aRegIdx = 0;     /* One register allocated to each index */
4736a288a33Sdrh 
474798da52cSdrh #ifndef SQLITE_OMIT_TRIGGER
475798da52cSdrh   int isView;                 /* True if attempting to insert into a view */
4762f886d1dSdanielk1977   Trigger *pTrigger;          /* List of triggers on pTab, if required */
4772f886d1dSdanielk1977   int tmask;                  /* Mask of trigger times */
478798da52cSdrh #endif
479c3f9bad2Sdanielk1977 
48017435752Sdrh   db = pParse->db;
4811bd10f8aSdrh   memset(&dest, 0, sizeof(dest));
48217435752Sdrh   if( pParse->nErr || db->mallocFailed ){
4836f7adc8aSdrh     goto insert_cleanup;
4846f7adc8aSdrh   }
485daffd0e5Sdrh 
4861ccde15dSdrh   /* Locate the table into which we will be inserting new information.
4871ccde15dSdrh   */
488113088ecSdrh   assert( pTabList->nSrc==1 );
489113088ecSdrh   zTab = pTabList->a[0].zName;
490098d1684Sdrh   if( NEVER(zTab==0) ) goto insert_cleanup;
4914adee20fSdanielk1977   pTab = sqlite3SrcListLookup(pParse, pTabList);
492c3f9bad2Sdanielk1977   if( pTab==0 ){
493c3f9bad2Sdanielk1977     goto insert_cleanup;
494c3f9bad2Sdanielk1977   }
495da184236Sdanielk1977   iDb = sqlite3SchemaToIndex(db, pTab->pSchema);
496da184236Sdanielk1977   assert( iDb<db->nDb );
497da184236Sdanielk1977   pDb = &db->aDb[iDb];
4982958a4e6Sdrh   zDb = pDb->zName;
4994adee20fSdanielk1977   if( sqlite3AuthCheck(pParse, SQLITE_INSERT, pTab->zName, 0, zDb) ){
5001962bda7Sdrh     goto insert_cleanup;
5011962bda7Sdrh   }
502c3f9bad2Sdanielk1977 
503b7f9164eSdrh   /* Figure out if we have any triggers and if the table being
504b7f9164eSdrh   ** inserted into is a view
505b7f9164eSdrh   */
506b7f9164eSdrh #ifndef SQLITE_OMIT_TRIGGER
5072f886d1dSdanielk1977   pTrigger = sqlite3TriggersExist(pParse, pTab, TK_INSERT, 0, &tmask);
508b7f9164eSdrh   isView = pTab->pSelect!=0;
509b7f9164eSdrh #else
5102f886d1dSdanielk1977 # define pTrigger 0
5112f886d1dSdanielk1977 # define tmask 0
512b7f9164eSdrh # define isView 0
513b7f9164eSdrh #endif
514b7f9164eSdrh #ifdef SQLITE_OMIT_VIEW
515b7f9164eSdrh # undef isView
516b7f9164eSdrh # define isView 0
517b7f9164eSdrh #endif
5182f886d1dSdanielk1977   assert( (pTrigger && tmask) || (pTrigger==0 && tmask==0) );
519b7f9164eSdrh 
520f573c99bSdrh   /* If pTab is really a view, make sure it has been initialized.
521b3d24bf8Sdanielk1977   ** ViewGetColumnNames() is a no-op if pTab is not a view (or virtual
522b3d24bf8Sdanielk1977   ** module table).
523f573c99bSdrh   */
524b3d24bf8Sdanielk1977   if( sqlite3ViewGetColumnNames(pParse, pTab) ){
525f573c99bSdrh     goto insert_cleanup;
526f573c99bSdrh   }
527f573c99bSdrh 
528595a523aSdanielk1977   /* Ensure that:
529595a523aSdanielk1977   *  (a) the table is not read-only,
530595a523aSdanielk1977   *  (b) that if it is a view then ON INSERT triggers exist
531595a523aSdanielk1977   */
532595a523aSdanielk1977   if( sqlite3IsReadOnly(pParse, pTab, tmask) ){
533595a523aSdanielk1977     goto insert_cleanup;
534595a523aSdanielk1977   }
535595a523aSdanielk1977 
5361ccde15dSdrh   /* Allocate a VDBE
5371ccde15dSdrh   */
5384adee20fSdanielk1977   v = sqlite3GetVdbe(pParse);
5395974a30fSdrh   if( v==0 ) goto insert_cleanup;
5404794f735Sdrh   if( pParse->nested==0 ) sqlite3VdbeCountChanges(v);
5412f886d1dSdanielk1977   sqlite3BeginWriteOperation(pParse, pSelect || pTrigger, iDb);
5421ccde15dSdrh 
5439d9cf229Sdrh #ifndef SQLITE_OMIT_XFER_OPT
5449d9cf229Sdrh   /* If the statement is of the form
5459d9cf229Sdrh   **
5469d9cf229Sdrh   **       INSERT INTO <table1> SELECT * FROM <table2>;
5479d9cf229Sdrh   **
5489d9cf229Sdrh   ** Then special optimizations can be applied that make the transfer
5499d9cf229Sdrh   ** very fast and which reduce fragmentation of indices.
550e00ee6ebSdrh   **
551e00ee6ebSdrh   ** This is the 2nd template.
5529d9cf229Sdrh   */
5539d9cf229Sdrh   if( pColumn==0 && xferOptimization(pParse, pTab, pSelect, onError, iDb) ){
5542f886d1dSdanielk1977     assert( !pTrigger );
5559d9cf229Sdrh     assert( pList==0 );
5560b9f50d8Sdrh     goto insert_end;
5579d9cf229Sdrh   }
5589d9cf229Sdrh #endif /* SQLITE_OMIT_XFER_OPT */
5599d9cf229Sdrh 
5602958a4e6Sdrh   /* If this is an AUTOINCREMENT table, look up the sequence number in the
5616a288a33Sdrh   ** sqlite_sequence table and store it in memory cell regAutoinc.
5622958a4e6Sdrh   */
5636a288a33Sdrh   regAutoinc = autoIncBegin(pParse, iDb, pTab);
5642958a4e6Sdrh 
5651ccde15dSdrh   /* Figure out how many columns of data are supplied.  If the data
566e00ee6ebSdrh   ** is coming from a SELECT statement, then generate a co-routine that
567e00ee6ebSdrh   ** produces a single row of the SELECT on each invocation.  The
568e00ee6ebSdrh   ** co-routine is the common header to the 3rd and 4th templates.
5691ccde15dSdrh   */
5705974a30fSdrh   if( pSelect ){
571142e30dfSdrh     /* Data is coming from a SELECT.  Generate code to implement that SELECT
572e00ee6ebSdrh     ** as a co-routine.  The code is common to both the 3rd and 4th
573e00ee6ebSdrh     ** templates:
574e00ee6ebSdrh     **
575e00ee6ebSdrh     **         EOF <- 0
576e00ee6ebSdrh     **         X <- A
577e00ee6ebSdrh     **         goto B
578e00ee6ebSdrh     **      A: setup for the SELECT
579e00ee6ebSdrh     **         loop over the tables in the SELECT
580e00ee6ebSdrh     **           load value into register R..R+n
581e00ee6ebSdrh     **           yield X
582e00ee6ebSdrh     **         end loop
583e00ee6ebSdrh     **         cleanup after the SELECT
584e00ee6ebSdrh     **         EOF <- 1
585e00ee6ebSdrh     **         yield X
586e00ee6ebSdrh     **         halt-error
587e00ee6ebSdrh     **
588e00ee6ebSdrh     ** On each invocation of the co-routine, it puts a single row of the
589e00ee6ebSdrh     ** SELECT result into registers dest.iMem...dest.iMem+dest.nMem-1.
590e00ee6ebSdrh     ** (These output registers are allocated by sqlite3Select().)  When
591e00ee6ebSdrh     ** the SELECT completes, it sets the EOF flag stored in regEof.
592142e30dfSdrh     */
593e00ee6ebSdrh     int rc, j1;
5941013c932Sdrh 
595e00ee6ebSdrh     regEof = ++pParse->nMem;
596e00ee6ebSdrh     sqlite3VdbeAddOp2(v, OP_Integer, 0, regEof);      /* EOF <- 0 */
597e00ee6ebSdrh     VdbeComment((v, "SELECT eof flag"));
59892b01d53Sdrh     sqlite3SelectDestInit(&dest, SRT_Coroutine, ++pParse->nMem);
599e00ee6ebSdrh     addrSelect = sqlite3VdbeCurrentAddr(v)+2;
60092b01d53Sdrh     sqlite3VdbeAddOp2(v, OP_Integer, addrSelect-1, dest.iParm);
601e00ee6ebSdrh     j1 = sqlite3VdbeAddOp2(v, OP_Goto, 0, 0);
602e00ee6ebSdrh     VdbeComment((v, "Jump over SELECT coroutine"));
603b3bce662Sdanielk1977 
604b3bce662Sdanielk1977     /* Resolve the expressions in the SELECT statement and execute it. */
6057d10d5a6Sdrh     rc = sqlite3Select(pParse, pSelect, &dest);
606098d1684Sdrh     assert( pParse->nErr==0 || rc );
607098d1684Sdrh     if( rc || NEVER(pParse->nErr) || db->mallocFailed ){
6086f7adc8aSdrh       goto insert_cleanup;
6096f7adc8aSdrh     }
610e00ee6ebSdrh     sqlite3VdbeAddOp2(v, OP_Integer, 1, regEof);         /* EOF <- 1 */
61192b01d53Sdrh     sqlite3VdbeAddOp1(v, OP_Yield, dest.iParm);   /* yield X */
612e00ee6ebSdrh     sqlite3VdbeAddOp2(v, OP_Halt, SQLITE_INTERNAL, OE_Abort);
613e00ee6ebSdrh     VdbeComment((v, "End of SELECT coroutine"));
614e00ee6ebSdrh     sqlite3VdbeJumpHere(v, j1);                          /* label B: */
615b3bce662Sdanielk1977 
6166a288a33Sdrh     regFromSelect = dest.iMem;
6175974a30fSdrh     assert( pSelect->pEList );
618967e8b73Sdrh     nColumn = pSelect->pEList->nExpr;
619e00ee6ebSdrh     assert( dest.nMem==nColumn );
620142e30dfSdrh 
621142e30dfSdrh     /* Set useTempTable to TRUE if the result of the SELECT statement
622e00ee6ebSdrh     ** should be written into a temporary table (template 4).  Set to
623e00ee6ebSdrh     ** FALSE if each* row of the SELECT can be written directly into
624e00ee6ebSdrh     ** the destination table (template 3).
625048c530cSdrh     **
626048c530cSdrh     ** A temp table must be used if the table being updated is also one
627048c530cSdrh     ** of the tables being read by the SELECT statement.  Also use a
628048c530cSdrh     ** temp table in the case of row triggers.
629142e30dfSdrh     */
630595a523aSdanielk1977     if( pTrigger || readsTable(pParse, addrSelect, iDb, pTab) ){
631048c530cSdrh       useTempTable = 1;
632048c530cSdrh     }
633142e30dfSdrh 
634142e30dfSdrh     if( useTempTable ){
635e00ee6ebSdrh       /* Invoke the coroutine to extract information from the SELECT
636e00ee6ebSdrh       ** and add it to a transient table srcTab.  The code generated
637e00ee6ebSdrh       ** here is from the 4th template:
638e00ee6ebSdrh       **
639e00ee6ebSdrh       **      B: open temp table
640e00ee6ebSdrh       **      L: yield X
641e00ee6ebSdrh       **         if EOF goto M
642e00ee6ebSdrh       **         insert row from R..R+n into temp table
643e00ee6ebSdrh       **         goto L
644e00ee6ebSdrh       **      M: ...
645142e30dfSdrh       */
646e00ee6ebSdrh       int regRec;          /* Register to hold packed record */
647dc5ea5c7Sdrh       int regTempRowid;    /* Register to hold temp table ROWID */
648e00ee6ebSdrh       int addrTop;         /* Label "L" */
649e00ee6ebSdrh       int addrIf;          /* Address of jump to M */
650b7654111Sdrh 
651142e30dfSdrh       srcTab = pParse->nTab++;
652b7654111Sdrh       regRec = sqlite3GetTempReg(pParse);
653dc5ea5c7Sdrh       regTempRowid = sqlite3GetTempReg(pParse);
654e00ee6ebSdrh       sqlite3VdbeAddOp2(v, OP_OpenEphemeral, srcTab, nColumn);
65592b01d53Sdrh       addrTop = sqlite3VdbeAddOp1(v, OP_Yield, dest.iParm);
656e00ee6ebSdrh       addrIf = sqlite3VdbeAddOp1(v, OP_If, regEof);
6571db639ceSdrh       sqlite3VdbeAddOp3(v, OP_MakeRecord, regFromSelect, nColumn, regRec);
658dc5ea5c7Sdrh       sqlite3VdbeAddOp2(v, OP_NewRowid, srcTab, regTempRowid);
659dc5ea5c7Sdrh       sqlite3VdbeAddOp3(v, OP_Insert, srcTab, regRec, regTempRowid);
660e00ee6ebSdrh       sqlite3VdbeAddOp2(v, OP_Goto, 0, addrTop);
661e00ee6ebSdrh       sqlite3VdbeJumpHere(v, addrIf);
662b7654111Sdrh       sqlite3ReleaseTempReg(pParse, regRec);
663dc5ea5c7Sdrh       sqlite3ReleaseTempReg(pParse, regTempRowid);
664142e30dfSdrh     }
665142e30dfSdrh   }else{
666142e30dfSdrh     /* This is the case if the data for the INSERT is coming from a VALUES
667142e30dfSdrh     ** clause
668142e30dfSdrh     */
669b3bce662Sdanielk1977     NameContext sNC;
670b3bce662Sdanielk1977     memset(&sNC, 0, sizeof(sNC));
671b3bce662Sdanielk1977     sNC.pParse = pParse;
6725974a30fSdrh     srcTab = -1;
67348d1178aSdrh     assert( useTempTable==0 );
674147d0cccSdrh     nColumn = pList ? pList->nExpr : 0;
675e64e7b20Sdrh     for(i=0; i<nColumn; i++){
6767d10d5a6Sdrh       if( sqlite3ResolveExprNames(&sNC, pList->a[i].pExpr) ){
677b04a5d87Sdrh         goto insert_cleanup;
678b04a5d87Sdrh       }
679e64e7b20Sdrh     }
6805974a30fSdrh   }
6811ccde15dSdrh 
6821ccde15dSdrh   /* Make sure the number of columns in the source data matches the number
6831ccde15dSdrh   ** of columns to be inserted into the table.
6841ccde15dSdrh   */
685034ca14fSdanielk1977   if( IsVirtual(pTab) ){
686034ca14fSdanielk1977     for(i=0; i<pTab->nCol; i++){
687034ca14fSdanielk1977       nHidden += (IsHiddenColumn(&pTab->aCol[i]) ? 1 : 0);
688034ca14fSdanielk1977     }
689034ca14fSdanielk1977   }
690034ca14fSdanielk1977   if( pColumn==0 && nColumn && nColumn!=(pTab->nCol-nHidden) ){
6914adee20fSdanielk1977     sqlite3ErrorMsg(pParse,
692da93d238Sdrh        "table %S has %d columns but %d values were supplied",
693d51397a6Sdrh        pTabList, 0, pTab->nCol-nHidden, nColumn);
694cce7d176Sdrh     goto insert_cleanup;
695cce7d176Sdrh   }
696967e8b73Sdrh   if( pColumn!=0 && nColumn!=pColumn->nId ){
6974adee20fSdanielk1977     sqlite3ErrorMsg(pParse, "%d values for %d columns", nColumn, pColumn->nId);
698cce7d176Sdrh     goto insert_cleanup;
699cce7d176Sdrh   }
7001ccde15dSdrh 
7011ccde15dSdrh   /* If the INSERT statement included an IDLIST term, then make sure
7021ccde15dSdrh   ** all elements of the IDLIST really are columns of the table and
7031ccde15dSdrh   ** remember the column indices.
704c8392586Sdrh   **
705c8392586Sdrh   ** If the table has an INTEGER PRIMARY KEY column and that column
706c8392586Sdrh   ** is named in the IDLIST, then record in the keyColumn variable
707c8392586Sdrh   ** the index into IDLIST of the primary key column.  keyColumn is
708c8392586Sdrh   ** the index of the primary key as it appears in IDLIST, not as
709c8392586Sdrh   ** is appears in the original table.  (The index of the primary
710c8392586Sdrh   ** key in the original table is pTab->iPKey.)
7111ccde15dSdrh   */
712967e8b73Sdrh   if( pColumn ){
713967e8b73Sdrh     for(i=0; i<pColumn->nId; i++){
714967e8b73Sdrh       pColumn->a[i].idx = -1;
715cce7d176Sdrh     }
716967e8b73Sdrh     for(i=0; i<pColumn->nId; i++){
717cce7d176Sdrh       for(j=0; j<pTab->nCol; j++){
7184adee20fSdanielk1977         if( sqlite3StrICmp(pColumn->a[i].zName, pTab->aCol[j].zName)==0 ){
719967e8b73Sdrh           pColumn->a[i].idx = j;
7204a32431cSdrh           if( j==pTab->iPKey ){
7219aa028daSdrh             keyColumn = i;
7224a32431cSdrh           }
723cce7d176Sdrh           break;
724cce7d176Sdrh         }
725cce7d176Sdrh       }
726cce7d176Sdrh       if( j>=pTab->nCol ){
7274adee20fSdanielk1977         if( sqlite3IsRowid(pColumn->a[i].zName) ){
728a0217ba7Sdrh           keyColumn = i;
729a0217ba7Sdrh         }else{
7304adee20fSdanielk1977           sqlite3ErrorMsg(pParse, "table %S has no column named %s",
731da93d238Sdrh               pTabList, 0, pColumn->a[i].zName);
7321db95106Sdan           pParse->checkSchema = 1;
733cce7d176Sdrh           goto insert_cleanup;
734cce7d176Sdrh         }
735cce7d176Sdrh       }
736cce7d176Sdrh     }
737a0217ba7Sdrh   }
7381ccde15dSdrh 
739aacc543eSdrh   /* If there is no IDLIST term but the table has an integer primary
740c8392586Sdrh   ** key, the set the keyColumn variable to the primary key column index
741c8392586Sdrh   ** in the original table definition.
7424a32431cSdrh   */
743147d0cccSdrh   if( pColumn==0 && nColumn>0 ){
7444a32431cSdrh     keyColumn = pTab->iPKey;
7454a32431cSdrh   }
7464a32431cSdrh 
747c3f9bad2Sdanielk1977   /* Initialize the count of rows to be inserted
7481ccde15dSdrh   */
749142e30dfSdrh   if( db->flags & SQLITE_CountRows ){
7506a288a33Sdrh     regRowCount = ++pParse->nMem;
7516a288a33Sdrh     sqlite3VdbeAddOp2(v, OP_Integer, 0, regRowCount);
752c3f9bad2Sdanielk1977   }
753c3f9bad2Sdanielk1977 
754e448dc4aSdanielk1977   /* If this is not a view, open the table and and all indices */
755e448dc4aSdanielk1977   if( !isView ){
756aa9b8963Sdrh     int nIdx;
757aa9b8963Sdrh 
75804adf416Sdrh     baseCur = pParse->nTab;
75904adf416Sdrh     nIdx = sqlite3OpenTableAndIndices(pParse, pTab, baseCur, OP_OpenWrite);
7605c070538Sdrh     aRegIdx = sqlite3DbMallocRaw(db, sizeof(int)*(nIdx+1));
761aa9b8963Sdrh     if( aRegIdx==0 ){
762aa9b8963Sdrh       goto insert_cleanup;
763aa9b8963Sdrh     }
764aa9b8963Sdrh     for(i=0; i<nIdx; i++){
765aa9b8963Sdrh       aRegIdx[i] = ++pParse->nMem;
766aa9b8963Sdrh     }
767feeb1394Sdrh   }
768feeb1394Sdrh 
769e00ee6ebSdrh   /* This is the top of the main insertion loop */
770142e30dfSdrh   if( useTempTable ){
771e00ee6ebSdrh     /* This block codes the top of loop only.  The complete loop is the
772e00ee6ebSdrh     ** following pseudocode (template 4):
773e00ee6ebSdrh     **
774e00ee6ebSdrh     **         rewind temp table
775e00ee6ebSdrh     **      C: loop over rows of intermediate table
776e00ee6ebSdrh     **           transfer values form intermediate table into <table>
777e00ee6ebSdrh     **         end loop
778e00ee6ebSdrh     **      D: ...
779e00ee6ebSdrh     */
780e00ee6ebSdrh     addrInsTop = sqlite3VdbeAddOp1(v, OP_Rewind, srcTab);
781e00ee6ebSdrh     addrCont = sqlite3VdbeCurrentAddr(v);
782142e30dfSdrh   }else if( pSelect ){
783e00ee6ebSdrh     /* This block codes the top of loop only.  The complete loop is the
784e00ee6ebSdrh     ** following pseudocode (template 3):
785e00ee6ebSdrh     **
786e00ee6ebSdrh     **      C: yield X
787e00ee6ebSdrh     **         if EOF goto D
788e00ee6ebSdrh     **         insert the select result into <table> from R..R+n
789e00ee6ebSdrh     **         goto C
790e00ee6ebSdrh     **      D: ...
791e00ee6ebSdrh     */
79292b01d53Sdrh     addrCont = sqlite3VdbeAddOp1(v, OP_Yield, dest.iParm);
793e00ee6ebSdrh     addrInsTop = sqlite3VdbeAddOp1(v, OP_If, regEof);
794bed8690fSdrh   }
7951ccde15dSdrh 
7966a288a33Sdrh   /* Allocate registers for holding the rowid of the new row,
7976a288a33Sdrh   ** the content of the new row, and the assemblied row record.
7986a288a33Sdrh   */
7996a288a33Sdrh   regRowid = regIns = pParse->nMem+1;
8006a288a33Sdrh   pParse->nMem += pTab->nCol + 1;
8016a288a33Sdrh   if( IsVirtual(pTab) ){
8026a288a33Sdrh     regRowid++;
8036a288a33Sdrh     pParse->nMem++;
8046a288a33Sdrh   }
8056a288a33Sdrh   regData = regRowid+1;
8066a288a33Sdrh 
8075cf590c1Sdrh   /* Run the BEFORE and INSTEAD OF triggers, if there are any
80870ce3f0cSdrh   */
8094adee20fSdanielk1977   endOfLoop = sqlite3VdbeMakeLabel(v);
8102f886d1dSdanielk1977   if( tmask & TRIGGER_BEFORE ){
81176d462eeSdan     int regCols = sqlite3GetTempRange(pParse, pTab->nCol+1);
812c3f9bad2Sdanielk1977 
81370ce3f0cSdrh     /* build the NEW.* reference row.  Note that if there is an INTEGER
81470ce3f0cSdrh     ** PRIMARY KEY into which a NULL is being inserted, that NULL will be
81570ce3f0cSdrh     ** translated into a unique ID for the row.  But on a BEFORE trigger,
81670ce3f0cSdrh     ** we do not know what the unique ID will be (because the insert has
81770ce3f0cSdrh     ** not happened yet) so we substitute a rowid of -1
81870ce3f0cSdrh     */
81970ce3f0cSdrh     if( keyColumn<0 ){
82076d462eeSdan       sqlite3VdbeAddOp2(v, OP_Integer, -1, regCols);
82170ce3f0cSdrh     }else{
8226a288a33Sdrh       int j1;
8237fe45908Sdrh       if( useTempTable ){
82476d462eeSdan         sqlite3VdbeAddOp3(v, OP_Column, srcTab, keyColumn, regCols);
8257fe45908Sdrh       }else{
826d6fe961eSdrh         assert( pSelect==0 );  /* Otherwise useTempTable is true */
82776d462eeSdan         sqlite3ExprCode(pParse, pList->a[keyColumn].pExpr, regCols);
8287fe45908Sdrh       }
82976d462eeSdan       j1 = sqlite3VdbeAddOp1(v, OP_NotNull, regCols);
83076d462eeSdan       sqlite3VdbeAddOp2(v, OP_Integer, -1, regCols);
8316a288a33Sdrh       sqlite3VdbeJumpHere(v, j1);
83276d462eeSdan       sqlite3VdbeAddOp1(v, OP_MustBeInt, regCols);
83370ce3f0cSdrh     }
83470ce3f0cSdrh 
835034ca14fSdanielk1977     /* Cannot have triggers on a virtual table. If it were possible,
836034ca14fSdanielk1977     ** this block would have to account for hidden column.
837034ca14fSdanielk1977     */
838034ca14fSdanielk1977     assert( !IsVirtual(pTab) );
839034ca14fSdanielk1977 
84070ce3f0cSdrh     /* Create the new column data
84170ce3f0cSdrh     */
842c3f9bad2Sdanielk1977     for(i=0; i<pTab->nCol; i++){
843c3f9bad2Sdanielk1977       if( pColumn==0 ){
844c3f9bad2Sdanielk1977         j = i;
845c3f9bad2Sdanielk1977       }else{
846c3f9bad2Sdanielk1977         for(j=0; j<pColumn->nId; j++){
847c3f9bad2Sdanielk1977           if( pColumn->a[j].idx==i ) break;
848c3f9bad2Sdanielk1977         }
849c3f9bad2Sdanielk1977       }
8507ba45971Sdan       if( (!useTempTable && !pList) || (pColumn && j>=pColumn->nId) ){
85176d462eeSdan         sqlite3ExprCode(pParse, pTab->aCol[i].pDflt, regCols+i+1);
852142e30dfSdrh       }else if( useTempTable ){
85376d462eeSdan         sqlite3VdbeAddOp3(v, OP_Column, srcTab, j, regCols+i+1);
854c3f9bad2Sdanielk1977       }else{
855d6fe961eSdrh         assert( pSelect==0 ); /* Otherwise useTempTable is true */
85676d462eeSdan         sqlite3ExprCodeAndCache(pParse, pList->a[j].pExpr, regCols+i+1);
857c3f9bad2Sdanielk1977       }
858c3f9bad2Sdanielk1977     }
859a37cdde0Sdanielk1977 
860a37cdde0Sdanielk1977     /* If this is an INSERT on a view with an INSTEAD OF INSERT trigger,
861a37cdde0Sdanielk1977     ** do not attempt any conversions before assembling the record.
862a37cdde0Sdanielk1977     ** If this is a real table, attempt conversions as required by the
863a37cdde0Sdanielk1977     ** table column affinities.
864a37cdde0Sdanielk1977     */
865a37cdde0Sdanielk1977     if( !isView ){
86676d462eeSdan       sqlite3VdbeAddOp2(v, OP_Affinity, regCols+1, pTab->nCol);
867a37cdde0Sdanielk1977       sqlite3TableAffinityStr(v, pTab);
868a37cdde0Sdanielk1977     }
869c3f9bad2Sdanielk1977 
8705cf590c1Sdrh     /* Fire BEFORE or INSTEAD OF triggers */
871165921a7Sdan     sqlite3CodeRowTrigger(pParse, pTrigger, TK_INSERT, 0, TRIGGER_BEFORE,
87294d7f50aSdan         pTab, regCols-pTab->nCol-1, onError, endOfLoop);
873165921a7Sdan 
87476d462eeSdan     sqlite3ReleaseTempRange(pParse, regCols, pTab->nCol+1);
87570ce3f0cSdrh   }
876c3f9bad2Sdanielk1977 
8774a32431cSdrh   /* Push the record number for the new entry onto the stack.  The
878f0863fe5Sdrh   ** record number is a randomly generate integer created by NewRowid
8794a32431cSdrh   ** except when the table has an INTEGER PRIMARY KEY column, in which
880b419a926Sdrh   ** case the record number is the same as that column.
8811ccde15dSdrh   */
8825cf590c1Sdrh   if( !isView ){
8834cbdda9eSdrh     if( IsVirtual(pTab) ){
8844cbdda9eSdrh       /* The row that the VUpdate opcode will delete: none */
8856a288a33Sdrh       sqlite3VdbeAddOp2(v, OP_Null, 0, regIns);
8864cbdda9eSdrh     }
8874a32431cSdrh     if( keyColumn>=0 ){
888142e30dfSdrh       if( useTempTable ){
8896a288a33Sdrh         sqlite3VdbeAddOp3(v, OP_Column, srcTab, keyColumn, regRowid);
890142e30dfSdrh       }else if( pSelect ){
891b7654111Sdrh         sqlite3VdbeAddOp2(v, OP_SCopy, regFromSelect+keyColumn, regRowid);
8924a32431cSdrh       }else{
893e4d90813Sdrh         VdbeOp *pOp;
8941db639ceSdrh         sqlite3ExprCode(pParse, pList->a[keyColumn].pExpr, regRowid);
89520411ea7Sdrh         pOp = sqlite3VdbeGetOp(v, -1);
8961b7ecbb4Sdrh         if( ALWAYS(pOp) && pOp->opcode==OP_Null && !IsVirtual(pTab) ){
897e4d90813Sdrh           appendFlag = 1;
898e4d90813Sdrh           pOp->opcode = OP_NewRowid;
89904adf416Sdrh           pOp->p1 = baseCur;
9006a288a33Sdrh           pOp->p2 = regRowid;
9016a288a33Sdrh           pOp->p3 = regAutoinc;
902e4d90813Sdrh         }
90327a32783Sdrh       }
904f0863fe5Sdrh       /* If the PRIMARY KEY expression is NULL, then use OP_NewRowid
905e1e68f49Sdrh       ** to generate a unique primary key value.
906e1e68f49Sdrh       */
907e4d90813Sdrh       if( !appendFlag ){
9081db639ceSdrh         int j1;
909bb50e7adSdanielk1977         if( !IsVirtual(pTab) ){
9101db639ceSdrh           j1 = sqlite3VdbeAddOp1(v, OP_NotNull, regRowid);
91104adf416Sdrh           sqlite3VdbeAddOp3(v, OP_NewRowid, baseCur, regRowid, regAutoinc);
9121db639ceSdrh           sqlite3VdbeJumpHere(v, j1);
913bb50e7adSdanielk1977         }else{
914bb50e7adSdanielk1977           j1 = sqlite3VdbeCurrentAddr(v);
915bb50e7adSdanielk1977           sqlite3VdbeAddOp2(v, OP_IsNull, regRowid, j1+2);
916bb50e7adSdanielk1977         }
9173c84ddffSdrh         sqlite3VdbeAddOp1(v, OP_MustBeInt, regRowid);
918e4d90813Sdrh       }
9194cbdda9eSdrh     }else if( IsVirtual(pTab) ){
9206a288a33Sdrh       sqlite3VdbeAddOp2(v, OP_Null, 0, regRowid);
9214a32431cSdrh     }else{
92204adf416Sdrh       sqlite3VdbeAddOp3(v, OP_NewRowid, baseCur, regRowid, regAutoinc);
923e4d90813Sdrh       appendFlag = 1;
9244a32431cSdrh     }
9256a288a33Sdrh     autoIncStep(pParse, regAutoinc, regRowid);
9264a32431cSdrh 
927aacc543eSdrh     /* Push onto the stack, data for all columns of the new entry, beginning
9284a32431cSdrh     ** with the first column.
9294a32431cSdrh     */
930034ca14fSdanielk1977     nHidden = 0;
931cce7d176Sdrh     for(i=0; i<pTab->nCol; i++){
9326a288a33Sdrh       int iRegStore = regRowid+1+i;
9334a32431cSdrh       if( i==pTab->iPKey ){
9344a32431cSdrh         /* The value of the INTEGER PRIMARY KEY column is always a NULL.
935aacc543eSdrh         ** Whenever this column is read, the record number will be substituted
936aacc543eSdrh         ** in its place.  So will fill this column with a NULL to avoid
937aacc543eSdrh         ** taking up data space with information that will never be used. */
9384c583128Sdrh         sqlite3VdbeAddOp2(v, OP_Null, 0, iRegStore);
9394a32431cSdrh         continue;
9404a32431cSdrh       }
941967e8b73Sdrh       if( pColumn==0 ){
942034ca14fSdanielk1977         if( IsHiddenColumn(&pTab->aCol[i]) ){
943034ca14fSdanielk1977           assert( IsVirtual(pTab) );
944034ca14fSdanielk1977           j = -1;
945034ca14fSdanielk1977           nHidden++;
946034ca14fSdanielk1977         }else{
947034ca14fSdanielk1977           j = i - nHidden;
948034ca14fSdanielk1977         }
949cce7d176Sdrh       }else{
950967e8b73Sdrh         for(j=0; j<pColumn->nId; j++){
951967e8b73Sdrh           if( pColumn->a[j].idx==i ) break;
952cce7d176Sdrh         }
953cce7d176Sdrh       }
954034ca14fSdanielk1977       if( j<0 || nColumn==0 || (pColumn && j>=pColumn->nId) ){
955287fb61cSdanielk1977         sqlite3ExprCode(pParse, pTab->aCol[i].pDflt, iRegStore);
956142e30dfSdrh       }else if( useTempTable ){
957287fb61cSdanielk1977         sqlite3VdbeAddOp3(v, OP_Column, srcTab, j, iRegStore);
958142e30dfSdrh       }else if( pSelect ){
959b7654111Sdrh         sqlite3VdbeAddOp2(v, OP_SCopy, regFromSelect+j, iRegStore);
960cce7d176Sdrh       }else{
961287fb61cSdanielk1977         sqlite3ExprCode(pParse, pList->a[j].pExpr, iRegStore);
962cce7d176Sdrh       }
963cce7d176Sdrh     }
9641ccde15dSdrh 
9650ca3e24bSdrh     /* Generate code to check constraints and generate index keys and
9660ca3e24bSdrh     ** do the insertion.
9674a32431cSdrh     */
9684cbdda9eSdrh #ifndef SQLITE_OMIT_VIRTUALTABLE
9694cbdda9eSdrh     if( IsVirtual(pTab) ){
970595a523aSdanielk1977       const char *pVTab = (const char *)sqlite3GetVTable(db, pTab);
9714f3dd150Sdrh       sqlite3VtabMakeWritable(pParse, pTab);
972595a523aSdanielk1977       sqlite3VdbeAddOp4(v, OP_VUpdate, 1, pTab->nCol+2, regIns, pVTab, P4_VTAB);
973b061d058Sdan       sqlite3VdbeChangeP5(v, onError==OE_Default ? OE_Abort : onError);
974e0af83acSdan       sqlite3MayAbort(pParse);
9754cbdda9eSdrh     }else
9764cbdda9eSdrh #endif
9774cbdda9eSdrh     {
978de630353Sdanielk1977       int isReplace;    /* Set to true if constraints may cause a replace */
979de630353Sdanielk1977       sqlite3GenerateConstraintChecks(pParse, pTab, baseCur, regIns, aRegIdx,
980de630353Sdanielk1977           keyColumn>=0, 0, onError, endOfLoop, &isReplace
98104adf416Sdrh       );
982e7a94d81Sdan       sqlite3FkCheck(pParse, pTab, 0, regIns);
98304adf416Sdrh       sqlite3CompleteInsertion(
9842832ad42Sdan           pParse, pTab, baseCur, regIns, aRegIdx, 0, appendFlag, isReplace==0
98504adf416Sdrh       );
9865cf590c1Sdrh     }
9874cbdda9eSdrh   }
9881bee3d7bSdrh 
989feeb1394Sdrh   /* Update the count of rows that are inserted
9901bee3d7bSdrh   */
991142e30dfSdrh   if( (db->flags & SQLITE_CountRows)!=0 ){
9926a288a33Sdrh     sqlite3VdbeAddOp2(v, OP_AddImm, regRowCount, 1);
9931bee3d7bSdrh   }
994c3f9bad2Sdanielk1977 
9952f886d1dSdanielk1977   if( pTrigger ){
996c3f9bad2Sdanielk1977     /* Code AFTER triggers */
997165921a7Sdan     sqlite3CodeRowTrigger(pParse, pTrigger, TK_INSERT, 0, TRIGGER_AFTER,
99894d7f50aSdan         pTab, regData-2-pTab->nCol, onError, endOfLoop);
999c3f9bad2Sdanielk1977   }
10001bee3d7bSdrh 
1001e00ee6ebSdrh   /* The bottom of the main insertion loop, if the data source
1002e00ee6ebSdrh   ** is a SELECT statement.
10031ccde15dSdrh   */
10044adee20fSdanielk1977   sqlite3VdbeResolveLabel(v, endOfLoop);
1005142e30dfSdrh   if( useTempTable ){
1006e00ee6ebSdrh     sqlite3VdbeAddOp2(v, OP_Next, srcTab, addrCont);
1007e00ee6ebSdrh     sqlite3VdbeJumpHere(v, addrInsTop);
10082eb95377Sdrh     sqlite3VdbeAddOp1(v, OP_Close, srcTab);
1009142e30dfSdrh   }else if( pSelect ){
1010e00ee6ebSdrh     sqlite3VdbeAddOp2(v, OP_Goto, 0, addrCont);
1011e00ee6ebSdrh     sqlite3VdbeJumpHere(v, addrInsTop);
10126b56344dSdrh   }
1013c3f9bad2Sdanielk1977 
1014e448dc4aSdanielk1977   if( !IsVirtual(pTab) && !isView ){
1015c3f9bad2Sdanielk1977     /* Close all tables opened */
10162eb95377Sdrh     sqlite3VdbeAddOp1(v, OP_Close, baseCur);
10176b56344dSdrh     for(idx=1, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, idx++){
10182eb95377Sdrh       sqlite3VdbeAddOp1(v, OP_Close, idx+baseCur);
1019cce7d176Sdrh     }
1020c3f9bad2Sdanielk1977   }
1021c3f9bad2Sdanielk1977 
10220b9f50d8Sdrh insert_end:
1023f3388144Sdrh   /* Update the sqlite_sequence table by storing the content of the
10240b9f50d8Sdrh   ** maximum rowid counter values recorded while inserting into
10250b9f50d8Sdrh   ** autoincrement tables.
10262958a4e6Sdrh   */
1027165921a7Sdan   if( pParse->nested==0 && pParse->pTriggerTab==0 ){
10280b9f50d8Sdrh     sqlite3AutoincrementEnd(pParse);
10290b9f50d8Sdrh   }
10302958a4e6Sdrh 
10311bee3d7bSdrh   /*
1032e7de6f25Sdanielk1977   ** Return the number of rows inserted. If this routine is
1033e7de6f25Sdanielk1977   ** generating code because of a call to sqlite3NestedParse(), do not
1034e7de6f25Sdanielk1977   ** invoke the callback function.
10351bee3d7bSdrh   */
1036165921a7Sdan   if( (db->flags&SQLITE_CountRows) && !pParse->nested && !pParse->pTriggerTab ){
10376a288a33Sdrh     sqlite3VdbeAddOp2(v, OP_ResultRow, regRowCount, 1);
103822322fd4Sdanielk1977     sqlite3VdbeSetNumCols(v, 1);
103910fb749bSdanielk1977     sqlite3VdbeSetColName(v, 0, COLNAME_NAME, "rows inserted", SQLITE_STATIC);
10401bee3d7bSdrh   }
1041cce7d176Sdrh 
1042cce7d176Sdrh insert_cleanup:
1043633e6d57Sdrh   sqlite3SrcListDelete(db, pTabList);
1044633e6d57Sdrh   sqlite3ExprListDelete(db, pList);
1045633e6d57Sdrh   sqlite3SelectDelete(db, pSelect);
1046633e6d57Sdrh   sqlite3IdListDelete(db, pColumn);
1047633e6d57Sdrh   sqlite3DbFree(db, aRegIdx);
1048cce7d176Sdrh }
10499cfcf5d4Sdrh 
105075cbd984Sdan /* Make sure "isView" and other macros defined above are undefined. Otherwise
105175cbd984Sdan ** thely may interfere with compilation of other functions in this file
105275cbd984Sdan ** (or in another file, if this file becomes part of the amalgamation).  */
105375cbd984Sdan #ifdef isView
105475cbd984Sdan  #undef isView
105575cbd984Sdan #endif
105675cbd984Sdan #ifdef pTrigger
105775cbd984Sdan  #undef pTrigger
105875cbd984Sdan #endif
105975cbd984Sdan #ifdef tmask
106075cbd984Sdan  #undef tmask
106175cbd984Sdan #endif
106275cbd984Sdan 
106375cbd984Sdan 
10649cfcf5d4Sdrh /*
10656a288a33Sdrh ** Generate code to do constraint checks prior to an INSERT or an UPDATE.
10669cfcf5d4Sdrh **
106704adf416Sdrh ** The input is a range of consecutive registers as follows:
10680ca3e24bSdrh **
106965a7cd16Sdan **    1.  The rowid of the row after the update.
10700ca3e24bSdrh **
107165a7cd16Sdan **    2.  The data in the first column of the entry after the update.
10720ca3e24bSdrh **
10730ca3e24bSdrh **    i.  Data from middle columns...
10740ca3e24bSdrh **
10750ca3e24bSdrh **    N.  The data in the last column of the entry after the update.
10760ca3e24bSdrh **
107765a7cd16Sdan ** The regRowid parameter is the index of the register containing (1).
107804adf416Sdrh **
107965a7cd16Sdan ** If isUpdate is true and rowidChng is non-zero, then rowidChng contains
108065a7cd16Sdan ** the address of a register containing the rowid before the update takes
108165a7cd16Sdan ** place. isUpdate is true for UPDATEs and false for INSERTs. If isUpdate
108265a7cd16Sdan ** is false, indicating an INSERT statement, then a non-zero rowidChng
108365a7cd16Sdan ** indicates that the rowid was explicitly specified as part of the
108465a7cd16Sdan ** INSERT statement. If rowidChng is false, it means that  the rowid is
108565a7cd16Sdan ** computed automatically in an insert or that the rowid value is not
108665a7cd16Sdan ** modified by an update.
10870ca3e24bSdrh **
1088aa9b8963Sdrh ** The code generated by this routine store new index entries into
1089aa9b8963Sdrh ** registers identified by aRegIdx[].  No index entry is created for
1090aa9b8963Sdrh ** indices where aRegIdx[i]==0.  The order of indices in aRegIdx[] is
1091aa9b8963Sdrh ** the same as the order of indices on the linked list of indices
1092aa9b8963Sdrh ** attached to the table.
10939cfcf5d4Sdrh **
10949cfcf5d4Sdrh ** This routine also generates code to check constraints.  NOT NULL,
10959cfcf5d4Sdrh ** CHECK, and UNIQUE constraints are all checked.  If a constraint fails,
10961c92853dSdrh ** then the appropriate action is performed.  There are five possible
10971c92853dSdrh ** actions: ROLLBACK, ABORT, FAIL, REPLACE, and IGNORE.
10989cfcf5d4Sdrh **
10999cfcf5d4Sdrh **  Constraint type  Action       What Happens
11009cfcf5d4Sdrh **  ---------------  ----------   ----------------------------------------
11011c92853dSdrh **  any              ROLLBACK     The current transaction is rolled back and
110224b03fd0Sdanielk1977 **                                sqlite3_exec() returns immediately with a
11039cfcf5d4Sdrh **                                return code of SQLITE_CONSTRAINT.
11049cfcf5d4Sdrh **
11051c92853dSdrh **  any              ABORT        Back out changes from the current command
11061c92853dSdrh **                                only (do not do a complete rollback) then
110724b03fd0Sdanielk1977 **                                cause sqlite3_exec() to return immediately
11081c92853dSdrh **                                with SQLITE_CONSTRAINT.
11091c92853dSdrh **
11101c92853dSdrh **  any              FAIL         Sqlite_exec() returns immediately with a
11111c92853dSdrh **                                return code of SQLITE_CONSTRAINT.  The
11121c92853dSdrh **                                transaction is not rolled back and any
11131c92853dSdrh **                                prior changes are retained.
11141c92853dSdrh **
11159cfcf5d4Sdrh **  any              IGNORE       The record number and data is popped from
11169cfcf5d4Sdrh **                                the stack and there is an immediate jump
11179cfcf5d4Sdrh **                                to label ignoreDest.
11189cfcf5d4Sdrh **
11199cfcf5d4Sdrh **  NOT NULL         REPLACE      The NULL value is replace by the default
11209cfcf5d4Sdrh **                                value for that column.  If the default value
11219cfcf5d4Sdrh **                                is NULL, the action is the same as ABORT.
11229cfcf5d4Sdrh **
11239cfcf5d4Sdrh **  UNIQUE           REPLACE      The other row that conflicts with the row
11249cfcf5d4Sdrh **                                being inserted is removed.
11259cfcf5d4Sdrh **
11269cfcf5d4Sdrh **  CHECK            REPLACE      Illegal.  The results in an exception.
11279cfcf5d4Sdrh **
11281c92853dSdrh ** Which action to take is determined by the overrideError parameter.
11291c92853dSdrh ** Or if overrideError==OE_Default, then the pParse->onError parameter
11301c92853dSdrh ** is used.  Or if pParse->onError==OE_Default then the onError value
11311c92853dSdrh ** for the constraint is used.
11329cfcf5d4Sdrh **
1133aaab5725Sdrh ** The calling routine must open a read/write cursor for pTab with
113404adf416Sdrh ** cursor number "baseCur".  All indices of pTab must also have open
113504adf416Sdrh ** read/write cursors with cursor number baseCur+i for the i-th cursor.
11369cfcf5d4Sdrh ** Except, if there is no possibility of a REPLACE action then
1137aa9b8963Sdrh ** cursors do not need to be open for indices where aRegIdx[i]==0.
11389cfcf5d4Sdrh */
11394adee20fSdanielk1977 void sqlite3GenerateConstraintChecks(
11409cfcf5d4Sdrh   Parse *pParse,      /* The parser context */
11419cfcf5d4Sdrh   Table *pTab,        /* the table into which we are inserting */
114204adf416Sdrh   int baseCur,        /* Index of a read/write cursor pointing at pTab */
114304adf416Sdrh   int regRowid,       /* Index of the range of input registers */
1144aa9b8963Sdrh   int *aRegIdx,       /* Register used by each index.  0 for unused indices */
1145a05a722fSdrh   int rowidChng,      /* True if the rowid might collide with existing entry */
1146b419a926Sdrh   int isUpdate,       /* True for UPDATE, False for INSERT */
11479cfcf5d4Sdrh   int overrideError,  /* Override onError to this if not OE_Default */
1148de630353Sdanielk1977   int ignoreDest,     /* Jump to this label on an OE_Ignore resolution */
1149de630353Sdanielk1977   int *pbMayReplace   /* OUT: Set to true if constraint may cause a replace */
11509cfcf5d4Sdrh ){
11511b7ecbb4Sdrh   int i;              /* loop counter */
11521b7ecbb4Sdrh   Vdbe *v;            /* VDBE under constrution */
11531b7ecbb4Sdrh   int nCol;           /* Number of columns */
11541b7ecbb4Sdrh   int onError;        /* Conflict resolution strategy */
11551bd10f8aSdrh   int j1;             /* Addresss of jump instruction */
11561bd10f8aSdrh   int j2 = 0, j3;     /* Addresses of jump instructions */
115704adf416Sdrh   int regData;        /* Register containing first data column */
11581b7ecbb4Sdrh   int iCur;           /* Table cursor number */
11591b7ecbb4Sdrh   Index *pIdx;         /* Pointer to one of the indices */
11601b7ecbb4Sdrh   int seenReplace = 0; /* True if REPLACE is used to resolve INT PK conflict */
116165a7cd16Sdan   int regOldRowid = (rowidChng && isUpdate) ? rowidChng : regRowid;
11629cfcf5d4Sdrh 
11634adee20fSdanielk1977   v = sqlite3GetVdbe(pParse);
11649cfcf5d4Sdrh   assert( v!=0 );
1165417be79cSdrh   assert( pTab->pSelect==0 );  /* This table is not a VIEW */
11669cfcf5d4Sdrh   nCol = pTab->nCol;
1167aa9b8963Sdrh   regData = regRowid + 1;
1168aa9b8963Sdrh 
11699cfcf5d4Sdrh   /* Test all NOT NULL constraints.
11709cfcf5d4Sdrh   */
11719cfcf5d4Sdrh   for(i=0; i<nCol; i++){
11720ca3e24bSdrh     if( i==pTab->iPKey ){
11730ca3e24bSdrh       continue;
11740ca3e24bSdrh     }
11759cfcf5d4Sdrh     onError = pTab->aCol[i].notNull;
11760ca3e24bSdrh     if( onError==OE_None ) continue;
11779cfcf5d4Sdrh     if( overrideError!=OE_Default ){
11789cfcf5d4Sdrh       onError = overrideError;
1179a996e477Sdrh     }else if( onError==OE_Default ){
1180a996e477Sdrh       onError = OE_Abort;
11819cfcf5d4Sdrh     }
11827977a17fSdanielk1977     if( onError==OE_Replace && pTab->aCol[i].pDflt==0 ){
11839cfcf5d4Sdrh       onError = OE_Abort;
11849cfcf5d4Sdrh     }
1185b84f96f8Sdanielk1977     assert( onError==OE_Rollback || onError==OE_Abort || onError==OE_Fail
1186b84f96f8Sdanielk1977         || onError==OE_Ignore || onError==OE_Replace );
11879cfcf5d4Sdrh     switch( onError ){
11881c92853dSdrh       case OE_Abort:
1189e0af83acSdan         sqlite3MayAbort(pParse);
1190e0af83acSdan       case OE_Rollback:
11911c92853dSdrh       case OE_Fail: {
1192f089aa45Sdrh         char *zMsg;
1193c126e63eSdrh         sqlite3VdbeAddOp3(v, OP_HaltIfNull,
11945053a79bSdrh                                   SQLITE_CONSTRAINT, onError, regData+i);
1195f089aa45Sdrh         zMsg = sqlite3MPrintf(pParse->db, "%s.%s may not be NULL",
1196f089aa45Sdrh                               pTab->zName, pTab->aCol[i].zName);
119766a5167bSdrh         sqlite3VdbeChangeP4(v, -1, zMsg, P4_DYNAMIC);
11989cfcf5d4Sdrh         break;
11999cfcf5d4Sdrh       }
12009cfcf5d4Sdrh       case OE_Ignore: {
12015053a79bSdrh         sqlite3VdbeAddOp2(v, OP_IsNull, regData+i, ignoreDest);
12029cfcf5d4Sdrh         break;
12039cfcf5d4Sdrh       }
1204098d1684Sdrh       default: {
1205098d1684Sdrh         assert( onError==OE_Replace );
12065053a79bSdrh         j1 = sqlite3VdbeAddOp1(v, OP_NotNull, regData+i);
120704adf416Sdrh         sqlite3ExprCode(pParse, pTab->aCol[i].pDflt, regData+i);
12085053a79bSdrh         sqlite3VdbeJumpHere(v, j1);
12099cfcf5d4Sdrh         break;
12109cfcf5d4Sdrh       }
12119cfcf5d4Sdrh     }
12129cfcf5d4Sdrh   }
12139cfcf5d4Sdrh 
12149cfcf5d4Sdrh   /* Test all CHECK constraints
12159cfcf5d4Sdrh   */
1216ffe07b2dSdrh #ifndef SQLITE_OMIT_CHECK
12170cd2d4c9Sdrh   if( pTab->pCheck && (pParse->db->flags & SQLITE_IgnoreChecks)==0 ){
1218ffe07b2dSdrh     int allOk = sqlite3VdbeMakeLabel(v);
1219aa9b8963Sdrh     pParse->ckBase = regData;
122035573356Sdrh     sqlite3ExprIfTrue(pParse, pTab->pCheck, allOk, SQLITE_JUMPIFNULL);
1221aa01c7e2Sdrh     onError = overrideError!=OE_Default ? overrideError : OE_Abort;
12222e06c67cSdrh     if( onError==OE_Ignore ){
122366a5167bSdrh       sqlite3VdbeAddOp2(v, OP_Goto, 0, ignoreDest);
1224aa01c7e2Sdrh     }else{
12256dc84902Sdrh       if( onError==OE_Replace ) onError = OE_Abort; /* IMP: R-15569-63625 */
1226e0af83acSdan       sqlite3HaltConstraint(pParse, onError, 0, 0);
1227aa01c7e2Sdrh     }
1228ffe07b2dSdrh     sqlite3VdbeResolveLabel(v, allOk);
1229ffe07b2dSdrh   }
1230ffe07b2dSdrh #endif /* !defined(SQLITE_OMIT_CHECK) */
12319cfcf5d4Sdrh 
12320bd1f4eaSdrh   /* If we have an INTEGER PRIMARY KEY, make sure the primary key
12330bd1f4eaSdrh   ** of the new record does not previously exist.  Except, if this
12340bd1f4eaSdrh   ** is an UPDATE and the primary key is not changing, that is OK.
12359cfcf5d4Sdrh   */
1236f0863fe5Sdrh   if( rowidChng ){
12370ca3e24bSdrh     onError = pTab->keyConf;
12380ca3e24bSdrh     if( overrideError!=OE_Default ){
12390ca3e24bSdrh       onError = overrideError;
1240a996e477Sdrh     }else if( onError==OE_Default ){
1241a996e477Sdrh       onError = OE_Abort;
12420ca3e24bSdrh     }
1243a0217ba7Sdrh 
124479b0c956Sdrh     if( isUpdate ){
124576d462eeSdan       j2 = sqlite3VdbeAddOp3(v, OP_Eq, regRowid, 0, rowidChng);
124679b0c956Sdrh     }
124704adf416Sdrh     j3 = sqlite3VdbeAddOp3(v, OP_NotExists, baseCur, 0, regRowid);
12480ca3e24bSdrh     switch( onError ){
1249a0217ba7Sdrh       default: {
1250a0217ba7Sdrh         onError = OE_Abort;
1251a0217ba7Sdrh         /* Fall thru into the next case */
1252a0217ba7Sdrh       }
12531c92853dSdrh       case OE_Rollback:
12541c92853dSdrh       case OE_Abort:
12551c92853dSdrh       case OE_Fail: {
1256e0af83acSdan         sqlite3HaltConstraint(
1257e0af83acSdan           pParse, onError, "PRIMARY KEY must be unique", P4_STATIC);
12580ca3e24bSdrh         break;
12590ca3e24bSdrh       }
12605383ae5cSdrh       case OE_Replace: {
12612283d46cSdan         /* If there are DELETE triggers on this table and the
12622283d46cSdan         ** recursive-triggers flag is set, call GenerateRowDelete() to
12632283d46cSdan         ** remove the conflicting row from the the table. This will fire
12642283d46cSdan         ** the triggers and remove both the table and index b-tree entries.
12652283d46cSdan         **
12662283d46cSdan         ** Otherwise, if there are no triggers or the recursive-triggers
1267da730f6eSdan         ** flag is not set, but the table has one or more indexes, call
1268da730f6eSdan         ** GenerateRowIndexDelete(). This removes the index b-tree entries
1269da730f6eSdan         ** only. The table b-tree entry will be replaced by the new entry
1270da730f6eSdan         ** when it is inserted.
1271da730f6eSdan         **
1272da730f6eSdan         ** If either GenerateRowDelete() or GenerateRowIndexDelete() is called,
1273da730f6eSdan         ** also invoke MultiWrite() to indicate that this VDBE may require
1274da730f6eSdan         ** statement rollback (if the statement is aborted after the delete
1275da730f6eSdan         ** takes place). Earlier versions called sqlite3MultiWrite() regardless,
1276da730f6eSdan         ** but being more selective here allows statements like:
1277da730f6eSdan         **
1278da730f6eSdan         **   REPLACE INTO t(rowid) VALUES($newrowid)
1279da730f6eSdan         **
1280da730f6eSdan         ** to run without a statement journal if there are no indexes on the
1281da730f6eSdan         ** table.
1282da730f6eSdan         */
12832283d46cSdan         Trigger *pTrigger = 0;
12842283d46cSdan         if( pParse->db->flags&SQLITE_RecTriggers ){
12852283d46cSdan           pTrigger = sqlite3TriggersExist(pParse, pTab, TK_DELETE, 0, 0);
12862283d46cSdan         }
1287e7a94d81Sdan         if( pTrigger || sqlite3FkRequired(pParse, pTab, 0, 0) ){
1288da730f6eSdan           sqlite3MultiWrite(pParse);
12892283d46cSdan           sqlite3GenerateRowDelete(
12902283d46cSdan               pParse, pTab, baseCur, regRowid, 0, pTrigger, OE_Replace
12912283d46cSdan           );
1292da730f6eSdan         }else if( pTab->pIndex ){
1293da730f6eSdan           sqlite3MultiWrite(pParse);
12942d401ab8Sdrh           sqlite3GenerateRowIndexDelete(pParse, pTab, baseCur, 0);
12952283d46cSdan         }
12965383ae5cSdrh         seenReplace = 1;
12975383ae5cSdrh         break;
12985383ae5cSdrh       }
12990ca3e24bSdrh       case OE_Ignore: {
13005383ae5cSdrh         assert( seenReplace==0 );
130166a5167bSdrh         sqlite3VdbeAddOp2(v, OP_Goto, 0, ignoreDest);
13020ca3e24bSdrh         break;
13030ca3e24bSdrh       }
13040ca3e24bSdrh     }
1305aa9b8963Sdrh     sqlite3VdbeJumpHere(v, j3);
1306f5905aa7Sdrh     if( isUpdate ){
1307aa9b8963Sdrh       sqlite3VdbeJumpHere(v, j2);
1308a05a722fSdrh     }
13090ca3e24bSdrh   }
13100bd1f4eaSdrh 
13110bd1f4eaSdrh   /* Test all UNIQUE constraints by creating entries for each UNIQUE
13120bd1f4eaSdrh   ** index and making sure that duplicate entries do not already exist.
13130bd1f4eaSdrh   ** Add the new records to the indices as we go.
13140bd1f4eaSdrh   */
1315b2fe7d8cSdrh   for(iCur=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, iCur++){
13162d401ab8Sdrh     int regIdx;
13172d401ab8Sdrh     int regR;
13182184fc75Sdrh 
1319aa9b8963Sdrh     if( aRegIdx[iCur]==0 ) continue;  /* Skip unused indices */
1320b2fe7d8cSdrh 
1321b2fe7d8cSdrh     /* Create a key for accessing the index entry */
13222d401ab8Sdrh     regIdx = sqlite3GetTempRange(pParse, pIdx->nColumn+1);
13239cfcf5d4Sdrh     for(i=0; i<pIdx->nColumn; i++){
13249cfcf5d4Sdrh       int idx = pIdx->aiColumn[i];
13259cfcf5d4Sdrh       if( idx==pTab->iPKey ){
13262d401ab8Sdrh         sqlite3VdbeAddOp2(v, OP_SCopy, regRowid, regIdx+i);
13279cfcf5d4Sdrh       }else{
13282d401ab8Sdrh         sqlite3VdbeAddOp2(v, OP_SCopy, regData+idx, regIdx+i);
13299cfcf5d4Sdrh       }
13309cfcf5d4Sdrh     }
13312d401ab8Sdrh     sqlite3VdbeAddOp2(v, OP_SCopy, regRowid, regIdx+i);
13321db639ceSdrh     sqlite3VdbeAddOp3(v, OP_MakeRecord, regIdx, pIdx->nColumn+1, aRegIdx[iCur]);
13338d129422Sdrh     sqlite3VdbeChangeP4(v, -1, sqlite3IndexAffinityStr(v, pIdx), P4_TRANSIENT);
1334da250ea5Sdrh     sqlite3ExprCacheAffinityChange(pParse, regIdx, pIdx->nColumn+1);
1335b2fe7d8cSdrh 
1336b2fe7d8cSdrh     /* Find out what action to take in case there is an indexing conflict */
13379cfcf5d4Sdrh     onError = pIdx->onError;
1338de630353Sdanielk1977     if( onError==OE_None ){
1339de630353Sdanielk1977       sqlite3ReleaseTempRange(pParse, regIdx, pIdx->nColumn+1);
1340de630353Sdanielk1977       continue;  /* pIdx is not a UNIQUE index */
1341de630353Sdanielk1977     }
13429cfcf5d4Sdrh     if( overrideError!=OE_Default ){
13439cfcf5d4Sdrh       onError = overrideError;
1344a996e477Sdrh     }else if( onError==OE_Default ){
1345a996e477Sdrh       onError = OE_Abort;
13469cfcf5d4Sdrh     }
13475383ae5cSdrh     if( seenReplace ){
13485383ae5cSdrh       if( onError==OE_Ignore ) onError = OE_Replace;
13495383ae5cSdrh       else if( onError==OE_Fail ) onError = OE_Abort;
13505383ae5cSdrh     }
13515383ae5cSdrh 
1352b2fe7d8cSdrh     /* Check to see if the new index entry will be unique */
13532d401ab8Sdrh     regR = sqlite3GetTempReg(pParse);
135465a7cd16Sdan     sqlite3VdbeAddOp2(v, OP_SCopy, regOldRowid, regR);
13552d401ab8Sdrh     j3 = sqlite3VdbeAddOp4(v, OP_IsUnique, baseCur+iCur+1, 0,
1356de630353Sdanielk1977                            regR, SQLITE_INT_TO_PTR(regIdx),
1357a9e852b6Smlcreech                            P4_INT32);
1358de630353Sdanielk1977     sqlite3ReleaseTempRange(pParse, regIdx, pIdx->nColumn+1);
1359b2fe7d8cSdrh 
1360b2fe7d8cSdrh     /* Generate code that executes if the new index entry is not unique */
1361b84f96f8Sdanielk1977     assert( onError==OE_Rollback || onError==OE_Abort || onError==OE_Fail
1362b84f96f8Sdanielk1977         || onError==OE_Ignore || onError==OE_Replace );
13639cfcf5d4Sdrh     switch( onError ){
13641c92853dSdrh       case OE_Rollback:
13651c92853dSdrh       case OE_Abort:
13661c92853dSdrh       case OE_Fail: {
1367098d1684Sdrh         int j;
1368098d1684Sdrh         StrAccum errMsg;
1369098d1684Sdrh         const char *zSep;
1370098d1684Sdrh         char *zErr;
1371098d1684Sdrh 
1372098d1684Sdrh         sqlite3StrAccumInit(&errMsg, 0, 0, 200);
1373098d1684Sdrh         errMsg.db = pParse->db;
1374098d1684Sdrh         zSep = pIdx->nColumn>1 ? "columns " : "column ";
1375098d1684Sdrh         for(j=0; j<pIdx->nColumn; j++){
137637ed48edSdrh           char *zCol = pTab->aCol[pIdx->aiColumn[j]].zName;
1377098d1684Sdrh           sqlite3StrAccumAppend(&errMsg, zSep, -1);
1378098d1684Sdrh           zSep = ", ";
1379098d1684Sdrh           sqlite3StrAccumAppend(&errMsg, zCol, -1);
138037ed48edSdrh         }
1381098d1684Sdrh         sqlite3StrAccumAppend(&errMsg,
1382098d1684Sdrh             pIdx->nColumn>1 ? " are not unique" : " is not unique", -1);
1383098d1684Sdrh         zErr = sqlite3StrAccumFinish(&errMsg);
1384e0af83acSdan         sqlite3HaltConstraint(pParse, onError, zErr, 0);
1385098d1684Sdrh         sqlite3DbFree(errMsg.db, zErr);
13869cfcf5d4Sdrh         break;
13879cfcf5d4Sdrh       }
13889cfcf5d4Sdrh       case OE_Ignore: {
13890ca3e24bSdrh         assert( seenReplace==0 );
139066a5167bSdrh         sqlite3VdbeAddOp2(v, OP_Goto, 0, ignoreDest);
13919cfcf5d4Sdrh         break;
13929cfcf5d4Sdrh       }
1393098d1684Sdrh       default: {
13942283d46cSdan         Trigger *pTrigger = 0;
1395098d1684Sdrh         assert( onError==OE_Replace );
13961bea559aSdan         sqlite3MultiWrite(pParse);
13972283d46cSdan         if( pParse->db->flags&SQLITE_RecTriggers ){
13982283d46cSdan           pTrigger = sqlite3TriggersExist(pParse, pTab, TK_DELETE, 0, 0);
13992283d46cSdan         }
14002283d46cSdan         sqlite3GenerateRowDelete(
14012283d46cSdan             pParse, pTab, baseCur, regR, 0, pTrigger, OE_Replace
14022283d46cSdan         );
14030ca3e24bSdrh         seenReplace = 1;
14049cfcf5d4Sdrh         break;
14059cfcf5d4Sdrh       }
14069cfcf5d4Sdrh     }
14072d401ab8Sdrh     sqlite3VdbeJumpHere(v, j3);
14082d401ab8Sdrh     sqlite3ReleaseTempReg(pParse, regR);
14099cfcf5d4Sdrh   }
1410de630353Sdanielk1977 
1411de630353Sdanielk1977   if( pbMayReplace ){
1412de630353Sdanielk1977     *pbMayReplace = seenReplace;
1413de630353Sdanielk1977   }
14149cfcf5d4Sdrh }
14150ca3e24bSdrh 
14160ca3e24bSdrh /*
14170ca3e24bSdrh ** This routine generates code to finish the INSERT or UPDATE operation
14184adee20fSdanielk1977 ** that was started by a prior call to sqlite3GenerateConstraintChecks.
141904adf416Sdrh ** A consecutive range of registers starting at regRowid contains the
142004adf416Sdrh ** rowid and the content to be inserted.
14210ca3e24bSdrh **
1422b419a926Sdrh ** The arguments to this routine should be the same as the first six
14234adee20fSdanielk1977 ** arguments to sqlite3GenerateConstraintChecks.
14240ca3e24bSdrh */
14254adee20fSdanielk1977 void sqlite3CompleteInsertion(
14260ca3e24bSdrh   Parse *pParse,      /* The parser context */
14270ca3e24bSdrh   Table *pTab,        /* the table into which we are inserting */
142804adf416Sdrh   int baseCur,        /* Index of a read/write cursor pointing at pTab */
142904adf416Sdrh   int regRowid,       /* Range of content */
1430aa9b8963Sdrh   int *aRegIdx,       /* Register used by each index.  0 for unused indices */
143170ce3f0cSdrh   int isUpdate,       /* True for UPDATE, False for INSERT */
1432de630353Sdanielk1977   int appendBias,     /* True if this is likely to be an append */
1433de630353Sdanielk1977   int useSeekResult   /* True to set the USESEEKRESULT flag on OP_[Idx]Insert */
14340ca3e24bSdrh ){
14350ca3e24bSdrh   int i;
14360ca3e24bSdrh   Vdbe *v;
14370ca3e24bSdrh   int nIdx;
14380ca3e24bSdrh   Index *pIdx;
14391bd10f8aSdrh   u8 pik_flags;
144004adf416Sdrh   int regData;
1441b7654111Sdrh   int regRec;
14420ca3e24bSdrh 
14434adee20fSdanielk1977   v = sqlite3GetVdbe(pParse);
14440ca3e24bSdrh   assert( v!=0 );
1445417be79cSdrh   assert( pTab->pSelect==0 );  /* This table is not a VIEW */
14460ca3e24bSdrh   for(nIdx=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, nIdx++){}
14470ca3e24bSdrh   for(i=nIdx-1; i>=0; i--){
1448aa9b8963Sdrh     if( aRegIdx[i]==0 ) continue;
144904adf416Sdrh     sqlite3VdbeAddOp2(v, OP_IdxInsert, baseCur+i+1, aRegIdx[i]);
1450de630353Sdanielk1977     if( useSeekResult ){
1451de630353Sdanielk1977       sqlite3VdbeChangeP5(v, OPFLAG_USESEEKRESULT);
1452de630353Sdanielk1977     }
14530ca3e24bSdrh   }
145404adf416Sdrh   regData = regRowid + 1;
1455b7654111Sdrh   regRec = sqlite3GetTempReg(pParse);
14561db639ceSdrh   sqlite3VdbeAddOp3(v, OP_MakeRecord, regData, pTab->nCol, regRec);
1457a37cdde0Sdanielk1977   sqlite3TableAffinityStr(v, pTab);
1458da250ea5Sdrh   sqlite3ExprCacheAffinityChange(pParse, regData, pTab->nCol);
14594794f735Sdrh   if( pParse->nested ){
14604794f735Sdrh     pik_flags = 0;
14614794f735Sdrh   }else{
146294eb6a14Sdanielk1977     pik_flags = OPFLAG_NCHANGE;
146394eb6a14Sdanielk1977     pik_flags |= (isUpdate?OPFLAG_ISUPDATE:OPFLAG_LASTROWID);
14644794f735Sdrh   }
1465e4d90813Sdrh   if( appendBias ){
1466e4d90813Sdrh     pik_flags |= OPFLAG_APPEND;
1467e4d90813Sdrh   }
1468de630353Sdanielk1977   if( useSeekResult ){
1469de630353Sdanielk1977     pik_flags |= OPFLAG_USESEEKRESULT;
1470de630353Sdanielk1977   }
1471b7654111Sdrh   sqlite3VdbeAddOp3(v, OP_Insert, baseCur, regRec, regRowid);
147294eb6a14Sdanielk1977   if( !pParse->nested ){
14738d129422Sdrh     sqlite3VdbeChangeP4(v, -1, pTab->zName, P4_TRANSIENT);
147494eb6a14Sdanielk1977   }
1475b7654111Sdrh   sqlite3VdbeChangeP5(v, pik_flags);
14760ca3e24bSdrh }
1477cd44690aSdrh 
1478cd44690aSdrh /*
1479290c1948Sdrh ** Generate code that will open cursors for a table and for all
148004adf416Sdrh ** indices of that table.  The "baseCur" parameter is the cursor number used
1481cd44690aSdrh ** for the table.  Indices are opened on subsequent cursors.
1482aa9b8963Sdrh **
1483aa9b8963Sdrh ** Return the number of indices on the table.
1484cd44690aSdrh */
1485aa9b8963Sdrh int sqlite3OpenTableAndIndices(
1486290c1948Sdrh   Parse *pParse,   /* Parsing context */
1487290c1948Sdrh   Table *pTab,     /* Table to be opened */
148804adf416Sdrh   int baseCur,     /* Cursor number assigned to the table */
1489290c1948Sdrh   int op           /* OP_OpenRead or OP_OpenWrite */
1490290c1948Sdrh ){
1491cd44690aSdrh   int i;
14924cbdda9eSdrh   int iDb;
1493cd44690aSdrh   Index *pIdx;
14944cbdda9eSdrh   Vdbe *v;
14954cbdda9eSdrh 
1496aa9b8963Sdrh   if( IsVirtual(pTab) ) return 0;
14974cbdda9eSdrh   iDb = sqlite3SchemaToIndex(pParse->db, pTab->pSchema);
14984cbdda9eSdrh   v = sqlite3GetVdbe(pParse);
1499cd44690aSdrh   assert( v!=0 );
150004adf416Sdrh   sqlite3OpenTable(pParse, baseCur, iDb, pTab, op);
1501cd44690aSdrh   for(i=1, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, i++){
1502b3bf556eSdanielk1977     KeyInfo *pKey = sqlite3IndexKeyinfo(pParse, pIdx);
1503da184236Sdanielk1977     assert( pIdx->pSchema==pTab->pSchema );
150404adf416Sdrh     sqlite3VdbeAddOp4(v, op, i+baseCur, pIdx->tnum, iDb,
150566a5167bSdrh                       (char*)pKey, P4_KEYINFO_HANDOFF);
1506207872a4Sdanielk1977     VdbeComment((v, "%s", pIdx->zName));
1507cd44690aSdrh   }
15081b7ecbb4Sdrh   if( pParse->nTab<baseCur+i ){
150904adf416Sdrh     pParse->nTab = baseCur+i;
1510290c1948Sdrh   }
1511aa9b8963Sdrh   return i-1;
1512cd44690aSdrh }
15139d9cf229Sdrh 
151491c58e23Sdrh 
151591c58e23Sdrh #ifdef SQLITE_TEST
151691c58e23Sdrh /*
151791c58e23Sdrh ** The following global variable is incremented whenever the
151891c58e23Sdrh ** transfer optimization is used.  This is used for testing
151991c58e23Sdrh ** purposes only - to make sure the transfer optimization really
152091c58e23Sdrh ** is happening when it is suppose to.
152191c58e23Sdrh */
152291c58e23Sdrh int sqlite3_xferopt_count;
152391c58e23Sdrh #endif /* SQLITE_TEST */
152491c58e23Sdrh 
152591c58e23Sdrh 
15269d9cf229Sdrh #ifndef SQLITE_OMIT_XFER_OPT
15279d9cf229Sdrh /*
15289d9cf229Sdrh ** Check to collation names to see if they are compatible.
15299d9cf229Sdrh */
15309d9cf229Sdrh static int xferCompatibleCollation(const char *z1, const char *z2){
15319d9cf229Sdrh   if( z1==0 ){
15329d9cf229Sdrh     return z2==0;
15339d9cf229Sdrh   }
15349d9cf229Sdrh   if( z2==0 ){
15359d9cf229Sdrh     return 0;
15369d9cf229Sdrh   }
15379d9cf229Sdrh   return sqlite3StrICmp(z1, z2)==0;
15389d9cf229Sdrh }
15399d9cf229Sdrh 
15409d9cf229Sdrh 
15419d9cf229Sdrh /*
15429d9cf229Sdrh ** Check to see if index pSrc is compatible as a source of data
15439d9cf229Sdrh ** for index pDest in an insert transfer optimization.  The rules
15449d9cf229Sdrh ** for a compatible index:
15459d9cf229Sdrh **
15469d9cf229Sdrh **    *   The index is over the same set of columns
15479d9cf229Sdrh **    *   The same DESC and ASC markings occurs on all columns
15489d9cf229Sdrh **    *   The same onError processing (OE_Abort, OE_Ignore, etc)
15499d9cf229Sdrh **    *   The same collating sequence on each column
15509d9cf229Sdrh */
15519d9cf229Sdrh static int xferCompatibleIndex(Index *pDest, Index *pSrc){
15529d9cf229Sdrh   int i;
15539d9cf229Sdrh   assert( pDest && pSrc );
15549d9cf229Sdrh   assert( pDest->pTable!=pSrc->pTable );
15559d9cf229Sdrh   if( pDest->nColumn!=pSrc->nColumn ){
15569d9cf229Sdrh     return 0;   /* Different number of columns */
15579d9cf229Sdrh   }
15589d9cf229Sdrh   if( pDest->onError!=pSrc->onError ){
15599d9cf229Sdrh     return 0;   /* Different conflict resolution strategies */
15609d9cf229Sdrh   }
15619d9cf229Sdrh   for(i=0; i<pSrc->nColumn; i++){
15629d9cf229Sdrh     if( pSrc->aiColumn[i]!=pDest->aiColumn[i] ){
15639d9cf229Sdrh       return 0;   /* Different columns indexed */
15649d9cf229Sdrh     }
15659d9cf229Sdrh     if( pSrc->aSortOrder[i]!=pDest->aSortOrder[i] ){
15669d9cf229Sdrh       return 0;   /* Different sort orders */
15679d9cf229Sdrh     }
15683f6e781dSdrh     if( !xferCompatibleCollation(pSrc->azColl[i],pDest->azColl[i]) ){
156960a713c6Sdrh       return 0;   /* Different collating sequences */
15709d9cf229Sdrh     }
15719d9cf229Sdrh   }
15729d9cf229Sdrh 
15739d9cf229Sdrh   /* If no test above fails then the indices must be compatible */
15749d9cf229Sdrh   return 1;
15759d9cf229Sdrh }
15769d9cf229Sdrh 
15779d9cf229Sdrh /*
15789d9cf229Sdrh ** Attempt the transfer optimization on INSERTs of the form
15799d9cf229Sdrh **
15809d9cf229Sdrh **     INSERT INTO tab1 SELECT * FROM tab2;
15819d9cf229Sdrh **
1582ccdf1baeSdrh ** The xfer optimization transfers raw records from tab2 over to tab1.
1583ccdf1baeSdrh ** Columns are not decoded and reassemblied, which greatly improves
1584ccdf1baeSdrh ** performance.  Raw index records are transferred in the same way.
15859d9cf229Sdrh **
1586ccdf1baeSdrh ** The xfer optimization is only attempted if tab1 and tab2 are compatible.
1587ccdf1baeSdrh ** There are lots of rules for determining compatibility - see comments
1588ccdf1baeSdrh ** embedded in the code for details.
15899d9cf229Sdrh **
1590ccdf1baeSdrh ** This routine returns TRUE if the optimization is guaranteed to be used.
1591ccdf1baeSdrh ** Sometimes the xfer optimization will only work if the destination table
1592ccdf1baeSdrh ** is empty - a factor that can only be determined at run-time.  In that
1593ccdf1baeSdrh ** case, this routine generates code for the xfer optimization but also
1594ccdf1baeSdrh ** does a test to see if the destination table is empty and jumps over the
1595ccdf1baeSdrh ** xfer optimization code if the test fails.  In that case, this routine
1596ccdf1baeSdrh ** returns FALSE so that the caller will know to go ahead and generate
1597ccdf1baeSdrh ** an unoptimized transfer.  This routine also returns FALSE if there
1598ccdf1baeSdrh ** is no chance that the xfer optimization can be applied.
15999d9cf229Sdrh **
1600ccdf1baeSdrh ** This optimization is particularly useful at making VACUUM run faster.
16019d9cf229Sdrh */
16029d9cf229Sdrh static int xferOptimization(
16039d9cf229Sdrh   Parse *pParse,        /* Parser context */
16049d9cf229Sdrh   Table *pDest,         /* The table we are inserting into */
16059d9cf229Sdrh   Select *pSelect,      /* A SELECT statement to use as the data source */
16069d9cf229Sdrh   int onError,          /* How to handle constraint errors */
16079d9cf229Sdrh   int iDbDest           /* The database of pDest */
16089d9cf229Sdrh ){
16099d9cf229Sdrh   ExprList *pEList;                /* The result set of the SELECT */
16109d9cf229Sdrh   Table *pSrc;                     /* The table in the FROM clause of SELECT */
16119d9cf229Sdrh   Index *pSrcIdx, *pDestIdx;       /* Source and destination indices */
16129d9cf229Sdrh   struct SrcList_item *pItem;      /* An element of pSelect->pSrc */
16139d9cf229Sdrh   int i;                           /* Loop counter */
16149d9cf229Sdrh   int iDbSrc;                      /* The database of pSrc */
16159d9cf229Sdrh   int iSrc, iDest;                 /* Cursors from source and destination */
16169d9cf229Sdrh   int addr1, addr2;                /* Loop addresses */
16179d9cf229Sdrh   int emptyDestTest;               /* Address of test for empty pDest */
16189d9cf229Sdrh   int emptySrcTest;                /* Address of test for empty pSrc */
16199d9cf229Sdrh   Vdbe *v;                         /* The VDBE we are building */
16209d9cf229Sdrh   KeyInfo *pKey;                   /* Key information for an index */
16216a288a33Sdrh   int regAutoinc;                  /* Memory register used by AUTOINC */
1622f33c9fadSdrh   int destHasUniqueIdx = 0;        /* True if pDest has a UNIQUE index */
1623b7654111Sdrh   int regData, regRowid;           /* Registers holding data and rowid */
16249d9cf229Sdrh 
16259d9cf229Sdrh   if( pSelect==0 ){
16269d9cf229Sdrh     return 0;   /* Must be of the form  INSERT INTO ... SELECT ... */
16279d9cf229Sdrh   }
16282f886d1dSdanielk1977   if( sqlite3TriggerList(pParse, pDest) ){
16299d9cf229Sdrh     return 0;   /* tab1 must not have triggers */
16309d9cf229Sdrh   }
16319d9cf229Sdrh #ifndef SQLITE_OMIT_VIRTUALTABLE
16327d10d5a6Sdrh   if( pDest->tabFlags & TF_Virtual ){
16339d9cf229Sdrh     return 0;   /* tab1 must not be a virtual table */
16349d9cf229Sdrh   }
16359d9cf229Sdrh #endif
16369d9cf229Sdrh   if( onError==OE_Default ){
1637e7224a01Sdrh     if( pDest->iPKey>=0 ) onError = pDest->keyConf;
1638e7224a01Sdrh     if( onError==OE_Default ) onError = OE_Abort;
16399d9cf229Sdrh   }
16405ce240a6Sdanielk1977   assert(pSelect->pSrc);   /* allocated even if there is no FROM clause */
16419d9cf229Sdrh   if( pSelect->pSrc->nSrc!=1 ){
16429d9cf229Sdrh     return 0;   /* FROM clause must have exactly one term */
16439d9cf229Sdrh   }
16449d9cf229Sdrh   if( pSelect->pSrc->a[0].pSelect ){
16459d9cf229Sdrh     return 0;   /* FROM clause cannot contain a subquery */
16469d9cf229Sdrh   }
16479d9cf229Sdrh   if( pSelect->pWhere ){
16489d9cf229Sdrh     return 0;   /* SELECT may not have a WHERE clause */
16499d9cf229Sdrh   }
16509d9cf229Sdrh   if( pSelect->pOrderBy ){
16519d9cf229Sdrh     return 0;   /* SELECT may not have an ORDER BY clause */
16529d9cf229Sdrh   }
16538103b7d2Sdrh   /* Do not need to test for a HAVING clause.  If HAVING is present but
16548103b7d2Sdrh   ** there is no ORDER BY, we will get an error. */
16559d9cf229Sdrh   if( pSelect->pGroupBy ){
16569d9cf229Sdrh     return 0;   /* SELECT may not have a GROUP BY clause */
16579d9cf229Sdrh   }
16589d9cf229Sdrh   if( pSelect->pLimit ){
16599d9cf229Sdrh     return 0;   /* SELECT may not have a LIMIT clause */
16609d9cf229Sdrh   }
16618103b7d2Sdrh   assert( pSelect->pOffset==0 );  /* Must be so if pLimit==0 */
16629d9cf229Sdrh   if( pSelect->pPrior ){
16639d9cf229Sdrh     return 0;   /* SELECT may not be a compound query */
16649d9cf229Sdrh   }
16657d10d5a6Sdrh   if( pSelect->selFlags & SF_Distinct ){
16669d9cf229Sdrh     return 0;   /* SELECT may not be DISTINCT */
16679d9cf229Sdrh   }
16689d9cf229Sdrh   pEList = pSelect->pEList;
16699d9cf229Sdrh   assert( pEList!=0 );
16709d9cf229Sdrh   if( pEList->nExpr!=1 ){
16719d9cf229Sdrh     return 0;   /* The result set must have exactly one column */
16729d9cf229Sdrh   }
16739d9cf229Sdrh   assert( pEList->a[0].pExpr );
16749d9cf229Sdrh   if( pEList->a[0].pExpr->op!=TK_ALL ){
16759d9cf229Sdrh     return 0;   /* The result set must be the special operator "*" */
16769d9cf229Sdrh   }
16779d9cf229Sdrh 
16789d9cf229Sdrh   /* At this point we have established that the statement is of the
16799d9cf229Sdrh   ** correct syntactic form to participate in this optimization.  Now
16809d9cf229Sdrh   ** we have to check the semantics.
16819d9cf229Sdrh   */
16829d9cf229Sdrh   pItem = pSelect->pSrc->a;
1683ca424114Sdrh   pSrc = sqlite3LocateTable(pParse, 0, pItem->zName, pItem->zDatabase);
16849d9cf229Sdrh   if( pSrc==0 ){
16859d9cf229Sdrh     return 0;   /* FROM clause does not contain a real table */
16869d9cf229Sdrh   }
16879d9cf229Sdrh   if( pSrc==pDest ){
16889d9cf229Sdrh     return 0;   /* tab1 and tab2 may not be the same table */
16899d9cf229Sdrh   }
16909d9cf229Sdrh #ifndef SQLITE_OMIT_VIRTUALTABLE
16917d10d5a6Sdrh   if( pSrc->tabFlags & TF_Virtual ){
16929d9cf229Sdrh     return 0;   /* tab2 must not be a virtual table */
16939d9cf229Sdrh   }
16949d9cf229Sdrh #endif
16959d9cf229Sdrh   if( pSrc->pSelect ){
16969d9cf229Sdrh     return 0;   /* tab2 may not be a view */
16979d9cf229Sdrh   }
16989d9cf229Sdrh   if( pDest->nCol!=pSrc->nCol ){
16999d9cf229Sdrh     return 0;   /* Number of columns must be the same in tab1 and tab2 */
17009d9cf229Sdrh   }
17019d9cf229Sdrh   if( pDest->iPKey!=pSrc->iPKey ){
17029d9cf229Sdrh     return 0;   /* Both tables must have the same INTEGER PRIMARY KEY */
17039d9cf229Sdrh   }
17049d9cf229Sdrh   for(i=0; i<pDest->nCol; i++){
17059d9cf229Sdrh     if( pDest->aCol[i].affinity!=pSrc->aCol[i].affinity ){
17069d9cf229Sdrh       return 0;    /* Affinity must be the same on all columns */
17079d9cf229Sdrh     }
17089d9cf229Sdrh     if( !xferCompatibleCollation(pDest->aCol[i].zColl, pSrc->aCol[i].zColl) ){
17099d9cf229Sdrh       return 0;    /* Collating sequence must be the same on all columns */
17109d9cf229Sdrh     }
17119d9cf229Sdrh     if( pDest->aCol[i].notNull && !pSrc->aCol[i].notNull ){
17129d9cf229Sdrh       return 0;    /* tab2 must be NOT NULL if tab1 is */
17139d9cf229Sdrh     }
17149d9cf229Sdrh   }
17159d9cf229Sdrh   for(pDestIdx=pDest->pIndex; pDestIdx; pDestIdx=pDestIdx->pNext){
1716f33c9fadSdrh     if( pDestIdx->onError!=OE_None ){
1717f33c9fadSdrh       destHasUniqueIdx = 1;
1718f33c9fadSdrh     }
17199d9cf229Sdrh     for(pSrcIdx=pSrc->pIndex; pSrcIdx; pSrcIdx=pSrcIdx->pNext){
17209d9cf229Sdrh       if( xferCompatibleIndex(pDestIdx, pSrcIdx) ) break;
17219d9cf229Sdrh     }
17229d9cf229Sdrh     if( pSrcIdx==0 ){
17239d9cf229Sdrh       return 0;    /* pDestIdx has no corresponding index in pSrc */
17249d9cf229Sdrh     }
17259d9cf229Sdrh   }
17267fc2f41bSdrh #ifndef SQLITE_OMIT_CHECK
17271d9da70aSdrh   if( pDest->pCheck && sqlite3ExprCompare(pSrc->pCheck, pDest->pCheck) ){
17288103b7d2Sdrh     return 0;   /* Tables have different CHECK constraints.  Ticket #2252 */
17298103b7d2Sdrh   }
17307fc2f41bSdrh #endif
1731713de341Sdrh #ifndef SQLITE_OMIT_FOREIGN_KEY
1732713de341Sdrh   /* Disallow the transfer optimization if the destination table constains
1733713de341Sdrh   ** any foreign key constraints.  This is more restrictive than necessary.
1734713de341Sdrh   ** But the main beneficiary of the transfer optimization is the VACUUM
1735713de341Sdrh   ** command, and the VACUUM command disables foreign key constraints.  So
1736713de341Sdrh   ** the extra complication to make this rule less restrictive is probably
1737713de341Sdrh   ** not worth the effort.  Ticket [6284df89debdfa61db8073e062908af0c9b6118e]
1738713de341Sdrh   */
1739713de341Sdrh   if( (pParse->db->flags & SQLITE_ForeignKeys)!=0 && pDest->pFKey!=0 ){
1740713de341Sdrh     return 0;
1741713de341Sdrh   }
1742713de341Sdrh #endif
17431696124dSdan   if( (pParse->db->flags & SQLITE_CountRows)!=0 ){
1744ccdf1baeSdrh     return 0;  /* xfer opt does not play well with PRAGMA count_changes */
17451696124dSdan   }
17469d9cf229Sdrh 
1747ccdf1baeSdrh   /* If we get this far, it means that the xfer optimization is at
1748ccdf1baeSdrh   ** least a possibility, though it might only work if the destination
1749ccdf1baeSdrh   ** table (tab1) is initially empty.
17509d9cf229Sdrh   */
1751dd73521bSdrh #ifdef SQLITE_TEST
1752dd73521bSdrh   sqlite3_xferopt_count++;
1753dd73521bSdrh #endif
17549d9cf229Sdrh   iDbSrc = sqlite3SchemaToIndex(pParse->db, pSrc->pSchema);
17559d9cf229Sdrh   v = sqlite3GetVdbe(pParse);
1756f53e9b5aSdrh   sqlite3CodeVerifySchema(pParse, iDbSrc);
17579d9cf229Sdrh   iSrc = pParse->nTab++;
17589d9cf229Sdrh   iDest = pParse->nTab++;
17596a288a33Sdrh   regAutoinc = autoIncBegin(pParse, iDbDest, pDest);
17609d9cf229Sdrh   sqlite3OpenTable(pParse, iDest, iDbDest, pDest, OP_OpenWrite);
1761ccdf1baeSdrh   if( (pDest->iPKey<0 && pDest->pIndex!=0)          /* (1) */
1762ccdf1baeSdrh    || destHasUniqueIdx                              /* (2) */
1763ccdf1baeSdrh    || (onError!=OE_Abort && onError!=OE_Rollback)   /* (3) */
1764ccdf1baeSdrh   ){
1765ccdf1baeSdrh     /* In some circumstances, we are able to run the xfer optimization
1766ccdf1baeSdrh     ** only if the destination table is initially empty.  This code makes
1767ccdf1baeSdrh     ** that determination.  Conditions under which the destination must
1768ccdf1baeSdrh     ** be empty:
1769f33c9fadSdrh     **
1770ccdf1baeSdrh     ** (1) There is no INTEGER PRIMARY KEY but there are indices.
1771ccdf1baeSdrh     **     (If the destination is not initially empty, the rowid fields
1772ccdf1baeSdrh     **     of index entries might need to change.)
1773ccdf1baeSdrh     **
1774ccdf1baeSdrh     ** (2) The destination has a unique index.  (The xfer optimization
1775ccdf1baeSdrh     **     is unable to test uniqueness.)
1776ccdf1baeSdrh     **
1777ccdf1baeSdrh     ** (3) onError is something other than OE_Abort and OE_Rollback.
17789d9cf229Sdrh     */
177966a5167bSdrh     addr1 = sqlite3VdbeAddOp2(v, OP_Rewind, iDest, 0);
178066a5167bSdrh     emptyDestTest = sqlite3VdbeAddOp2(v, OP_Goto, 0, 0);
17819d9cf229Sdrh     sqlite3VdbeJumpHere(v, addr1);
17829d9cf229Sdrh   }else{
17839d9cf229Sdrh     emptyDestTest = 0;
17849d9cf229Sdrh   }
17859d9cf229Sdrh   sqlite3OpenTable(pParse, iSrc, iDbSrc, pSrc, OP_OpenRead);
178666a5167bSdrh   emptySrcTest = sqlite3VdbeAddOp2(v, OP_Rewind, iSrc, 0);
1787b7654111Sdrh   regData = sqlite3GetTempReg(pParse);
1788b7654111Sdrh   regRowid = sqlite3GetTempReg(pParse);
178942242dedSdrh   if( pDest->iPKey>=0 ){
1790b7654111Sdrh     addr1 = sqlite3VdbeAddOp2(v, OP_Rowid, iSrc, regRowid);
1791b7654111Sdrh     addr2 = sqlite3VdbeAddOp3(v, OP_NotExists, iDest, 0, regRowid);
1792e0af83acSdan     sqlite3HaltConstraint(
1793e0af83acSdan         pParse, onError, "PRIMARY KEY must be unique", P4_STATIC);
17949d9cf229Sdrh     sqlite3VdbeJumpHere(v, addr2);
1795b7654111Sdrh     autoIncStep(pParse, regAutoinc, regRowid);
1796bd36ba69Sdrh   }else if( pDest->pIndex==0 ){
1797b7654111Sdrh     addr1 = sqlite3VdbeAddOp2(v, OP_NewRowid, iDest, regRowid);
179895bad4c7Sdrh   }else{
1799b7654111Sdrh     addr1 = sqlite3VdbeAddOp2(v, OP_Rowid, iSrc, regRowid);
18007d10d5a6Sdrh     assert( (pDest->tabFlags & TF_Autoincrement)==0 );
180195bad4c7Sdrh   }
1802b7654111Sdrh   sqlite3VdbeAddOp2(v, OP_RowData, iSrc, regData);
1803b7654111Sdrh   sqlite3VdbeAddOp3(v, OP_Insert, iDest, regData, regRowid);
1804b7654111Sdrh   sqlite3VdbeChangeP5(v, OPFLAG_NCHANGE|OPFLAG_LASTROWID|OPFLAG_APPEND);
18051f4aa337Sdanielk1977   sqlite3VdbeChangeP4(v, -1, pDest->zName, 0);
180666a5167bSdrh   sqlite3VdbeAddOp2(v, OP_Next, iSrc, addr1);
18079d9cf229Sdrh   for(pDestIdx=pDest->pIndex; pDestIdx; pDestIdx=pDestIdx->pNext){
18081b7ecbb4Sdrh     for(pSrcIdx=pSrc->pIndex; ALWAYS(pSrcIdx); pSrcIdx=pSrcIdx->pNext){
18099d9cf229Sdrh       if( xferCompatibleIndex(pDestIdx, pSrcIdx) ) break;
18109d9cf229Sdrh     }
18119d9cf229Sdrh     assert( pSrcIdx );
181266a5167bSdrh     sqlite3VdbeAddOp2(v, OP_Close, iSrc, 0);
181366a5167bSdrh     sqlite3VdbeAddOp2(v, OP_Close, iDest, 0);
18149d9cf229Sdrh     pKey = sqlite3IndexKeyinfo(pParse, pSrcIdx);
1815207872a4Sdanielk1977     sqlite3VdbeAddOp4(v, OP_OpenRead, iSrc, pSrcIdx->tnum, iDbSrc,
1816207872a4Sdanielk1977                       (char*)pKey, P4_KEYINFO_HANDOFF);
1817d4e70ebdSdrh     VdbeComment((v, "%s", pSrcIdx->zName));
18189d9cf229Sdrh     pKey = sqlite3IndexKeyinfo(pParse, pDestIdx);
1819207872a4Sdanielk1977     sqlite3VdbeAddOp4(v, OP_OpenWrite, iDest, pDestIdx->tnum, iDbDest,
182066a5167bSdrh                       (char*)pKey, P4_KEYINFO_HANDOFF);
1821207872a4Sdanielk1977     VdbeComment((v, "%s", pDestIdx->zName));
182266a5167bSdrh     addr1 = sqlite3VdbeAddOp2(v, OP_Rewind, iSrc, 0);
1823b7654111Sdrh     sqlite3VdbeAddOp2(v, OP_RowKey, iSrc, regData);
1824b7654111Sdrh     sqlite3VdbeAddOp3(v, OP_IdxInsert, iDest, regData, 1);
182566a5167bSdrh     sqlite3VdbeAddOp2(v, OP_Next, iSrc, addr1+1);
18269d9cf229Sdrh     sqlite3VdbeJumpHere(v, addr1);
18279d9cf229Sdrh   }
18289d9cf229Sdrh   sqlite3VdbeJumpHere(v, emptySrcTest);
1829b7654111Sdrh   sqlite3ReleaseTempReg(pParse, regRowid);
1830b7654111Sdrh   sqlite3ReleaseTempReg(pParse, regData);
183166a5167bSdrh   sqlite3VdbeAddOp2(v, OP_Close, iSrc, 0);
183266a5167bSdrh   sqlite3VdbeAddOp2(v, OP_Close, iDest, 0);
18339d9cf229Sdrh   if( emptyDestTest ){
183466a5167bSdrh     sqlite3VdbeAddOp2(v, OP_Halt, SQLITE_OK, 0);
18359d9cf229Sdrh     sqlite3VdbeJumpHere(v, emptyDestTest);
183666a5167bSdrh     sqlite3VdbeAddOp2(v, OP_Close, iDest, 0);
18379d9cf229Sdrh     return 0;
18389d9cf229Sdrh   }else{
18399d9cf229Sdrh     return 1;
18409d9cf229Sdrh   }
18419d9cf229Sdrh }
18429d9cf229Sdrh #endif /* SQLITE_OMIT_XFER_OPT */
1843