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*7d02cb73Sdrh ** $Id: insert.c,v 1.88 2003/06/04 16:24:39 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; 1628bf8dc92Sdrh 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 ){ 296a0217ba7Sdrh if( sqliteIsRowid(pColumn->a[i].zName) ){ 297a0217ba7Sdrh keyColumn = i; 298a0217ba7Sdrh }else{ 299da93d238Sdrh sqliteErrorMsg(pParse, "table %S has no column named %s", 300da93d238Sdrh pTabList, 0, pColumn->a[i].zName); 301cce7d176Sdrh pParse->nErr++; 302cce7d176Sdrh goto insert_cleanup; 303cce7d176Sdrh } 304cce7d176Sdrh } 305cce7d176Sdrh } 306a0217ba7Sdrh } 3071ccde15dSdrh 308aacc543eSdrh /* If there is no IDLIST term but the table has an integer primary 309c8392586Sdrh ** key, the set the keyColumn variable to the primary key column index 310c8392586Sdrh ** in the original table definition. 3114a32431cSdrh */ 3124a32431cSdrh if( pColumn==0 ){ 3134a32431cSdrh keyColumn = pTab->iPKey; 3144a32431cSdrh } 3154a32431cSdrh 316142e30dfSdrh /* Open the temp table for FOR EACH ROW triggers 317142e30dfSdrh */ 318f29ce559Sdanielk1977 if( row_triggers_exist ){ 31970ce3f0cSdrh sqliteVdbeAddOp(v, OP_OpenPseudo, newIdx, 0); 320f29ce559Sdanielk1977 } 321c3f9bad2Sdanielk1977 322c3f9bad2Sdanielk1977 /* Initialize the count of rows to be inserted 3231ccde15dSdrh */ 324142e30dfSdrh if( db->flags & SQLITE_CountRows ){ 325142e30dfSdrh iCntMem = pParse->nMem++; 326142e30dfSdrh sqliteVdbeAddOp(v, OP_Integer, 0, 0); 327142e30dfSdrh sqliteVdbeAddOp(v, OP_MemStore, iCntMem, 1); 328c3f9bad2Sdanielk1977 } 329c3f9bad2Sdanielk1977 330c3f9bad2Sdanielk1977 /* Open tables and indices if there are no row triggers */ 331c3f9bad2Sdanielk1977 if( !row_triggers_exist ){ 3325974a30fSdrh base = pParse->nTab; 333d24cc427Sdrh sqliteVdbeAddOp(v, OP_Integer, pTab->iDb, 0); 334001bbcbbSdrh sqliteVdbeAddOp(v, OP_OpenWrite, base, pTab->tnum); 33599fcd718Sdrh sqliteVdbeChangeP3(v, -1, pTab->zName, P3_STATIC); 336bed8690fSdrh for(idx=1, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, idx++){ 337d24cc427Sdrh sqliteVdbeAddOp(v, OP_Integer, pIdx->iDb, 0); 338001bbcbbSdrh sqliteVdbeAddOp(v, OP_OpenWrite, idx+base, pIdx->tnum); 33999fcd718Sdrh sqliteVdbeChangeP3(v, -1, pIdx->zName, P3_STATIC); 3405974a30fSdrh } 341832508b7Sdrh pParse->nTab += idx; 342feeb1394Sdrh } 343feeb1394Sdrh 344142e30dfSdrh /* If the data source is a temporary table, then we have to create 3451ccde15dSdrh ** a loop because there might be multiple rows of data. If the data 346142e30dfSdrh ** source is a subroutine call from the SELECT statement, then we need 347142e30dfSdrh ** to launch the SELECT statement processing. 3481ccde15dSdrh */ 349142e30dfSdrh if( useTempTable ){ 3505974a30fSdrh iBreak = sqliteVdbeMakeLabel(v); 3516b56344dSdrh sqliteVdbeAddOp(v, OP_Rewind, srcTab, iBreak); 3526b56344dSdrh iCont = sqliteVdbeCurrentAddr(v); 353142e30dfSdrh }else if( pSelect ){ 354142e30dfSdrh sqliteVdbeAddOp(v, OP_Goto, 0, iSelectLoop); 355142e30dfSdrh sqliteVdbeResolveLabel(v, iInsertBlock); 356bed8690fSdrh } 3571ccde15dSdrh 3585cf590c1Sdrh /* Run the BEFORE and INSTEAD OF triggers, if there are any 35970ce3f0cSdrh */ 3606f34903eSdanielk1977 endOfLoop = sqliteVdbeMakeLabel(v); 36170ce3f0cSdrh if( before_triggers ){ 362c3f9bad2Sdanielk1977 36370ce3f0cSdrh /* build the NEW.* reference row. Note that if there is an INTEGER 36470ce3f0cSdrh ** PRIMARY KEY into which a NULL is being inserted, that NULL will be 36570ce3f0cSdrh ** translated into a unique ID for the row. But on a BEFORE trigger, 36670ce3f0cSdrh ** we do not know what the unique ID will be (because the insert has 36770ce3f0cSdrh ** not happened yet) so we substitute a rowid of -1 36870ce3f0cSdrh */ 36970ce3f0cSdrh if( keyColumn<0 ){ 37070ce3f0cSdrh sqliteVdbeAddOp(v, OP_Integer, -1, 0); 37170ce3f0cSdrh }else if( useTempTable ){ 37270ce3f0cSdrh sqliteVdbeAddOp(v, OP_Column, srcTab, keyColumn); 37370ce3f0cSdrh }else if( pSelect ){ 37470ce3f0cSdrh sqliteVdbeAddOp(v, OP_Dup, nColumn - keyColumn - 1, 1); 37570ce3f0cSdrh }else{ 37670ce3f0cSdrh sqliteExprCode(pParse, pList->a[keyColumn].pExpr); 37770ce3f0cSdrh sqliteVdbeAddOp(v, OP_NotNull, -1, sqliteVdbeCurrentAddr(v)+3); 37870ce3f0cSdrh sqliteVdbeAddOp(v, OP_Pop, 1, 0); 37970ce3f0cSdrh sqliteVdbeAddOp(v, OP_Integer, -1, 0); 38070ce3f0cSdrh sqliteVdbeAddOp(v, OP_MustBeInt, 0, 0); 38170ce3f0cSdrh } 38270ce3f0cSdrh 38370ce3f0cSdrh /* Create the new column data 38470ce3f0cSdrh */ 385c3f9bad2Sdanielk1977 for(i=0; i<pTab->nCol; i++){ 386c3f9bad2Sdanielk1977 if( pColumn==0 ){ 387c3f9bad2Sdanielk1977 j = i; 388c3f9bad2Sdanielk1977 }else{ 389c3f9bad2Sdanielk1977 for(j=0; j<pColumn->nId; j++){ 390c3f9bad2Sdanielk1977 if( pColumn->a[j].idx==i ) break; 391c3f9bad2Sdanielk1977 } 392c3f9bad2Sdanielk1977 } 393c3f9bad2Sdanielk1977 if( pColumn && j>=pColumn->nId ){ 394c3f9bad2Sdanielk1977 sqliteVdbeAddOp(v, OP_String, 0, 0); 395c3f9bad2Sdanielk1977 sqliteVdbeChangeP3(v, -1, pTab->aCol[i].zDflt, P3_STATIC); 396142e30dfSdrh }else if( useTempTable ){ 397c3f9bad2Sdanielk1977 sqliteVdbeAddOp(v, OP_Column, srcTab, j); 398142e30dfSdrh }else if( pSelect ){ 399142e30dfSdrh sqliteVdbeAddOp(v, OP_Dup, nColumn-j-1, 1); 400c3f9bad2Sdanielk1977 }else{ 401c3f9bad2Sdanielk1977 sqliteExprCode(pParse, pList->a[j].pExpr); 402c3f9bad2Sdanielk1977 } 403c3f9bad2Sdanielk1977 } 404c3f9bad2Sdanielk1977 sqliteVdbeAddOp(v, OP_MakeRecord, pTab->nCol, 0); 405c3f9bad2Sdanielk1977 sqliteVdbeAddOp(v, OP_PutIntKey, newIdx, 0); 406c3f9bad2Sdanielk1977 4075cf590c1Sdrh /* Fire BEFORE or INSTEAD OF triggers */ 408b2fe7d8cSdrh if( sqliteCodeRowTrigger(pParse, TK_INSERT, 0, TK_BEFORE, pTab, 409b2fe7d8cSdrh newIdx, -1, onError, endOfLoop) ){ 410f29ce559Sdanielk1977 goto insert_cleanup; 411f29ce559Sdanielk1977 } 41270ce3f0cSdrh } 413c3f9bad2Sdanielk1977 41470ce3f0cSdrh /* If any triggers exists, the opening of tables and indices is deferred 41570ce3f0cSdrh ** until now. 41670ce3f0cSdrh */ 4175cf590c1Sdrh if( row_triggers_exist && !isView ){ 418c3f9bad2Sdanielk1977 base = pParse->nTab; 419d24cc427Sdrh sqliteVdbeAddOp(v, OP_Integer, pTab->iDb, 0); 420001bbcbbSdrh sqliteVdbeAddOp(v, OP_OpenWrite, base, pTab->tnum); 421c3f9bad2Sdanielk1977 sqliteVdbeChangeP3(v, -1, pTab->zName, P3_STATIC); 422c3f9bad2Sdanielk1977 for(idx=1, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, idx++){ 423d24cc427Sdrh sqliteVdbeAddOp(v, OP_Integer, pIdx->iDb, 0); 424001bbcbbSdrh sqliteVdbeAddOp(v, OP_OpenWrite, idx+base, pIdx->tnum); 425c3f9bad2Sdanielk1977 sqliteVdbeChangeP3(v, -1, pIdx->zName, P3_STATIC); 426c3f9bad2Sdanielk1977 } 427c3f9bad2Sdanielk1977 pParse->nTab += idx; 428c3f9bad2Sdanielk1977 } 429c3f9bad2Sdanielk1977 4304a32431cSdrh /* Push the record number for the new entry onto the stack. The 4314a32431cSdrh ** record number is a randomly generate integer created by NewRecno 4324a32431cSdrh ** except when the table has an INTEGER PRIMARY KEY column, in which 433b419a926Sdrh ** case the record number is the same as that column. 4341ccde15dSdrh */ 4355cf590c1Sdrh if( !isView ){ 4364a32431cSdrh if( keyColumn>=0 ){ 437142e30dfSdrh if( useTempTable ){ 4384a32431cSdrh sqliteVdbeAddOp(v, OP_Column, srcTab, keyColumn); 439142e30dfSdrh }else if( pSelect ){ 440142e30dfSdrh sqliteVdbeAddOp(v, OP_Dup, nColumn - keyColumn - 1, 1); 4414a32431cSdrh }else{ 4424a32431cSdrh sqliteExprCode(pParse, pList->a[keyColumn].pExpr); 44327a32783Sdrh } 444e1e68f49Sdrh /* If the PRIMARY KEY expression is NULL, then use OP_NewRecno 445e1e68f49Sdrh ** to generate a unique primary key value. 446e1e68f49Sdrh */ 447f5905aa7Sdrh sqliteVdbeAddOp(v, OP_NotNull, -1, sqliteVdbeCurrentAddr(v)+3); 448e1e68f49Sdrh sqliteVdbeAddOp(v, OP_Pop, 1, 0); 449e1e68f49Sdrh sqliteVdbeAddOp(v, OP_NewRecno, base, 0); 4508aff1015Sdrh sqliteVdbeAddOp(v, OP_MustBeInt, 0, 0); 4514a32431cSdrh }else{ 45299fcd718Sdrh sqliteVdbeAddOp(v, OP_NewRecno, base, 0); 4534a32431cSdrh } 4544a32431cSdrh 455aacc543eSdrh /* Push onto the stack, data for all columns of the new entry, beginning 4564a32431cSdrh ** with the first column. 4574a32431cSdrh */ 458cce7d176Sdrh for(i=0; i<pTab->nCol; i++){ 4594a32431cSdrh if( i==pTab->iPKey ){ 4604a32431cSdrh /* The value of the INTEGER PRIMARY KEY column is always a NULL. 461aacc543eSdrh ** Whenever this column is read, the record number will be substituted 462aacc543eSdrh ** in its place. So will fill this column with a NULL to avoid 463aacc543eSdrh ** taking up data space with information that will never be used. */ 4644a32431cSdrh sqliteVdbeAddOp(v, OP_String, 0, 0); 4654a32431cSdrh continue; 4664a32431cSdrh } 467967e8b73Sdrh if( pColumn==0 ){ 468cce7d176Sdrh j = i; 469cce7d176Sdrh }else{ 470967e8b73Sdrh for(j=0; j<pColumn->nId; j++){ 471967e8b73Sdrh if( pColumn->a[j].idx==i ) break; 472cce7d176Sdrh } 473cce7d176Sdrh } 474967e8b73Sdrh if( pColumn && j>=pColumn->nId ){ 47599fcd718Sdrh sqliteVdbeAddOp(v, OP_String, 0, 0); 47699fcd718Sdrh sqliteVdbeChangeP3(v, -1, pTab->aCol[i].zDflt, P3_STATIC); 477142e30dfSdrh }else if( useTempTable ){ 47824e97df9Sdrh sqliteVdbeAddOp(v, OP_Column, srcTab, j); 479142e30dfSdrh }else if( pSelect ){ 480142e30dfSdrh sqliteVdbeAddOp(v, OP_Dup, i+nColumn-j, 1); 481cce7d176Sdrh }else{ 482cce7d176Sdrh sqliteExprCode(pParse, pList->a[j].pExpr); 483cce7d176Sdrh } 484cce7d176Sdrh } 4851ccde15dSdrh 4860ca3e24bSdrh /* Generate code to check constraints and generate index keys and 4870ca3e24bSdrh ** do the insertion. 4884a32431cSdrh */ 489a0217ba7Sdrh sqliteGenerateConstraintChecks(pParse, pTab, base, 0, keyColumn>=0, 490a0217ba7Sdrh 0, onError, endOfLoop); 49170ce3f0cSdrh sqliteCompleteInsertion(pParse, pTab, base, 0,0,0, 49270ce3f0cSdrh after_triggers ? newIdx : -1); 4935cf590c1Sdrh } 4941bee3d7bSdrh 495feeb1394Sdrh /* Update the count of rows that are inserted 4961bee3d7bSdrh */ 497142e30dfSdrh if( (db->flags & SQLITE_CountRows)!=0 ){ 498142e30dfSdrh sqliteVdbeAddOp(v, OP_MemIncr, iCntMem, 0); 4991bee3d7bSdrh } 500c3f9bad2Sdanielk1977 501c3f9bad2Sdanielk1977 if( row_triggers_exist ){ 502c3f9bad2Sdanielk1977 /* Close all tables opened */ 5035cf590c1Sdrh if( !isView ){ 504c3f9bad2Sdanielk1977 sqliteVdbeAddOp(v, OP_Close, base, 0); 505c3f9bad2Sdanielk1977 for(idx=1, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, idx++){ 506c3f9bad2Sdanielk1977 sqliteVdbeAddOp(v, OP_Close, idx+base, 0); 507c3f9bad2Sdanielk1977 } 508c3f9bad2Sdanielk1977 } 509c3f9bad2Sdanielk1977 510c3f9bad2Sdanielk1977 /* Code AFTER triggers */ 511f29ce559Sdanielk1977 if( sqliteCodeRowTrigger(pParse, TK_INSERT, 0, TK_AFTER, pTab, newIdx, -1, 5126f34903eSdanielk1977 onError, endOfLoop) ){ 513f29ce559Sdanielk1977 goto insert_cleanup; 514f29ce559Sdanielk1977 } 515c3f9bad2Sdanielk1977 } 5161bee3d7bSdrh 5171ccde15dSdrh /* The bottom of the loop, if the data source is a SELECT statement 5181ccde15dSdrh */ 5190ca3e24bSdrh sqliteVdbeResolveLabel(v, endOfLoop); 520142e30dfSdrh if( useTempTable ){ 5216b56344dSdrh sqliteVdbeAddOp(v, OP_Next, srcTab, iCont); 52299fcd718Sdrh sqliteVdbeResolveLabel(v, iBreak); 5236b56344dSdrh sqliteVdbeAddOp(v, OP_Close, srcTab, 0); 524142e30dfSdrh }else if( pSelect ){ 525142e30dfSdrh sqliteVdbeAddOp(v, OP_Pop, nColumn, 0); 526142e30dfSdrh sqliteVdbeAddOp(v, OP_Return, 0, 0); 527142e30dfSdrh sqliteVdbeResolveLabel(v, iCleanup); 5286b56344dSdrh } 529c3f9bad2Sdanielk1977 530c3f9bad2Sdanielk1977 if( !row_triggers_exist ){ 531c3f9bad2Sdanielk1977 /* Close all tables opened */ 5326b56344dSdrh sqliteVdbeAddOp(v, OP_Close, base, 0); 5336b56344dSdrh for(idx=1, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, idx++){ 5346b56344dSdrh sqliteVdbeAddOp(v, OP_Close, idx+base, 0); 535cce7d176Sdrh } 536c3f9bad2Sdanielk1977 } 537c3f9bad2Sdanielk1977 5381c92853dSdrh sqliteEndWriteOperation(pParse); 5395e00f6c7Sdrh 5401bee3d7bSdrh /* 5411bee3d7bSdrh ** Return the number of rows inserted. 5421bee3d7bSdrh */ 543142e30dfSdrh if( db->flags & SQLITE_CountRows ){ 5441bee3d7bSdrh sqliteVdbeAddOp(v, OP_ColumnName, 0, 0); 5451bee3d7bSdrh sqliteVdbeChangeP3(v, -1, "rows inserted", P3_STATIC); 546142e30dfSdrh sqliteVdbeAddOp(v, OP_MemLoad, iCntMem, 0); 5471bee3d7bSdrh sqliteVdbeAddOp(v, OP_Callback, 1, 0); 5481bee3d7bSdrh } 549cce7d176Sdrh 550cce7d176Sdrh insert_cleanup: 551113088ecSdrh sqliteSrcListDelete(pTabList); 5525974a30fSdrh if( pList ) sqliteExprListDelete(pList); 5535974a30fSdrh if( pSelect ) sqliteSelectDelete(pSelect); 554967e8b73Sdrh sqliteIdListDelete(pColumn); 555cce7d176Sdrh } 5569cfcf5d4Sdrh 5579cfcf5d4Sdrh /* 5589cfcf5d4Sdrh ** Generate code to do a constraint check prior to an INSERT or an UPDATE. 5599cfcf5d4Sdrh ** 5609cfcf5d4Sdrh ** When this routine is called, the stack contains (from bottom to top) 5610ca3e24bSdrh ** the following values: 5620ca3e24bSdrh ** 563b2fe7d8cSdrh ** 1. The recno of the row to be updated before the update. This 564b419a926Sdrh ** value is omitted unless we are doing an UPDATE that involves a 565b419a926Sdrh ** change to the record number. 5660ca3e24bSdrh ** 567b419a926Sdrh ** 2. The recno of the row after the update. 5680ca3e24bSdrh ** 5690ca3e24bSdrh ** 3. The data in the first column of the entry after the update. 5700ca3e24bSdrh ** 5710ca3e24bSdrh ** i. Data from middle columns... 5720ca3e24bSdrh ** 5730ca3e24bSdrh ** N. The data in the last column of the entry after the update. 5740ca3e24bSdrh ** 575b419a926Sdrh ** The old recno shown as entry (1) above is omitted unless both isUpdate 5761c92853dSdrh ** and recnoChng are 1. isUpdate is true for UPDATEs and false for 5771c92853dSdrh ** INSERTs and recnoChng is true if the record number is being changed. 5780ca3e24bSdrh ** 5790ca3e24bSdrh ** The code generated by this routine pushes additional entries onto 5800ca3e24bSdrh ** the stack which are the keys for new index entries for the new record. 5810ca3e24bSdrh ** The order of index keys is the same as the order of the indices on 5820ca3e24bSdrh ** the pTable->pIndex list. A key is only created for index i if 5830ca3e24bSdrh ** aIdxUsed!=0 and aIdxUsed[i]!=0. 5849cfcf5d4Sdrh ** 5859cfcf5d4Sdrh ** This routine also generates code to check constraints. NOT NULL, 5869cfcf5d4Sdrh ** CHECK, and UNIQUE constraints are all checked. If a constraint fails, 5871c92853dSdrh ** then the appropriate action is performed. There are five possible 5881c92853dSdrh ** actions: ROLLBACK, ABORT, FAIL, REPLACE, and IGNORE. 5899cfcf5d4Sdrh ** 5909cfcf5d4Sdrh ** Constraint type Action What Happens 5919cfcf5d4Sdrh ** --------------- ---------- ---------------------------------------- 5921c92853dSdrh ** any ROLLBACK The current transaction is rolled back and 5939cfcf5d4Sdrh ** sqlite_exec() returns immediately with a 5949cfcf5d4Sdrh ** return code of SQLITE_CONSTRAINT. 5959cfcf5d4Sdrh ** 5961c92853dSdrh ** any ABORT Back out changes from the current command 5971c92853dSdrh ** only (do not do a complete rollback) then 5981c92853dSdrh ** cause sqlite_exec() to return immediately 5991c92853dSdrh ** with SQLITE_CONSTRAINT. 6001c92853dSdrh ** 6011c92853dSdrh ** any FAIL Sqlite_exec() returns immediately with a 6021c92853dSdrh ** return code of SQLITE_CONSTRAINT. The 6031c92853dSdrh ** transaction is not rolled back and any 6041c92853dSdrh ** prior changes are retained. 6051c92853dSdrh ** 6069cfcf5d4Sdrh ** any IGNORE The record number and data is popped from 6079cfcf5d4Sdrh ** the stack and there is an immediate jump 6089cfcf5d4Sdrh ** to label ignoreDest. 6099cfcf5d4Sdrh ** 6109cfcf5d4Sdrh ** NOT NULL REPLACE The NULL value is replace by the default 6119cfcf5d4Sdrh ** value for that column. If the default value 6129cfcf5d4Sdrh ** is NULL, the action is the same as ABORT. 6139cfcf5d4Sdrh ** 6149cfcf5d4Sdrh ** UNIQUE REPLACE The other row that conflicts with the row 6159cfcf5d4Sdrh ** being inserted is removed. 6169cfcf5d4Sdrh ** 6179cfcf5d4Sdrh ** CHECK REPLACE Illegal. The results in an exception. 6189cfcf5d4Sdrh ** 6191c92853dSdrh ** Which action to take is determined by the overrideError parameter. 6201c92853dSdrh ** Or if overrideError==OE_Default, then the pParse->onError parameter 6211c92853dSdrh ** is used. Or if pParse->onError==OE_Default then the onError value 6221c92853dSdrh ** for the constraint is used. 6239cfcf5d4Sdrh ** 624aaab5725Sdrh ** The calling routine must open a read/write cursor for pTab with 6259cfcf5d4Sdrh ** cursor number "base". All indices of pTab must also have open 6269cfcf5d4Sdrh ** read/write cursors with cursor number base+i for the i-th cursor. 6279cfcf5d4Sdrh ** Except, if there is no possibility of a REPLACE action then 6289cfcf5d4Sdrh ** cursors do not need to be open for indices where aIdxUsed[i]==0. 6299cfcf5d4Sdrh ** 6309cfcf5d4Sdrh ** If the isUpdate flag is true, it means that the "base" cursor is 6319cfcf5d4Sdrh ** initially pointing to an entry that is being updated. The isUpdate 6329cfcf5d4Sdrh ** flag causes extra code to be generated so that the "base" cursor 6339cfcf5d4Sdrh ** is still pointing at the same entry after the routine returns. 6349cfcf5d4Sdrh ** Without the isUpdate flag, the "base" cursor might be moved. 6359cfcf5d4Sdrh */ 6369cfcf5d4Sdrh void sqliteGenerateConstraintChecks( 6379cfcf5d4Sdrh Parse *pParse, /* The parser context */ 6389cfcf5d4Sdrh Table *pTab, /* the table into which we are inserting */ 6399cfcf5d4Sdrh int base, /* Index of a read/write cursor pointing at pTab */ 6409cfcf5d4Sdrh char *aIdxUsed, /* Which indices are used. NULL means all are used */ 6410ca3e24bSdrh int recnoChng, /* True if the record number will change */ 642b419a926Sdrh int isUpdate, /* True for UPDATE, False for INSERT */ 6439cfcf5d4Sdrh int overrideError, /* Override onError to this if not OE_Default */ 644b419a926Sdrh int ignoreDest /* Jump to this label on an OE_Ignore resolution */ 6459cfcf5d4Sdrh ){ 6469cfcf5d4Sdrh int i; 6479cfcf5d4Sdrh Vdbe *v; 6489cfcf5d4Sdrh int nCol; 6499cfcf5d4Sdrh int onError; 6509cfcf5d4Sdrh int addr; 6519cfcf5d4Sdrh int extra; 6520ca3e24bSdrh int iCur; 6530ca3e24bSdrh Index *pIdx; 6540ca3e24bSdrh int seenReplace = 0; 655f5905aa7Sdrh int jumpInst1, jumpInst2; 6560ca3e24bSdrh int contAddr; 657b419a926Sdrh int hasTwoRecnos = (isUpdate && recnoChng); 6589cfcf5d4Sdrh 6599cfcf5d4Sdrh v = sqliteGetVdbe(pParse); 6609cfcf5d4Sdrh assert( v!=0 ); 661417be79cSdrh assert( pTab->pSelect==0 ); /* This table is not a VIEW */ 6629cfcf5d4Sdrh nCol = pTab->nCol; 6639cfcf5d4Sdrh 6649cfcf5d4Sdrh /* Test all NOT NULL constraints. 6659cfcf5d4Sdrh */ 6669cfcf5d4Sdrh for(i=0; i<nCol; i++){ 6670ca3e24bSdrh if( i==pTab->iPKey ){ 6680ca3e24bSdrh continue; 6690ca3e24bSdrh } 6709cfcf5d4Sdrh onError = pTab->aCol[i].notNull; 6710ca3e24bSdrh if( onError==OE_None ) continue; 6729cfcf5d4Sdrh if( overrideError!=OE_Default ){ 6739cfcf5d4Sdrh onError = overrideError; 674a996e477Sdrh }else if( pParse->db->onError!=OE_Default ){ 6750d65dc0eSdrh onError = pParse->db->onError; 676a996e477Sdrh }else if( onError==OE_Default ){ 677a996e477Sdrh onError = OE_Abort; 6789cfcf5d4Sdrh } 6799cfcf5d4Sdrh if( onError==OE_Replace && pTab->aCol[i].zDflt==0 ){ 6809cfcf5d4Sdrh onError = OE_Abort; 6819cfcf5d4Sdrh } 682ef6764a1Sdrh sqliteVdbeAddOp(v, OP_Dup, nCol-1-i, 1); 683f5905aa7Sdrh addr = sqliteVdbeAddOp(v, OP_NotNull, 1, 0); 6849cfcf5d4Sdrh switch( onError ){ 6851c92853dSdrh case OE_Rollback: 6861c92853dSdrh case OE_Abort: 6871c92853dSdrh case OE_Fail: { 688483750baSdrh char *zMsg = 0; 6891c92853dSdrh sqliteVdbeAddOp(v, OP_Halt, SQLITE_CONSTRAINT, onError); 690483750baSdrh sqliteSetString(&zMsg, pTab->zName, ".", pTab->aCol[i].zName, 691483750baSdrh " may not be NULL", 0); 692483750baSdrh sqliteVdbeChangeP3(v, -1, zMsg, P3_DYNAMIC); 6939cfcf5d4Sdrh break; 6949cfcf5d4Sdrh } 6959cfcf5d4Sdrh case OE_Ignore: { 696b419a926Sdrh sqliteVdbeAddOp(v, OP_Pop, nCol+1+hasTwoRecnos, 0); 6970ca3e24bSdrh sqliteVdbeAddOp(v, OP_Goto, 0, ignoreDest); 6989cfcf5d4Sdrh break; 6999cfcf5d4Sdrh } 7009cfcf5d4Sdrh case OE_Replace: { 7019cfcf5d4Sdrh sqliteVdbeAddOp(v, OP_String, 0, 0); 7029cfcf5d4Sdrh sqliteVdbeChangeP3(v, -1, pTab->aCol[i].zDflt, P3_STATIC); 7039cfcf5d4Sdrh sqliteVdbeAddOp(v, OP_Push, nCol-i, 0); 7049cfcf5d4Sdrh break; 7059cfcf5d4Sdrh } 7060ca3e24bSdrh default: assert(0); 7079cfcf5d4Sdrh } 708ef6764a1Sdrh sqliteVdbeChangeP2(v, addr, sqliteVdbeCurrentAddr(v)); 7099cfcf5d4Sdrh } 7109cfcf5d4Sdrh 7119cfcf5d4Sdrh /* Test all CHECK constraints 7129cfcf5d4Sdrh */ 7130bd1f4eaSdrh /**** TBD ****/ 7149cfcf5d4Sdrh 7150bd1f4eaSdrh /* If we have an INTEGER PRIMARY KEY, make sure the primary key 7160bd1f4eaSdrh ** of the new record does not previously exist. Except, if this 7170bd1f4eaSdrh ** is an UPDATE and the primary key is not changing, that is OK. 7189cfcf5d4Sdrh */ 7195383ae5cSdrh if( recnoChng ){ 7200ca3e24bSdrh onError = pTab->keyConf; 7210ca3e24bSdrh if( overrideError!=OE_Default ){ 7220ca3e24bSdrh onError = overrideError; 723a996e477Sdrh }else if( pParse->db->onError!=OE_Default ){ 7240d65dc0eSdrh onError = pParse->db->onError; 725a996e477Sdrh }else if( onError==OE_Default ){ 726a996e477Sdrh onError = OE_Abort; 7270ca3e24bSdrh } 728a0217ba7Sdrh 72979b0c956Sdrh if( isUpdate ){ 73079b0c956Sdrh sqliteVdbeAddOp(v, OP_Dup, nCol+1, 1); 73179b0c956Sdrh sqliteVdbeAddOp(v, OP_Dup, nCol+1, 1); 732f5905aa7Sdrh jumpInst1 = sqliteVdbeAddOp(v, OP_Eq, 0, 0); 73379b0c956Sdrh } 7340d65dc0eSdrh sqliteVdbeAddOp(v, OP_Dup, nCol, 1); 735f5905aa7Sdrh jumpInst2 = sqliteVdbeAddOp(v, OP_NotExists, base, 0); 7360ca3e24bSdrh switch( onError ){ 737a0217ba7Sdrh default: { 738a0217ba7Sdrh onError = OE_Abort; 739a0217ba7Sdrh /* Fall thru into the next case */ 740a0217ba7Sdrh } 7411c92853dSdrh case OE_Rollback: 7421c92853dSdrh case OE_Abort: 7431c92853dSdrh case OE_Fail: { 7441c92853dSdrh sqliteVdbeAddOp(v, OP_Halt, SQLITE_CONSTRAINT, onError); 745483750baSdrh sqliteVdbeChangeP3(v, -1, "PRIMARY KEY must be unique", P3_STATIC); 7460ca3e24bSdrh break; 7470ca3e24bSdrh } 7485383ae5cSdrh case OE_Replace: { 7495383ae5cSdrh sqliteGenerateRowIndexDelete(pParse->db, v, pTab, base, 0); 7505383ae5cSdrh if( isUpdate ){ 751*7d02cb73Sdrh sqliteVdbeAddOp(v, OP_Dup, nCol+hasTwoRecnos, 1); 7525383ae5cSdrh sqliteVdbeAddOp(v, OP_MoveTo, base, 0); 7535383ae5cSdrh } 7545383ae5cSdrh seenReplace = 1; 7555383ae5cSdrh break; 7565383ae5cSdrh } 7570ca3e24bSdrh case OE_Ignore: { 7585383ae5cSdrh assert( seenReplace==0 ); 759b419a926Sdrh sqliteVdbeAddOp(v, OP_Pop, nCol+1+hasTwoRecnos, 0); 7600ca3e24bSdrh sqliteVdbeAddOp(v, OP_Goto, 0, ignoreDest); 7610ca3e24bSdrh break; 7620ca3e24bSdrh } 7630ca3e24bSdrh } 7640ca3e24bSdrh contAddr = sqliteVdbeCurrentAddr(v); 76579b0c956Sdrh sqliteVdbeChangeP2(v, jumpInst2, contAddr); 766f5905aa7Sdrh if( isUpdate ){ 767f5905aa7Sdrh sqliteVdbeChangeP2(v, jumpInst1, contAddr); 7680ca3e24bSdrh sqliteVdbeAddOp(v, OP_Dup, nCol+1, 1); 7690ca3e24bSdrh sqliteVdbeAddOp(v, OP_MoveTo, base, 0); 7700ca3e24bSdrh } 7710ca3e24bSdrh } 7720bd1f4eaSdrh 7730bd1f4eaSdrh /* Test all UNIQUE constraints by creating entries for each UNIQUE 7740bd1f4eaSdrh ** index and making sure that duplicate entries do not already exist. 7750bd1f4eaSdrh ** Add the new records to the indices as we go. 7760bd1f4eaSdrh */ 777b2fe7d8cSdrh extra = -1; 778b2fe7d8cSdrh for(iCur=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, iCur++){ 779b2fe7d8cSdrh if( aIdxUsed && aIdxUsed[iCur]==0 ) continue; /* Skip unused indices */ 7809cfcf5d4Sdrh extra++; 781b2fe7d8cSdrh 782b2fe7d8cSdrh /* Create a key for accessing the index entry */ 7839cfcf5d4Sdrh sqliteVdbeAddOp(v, OP_Dup, nCol+extra, 1); 7849cfcf5d4Sdrh for(i=0; i<pIdx->nColumn; i++){ 7859cfcf5d4Sdrh int idx = pIdx->aiColumn[i]; 7869cfcf5d4Sdrh if( idx==pTab->iPKey ){ 7870ca3e24bSdrh sqliteVdbeAddOp(v, OP_Dup, i+extra+nCol+1, 1); 7889cfcf5d4Sdrh }else{ 7890ca3e24bSdrh sqliteVdbeAddOp(v, OP_Dup, i+extra+nCol-idx, 1); 7909cfcf5d4Sdrh } 7919cfcf5d4Sdrh } 792f5905aa7Sdrh jumpInst1 = sqliteVdbeAddOp(v, OP_MakeIdxKey, pIdx->nColumn, 0); 793491791a8Sdrh if( pParse->db->file_format>=4 ) sqliteAddIdxKeyType(v, pIdx); 794b2fe7d8cSdrh 795b2fe7d8cSdrh /* Find out what action to take in case there is an indexing conflict */ 7969cfcf5d4Sdrh onError = pIdx->onError; 797b2fe7d8cSdrh if( onError==OE_None ) continue; /* pIdx is not a UNIQUE index */ 7989cfcf5d4Sdrh if( overrideError!=OE_Default ){ 7999cfcf5d4Sdrh onError = overrideError; 800a996e477Sdrh }else if( pParse->db->onError!=OE_Default ){ 8010d65dc0eSdrh onError = pParse->db->onError; 802a996e477Sdrh }else if( onError==OE_Default ){ 803a996e477Sdrh onError = OE_Abort; 8049cfcf5d4Sdrh } 8055383ae5cSdrh if( seenReplace ){ 8065383ae5cSdrh if( onError==OE_Ignore ) onError = OE_Replace; 8075383ae5cSdrh else if( onError==OE_Fail ) onError = OE_Abort; 8085383ae5cSdrh } 8095383ae5cSdrh 810b2fe7d8cSdrh 811b2fe7d8cSdrh /* Check to see if the new index entry will be unique */ 812b419a926Sdrh sqliteVdbeAddOp(v, OP_Dup, extra+nCol+1+hasTwoRecnos, 1); 813f5905aa7Sdrh jumpInst2 = sqliteVdbeAddOp(v, OP_IsUnique, base+iCur+1, 0); 814b2fe7d8cSdrh 815b2fe7d8cSdrh /* Generate code that executes if the new index entry is not unique */ 8169cfcf5d4Sdrh switch( onError ){ 8171c92853dSdrh case OE_Rollback: 8181c92853dSdrh case OE_Abort: 8191c92853dSdrh case OE_Fail: { 8201c92853dSdrh sqliteVdbeAddOp(v, OP_Halt, SQLITE_CONSTRAINT, onError); 821483750baSdrh sqliteVdbeChangeP3(v, -1, "uniqueness constraint failed", P3_STATIC); 8229cfcf5d4Sdrh break; 8239cfcf5d4Sdrh } 8249cfcf5d4Sdrh case OE_Ignore: { 8250ca3e24bSdrh assert( seenReplace==0 ); 826fe1a1773Sdrh sqliteVdbeAddOp(v, OP_Pop, nCol+extra+3+hasTwoRecnos, 0); 8279cfcf5d4Sdrh sqliteVdbeAddOp(v, OP_Goto, 0, ignoreDest); 8289cfcf5d4Sdrh break; 8299cfcf5d4Sdrh } 8309cfcf5d4Sdrh case OE_Replace: { 83138640e15Sdrh sqliteGenerateRowDelete(pParse->db, v, pTab, base, 0); 8329cfcf5d4Sdrh if( isUpdate ){ 833b419a926Sdrh sqliteVdbeAddOp(v, OP_Dup, nCol+extra+1+hasTwoRecnos, 1); 8340ca3e24bSdrh sqliteVdbeAddOp(v, OP_MoveTo, base, 0); 8359cfcf5d4Sdrh } 8360ca3e24bSdrh seenReplace = 1; 8379cfcf5d4Sdrh break; 8389cfcf5d4Sdrh } 8390ca3e24bSdrh default: assert(0); 8409cfcf5d4Sdrh } 8419cfcf5d4Sdrh contAddr = sqliteVdbeCurrentAddr(v); 8420bd1f4eaSdrh #if NULL_DISTINCT_FOR_UNIQUE 843f5905aa7Sdrh sqliteVdbeChangeP2(v, jumpInst1, contAddr); 8440bd1f4eaSdrh #endif 845f5905aa7Sdrh sqliteVdbeChangeP2(v, jumpInst2, contAddr); 8469cfcf5d4Sdrh } 8479cfcf5d4Sdrh } 8480ca3e24bSdrh 8490ca3e24bSdrh /* 8500ca3e24bSdrh ** This routine generates code to finish the INSERT or UPDATE operation 8510ca3e24bSdrh ** that was started by a prior call to sqliteGenerateConstraintChecks. 8520ca3e24bSdrh ** The stack must contain keys for all active indices followed by data 8530ca3e24bSdrh ** and the recno for the new entry. This routine creates the new 8540ca3e24bSdrh ** entries in all indices and in the main table. 8550ca3e24bSdrh ** 856b419a926Sdrh ** The arguments to this routine should be the same as the first six 8570ca3e24bSdrh ** arguments to sqliteGenerateConstraintChecks. 8580ca3e24bSdrh */ 8590ca3e24bSdrh void sqliteCompleteInsertion( 8600ca3e24bSdrh Parse *pParse, /* The parser context */ 8610ca3e24bSdrh Table *pTab, /* the table into which we are inserting */ 8620ca3e24bSdrh int base, /* Index of a read/write cursor pointing at pTab */ 8630ca3e24bSdrh char *aIdxUsed, /* Which indices are used. NULL means all are used */ 864b419a926Sdrh int recnoChng, /* True if the record number will change */ 86570ce3f0cSdrh int isUpdate, /* True for UPDATE, False for INSERT */ 86670ce3f0cSdrh int newIdx /* Index of NEW table for triggers. -1 if none */ 8670ca3e24bSdrh ){ 8680ca3e24bSdrh int i; 8690ca3e24bSdrh Vdbe *v; 8700ca3e24bSdrh int nIdx; 8710ca3e24bSdrh Index *pIdx; 8720ca3e24bSdrh 8730ca3e24bSdrh v = sqliteGetVdbe(pParse); 8740ca3e24bSdrh assert( v!=0 ); 875417be79cSdrh assert( pTab->pSelect==0 ); /* This table is not a VIEW */ 8760ca3e24bSdrh for(nIdx=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, nIdx++){} 8770ca3e24bSdrh for(i=nIdx-1; i>=0; i--){ 8780ca3e24bSdrh if( aIdxUsed && aIdxUsed[i]==0 ) continue; 8790ca3e24bSdrh sqliteVdbeAddOp(v, OP_IdxPut, base+i+1, 0); 8800ca3e24bSdrh } 8810ca3e24bSdrh sqliteVdbeAddOp(v, OP_MakeRecord, pTab->nCol, 0); 88270ce3f0cSdrh if( newIdx>=0 ){ 88370ce3f0cSdrh sqliteVdbeAddOp(v, OP_Dup, 1, 0); 88470ce3f0cSdrh sqliteVdbeAddOp(v, OP_Dup, 1, 0); 88570ce3f0cSdrh sqliteVdbeAddOp(v, OP_PutIntKey, newIdx, 0); 88670ce3f0cSdrh } 887c3f9bad2Sdanielk1977 sqliteVdbeAddOp(v, OP_PutIntKey, base, pParse->trigStack?0:1); 888b419a926Sdrh if( isUpdate && recnoChng ){ 8890ca3e24bSdrh sqliteVdbeAddOp(v, OP_Pop, 1, 0); 8900ca3e24bSdrh } 8910ca3e24bSdrh } 892