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*8bf8dc92Sdrh ** $Id: insert.c,v 1.85 2003/05/17 17:35:12 drh Exp $ 16cce7d176Sdrh */ 17cce7d176Sdrh #include "sqliteInt.h" 18cce7d176Sdrh 19cce7d176Sdrh /* 201ccde15dSdrh ** This routine is call to handle SQL of the following forms: 21cce7d176Sdrh ** 22cce7d176Sdrh ** insert into TABLE (IDLIST) values(EXPRLIST) 231ccde15dSdrh ** insert into TABLE (IDLIST) select 24cce7d176Sdrh ** 251ccde15dSdrh ** The IDLIST following the table name is always optional. If omitted, 261ccde15dSdrh ** then a list of all columns for the table is substituted. The IDLIST 27967e8b73Sdrh ** appears in the pColumn parameter. pColumn is NULL if IDLIST is omitted. 281ccde15dSdrh ** 291ccde15dSdrh ** The pList parameter holds EXPRLIST in the first form of the INSERT 301ccde15dSdrh ** statement above, and pSelect is NULL. For the second form, pList is 311ccde15dSdrh ** NULL and pSelect is a pointer to the select statement used to generate 321ccde15dSdrh ** data for the insert. 33142e30dfSdrh ** 34142e30dfSdrh ** The code generated follows one of three templates. For a simple 35142e30dfSdrh ** select with data coming from a VALUES clause, the code executes 36142e30dfSdrh ** once straight down through. The template looks like this: 37142e30dfSdrh ** 38142e30dfSdrh ** open write cursor to <table> and its indices 39142e30dfSdrh ** puts VALUES clause expressions onto the stack 40142e30dfSdrh ** write the resulting record into <table> 41142e30dfSdrh ** cleanup 42142e30dfSdrh ** 43142e30dfSdrh ** If the statement is of the form 44142e30dfSdrh ** 45142e30dfSdrh ** INSERT INTO <table> SELECT ... 46142e30dfSdrh ** 47142e30dfSdrh ** And the SELECT clause does not read from <table> at any time, then 48142e30dfSdrh ** the generated code follows this template: 49142e30dfSdrh ** 50142e30dfSdrh ** goto B 51142e30dfSdrh ** A: setup for the SELECT 52142e30dfSdrh ** loop over the tables in the SELECT 53142e30dfSdrh ** gosub C 54142e30dfSdrh ** end loop 55142e30dfSdrh ** cleanup after the SELECT 56142e30dfSdrh ** goto D 57142e30dfSdrh ** B: open write cursor to <table> and its indices 58142e30dfSdrh ** goto A 59142e30dfSdrh ** C: insert the select result into <table> 60142e30dfSdrh ** return 61142e30dfSdrh ** D: cleanup 62142e30dfSdrh ** 63142e30dfSdrh ** The third template is used if the insert statement takes its 64142e30dfSdrh ** values from a SELECT but the data is being inserted into a table 65142e30dfSdrh ** that is also read as part of the SELECT. In the third form, 66142e30dfSdrh ** we have to use a intermediate table to store the results of 67142e30dfSdrh ** the select. The template is like this: 68142e30dfSdrh ** 69142e30dfSdrh ** goto B 70142e30dfSdrh ** A: setup for the SELECT 71142e30dfSdrh ** loop over the tables in the SELECT 72142e30dfSdrh ** gosub C 73142e30dfSdrh ** end loop 74142e30dfSdrh ** cleanup after the SELECT 75142e30dfSdrh ** goto D 76142e30dfSdrh ** C: insert the select result into the intermediate table 77142e30dfSdrh ** return 78142e30dfSdrh ** B: open a cursor to an intermediate table 79142e30dfSdrh ** goto A 80142e30dfSdrh ** D: open write cursor to <table> and its indices 81142e30dfSdrh ** loop over the intermediate table 82142e30dfSdrh ** transfer values form intermediate table into <table> 83142e30dfSdrh ** end the loop 84142e30dfSdrh ** cleanup 85cce7d176Sdrh */ 86cce7d176Sdrh void sqliteInsert( 87cce7d176Sdrh Parse *pParse, /* Parser context */ 88113088ecSdrh SrcList *pTabList, /* Name of table into which we are inserting */ 89cce7d176Sdrh ExprList *pList, /* List of values to be inserted */ 905974a30fSdrh Select *pSelect, /* A SELECT statement to use as the data source */ 919cfcf5d4Sdrh IdList *pColumn, /* Column names corresponding to IDLIST. */ 929cfcf5d4Sdrh int onError /* How to handle constraint errors */ 93cce7d176Sdrh ){ 945974a30fSdrh Table *pTab; /* The table to insert into */ 95113088ecSdrh char *zTab; /* Name of the table into which we are inserting */ 96e22a334bSdrh const char *zDb; /* Name of the database holding this table */ 975974a30fSdrh int i, j, idx; /* Loop counters */ 985974a30fSdrh Vdbe *v; /* Generate code into this virtual machine */ 995974a30fSdrh Index *pIdx; /* For looping over indices of the table */ 100967e8b73Sdrh int nColumn; /* Number of columns in the data */ 1016a3ea0e6Sdrh int base; /* VDBE Cursor number for pTab */ 1025974a30fSdrh int iCont, iBreak; /* Beginning and end of the loop over srcTab */ 103ecdc7530Sdrh sqlite *db; /* The main database structure */ 1044a32431cSdrh int keyColumn = -1; /* Column that is the INTEGER PRIMARY KEY */ 1050ca3e24bSdrh int endOfLoop; /* Label for the end of the insertion loop */ 106142e30dfSdrh int useTempTable; /* Store SELECT results in intermediate table */ 107142e30dfSdrh int srcTab; /* Data comes from this temporary cursor if >=0 */ 108142e30dfSdrh int iSelectLoop; /* Address of code that implements the SELECT */ 109142e30dfSdrh int iCleanup; /* Address of the cleanup code */ 110142e30dfSdrh int iInsertBlock; /* Address of the subroutine used to insert data */ 111142e30dfSdrh int iCntMem; /* Memory cell used for the row counter */ 1125cf590c1Sdrh int isView; /* True if attempting to insert into a view */ 113cce7d176Sdrh 114c3f9bad2Sdanielk1977 int row_triggers_exist = 0; /* True if there are FOR EACH ROW triggers */ 11570ce3f0cSdrh int before_triggers; /* True if there are BEFORE triggers */ 11670ce3f0cSdrh int after_triggers; /* True if there are AFTER triggers */ 11770ce3f0cSdrh int newIdx = -1; /* Cursor for the NEW table */ 118c3f9bad2Sdanielk1977 119daffd0e5Sdrh if( pParse->nErr || sqlite_malloc_failed ) goto insert_cleanup; 120ecdc7530Sdrh db = pParse->db; 121daffd0e5Sdrh 1221ccde15dSdrh /* Locate the table into which we will be inserting new information. 1231ccde15dSdrh */ 124113088ecSdrh assert( pTabList->nSrc==1 ); 125113088ecSdrh zTab = pTabList->a[0].zName; 126daffd0e5Sdrh if( zTab==0 ) goto insert_cleanup; 127812d7a21Sdrh pTab = sqliteSrcListLookup(pParse, pTabList); 128c3f9bad2Sdanielk1977 if( pTab==0 ){ 129c3f9bad2Sdanielk1977 goto insert_cleanup; 130c3f9bad2Sdanielk1977 } 131e22a334bSdrh assert( pTab->iDb<db->nDb ); 132e22a334bSdrh zDb = db->aDb[pTab->iDb].zName; 133e22a334bSdrh if( sqliteAuthCheck(pParse, SQLITE_INSERT, pTab->zName, 0, zDb) ){ 1341962bda7Sdrh goto insert_cleanup; 1351962bda7Sdrh } 136c3f9bad2Sdanielk1977 137c3f9bad2Sdanielk1977 /* Ensure that: 138c3f9bad2Sdanielk1977 * (a) the table is not read-only, 139c3f9bad2Sdanielk1977 * (b) that if it is a view then ON INSERT triggers exist 140c3f9bad2Sdanielk1977 */ 14170ce3f0cSdrh before_triggers = sqliteTriggersExist(pParse, pTab->pTrigger, TK_INSERT, 14270ce3f0cSdrh TK_BEFORE, TK_ROW, 0); 14370ce3f0cSdrh after_triggers = sqliteTriggersExist(pParse, pTab->pTrigger, TK_INSERT, 14470ce3f0cSdrh TK_AFTER, TK_ROW, 0); 14570ce3f0cSdrh row_triggers_exist = before_triggers || after_triggers; 1465cf590c1Sdrh isView = pTab->pSelect!=0; 1475cf590c1Sdrh if( sqliteIsReadOnly(pParse, pTab, before_triggers) ){ 148c3f9bad2Sdanielk1977 goto insert_cleanup; 149c3f9bad2Sdanielk1977 } 150a76b5dfcSdrh if( pTab==0 ) goto insert_cleanup; 1511ccde15dSdrh 152f573c99bSdrh /* If pTab is really a view, make sure it has been initialized. 153f573c99bSdrh */ 1545cf590c1Sdrh if( isView && sqliteViewGetColumnNames(pParse, pTab) ){ 155f573c99bSdrh goto insert_cleanup; 156f573c99bSdrh } 157f573c99bSdrh 1581ccde15dSdrh /* Allocate a VDBE 1591ccde15dSdrh */ 160d8bc7086Sdrh v = sqliteGetVdbe(pParse); 1615974a30fSdrh if( v==0 ) goto insert_cleanup; 162*8bf8dc92Sdrh sqliteBeginWriteOperation(pParse, pSelect || row_triggers_exist, pTab->iDb); 1631ccde15dSdrh 164c3f9bad2Sdanielk1977 /* if there are row triggers, allocate a temp table for new.* references. */ 165f29ce559Sdanielk1977 if( row_triggers_exist ){ 166c3f9bad2Sdanielk1977 newIdx = pParse->nTab++; 167f29ce559Sdanielk1977 } 168c3f9bad2Sdanielk1977 1691ccde15dSdrh /* Figure out how many columns of data are supplied. If the data 170142e30dfSdrh ** is coming from a SELECT statement, then this step also generates 171142e30dfSdrh ** all the code to implement the SELECT statement and invoke a subroutine 172142e30dfSdrh ** to process each row of the result. (Template 2.) If the SELECT 173142e30dfSdrh ** statement uses the the table that is being inserted into, then the 174142e30dfSdrh ** subroutine is also coded here. That subroutine stores the SELECT 175142e30dfSdrh ** results in a temporary table. (Template 3.) 1761ccde15dSdrh */ 1775974a30fSdrh if( pSelect ){ 178142e30dfSdrh /* Data is coming from a SELECT. Generate code to implement that SELECT 179142e30dfSdrh */ 180142e30dfSdrh int rc, iInitCode; 181142e30dfSdrh iInitCode = sqliteVdbeAddOp(v, OP_Goto, 0, 0); 182142e30dfSdrh iSelectLoop = sqliteVdbeCurrentAddr(v); 183142e30dfSdrh iInsertBlock = sqliteVdbeMakeLabel(v); 184142e30dfSdrh rc = sqliteSelect(pParse, pSelect, SRT_Subroutine, iInsertBlock, 0,0,0); 185daffd0e5Sdrh if( rc || pParse->nErr || sqlite_malloc_failed ) goto insert_cleanup; 186142e30dfSdrh iCleanup = sqliteVdbeMakeLabel(v); 187142e30dfSdrh sqliteVdbeAddOp(v, OP_Goto, 0, iCleanup); 1885974a30fSdrh assert( pSelect->pEList ); 189967e8b73Sdrh nColumn = pSelect->pEList->nExpr; 190142e30dfSdrh 191142e30dfSdrh /* Set useTempTable to TRUE if the result of the SELECT statement 192142e30dfSdrh ** should be written into a temporary table. Set to FALSE if each 193142e30dfSdrh ** row of the SELECT can be written directly into the result table. 194048c530cSdrh ** 195048c530cSdrh ** A temp table must be used if the table being updated is also one 196048c530cSdrh ** of the tables being read by the SELECT statement. Also use a 197048c530cSdrh ** temp table in the case of row triggers. 198142e30dfSdrh */ 199048c530cSdrh if( row_triggers_exist ){ 200048c530cSdrh useTempTable = 1; 201048c530cSdrh }else{ 202048c530cSdrh int addr = sqliteVdbeFindOp(v, OP_OpenRead, pTab->tnum); 203048c530cSdrh useTempTable = 0; 204048c530cSdrh if( addr>0 ){ 205048c530cSdrh VdbeOp *pOp = sqliteVdbeGetOp(v, addr-2); 206048c530cSdrh if( pOp->opcode==OP_Integer && pOp->p1==pTab->iDb ){ 207048c530cSdrh useTempTable = 1; 208048c530cSdrh } 209048c530cSdrh } 210048c530cSdrh } 211142e30dfSdrh 212142e30dfSdrh if( useTempTable ){ 213142e30dfSdrh /* Generate the subroutine that SELECT calls to process each row of 214142e30dfSdrh ** the result. Store the result in a temporary table 215142e30dfSdrh */ 216142e30dfSdrh srcTab = pParse->nTab++; 217142e30dfSdrh sqliteVdbeResolveLabel(v, iInsertBlock); 218142e30dfSdrh sqliteVdbeAddOp(v, OP_MakeRecord, nColumn, 0); 219142e30dfSdrh sqliteVdbeAddOp(v, OP_NewRecno, srcTab, 0); 220142e30dfSdrh sqliteVdbeAddOp(v, OP_Pull, 1, 0); 221142e30dfSdrh sqliteVdbeAddOp(v, OP_PutIntKey, srcTab, 0); 222142e30dfSdrh sqliteVdbeAddOp(v, OP_Return, 0, 0); 223142e30dfSdrh 224142e30dfSdrh /* The following code runs first because the GOTO at the very top 225142e30dfSdrh ** of the program jumps to it. Create the temporary table, then jump 226142e30dfSdrh ** back up and execute the SELECT code above. 227142e30dfSdrh */ 228142e30dfSdrh sqliteVdbeChangeP2(v, iInitCode, sqliteVdbeCurrentAddr(v)); 229142e30dfSdrh sqliteVdbeAddOp(v, OP_OpenTemp, srcTab, 0); 230142e30dfSdrh sqliteVdbeAddOp(v, OP_Goto, 0, iSelectLoop); 231142e30dfSdrh sqliteVdbeResolveLabel(v, iCleanup); 2325974a30fSdrh }else{ 233142e30dfSdrh sqliteVdbeChangeP2(v, iInitCode, sqliteVdbeCurrentAddr(v)); 234142e30dfSdrh } 235142e30dfSdrh }else{ 236142e30dfSdrh /* This is the case if the data for the INSERT is coming from a VALUES 237142e30dfSdrh ** clause 238142e30dfSdrh */ 239ad3cab52Sdrh SrcList dummy; 240daffd0e5Sdrh assert( pList!=0 ); 2415974a30fSdrh srcTab = -1; 242142e30dfSdrh useTempTable = 0; 2435974a30fSdrh assert( pList ); 244967e8b73Sdrh nColumn = pList->nExpr; 245ad3cab52Sdrh dummy.nSrc = 0; 246e64e7b20Sdrh for(i=0; i<nColumn; i++){ 2476a3ea0e6Sdrh if( sqliteExprResolveIds(pParse, &dummy, 0, pList->a[i].pExpr) ){ 248e64e7b20Sdrh goto insert_cleanup; 249e64e7b20Sdrh } 250b04a5d87Sdrh if( sqliteExprCheck(pParse, pList->a[i].pExpr, 0, 0) ){ 251b04a5d87Sdrh goto insert_cleanup; 252b04a5d87Sdrh } 253e64e7b20Sdrh } 2545974a30fSdrh } 2551ccde15dSdrh 2561ccde15dSdrh /* Make sure the number of columns in the source data matches the number 2571ccde15dSdrh ** of columns to be inserted into the table. 2581ccde15dSdrh */ 259967e8b73Sdrh if( pColumn==0 && nColumn!=pTab->nCol ){ 260da93d238Sdrh sqliteErrorMsg(pParse, 261da93d238Sdrh "table %S has %d columns but %d values were supplied", 262da93d238Sdrh pTabList, 0, pTab->nCol, nColumn); 263cce7d176Sdrh goto insert_cleanup; 264cce7d176Sdrh } 265967e8b73Sdrh if( pColumn!=0 && nColumn!=pColumn->nId ){ 266da93d238Sdrh sqliteErrorMsg(pParse, "%d values for %d columns", nColumn, pColumn->nId); 267cce7d176Sdrh goto insert_cleanup; 268cce7d176Sdrh } 2691ccde15dSdrh 2701ccde15dSdrh /* If the INSERT statement included an IDLIST term, then make sure 2711ccde15dSdrh ** all elements of the IDLIST really are columns of the table and 2721ccde15dSdrh ** remember the column indices. 273c8392586Sdrh ** 274c8392586Sdrh ** If the table has an INTEGER PRIMARY KEY column and that column 275c8392586Sdrh ** is named in the IDLIST, then record in the keyColumn variable 276c8392586Sdrh ** the index into IDLIST of the primary key column. keyColumn is 277c8392586Sdrh ** the index of the primary key as it appears in IDLIST, not as 278c8392586Sdrh ** is appears in the original table. (The index of the primary 279c8392586Sdrh ** key in the original table is pTab->iPKey.) 2801ccde15dSdrh */ 281967e8b73Sdrh if( pColumn ){ 282967e8b73Sdrh for(i=0; i<pColumn->nId; i++){ 283967e8b73Sdrh pColumn->a[i].idx = -1; 284cce7d176Sdrh } 285967e8b73Sdrh for(i=0; i<pColumn->nId; i++){ 286cce7d176Sdrh for(j=0; j<pTab->nCol; j++){ 287967e8b73Sdrh if( sqliteStrICmp(pColumn->a[i].zName, pTab->aCol[j].zName)==0 ){ 288967e8b73Sdrh pColumn->a[i].idx = j; 2894a32431cSdrh if( j==pTab->iPKey ){ 2909aa028daSdrh keyColumn = i; 2914a32431cSdrh } 292cce7d176Sdrh break; 293cce7d176Sdrh } 294cce7d176Sdrh } 295cce7d176Sdrh if( j>=pTab->nCol ){ 296da93d238Sdrh sqliteErrorMsg(pParse, "table %S has no column named %s", 297da93d238Sdrh pTabList, 0, pColumn->a[i].zName); 298cce7d176Sdrh pParse->nErr++; 299cce7d176Sdrh goto insert_cleanup; 300cce7d176Sdrh } 301cce7d176Sdrh } 302cce7d176Sdrh } 3031ccde15dSdrh 304aacc543eSdrh /* If there is no IDLIST term but the table has an integer primary 305c8392586Sdrh ** key, the set the keyColumn variable to the primary key column index 306c8392586Sdrh ** in the original table definition. 3074a32431cSdrh */ 3084a32431cSdrh if( pColumn==0 ){ 3094a32431cSdrh keyColumn = pTab->iPKey; 3104a32431cSdrh } 3114a32431cSdrh 312142e30dfSdrh /* Open the temp table for FOR EACH ROW triggers 313142e30dfSdrh */ 314f29ce559Sdanielk1977 if( row_triggers_exist ){ 31570ce3f0cSdrh sqliteVdbeAddOp(v, OP_OpenPseudo, newIdx, 0); 316f29ce559Sdanielk1977 } 317c3f9bad2Sdanielk1977 318c3f9bad2Sdanielk1977 /* Initialize the count of rows to be inserted 3191ccde15dSdrh */ 320142e30dfSdrh if( db->flags & SQLITE_CountRows ){ 321142e30dfSdrh iCntMem = pParse->nMem++; 322142e30dfSdrh sqliteVdbeAddOp(v, OP_Integer, 0, 0); 323142e30dfSdrh sqliteVdbeAddOp(v, OP_MemStore, iCntMem, 1); 324c3f9bad2Sdanielk1977 } 325c3f9bad2Sdanielk1977 326c3f9bad2Sdanielk1977 /* Open tables and indices if there are no row triggers */ 327c3f9bad2Sdanielk1977 if( !row_triggers_exist ){ 3285974a30fSdrh base = pParse->nTab; 329d24cc427Sdrh sqliteVdbeAddOp(v, OP_Integer, pTab->iDb, 0); 330001bbcbbSdrh sqliteVdbeAddOp(v, OP_OpenWrite, base, pTab->tnum); 33199fcd718Sdrh sqliteVdbeChangeP3(v, -1, pTab->zName, P3_STATIC); 332bed8690fSdrh for(idx=1, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, idx++){ 333d24cc427Sdrh sqliteVdbeAddOp(v, OP_Integer, pIdx->iDb, 0); 334001bbcbbSdrh sqliteVdbeAddOp(v, OP_OpenWrite, idx+base, pIdx->tnum); 33599fcd718Sdrh sqliteVdbeChangeP3(v, -1, pIdx->zName, P3_STATIC); 3365974a30fSdrh } 337832508b7Sdrh pParse->nTab += idx; 338feeb1394Sdrh } 339feeb1394Sdrh 340142e30dfSdrh /* If the data source is a temporary table, then we have to create 3411ccde15dSdrh ** a loop because there might be multiple rows of data. If the data 342142e30dfSdrh ** source is a subroutine call from the SELECT statement, then we need 343142e30dfSdrh ** to launch the SELECT statement processing. 3441ccde15dSdrh */ 345142e30dfSdrh if( useTempTable ){ 3465974a30fSdrh iBreak = sqliteVdbeMakeLabel(v); 3476b56344dSdrh sqliteVdbeAddOp(v, OP_Rewind, srcTab, iBreak); 3486b56344dSdrh iCont = sqliteVdbeCurrentAddr(v); 349142e30dfSdrh }else if( pSelect ){ 350142e30dfSdrh sqliteVdbeAddOp(v, OP_Goto, 0, iSelectLoop); 351142e30dfSdrh sqliteVdbeResolveLabel(v, iInsertBlock); 352bed8690fSdrh } 3531ccde15dSdrh 3545cf590c1Sdrh /* Run the BEFORE and INSTEAD OF triggers, if there are any 35570ce3f0cSdrh */ 3566f34903eSdanielk1977 endOfLoop = sqliteVdbeMakeLabel(v); 35770ce3f0cSdrh if( before_triggers ){ 358c3f9bad2Sdanielk1977 35970ce3f0cSdrh /* build the NEW.* reference row. Note that if there is an INTEGER 36070ce3f0cSdrh ** PRIMARY KEY into which a NULL is being inserted, that NULL will be 36170ce3f0cSdrh ** translated into a unique ID for the row. But on a BEFORE trigger, 36270ce3f0cSdrh ** we do not know what the unique ID will be (because the insert has 36370ce3f0cSdrh ** not happened yet) so we substitute a rowid of -1 36470ce3f0cSdrh */ 36570ce3f0cSdrh if( keyColumn<0 ){ 36670ce3f0cSdrh sqliteVdbeAddOp(v, OP_Integer, -1, 0); 36770ce3f0cSdrh }else if( useTempTable ){ 36870ce3f0cSdrh sqliteVdbeAddOp(v, OP_Column, srcTab, keyColumn); 36970ce3f0cSdrh }else if( pSelect ){ 37070ce3f0cSdrh sqliteVdbeAddOp(v, OP_Dup, nColumn - keyColumn - 1, 1); 37170ce3f0cSdrh }else{ 37270ce3f0cSdrh sqliteExprCode(pParse, pList->a[keyColumn].pExpr); 37370ce3f0cSdrh sqliteVdbeAddOp(v, OP_NotNull, -1, sqliteVdbeCurrentAddr(v)+3); 37470ce3f0cSdrh sqliteVdbeAddOp(v, OP_Pop, 1, 0); 37570ce3f0cSdrh sqliteVdbeAddOp(v, OP_Integer, -1, 0); 37670ce3f0cSdrh sqliteVdbeAddOp(v, OP_MustBeInt, 0, 0); 37770ce3f0cSdrh } 37870ce3f0cSdrh 37970ce3f0cSdrh /* Create the new column data 38070ce3f0cSdrh */ 381c3f9bad2Sdanielk1977 for(i=0; i<pTab->nCol; i++){ 382c3f9bad2Sdanielk1977 if( pColumn==0 ){ 383c3f9bad2Sdanielk1977 j = i; 384c3f9bad2Sdanielk1977 }else{ 385c3f9bad2Sdanielk1977 for(j=0; j<pColumn->nId; j++){ 386c3f9bad2Sdanielk1977 if( pColumn->a[j].idx==i ) break; 387c3f9bad2Sdanielk1977 } 388c3f9bad2Sdanielk1977 } 389c3f9bad2Sdanielk1977 if( pColumn && j>=pColumn->nId ){ 390c3f9bad2Sdanielk1977 sqliteVdbeAddOp(v, OP_String, 0, 0); 391c3f9bad2Sdanielk1977 sqliteVdbeChangeP3(v, -1, pTab->aCol[i].zDflt, P3_STATIC); 392142e30dfSdrh }else if( useTempTable ){ 393c3f9bad2Sdanielk1977 sqliteVdbeAddOp(v, OP_Column, srcTab, j); 394142e30dfSdrh }else if( pSelect ){ 395142e30dfSdrh sqliteVdbeAddOp(v, OP_Dup, nColumn-j-1, 1); 396c3f9bad2Sdanielk1977 }else{ 397c3f9bad2Sdanielk1977 sqliteExprCode(pParse, pList->a[j].pExpr); 398c3f9bad2Sdanielk1977 } 399c3f9bad2Sdanielk1977 } 400c3f9bad2Sdanielk1977 sqliteVdbeAddOp(v, OP_MakeRecord, pTab->nCol, 0); 401c3f9bad2Sdanielk1977 sqliteVdbeAddOp(v, OP_PutIntKey, newIdx, 0); 402c3f9bad2Sdanielk1977 4035cf590c1Sdrh /* Fire BEFORE or INSTEAD OF triggers */ 404b2fe7d8cSdrh if( sqliteCodeRowTrigger(pParse, TK_INSERT, 0, TK_BEFORE, pTab, 405b2fe7d8cSdrh newIdx, -1, onError, endOfLoop) ){ 406f29ce559Sdanielk1977 goto insert_cleanup; 407f29ce559Sdanielk1977 } 40870ce3f0cSdrh } 409c3f9bad2Sdanielk1977 41070ce3f0cSdrh /* If any triggers exists, the opening of tables and indices is deferred 41170ce3f0cSdrh ** until now. 41270ce3f0cSdrh */ 4135cf590c1Sdrh if( row_triggers_exist && !isView ){ 414c3f9bad2Sdanielk1977 base = pParse->nTab; 415d24cc427Sdrh sqliteVdbeAddOp(v, OP_Integer, pTab->iDb, 0); 416001bbcbbSdrh sqliteVdbeAddOp(v, OP_OpenWrite, base, pTab->tnum); 417c3f9bad2Sdanielk1977 sqliteVdbeChangeP3(v, -1, pTab->zName, P3_STATIC); 418c3f9bad2Sdanielk1977 for(idx=1, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, idx++){ 419d24cc427Sdrh sqliteVdbeAddOp(v, OP_Integer, pIdx->iDb, 0); 420001bbcbbSdrh sqliteVdbeAddOp(v, OP_OpenWrite, idx+base, pIdx->tnum); 421c3f9bad2Sdanielk1977 sqliteVdbeChangeP3(v, -1, pIdx->zName, P3_STATIC); 422c3f9bad2Sdanielk1977 } 423c3f9bad2Sdanielk1977 pParse->nTab += idx; 424c3f9bad2Sdanielk1977 } 425c3f9bad2Sdanielk1977 4264a32431cSdrh /* Push the record number for the new entry onto the stack. The 4274a32431cSdrh ** record number is a randomly generate integer created by NewRecno 4284a32431cSdrh ** except when the table has an INTEGER PRIMARY KEY column, in which 429b419a926Sdrh ** case the record number is the same as that column. 4301ccde15dSdrh */ 4315cf590c1Sdrh if( !isView ){ 4324a32431cSdrh if( keyColumn>=0 ){ 433142e30dfSdrh if( useTempTable ){ 4344a32431cSdrh sqliteVdbeAddOp(v, OP_Column, srcTab, keyColumn); 435142e30dfSdrh }else if( pSelect ){ 436142e30dfSdrh sqliteVdbeAddOp(v, OP_Dup, nColumn - keyColumn - 1, 1); 4374a32431cSdrh }else{ 4384a32431cSdrh sqliteExprCode(pParse, pList->a[keyColumn].pExpr); 43927a32783Sdrh } 440e1e68f49Sdrh /* If the PRIMARY KEY expression is NULL, then use OP_NewRecno 441e1e68f49Sdrh ** to generate a unique primary key value. 442e1e68f49Sdrh */ 443f5905aa7Sdrh sqliteVdbeAddOp(v, OP_NotNull, -1, sqliteVdbeCurrentAddr(v)+3); 444e1e68f49Sdrh sqliteVdbeAddOp(v, OP_Pop, 1, 0); 445e1e68f49Sdrh sqliteVdbeAddOp(v, OP_NewRecno, base, 0); 4468aff1015Sdrh sqliteVdbeAddOp(v, OP_MustBeInt, 0, 0); 4474a32431cSdrh }else{ 44899fcd718Sdrh sqliteVdbeAddOp(v, OP_NewRecno, base, 0); 4494a32431cSdrh } 4504a32431cSdrh 451aacc543eSdrh /* Push onto the stack, data for all columns of the new entry, beginning 4524a32431cSdrh ** with the first column. 4534a32431cSdrh */ 454cce7d176Sdrh for(i=0; i<pTab->nCol; i++){ 4554a32431cSdrh if( i==pTab->iPKey ){ 4564a32431cSdrh /* The value of the INTEGER PRIMARY KEY column is always a NULL. 457aacc543eSdrh ** Whenever this column is read, the record number will be substituted 458aacc543eSdrh ** in its place. So will fill this column with a NULL to avoid 459aacc543eSdrh ** taking up data space with information that will never be used. */ 4604a32431cSdrh sqliteVdbeAddOp(v, OP_String, 0, 0); 4614a32431cSdrh continue; 4624a32431cSdrh } 463967e8b73Sdrh if( pColumn==0 ){ 464cce7d176Sdrh j = i; 465cce7d176Sdrh }else{ 466967e8b73Sdrh for(j=0; j<pColumn->nId; j++){ 467967e8b73Sdrh if( pColumn->a[j].idx==i ) break; 468cce7d176Sdrh } 469cce7d176Sdrh } 470967e8b73Sdrh if( pColumn && j>=pColumn->nId ){ 47199fcd718Sdrh sqliteVdbeAddOp(v, OP_String, 0, 0); 47299fcd718Sdrh sqliteVdbeChangeP3(v, -1, pTab->aCol[i].zDflt, P3_STATIC); 473142e30dfSdrh }else if( useTempTable ){ 47424e97df9Sdrh sqliteVdbeAddOp(v, OP_Column, srcTab, j); 475142e30dfSdrh }else if( pSelect ){ 476142e30dfSdrh sqliteVdbeAddOp(v, OP_Dup, i+nColumn-j, 1); 477cce7d176Sdrh }else{ 478cce7d176Sdrh sqliteExprCode(pParse, pList->a[j].pExpr); 479cce7d176Sdrh } 480cce7d176Sdrh } 4811ccde15dSdrh 4820ca3e24bSdrh /* Generate code to check constraints and generate index keys and 4830ca3e24bSdrh ** do the insertion. 4844a32431cSdrh */ 485b419a926Sdrh sqliteGenerateConstraintChecks(pParse, pTab, base, 0,0,0,onError,endOfLoop); 48670ce3f0cSdrh sqliteCompleteInsertion(pParse, pTab, base, 0,0,0, 48770ce3f0cSdrh after_triggers ? newIdx : -1); 4885cf590c1Sdrh } 4891bee3d7bSdrh 490feeb1394Sdrh /* Update the count of rows that are inserted 4911bee3d7bSdrh */ 492142e30dfSdrh if( (db->flags & SQLITE_CountRows)!=0 ){ 493142e30dfSdrh sqliteVdbeAddOp(v, OP_MemIncr, iCntMem, 0); 4941bee3d7bSdrh } 495c3f9bad2Sdanielk1977 496c3f9bad2Sdanielk1977 if( row_triggers_exist ){ 497c3f9bad2Sdanielk1977 /* Close all tables opened */ 4985cf590c1Sdrh if( !isView ){ 499c3f9bad2Sdanielk1977 sqliteVdbeAddOp(v, OP_Close, base, 0); 500c3f9bad2Sdanielk1977 for(idx=1, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, idx++){ 501c3f9bad2Sdanielk1977 sqliteVdbeAddOp(v, OP_Close, idx+base, 0); 502c3f9bad2Sdanielk1977 } 503c3f9bad2Sdanielk1977 } 504c3f9bad2Sdanielk1977 505c3f9bad2Sdanielk1977 /* Code AFTER triggers */ 506f29ce559Sdanielk1977 if( sqliteCodeRowTrigger(pParse, TK_INSERT, 0, TK_AFTER, pTab, newIdx, -1, 5076f34903eSdanielk1977 onError, endOfLoop) ){ 508f29ce559Sdanielk1977 goto insert_cleanup; 509f29ce559Sdanielk1977 } 510c3f9bad2Sdanielk1977 } 5111bee3d7bSdrh 5121ccde15dSdrh /* The bottom of the loop, if the data source is a SELECT statement 5131ccde15dSdrh */ 5140ca3e24bSdrh sqliteVdbeResolveLabel(v, endOfLoop); 515142e30dfSdrh if( useTempTable ){ 5166b56344dSdrh sqliteVdbeAddOp(v, OP_Next, srcTab, iCont); 51799fcd718Sdrh sqliteVdbeResolveLabel(v, iBreak); 5186b56344dSdrh sqliteVdbeAddOp(v, OP_Close, srcTab, 0); 519142e30dfSdrh }else if( pSelect ){ 520142e30dfSdrh sqliteVdbeAddOp(v, OP_Pop, nColumn, 0); 521142e30dfSdrh sqliteVdbeAddOp(v, OP_Return, 0, 0); 522142e30dfSdrh sqliteVdbeResolveLabel(v, iCleanup); 5236b56344dSdrh } 524c3f9bad2Sdanielk1977 525c3f9bad2Sdanielk1977 if( !row_triggers_exist ){ 526c3f9bad2Sdanielk1977 /* Close all tables opened */ 5276b56344dSdrh sqliteVdbeAddOp(v, OP_Close, base, 0); 5286b56344dSdrh for(idx=1, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, idx++){ 5296b56344dSdrh sqliteVdbeAddOp(v, OP_Close, idx+base, 0); 530cce7d176Sdrh } 531c3f9bad2Sdanielk1977 } 532c3f9bad2Sdanielk1977 5331c92853dSdrh sqliteEndWriteOperation(pParse); 5345e00f6c7Sdrh 5351bee3d7bSdrh /* 5361bee3d7bSdrh ** Return the number of rows inserted. 5371bee3d7bSdrh */ 538142e30dfSdrh if( db->flags & SQLITE_CountRows ){ 5391bee3d7bSdrh sqliteVdbeAddOp(v, OP_ColumnName, 0, 0); 5401bee3d7bSdrh sqliteVdbeChangeP3(v, -1, "rows inserted", P3_STATIC); 541142e30dfSdrh sqliteVdbeAddOp(v, OP_MemLoad, iCntMem, 0); 5421bee3d7bSdrh sqliteVdbeAddOp(v, OP_Callback, 1, 0); 5431bee3d7bSdrh } 544cce7d176Sdrh 545cce7d176Sdrh insert_cleanup: 546113088ecSdrh sqliteSrcListDelete(pTabList); 5475974a30fSdrh if( pList ) sqliteExprListDelete(pList); 5485974a30fSdrh if( pSelect ) sqliteSelectDelete(pSelect); 549967e8b73Sdrh sqliteIdListDelete(pColumn); 550cce7d176Sdrh } 5519cfcf5d4Sdrh 5529cfcf5d4Sdrh /* 5539cfcf5d4Sdrh ** Generate code to do a constraint check prior to an INSERT or an UPDATE. 5549cfcf5d4Sdrh ** 5559cfcf5d4Sdrh ** When this routine is called, the stack contains (from bottom to top) 5560ca3e24bSdrh ** the following values: 5570ca3e24bSdrh ** 558b2fe7d8cSdrh ** 1. The recno of the row to be updated before the update. This 559b419a926Sdrh ** value is omitted unless we are doing an UPDATE that involves a 560b419a926Sdrh ** change to the record number. 5610ca3e24bSdrh ** 562b419a926Sdrh ** 2. The recno of the row after the update. 5630ca3e24bSdrh ** 5640ca3e24bSdrh ** 3. The data in the first column of the entry after the update. 5650ca3e24bSdrh ** 5660ca3e24bSdrh ** i. Data from middle columns... 5670ca3e24bSdrh ** 5680ca3e24bSdrh ** N. The data in the last column of the entry after the update. 5690ca3e24bSdrh ** 570b419a926Sdrh ** The old recno shown as entry (1) above is omitted unless both isUpdate 5711c92853dSdrh ** and recnoChng are 1. isUpdate is true for UPDATEs and false for 5721c92853dSdrh ** INSERTs and recnoChng is true if the record number is being changed. 5730ca3e24bSdrh ** 5740ca3e24bSdrh ** The code generated by this routine pushes additional entries onto 5750ca3e24bSdrh ** the stack which are the keys for new index entries for the new record. 5760ca3e24bSdrh ** The order of index keys is the same as the order of the indices on 5770ca3e24bSdrh ** the pTable->pIndex list. A key is only created for index i if 5780ca3e24bSdrh ** aIdxUsed!=0 and aIdxUsed[i]!=0. 5799cfcf5d4Sdrh ** 5809cfcf5d4Sdrh ** This routine also generates code to check constraints. NOT NULL, 5819cfcf5d4Sdrh ** CHECK, and UNIQUE constraints are all checked. If a constraint fails, 5821c92853dSdrh ** then the appropriate action is performed. There are five possible 5831c92853dSdrh ** actions: ROLLBACK, ABORT, FAIL, REPLACE, and IGNORE. 5849cfcf5d4Sdrh ** 5859cfcf5d4Sdrh ** Constraint type Action What Happens 5869cfcf5d4Sdrh ** --------------- ---------- ---------------------------------------- 5871c92853dSdrh ** any ROLLBACK The current transaction is rolled back and 5889cfcf5d4Sdrh ** sqlite_exec() returns immediately with a 5899cfcf5d4Sdrh ** return code of SQLITE_CONSTRAINT. 5909cfcf5d4Sdrh ** 5911c92853dSdrh ** any ABORT Back out changes from the current command 5921c92853dSdrh ** only (do not do a complete rollback) then 5931c92853dSdrh ** cause sqlite_exec() to return immediately 5941c92853dSdrh ** with SQLITE_CONSTRAINT. 5951c92853dSdrh ** 5961c92853dSdrh ** any FAIL Sqlite_exec() returns immediately with a 5971c92853dSdrh ** return code of SQLITE_CONSTRAINT. The 5981c92853dSdrh ** transaction is not rolled back and any 5991c92853dSdrh ** prior changes are retained. 6001c92853dSdrh ** 6019cfcf5d4Sdrh ** any IGNORE The record number and data is popped from 6029cfcf5d4Sdrh ** the stack and there is an immediate jump 6039cfcf5d4Sdrh ** to label ignoreDest. 6049cfcf5d4Sdrh ** 6059cfcf5d4Sdrh ** NOT NULL REPLACE The NULL value is replace by the default 6069cfcf5d4Sdrh ** value for that column. If the default value 6079cfcf5d4Sdrh ** is NULL, the action is the same as ABORT. 6089cfcf5d4Sdrh ** 6099cfcf5d4Sdrh ** UNIQUE REPLACE The other row that conflicts with the row 6109cfcf5d4Sdrh ** being inserted is removed. 6119cfcf5d4Sdrh ** 6129cfcf5d4Sdrh ** CHECK REPLACE Illegal. The results in an exception. 6139cfcf5d4Sdrh ** 6141c92853dSdrh ** Which action to take is determined by the overrideError parameter. 6151c92853dSdrh ** Or if overrideError==OE_Default, then the pParse->onError parameter 6161c92853dSdrh ** is used. Or if pParse->onError==OE_Default then the onError value 6171c92853dSdrh ** for the constraint is used. 6189cfcf5d4Sdrh ** 619aaab5725Sdrh ** The calling routine must open a read/write cursor for pTab with 6209cfcf5d4Sdrh ** cursor number "base". All indices of pTab must also have open 6219cfcf5d4Sdrh ** read/write cursors with cursor number base+i for the i-th cursor. 6229cfcf5d4Sdrh ** Except, if there is no possibility of a REPLACE action then 6239cfcf5d4Sdrh ** cursors do not need to be open for indices where aIdxUsed[i]==0. 6249cfcf5d4Sdrh ** 6259cfcf5d4Sdrh ** If the isUpdate flag is true, it means that the "base" cursor is 6269cfcf5d4Sdrh ** initially pointing to an entry that is being updated. The isUpdate 6279cfcf5d4Sdrh ** flag causes extra code to be generated so that the "base" cursor 6289cfcf5d4Sdrh ** is still pointing at the same entry after the routine returns. 6299cfcf5d4Sdrh ** Without the isUpdate flag, the "base" cursor might be moved. 6309cfcf5d4Sdrh */ 6319cfcf5d4Sdrh void sqliteGenerateConstraintChecks( 6329cfcf5d4Sdrh Parse *pParse, /* The parser context */ 6339cfcf5d4Sdrh Table *pTab, /* the table into which we are inserting */ 6349cfcf5d4Sdrh int base, /* Index of a read/write cursor pointing at pTab */ 6359cfcf5d4Sdrh char *aIdxUsed, /* Which indices are used. NULL means all are used */ 6360ca3e24bSdrh int recnoChng, /* True if the record number will change */ 637b419a926Sdrh int isUpdate, /* True for UPDATE, False for INSERT */ 6389cfcf5d4Sdrh int overrideError, /* Override onError to this if not OE_Default */ 639b419a926Sdrh int ignoreDest /* Jump to this label on an OE_Ignore resolution */ 6409cfcf5d4Sdrh ){ 6419cfcf5d4Sdrh int i; 6429cfcf5d4Sdrh Vdbe *v; 6439cfcf5d4Sdrh int nCol; 6449cfcf5d4Sdrh int onError; 6459cfcf5d4Sdrh int addr; 6469cfcf5d4Sdrh int extra; 6470ca3e24bSdrh int iCur; 6480ca3e24bSdrh Index *pIdx; 6490ca3e24bSdrh int seenReplace = 0; 650f5905aa7Sdrh int jumpInst1, jumpInst2; 6510ca3e24bSdrh int contAddr; 652b419a926Sdrh int hasTwoRecnos = (isUpdate && recnoChng); 6539cfcf5d4Sdrh 6549cfcf5d4Sdrh v = sqliteGetVdbe(pParse); 6559cfcf5d4Sdrh assert( v!=0 ); 656417be79cSdrh assert( pTab->pSelect==0 ); /* This table is not a VIEW */ 6579cfcf5d4Sdrh nCol = pTab->nCol; 6589cfcf5d4Sdrh 6599cfcf5d4Sdrh /* Test all NOT NULL constraints. 6609cfcf5d4Sdrh */ 6619cfcf5d4Sdrh for(i=0; i<nCol; i++){ 6620ca3e24bSdrh if( i==pTab->iPKey ){ 6630ca3e24bSdrh /* Fix me: Make sure the INTEGER PRIMARY KEY is not NULL. */ 6640ca3e24bSdrh continue; 6650ca3e24bSdrh } 6669cfcf5d4Sdrh onError = pTab->aCol[i].notNull; 6670ca3e24bSdrh if( onError==OE_None ) continue; 6689cfcf5d4Sdrh if( overrideError!=OE_Default ){ 6699cfcf5d4Sdrh onError = overrideError; 670a996e477Sdrh }else if( pParse->db->onError!=OE_Default ){ 6710d65dc0eSdrh onError = pParse->db->onError; 672a996e477Sdrh }else if( onError==OE_Default ){ 673a996e477Sdrh onError = OE_Abort; 6749cfcf5d4Sdrh } 6759cfcf5d4Sdrh if( onError==OE_Replace && pTab->aCol[i].zDflt==0 ){ 6769cfcf5d4Sdrh onError = OE_Abort; 6779cfcf5d4Sdrh } 678ef6764a1Sdrh sqliteVdbeAddOp(v, OP_Dup, nCol-1-i, 1); 679f5905aa7Sdrh addr = sqliteVdbeAddOp(v, OP_NotNull, 1, 0); 6809cfcf5d4Sdrh switch( onError ){ 6811c92853dSdrh case OE_Rollback: 6821c92853dSdrh case OE_Abort: 6831c92853dSdrh case OE_Fail: { 684483750baSdrh char *zMsg = 0; 6851c92853dSdrh sqliteVdbeAddOp(v, OP_Halt, SQLITE_CONSTRAINT, onError); 686483750baSdrh sqliteSetString(&zMsg, pTab->zName, ".", pTab->aCol[i].zName, 687483750baSdrh " may not be NULL", 0); 688483750baSdrh sqliteVdbeChangeP3(v, -1, zMsg, P3_DYNAMIC); 6899cfcf5d4Sdrh break; 6909cfcf5d4Sdrh } 6919cfcf5d4Sdrh case OE_Ignore: { 692b419a926Sdrh sqliteVdbeAddOp(v, OP_Pop, nCol+1+hasTwoRecnos, 0); 6930ca3e24bSdrh sqliteVdbeAddOp(v, OP_Goto, 0, ignoreDest); 6949cfcf5d4Sdrh break; 6959cfcf5d4Sdrh } 6969cfcf5d4Sdrh case OE_Replace: { 6979cfcf5d4Sdrh sqliteVdbeAddOp(v, OP_String, 0, 0); 6989cfcf5d4Sdrh sqliteVdbeChangeP3(v, -1, pTab->aCol[i].zDflt, P3_STATIC); 6999cfcf5d4Sdrh sqliteVdbeAddOp(v, OP_Push, nCol-i, 0); 7009cfcf5d4Sdrh break; 7019cfcf5d4Sdrh } 7020ca3e24bSdrh default: assert(0); 7039cfcf5d4Sdrh } 704ef6764a1Sdrh sqliteVdbeChangeP2(v, addr, sqliteVdbeCurrentAddr(v)); 7059cfcf5d4Sdrh } 7069cfcf5d4Sdrh 7079cfcf5d4Sdrh /* Test all CHECK constraints 7089cfcf5d4Sdrh */ 7090bd1f4eaSdrh /**** TBD ****/ 7109cfcf5d4Sdrh 7110bd1f4eaSdrh /* If we have an INTEGER PRIMARY KEY, make sure the primary key 7120bd1f4eaSdrh ** of the new record does not previously exist. Except, if this 7130bd1f4eaSdrh ** is an UPDATE and the primary key is not changing, that is OK. 7140bd1f4eaSdrh ** Also, if the conflict resolution policy is REPLACE, then we 7150bd1f4eaSdrh ** can skip this test. 7169cfcf5d4Sdrh */ 7170d65dc0eSdrh if( (recnoChng || !isUpdate) && pTab->iPKey>=0 ){ 7180ca3e24bSdrh onError = pTab->keyConf; 7190ca3e24bSdrh if( overrideError!=OE_Default ){ 7200ca3e24bSdrh onError = overrideError; 721a996e477Sdrh }else if( pParse->db->onError!=OE_Default ){ 7220d65dc0eSdrh onError = pParse->db->onError; 723a996e477Sdrh }else if( onError==OE_Default ){ 724a996e477Sdrh onError = OE_Abort; 7250ca3e24bSdrh } 7260d65dc0eSdrh if( onError!=OE_Replace ){ 72779b0c956Sdrh if( isUpdate ){ 72879b0c956Sdrh sqliteVdbeAddOp(v, OP_Dup, nCol+1, 1); 72979b0c956Sdrh sqliteVdbeAddOp(v, OP_Dup, nCol+1, 1); 730f5905aa7Sdrh jumpInst1 = sqliteVdbeAddOp(v, OP_Eq, 0, 0); 73179b0c956Sdrh } 7320d65dc0eSdrh sqliteVdbeAddOp(v, OP_Dup, nCol, 1); 733f5905aa7Sdrh jumpInst2 = sqliteVdbeAddOp(v, OP_NotExists, base, 0); 7340ca3e24bSdrh switch( onError ){ 7351c92853dSdrh case OE_Rollback: 7361c92853dSdrh case OE_Abort: 7371c92853dSdrh case OE_Fail: { 7381c92853dSdrh sqliteVdbeAddOp(v, OP_Halt, SQLITE_CONSTRAINT, onError); 739483750baSdrh sqliteVdbeChangeP3(v, -1, "PRIMARY KEY must be unique", P3_STATIC); 7400ca3e24bSdrh break; 7410ca3e24bSdrh } 7420ca3e24bSdrh case OE_Ignore: { 743b419a926Sdrh sqliteVdbeAddOp(v, OP_Pop, nCol+1+hasTwoRecnos, 0); 7440ca3e24bSdrh sqliteVdbeAddOp(v, OP_Goto, 0, ignoreDest); 7450ca3e24bSdrh break; 7460ca3e24bSdrh } 7470ca3e24bSdrh default: assert(0); 7480ca3e24bSdrh } 7490ca3e24bSdrh contAddr = sqliteVdbeCurrentAddr(v); 75079b0c956Sdrh sqliteVdbeChangeP2(v, jumpInst2, contAddr); 751f5905aa7Sdrh if( isUpdate ){ 752f5905aa7Sdrh sqliteVdbeChangeP2(v, jumpInst1, contAddr); 7530ca3e24bSdrh sqliteVdbeAddOp(v, OP_Dup, nCol+1, 1); 7540ca3e24bSdrh sqliteVdbeAddOp(v, OP_MoveTo, base, 0); 7550ca3e24bSdrh } 7560ca3e24bSdrh } 7570d65dc0eSdrh } 7580bd1f4eaSdrh 7590bd1f4eaSdrh /* Test all UNIQUE constraints by creating entries for each UNIQUE 7600bd1f4eaSdrh ** index and making sure that duplicate entries do not already exist. 7610bd1f4eaSdrh ** Add the new records to the indices as we go. 7620bd1f4eaSdrh */ 763b2fe7d8cSdrh extra = -1; 764b2fe7d8cSdrh for(iCur=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, iCur++){ 765b2fe7d8cSdrh if( aIdxUsed && aIdxUsed[iCur]==0 ) continue; /* Skip unused indices */ 7669cfcf5d4Sdrh extra++; 767b2fe7d8cSdrh 768b2fe7d8cSdrh /* Create a key for accessing the index entry */ 7699cfcf5d4Sdrh sqliteVdbeAddOp(v, OP_Dup, nCol+extra, 1); 7709cfcf5d4Sdrh for(i=0; i<pIdx->nColumn; i++){ 7719cfcf5d4Sdrh int idx = pIdx->aiColumn[i]; 7729cfcf5d4Sdrh if( idx==pTab->iPKey ){ 7730ca3e24bSdrh sqliteVdbeAddOp(v, OP_Dup, i+extra+nCol+1, 1); 7749cfcf5d4Sdrh }else{ 7750ca3e24bSdrh sqliteVdbeAddOp(v, OP_Dup, i+extra+nCol-idx, 1); 7769cfcf5d4Sdrh } 7779cfcf5d4Sdrh } 778f5905aa7Sdrh jumpInst1 = sqliteVdbeAddOp(v, OP_MakeIdxKey, pIdx->nColumn, 0); 779491791a8Sdrh if( pParse->db->file_format>=4 ) sqliteAddIdxKeyType(v, pIdx); 780b2fe7d8cSdrh 781b2fe7d8cSdrh /* Find out what action to take in case there is an indexing conflict */ 7829cfcf5d4Sdrh onError = pIdx->onError; 783b2fe7d8cSdrh if( onError==OE_None ) continue; /* pIdx is not a UNIQUE index */ 7849cfcf5d4Sdrh if( overrideError!=OE_Default ){ 7859cfcf5d4Sdrh onError = overrideError; 786a996e477Sdrh }else if( pParse->db->onError!=OE_Default ){ 7870d65dc0eSdrh onError = pParse->db->onError; 788a996e477Sdrh }else if( onError==OE_Default ){ 789a996e477Sdrh onError = OE_Abort; 7909cfcf5d4Sdrh } 791b2fe7d8cSdrh 792b2fe7d8cSdrh /* Check to see if the new index entry will be unique */ 793b419a926Sdrh sqliteVdbeAddOp(v, OP_Dup, extra+nCol+1+hasTwoRecnos, 1); 794f5905aa7Sdrh jumpInst2 = sqliteVdbeAddOp(v, OP_IsUnique, base+iCur+1, 0); 795b2fe7d8cSdrh 796b2fe7d8cSdrh /* Generate code that executes if the new index entry is not unique */ 7979cfcf5d4Sdrh switch( onError ){ 7981c92853dSdrh case OE_Rollback: 7991c92853dSdrh case OE_Abort: 8001c92853dSdrh case OE_Fail: { 8011c92853dSdrh sqliteVdbeAddOp(v, OP_Halt, SQLITE_CONSTRAINT, onError); 802483750baSdrh sqliteVdbeChangeP3(v, -1, "uniqueness constraint failed", P3_STATIC); 8039cfcf5d4Sdrh break; 8049cfcf5d4Sdrh } 8059cfcf5d4Sdrh case OE_Ignore: { 8060ca3e24bSdrh assert( seenReplace==0 ); 807fe1a1773Sdrh sqliteVdbeAddOp(v, OP_Pop, nCol+extra+3+hasTwoRecnos, 0); 8089cfcf5d4Sdrh sqliteVdbeAddOp(v, OP_Goto, 0, ignoreDest); 8099cfcf5d4Sdrh break; 8109cfcf5d4Sdrh } 8119cfcf5d4Sdrh case OE_Replace: { 81238640e15Sdrh sqliteGenerateRowDelete(pParse->db, v, pTab, base, 0); 8139cfcf5d4Sdrh if( isUpdate ){ 814b419a926Sdrh sqliteVdbeAddOp(v, OP_Dup, nCol+extra+1+hasTwoRecnos, 1); 8150ca3e24bSdrh sqliteVdbeAddOp(v, OP_MoveTo, base, 0); 8169cfcf5d4Sdrh } 8170ca3e24bSdrh seenReplace = 1; 8189cfcf5d4Sdrh break; 8199cfcf5d4Sdrh } 8200ca3e24bSdrh default: assert(0); 8219cfcf5d4Sdrh } 8229cfcf5d4Sdrh contAddr = sqliteVdbeCurrentAddr(v); 8230bd1f4eaSdrh #if NULL_DISTINCT_FOR_UNIQUE 824f5905aa7Sdrh sqliteVdbeChangeP2(v, jumpInst1, contAddr); 8250bd1f4eaSdrh #endif 826f5905aa7Sdrh sqliteVdbeChangeP2(v, jumpInst2, contAddr); 8279cfcf5d4Sdrh } 8289cfcf5d4Sdrh } 8290ca3e24bSdrh 8300ca3e24bSdrh /* 8310ca3e24bSdrh ** This routine generates code to finish the INSERT or UPDATE operation 8320ca3e24bSdrh ** that was started by a prior call to sqliteGenerateConstraintChecks. 8330ca3e24bSdrh ** The stack must contain keys for all active indices followed by data 8340ca3e24bSdrh ** and the recno for the new entry. This routine creates the new 8350ca3e24bSdrh ** entries in all indices and in the main table. 8360ca3e24bSdrh ** 837b419a926Sdrh ** The arguments to this routine should be the same as the first six 8380ca3e24bSdrh ** arguments to sqliteGenerateConstraintChecks. 8390ca3e24bSdrh */ 8400ca3e24bSdrh void sqliteCompleteInsertion( 8410ca3e24bSdrh Parse *pParse, /* The parser context */ 8420ca3e24bSdrh Table *pTab, /* the table into which we are inserting */ 8430ca3e24bSdrh int base, /* Index of a read/write cursor pointing at pTab */ 8440ca3e24bSdrh char *aIdxUsed, /* Which indices are used. NULL means all are used */ 845b419a926Sdrh int recnoChng, /* True if the record number will change */ 84670ce3f0cSdrh int isUpdate, /* True for UPDATE, False for INSERT */ 84770ce3f0cSdrh int newIdx /* Index of NEW table for triggers. -1 if none */ 8480ca3e24bSdrh ){ 8490ca3e24bSdrh int i; 8500ca3e24bSdrh Vdbe *v; 8510ca3e24bSdrh int nIdx; 8520ca3e24bSdrh Index *pIdx; 8530ca3e24bSdrh 8540ca3e24bSdrh v = sqliteGetVdbe(pParse); 8550ca3e24bSdrh assert( v!=0 ); 856417be79cSdrh assert( pTab->pSelect==0 ); /* This table is not a VIEW */ 8570ca3e24bSdrh for(nIdx=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, nIdx++){} 8580ca3e24bSdrh for(i=nIdx-1; i>=0; i--){ 8590ca3e24bSdrh if( aIdxUsed && aIdxUsed[i]==0 ) continue; 8600ca3e24bSdrh sqliteVdbeAddOp(v, OP_IdxPut, base+i+1, 0); 8610ca3e24bSdrh } 8620ca3e24bSdrh sqliteVdbeAddOp(v, OP_MakeRecord, pTab->nCol, 0); 86370ce3f0cSdrh if( newIdx>=0 ){ 86470ce3f0cSdrh sqliteVdbeAddOp(v, OP_Dup, 1, 0); 86570ce3f0cSdrh sqliteVdbeAddOp(v, OP_Dup, 1, 0); 86670ce3f0cSdrh sqliteVdbeAddOp(v, OP_PutIntKey, newIdx, 0); 86770ce3f0cSdrh } 868c3f9bad2Sdanielk1977 sqliteVdbeAddOp(v, OP_PutIntKey, base, pParse->trigStack?0:1); 869b419a926Sdrh if( isUpdate && recnoChng ){ 8700ca3e24bSdrh sqliteVdbeAddOp(v, OP_Pop, 1, 0); 8710ca3e24bSdrh } 8720ca3e24bSdrh } 873