xref: /sqlite-3.40.0/src/insert.c (revision ffe07b2d)
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 **
15*ffe07b2dSdrh ** $Id: insert.c,v 1.145 2005/11/03 00:41:17 drh Exp $
16cce7d176Sdrh */
17cce7d176Sdrh #include "sqliteInt.h"
18cce7d176Sdrh 
19cce7d176Sdrh /*
203d1bfeaaSdanielk1977 ** Set P3 of the most recently inserted opcode to a column affinity
21a37cdde0Sdanielk1977 ** string for index pIdx. A column affinity string has one character
223d1bfeaaSdanielk1977 ** for each column in the table, according to the affinity of the column:
233d1bfeaaSdanielk1977 **
243d1bfeaaSdanielk1977 **  Character      Column affinity
253d1bfeaaSdanielk1977 **  ------------------------------
263d1bfeaaSdanielk1977 **  'n'            NUMERIC
273d1bfeaaSdanielk1977 **  't'            TEXT
283d1bfeaaSdanielk1977 **  'o'            NONE
293d1bfeaaSdanielk1977 */
30a37cdde0Sdanielk1977 void sqlite3IndexAffinityStr(Vdbe *v, Index *pIdx){
31a37cdde0Sdanielk1977   if( !pIdx->zColAff ){
32e014a838Sdanielk1977     /* The first time a column affinity string for a particular index is
33a37cdde0Sdanielk1977     ** required, it is allocated and populated here. It is then stored as
34e014a838Sdanielk1977     ** a member of the Index structure for subsequent use.
35a37cdde0Sdanielk1977     **
36a37cdde0Sdanielk1977     ** The column affinity string will eventually be deleted by
37e014a838Sdanielk1977     ** sqliteDeleteIndex() when the Index structure itself is cleaned
38a37cdde0Sdanielk1977     ** up.
39a37cdde0Sdanielk1977     */
40a37cdde0Sdanielk1977     int n;
41a37cdde0Sdanielk1977     Table *pTab = pIdx->pTable;
42a37cdde0Sdanielk1977     pIdx->zColAff = (char *)sqliteMalloc(pIdx->nColumn+1);
43a37cdde0Sdanielk1977     if( !pIdx->zColAff ){
44a37cdde0Sdanielk1977       return;
45a37cdde0Sdanielk1977     }
46a37cdde0Sdanielk1977     for(n=0; n<pIdx->nColumn; n++){
47a37cdde0Sdanielk1977       pIdx->zColAff[n] = pTab->aCol[pIdx->aiColumn[n]].affinity;
48a37cdde0Sdanielk1977     }
49a37cdde0Sdanielk1977     pIdx->zColAff[pIdx->nColumn] = '\0';
50a37cdde0Sdanielk1977   }
513d1bfeaaSdanielk1977 
52956bc92cSdrh   sqlite3VdbeChangeP3(v, -1, pIdx->zColAff, 0);
53a37cdde0Sdanielk1977 }
54a37cdde0Sdanielk1977 
55a37cdde0Sdanielk1977 /*
56a37cdde0Sdanielk1977 ** Set P3 of the most recently inserted opcode to a column affinity
57a37cdde0Sdanielk1977 ** string for table pTab. A column affinity string has one character
58a37cdde0Sdanielk1977 ** for each column indexed by the index, according to the affinity of the
59a37cdde0Sdanielk1977 ** column:
60a37cdde0Sdanielk1977 **
61a37cdde0Sdanielk1977 **  Character      Column affinity
62a37cdde0Sdanielk1977 **  ------------------------------
63a37cdde0Sdanielk1977 **  'n'            NUMERIC
64a37cdde0Sdanielk1977 **  't'            TEXT
65a37cdde0Sdanielk1977 **  'o'            NONE
66a37cdde0Sdanielk1977 */
67a37cdde0Sdanielk1977 void sqlite3TableAffinityStr(Vdbe *v, Table *pTab){
683d1bfeaaSdanielk1977   /* The first time a column affinity string for a particular table
693d1bfeaaSdanielk1977   ** is required, it is allocated and populated here. It is then
703d1bfeaaSdanielk1977   ** stored as a member of the Table structure for subsequent use.
713d1bfeaaSdanielk1977   **
723d1bfeaaSdanielk1977   ** The column affinity string will eventually be deleted by
733d1bfeaaSdanielk1977   ** sqlite3DeleteTable() when the Table structure itself is cleaned up.
743d1bfeaaSdanielk1977   */
753d1bfeaaSdanielk1977   if( !pTab->zColAff ){
763d1bfeaaSdanielk1977     char *zColAff;
773d1bfeaaSdanielk1977     int i;
783d1bfeaaSdanielk1977 
79a37cdde0Sdanielk1977     zColAff = (char *)sqliteMalloc(pTab->nCol+1);
803d1bfeaaSdanielk1977     if( !zColAff ){
81a37cdde0Sdanielk1977       return;
823d1bfeaaSdanielk1977     }
833d1bfeaaSdanielk1977 
843d1bfeaaSdanielk1977     for(i=0; i<pTab->nCol; i++){
85a37cdde0Sdanielk1977       zColAff[i] = pTab->aCol[i].affinity;
863d1bfeaaSdanielk1977     }
873d1bfeaaSdanielk1977     zColAff[pTab->nCol] = '\0';
883d1bfeaaSdanielk1977 
893d1bfeaaSdanielk1977     pTab->zColAff = zColAff;
903d1bfeaaSdanielk1977   }
913d1bfeaaSdanielk1977 
92956bc92cSdrh   sqlite3VdbeChangeP3(v, -1, pTab->zColAff, 0);
933d1bfeaaSdanielk1977 }
943d1bfeaaSdanielk1977 
954d88778bSdanielk1977 /*
964d88778bSdanielk1977 ** Return non-zero if SELECT statement p opens the table with rootpage
974d88778bSdanielk1977 ** iTab in database iDb.  This is used to see if a statement of the form
984d88778bSdanielk1977 ** "INSERT INTO <iDb, iTab> SELECT ..." can run without using temporary
994d88778bSdanielk1977 ** table for the results of the SELECT.
1004d88778bSdanielk1977 **
1014d88778bSdanielk1977 ** No checking is done for sub-selects that are part of expressions.
1024d88778bSdanielk1977 */
1034d88778bSdanielk1977 static int selectReadsTable(Select *p, int iDb, int iTab){
1044d88778bSdanielk1977   int i;
1054d88778bSdanielk1977   struct SrcList_item *pItem;
1064d88778bSdanielk1977   if( p->pSrc==0 ) return 0;
1074d88778bSdanielk1977   for(i=0, pItem=p->pSrc->a; i<p->pSrc->nSrc; i++, pItem++){
1084d88778bSdanielk1977     if( pItem->pSelect ){
10938fba691Sdrh       if( selectReadsTable(pItem->pSelect, iDb, iTab) ) return 1;
1104d88778bSdanielk1977     }else{
1114d88778bSdanielk1977       if( pItem->pTab->iDb==iDb && pItem->pTab->tnum==iTab ) return 1;
1124d88778bSdanielk1977     }
1134d88778bSdanielk1977   }
1144d88778bSdanielk1977   return 0;
1154d88778bSdanielk1977 }
1163d1bfeaaSdanielk1977 
1173d1bfeaaSdanielk1977 /*
1181ccde15dSdrh ** This routine is call to handle SQL of the following forms:
119cce7d176Sdrh **
120cce7d176Sdrh **    insert into TABLE (IDLIST) values(EXPRLIST)
1211ccde15dSdrh **    insert into TABLE (IDLIST) select
122cce7d176Sdrh **
1231ccde15dSdrh ** The IDLIST following the table name is always optional.  If omitted,
1241ccde15dSdrh ** then a list of all columns for the table is substituted.  The IDLIST
125967e8b73Sdrh ** appears in the pColumn parameter.  pColumn is NULL if IDLIST is omitted.
1261ccde15dSdrh **
1271ccde15dSdrh ** The pList parameter holds EXPRLIST in the first form of the INSERT
1281ccde15dSdrh ** statement above, and pSelect is NULL.  For the second form, pList is
1291ccde15dSdrh ** NULL and pSelect is a pointer to the select statement used to generate
1301ccde15dSdrh ** data for the insert.
131142e30dfSdrh **
132142e30dfSdrh ** The code generated follows one of three templates.  For a simple
133142e30dfSdrh ** select with data coming from a VALUES clause, the code executes
134142e30dfSdrh ** once straight down through.  The template looks like this:
135142e30dfSdrh **
136142e30dfSdrh **         open write cursor to <table> and its indices
137142e30dfSdrh **         puts VALUES clause expressions onto the stack
138142e30dfSdrh **         write the resulting record into <table>
139142e30dfSdrh **         cleanup
140142e30dfSdrh **
141142e30dfSdrh ** If the statement is of the form
142142e30dfSdrh **
143142e30dfSdrh **   INSERT INTO <table> SELECT ...
144142e30dfSdrh **
145142e30dfSdrh ** And the SELECT clause does not read from <table> at any time, then
146142e30dfSdrh ** the generated code follows this template:
147142e30dfSdrh **
148142e30dfSdrh **         goto B
149142e30dfSdrh **      A: setup for the SELECT
150142e30dfSdrh **         loop over the tables in the SELECT
151142e30dfSdrh **           gosub C
152142e30dfSdrh **         end loop
153142e30dfSdrh **         cleanup after the SELECT
154142e30dfSdrh **         goto D
155142e30dfSdrh **      B: open write cursor to <table> and its indices
156142e30dfSdrh **         goto A
157142e30dfSdrh **      C: insert the select result into <table>
158142e30dfSdrh **         return
159142e30dfSdrh **      D: cleanup
160142e30dfSdrh **
161142e30dfSdrh ** The third template is used if the insert statement takes its
162142e30dfSdrh ** values from a SELECT but the data is being inserted into a table
163142e30dfSdrh ** that is also read as part of the SELECT.  In the third form,
164142e30dfSdrh ** we have to use a intermediate table to store the results of
165142e30dfSdrh ** the select.  The template is like this:
166142e30dfSdrh **
167142e30dfSdrh **         goto B
168142e30dfSdrh **      A: setup for the SELECT
169142e30dfSdrh **         loop over the tables in the SELECT
170142e30dfSdrh **           gosub C
171142e30dfSdrh **         end loop
172142e30dfSdrh **         cleanup after the SELECT
173142e30dfSdrh **         goto D
174142e30dfSdrh **      C: insert the select result into the intermediate table
175142e30dfSdrh **         return
176142e30dfSdrh **      B: open a cursor to an intermediate table
177142e30dfSdrh **         goto A
178142e30dfSdrh **      D: open write cursor to <table> and its indices
179142e30dfSdrh **         loop over the intermediate table
180142e30dfSdrh **           transfer values form intermediate table into <table>
181142e30dfSdrh **         end the loop
182142e30dfSdrh **         cleanup
183cce7d176Sdrh */
1844adee20fSdanielk1977 void sqlite3Insert(
185cce7d176Sdrh   Parse *pParse,        /* Parser context */
186113088ecSdrh   SrcList *pTabList,    /* Name of table into which we are inserting */
187cce7d176Sdrh   ExprList *pList,      /* List of values to be inserted */
1885974a30fSdrh   Select *pSelect,      /* A SELECT statement to use as the data source */
1899cfcf5d4Sdrh   IdList *pColumn,      /* Column names corresponding to IDLIST. */
1909cfcf5d4Sdrh   int onError           /* How to handle constraint errors */
191cce7d176Sdrh ){
1925974a30fSdrh   Table *pTab;          /* The table to insert into */
193113088ecSdrh   char *zTab;           /* Name of the table into which we are inserting */
194e22a334bSdrh   const char *zDb;      /* Name of the database holding this table */
1955974a30fSdrh   int i, j, idx;        /* Loop counters */
1965974a30fSdrh   Vdbe *v;              /* Generate code into this virtual machine */
1975974a30fSdrh   Index *pIdx;          /* For looping over indices of the table */
198967e8b73Sdrh   int nColumn;          /* Number of columns in the data */
199cfe9a69fSdanielk1977   int base = 0;         /* VDBE Cursor number for pTab */
200cfe9a69fSdanielk1977   int iCont=0,iBreak=0; /* Beginning and end of the loop over srcTab */
2019bb575fdSdrh   sqlite3 *db;          /* The main database structure */
2024a32431cSdrh   int keyColumn = -1;   /* Column that is the INTEGER PRIMARY KEY */
2030ca3e24bSdrh   int endOfLoop;        /* Label for the end of the insertion loop */
2044d88778bSdanielk1977   int useTempTable = 0; /* Store SELECT results in intermediate table */
205cfe9a69fSdanielk1977   int srcTab = 0;       /* Data comes from this temporary cursor if >=0 */
206cfe9a69fSdanielk1977   int iSelectLoop = 0;  /* Address of code that implements the SELECT */
207cfe9a69fSdanielk1977   int iCleanup = 0;     /* Address of the cleanup code */
208cfe9a69fSdanielk1977   int iInsertBlock = 0; /* Address of the subroutine used to insert data */
209cfe9a69fSdanielk1977   int iCntMem = 0;      /* Memory cell used for the row counter */
210798da52cSdrh   int newIdx = -1;      /* Cursor for the NEW table */
2112958a4e6Sdrh   Db *pDb;              /* The database containing table being inserted into */
2122958a4e6Sdrh   int counterMem = 0;   /* Memory cell holding AUTOINCREMENT counter */
213cce7d176Sdrh 
214798da52cSdrh #ifndef SQLITE_OMIT_TRIGGER
215798da52cSdrh   int isView;                 /* True if attempting to insert into a view */
216dca76841Sdrh   int triggers_exist = 0;     /* True if there are FOR EACH ROW triggers */
217798da52cSdrh #endif
218c3f9bad2Sdanielk1977 
219f3388144Sdrh #ifndef SQLITE_OMIT_AUTOINCREMENT
220f3388144Sdrh   int counterRowid;     /* Memory cell holding rowid of autoinc counter */
221f3388144Sdrh #endif
222f3388144Sdrh 
22324b03fd0Sdanielk1977   if( pParse->nErr || sqlite3_malloc_failed ) goto insert_cleanup;
224ecdc7530Sdrh   db = pParse->db;
225daffd0e5Sdrh 
2261ccde15dSdrh   /* Locate the table into which we will be inserting new information.
2271ccde15dSdrh   */
228113088ecSdrh   assert( pTabList->nSrc==1 );
229113088ecSdrh   zTab = pTabList->a[0].zName;
230daffd0e5Sdrh   if( zTab==0 ) goto insert_cleanup;
2314adee20fSdanielk1977   pTab = sqlite3SrcListLookup(pParse, pTabList);
232c3f9bad2Sdanielk1977   if( pTab==0 ){
233c3f9bad2Sdanielk1977     goto insert_cleanup;
234c3f9bad2Sdanielk1977   }
235e22a334bSdrh   assert( pTab->iDb<db->nDb );
2362958a4e6Sdrh   pDb = &db->aDb[pTab->iDb];
2372958a4e6Sdrh   zDb = pDb->zName;
2384adee20fSdanielk1977   if( sqlite3AuthCheck(pParse, SQLITE_INSERT, pTab->zName, 0, zDb) ){
2391962bda7Sdrh     goto insert_cleanup;
2401962bda7Sdrh   }
241c3f9bad2Sdanielk1977 
242b7f9164eSdrh   /* Figure out if we have any triggers and if the table being
243b7f9164eSdrh   ** inserted into is a view
244b7f9164eSdrh   */
245b7f9164eSdrh #ifndef SQLITE_OMIT_TRIGGER
246dca76841Sdrh   triggers_exist = sqlite3TriggersExist(pParse, pTab, TK_INSERT, 0);
247b7f9164eSdrh   isView = pTab->pSelect!=0;
248b7f9164eSdrh #else
249dca76841Sdrh # define triggers_exist 0
250b7f9164eSdrh # define isView 0
251b7f9164eSdrh #endif
252b7f9164eSdrh #ifdef SQLITE_OMIT_VIEW
253b7f9164eSdrh # undef isView
254b7f9164eSdrh # define isView 0
255b7f9164eSdrh #endif
256b7f9164eSdrh 
257c3f9bad2Sdanielk1977   /* Ensure that:
258c3f9bad2Sdanielk1977   *  (a) the table is not read-only,
259c3f9bad2Sdanielk1977   *  (b) that if it is a view then ON INSERT triggers exist
260c3f9bad2Sdanielk1977   */
261dca76841Sdrh   if( sqlite3IsReadOnly(pParse, pTab, triggers_exist) ){
262c3f9bad2Sdanielk1977     goto insert_cleanup;
263c3f9bad2Sdanielk1977   }
264a76b5dfcSdrh   if( pTab==0 ) goto insert_cleanup;
2651ccde15dSdrh 
266f573c99bSdrh   /* If pTab is really a view, make sure it has been initialized.
267f573c99bSdrh   */
2684adee20fSdanielk1977   if( isView && sqlite3ViewGetColumnNames(pParse, pTab) ){
269f573c99bSdrh     goto insert_cleanup;
270f573c99bSdrh   }
271f573c99bSdrh 
2727cedc8d4Sdanielk1977   /* Ensure all required collation sequences are available. */
2737cedc8d4Sdanielk1977   for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){
2747cedc8d4Sdanielk1977     if( sqlite3CheckIndexCollSeq(pParse, pIdx) ){
2757cedc8d4Sdanielk1977       goto insert_cleanup;
2767cedc8d4Sdanielk1977     }
2777cedc8d4Sdanielk1977   }
2787cedc8d4Sdanielk1977 
2791ccde15dSdrh   /* Allocate a VDBE
2801ccde15dSdrh   */
2814adee20fSdanielk1977   v = sqlite3GetVdbe(pParse);
2825974a30fSdrh   if( v==0 ) goto insert_cleanup;
2834794f735Sdrh   if( pParse->nested==0 ) sqlite3VdbeCountChanges(v);
284dca76841Sdrh   sqlite3BeginWriteOperation(pParse, pSelect || triggers_exist, pTab->iDb);
2851ccde15dSdrh 
286c3f9bad2Sdanielk1977   /* if there are row triggers, allocate a temp table for new.* references. */
287dca76841Sdrh   if( triggers_exist ){
288c3f9bad2Sdanielk1977     newIdx = pParse->nTab++;
289f29ce559Sdanielk1977   }
290c3f9bad2Sdanielk1977 
2912958a4e6Sdrh #ifndef SQLITE_OMIT_AUTOINCREMENT
2922958a4e6Sdrh   /* If this is an AUTOINCREMENT table, look up the sequence number in the
293f3388144Sdrh   ** sqlite_sequence table and store it in memory cell counterMem.  Also
294f3388144Sdrh   ** remember the rowid of the sqlite_sequence table entry in memory cell
295f3388144Sdrh   ** counterRowid.
2962958a4e6Sdrh   */
2972958a4e6Sdrh   if( pTab->autoInc ){
298f3388144Sdrh     int iCur = pParse->nTab;
299f3388144Sdrh     int base = sqlite3VdbeCurrentAddr(v);
300f3388144Sdrh     counterRowid = pParse->nMem++;
301f3388144Sdrh     counterMem = pParse->nMem++;
302f3388144Sdrh     sqlite3VdbeAddOp(v, OP_Integer, pTab->iDb, 0);
303f3388144Sdrh     sqlite3VdbeAddOp(v, OP_OpenRead, iCur, pDb->pSeqTab->tnum);
304f3388144Sdrh     sqlite3VdbeAddOp(v, OP_SetNumColumns, iCur, 2);
305f3388144Sdrh     sqlite3VdbeAddOp(v, OP_Rewind, iCur, base+13);
306f3388144Sdrh     sqlite3VdbeAddOp(v, OP_Column, iCur, 0);
307f3388144Sdrh     sqlite3VdbeOp3(v, OP_String8, 0, 0, pTab->zName, 0);
308f3388144Sdrh     sqlite3VdbeAddOp(v, OP_Ne, 28417, base+12);
309f0863fe5Sdrh     sqlite3VdbeAddOp(v, OP_Rowid, iCur, 0);
310f3388144Sdrh     sqlite3VdbeAddOp(v, OP_MemStore, counterRowid, 1);
311f3388144Sdrh     sqlite3VdbeAddOp(v, OP_Column, iCur, 1);
312f3388144Sdrh     sqlite3VdbeAddOp(v, OP_MemStore, counterMem, 1);
313f3388144Sdrh     sqlite3VdbeAddOp(v, OP_Goto, 0, base+13);
314f3388144Sdrh     sqlite3VdbeAddOp(v, OP_Next, iCur, base+4);
315f3388144Sdrh     sqlite3VdbeAddOp(v, OP_Close, iCur, 0);
3162958a4e6Sdrh   }
3172958a4e6Sdrh #endif /* SQLITE_OMIT_AUTOINCREMENT */
3182958a4e6Sdrh 
3191ccde15dSdrh   /* Figure out how many columns of data are supplied.  If the data
320142e30dfSdrh   ** is coming from a SELECT statement, then this step also generates
321142e30dfSdrh   ** all the code to implement the SELECT statement and invoke a subroutine
322142e30dfSdrh   ** to process each row of the result. (Template 2.) If the SELECT
323142e30dfSdrh   ** statement uses the the table that is being inserted into, then the
324142e30dfSdrh   ** subroutine is also coded here.  That subroutine stores the SELECT
325142e30dfSdrh   ** results in a temporary table. (Template 3.)
3261ccde15dSdrh   */
3275974a30fSdrh   if( pSelect ){
328142e30dfSdrh     /* Data is coming from a SELECT.  Generate code to implement that SELECT
329142e30dfSdrh     */
330142e30dfSdrh     int rc, iInitCode;
3314adee20fSdanielk1977     iInitCode = sqlite3VdbeAddOp(v, OP_Goto, 0, 0);
3324adee20fSdanielk1977     iSelectLoop = sqlite3VdbeCurrentAddr(v);
3334adee20fSdanielk1977     iInsertBlock = sqlite3VdbeMakeLabel(v);
334b3bce662Sdanielk1977 
335b3bce662Sdanielk1977     /* Resolve the expressions in the SELECT statement and execute it. */
336b3bce662Sdanielk1977     rc = sqlite3Select(pParse, pSelect, SRT_Subroutine, iInsertBlock,0,0,0,0);
33724b03fd0Sdanielk1977     if( rc || pParse->nErr || sqlite3_malloc_failed ) goto insert_cleanup;
338b3bce662Sdanielk1977 
3394adee20fSdanielk1977     iCleanup = sqlite3VdbeMakeLabel(v);
3404adee20fSdanielk1977     sqlite3VdbeAddOp(v, OP_Goto, 0, iCleanup);
3415974a30fSdrh     assert( pSelect->pEList );
342967e8b73Sdrh     nColumn = pSelect->pEList->nExpr;
343142e30dfSdrh 
344142e30dfSdrh     /* Set useTempTable to TRUE if the result of the SELECT statement
345142e30dfSdrh     ** should be written into a temporary table.  Set to FALSE if each
346142e30dfSdrh     ** row of the SELECT can be written directly into the result table.
347048c530cSdrh     **
348048c530cSdrh     ** A temp table must be used if the table being updated is also one
349048c530cSdrh     ** of the tables being read by the SELECT statement.  Also use a
350048c530cSdrh     ** temp table in the case of row triggers.
351142e30dfSdrh     */
3524d88778bSdanielk1977     if( triggers_exist || selectReadsTable(pSelect, pTab->iDb, pTab->tnum) ){
353048c530cSdrh       useTempTable = 1;
354048c530cSdrh     }
355142e30dfSdrh 
356142e30dfSdrh     if( useTempTable ){
357142e30dfSdrh       /* Generate the subroutine that SELECT calls to process each row of
358142e30dfSdrh       ** the result.  Store the result in a temporary table
359142e30dfSdrh       */
360142e30dfSdrh       srcTab = pParse->nTab++;
3614adee20fSdanielk1977       sqlite3VdbeResolveLabel(v, iInsertBlock);
3624adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_MakeRecord, nColumn, 0);
363a37cdde0Sdanielk1977       sqlite3TableAffinityStr(v, pTab);
364f0863fe5Sdrh       sqlite3VdbeAddOp(v, OP_NewRowid, srcTab, 0);
3654adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_Pull, 1, 0);
366f0863fe5Sdrh       sqlite3VdbeAddOp(v, OP_Insert, srcTab, 0);
3674adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_Return, 0, 0);
368142e30dfSdrh 
369142e30dfSdrh       /* The following code runs first because the GOTO at the very top
370142e30dfSdrh       ** of the program jumps to it.  Create the temporary table, then jump
371142e30dfSdrh       ** back up and execute the SELECT code above.
372142e30dfSdrh       */
373d654be80Sdrh       sqlite3VdbeJumpHere(v, iInitCode);
3749170dd7eSdrh       sqlite3VdbeAddOp(v, OP_OpenVirtual, srcTab, 0);
375b6f5452fSdrh       sqlite3VdbeAddOp(v, OP_SetNumColumns, srcTab, nColumn);
3764adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_Goto, 0, iSelectLoop);
3774adee20fSdanielk1977       sqlite3VdbeResolveLabel(v, iCleanup);
3785974a30fSdrh     }else{
379d654be80Sdrh       sqlite3VdbeJumpHere(v, iInitCode);
380142e30dfSdrh     }
381142e30dfSdrh   }else{
382142e30dfSdrh     /* This is the case if the data for the INSERT is coming from a VALUES
383142e30dfSdrh     ** clause
384142e30dfSdrh     */
385b3bce662Sdanielk1977     NameContext sNC;
386b3bce662Sdanielk1977     memset(&sNC, 0, sizeof(sNC));
387b3bce662Sdanielk1977     sNC.pParse = pParse;
388daffd0e5Sdrh     assert( pList!=0 );
3895974a30fSdrh     srcTab = -1;
390142e30dfSdrh     useTempTable = 0;
3915974a30fSdrh     assert( pList );
392967e8b73Sdrh     nColumn = pList->nExpr;
393e64e7b20Sdrh     for(i=0; i<nColumn; i++){
394b3bce662Sdanielk1977       if( sqlite3ExprResolveNames(&sNC, pList->a[i].pExpr) ){
395b04a5d87Sdrh         goto insert_cleanup;
396b04a5d87Sdrh       }
397e64e7b20Sdrh     }
3985974a30fSdrh   }
3991ccde15dSdrh 
4001ccde15dSdrh   /* Make sure the number of columns in the source data matches the number
4011ccde15dSdrh   ** of columns to be inserted into the table.
4021ccde15dSdrh   */
403967e8b73Sdrh   if( pColumn==0 && nColumn!=pTab->nCol ){
4044adee20fSdanielk1977     sqlite3ErrorMsg(pParse,
405da93d238Sdrh        "table %S has %d columns but %d values were supplied",
406da93d238Sdrh        pTabList, 0, pTab->nCol, nColumn);
407cce7d176Sdrh     goto insert_cleanup;
408cce7d176Sdrh   }
409967e8b73Sdrh   if( pColumn!=0 && nColumn!=pColumn->nId ){
4104adee20fSdanielk1977     sqlite3ErrorMsg(pParse, "%d values for %d columns", nColumn, pColumn->nId);
411cce7d176Sdrh     goto insert_cleanup;
412cce7d176Sdrh   }
4131ccde15dSdrh 
4141ccde15dSdrh   /* If the INSERT statement included an IDLIST term, then make sure
4151ccde15dSdrh   ** all elements of the IDLIST really are columns of the table and
4161ccde15dSdrh   ** remember the column indices.
417c8392586Sdrh   **
418c8392586Sdrh   ** If the table has an INTEGER PRIMARY KEY column and that column
419c8392586Sdrh   ** is named in the IDLIST, then record in the keyColumn variable
420c8392586Sdrh   ** the index into IDLIST of the primary key column.  keyColumn is
421c8392586Sdrh   ** the index of the primary key as it appears in IDLIST, not as
422c8392586Sdrh   ** is appears in the original table.  (The index of the primary
423c8392586Sdrh   ** key in the original table is pTab->iPKey.)
4241ccde15dSdrh   */
425967e8b73Sdrh   if( pColumn ){
426967e8b73Sdrh     for(i=0; i<pColumn->nId; i++){
427967e8b73Sdrh       pColumn->a[i].idx = -1;
428cce7d176Sdrh     }
429967e8b73Sdrh     for(i=0; i<pColumn->nId; i++){
430cce7d176Sdrh       for(j=0; j<pTab->nCol; j++){
4314adee20fSdanielk1977         if( sqlite3StrICmp(pColumn->a[i].zName, pTab->aCol[j].zName)==0 ){
432967e8b73Sdrh           pColumn->a[i].idx = j;
4334a32431cSdrh           if( j==pTab->iPKey ){
4349aa028daSdrh             keyColumn = i;
4354a32431cSdrh           }
436cce7d176Sdrh           break;
437cce7d176Sdrh         }
438cce7d176Sdrh       }
439cce7d176Sdrh       if( j>=pTab->nCol ){
4404adee20fSdanielk1977         if( sqlite3IsRowid(pColumn->a[i].zName) ){
441a0217ba7Sdrh           keyColumn = i;
442a0217ba7Sdrh         }else{
4434adee20fSdanielk1977           sqlite3ErrorMsg(pParse, "table %S has no column named %s",
444da93d238Sdrh               pTabList, 0, pColumn->a[i].zName);
445cce7d176Sdrh           pParse->nErr++;
446cce7d176Sdrh           goto insert_cleanup;
447cce7d176Sdrh         }
448cce7d176Sdrh       }
449cce7d176Sdrh     }
450a0217ba7Sdrh   }
4511ccde15dSdrh 
452aacc543eSdrh   /* If there is no IDLIST term but the table has an integer primary
453c8392586Sdrh   ** key, the set the keyColumn variable to the primary key column index
454c8392586Sdrh   ** in the original table definition.
4554a32431cSdrh   */
4564a32431cSdrh   if( pColumn==0 ){
4574a32431cSdrh     keyColumn = pTab->iPKey;
4584a32431cSdrh   }
4594a32431cSdrh 
460142e30dfSdrh   /* Open the temp table for FOR EACH ROW triggers
461142e30dfSdrh   */
462dca76841Sdrh   if( triggers_exist ){
4634adee20fSdanielk1977     sqlite3VdbeAddOp(v, OP_OpenPseudo, newIdx, 0);
46484ac9d02Sdanielk1977     sqlite3VdbeAddOp(v, OP_SetNumColumns, newIdx, pTab->nCol);
465f29ce559Sdanielk1977   }
466c3f9bad2Sdanielk1977 
467c3f9bad2Sdanielk1977   /* Initialize the count of rows to be inserted
4681ccde15dSdrh   */
469142e30dfSdrh   if( db->flags & SQLITE_CountRows ){
470142e30dfSdrh     iCntMem = pParse->nMem++;
471d654be80Sdrh     sqlite3VdbeAddOp(v, OP_MemInt, 0, iCntMem);
472c3f9bad2Sdanielk1977   }
473c3f9bad2Sdanielk1977 
474c3f9bad2Sdanielk1977   /* Open tables and indices if there are no row triggers */
475dca76841Sdrh   if( !triggers_exist ){
4765974a30fSdrh     base = pParse->nTab;
477290c1948Sdrh     sqlite3OpenTableAndIndices(pParse, pTab, base, OP_OpenWrite);
478feeb1394Sdrh   }
479feeb1394Sdrh 
480142e30dfSdrh   /* If the data source is a temporary table, then we have to create
4811ccde15dSdrh   ** a loop because there might be multiple rows of data.  If the data
482142e30dfSdrh   ** source is a subroutine call from the SELECT statement, then we need
483142e30dfSdrh   ** to launch the SELECT statement processing.
4841ccde15dSdrh   */
485142e30dfSdrh   if( useTempTable ){
4864adee20fSdanielk1977     iBreak = sqlite3VdbeMakeLabel(v);
4874adee20fSdanielk1977     sqlite3VdbeAddOp(v, OP_Rewind, srcTab, iBreak);
4884adee20fSdanielk1977     iCont = sqlite3VdbeCurrentAddr(v);
489142e30dfSdrh   }else if( pSelect ){
4904adee20fSdanielk1977     sqlite3VdbeAddOp(v, OP_Goto, 0, iSelectLoop);
4914adee20fSdanielk1977     sqlite3VdbeResolveLabel(v, iInsertBlock);
492bed8690fSdrh   }
4931ccde15dSdrh 
4945cf590c1Sdrh   /* Run the BEFORE and INSTEAD OF triggers, if there are any
49570ce3f0cSdrh   */
4964adee20fSdanielk1977   endOfLoop = sqlite3VdbeMakeLabel(v);
497dca76841Sdrh   if( triggers_exist & TRIGGER_BEFORE ){
498c3f9bad2Sdanielk1977 
49970ce3f0cSdrh     /* build the NEW.* reference row.  Note that if there is an INTEGER
50070ce3f0cSdrh     ** PRIMARY KEY into which a NULL is being inserted, that NULL will be
50170ce3f0cSdrh     ** translated into a unique ID for the row.  But on a BEFORE trigger,
50270ce3f0cSdrh     ** we do not know what the unique ID will be (because the insert has
50370ce3f0cSdrh     ** not happened yet) so we substitute a rowid of -1
50470ce3f0cSdrh     */
50570ce3f0cSdrh     if( keyColumn<0 ){
5064adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_Integer, -1, 0);
50770ce3f0cSdrh     }else if( useTempTable ){
5084adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_Column, srcTab, keyColumn);
50970ce3f0cSdrh     }else{
510d6fe961eSdrh       assert( pSelect==0 );  /* Otherwise useTempTable is true */
5114adee20fSdanielk1977       sqlite3ExprCode(pParse, pList->a[keyColumn].pExpr);
5124adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_NotNull, -1, sqlite3VdbeCurrentAddr(v)+3);
5134adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_Pop, 1, 0);
5144adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_Integer, -1, 0);
5154adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_MustBeInt, 0, 0);
51670ce3f0cSdrh     }
51770ce3f0cSdrh 
51870ce3f0cSdrh     /* Create the new column data
51970ce3f0cSdrh     */
520c3f9bad2Sdanielk1977     for(i=0; i<pTab->nCol; i++){
521c3f9bad2Sdanielk1977       if( pColumn==0 ){
522c3f9bad2Sdanielk1977         j = i;
523c3f9bad2Sdanielk1977       }else{
524c3f9bad2Sdanielk1977         for(j=0; j<pColumn->nId; j++){
525c3f9bad2Sdanielk1977           if( pColumn->a[j].idx==i ) break;
526c3f9bad2Sdanielk1977         }
527c3f9bad2Sdanielk1977       }
528c3f9bad2Sdanielk1977       if( pColumn && j>=pColumn->nId ){
5297977a17fSdanielk1977         sqlite3ExprCode(pParse, pTab->aCol[i].pDflt);
530142e30dfSdrh       }else if( useTempTable ){
5314adee20fSdanielk1977         sqlite3VdbeAddOp(v, OP_Column, srcTab, j);
532c3f9bad2Sdanielk1977       }else{
533d6fe961eSdrh         assert( pSelect==0 ); /* Otherwise useTempTable is true */
53425303780Sdrh         sqlite3ExprCodeAndCache(pParse, pList->a[j].pExpr);
535c3f9bad2Sdanielk1977       }
536c3f9bad2Sdanielk1977     }
5374adee20fSdanielk1977     sqlite3VdbeAddOp(v, OP_MakeRecord, pTab->nCol, 0);
538a37cdde0Sdanielk1977 
539a37cdde0Sdanielk1977     /* If this is an INSERT on a view with an INSTEAD OF INSERT trigger,
540a37cdde0Sdanielk1977     ** do not attempt any conversions before assembling the record.
541a37cdde0Sdanielk1977     ** If this is a real table, attempt conversions as required by the
542a37cdde0Sdanielk1977     ** table column affinities.
543a37cdde0Sdanielk1977     */
544a37cdde0Sdanielk1977     if( !isView ){
545a37cdde0Sdanielk1977       sqlite3TableAffinityStr(v, pTab);
546a37cdde0Sdanielk1977     }
547f0863fe5Sdrh     sqlite3VdbeAddOp(v, OP_Insert, newIdx, 0);
548c3f9bad2Sdanielk1977 
5495cf590c1Sdrh     /* Fire BEFORE or INSTEAD OF triggers */
550dca76841Sdrh     if( sqlite3CodeRowTrigger(pParse, TK_INSERT, 0, TRIGGER_BEFORE, pTab,
551b2fe7d8cSdrh         newIdx, -1, onError, endOfLoop) ){
552f29ce559Sdanielk1977       goto insert_cleanup;
553f29ce559Sdanielk1977     }
55470ce3f0cSdrh   }
555c3f9bad2Sdanielk1977 
55670ce3f0cSdrh   /* If any triggers exists, the opening of tables and indices is deferred
55770ce3f0cSdrh   ** until now.
55870ce3f0cSdrh   */
559dca76841Sdrh   if( triggers_exist && !isView ){
560c3f9bad2Sdanielk1977     base = pParse->nTab;
561290c1948Sdrh     sqlite3OpenTableAndIndices(pParse, pTab, base, OP_OpenWrite);
562c3f9bad2Sdanielk1977   }
563c3f9bad2Sdanielk1977 
5644a32431cSdrh   /* Push the record number for the new entry onto the stack.  The
565f0863fe5Sdrh   ** record number is a randomly generate integer created by NewRowid
5664a32431cSdrh   ** except when the table has an INTEGER PRIMARY KEY column, in which
567b419a926Sdrh   ** case the record number is the same as that column.
5681ccde15dSdrh   */
5695cf590c1Sdrh   if( !isView ){
5704a32431cSdrh     if( keyColumn>=0 ){
571142e30dfSdrh       if( useTempTable ){
5724adee20fSdanielk1977         sqlite3VdbeAddOp(v, OP_Column, srcTab, keyColumn);
573142e30dfSdrh       }else if( pSelect ){
5744adee20fSdanielk1977         sqlite3VdbeAddOp(v, OP_Dup, nColumn - keyColumn - 1, 1);
5754a32431cSdrh       }else{
5764adee20fSdanielk1977         sqlite3ExprCode(pParse, pList->a[keyColumn].pExpr);
57727a32783Sdrh       }
578f0863fe5Sdrh       /* If the PRIMARY KEY expression is NULL, then use OP_NewRowid
579e1e68f49Sdrh       ** to generate a unique primary key value.
580e1e68f49Sdrh       */
5814adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_NotNull, -1, sqlite3VdbeCurrentAddr(v)+3);
5824adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_Pop, 1, 0);
583f0863fe5Sdrh       sqlite3VdbeAddOp(v, OP_NewRowid, base, counterMem);
5844adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_MustBeInt, 0, 0);
5854a32431cSdrh     }else{
586f0863fe5Sdrh       sqlite3VdbeAddOp(v, OP_NewRowid, base, counterMem);
5874a32431cSdrh     }
5882958a4e6Sdrh #ifndef SQLITE_OMIT_AUTOINCREMENT
5892958a4e6Sdrh     if( pTab->autoInc ){
5902958a4e6Sdrh       sqlite3VdbeAddOp(v, OP_MemMax, counterMem, 0);
5912958a4e6Sdrh     }
5922958a4e6Sdrh #endif /* SQLITE_OMIT_AUTOINCREMENT */
5934a32431cSdrh 
594aacc543eSdrh     /* Push onto the stack, data for all columns of the new entry, beginning
5954a32431cSdrh     ** with the first column.
5964a32431cSdrh     */
597cce7d176Sdrh     for(i=0; i<pTab->nCol; i++){
5984a32431cSdrh       if( i==pTab->iPKey ){
5994a32431cSdrh         /* The value of the INTEGER PRIMARY KEY column is always a NULL.
600aacc543eSdrh         ** Whenever this column is read, the record number will be substituted
601aacc543eSdrh         ** in its place.  So will fill this column with a NULL to avoid
602aacc543eSdrh         ** taking up data space with information that will never be used. */
603f0863fe5Sdrh         sqlite3VdbeAddOp(v, OP_Null, 0, 0);
6044a32431cSdrh         continue;
6054a32431cSdrh       }
606967e8b73Sdrh       if( pColumn==0 ){
607cce7d176Sdrh         j = i;
608cce7d176Sdrh       }else{
609967e8b73Sdrh         for(j=0; j<pColumn->nId; j++){
610967e8b73Sdrh           if( pColumn->a[j].idx==i ) break;
611cce7d176Sdrh         }
612cce7d176Sdrh       }
613967e8b73Sdrh       if( pColumn && j>=pColumn->nId ){
6147977a17fSdanielk1977         sqlite3ExprCode(pParse, pTab->aCol[i].pDflt);
615142e30dfSdrh       }else if( useTempTable ){
6164adee20fSdanielk1977         sqlite3VdbeAddOp(v, OP_Column, srcTab, j);
617142e30dfSdrh       }else if( pSelect ){
6184adee20fSdanielk1977         sqlite3VdbeAddOp(v, OP_Dup, i+nColumn-j, 1);
619cce7d176Sdrh       }else{
6204adee20fSdanielk1977         sqlite3ExprCode(pParse, pList->a[j].pExpr);
621cce7d176Sdrh       }
622cce7d176Sdrh     }
6231ccde15dSdrh 
6240ca3e24bSdrh     /* Generate code to check constraints and generate index keys and
6250ca3e24bSdrh     ** do the insertion.
6264a32431cSdrh     */
6274adee20fSdanielk1977     sqlite3GenerateConstraintChecks(pParse, pTab, base, 0, keyColumn>=0,
628a0217ba7Sdrh                                    0, onError, endOfLoop);
6294adee20fSdanielk1977     sqlite3CompleteInsertion(pParse, pTab, base, 0,0,0,
630dca76841Sdrh                             (triggers_exist & TRIGGER_AFTER)!=0 ? newIdx : -1);
6315cf590c1Sdrh   }
6321bee3d7bSdrh 
633feeb1394Sdrh   /* Update the count of rows that are inserted
6341bee3d7bSdrh   */
635142e30dfSdrh   if( (db->flags & SQLITE_CountRows)!=0 ){
6364adee20fSdanielk1977     sqlite3VdbeAddOp(v, OP_MemIncr, iCntMem, 0);
6371bee3d7bSdrh   }
638c3f9bad2Sdanielk1977 
639dca76841Sdrh   if( triggers_exist ){
640c3f9bad2Sdanielk1977     /* Close all tables opened */
6415cf590c1Sdrh     if( !isView ){
6424adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_Close, base, 0);
643c3f9bad2Sdanielk1977       for(idx=1, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, idx++){
6444adee20fSdanielk1977         sqlite3VdbeAddOp(v, OP_Close, idx+base, 0);
645c3f9bad2Sdanielk1977       }
646c3f9bad2Sdanielk1977     }
647c3f9bad2Sdanielk1977 
648c3f9bad2Sdanielk1977     /* Code AFTER triggers */
649dca76841Sdrh     if( sqlite3CodeRowTrigger(pParse, TK_INSERT, 0, TRIGGER_AFTER, pTab,
650dca76841Sdrh           newIdx, -1, onError, endOfLoop) ){
651f29ce559Sdanielk1977       goto insert_cleanup;
652f29ce559Sdanielk1977     }
653c3f9bad2Sdanielk1977   }
6541bee3d7bSdrh 
6551ccde15dSdrh   /* The bottom of the loop, if the data source is a SELECT statement
6561ccde15dSdrh   */
6574adee20fSdanielk1977   sqlite3VdbeResolveLabel(v, endOfLoop);
658142e30dfSdrh   if( useTempTable ){
6594adee20fSdanielk1977     sqlite3VdbeAddOp(v, OP_Next, srcTab, iCont);
6604adee20fSdanielk1977     sqlite3VdbeResolveLabel(v, iBreak);
6614adee20fSdanielk1977     sqlite3VdbeAddOp(v, OP_Close, srcTab, 0);
662142e30dfSdrh   }else if( pSelect ){
6634adee20fSdanielk1977     sqlite3VdbeAddOp(v, OP_Pop, nColumn, 0);
6644adee20fSdanielk1977     sqlite3VdbeAddOp(v, OP_Return, 0, 0);
6654adee20fSdanielk1977     sqlite3VdbeResolveLabel(v, iCleanup);
6666b56344dSdrh   }
667c3f9bad2Sdanielk1977 
668dca76841Sdrh   if( !triggers_exist ){
669c3f9bad2Sdanielk1977     /* Close all tables opened */
6704adee20fSdanielk1977     sqlite3VdbeAddOp(v, OP_Close, base, 0);
6716b56344dSdrh     for(idx=1, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, idx++){
6724adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_Close, idx+base, 0);
673cce7d176Sdrh     }
674c3f9bad2Sdanielk1977   }
675c3f9bad2Sdanielk1977 
6762958a4e6Sdrh #ifndef SQLITE_OMIT_AUTOINCREMENT
677f3388144Sdrh   /* Update the sqlite_sequence table by storing the content of the
678f3388144Sdrh   ** counter value in memory counterMem back into the sqlite_sequence
679f3388144Sdrh   ** table.
6802958a4e6Sdrh   */
6812958a4e6Sdrh   if( pTab->autoInc ){
682f3388144Sdrh     int iCur = pParse->nTab;
683f3388144Sdrh     int base = sqlite3VdbeCurrentAddr(v);
684f3388144Sdrh     sqlite3VdbeAddOp(v, OP_Integer, pTab->iDb, 0);
685f3388144Sdrh     sqlite3VdbeAddOp(v, OP_OpenWrite, iCur, pDb->pSeqTab->tnum);
686f3388144Sdrh     sqlite3VdbeAddOp(v, OP_SetNumColumns, iCur, 2);
687f3388144Sdrh     sqlite3VdbeAddOp(v, OP_MemLoad, counterRowid, 0);
688f3388144Sdrh     sqlite3VdbeAddOp(v, OP_NotNull, -1, base+7);
689f3388144Sdrh     sqlite3VdbeAddOp(v, OP_Pop, 1, 0);
690f0863fe5Sdrh     sqlite3VdbeAddOp(v, OP_NewRowid, iCur, 0);
691f3388144Sdrh     sqlite3VdbeOp3(v, OP_String8, 0, 0, pTab->zName, 0);
692f3388144Sdrh     sqlite3VdbeAddOp(v, OP_MemLoad, counterMem, 0);
693f3388144Sdrh     sqlite3VdbeAddOp(v, OP_MakeRecord, 2, 0);
694f0863fe5Sdrh     sqlite3VdbeAddOp(v, OP_Insert, iCur, 0);
695f3388144Sdrh     sqlite3VdbeAddOp(v, OP_Close, iCur, 0);
6962958a4e6Sdrh   }
6972958a4e6Sdrh #endif
6982958a4e6Sdrh 
6991bee3d7bSdrh   /*
700e7de6f25Sdanielk1977   ** Return the number of rows inserted. If this routine is
701e7de6f25Sdanielk1977   ** generating code because of a call to sqlite3NestedParse(), do not
702e7de6f25Sdanielk1977   ** invoke the callback function.
7031bee3d7bSdrh   */
704cc6bd383Sdanielk1977   if( db->flags & SQLITE_CountRows && pParse->nested==0 && !pParse->trigStack ){
7054adee20fSdanielk1977     sqlite3VdbeAddOp(v, OP_MemLoad, iCntMem, 0);
7064adee20fSdanielk1977     sqlite3VdbeAddOp(v, OP_Callback, 1, 0);
70722322fd4Sdanielk1977     sqlite3VdbeSetNumCols(v, 1);
7083cf86063Sdanielk1977     sqlite3VdbeSetColName(v, 0, "rows inserted", P3_STATIC);
7091bee3d7bSdrh   }
710cce7d176Sdrh 
711cce7d176Sdrh insert_cleanup:
7124adee20fSdanielk1977   sqlite3SrcListDelete(pTabList);
713d5d56523Sdanielk1977   sqlite3ExprListDelete(pList);
714d5d56523Sdanielk1977   sqlite3SelectDelete(pSelect);
7154adee20fSdanielk1977   sqlite3IdListDelete(pColumn);
716cce7d176Sdrh }
7179cfcf5d4Sdrh 
7189cfcf5d4Sdrh /*
7199cfcf5d4Sdrh ** Generate code to do a constraint check prior to an INSERT or an UPDATE.
7209cfcf5d4Sdrh **
7219cfcf5d4Sdrh ** When this routine is called, the stack contains (from bottom to top)
7220ca3e24bSdrh ** the following values:
7230ca3e24bSdrh **
724f0863fe5Sdrh **    1.  The rowid of the row to be updated before the update.  This
725b419a926Sdrh **        value is omitted unless we are doing an UPDATE that involves a
726b419a926Sdrh **        change to the record number.
7270ca3e24bSdrh **
728f0863fe5Sdrh **    2.  The rowid of the row after the update.
7290ca3e24bSdrh **
7300ca3e24bSdrh **    3.  The data in the first column of the entry after the update.
7310ca3e24bSdrh **
7320ca3e24bSdrh **    i.  Data from middle columns...
7330ca3e24bSdrh **
7340ca3e24bSdrh **    N.  The data in the last column of the entry after the update.
7350ca3e24bSdrh **
736f0863fe5Sdrh ** The old rowid shown as entry (1) above is omitted unless both isUpdate
737f0863fe5Sdrh ** and rowidChng are 1.  isUpdate is true for UPDATEs and false for
738f0863fe5Sdrh ** INSERTs and rowidChng is true if the record number is being changed.
7390ca3e24bSdrh **
7400ca3e24bSdrh ** The code generated by this routine pushes additional entries onto
7410ca3e24bSdrh ** the stack which are the keys for new index entries for the new record.
7420ca3e24bSdrh ** The order of index keys is the same as the order of the indices on
7430ca3e24bSdrh ** the pTable->pIndex list.  A key is only created for index i if
7440ca3e24bSdrh ** aIdxUsed!=0 and aIdxUsed[i]!=0.
7459cfcf5d4Sdrh **
7469cfcf5d4Sdrh ** This routine also generates code to check constraints.  NOT NULL,
7479cfcf5d4Sdrh ** CHECK, and UNIQUE constraints are all checked.  If a constraint fails,
7481c92853dSdrh ** then the appropriate action is performed.  There are five possible
7491c92853dSdrh ** actions: ROLLBACK, ABORT, FAIL, REPLACE, and IGNORE.
7509cfcf5d4Sdrh **
7519cfcf5d4Sdrh **  Constraint type  Action       What Happens
7529cfcf5d4Sdrh **  ---------------  ----------   ----------------------------------------
7531c92853dSdrh **  any              ROLLBACK     The current transaction is rolled back and
75424b03fd0Sdanielk1977 **                                sqlite3_exec() returns immediately with a
7559cfcf5d4Sdrh **                                return code of SQLITE_CONSTRAINT.
7569cfcf5d4Sdrh **
7571c92853dSdrh **  any              ABORT        Back out changes from the current command
7581c92853dSdrh **                                only (do not do a complete rollback) then
75924b03fd0Sdanielk1977 **                                cause sqlite3_exec() to return immediately
7601c92853dSdrh **                                with SQLITE_CONSTRAINT.
7611c92853dSdrh **
7621c92853dSdrh **  any              FAIL         Sqlite_exec() returns immediately with a
7631c92853dSdrh **                                return code of SQLITE_CONSTRAINT.  The
7641c92853dSdrh **                                transaction is not rolled back and any
7651c92853dSdrh **                                prior changes are retained.
7661c92853dSdrh **
7679cfcf5d4Sdrh **  any              IGNORE       The record number and data is popped from
7689cfcf5d4Sdrh **                                the stack and there is an immediate jump
7699cfcf5d4Sdrh **                                to label ignoreDest.
7709cfcf5d4Sdrh **
7719cfcf5d4Sdrh **  NOT NULL         REPLACE      The NULL value is replace by the default
7729cfcf5d4Sdrh **                                value for that column.  If the default value
7739cfcf5d4Sdrh **                                is NULL, the action is the same as ABORT.
7749cfcf5d4Sdrh **
7759cfcf5d4Sdrh **  UNIQUE           REPLACE      The other row that conflicts with the row
7769cfcf5d4Sdrh **                                being inserted is removed.
7779cfcf5d4Sdrh **
7789cfcf5d4Sdrh **  CHECK            REPLACE      Illegal.  The results in an exception.
7799cfcf5d4Sdrh **
7801c92853dSdrh ** Which action to take is determined by the overrideError parameter.
7811c92853dSdrh ** Or if overrideError==OE_Default, then the pParse->onError parameter
7821c92853dSdrh ** is used.  Or if pParse->onError==OE_Default then the onError value
7831c92853dSdrh ** for the constraint is used.
7849cfcf5d4Sdrh **
785aaab5725Sdrh ** The calling routine must open a read/write cursor for pTab with
7869cfcf5d4Sdrh ** cursor number "base".  All indices of pTab must also have open
7879cfcf5d4Sdrh ** read/write cursors with cursor number base+i for the i-th cursor.
7889cfcf5d4Sdrh ** Except, if there is no possibility of a REPLACE action then
7899cfcf5d4Sdrh ** cursors do not need to be open for indices where aIdxUsed[i]==0.
7909cfcf5d4Sdrh **
7919cfcf5d4Sdrh ** If the isUpdate flag is true, it means that the "base" cursor is
7929cfcf5d4Sdrh ** initially pointing to an entry that is being updated.  The isUpdate
7939cfcf5d4Sdrh ** flag causes extra code to be generated so that the "base" cursor
7949cfcf5d4Sdrh ** is still pointing at the same entry after the routine returns.
7959cfcf5d4Sdrh ** Without the isUpdate flag, the "base" cursor might be moved.
7969cfcf5d4Sdrh */
7974adee20fSdanielk1977 void sqlite3GenerateConstraintChecks(
7989cfcf5d4Sdrh   Parse *pParse,      /* The parser context */
7999cfcf5d4Sdrh   Table *pTab,        /* the table into which we are inserting */
8009cfcf5d4Sdrh   int base,           /* Index of a read/write cursor pointing at pTab */
8019cfcf5d4Sdrh   char *aIdxUsed,     /* Which indices are used.  NULL means all are used */
802f0863fe5Sdrh   int rowidChng,      /* True if the record number will change */
803b419a926Sdrh   int isUpdate,       /* True for UPDATE, False for INSERT */
8049cfcf5d4Sdrh   int overrideError,  /* Override onError to this if not OE_Default */
805b419a926Sdrh   int ignoreDest      /* Jump to this label on an OE_Ignore resolution */
8069cfcf5d4Sdrh ){
8079cfcf5d4Sdrh   int i;
8089cfcf5d4Sdrh   Vdbe *v;
8099cfcf5d4Sdrh   int nCol;
8109cfcf5d4Sdrh   int onError;
8119cfcf5d4Sdrh   int addr;
8129cfcf5d4Sdrh   int extra;
8130ca3e24bSdrh   int iCur;
8140ca3e24bSdrh   Index *pIdx;
8150ca3e24bSdrh   int seenReplace = 0;
816cfe9a69fSdanielk1977   int jumpInst1=0, jumpInst2;
817f0863fe5Sdrh   int hasTwoRowids = (isUpdate && rowidChng);
8189cfcf5d4Sdrh 
8194adee20fSdanielk1977   v = sqlite3GetVdbe(pParse);
8209cfcf5d4Sdrh   assert( v!=0 );
821417be79cSdrh   assert( pTab->pSelect==0 );  /* This table is not a VIEW */
8229cfcf5d4Sdrh   nCol = pTab->nCol;
8239cfcf5d4Sdrh 
8249cfcf5d4Sdrh   /* Test all NOT NULL constraints.
8259cfcf5d4Sdrh   */
8269cfcf5d4Sdrh   for(i=0; i<nCol; i++){
8270ca3e24bSdrh     if( i==pTab->iPKey ){
8280ca3e24bSdrh       continue;
8290ca3e24bSdrh     }
8309cfcf5d4Sdrh     onError = pTab->aCol[i].notNull;
8310ca3e24bSdrh     if( onError==OE_None ) continue;
8329cfcf5d4Sdrh     if( overrideError!=OE_Default ){
8339cfcf5d4Sdrh       onError = overrideError;
834a996e477Sdrh     }else if( onError==OE_Default ){
835a996e477Sdrh       onError = OE_Abort;
8369cfcf5d4Sdrh     }
8377977a17fSdanielk1977     if( onError==OE_Replace && pTab->aCol[i].pDflt==0 ){
8389cfcf5d4Sdrh       onError = OE_Abort;
8399cfcf5d4Sdrh     }
8404adee20fSdanielk1977     sqlite3VdbeAddOp(v, OP_Dup, nCol-1-i, 1);
8414adee20fSdanielk1977     addr = sqlite3VdbeAddOp(v, OP_NotNull, 1, 0);
842b84f96f8Sdanielk1977     assert( onError==OE_Rollback || onError==OE_Abort || onError==OE_Fail
843b84f96f8Sdanielk1977         || onError==OE_Ignore || onError==OE_Replace );
8449cfcf5d4Sdrh     switch( onError ){
8451c92853dSdrh       case OE_Rollback:
8461c92853dSdrh       case OE_Abort:
8471c92853dSdrh       case OE_Fail: {
848483750baSdrh         char *zMsg = 0;
8494adee20fSdanielk1977         sqlite3VdbeAddOp(v, OP_Halt, SQLITE_CONSTRAINT, onError);
8504adee20fSdanielk1977         sqlite3SetString(&zMsg, pTab->zName, ".", pTab->aCol[i].zName,
85141743984Sdrh                         " may not be NULL", (char*)0);
8524adee20fSdanielk1977         sqlite3VdbeChangeP3(v, -1, zMsg, P3_DYNAMIC);
8539cfcf5d4Sdrh         break;
8549cfcf5d4Sdrh       }
8559cfcf5d4Sdrh       case OE_Ignore: {
856f0863fe5Sdrh         sqlite3VdbeAddOp(v, OP_Pop, nCol+1+hasTwoRowids, 0);
8574adee20fSdanielk1977         sqlite3VdbeAddOp(v, OP_Goto, 0, ignoreDest);
8589cfcf5d4Sdrh         break;
8599cfcf5d4Sdrh       }
8609cfcf5d4Sdrh       case OE_Replace: {
8617977a17fSdanielk1977         sqlite3ExprCode(pParse, pTab->aCol[i].pDflt);
8624adee20fSdanielk1977         sqlite3VdbeAddOp(v, OP_Push, nCol-i, 0);
8639cfcf5d4Sdrh         break;
8649cfcf5d4Sdrh       }
8659cfcf5d4Sdrh     }
866d654be80Sdrh     sqlite3VdbeJumpHere(v, addr);
8679cfcf5d4Sdrh   }
8689cfcf5d4Sdrh 
8699cfcf5d4Sdrh   /* Test all CHECK constraints
8709cfcf5d4Sdrh   */
871*ffe07b2dSdrh #ifndef SQLITE_OMIT_CHECK
872*ffe07b2dSdrh   if( pTab->pCheck ){
873*ffe07b2dSdrh     int allOk = sqlite3VdbeMakeLabel(v);
874*ffe07b2dSdrh     assert( pParse->ckOffset==0 );
875*ffe07b2dSdrh     pParse->ckOffset = nCol;
876*ffe07b2dSdrh     sqlite3ExprIfTrue(pParse, pTab->pCheck, allOk, 0);
877*ffe07b2dSdrh     assert( pParse->ckOffset==nCol );
878*ffe07b2dSdrh     pParse->ckOffset = 0;
879*ffe07b2dSdrh     sqlite3VdbeAddOp(v, OP_Halt, SQLITE_CONSTRAINT, OE_Abort);
880*ffe07b2dSdrh     sqlite3VdbeResolveLabel(v, allOk);
881*ffe07b2dSdrh   }
882*ffe07b2dSdrh #endif /* !defined(SQLITE_OMIT_CHECK) */
8839cfcf5d4Sdrh 
8840bd1f4eaSdrh   /* If we have an INTEGER PRIMARY KEY, make sure the primary key
8850bd1f4eaSdrh   ** of the new record does not previously exist.  Except, if this
8860bd1f4eaSdrh   ** is an UPDATE and the primary key is not changing, that is OK.
8879cfcf5d4Sdrh   */
888f0863fe5Sdrh   if( rowidChng ){
8890ca3e24bSdrh     onError = pTab->keyConf;
8900ca3e24bSdrh     if( overrideError!=OE_Default ){
8910ca3e24bSdrh       onError = overrideError;
892a996e477Sdrh     }else if( onError==OE_Default ){
893a996e477Sdrh       onError = OE_Abort;
8940ca3e24bSdrh     }
895a0217ba7Sdrh 
89679b0c956Sdrh     if( isUpdate ){
8974adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_Dup, nCol+1, 1);
8984adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_Dup, nCol+1, 1);
8994adee20fSdanielk1977       jumpInst1 = sqlite3VdbeAddOp(v, OP_Eq, 0, 0);
90079b0c956Sdrh     }
9014adee20fSdanielk1977     sqlite3VdbeAddOp(v, OP_Dup, nCol, 1);
9024adee20fSdanielk1977     jumpInst2 = sqlite3VdbeAddOp(v, OP_NotExists, base, 0);
9030ca3e24bSdrh     switch( onError ){
904a0217ba7Sdrh       default: {
905a0217ba7Sdrh         onError = OE_Abort;
906a0217ba7Sdrh         /* Fall thru into the next case */
907a0217ba7Sdrh       }
9081c92853dSdrh       case OE_Rollback:
9091c92853dSdrh       case OE_Abort:
9101c92853dSdrh       case OE_Fail: {
9114adee20fSdanielk1977         sqlite3VdbeOp3(v, OP_Halt, SQLITE_CONSTRAINT, onError,
912701a0aebSdrh                          "PRIMARY KEY must be unique", P3_STATIC);
9130ca3e24bSdrh         break;
9140ca3e24bSdrh       }
9155383ae5cSdrh       case OE_Replace: {
9164adee20fSdanielk1977         sqlite3GenerateRowIndexDelete(pParse->db, v, pTab, base, 0);
9175383ae5cSdrh         if( isUpdate ){
918f0863fe5Sdrh           sqlite3VdbeAddOp(v, OP_Dup, nCol+hasTwoRowids, 1);
9197cf6e4deSdrh           sqlite3VdbeAddOp(v, OP_MoveGe, base, 0);
9205383ae5cSdrh         }
9215383ae5cSdrh         seenReplace = 1;
9225383ae5cSdrh         break;
9235383ae5cSdrh       }
9240ca3e24bSdrh       case OE_Ignore: {
9255383ae5cSdrh         assert( seenReplace==0 );
926f0863fe5Sdrh         sqlite3VdbeAddOp(v, OP_Pop, nCol+1+hasTwoRowids, 0);
9274adee20fSdanielk1977         sqlite3VdbeAddOp(v, OP_Goto, 0, ignoreDest);
9280ca3e24bSdrh         break;
9290ca3e24bSdrh       }
9300ca3e24bSdrh     }
931d654be80Sdrh     sqlite3VdbeJumpHere(v, jumpInst2);
932f5905aa7Sdrh     if( isUpdate ){
933d654be80Sdrh       sqlite3VdbeJumpHere(v, jumpInst1);
9344adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_Dup, nCol+1, 1);
9357cf6e4deSdrh       sqlite3VdbeAddOp(v, OP_MoveGe, base, 0);
9360ca3e24bSdrh     }
9370ca3e24bSdrh   }
9380bd1f4eaSdrh 
9390bd1f4eaSdrh   /* Test all UNIQUE constraints by creating entries for each UNIQUE
9400bd1f4eaSdrh   ** index and making sure that duplicate entries do not already exist.
9410bd1f4eaSdrh   ** Add the new records to the indices as we go.
9420bd1f4eaSdrh   */
943b2fe7d8cSdrh   extra = -1;
944b2fe7d8cSdrh   for(iCur=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, iCur++){
945b2fe7d8cSdrh     if( aIdxUsed && aIdxUsed[iCur]==0 ) continue;  /* Skip unused indices */
9469cfcf5d4Sdrh     extra++;
947b2fe7d8cSdrh 
948b2fe7d8cSdrh     /* Create a key for accessing the index entry */
9494adee20fSdanielk1977     sqlite3VdbeAddOp(v, OP_Dup, nCol+extra, 1);
9509cfcf5d4Sdrh     for(i=0; i<pIdx->nColumn; i++){
9519cfcf5d4Sdrh       int idx = pIdx->aiColumn[i];
9529cfcf5d4Sdrh       if( idx==pTab->iPKey ){
9534adee20fSdanielk1977         sqlite3VdbeAddOp(v, OP_Dup, i+extra+nCol+1, 1);
9549cfcf5d4Sdrh       }else{
9554adee20fSdanielk1977         sqlite3VdbeAddOp(v, OP_Dup, i+extra+nCol-idx, 1);
9569cfcf5d4Sdrh       }
9579cfcf5d4Sdrh     }
9587f057c91Sdrh     jumpInst1 = sqlite3VdbeAddOp(v, OP_MakeIdxRec, pIdx->nColumn, 0);
959a37cdde0Sdanielk1977     sqlite3IndexAffinityStr(v, pIdx);
960b2fe7d8cSdrh 
961b2fe7d8cSdrh     /* Find out what action to take in case there is an indexing conflict */
9629cfcf5d4Sdrh     onError = pIdx->onError;
963b2fe7d8cSdrh     if( onError==OE_None ) continue;  /* pIdx is not a UNIQUE index */
9649cfcf5d4Sdrh     if( overrideError!=OE_Default ){
9659cfcf5d4Sdrh       onError = overrideError;
966a996e477Sdrh     }else if( onError==OE_Default ){
967a996e477Sdrh       onError = OE_Abort;
9689cfcf5d4Sdrh     }
9695383ae5cSdrh     if( seenReplace ){
9705383ae5cSdrh       if( onError==OE_Ignore ) onError = OE_Replace;
9715383ae5cSdrh       else if( onError==OE_Fail ) onError = OE_Abort;
9725383ae5cSdrh     }
9735383ae5cSdrh 
974b2fe7d8cSdrh 
975b2fe7d8cSdrh     /* Check to see if the new index entry will be unique */
976f0863fe5Sdrh     sqlite3VdbeAddOp(v, OP_Dup, extra+nCol+1+hasTwoRowids, 1);
9774adee20fSdanielk1977     jumpInst2 = sqlite3VdbeAddOp(v, OP_IsUnique, base+iCur+1, 0);
978b2fe7d8cSdrh 
979b2fe7d8cSdrh     /* Generate code that executes if the new index entry is not unique */
980b84f96f8Sdanielk1977     assert( onError==OE_Rollback || onError==OE_Abort || onError==OE_Fail
981b84f96f8Sdanielk1977         || onError==OE_Ignore || onError==OE_Replace );
9829cfcf5d4Sdrh     switch( onError ){
9831c92853dSdrh       case OE_Rollback:
9841c92853dSdrh       case OE_Abort:
9851c92853dSdrh       case OE_Fail: {
98637ed48edSdrh         int j, n1, n2;
98737ed48edSdrh         char zErrMsg[200];
98837ed48edSdrh         strcpy(zErrMsg, pIdx->nColumn>1 ? "columns " : "column ");
98937ed48edSdrh         n1 = strlen(zErrMsg);
99037ed48edSdrh         for(j=0; j<pIdx->nColumn && n1<sizeof(zErrMsg)-30; j++){
99137ed48edSdrh           char *zCol = pTab->aCol[pIdx->aiColumn[j]].zName;
99237ed48edSdrh           n2 = strlen(zCol);
99337ed48edSdrh           if( j>0 ){
99437ed48edSdrh             strcpy(&zErrMsg[n1], ", ");
99537ed48edSdrh             n1 += 2;
99637ed48edSdrh           }
99737ed48edSdrh           if( n1+n2>sizeof(zErrMsg)-30 ){
99837ed48edSdrh             strcpy(&zErrMsg[n1], "...");
99937ed48edSdrh             n1 += 3;
100037ed48edSdrh             break;
100137ed48edSdrh           }else{
100237ed48edSdrh             strcpy(&zErrMsg[n1], zCol);
100337ed48edSdrh             n1 += n2;
100437ed48edSdrh           }
100537ed48edSdrh         }
100637ed48edSdrh         strcpy(&zErrMsg[n1],
100737ed48edSdrh             pIdx->nColumn>1 ? " are not unique" : " is not unique");
10084adee20fSdanielk1977         sqlite3VdbeOp3(v, OP_Halt, SQLITE_CONSTRAINT, onError, zErrMsg, 0);
10099cfcf5d4Sdrh         break;
10109cfcf5d4Sdrh       }
10119cfcf5d4Sdrh       case OE_Ignore: {
10120ca3e24bSdrh         assert( seenReplace==0 );
1013f0863fe5Sdrh         sqlite3VdbeAddOp(v, OP_Pop, nCol+extra+3+hasTwoRowids, 0);
10144adee20fSdanielk1977         sqlite3VdbeAddOp(v, OP_Goto, 0, ignoreDest);
10159cfcf5d4Sdrh         break;
10169cfcf5d4Sdrh       }
10179cfcf5d4Sdrh       case OE_Replace: {
10184adee20fSdanielk1977         sqlite3GenerateRowDelete(pParse->db, v, pTab, base, 0);
10199cfcf5d4Sdrh         if( isUpdate ){
1020f0863fe5Sdrh           sqlite3VdbeAddOp(v, OP_Dup, nCol+extra+1+hasTwoRowids, 1);
10217cf6e4deSdrh           sqlite3VdbeAddOp(v, OP_MoveGe, base, 0);
10229cfcf5d4Sdrh         }
10230ca3e24bSdrh         seenReplace = 1;
10249cfcf5d4Sdrh         break;
10259cfcf5d4Sdrh       }
10269cfcf5d4Sdrh     }
10270bd1f4eaSdrh #if NULL_DISTINCT_FOR_UNIQUE
1028d654be80Sdrh     sqlite3VdbeJumpHere(v, jumpInst1);
10290bd1f4eaSdrh #endif
1030d654be80Sdrh     sqlite3VdbeJumpHere(v, jumpInst2);
10319cfcf5d4Sdrh   }
10329cfcf5d4Sdrh }
10330ca3e24bSdrh 
10340ca3e24bSdrh /*
10350ca3e24bSdrh ** This routine generates code to finish the INSERT or UPDATE operation
10364adee20fSdanielk1977 ** that was started by a prior call to sqlite3GenerateConstraintChecks.
10370ca3e24bSdrh ** The stack must contain keys for all active indices followed by data
1038f0863fe5Sdrh ** and the rowid for the new entry.  This routine creates the new
10390ca3e24bSdrh ** entries in all indices and in the main table.
10400ca3e24bSdrh **
1041b419a926Sdrh ** The arguments to this routine should be the same as the first six
10424adee20fSdanielk1977 ** arguments to sqlite3GenerateConstraintChecks.
10430ca3e24bSdrh */
10444adee20fSdanielk1977 void sqlite3CompleteInsertion(
10450ca3e24bSdrh   Parse *pParse,      /* The parser context */
10460ca3e24bSdrh   Table *pTab,        /* the table into which we are inserting */
10470ca3e24bSdrh   int base,           /* Index of a read/write cursor pointing at pTab */
10480ca3e24bSdrh   char *aIdxUsed,     /* Which indices are used.  NULL means all are used */
1049f0863fe5Sdrh   int rowidChng,      /* True if the record number will change */
105070ce3f0cSdrh   int isUpdate,       /* True for UPDATE, False for INSERT */
105170ce3f0cSdrh   int newIdx          /* Index of NEW table for triggers.  -1 if none */
10520ca3e24bSdrh ){
10530ca3e24bSdrh   int i;
10540ca3e24bSdrh   Vdbe *v;
10550ca3e24bSdrh   int nIdx;
10560ca3e24bSdrh   Index *pIdx;
1057b28af71aSdanielk1977   int pik_flags;
10580ca3e24bSdrh 
10594adee20fSdanielk1977   v = sqlite3GetVdbe(pParse);
10600ca3e24bSdrh   assert( v!=0 );
1061417be79cSdrh   assert( pTab->pSelect==0 );  /* This table is not a VIEW */
10620ca3e24bSdrh   for(nIdx=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, nIdx++){}
10630ca3e24bSdrh   for(i=nIdx-1; i>=0; i--){
10640ca3e24bSdrh     if( aIdxUsed && aIdxUsed[i]==0 ) continue;
1065f0863fe5Sdrh     sqlite3VdbeAddOp(v, OP_IdxInsert, base+i+1, 0);
10660ca3e24bSdrh   }
10674adee20fSdanielk1977   sqlite3VdbeAddOp(v, OP_MakeRecord, pTab->nCol, 0);
1068a37cdde0Sdanielk1977   sqlite3TableAffinityStr(v, pTab);
1069b84f96f8Sdanielk1977 #ifndef SQLITE_OMIT_TRIGGER
107070ce3f0cSdrh   if( newIdx>=0 ){
10714adee20fSdanielk1977     sqlite3VdbeAddOp(v, OP_Dup, 1, 0);
10724adee20fSdanielk1977     sqlite3VdbeAddOp(v, OP_Dup, 1, 0);
1073f0863fe5Sdrh     sqlite3VdbeAddOp(v, OP_Insert, newIdx, 0);
107470ce3f0cSdrh   }
1075b84f96f8Sdanielk1977 #endif
10764794f735Sdrh   if( pParse->nested ){
10774794f735Sdrh     pik_flags = 0;
10784794f735Sdrh   }else{
1079b28af71aSdanielk1977     pik_flags = (OPFLAG_NCHANGE|(isUpdate?0:OPFLAG_LASTROWID));
10804794f735Sdrh   }
1081f0863fe5Sdrh   sqlite3VdbeAddOp(v, OP_Insert, base, pik_flags);
1082b28af71aSdanielk1977 
1083f0863fe5Sdrh   if( isUpdate && rowidChng ){
10844adee20fSdanielk1977     sqlite3VdbeAddOp(v, OP_Pop, 1, 0);
10850ca3e24bSdrh   }
10860ca3e24bSdrh }
1087cd44690aSdrh 
1088cd44690aSdrh /*
1089290c1948Sdrh ** Generate code that will open cursors for a table and for all
1090cd44690aSdrh ** indices of that table.  The "base" parameter is the cursor number used
1091cd44690aSdrh ** for the table.  Indices are opened on subsequent cursors.
1092cd44690aSdrh */
1093290c1948Sdrh void sqlite3OpenTableAndIndices(
1094290c1948Sdrh   Parse *pParse,   /* Parsing context */
1095290c1948Sdrh   Table *pTab,     /* Table to be opened */
1096290c1948Sdrh   int base,        /* Cursor number assigned to the table */
1097290c1948Sdrh   int op           /* OP_OpenRead or OP_OpenWrite */
1098290c1948Sdrh ){
1099cd44690aSdrh   int i;
1100cd44690aSdrh   Index *pIdx;
11014adee20fSdanielk1977   Vdbe *v = sqlite3GetVdbe(pParse);
1102cd44690aSdrh   assert( v!=0 );
11034adee20fSdanielk1977   sqlite3VdbeAddOp(v, OP_Integer, pTab->iDb, 0);
1104ad6d9460Sdrh   VdbeComment((v, "# %s", pTab->zName));
110529dda4aeSdrh   sqlite3VdbeAddOp(v, op, base, pTab->tnum);
1106b4964b72Sdanielk1977   sqlite3VdbeAddOp(v, OP_SetNumColumns, base, pTab->nCol);
1107cd44690aSdrh   for(i=1, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, i++){
11084adee20fSdanielk1977     sqlite3VdbeAddOp(v, OP_Integer, pIdx->iDb, 0);
110929dda4aeSdrh     VdbeComment((v, "# %s", pIdx->zName));
1110290c1948Sdrh     sqlite3VdbeOp3(v, op, i+base, pIdx->tnum,
1111d3d39e93Sdrh                    (char*)&pIdx->keyInfo, P3_KEYINFO);
1112cd44690aSdrh   }
1113290c1948Sdrh   if( pParse->nTab<=base+i ){
1114290c1948Sdrh     pParse->nTab = base+i;
1115290c1948Sdrh   }
1116cd44690aSdrh }
1117