1 /* 2 ** 2001 September 15 3 ** 4 ** The author disclaims copyright to this source code. In place of 5 ** a legal notice, here is a blessing: 6 ** 7 ** May you do good and not evil. 8 ** May you find forgiveness for yourself and forgive others. 9 ** May you share freely, never taking more than you give. 10 ** 11 ************************************************************************* 12 ** This file contains C code routines that are called by the parser 13 ** to handle UPDATE statements. 14 */ 15 #include "sqliteInt.h" 16 17 #ifndef SQLITE_OMIT_VIRTUALTABLE 18 /* Forward declaration */ 19 static void updateVirtualTable( 20 Parse *pParse, /* The parsing context */ 21 SrcList *pSrc, /* The virtual table to be modified */ 22 Table *pTab, /* The virtual table */ 23 ExprList *pChanges, /* The columns to change in the UPDATE statement */ 24 Expr *pRowidExpr, /* Expression used to recompute the rowid */ 25 int *aXRef, /* Mapping from columns of pTab to entries in pChanges */ 26 Expr *pWhere, /* WHERE clause of the UPDATE statement */ 27 int onError /* ON CONFLICT strategy */ 28 ); 29 #endif /* SQLITE_OMIT_VIRTUALTABLE */ 30 31 /* 32 ** The most recently coded instruction was an OP_Column to retrieve the 33 ** i-th column of table pTab. This routine sets the P4 parameter of the 34 ** OP_Column to the default value, if any. 35 ** 36 ** The default value of a column is specified by a DEFAULT clause in the 37 ** column definition. This was either supplied by the user when the table 38 ** was created, or added later to the table definition by an ALTER TABLE 39 ** command. If the latter, then the row-records in the table btree on disk 40 ** may not contain a value for the column and the default value, taken 41 ** from the P4 parameter of the OP_Column instruction, is returned instead. 42 ** If the former, then all row-records are guaranteed to include a value 43 ** for the column and the P4 value is not required. 44 ** 45 ** Column definitions created by an ALTER TABLE command may only have 46 ** literal default values specified: a number, null or a string. (If a more 47 ** complicated default expression value was provided, it is evaluated 48 ** when the ALTER TABLE is executed and one of the literal values written 49 ** into the sqlite_master table.) 50 ** 51 ** Therefore, the P4 parameter is only required if the default value for 52 ** the column is a literal number, string or null. The sqlite3ValueFromExpr() 53 ** function is capable of transforming these types of expressions into 54 ** sqlite3_value objects. 55 ** 56 ** If parameter iReg is not negative, code an OP_RealAffinity instruction 57 ** on register iReg. This is used when an equivalent integer value is 58 ** stored in place of an 8-byte floating point value in order to save 59 ** space. 60 */ 61 void sqlite3ColumnDefault(Vdbe *v, Table *pTab, int i, int iReg){ 62 assert( pTab!=0 ); 63 if( !pTab->pSelect ){ 64 sqlite3_value *pValue = 0; 65 u8 enc = ENC(sqlite3VdbeDb(v)); 66 Column *pCol = &pTab->aCol[i]; 67 VdbeComment((v, "%s.%s", pTab->zName, pCol->zName)); 68 assert( i<pTab->nCol ); 69 sqlite3ValueFromExpr(sqlite3VdbeDb(v), pCol->pDflt, enc, 70 pCol->affinity, &pValue); 71 if( pValue ){ 72 sqlite3VdbeAppendP4(v, pValue, P4_MEM); 73 } 74 } 75 #ifndef SQLITE_OMIT_FLOATING_POINT 76 if( pTab->aCol[i].affinity==SQLITE_AFF_REAL ){ 77 sqlite3VdbeAddOp1(v, OP_RealAffinity, iReg); 78 } 79 #endif 80 } 81 82 /* 83 ** Check to see if column iCol of index pIdx references any of the 84 ** columns defined by aXRef and chngRowid. Return true if it does 85 ** and false if not. This is an optimization. False-positives are a 86 ** performance degradation, but false-negatives can result in a corrupt 87 ** index and incorrect answers. 88 ** 89 ** aXRef[j] will be non-negative if column j of the original table is 90 ** being updated. chngRowid will be true if the rowid of the table is 91 ** being updated. 92 */ 93 static int indexColumnIsBeingUpdated( 94 Index *pIdx, /* The index to check */ 95 int iCol, /* Which column of the index to check */ 96 int *aXRef, /* aXRef[j]>=0 if column j is being updated */ 97 int chngRowid /* true if the rowid is being updated */ 98 ){ 99 i16 iIdxCol = pIdx->aiColumn[iCol]; 100 assert( iIdxCol!=XN_ROWID ); /* Cannot index rowid */ 101 if( iIdxCol>=0 ){ 102 return aXRef[iIdxCol]>=0; 103 } 104 assert( iIdxCol==XN_EXPR ); 105 assert( pIdx->aColExpr!=0 ); 106 assert( pIdx->aColExpr->a[iCol].pExpr!=0 ); 107 return sqlite3ExprReferencesUpdatedColumn(pIdx->aColExpr->a[iCol].pExpr, 108 aXRef,chngRowid); 109 } 110 111 /* 112 ** Check to see if index pIdx is a partial index whose conditional 113 ** expression might change values due to an UPDATE. Return true if 114 ** the index is subject to change and false if the index is guaranteed 115 ** to be unchanged. This is an optimization. False-positives are a 116 ** performance degradation, but false-negatives can result in a corrupt 117 ** index and incorrect answers. 118 ** 119 ** aXRef[j] will be non-negative if column j of the original table is 120 ** being updated. chngRowid will be true if the rowid of the table is 121 ** being updated. 122 */ 123 static int indexWhereClauseMightChange( 124 Index *pIdx, /* The index to check */ 125 int *aXRef, /* aXRef[j]>=0 if column j is being updated */ 126 int chngRowid /* true if the rowid is being updated */ 127 ){ 128 if( pIdx->pPartIdxWhere==0 ) return 0; 129 return sqlite3ExprReferencesUpdatedColumn(pIdx->pPartIdxWhere, 130 aXRef, chngRowid); 131 } 132 133 /* 134 ** Process an UPDATE statement. 135 ** 136 ** UPDATE OR IGNORE table_wxyz SET a=b, c=d WHERE e<5 AND f NOT NULL; 137 ** \_______/ \________/ \______/ \________________/ 138 * onError pTabList pChanges pWhere 139 */ 140 void sqlite3Update( 141 Parse *pParse, /* The parser context */ 142 SrcList *pTabList, /* The table in which we should change things */ 143 ExprList *pChanges, /* Things to be changed */ 144 Expr *pWhere, /* The WHERE clause. May be null */ 145 int onError, /* How to handle constraint errors */ 146 ExprList *pOrderBy, /* ORDER BY clause. May be null */ 147 Expr *pLimit, /* LIMIT clause. May be null */ 148 Upsert *pUpsert /* ON CONFLICT clause, or null */ 149 ){ 150 int i, j, k; /* Loop counters */ 151 Table *pTab; /* The table to be updated */ 152 int addrTop = 0; /* VDBE instruction address of the start of the loop */ 153 WhereInfo *pWInfo; /* Information about the WHERE clause */ 154 Vdbe *v; /* The virtual database engine */ 155 Index *pIdx; /* For looping over indices */ 156 Index *pPk; /* The PRIMARY KEY index for WITHOUT ROWID tables */ 157 int nIdx; /* Number of indices that need updating */ 158 int nAllIdx; /* Total number of indexes */ 159 int iBaseCur; /* Base cursor number */ 160 int iDataCur; /* Cursor for the canonical data btree */ 161 int iIdxCur; /* Cursor for the first index */ 162 sqlite3 *db; /* The database structure */ 163 int *aRegIdx = 0; /* Registers for to each index and the main table */ 164 int *aXRef = 0; /* aXRef[i] is the index in pChanges->a[] of the 165 ** an expression for the i-th column of the table. 166 ** aXRef[i]==-1 if the i-th column is not changed. */ 167 u8 *aToOpen; /* 1 for tables and indices to be opened */ 168 u8 chngPk; /* PRIMARY KEY changed in a WITHOUT ROWID table */ 169 u8 chngRowid; /* Rowid changed in a normal table */ 170 u8 chngKey; /* Either chngPk or chngRowid */ 171 Expr *pRowidExpr = 0; /* Expression defining the new record number */ 172 AuthContext sContext; /* The authorization context */ 173 NameContext sNC; /* The name-context to resolve expressions in */ 174 int iDb; /* Database containing the table being updated */ 175 int eOnePass; /* ONEPASS_XXX value from where.c */ 176 int hasFK; /* True if foreign key processing is required */ 177 int labelBreak; /* Jump here to break out of UPDATE loop */ 178 int labelContinue; /* Jump here to continue next step of UPDATE loop */ 179 int flags; /* Flags for sqlite3WhereBegin() */ 180 181 #ifndef SQLITE_OMIT_TRIGGER 182 int isView; /* True when updating a view (INSTEAD OF trigger) */ 183 Trigger *pTrigger; /* List of triggers on pTab, if required */ 184 int tmask; /* Mask of TRIGGER_BEFORE|TRIGGER_AFTER */ 185 #endif 186 int newmask; /* Mask of NEW.* columns accessed by BEFORE triggers */ 187 int iEph = 0; /* Ephemeral table holding all primary key values */ 188 int nKey = 0; /* Number of elements in regKey for WITHOUT ROWID */ 189 int aiCurOnePass[2]; /* The write cursors opened by WHERE_ONEPASS */ 190 int addrOpen = 0; /* Address of OP_OpenEphemeral */ 191 int iPk = 0; /* First of nPk cells holding PRIMARY KEY value */ 192 i16 nPk = 0; /* Number of components of the PRIMARY KEY */ 193 int bReplace = 0; /* True if REPLACE conflict resolution might happen */ 194 195 /* Register Allocations */ 196 int regRowCount = 0; /* A count of rows changed */ 197 int regOldRowid = 0; /* The old rowid */ 198 int regNewRowid = 0; /* The new rowid */ 199 int regNew = 0; /* Content of the NEW.* table in triggers */ 200 int regOld = 0; /* Content of OLD.* table in triggers */ 201 int regRowSet = 0; /* Rowset of rows to be updated */ 202 int regKey = 0; /* composite PRIMARY KEY value */ 203 204 memset(&sContext, 0, sizeof(sContext)); 205 db = pParse->db; 206 if( pParse->nErr || db->mallocFailed ){ 207 goto update_cleanup; 208 } 209 assert( pTabList->nSrc==1 ); 210 211 /* Locate the table which we want to update. 212 */ 213 pTab = sqlite3SrcListLookup(pParse, pTabList); 214 if( pTab==0 ) goto update_cleanup; 215 iDb = sqlite3SchemaToIndex(pParse->db, pTab->pSchema); 216 217 /* Figure out if we have any triggers and if the table being 218 ** updated is a view. 219 */ 220 #ifndef SQLITE_OMIT_TRIGGER 221 pTrigger = sqlite3TriggersExist(pParse, pTab, TK_UPDATE, pChanges, &tmask); 222 isView = pTab->pSelect!=0; 223 assert( pTrigger || tmask==0 ); 224 #else 225 # define pTrigger 0 226 # define isView 0 227 # define tmask 0 228 #endif 229 #ifdef SQLITE_OMIT_VIEW 230 # undef isView 231 # define isView 0 232 #endif 233 234 #ifdef SQLITE_ENABLE_UPDATE_DELETE_LIMIT 235 if( !isView ){ 236 pWhere = sqlite3LimitWhere( 237 pParse, pTabList, pWhere, pOrderBy, pLimit, "UPDATE" 238 ); 239 pOrderBy = 0; 240 pLimit = 0; 241 } 242 #endif 243 244 if( sqlite3ViewGetColumnNames(pParse, pTab) ){ 245 goto update_cleanup; 246 } 247 if( sqlite3IsReadOnly(pParse, pTab, tmask) ){ 248 goto update_cleanup; 249 } 250 251 /* Allocate a cursors for the main database table and for all indices. 252 ** The index cursors might not be used, but if they are used they 253 ** need to occur right after the database cursor. So go ahead and 254 ** allocate enough space, just in case. 255 */ 256 iBaseCur = iDataCur = pParse->nTab++; 257 iIdxCur = iDataCur+1; 258 pPk = HasRowid(pTab) ? 0 : sqlite3PrimaryKeyIndex(pTab); 259 testcase( pPk!=0 && pPk!=pTab->pIndex ); 260 for(nIdx=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, nIdx++){ 261 if( pPk==pIdx ){ 262 iDataCur = pParse->nTab; 263 } 264 pParse->nTab++; 265 } 266 if( pUpsert ){ 267 /* On an UPSERT, reuse the same cursors already opened by INSERT */ 268 iDataCur = pUpsert->iDataCur; 269 iIdxCur = pUpsert->iIdxCur; 270 pParse->nTab = iBaseCur; 271 } 272 pTabList->a[0].iCursor = iDataCur; 273 274 /* Allocate space for aXRef[], aRegIdx[], and aToOpen[]. 275 ** Initialize aXRef[] and aToOpen[] to their default values. 276 */ 277 aXRef = sqlite3DbMallocRawNN(db, sizeof(int) * (pTab->nCol+nIdx+1) + nIdx+2 ); 278 if( aXRef==0 ) goto update_cleanup; 279 aRegIdx = aXRef+pTab->nCol; 280 aToOpen = (u8*)(aRegIdx+nIdx+1); 281 memset(aToOpen, 1, nIdx+1); 282 aToOpen[nIdx+1] = 0; 283 for(i=0; i<pTab->nCol; i++) aXRef[i] = -1; 284 285 /* Initialize the name-context */ 286 memset(&sNC, 0, sizeof(sNC)); 287 sNC.pParse = pParse; 288 sNC.pSrcList = pTabList; 289 sNC.uNC.pUpsert = pUpsert; 290 sNC.ncFlags = NC_UUpsert; 291 292 /* Begin generating code. */ 293 v = sqlite3GetVdbe(pParse); 294 if( v==0 ) goto update_cleanup; 295 296 /* Resolve the column names in all the expressions of the 297 ** of the UPDATE statement. Also find the column index 298 ** for each column to be updated in the pChanges array. For each 299 ** column to be updated, make sure we have authorization to change 300 ** that column. 301 */ 302 chngRowid = chngPk = 0; 303 for(i=0; i<pChanges->nExpr; i++){ 304 if( sqlite3ResolveExprNames(&sNC, pChanges->a[i].pExpr) ){ 305 goto update_cleanup; 306 } 307 for(j=0; j<pTab->nCol; j++){ 308 if( sqlite3StrICmp(pTab->aCol[j].zName, pChanges->a[i].zName)==0 ){ 309 if( j==pTab->iPKey ){ 310 chngRowid = 1; 311 pRowidExpr = pChanges->a[i].pExpr; 312 }else if( pPk && (pTab->aCol[j].colFlags & COLFLAG_PRIMKEY)!=0 ){ 313 chngPk = 1; 314 } 315 #ifndef SQLITE_OMIT_GENERATED_COLUMNS 316 else if( pTab->aCol[j].colFlags & COLFLAG_GENERATED ){ 317 testcase( pTab->aCol[j].colFlags & COLFLAG_VIRTUAL ); 318 testcase( pTab->aCol[j].colFlags & COLFLAG_STORED ); 319 sqlite3ErrorMsg(pParse, 320 "cannot UPDATE generated column \"%s\"", 321 pTab->aCol[j].zName); 322 goto update_cleanup; 323 } 324 #endif 325 aXRef[j] = i; 326 break; 327 } 328 } 329 if( j>=pTab->nCol ){ 330 if( pPk==0 && sqlite3IsRowid(pChanges->a[i].zName) ){ 331 j = -1; 332 chngRowid = 1; 333 pRowidExpr = pChanges->a[i].pExpr; 334 }else{ 335 sqlite3ErrorMsg(pParse, "no such column: %s", pChanges->a[i].zName); 336 pParse->checkSchema = 1; 337 goto update_cleanup; 338 } 339 } 340 #ifndef SQLITE_OMIT_AUTHORIZATION 341 { 342 int rc; 343 rc = sqlite3AuthCheck(pParse, SQLITE_UPDATE, pTab->zName, 344 j<0 ? "ROWID" : pTab->aCol[j].zName, 345 db->aDb[iDb].zDbSName); 346 if( rc==SQLITE_DENY ){ 347 goto update_cleanup; 348 }else if( rc==SQLITE_IGNORE ){ 349 aXRef[j] = -1; 350 } 351 } 352 #endif 353 } 354 assert( (chngRowid & chngPk)==0 ); 355 assert( chngRowid==0 || chngRowid==1 ); 356 assert( chngPk==0 || chngPk==1 ); 357 chngKey = chngRowid + chngPk; 358 359 #ifndef SQLITE_OMIT_GENERATED_COLUMNS 360 /* Mark generated columns as changing if their generator expressions 361 ** reference any changing column. The actual aXRef[] value for 362 ** generated expressions is not used, other than to check to see that it 363 ** is non-negative, so the value of aXRef[] for generated columns can be 364 ** set to any non-negative number. We use 99999 so that the value is 365 ** obvious when looking at aXRef[] in a symbolic debugger. 366 */ 367 if( pTab->tabFlags & TF_HasGenerated ){ 368 int bProgress; 369 testcase( pTab->tabFlags & TF_HasVirtual ); 370 testcase( pTab->tabFlags & TF_HasStored ); 371 do{ 372 bProgress = 0; 373 for(i=0; i<pTab->nCol; i++){ 374 if( aXRef[i]>=0 ) continue; 375 if( (pTab->aCol[i].colFlags & COLFLAG_GENERATED)==0 ) continue; 376 if( sqlite3ExprReferencesUpdatedColumn(pTab->aCol[i].pDflt, 377 aXRef, chngRowid) ){ 378 aXRef[i] = 99999; 379 bProgress = 1; 380 } 381 } 382 }while( bProgress ); 383 } 384 #endif 385 386 /* The SET expressions are not actually used inside the WHERE loop. 387 ** So reset the colUsed mask. Unless this is a virtual table. In that 388 ** case, set all bits of the colUsed mask (to ensure that the virtual 389 ** table implementation makes all columns available). 390 */ 391 pTabList->a[0].colUsed = IsVirtual(pTab) ? ALLBITS : 0; 392 393 hasFK = sqlite3FkRequired(pParse, pTab, aXRef, chngKey); 394 395 /* There is one entry in the aRegIdx[] array for each index on the table 396 ** being updated. Fill in aRegIdx[] with a register number that will hold 397 ** the key for accessing each index. 398 */ 399 if( onError==OE_Replace ) bReplace = 1; 400 for(nAllIdx=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, nAllIdx++){ 401 int reg; 402 if( chngKey || hasFK>1 || pIdx==pPk 403 || indexWhereClauseMightChange(pIdx,aXRef,chngRowid) 404 ){ 405 reg = ++pParse->nMem; 406 pParse->nMem += pIdx->nColumn; 407 }else{ 408 reg = 0; 409 for(i=0; i<pIdx->nKeyCol; i++){ 410 if( indexColumnIsBeingUpdated(pIdx, i, aXRef, chngRowid) ){ 411 reg = ++pParse->nMem; 412 pParse->nMem += pIdx->nColumn; 413 if( onError==OE_Default && pIdx->onError==OE_Replace ){ 414 bReplace = 1; 415 } 416 break; 417 } 418 } 419 } 420 if( reg==0 ) aToOpen[nAllIdx+1] = 0; 421 aRegIdx[nAllIdx] = reg; 422 } 423 aRegIdx[nAllIdx] = ++pParse->nMem; /* Register storing the table record */ 424 if( bReplace ){ 425 /* If REPLACE conflict resolution might be invoked, open cursors on all 426 ** indexes in case they are needed to delete records. */ 427 memset(aToOpen, 1, nIdx+1); 428 } 429 430 if( pParse->nested==0 ) sqlite3VdbeCountChanges(v); 431 sqlite3BeginWriteOperation(pParse, pTrigger || hasFK, iDb); 432 433 /* Allocate required registers. */ 434 if( !IsVirtual(pTab) ){ 435 /* For now, regRowSet and aRegIdx[nAllIdx] share the same register. 436 ** If regRowSet turns out to be needed, then aRegIdx[nAllIdx] will be 437 ** reallocated. aRegIdx[nAllIdx] is the register in which the main 438 ** table record is written. regRowSet holds the RowSet for the 439 ** two-pass update algorithm. */ 440 assert( aRegIdx[nAllIdx]==pParse->nMem ); 441 regRowSet = aRegIdx[nAllIdx]; 442 regOldRowid = regNewRowid = ++pParse->nMem; 443 if( chngPk || pTrigger || hasFK ){ 444 regOld = pParse->nMem + 1; 445 pParse->nMem += pTab->nCol; 446 } 447 if( chngKey || pTrigger || hasFK ){ 448 regNewRowid = ++pParse->nMem; 449 } 450 regNew = pParse->nMem + 1; 451 pParse->nMem += pTab->nCol; 452 } 453 454 /* Start the view context. */ 455 if( isView ){ 456 sqlite3AuthContextPush(pParse, &sContext, pTab->zName); 457 } 458 459 /* If we are trying to update a view, realize that view into 460 ** an ephemeral table. 461 */ 462 #if !defined(SQLITE_OMIT_VIEW) && !defined(SQLITE_OMIT_TRIGGER) 463 if( isView ){ 464 sqlite3MaterializeView(pParse, pTab, 465 pWhere, pOrderBy, pLimit, iDataCur 466 ); 467 pOrderBy = 0; 468 pLimit = 0; 469 } 470 #endif 471 472 /* Resolve the column names in all the expressions in the 473 ** WHERE clause. 474 */ 475 if( sqlite3ResolveExprNames(&sNC, pWhere) ){ 476 goto update_cleanup; 477 } 478 479 #ifndef SQLITE_OMIT_VIRTUALTABLE 480 /* Virtual tables must be handled separately */ 481 if( IsVirtual(pTab) ){ 482 updateVirtualTable(pParse, pTabList, pTab, pChanges, pRowidExpr, aXRef, 483 pWhere, onError); 484 goto update_cleanup; 485 } 486 #endif 487 488 /* Jump to labelBreak to abandon further processing of this UPDATE */ 489 labelContinue = labelBreak = sqlite3VdbeMakeLabel(pParse); 490 491 /* Not an UPSERT. Normal processing. Begin by 492 ** initialize the count of updated rows */ 493 if( (db->flags&SQLITE_CountRows)!=0 494 && !pParse->pTriggerTab 495 && !pParse->nested 496 && pUpsert==0 497 ){ 498 regRowCount = ++pParse->nMem; 499 sqlite3VdbeAddOp2(v, OP_Integer, 0, regRowCount); 500 } 501 502 if( HasRowid(pTab) ){ 503 sqlite3VdbeAddOp3(v, OP_Null, 0, regRowSet, regOldRowid); 504 }else{ 505 assert( pPk!=0 ); 506 nPk = pPk->nKeyCol; 507 iPk = pParse->nMem+1; 508 pParse->nMem += nPk; 509 regKey = ++pParse->nMem; 510 if( pUpsert==0 ){ 511 iEph = pParse->nTab++; 512 sqlite3VdbeAddOp3(v, OP_Null, 0, iPk, iPk+nPk-1); 513 addrOpen = sqlite3VdbeAddOp2(v, OP_OpenEphemeral, iEph, nPk); 514 sqlite3VdbeSetP4KeyInfo(pParse, pPk); 515 } 516 } 517 518 if( pUpsert ){ 519 /* If this is an UPSERT, then all cursors have already been opened by 520 ** the outer INSERT and the data cursor should be pointing at the row 521 ** that is to be updated. So bypass the code that searches for the 522 ** row(s) to be updated. 523 */ 524 pWInfo = 0; 525 eOnePass = ONEPASS_SINGLE; 526 sqlite3ExprIfFalse(pParse, pWhere, labelBreak, SQLITE_JUMPIFNULL); 527 }else{ 528 /* Begin the database scan. 529 ** 530 ** Do not consider a single-pass strategy for a multi-row update if 531 ** there are any triggers or foreign keys to process, or rows may 532 ** be deleted as a result of REPLACE conflict handling. Any of these 533 ** things might disturb a cursor being used to scan through the table 534 ** or index, causing a single-pass approach to malfunction. */ 535 flags = WHERE_ONEPASS_DESIRED|WHERE_SEEK_UNIQ_TABLE; 536 if( !pParse->nested && !pTrigger && !hasFK && !chngKey && !bReplace ){ 537 flags |= WHERE_ONEPASS_MULTIROW; 538 } 539 pWInfo = sqlite3WhereBegin(pParse, pTabList, pWhere, 0, 0, flags, iIdxCur); 540 if( pWInfo==0 ) goto update_cleanup; 541 542 /* A one-pass strategy that might update more than one row may not 543 ** be used if any column of the index used for the scan is being 544 ** updated. Otherwise, if there is an index on "b", statements like 545 ** the following could create an infinite loop: 546 ** 547 ** UPDATE t1 SET b=b+1 WHERE b>? 548 ** 549 ** Fall back to ONEPASS_OFF if where.c has selected a ONEPASS_MULTI 550 ** strategy that uses an index for which one or more columns are being 551 ** updated. */ 552 eOnePass = sqlite3WhereOkOnePass(pWInfo, aiCurOnePass); 553 if( eOnePass!=ONEPASS_SINGLE ){ 554 sqlite3MultiWrite(pParse); 555 if( eOnePass==ONEPASS_MULTI ){ 556 int iCur = aiCurOnePass[1]; 557 if( iCur>=0 && iCur!=iDataCur && aToOpen[iCur-iBaseCur] ){ 558 eOnePass = ONEPASS_OFF; 559 } 560 assert( iCur!=iDataCur || !HasRowid(pTab) ); 561 } 562 } 563 } 564 565 if( HasRowid(pTab) ){ 566 /* Read the rowid of the current row of the WHERE scan. In ONEPASS_OFF 567 ** mode, write the rowid into the FIFO. In either of the one-pass modes, 568 ** leave it in register regOldRowid. */ 569 sqlite3VdbeAddOp2(v, OP_Rowid, iDataCur, regOldRowid); 570 if( eOnePass==ONEPASS_OFF ){ 571 /* We need to use regRowSet, so reallocate aRegIdx[nAllIdx] */ 572 aRegIdx[nAllIdx] = ++pParse->nMem; 573 sqlite3VdbeAddOp2(v, OP_RowSetAdd, regRowSet, regOldRowid); 574 } 575 }else{ 576 /* Read the PK of the current row into an array of registers. In 577 ** ONEPASS_OFF mode, serialize the array into a record and store it in 578 ** the ephemeral table. Or, in ONEPASS_SINGLE or MULTI mode, change 579 ** the OP_OpenEphemeral instruction to a Noop (the ephemeral table 580 ** is not required) and leave the PK fields in the array of registers. */ 581 for(i=0; i<nPk; i++){ 582 assert( pPk->aiColumn[i]>=0 ); 583 sqlite3ExprCodeGetColumnOfTable(v, pTab, iDataCur, 584 pPk->aiColumn[i], iPk+i); 585 } 586 if( eOnePass ){ 587 if( addrOpen ) sqlite3VdbeChangeToNoop(v, addrOpen); 588 nKey = nPk; 589 regKey = iPk; 590 }else{ 591 sqlite3VdbeAddOp4(v, OP_MakeRecord, iPk, nPk, regKey, 592 sqlite3IndexAffinityStr(db, pPk), nPk); 593 sqlite3VdbeAddOp4Int(v, OP_IdxInsert, iEph, regKey, iPk, nPk); 594 } 595 } 596 597 if( pUpsert==0 ){ 598 if( eOnePass!=ONEPASS_MULTI ){ 599 sqlite3WhereEnd(pWInfo); 600 } 601 602 if( !isView ){ 603 int addrOnce = 0; 604 605 /* Open every index that needs updating. */ 606 if( eOnePass!=ONEPASS_OFF ){ 607 if( aiCurOnePass[0]>=0 ) aToOpen[aiCurOnePass[0]-iBaseCur] = 0; 608 if( aiCurOnePass[1]>=0 ) aToOpen[aiCurOnePass[1]-iBaseCur] = 0; 609 } 610 611 if( eOnePass==ONEPASS_MULTI && (nIdx-(aiCurOnePass[1]>=0))>0 ){ 612 addrOnce = sqlite3VdbeAddOp0(v, OP_Once); VdbeCoverage(v); 613 } 614 sqlite3OpenTableAndIndices(pParse, pTab, OP_OpenWrite, 0, iBaseCur, 615 aToOpen, 0, 0); 616 if( addrOnce ) sqlite3VdbeJumpHere(v, addrOnce); 617 } 618 619 /* Top of the update loop */ 620 if( eOnePass!=ONEPASS_OFF ){ 621 if( !isView && aiCurOnePass[0]!=iDataCur && aiCurOnePass[1]!=iDataCur ){ 622 assert( pPk ); 623 sqlite3VdbeAddOp4Int(v, OP_NotFound, iDataCur, labelBreak, regKey,nKey); 624 VdbeCoverage(v); 625 } 626 if( eOnePass!=ONEPASS_SINGLE ){ 627 labelContinue = sqlite3VdbeMakeLabel(pParse); 628 } 629 sqlite3VdbeAddOp2(v, OP_IsNull, pPk ? regKey : regOldRowid, labelBreak); 630 VdbeCoverageIf(v, pPk==0); 631 VdbeCoverageIf(v, pPk!=0); 632 }else if( pPk ){ 633 labelContinue = sqlite3VdbeMakeLabel(pParse); 634 sqlite3VdbeAddOp2(v, OP_Rewind, iEph, labelBreak); VdbeCoverage(v); 635 addrTop = sqlite3VdbeAddOp2(v, OP_RowData, iEph, regKey); 636 sqlite3VdbeAddOp4Int(v, OP_NotFound, iDataCur, labelContinue, regKey, 0); 637 VdbeCoverage(v); 638 }else{ 639 labelContinue = sqlite3VdbeAddOp3(v, OP_RowSetRead, regRowSet,labelBreak, 640 regOldRowid); 641 VdbeCoverage(v); 642 sqlite3VdbeAddOp3(v, OP_NotExists, iDataCur, labelContinue, regOldRowid); 643 VdbeCoverage(v); 644 } 645 } 646 647 /* If the rowid value will change, set register regNewRowid to 648 ** contain the new value. If the rowid is not being modified, 649 ** then regNewRowid is the same register as regOldRowid, which is 650 ** already populated. */ 651 assert( chngKey || pTrigger || hasFK || regOldRowid==regNewRowid ); 652 if( chngRowid ){ 653 sqlite3ExprCode(pParse, pRowidExpr, regNewRowid); 654 sqlite3VdbeAddOp1(v, OP_MustBeInt, regNewRowid); VdbeCoverage(v); 655 } 656 657 /* Compute the old pre-UPDATE content of the row being changed, if that 658 ** information is needed */ 659 if( chngPk || hasFK || pTrigger ){ 660 u32 oldmask = (hasFK ? sqlite3FkOldmask(pParse, pTab) : 0); 661 oldmask |= sqlite3TriggerColmask(pParse, 662 pTrigger, pChanges, 0, TRIGGER_BEFORE|TRIGGER_AFTER, pTab, onError 663 ); 664 for(i=0; i<pTab->nCol; i++){ 665 u32 colFlags = pTab->aCol[i].colFlags; 666 k = sqlite3TableColumnToStorage(pTab, i) + regOld; 667 if( oldmask==0xffffffff 668 || (i<32 && (oldmask & MASKBIT32(i))!=0) 669 || (colFlags & COLFLAG_PRIMKEY)!=0 670 ){ 671 testcase( oldmask!=0xffffffff && i==31 ); 672 sqlite3ExprCodeGetColumnOfTable(v, pTab, iDataCur, i, k); 673 }else{ 674 sqlite3VdbeAddOp2(v, OP_Null, 0, k); 675 } 676 } 677 if( chngRowid==0 && pPk==0 ){ 678 sqlite3VdbeAddOp2(v, OP_Copy, regOldRowid, regNewRowid); 679 } 680 } 681 682 /* Populate the array of registers beginning at regNew with the new 683 ** row data. This array is used to check constants, create the new 684 ** table and index records, and as the values for any new.* references 685 ** made by triggers. 686 ** 687 ** If there are one or more BEFORE triggers, then do not populate the 688 ** registers associated with columns that are (a) not modified by 689 ** this UPDATE statement and (b) not accessed by new.* references. The 690 ** values for registers not modified by the UPDATE must be reloaded from 691 ** the database after the BEFORE triggers are fired anyway (as the trigger 692 ** may have modified them). So not loading those that are not going to 693 ** be used eliminates some redundant opcodes. 694 */ 695 newmask = sqlite3TriggerColmask( 696 pParse, pTrigger, pChanges, 1, TRIGGER_BEFORE, pTab, onError 697 ); 698 for(i=0, k=regNew; i<pTab->nCol; i++, k++){ 699 if( i==pTab->iPKey ){ 700 sqlite3VdbeAddOp2(v, OP_Null, 0, k); 701 }else if( (pTab->aCol[i].colFlags & COLFLAG_GENERATED)!=0 ){ 702 if( pTab->aCol[i].colFlags & COLFLAG_VIRTUAL ) k--; 703 }else{ 704 j = aXRef[i]; 705 if( j>=0 ){ 706 sqlite3ExprCode(pParse, pChanges->a[j].pExpr, k); 707 }else if( 0==(tmask&TRIGGER_BEFORE) || i>31 || (newmask & MASKBIT32(i)) ){ 708 /* This branch loads the value of a column that will not be changed 709 ** into a register. This is done if there are no BEFORE triggers, or 710 ** if there are one or more BEFORE triggers that use this value via 711 ** a new.* reference in a trigger program. 712 */ 713 testcase( i==31 ); 714 testcase( i==32 ); 715 sqlite3ExprCodeGetColumnOfTable(v, pTab, iDataCur, i, k); 716 }else{ 717 sqlite3VdbeAddOp2(v, OP_Null, 0, k); 718 } 719 } 720 } 721 #ifndef SQLITE_OMIT_GENERATED_COLUMNS 722 if( pTab->tabFlags & TF_HasGenerated ){ 723 testcase( pTab->tabFlags & TF_HasVirtual ); 724 testcase( pTab->tabFlags & TF_HasStored ); 725 sqlite3ComputeGeneratedColumns(pParse, regNew, pTab); 726 } 727 #endif 728 729 /* Fire any BEFORE UPDATE triggers. This happens before constraints are 730 ** verified. One could argue that this is wrong. 731 */ 732 if( tmask&TRIGGER_BEFORE ){ 733 sqlite3TableAffinity(v, pTab, regNew); 734 sqlite3CodeRowTrigger(pParse, pTrigger, TK_UPDATE, pChanges, 735 TRIGGER_BEFORE, pTab, regOldRowid, onError, labelContinue); 736 737 /* The row-trigger may have deleted the row being updated. In this 738 ** case, jump to the next row. No updates or AFTER triggers are 739 ** required. This behavior - what happens when the row being updated 740 ** is deleted or renamed by a BEFORE trigger - is left undefined in the 741 ** documentation. 742 */ 743 if( pPk ){ 744 sqlite3VdbeAddOp4Int(v, OP_NotFound, iDataCur, labelContinue,regKey,nKey); 745 VdbeCoverage(v); 746 }else{ 747 sqlite3VdbeAddOp3(v, OP_NotExists, iDataCur, labelContinue, regOldRowid); 748 VdbeCoverage(v); 749 } 750 751 /* After-BEFORE-trigger-reload-loop: 752 ** If it did not delete it, the BEFORE trigger may still have modified 753 ** some of the columns of the row being updated. Load the values for 754 ** all columns not modified by the update statement into their registers 755 ** in case this has happened. Only unmodified columns are reloaded. 756 ** The values computed for modified columns use the values before the 757 ** BEFORE trigger runs. See test case trigger1-18.0 (added 2018-04-26) 758 ** for an example. 759 */ 760 for(i=0, k=regNew; i<pTab->nCol; i++, k++){ 761 if( pTab->aCol[i].colFlags & COLFLAG_GENERATED ){ 762 if( pTab->aCol[i].colFlags & COLFLAG_VIRTUAL ) k--; 763 }else if( aXRef[i]<0 && i!=pTab->iPKey ){ 764 sqlite3ExprCodeGetColumnOfTable(v, pTab, iDataCur, i, k); 765 } 766 } 767 #ifndef SQLITE_OMIT_GENERATED_COLUMNS 768 if( pTab->tabFlags & TF_HasGenerated ){ 769 testcase( pTab->tabFlags & TF_HasVirtual ); 770 testcase( pTab->tabFlags & TF_HasStored ); 771 sqlite3ComputeGeneratedColumns(pParse, regNew, pTab); 772 } 773 #endif 774 } 775 776 if( !isView ){ 777 /* Do constraint checks. */ 778 assert( regOldRowid>0 ); 779 sqlite3GenerateConstraintChecks(pParse, pTab, aRegIdx, iDataCur, iIdxCur, 780 regNewRowid, regOldRowid, chngKey, onError, labelContinue, &bReplace, 781 aXRef, 0); 782 783 /* If REPLACE conflict handling may have been used, or if the PK of the 784 ** row is changing, then the GenerateConstraintChecks() above may have 785 ** moved cursor iDataCur. Reseek it. */ 786 if( bReplace || chngKey ){ 787 if( pPk ){ 788 sqlite3VdbeAddOp4Int(v, OP_NotFound,iDataCur,labelContinue,regKey,nKey); 789 }else{ 790 sqlite3VdbeAddOp3(v, OP_NotExists, iDataCur, labelContinue,regOldRowid); 791 } 792 VdbeCoverageNeverTaken(v); 793 } 794 795 /* Do FK constraint checks. */ 796 if( hasFK ){ 797 sqlite3FkCheck(pParse, pTab, regOldRowid, 0, aXRef, chngKey); 798 } 799 800 /* Delete the index entries associated with the current record. */ 801 sqlite3GenerateRowIndexDelete(pParse, pTab, iDataCur, iIdxCur, aRegIdx, -1); 802 803 #ifndef SQLITE_OMIT_GENERATED_COLUMNS 804 /* If pTab contains one or more virtual columns, then it is possible 805 ** (though unlikely) that no OP_Column opcodes have been run against 806 ** the table since the OP_SeekDeferred, meaning that there has not been 807 ** a seek against the cursor yet. The OP_Delete opcode and OP_Insert 808 ** opcodes that follow will be needing this seek, so code a bogus 809 ** OP_Column just to make sure the seek has been done. 810 ** See ticket ec8abb025e78f40c 2019-12-26 811 */ 812 if( eOnePass!=ONEPASS_OFF && (pTab->tabFlags & TF_HasVirtual)!=0 ){ 813 int r1 = sqlite3GetTempReg(pParse); 814 sqlite3VdbeAddOp3(v, OP_Column, iDataCur, 0, r1); 815 sqlite3VdbeChangeP5(v, OPFLAG_TYPEOFARG); 816 } 817 #endif /* SQLITE_OMIT_GENERATED_COLUMNS */ 818 819 /* If changing the rowid value, or if there are foreign key constraints 820 ** to process, delete the old record. Otherwise, add a noop OP_Delete 821 ** to invoke the pre-update hook. 822 ** 823 ** That (regNew==regnewRowid+1) is true is also important for the 824 ** pre-update hook. If the caller invokes preupdate_new(), the returned 825 ** value is copied from memory cell (regNewRowid+1+iCol), where iCol 826 ** is the column index supplied by the user. 827 */ 828 assert( regNew==regNewRowid+1 ); 829 #ifdef SQLITE_ENABLE_PREUPDATE_HOOK 830 sqlite3VdbeAddOp3(v, OP_Delete, iDataCur, 831 OPFLAG_ISUPDATE | ((hasFK>1 || chngKey) ? 0 : OPFLAG_ISNOOP), 832 regNewRowid 833 ); 834 if( eOnePass==ONEPASS_MULTI ){ 835 assert( hasFK==0 && chngKey==0 ); 836 sqlite3VdbeChangeP5(v, OPFLAG_SAVEPOSITION); 837 } 838 if( !pParse->nested ){ 839 sqlite3VdbeAppendP4(v, pTab, P4_TABLE); 840 } 841 #else 842 if( hasFK>1 || chngKey ){ 843 sqlite3VdbeAddOp2(v, OP_Delete, iDataCur, 0); 844 } 845 #endif 846 847 if( hasFK ){ 848 sqlite3FkCheck(pParse, pTab, 0, regNewRowid, aXRef, chngKey); 849 } 850 851 /* Insert the new index entries and the new record. */ 852 sqlite3CompleteInsertion( 853 pParse, pTab, iDataCur, iIdxCur, regNewRowid, aRegIdx, 854 OPFLAG_ISUPDATE | (eOnePass==ONEPASS_MULTI ? OPFLAG_SAVEPOSITION : 0), 855 0, 0 856 ); 857 858 /* Do any ON CASCADE, SET NULL or SET DEFAULT operations required to 859 ** handle rows (possibly in other tables) that refer via a foreign key 860 ** to the row just updated. */ 861 if( hasFK ){ 862 sqlite3FkActions(pParse, pTab, pChanges, regOldRowid, aXRef, chngKey); 863 } 864 } 865 866 /* Increment the row counter 867 */ 868 if( regRowCount ){ 869 sqlite3VdbeAddOp2(v, OP_AddImm, regRowCount, 1); 870 } 871 872 sqlite3CodeRowTrigger(pParse, pTrigger, TK_UPDATE, pChanges, 873 TRIGGER_AFTER, pTab, regOldRowid, onError, labelContinue); 874 875 /* Repeat the above with the next record to be updated, until 876 ** all record selected by the WHERE clause have been updated. 877 */ 878 if( eOnePass==ONEPASS_SINGLE ){ 879 /* Nothing to do at end-of-loop for a single-pass */ 880 }else if( eOnePass==ONEPASS_MULTI ){ 881 sqlite3VdbeResolveLabel(v, labelContinue); 882 sqlite3WhereEnd(pWInfo); 883 }else if( pPk ){ 884 sqlite3VdbeResolveLabel(v, labelContinue); 885 sqlite3VdbeAddOp2(v, OP_Next, iEph, addrTop); VdbeCoverage(v); 886 }else{ 887 sqlite3VdbeGoto(v, labelContinue); 888 } 889 sqlite3VdbeResolveLabel(v, labelBreak); 890 891 /* Update the sqlite_sequence table by storing the content of the 892 ** maximum rowid counter values recorded while inserting into 893 ** autoincrement tables. 894 */ 895 if( pParse->nested==0 && pParse->pTriggerTab==0 && pUpsert==0 ){ 896 sqlite3AutoincrementEnd(pParse); 897 } 898 899 /* 900 ** Return the number of rows that were changed, if we are tracking 901 ** that information. 902 */ 903 if( regRowCount ){ 904 sqlite3VdbeAddOp2(v, OP_ResultRow, regRowCount, 1); 905 sqlite3VdbeSetNumCols(v, 1); 906 sqlite3VdbeSetColName(v, 0, COLNAME_NAME, "rows updated", SQLITE_STATIC); 907 } 908 909 update_cleanup: 910 sqlite3AuthContextPop(&sContext); 911 sqlite3DbFree(db, aXRef); /* Also frees aRegIdx[] and aToOpen[] */ 912 sqlite3SrcListDelete(db, pTabList); 913 sqlite3ExprListDelete(db, pChanges); 914 sqlite3ExprDelete(db, pWhere); 915 #if defined(SQLITE_ENABLE_UPDATE_DELETE_LIMIT) 916 sqlite3ExprListDelete(db, pOrderBy); 917 sqlite3ExprDelete(db, pLimit); 918 #endif 919 return; 920 } 921 /* Make sure "isView" and other macros defined above are undefined. Otherwise 922 ** they may interfere with compilation of other functions in this file 923 ** (or in another file, if this file becomes part of the amalgamation). */ 924 #ifdef isView 925 #undef isView 926 #endif 927 #ifdef pTrigger 928 #undef pTrigger 929 #endif 930 931 #ifndef SQLITE_OMIT_VIRTUALTABLE 932 /* 933 ** Generate code for an UPDATE of a virtual table. 934 ** 935 ** There are two possible strategies - the default and the special 936 ** "onepass" strategy. Onepass is only used if the virtual table 937 ** implementation indicates that pWhere may match at most one row. 938 ** 939 ** The default strategy is to create an ephemeral table that contains 940 ** for each row to be changed: 941 ** 942 ** (A) The original rowid of that row. 943 ** (B) The revised rowid for the row. 944 ** (C) The content of every column in the row. 945 ** 946 ** Then loop through the contents of this ephemeral table executing a 947 ** VUpdate for each row. When finished, drop the ephemeral table. 948 ** 949 ** The "onepass" strategy does not use an ephemeral table. Instead, it 950 ** stores the same values (A, B and C above) in a register array and 951 ** makes a single invocation of VUpdate. 952 */ 953 static void updateVirtualTable( 954 Parse *pParse, /* The parsing context */ 955 SrcList *pSrc, /* The virtual table to be modified */ 956 Table *pTab, /* The virtual table */ 957 ExprList *pChanges, /* The columns to change in the UPDATE statement */ 958 Expr *pRowid, /* Expression used to recompute the rowid */ 959 int *aXRef, /* Mapping from columns of pTab to entries in pChanges */ 960 Expr *pWhere, /* WHERE clause of the UPDATE statement */ 961 int onError /* ON CONFLICT strategy */ 962 ){ 963 Vdbe *v = pParse->pVdbe; /* Virtual machine under construction */ 964 int ephemTab; /* Table holding the result of the SELECT */ 965 int i; /* Loop counter */ 966 sqlite3 *db = pParse->db; /* Database connection */ 967 const char *pVTab = (const char*)sqlite3GetVTable(db, pTab); 968 WhereInfo *pWInfo; 969 int nArg = 2 + pTab->nCol; /* Number of arguments to VUpdate */ 970 int regArg; /* First register in VUpdate arg array */ 971 int regRec; /* Register in which to assemble record */ 972 int regRowid; /* Register for ephem table rowid */ 973 int iCsr = pSrc->a[0].iCursor; /* Cursor used for virtual table scan */ 974 int aDummy[2]; /* Unused arg for sqlite3WhereOkOnePass() */ 975 int eOnePass; /* True to use onepass strategy */ 976 int addr; /* Address of OP_OpenEphemeral */ 977 978 /* Allocate nArg registers in which to gather the arguments for VUpdate. Then 979 ** create and open the ephemeral table in which the records created from 980 ** these arguments will be temporarily stored. */ 981 assert( v ); 982 ephemTab = pParse->nTab++; 983 addr= sqlite3VdbeAddOp2(v, OP_OpenEphemeral, ephemTab, nArg); 984 regArg = pParse->nMem + 1; 985 pParse->nMem += nArg; 986 regRec = ++pParse->nMem; 987 regRowid = ++pParse->nMem; 988 989 /* Start scanning the virtual table */ 990 pWInfo = sqlite3WhereBegin(pParse, pSrc, pWhere, 0,0,WHERE_ONEPASS_DESIRED,0); 991 if( pWInfo==0 ) return; 992 993 /* Populate the argument registers. */ 994 for(i=0; i<pTab->nCol; i++){ 995 assert( (pTab->aCol[i].colFlags & COLFLAG_GENERATED)==0 ); 996 if( aXRef[i]>=0 ){ 997 sqlite3ExprCode(pParse, pChanges->a[aXRef[i]].pExpr, regArg+2+i); 998 }else{ 999 sqlite3VdbeAddOp3(v, OP_VColumn, iCsr, i, regArg+2+i); 1000 sqlite3VdbeChangeP5(v, OPFLAG_NOCHNG);/* Enable sqlite3_vtab_nochange() */ 1001 } 1002 } 1003 if( HasRowid(pTab) ){ 1004 sqlite3VdbeAddOp2(v, OP_Rowid, iCsr, regArg); 1005 if( pRowid ){ 1006 sqlite3ExprCode(pParse, pRowid, regArg+1); 1007 }else{ 1008 sqlite3VdbeAddOp2(v, OP_Rowid, iCsr, regArg+1); 1009 } 1010 }else{ 1011 Index *pPk; /* PRIMARY KEY index */ 1012 i16 iPk; /* PRIMARY KEY column */ 1013 pPk = sqlite3PrimaryKeyIndex(pTab); 1014 assert( pPk!=0 ); 1015 assert( pPk->nKeyCol==1 ); 1016 iPk = pPk->aiColumn[0]; 1017 sqlite3VdbeAddOp3(v, OP_VColumn, iCsr, iPk, regArg); 1018 sqlite3VdbeAddOp2(v, OP_SCopy, regArg+2+iPk, regArg+1); 1019 } 1020 1021 eOnePass = sqlite3WhereOkOnePass(pWInfo, aDummy); 1022 1023 /* There is no ONEPASS_MULTI on virtual tables */ 1024 assert( eOnePass==ONEPASS_OFF || eOnePass==ONEPASS_SINGLE ); 1025 1026 if( eOnePass ){ 1027 /* If using the onepass strategy, no-op out the OP_OpenEphemeral coded 1028 ** above. */ 1029 sqlite3VdbeChangeToNoop(v, addr); 1030 sqlite3VdbeAddOp1(v, OP_Close, iCsr); 1031 }else{ 1032 /* Create a record from the argument register contents and insert it into 1033 ** the ephemeral table. */ 1034 sqlite3MultiWrite(pParse); 1035 sqlite3VdbeAddOp3(v, OP_MakeRecord, regArg, nArg, regRec); 1036 #ifdef SQLITE_DEBUG 1037 /* Signal an assert() within OP_MakeRecord that it is allowed to 1038 ** accept no-change records with serial_type 10 */ 1039 sqlite3VdbeChangeP5(v, OPFLAG_NOCHNG_MAGIC); 1040 #endif 1041 sqlite3VdbeAddOp2(v, OP_NewRowid, ephemTab, regRowid); 1042 sqlite3VdbeAddOp3(v, OP_Insert, ephemTab, regRec, regRowid); 1043 } 1044 1045 1046 if( eOnePass==ONEPASS_OFF ){ 1047 /* End the virtual table scan */ 1048 sqlite3WhereEnd(pWInfo); 1049 1050 /* Begin scannning through the ephemeral table. */ 1051 addr = sqlite3VdbeAddOp1(v, OP_Rewind, ephemTab); VdbeCoverage(v); 1052 1053 /* Extract arguments from the current row of the ephemeral table and 1054 ** invoke the VUpdate method. */ 1055 for(i=0; i<nArg; i++){ 1056 sqlite3VdbeAddOp3(v, OP_Column, ephemTab, i, regArg+i); 1057 } 1058 } 1059 sqlite3VtabMakeWritable(pParse, pTab); 1060 sqlite3VdbeAddOp4(v, OP_VUpdate, 0, nArg, regArg, pVTab, P4_VTAB); 1061 sqlite3VdbeChangeP5(v, onError==OE_Default ? OE_Abort : onError); 1062 sqlite3MayAbort(pParse); 1063 1064 /* End of the ephemeral table scan. Or, if using the onepass strategy, 1065 ** jump to here if the scan visited zero rows. */ 1066 if( eOnePass==ONEPASS_OFF ){ 1067 sqlite3VdbeAddOp2(v, OP_Next, ephemTab, addr+1); VdbeCoverage(v); 1068 sqlite3VdbeJumpHere(v, addr); 1069 sqlite3VdbeAddOp2(v, OP_Close, ephemTab, 0); 1070 }else{ 1071 sqlite3WhereEnd(pWInfo); 1072 } 1073 } 1074 #endif /* SQLITE_OMIT_VIRTUALTABLE */ 1075