xref: /sqlite-3.40.0/src/insert.c (revision 6f7adc8a)
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*6f7adc8aSdrh ** $Id: insert.c,v 1.157 2006/01/11 21:41:22 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 **  ------------------------------
263eda040bSdrh **  'a'            TEXT
273eda040bSdrh **  'b'            NONE
283eda040bSdrh **  'c'            NUMERIC
293eda040bSdrh **  'd'            INTEGER
303eda040bSdrh **  'e'            REAL
313d1bfeaaSdanielk1977 */
32a37cdde0Sdanielk1977 void sqlite3IndexAffinityStr(Vdbe *v, Index *pIdx){
33a37cdde0Sdanielk1977   if( !pIdx->zColAff ){
34e014a838Sdanielk1977     /* The first time a column affinity string for a particular index is
35a37cdde0Sdanielk1977     ** required, it is allocated and populated here. It is then stored as
36e014a838Sdanielk1977     ** a member of the Index structure for subsequent use.
37a37cdde0Sdanielk1977     **
38a37cdde0Sdanielk1977     ** The column affinity string will eventually be deleted by
39e014a838Sdanielk1977     ** sqliteDeleteIndex() when the Index structure itself is cleaned
40a37cdde0Sdanielk1977     ** up.
41a37cdde0Sdanielk1977     */
42a37cdde0Sdanielk1977     int n;
43a37cdde0Sdanielk1977     Table *pTab = pIdx->pTable;
44a37cdde0Sdanielk1977     pIdx->zColAff = (char *)sqliteMalloc(pIdx->nColumn+1);
45a37cdde0Sdanielk1977     if( !pIdx->zColAff ){
46a37cdde0Sdanielk1977       return;
47a37cdde0Sdanielk1977     }
48a37cdde0Sdanielk1977     for(n=0; n<pIdx->nColumn; n++){
49a37cdde0Sdanielk1977       pIdx->zColAff[n] = pTab->aCol[pIdx->aiColumn[n]].affinity;
50a37cdde0Sdanielk1977     }
51a37cdde0Sdanielk1977     pIdx->zColAff[pIdx->nColumn] = '\0';
52a37cdde0Sdanielk1977   }
533d1bfeaaSdanielk1977 
54956bc92cSdrh   sqlite3VdbeChangeP3(v, -1, pIdx->zColAff, 0);
55a37cdde0Sdanielk1977 }
56a37cdde0Sdanielk1977 
57a37cdde0Sdanielk1977 /*
58a37cdde0Sdanielk1977 ** Set P3 of the most recently inserted opcode to a column affinity
59a37cdde0Sdanielk1977 ** string for table pTab. A column affinity string has one character
60a37cdde0Sdanielk1977 ** for each column indexed by the index, according to the affinity of the
61a37cdde0Sdanielk1977 ** column:
62a37cdde0Sdanielk1977 **
63a37cdde0Sdanielk1977 **  Character      Column affinity
64a37cdde0Sdanielk1977 **  ------------------------------
653eda040bSdrh **  'a'            TEXT
663eda040bSdrh **  'b'            NONE
673eda040bSdrh **  'c'            NUMERIC
683eda040bSdrh **  'd'            INTEGER
693eda040bSdrh **  'e'            REAL
70a37cdde0Sdanielk1977 */
71a37cdde0Sdanielk1977 void sqlite3TableAffinityStr(Vdbe *v, Table *pTab){
723d1bfeaaSdanielk1977   /* The first time a column affinity string for a particular table
733d1bfeaaSdanielk1977   ** is required, it is allocated and populated here. It is then
743d1bfeaaSdanielk1977   ** stored as a member of the Table structure for subsequent use.
753d1bfeaaSdanielk1977   **
763d1bfeaaSdanielk1977   ** The column affinity string will eventually be deleted by
773d1bfeaaSdanielk1977   ** sqlite3DeleteTable() when the Table structure itself is cleaned up.
783d1bfeaaSdanielk1977   */
793d1bfeaaSdanielk1977   if( !pTab->zColAff ){
803d1bfeaaSdanielk1977     char *zColAff;
813d1bfeaaSdanielk1977     int i;
823d1bfeaaSdanielk1977 
83a37cdde0Sdanielk1977     zColAff = (char *)sqliteMalloc(pTab->nCol+1);
843d1bfeaaSdanielk1977     if( !zColAff ){
85a37cdde0Sdanielk1977       return;
863d1bfeaaSdanielk1977     }
873d1bfeaaSdanielk1977 
883d1bfeaaSdanielk1977     for(i=0; i<pTab->nCol; i++){
89a37cdde0Sdanielk1977       zColAff[i] = pTab->aCol[i].affinity;
903d1bfeaaSdanielk1977     }
913d1bfeaaSdanielk1977     zColAff[pTab->nCol] = '\0';
923d1bfeaaSdanielk1977 
933d1bfeaaSdanielk1977     pTab->zColAff = zColAff;
943d1bfeaaSdanielk1977   }
953d1bfeaaSdanielk1977 
96956bc92cSdrh   sqlite3VdbeChangeP3(v, -1, pTab->zColAff, 0);
973d1bfeaaSdanielk1977 }
983d1bfeaaSdanielk1977 
994d88778bSdanielk1977 /*
1004d88778bSdanielk1977 ** Return non-zero if SELECT statement p opens the table with rootpage
1014d88778bSdanielk1977 ** iTab in database iDb.  This is used to see if a statement of the form
1024d88778bSdanielk1977 ** "INSERT INTO <iDb, iTab> SELECT ..." can run without using temporary
1034d88778bSdanielk1977 ** table for the results of the SELECT.
1044d88778bSdanielk1977 **
1054d88778bSdanielk1977 ** No checking is done for sub-selects that are part of expressions.
1064d88778bSdanielk1977 */
107e501b89aSdanielk1977 static int selectReadsTable(Select *p, Schema *pSchema, int iTab){
1084d88778bSdanielk1977   int i;
1094d88778bSdanielk1977   struct SrcList_item *pItem;
1104d88778bSdanielk1977   if( p->pSrc==0 ) return 0;
1114d88778bSdanielk1977   for(i=0, pItem=p->pSrc->a; i<p->pSrc->nSrc; i++, pItem++){
1124d88778bSdanielk1977     if( pItem->pSelect ){
113da184236Sdanielk1977       if( selectReadsTable(pItem->pSelect, pSchema, iTab) ) return 1;
1144d88778bSdanielk1977     }else{
115da184236Sdanielk1977       if( pItem->pTab->pSchema==pSchema && pItem->pTab->tnum==iTab ) return 1;
1164d88778bSdanielk1977     }
1174d88778bSdanielk1977   }
1184d88778bSdanielk1977   return 0;
1194d88778bSdanielk1977 }
1203d1bfeaaSdanielk1977 
1213d1bfeaaSdanielk1977 /*
1221ccde15dSdrh ** This routine is call to handle SQL of the following forms:
123cce7d176Sdrh **
124cce7d176Sdrh **    insert into TABLE (IDLIST) values(EXPRLIST)
1251ccde15dSdrh **    insert into TABLE (IDLIST) select
126cce7d176Sdrh **
1271ccde15dSdrh ** The IDLIST following the table name is always optional.  If omitted,
1281ccde15dSdrh ** then a list of all columns for the table is substituted.  The IDLIST
129967e8b73Sdrh ** appears in the pColumn parameter.  pColumn is NULL if IDLIST is omitted.
1301ccde15dSdrh **
1311ccde15dSdrh ** The pList parameter holds EXPRLIST in the first form of the INSERT
1321ccde15dSdrh ** statement above, and pSelect is NULL.  For the second form, pList is
1331ccde15dSdrh ** NULL and pSelect is a pointer to the select statement used to generate
1341ccde15dSdrh ** data for the insert.
135142e30dfSdrh **
136142e30dfSdrh ** The code generated follows one of three templates.  For a simple
137142e30dfSdrh ** select with data coming from a VALUES clause, the code executes
138142e30dfSdrh ** once straight down through.  The template looks like this:
139142e30dfSdrh **
140142e30dfSdrh **         open write cursor to <table> and its indices
141142e30dfSdrh **         puts VALUES clause expressions onto the stack
142142e30dfSdrh **         write the resulting record into <table>
143142e30dfSdrh **         cleanup
144142e30dfSdrh **
145142e30dfSdrh ** If the statement is of the form
146142e30dfSdrh **
147142e30dfSdrh **   INSERT INTO <table> SELECT ...
148142e30dfSdrh **
149142e30dfSdrh ** And the SELECT clause does not read from <table> at any time, then
150142e30dfSdrh ** the generated code follows this template:
151142e30dfSdrh **
152142e30dfSdrh **         goto B
153142e30dfSdrh **      A: setup for the SELECT
154142e30dfSdrh **         loop over the tables in the SELECT
155142e30dfSdrh **           gosub C
156142e30dfSdrh **         end loop
157142e30dfSdrh **         cleanup after the SELECT
158142e30dfSdrh **         goto D
159142e30dfSdrh **      B: open write cursor to <table> and its indices
160142e30dfSdrh **         goto A
161142e30dfSdrh **      C: insert the select result into <table>
162142e30dfSdrh **         return
163142e30dfSdrh **      D: cleanup
164142e30dfSdrh **
165142e30dfSdrh ** The third template is used if the insert statement takes its
166142e30dfSdrh ** values from a SELECT but the data is being inserted into a table
167142e30dfSdrh ** that is also read as part of the SELECT.  In the third form,
168142e30dfSdrh ** we have to use a intermediate table to store the results of
169142e30dfSdrh ** the select.  The template is like this:
170142e30dfSdrh **
171142e30dfSdrh **         goto B
172142e30dfSdrh **      A: setup for the SELECT
173142e30dfSdrh **         loop over the tables in the SELECT
174142e30dfSdrh **           gosub C
175142e30dfSdrh **         end loop
176142e30dfSdrh **         cleanup after the SELECT
177142e30dfSdrh **         goto D
178142e30dfSdrh **      C: insert the select result into the intermediate table
179142e30dfSdrh **         return
180142e30dfSdrh **      B: open a cursor to an intermediate table
181142e30dfSdrh **         goto A
182142e30dfSdrh **      D: open write cursor to <table> and its indices
183142e30dfSdrh **         loop over the intermediate table
184142e30dfSdrh **           transfer values form intermediate table into <table>
185142e30dfSdrh **         end the loop
186142e30dfSdrh **         cleanup
187cce7d176Sdrh */
1884adee20fSdanielk1977 void sqlite3Insert(
189cce7d176Sdrh   Parse *pParse,        /* Parser context */
190113088ecSdrh   SrcList *pTabList,    /* Name of table into which we are inserting */
191cce7d176Sdrh   ExprList *pList,      /* List of values to be inserted */
1925974a30fSdrh   Select *pSelect,      /* A SELECT statement to use as the data source */
1939cfcf5d4Sdrh   IdList *pColumn,      /* Column names corresponding to IDLIST. */
1949cfcf5d4Sdrh   int onError           /* How to handle constraint errors */
195cce7d176Sdrh ){
1965974a30fSdrh   Table *pTab;          /* The table to insert into */
197113088ecSdrh   char *zTab;           /* Name of the table into which we are inserting */
198e22a334bSdrh   const char *zDb;      /* Name of the database holding this table */
1995974a30fSdrh   int i, j, idx;        /* Loop counters */
2005974a30fSdrh   Vdbe *v;              /* Generate code into this virtual machine */
2015974a30fSdrh   Index *pIdx;          /* For looping over indices of the table */
202967e8b73Sdrh   int nColumn;          /* Number of columns in the data */
203cfe9a69fSdanielk1977   int base = 0;         /* VDBE Cursor number for pTab */
204cfe9a69fSdanielk1977   int iCont=0,iBreak=0; /* Beginning and end of the loop over srcTab */
2059bb575fdSdrh   sqlite3 *db;          /* The main database structure */
2064a32431cSdrh   int keyColumn = -1;   /* Column that is the INTEGER PRIMARY KEY */
2070ca3e24bSdrh   int endOfLoop;        /* Label for the end of the insertion loop */
2084d88778bSdanielk1977   int useTempTable = 0; /* Store SELECT results in intermediate table */
209cfe9a69fSdanielk1977   int srcTab = 0;       /* Data comes from this temporary cursor if >=0 */
210cfe9a69fSdanielk1977   int iSelectLoop = 0;  /* Address of code that implements the SELECT */
211cfe9a69fSdanielk1977   int iCleanup = 0;     /* Address of the cleanup code */
212cfe9a69fSdanielk1977   int iInsertBlock = 0; /* Address of the subroutine used to insert data */
213cfe9a69fSdanielk1977   int iCntMem = 0;      /* Memory cell used for the row counter */
214798da52cSdrh   int newIdx = -1;      /* Cursor for the NEW table */
2152958a4e6Sdrh   Db *pDb;              /* The database containing table being inserted into */
2162958a4e6Sdrh   int counterMem = 0;   /* Memory cell holding AUTOINCREMENT counter */
217da184236Sdanielk1977   int iDb;
218cce7d176Sdrh 
219798da52cSdrh #ifndef SQLITE_OMIT_TRIGGER
220798da52cSdrh   int isView;                 /* True if attempting to insert into a view */
221dca76841Sdrh   int triggers_exist = 0;     /* True if there are FOR EACH ROW triggers */
222798da52cSdrh #endif
223c3f9bad2Sdanielk1977 
224f3388144Sdrh #ifndef SQLITE_OMIT_AUTOINCREMENT
225f3388144Sdrh   int counterRowid;     /* Memory cell holding rowid of autoinc counter */
226f3388144Sdrh #endif
227f3388144Sdrh 
228*6f7adc8aSdrh   if( pParse->nErr || sqlite3ThreadDataReadOnly()->mallocFailed ){
229*6f7adc8aSdrh     goto insert_cleanup;
230*6f7adc8aSdrh   }
231ecdc7530Sdrh   db = pParse->db;
232daffd0e5Sdrh 
2331ccde15dSdrh   /* Locate the table into which we will be inserting new information.
2341ccde15dSdrh   */
235113088ecSdrh   assert( pTabList->nSrc==1 );
236113088ecSdrh   zTab = pTabList->a[0].zName;
237daffd0e5Sdrh   if( zTab==0 ) goto insert_cleanup;
2384adee20fSdanielk1977   pTab = sqlite3SrcListLookup(pParse, pTabList);
239c3f9bad2Sdanielk1977   if( pTab==0 ){
240c3f9bad2Sdanielk1977     goto insert_cleanup;
241c3f9bad2Sdanielk1977   }
242da184236Sdanielk1977   iDb = sqlite3SchemaToIndex(db, pTab->pSchema);
243da184236Sdanielk1977   assert( iDb<db->nDb );
244da184236Sdanielk1977   pDb = &db->aDb[iDb];
2452958a4e6Sdrh   zDb = pDb->zName;
2464adee20fSdanielk1977   if( sqlite3AuthCheck(pParse, SQLITE_INSERT, pTab->zName, 0, zDb) ){
2471962bda7Sdrh     goto insert_cleanup;
2481962bda7Sdrh   }
249c3f9bad2Sdanielk1977 
250b7f9164eSdrh   /* Figure out if we have any triggers and if the table being
251b7f9164eSdrh   ** inserted into is a view
252b7f9164eSdrh   */
253b7f9164eSdrh #ifndef SQLITE_OMIT_TRIGGER
254dca76841Sdrh   triggers_exist = sqlite3TriggersExist(pParse, pTab, TK_INSERT, 0);
255b7f9164eSdrh   isView = pTab->pSelect!=0;
256b7f9164eSdrh #else
257dca76841Sdrh # define triggers_exist 0
258b7f9164eSdrh # define isView 0
259b7f9164eSdrh #endif
260b7f9164eSdrh #ifdef SQLITE_OMIT_VIEW
261b7f9164eSdrh # undef isView
262b7f9164eSdrh # define isView 0
263b7f9164eSdrh #endif
264b7f9164eSdrh 
265c3f9bad2Sdanielk1977   /* Ensure that:
266c3f9bad2Sdanielk1977   *  (a) the table is not read-only,
267c3f9bad2Sdanielk1977   *  (b) that if it is a view then ON INSERT triggers exist
268c3f9bad2Sdanielk1977   */
269dca76841Sdrh   if( sqlite3IsReadOnly(pParse, pTab, triggers_exist) ){
270c3f9bad2Sdanielk1977     goto insert_cleanup;
271c3f9bad2Sdanielk1977   }
272a76b5dfcSdrh   if( pTab==0 ) goto insert_cleanup;
2731ccde15dSdrh 
274f573c99bSdrh   /* If pTab is really a view, make sure it has been initialized.
275f573c99bSdrh   */
2764adee20fSdanielk1977   if( isView && sqlite3ViewGetColumnNames(pParse, pTab) ){
277f573c99bSdrh     goto insert_cleanup;
278f573c99bSdrh   }
279f573c99bSdrh 
2801ccde15dSdrh   /* Allocate a VDBE
2811ccde15dSdrh   */
2824adee20fSdanielk1977   v = sqlite3GetVdbe(pParse);
2835974a30fSdrh   if( v==0 ) goto insert_cleanup;
2844794f735Sdrh   if( pParse->nested==0 ) sqlite3VdbeCountChanges(v);
285da184236Sdanielk1977   sqlite3BeginWriteOperation(pParse, pSelect || triggers_exist, iDb);
2861ccde15dSdrh 
287c3f9bad2Sdanielk1977   /* if there are row triggers, allocate a temp table for new.* references. */
288dca76841Sdrh   if( triggers_exist ){
289c3f9bad2Sdanielk1977     newIdx = pParse->nTab++;
290f29ce559Sdanielk1977   }
291c3f9bad2Sdanielk1977 
2922958a4e6Sdrh #ifndef SQLITE_OMIT_AUTOINCREMENT
2932958a4e6Sdrh   /* If this is an AUTOINCREMENT table, look up the sequence number in the
294f3388144Sdrh   ** sqlite_sequence table and store it in memory cell counterMem.  Also
295f3388144Sdrh   ** remember the rowid of the sqlite_sequence table entry in memory cell
296f3388144Sdrh   ** counterRowid.
2972958a4e6Sdrh   */
2982958a4e6Sdrh   if( pTab->autoInc ){
299f3388144Sdrh     int iCur = pParse->nTab;
300f3388144Sdrh     int base = sqlite3VdbeCurrentAddr(v);
301f3388144Sdrh     counterRowid = pParse->nMem++;
302f3388144Sdrh     counterMem = pParse->nMem++;
303c00da105Sdanielk1977     sqlite3OpenTable(pParse, iCur, iDb, pDb->pSchema->pSeqTab, OP_OpenRead);
304f3388144Sdrh     sqlite3VdbeAddOp(v, OP_Rewind, iCur, base+13);
305f3388144Sdrh     sqlite3VdbeAddOp(v, OP_Column, iCur, 0);
306f3388144Sdrh     sqlite3VdbeOp3(v, OP_String8, 0, 0, pTab->zName, 0);
3078a51256cSdrh     sqlite3VdbeAddOp(v, OP_Ne, 0x100, base+12);
308f0863fe5Sdrh     sqlite3VdbeAddOp(v, OP_Rowid, iCur, 0);
309f3388144Sdrh     sqlite3VdbeAddOp(v, OP_MemStore, counterRowid, 1);
310f3388144Sdrh     sqlite3VdbeAddOp(v, OP_Column, iCur, 1);
311f3388144Sdrh     sqlite3VdbeAddOp(v, OP_MemStore, counterMem, 1);
312f3388144Sdrh     sqlite3VdbeAddOp(v, OP_Goto, 0, base+13);
313f3388144Sdrh     sqlite3VdbeAddOp(v, OP_Next, iCur, base+4);
314f3388144Sdrh     sqlite3VdbeAddOp(v, OP_Close, iCur, 0);
3152958a4e6Sdrh   }
3162958a4e6Sdrh #endif /* SQLITE_OMIT_AUTOINCREMENT */
3172958a4e6Sdrh 
3181ccde15dSdrh   /* Figure out how many columns of data are supplied.  If the data
319142e30dfSdrh   ** is coming from a SELECT statement, then this step also generates
320142e30dfSdrh   ** all the code to implement the SELECT statement and invoke a subroutine
321142e30dfSdrh   ** to process each row of the result. (Template 2.) If the SELECT
322142e30dfSdrh   ** statement uses the the table that is being inserted into, then the
323142e30dfSdrh   ** subroutine is also coded here.  That subroutine stores the SELECT
324142e30dfSdrh   ** results in a temporary table. (Template 3.)
3251ccde15dSdrh   */
3265974a30fSdrh   if( pSelect ){
327142e30dfSdrh     /* Data is coming from a SELECT.  Generate code to implement that SELECT
328142e30dfSdrh     */
329142e30dfSdrh     int rc, iInitCode;
3304adee20fSdanielk1977     iInitCode = sqlite3VdbeAddOp(v, OP_Goto, 0, 0);
3314adee20fSdanielk1977     iSelectLoop = sqlite3VdbeCurrentAddr(v);
3324adee20fSdanielk1977     iInsertBlock = sqlite3VdbeMakeLabel(v);
333b3bce662Sdanielk1977 
334b3bce662Sdanielk1977     /* Resolve the expressions in the SELECT statement and execute it. */
335b3bce662Sdanielk1977     rc = sqlite3Select(pParse, pSelect, SRT_Subroutine, iInsertBlock,0,0,0,0);
336*6f7adc8aSdrh     if( rc || pParse->nErr || sqlite3ThreadDataReadOnly()->mallocFailed ){
337*6f7adc8aSdrh       goto insert_cleanup;
338*6f7adc8aSdrh     }
339b3bce662Sdanielk1977 
3404adee20fSdanielk1977     iCleanup = sqlite3VdbeMakeLabel(v);
3414adee20fSdanielk1977     sqlite3VdbeAddOp(v, OP_Goto, 0, iCleanup);
3425974a30fSdrh     assert( pSelect->pEList );
343967e8b73Sdrh     nColumn = pSelect->pEList->nExpr;
344142e30dfSdrh 
345142e30dfSdrh     /* Set useTempTable to TRUE if the result of the SELECT statement
346142e30dfSdrh     ** should be written into a temporary table.  Set to FALSE if each
347142e30dfSdrh     ** row of the SELECT can be written directly into the result table.
348048c530cSdrh     **
349048c530cSdrh     ** A temp table must be used if the table being updated is also one
350048c530cSdrh     ** of the tables being read by the SELECT statement.  Also use a
351048c530cSdrh     ** temp table in the case of row triggers.
352142e30dfSdrh     */
353da184236Sdanielk1977     if( triggers_exist || selectReadsTable(pSelect,pTab->pSchema,pTab->tnum) ){
354048c530cSdrh       useTempTable = 1;
355048c530cSdrh     }
356142e30dfSdrh 
357142e30dfSdrh     if( useTempTable ){
358142e30dfSdrh       /* Generate the subroutine that SELECT calls to process each row of
359142e30dfSdrh       ** the result.  Store the result in a temporary table
360142e30dfSdrh       */
361142e30dfSdrh       srcTab = pParse->nTab++;
3624adee20fSdanielk1977       sqlite3VdbeResolveLabel(v, iInsertBlock);
3634adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_MakeRecord, nColumn, 0);
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 ){
63615007a99Sdrh     sqlite3VdbeAddOp(v, OP_MemIncr, 1, iCntMem);
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);
684c00da105Sdanielk1977     sqlite3OpenTable(pParse, iCur, iDb, pDb->pSchema->pSeqTab, OP_OpenWrite);
685f3388144Sdrh     sqlite3VdbeAddOp(v, OP_MemLoad, counterRowid, 0);
686f3388144Sdrh     sqlite3VdbeAddOp(v, OP_NotNull, -1, base+7);
687f3388144Sdrh     sqlite3VdbeAddOp(v, OP_Pop, 1, 0);
688f0863fe5Sdrh     sqlite3VdbeAddOp(v, OP_NewRowid, iCur, 0);
689f3388144Sdrh     sqlite3VdbeOp3(v, OP_String8, 0, 0, pTab->zName, 0);
690f3388144Sdrh     sqlite3VdbeAddOp(v, OP_MemLoad, counterMem, 0);
691f3388144Sdrh     sqlite3VdbeAddOp(v, OP_MakeRecord, 2, 0);
692f0863fe5Sdrh     sqlite3VdbeAddOp(v, OP_Insert, iCur, 0);
693f3388144Sdrh     sqlite3VdbeAddOp(v, OP_Close, iCur, 0);
6942958a4e6Sdrh   }
6952958a4e6Sdrh #endif
6962958a4e6Sdrh 
6971bee3d7bSdrh   /*
698e7de6f25Sdanielk1977   ** Return the number of rows inserted. If this routine is
699e7de6f25Sdanielk1977   ** generating code because of a call to sqlite3NestedParse(), do not
700e7de6f25Sdanielk1977   ** invoke the callback function.
7011bee3d7bSdrh   */
702cc6bd383Sdanielk1977   if( db->flags & SQLITE_CountRows && pParse->nested==0 && !pParse->trigStack ){
7034adee20fSdanielk1977     sqlite3VdbeAddOp(v, OP_MemLoad, iCntMem, 0);
7044adee20fSdanielk1977     sqlite3VdbeAddOp(v, OP_Callback, 1, 0);
70522322fd4Sdanielk1977     sqlite3VdbeSetNumCols(v, 1);
7063cf86063Sdanielk1977     sqlite3VdbeSetColName(v, 0, "rows inserted", P3_STATIC);
7071bee3d7bSdrh   }
708cce7d176Sdrh 
709cce7d176Sdrh insert_cleanup:
7104adee20fSdanielk1977   sqlite3SrcListDelete(pTabList);
711d5d56523Sdanielk1977   sqlite3ExprListDelete(pList);
712d5d56523Sdanielk1977   sqlite3SelectDelete(pSelect);
7134adee20fSdanielk1977   sqlite3IdListDelete(pColumn);
714cce7d176Sdrh }
7159cfcf5d4Sdrh 
7169cfcf5d4Sdrh /*
7179cfcf5d4Sdrh ** Generate code to do a constraint check prior to an INSERT or an UPDATE.
7189cfcf5d4Sdrh **
7199cfcf5d4Sdrh ** When this routine is called, the stack contains (from bottom to top)
7200ca3e24bSdrh ** the following values:
7210ca3e24bSdrh **
722f0863fe5Sdrh **    1.  The rowid of the row to be updated before the update.  This
723b419a926Sdrh **        value is omitted unless we are doing an UPDATE that involves a
724b419a926Sdrh **        change to the record number.
7250ca3e24bSdrh **
726f0863fe5Sdrh **    2.  The rowid of the row after the update.
7270ca3e24bSdrh **
7280ca3e24bSdrh **    3.  The data in the first column of the entry after the update.
7290ca3e24bSdrh **
7300ca3e24bSdrh **    i.  Data from middle columns...
7310ca3e24bSdrh **
7320ca3e24bSdrh **    N.  The data in the last column of the entry after the update.
7330ca3e24bSdrh **
734f0863fe5Sdrh ** The old rowid shown as entry (1) above is omitted unless both isUpdate
735f0863fe5Sdrh ** and rowidChng are 1.  isUpdate is true for UPDATEs and false for
736f0863fe5Sdrh ** INSERTs and rowidChng is true if the record number is being changed.
7370ca3e24bSdrh **
7380ca3e24bSdrh ** The code generated by this routine pushes additional entries onto
7390ca3e24bSdrh ** the stack which are the keys for new index entries for the new record.
7400ca3e24bSdrh ** The order of index keys is the same as the order of the indices on
7410ca3e24bSdrh ** the pTable->pIndex list.  A key is only created for index i if
7420ca3e24bSdrh ** aIdxUsed!=0 and aIdxUsed[i]!=0.
7439cfcf5d4Sdrh **
7449cfcf5d4Sdrh ** This routine also generates code to check constraints.  NOT NULL,
7459cfcf5d4Sdrh ** CHECK, and UNIQUE constraints are all checked.  If a constraint fails,
7461c92853dSdrh ** then the appropriate action is performed.  There are five possible
7471c92853dSdrh ** actions: ROLLBACK, ABORT, FAIL, REPLACE, and IGNORE.
7489cfcf5d4Sdrh **
7499cfcf5d4Sdrh **  Constraint type  Action       What Happens
7509cfcf5d4Sdrh **  ---------------  ----------   ----------------------------------------
7511c92853dSdrh **  any              ROLLBACK     The current transaction is rolled back and
75224b03fd0Sdanielk1977 **                                sqlite3_exec() returns immediately with a
7539cfcf5d4Sdrh **                                return code of SQLITE_CONSTRAINT.
7549cfcf5d4Sdrh **
7551c92853dSdrh **  any              ABORT        Back out changes from the current command
7561c92853dSdrh **                                only (do not do a complete rollback) then
75724b03fd0Sdanielk1977 **                                cause sqlite3_exec() to return immediately
7581c92853dSdrh **                                with SQLITE_CONSTRAINT.
7591c92853dSdrh **
7601c92853dSdrh **  any              FAIL         Sqlite_exec() returns immediately with a
7611c92853dSdrh **                                return code of SQLITE_CONSTRAINT.  The
7621c92853dSdrh **                                transaction is not rolled back and any
7631c92853dSdrh **                                prior changes are retained.
7641c92853dSdrh **
7659cfcf5d4Sdrh **  any              IGNORE       The record number and data is popped from
7669cfcf5d4Sdrh **                                the stack and there is an immediate jump
7679cfcf5d4Sdrh **                                to label ignoreDest.
7689cfcf5d4Sdrh **
7699cfcf5d4Sdrh **  NOT NULL         REPLACE      The NULL value is replace by the default
7709cfcf5d4Sdrh **                                value for that column.  If the default value
7719cfcf5d4Sdrh **                                is NULL, the action is the same as ABORT.
7729cfcf5d4Sdrh **
7739cfcf5d4Sdrh **  UNIQUE           REPLACE      The other row that conflicts with the row
7749cfcf5d4Sdrh **                                being inserted is removed.
7759cfcf5d4Sdrh **
7769cfcf5d4Sdrh **  CHECK            REPLACE      Illegal.  The results in an exception.
7779cfcf5d4Sdrh **
7781c92853dSdrh ** Which action to take is determined by the overrideError parameter.
7791c92853dSdrh ** Or if overrideError==OE_Default, then the pParse->onError parameter
7801c92853dSdrh ** is used.  Or if pParse->onError==OE_Default then the onError value
7811c92853dSdrh ** for the constraint is used.
7829cfcf5d4Sdrh **
783aaab5725Sdrh ** The calling routine must open a read/write cursor for pTab with
7849cfcf5d4Sdrh ** cursor number "base".  All indices of pTab must also have open
7859cfcf5d4Sdrh ** read/write cursors with cursor number base+i for the i-th cursor.
7869cfcf5d4Sdrh ** Except, if there is no possibility of a REPLACE action then
7879cfcf5d4Sdrh ** cursors do not need to be open for indices where aIdxUsed[i]==0.
7889cfcf5d4Sdrh **
7899cfcf5d4Sdrh ** If the isUpdate flag is true, it means that the "base" cursor is
7909cfcf5d4Sdrh ** initially pointing to an entry that is being updated.  The isUpdate
7919cfcf5d4Sdrh ** flag causes extra code to be generated so that the "base" cursor
7929cfcf5d4Sdrh ** is still pointing at the same entry after the routine returns.
7939cfcf5d4Sdrh ** Without the isUpdate flag, the "base" cursor might be moved.
7949cfcf5d4Sdrh */
7954adee20fSdanielk1977 void sqlite3GenerateConstraintChecks(
7969cfcf5d4Sdrh   Parse *pParse,      /* The parser context */
7979cfcf5d4Sdrh   Table *pTab,        /* the table into which we are inserting */
7989cfcf5d4Sdrh   int base,           /* Index of a read/write cursor pointing at pTab */
7999cfcf5d4Sdrh   char *aIdxUsed,     /* Which indices are used.  NULL means all are used */
800f0863fe5Sdrh   int rowidChng,      /* True if the record number will change */
801b419a926Sdrh   int isUpdate,       /* True for UPDATE, False for INSERT */
8029cfcf5d4Sdrh   int overrideError,  /* Override onError to this if not OE_Default */
803b419a926Sdrh   int ignoreDest      /* Jump to this label on an OE_Ignore resolution */
8049cfcf5d4Sdrh ){
8059cfcf5d4Sdrh   int i;
8069cfcf5d4Sdrh   Vdbe *v;
8079cfcf5d4Sdrh   int nCol;
8089cfcf5d4Sdrh   int onError;
8099cfcf5d4Sdrh   int addr;
8109cfcf5d4Sdrh   int extra;
8110ca3e24bSdrh   int iCur;
8120ca3e24bSdrh   Index *pIdx;
8130ca3e24bSdrh   int seenReplace = 0;
814cfe9a69fSdanielk1977   int jumpInst1=0, jumpInst2;
815f0863fe5Sdrh   int hasTwoRowids = (isUpdate && rowidChng);
8169cfcf5d4Sdrh 
8174adee20fSdanielk1977   v = sqlite3GetVdbe(pParse);
8189cfcf5d4Sdrh   assert( v!=0 );
819417be79cSdrh   assert( pTab->pSelect==0 );  /* This table is not a VIEW */
8209cfcf5d4Sdrh   nCol = pTab->nCol;
8219cfcf5d4Sdrh 
8229cfcf5d4Sdrh   /* Test all NOT NULL constraints.
8239cfcf5d4Sdrh   */
8249cfcf5d4Sdrh   for(i=0; i<nCol; i++){
8250ca3e24bSdrh     if( i==pTab->iPKey ){
8260ca3e24bSdrh       continue;
8270ca3e24bSdrh     }
8289cfcf5d4Sdrh     onError = pTab->aCol[i].notNull;
8290ca3e24bSdrh     if( onError==OE_None ) continue;
8309cfcf5d4Sdrh     if( overrideError!=OE_Default ){
8319cfcf5d4Sdrh       onError = overrideError;
832a996e477Sdrh     }else if( onError==OE_Default ){
833a996e477Sdrh       onError = OE_Abort;
8349cfcf5d4Sdrh     }
8357977a17fSdanielk1977     if( onError==OE_Replace && pTab->aCol[i].pDflt==0 ){
8369cfcf5d4Sdrh       onError = OE_Abort;
8379cfcf5d4Sdrh     }
8384adee20fSdanielk1977     sqlite3VdbeAddOp(v, OP_Dup, nCol-1-i, 1);
8394adee20fSdanielk1977     addr = sqlite3VdbeAddOp(v, OP_NotNull, 1, 0);
840b84f96f8Sdanielk1977     assert( onError==OE_Rollback || onError==OE_Abort || onError==OE_Fail
841b84f96f8Sdanielk1977         || onError==OE_Ignore || onError==OE_Replace );
8429cfcf5d4Sdrh     switch( onError ){
8431c92853dSdrh       case OE_Rollback:
8441c92853dSdrh       case OE_Abort:
8451c92853dSdrh       case OE_Fail: {
846483750baSdrh         char *zMsg = 0;
8474adee20fSdanielk1977         sqlite3VdbeAddOp(v, OP_Halt, SQLITE_CONSTRAINT, onError);
8484adee20fSdanielk1977         sqlite3SetString(&zMsg, pTab->zName, ".", pTab->aCol[i].zName,
84941743984Sdrh                         " may not be NULL", (char*)0);
8504adee20fSdanielk1977         sqlite3VdbeChangeP3(v, -1, zMsg, P3_DYNAMIC);
8519cfcf5d4Sdrh         break;
8529cfcf5d4Sdrh       }
8539cfcf5d4Sdrh       case OE_Ignore: {
854f0863fe5Sdrh         sqlite3VdbeAddOp(v, OP_Pop, nCol+1+hasTwoRowids, 0);
8554adee20fSdanielk1977         sqlite3VdbeAddOp(v, OP_Goto, 0, ignoreDest);
8569cfcf5d4Sdrh         break;
8579cfcf5d4Sdrh       }
8589cfcf5d4Sdrh       case OE_Replace: {
8597977a17fSdanielk1977         sqlite3ExprCode(pParse, pTab->aCol[i].pDflt);
8604adee20fSdanielk1977         sqlite3VdbeAddOp(v, OP_Push, nCol-i, 0);
8619cfcf5d4Sdrh         break;
8629cfcf5d4Sdrh       }
8639cfcf5d4Sdrh     }
864d654be80Sdrh     sqlite3VdbeJumpHere(v, addr);
8659cfcf5d4Sdrh   }
8669cfcf5d4Sdrh 
8679cfcf5d4Sdrh   /* Test all CHECK constraints
8689cfcf5d4Sdrh   */
869ffe07b2dSdrh #ifndef SQLITE_OMIT_CHECK
8700cd2d4c9Sdrh   if( pTab->pCheck && (pParse->db->flags & SQLITE_IgnoreChecks)==0 ){
871ffe07b2dSdrh     int allOk = sqlite3VdbeMakeLabel(v);
872ffe07b2dSdrh     assert( pParse->ckOffset==0 );
873ffe07b2dSdrh     pParse->ckOffset = nCol;
8746275b88bSdrh     sqlite3ExprIfTrue(pParse, pTab->pCheck, allOk, 1);
875ffe07b2dSdrh     assert( pParse->ckOffset==nCol );
876ffe07b2dSdrh     pParse->ckOffset = 0;
877ffe07b2dSdrh     sqlite3VdbeAddOp(v, OP_Halt, SQLITE_CONSTRAINT, OE_Abort);
878ffe07b2dSdrh     sqlite3VdbeResolveLabel(v, allOk);
879ffe07b2dSdrh   }
880ffe07b2dSdrh #endif /* !defined(SQLITE_OMIT_CHECK) */
8819cfcf5d4Sdrh 
8820bd1f4eaSdrh   /* If we have an INTEGER PRIMARY KEY, make sure the primary key
8830bd1f4eaSdrh   ** of the new record does not previously exist.  Except, if this
8840bd1f4eaSdrh   ** is an UPDATE and the primary key is not changing, that is OK.
8859cfcf5d4Sdrh   */
886f0863fe5Sdrh   if( rowidChng ){
8870ca3e24bSdrh     onError = pTab->keyConf;
8880ca3e24bSdrh     if( overrideError!=OE_Default ){
8890ca3e24bSdrh       onError = overrideError;
890a996e477Sdrh     }else if( onError==OE_Default ){
891a996e477Sdrh       onError = OE_Abort;
8920ca3e24bSdrh     }
893a0217ba7Sdrh 
89479b0c956Sdrh     if( isUpdate ){
8954adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_Dup, nCol+1, 1);
8964adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_Dup, nCol+1, 1);
8974adee20fSdanielk1977       jumpInst1 = sqlite3VdbeAddOp(v, OP_Eq, 0, 0);
89879b0c956Sdrh     }
8994adee20fSdanielk1977     sqlite3VdbeAddOp(v, OP_Dup, nCol, 1);
9004adee20fSdanielk1977     jumpInst2 = sqlite3VdbeAddOp(v, OP_NotExists, base, 0);
9010ca3e24bSdrh     switch( onError ){
902a0217ba7Sdrh       default: {
903a0217ba7Sdrh         onError = OE_Abort;
904a0217ba7Sdrh         /* Fall thru into the next case */
905a0217ba7Sdrh       }
9061c92853dSdrh       case OE_Rollback:
9071c92853dSdrh       case OE_Abort:
9081c92853dSdrh       case OE_Fail: {
9094adee20fSdanielk1977         sqlite3VdbeOp3(v, OP_Halt, SQLITE_CONSTRAINT, onError,
910701a0aebSdrh                          "PRIMARY KEY must be unique", P3_STATIC);
9110ca3e24bSdrh         break;
9120ca3e24bSdrh       }
9135383ae5cSdrh       case OE_Replace: {
9144adee20fSdanielk1977         sqlite3GenerateRowIndexDelete(pParse->db, v, pTab, base, 0);
9155383ae5cSdrh         if( isUpdate ){
916f0863fe5Sdrh           sqlite3VdbeAddOp(v, OP_Dup, nCol+hasTwoRowids, 1);
9177cf6e4deSdrh           sqlite3VdbeAddOp(v, OP_MoveGe, base, 0);
9185383ae5cSdrh         }
9195383ae5cSdrh         seenReplace = 1;
9205383ae5cSdrh         break;
9215383ae5cSdrh       }
9220ca3e24bSdrh       case OE_Ignore: {
9235383ae5cSdrh         assert( seenReplace==0 );
924f0863fe5Sdrh         sqlite3VdbeAddOp(v, OP_Pop, nCol+1+hasTwoRowids, 0);
9254adee20fSdanielk1977         sqlite3VdbeAddOp(v, OP_Goto, 0, ignoreDest);
9260ca3e24bSdrh         break;
9270ca3e24bSdrh       }
9280ca3e24bSdrh     }
929d654be80Sdrh     sqlite3VdbeJumpHere(v, jumpInst2);
930f5905aa7Sdrh     if( isUpdate ){
931d654be80Sdrh       sqlite3VdbeJumpHere(v, jumpInst1);
9324adee20fSdanielk1977       sqlite3VdbeAddOp(v, OP_Dup, nCol+1, 1);
9337cf6e4deSdrh       sqlite3VdbeAddOp(v, OP_MoveGe, base, 0);
9340ca3e24bSdrh     }
9350ca3e24bSdrh   }
9360bd1f4eaSdrh 
9370bd1f4eaSdrh   /* Test all UNIQUE constraints by creating entries for each UNIQUE
9380bd1f4eaSdrh   ** index and making sure that duplicate entries do not already exist.
9390bd1f4eaSdrh   ** Add the new records to the indices as we go.
9400bd1f4eaSdrh   */
941b2fe7d8cSdrh   extra = -1;
942b2fe7d8cSdrh   for(iCur=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, iCur++){
943b2fe7d8cSdrh     if( aIdxUsed && aIdxUsed[iCur]==0 ) continue;  /* Skip unused indices */
9449cfcf5d4Sdrh     extra++;
945b2fe7d8cSdrh 
946b2fe7d8cSdrh     /* Create a key for accessing the index entry */
9474adee20fSdanielk1977     sqlite3VdbeAddOp(v, OP_Dup, nCol+extra, 1);
9489cfcf5d4Sdrh     for(i=0; i<pIdx->nColumn; i++){
9499cfcf5d4Sdrh       int idx = pIdx->aiColumn[i];
9509cfcf5d4Sdrh       if( idx==pTab->iPKey ){
9514adee20fSdanielk1977         sqlite3VdbeAddOp(v, OP_Dup, i+extra+nCol+1, 1);
9529cfcf5d4Sdrh       }else{
9534adee20fSdanielk1977         sqlite3VdbeAddOp(v, OP_Dup, i+extra+nCol-idx, 1);
9549cfcf5d4Sdrh       }
9559cfcf5d4Sdrh     }
9567f057c91Sdrh     jumpInst1 = sqlite3VdbeAddOp(v, OP_MakeIdxRec, pIdx->nColumn, 0);
957a37cdde0Sdanielk1977     sqlite3IndexAffinityStr(v, pIdx);
958b2fe7d8cSdrh 
959b2fe7d8cSdrh     /* Find out what action to take in case there is an indexing conflict */
9609cfcf5d4Sdrh     onError = pIdx->onError;
961b2fe7d8cSdrh     if( onError==OE_None ) continue;  /* pIdx is not a UNIQUE index */
9629cfcf5d4Sdrh     if( overrideError!=OE_Default ){
9639cfcf5d4Sdrh       onError = overrideError;
964a996e477Sdrh     }else if( onError==OE_Default ){
965a996e477Sdrh       onError = OE_Abort;
9669cfcf5d4Sdrh     }
9675383ae5cSdrh     if( seenReplace ){
9685383ae5cSdrh       if( onError==OE_Ignore ) onError = OE_Replace;
9695383ae5cSdrh       else if( onError==OE_Fail ) onError = OE_Abort;
9705383ae5cSdrh     }
9715383ae5cSdrh 
972b2fe7d8cSdrh 
973b2fe7d8cSdrh     /* Check to see if the new index entry will be unique */
974f0863fe5Sdrh     sqlite3VdbeAddOp(v, OP_Dup, extra+nCol+1+hasTwoRowids, 1);
9754adee20fSdanielk1977     jumpInst2 = sqlite3VdbeAddOp(v, OP_IsUnique, base+iCur+1, 0);
976b2fe7d8cSdrh 
977b2fe7d8cSdrh     /* Generate code that executes if the new index entry is not unique */
978b84f96f8Sdanielk1977     assert( onError==OE_Rollback || onError==OE_Abort || onError==OE_Fail
979b84f96f8Sdanielk1977         || onError==OE_Ignore || onError==OE_Replace );
9809cfcf5d4Sdrh     switch( onError ){
9811c92853dSdrh       case OE_Rollback:
9821c92853dSdrh       case OE_Abort:
9831c92853dSdrh       case OE_Fail: {
98437ed48edSdrh         int j, n1, n2;
98537ed48edSdrh         char zErrMsg[200];
98637ed48edSdrh         strcpy(zErrMsg, pIdx->nColumn>1 ? "columns " : "column ");
98737ed48edSdrh         n1 = strlen(zErrMsg);
98837ed48edSdrh         for(j=0; j<pIdx->nColumn && n1<sizeof(zErrMsg)-30; j++){
98937ed48edSdrh           char *zCol = pTab->aCol[pIdx->aiColumn[j]].zName;
99037ed48edSdrh           n2 = strlen(zCol);
99137ed48edSdrh           if( j>0 ){
99237ed48edSdrh             strcpy(&zErrMsg[n1], ", ");
99337ed48edSdrh             n1 += 2;
99437ed48edSdrh           }
99537ed48edSdrh           if( n1+n2>sizeof(zErrMsg)-30 ){
99637ed48edSdrh             strcpy(&zErrMsg[n1], "...");
99737ed48edSdrh             n1 += 3;
99837ed48edSdrh             break;
99937ed48edSdrh           }else{
100037ed48edSdrh             strcpy(&zErrMsg[n1], zCol);
100137ed48edSdrh             n1 += n2;
100237ed48edSdrh           }
100337ed48edSdrh         }
100437ed48edSdrh         strcpy(&zErrMsg[n1],
100537ed48edSdrh             pIdx->nColumn>1 ? " are not unique" : " is not unique");
10064adee20fSdanielk1977         sqlite3VdbeOp3(v, OP_Halt, SQLITE_CONSTRAINT, onError, zErrMsg, 0);
10079cfcf5d4Sdrh         break;
10089cfcf5d4Sdrh       }
10099cfcf5d4Sdrh       case OE_Ignore: {
10100ca3e24bSdrh         assert( seenReplace==0 );
1011f0863fe5Sdrh         sqlite3VdbeAddOp(v, OP_Pop, nCol+extra+3+hasTwoRowids, 0);
10124adee20fSdanielk1977         sqlite3VdbeAddOp(v, OP_Goto, 0, ignoreDest);
10139cfcf5d4Sdrh         break;
10149cfcf5d4Sdrh       }
10159cfcf5d4Sdrh       case OE_Replace: {
10164adee20fSdanielk1977         sqlite3GenerateRowDelete(pParse->db, v, pTab, base, 0);
10179cfcf5d4Sdrh         if( isUpdate ){
1018f0863fe5Sdrh           sqlite3VdbeAddOp(v, OP_Dup, nCol+extra+1+hasTwoRowids, 1);
10197cf6e4deSdrh           sqlite3VdbeAddOp(v, OP_MoveGe, base, 0);
10209cfcf5d4Sdrh         }
10210ca3e24bSdrh         seenReplace = 1;
10229cfcf5d4Sdrh         break;
10239cfcf5d4Sdrh       }
10249cfcf5d4Sdrh     }
10250bd1f4eaSdrh #if NULL_DISTINCT_FOR_UNIQUE
1026d654be80Sdrh     sqlite3VdbeJumpHere(v, jumpInst1);
10270bd1f4eaSdrh #endif
1028d654be80Sdrh     sqlite3VdbeJumpHere(v, jumpInst2);
10299cfcf5d4Sdrh   }
10309cfcf5d4Sdrh }
10310ca3e24bSdrh 
10320ca3e24bSdrh /*
10330ca3e24bSdrh ** This routine generates code to finish the INSERT or UPDATE operation
10344adee20fSdanielk1977 ** that was started by a prior call to sqlite3GenerateConstraintChecks.
10350ca3e24bSdrh ** The stack must contain keys for all active indices followed by data
1036f0863fe5Sdrh ** and the rowid for the new entry.  This routine creates the new
10370ca3e24bSdrh ** entries in all indices and in the main table.
10380ca3e24bSdrh **
1039b419a926Sdrh ** The arguments to this routine should be the same as the first six
10404adee20fSdanielk1977 ** arguments to sqlite3GenerateConstraintChecks.
10410ca3e24bSdrh */
10424adee20fSdanielk1977 void sqlite3CompleteInsertion(
10430ca3e24bSdrh   Parse *pParse,      /* The parser context */
10440ca3e24bSdrh   Table *pTab,        /* the table into which we are inserting */
10450ca3e24bSdrh   int base,           /* Index of a read/write cursor pointing at pTab */
10460ca3e24bSdrh   char *aIdxUsed,     /* Which indices are used.  NULL means all are used */
1047f0863fe5Sdrh   int rowidChng,      /* True if the record number will change */
104870ce3f0cSdrh   int isUpdate,       /* True for UPDATE, False for INSERT */
104970ce3f0cSdrh   int newIdx          /* Index of NEW table for triggers.  -1 if none */
10500ca3e24bSdrh ){
10510ca3e24bSdrh   int i;
10520ca3e24bSdrh   Vdbe *v;
10530ca3e24bSdrh   int nIdx;
10540ca3e24bSdrh   Index *pIdx;
1055b28af71aSdanielk1977   int pik_flags;
10560ca3e24bSdrh 
10574adee20fSdanielk1977   v = sqlite3GetVdbe(pParse);
10580ca3e24bSdrh   assert( v!=0 );
1059417be79cSdrh   assert( pTab->pSelect==0 );  /* This table is not a VIEW */
10600ca3e24bSdrh   for(nIdx=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, nIdx++){}
10610ca3e24bSdrh   for(i=nIdx-1; i>=0; i--){
10620ca3e24bSdrh     if( aIdxUsed && aIdxUsed[i]==0 ) continue;
1063f0863fe5Sdrh     sqlite3VdbeAddOp(v, OP_IdxInsert, base+i+1, 0);
10640ca3e24bSdrh   }
10654adee20fSdanielk1977   sqlite3VdbeAddOp(v, OP_MakeRecord, pTab->nCol, 0);
1066a37cdde0Sdanielk1977   sqlite3TableAffinityStr(v, pTab);
1067b84f96f8Sdanielk1977 #ifndef SQLITE_OMIT_TRIGGER
106870ce3f0cSdrh   if( newIdx>=0 ){
10694adee20fSdanielk1977     sqlite3VdbeAddOp(v, OP_Dup, 1, 0);
10704adee20fSdanielk1977     sqlite3VdbeAddOp(v, OP_Dup, 1, 0);
1071f0863fe5Sdrh     sqlite3VdbeAddOp(v, OP_Insert, newIdx, 0);
107270ce3f0cSdrh   }
1073b84f96f8Sdanielk1977 #endif
10744794f735Sdrh   if( pParse->nested ){
10754794f735Sdrh     pik_flags = 0;
10764794f735Sdrh   }else{
107794eb6a14Sdanielk1977     pik_flags = OPFLAG_NCHANGE;
107894eb6a14Sdanielk1977     pik_flags |= (isUpdate?OPFLAG_ISUPDATE:OPFLAG_LASTROWID);
10794794f735Sdrh   }
1080f0863fe5Sdrh   sqlite3VdbeAddOp(v, OP_Insert, base, pik_flags);
108194eb6a14Sdanielk1977   if( !pParse->nested ){
108294eb6a14Sdanielk1977     sqlite3VdbeChangeP3(v, -1, pTab->zName, P3_STATIC);
108394eb6a14Sdanielk1977   }
1084b28af71aSdanielk1977 
1085f0863fe5Sdrh   if( isUpdate && rowidChng ){
10864adee20fSdanielk1977     sqlite3VdbeAddOp(v, OP_Pop, 1, 0);
10870ca3e24bSdrh   }
10880ca3e24bSdrh }
1089cd44690aSdrh 
1090cd44690aSdrh /*
1091290c1948Sdrh ** Generate code that will open cursors for a table and for all
1092cd44690aSdrh ** indices of that table.  The "base" parameter is the cursor number used
1093cd44690aSdrh ** for the table.  Indices are opened on subsequent cursors.
1094cd44690aSdrh */
1095290c1948Sdrh void sqlite3OpenTableAndIndices(
1096290c1948Sdrh   Parse *pParse,   /* Parsing context */
1097290c1948Sdrh   Table *pTab,     /* Table to be opened */
1098290c1948Sdrh   int base,        /* Cursor number assigned to the table */
1099290c1948Sdrh   int op           /* OP_OpenRead or OP_OpenWrite */
1100290c1948Sdrh ){
1101cd44690aSdrh   int i;
1102da184236Sdanielk1977   int iDb = sqlite3SchemaToIndex(pParse->db, pTab->pSchema);
1103cd44690aSdrh   Index *pIdx;
11044adee20fSdanielk1977   Vdbe *v = sqlite3GetVdbe(pParse);
1105cd44690aSdrh   assert( v!=0 );
1106c00da105Sdanielk1977   sqlite3OpenTable(pParse, base, iDb, pTab, op);
1107cd44690aSdrh   for(i=1, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, i++){
1108b3bf556eSdanielk1977     KeyInfo *pKey = sqlite3IndexKeyinfo(pParse, pIdx);
1109da184236Sdanielk1977     assert( pIdx->pSchema==pTab->pSchema );
1110da184236Sdanielk1977     sqlite3VdbeAddOp(v, OP_Integer, iDb, 0);
111129dda4aeSdrh     VdbeComment((v, "# %s", pIdx->zName));
1112b3bf556eSdanielk1977     sqlite3VdbeOp3(v, op, i+base, pIdx->tnum, (char*)pKey, P3_KEYINFO_HANDOFF);
1113cd44690aSdrh   }
1114290c1948Sdrh   if( pParse->nTab<=base+i ){
1115290c1948Sdrh     pParse->nTab = base+i;
1116290c1948Sdrh   }
1117cd44690aSdrh }
1118