sl@0
|
1 |
/*
|
sl@0
|
2 |
** 2001 September 15
|
sl@0
|
3 |
**
|
sl@0
|
4 |
** The author disclaims copyright to this source code. In place of
|
sl@0
|
5 |
** a legal notice, here is a blessing:
|
sl@0
|
6 |
**
|
sl@0
|
7 |
** May you do good and not evil.
|
sl@0
|
8 |
** May you find forgiveness for yourself and forgive others.
|
sl@0
|
9 |
** May you share freely, never taking more than you give.
|
sl@0
|
10 |
**
|
sl@0
|
11 |
*************************************************************************
|
sl@0
|
12 |
** This file contains C code routines that are called by the parser
|
sl@0
|
13 |
** to handle UPDATE statements.
|
sl@0
|
14 |
**
|
sl@0
|
15 |
** $Id: update.c,v 1.185 2008/10/09 18:48:31 danielk1977 Exp $
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
#include "sqliteInt.h"
|
sl@0
|
18 |
|
sl@0
|
19 |
#ifndef SQLITE_OMIT_VIRTUALTABLE
|
sl@0
|
20 |
/* Forward declaration */
|
sl@0
|
21 |
static void updateVirtualTable(
|
sl@0
|
22 |
Parse *pParse, /* The parsing context */
|
sl@0
|
23 |
SrcList *pSrc, /* The virtual table to be modified */
|
sl@0
|
24 |
Table *pTab, /* The virtual table */
|
sl@0
|
25 |
ExprList *pChanges, /* The columns to change in the UPDATE statement */
|
sl@0
|
26 |
Expr *pRowidExpr, /* Expression used to recompute the rowid */
|
sl@0
|
27 |
int *aXRef, /* Mapping from columns of pTab to entries in pChanges */
|
sl@0
|
28 |
Expr *pWhere /* WHERE clause of the UPDATE statement */
|
sl@0
|
29 |
);
|
sl@0
|
30 |
#endif /* SQLITE_OMIT_VIRTUALTABLE */
|
sl@0
|
31 |
|
sl@0
|
32 |
/*
|
sl@0
|
33 |
** The most recently coded instruction was an OP_Column to retrieve the
|
sl@0
|
34 |
** i-th column of table pTab. This routine sets the P4 parameter of the
|
sl@0
|
35 |
** OP_Column to the default value, if any.
|
sl@0
|
36 |
**
|
sl@0
|
37 |
** The default value of a column is specified by a DEFAULT clause in the
|
sl@0
|
38 |
** column definition. This was either supplied by the user when the table
|
sl@0
|
39 |
** was created, or added later to the table definition by an ALTER TABLE
|
sl@0
|
40 |
** command. If the latter, then the row-records in the table btree on disk
|
sl@0
|
41 |
** may not contain a value for the column and the default value, taken
|
sl@0
|
42 |
** from the P4 parameter of the OP_Column instruction, is returned instead.
|
sl@0
|
43 |
** If the former, then all row-records are guaranteed to include a value
|
sl@0
|
44 |
** for the column and the P4 value is not required.
|
sl@0
|
45 |
**
|
sl@0
|
46 |
** Column definitions created by an ALTER TABLE command may only have
|
sl@0
|
47 |
** literal default values specified: a number, null or a string. (If a more
|
sl@0
|
48 |
** complicated default expression value was provided, it is evaluated
|
sl@0
|
49 |
** when the ALTER TABLE is executed and one of the literal values written
|
sl@0
|
50 |
** into the sqlite_master table.)
|
sl@0
|
51 |
**
|
sl@0
|
52 |
** Therefore, the P4 parameter is only required if the default value for
|
sl@0
|
53 |
** the column is a literal number, string or null. The sqlite3ValueFromExpr()
|
sl@0
|
54 |
** function is capable of transforming these types of expressions into
|
sl@0
|
55 |
** sqlite3_value objects.
|
sl@0
|
56 |
*/
|
sl@0
|
57 |
void sqlite3ColumnDefault(Vdbe *v, Table *pTab, int i){
|
sl@0
|
58 |
if( pTab && !pTab->pSelect ){
|
sl@0
|
59 |
sqlite3_value *pValue;
|
sl@0
|
60 |
u8 enc = ENC(sqlite3VdbeDb(v));
|
sl@0
|
61 |
Column *pCol = &pTab->aCol[i];
|
sl@0
|
62 |
VdbeComment((v, "%s.%s", pTab->zName, pCol->zName));
|
sl@0
|
63 |
assert( i<pTab->nCol );
|
sl@0
|
64 |
sqlite3ValueFromExpr(sqlite3VdbeDb(v), pCol->pDflt, enc,
|
sl@0
|
65 |
pCol->affinity, &pValue);
|
sl@0
|
66 |
if( pValue ){
|
sl@0
|
67 |
sqlite3VdbeChangeP4(v, -1, (const char *)pValue, P4_MEM);
|
sl@0
|
68 |
}
|
sl@0
|
69 |
}
|
sl@0
|
70 |
}
|
sl@0
|
71 |
|
sl@0
|
72 |
/*
|
sl@0
|
73 |
** Process an UPDATE statement.
|
sl@0
|
74 |
**
|
sl@0
|
75 |
** UPDATE OR IGNORE table_wxyz SET a=b, c=d WHERE e<5 AND f NOT NULL;
|
sl@0
|
76 |
** \_______/ \________/ \______/ \________________/
|
sl@0
|
77 |
* onError pTabList pChanges pWhere
|
sl@0
|
78 |
*/
|
sl@0
|
79 |
void sqlite3Update(
|
sl@0
|
80 |
Parse *pParse, /* The parser context */
|
sl@0
|
81 |
SrcList *pTabList, /* The table in which we should change things */
|
sl@0
|
82 |
ExprList *pChanges, /* Things to be changed */
|
sl@0
|
83 |
Expr *pWhere, /* The WHERE clause. May be null */
|
sl@0
|
84 |
int onError /* How to handle constraint errors */
|
sl@0
|
85 |
){
|
sl@0
|
86 |
int i, j; /* Loop counters */
|
sl@0
|
87 |
Table *pTab; /* The table to be updated */
|
sl@0
|
88 |
int addr = 0; /* VDBE instruction address of the start of the loop */
|
sl@0
|
89 |
WhereInfo *pWInfo; /* Information about the WHERE clause */
|
sl@0
|
90 |
Vdbe *v; /* The virtual database engine */
|
sl@0
|
91 |
Index *pIdx; /* For looping over indices */
|
sl@0
|
92 |
int nIdx; /* Number of indices that need updating */
|
sl@0
|
93 |
int iCur; /* VDBE Cursor number of pTab */
|
sl@0
|
94 |
sqlite3 *db; /* The database structure */
|
sl@0
|
95 |
int *aRegIdx = 0; /* One register assigned to each index to be updated */
|
sl@0
|
96 |
int *aXRef = 0; /* aXRef[i] is the index in pChanges->a[] of the
|
sl@0
|
97 |
** an expression for the i-th column of the table.
|
sl@0
|
98 |
** aXRef[i]==-1 if the i-th column is not changed. */
|
sl@0
|
99 |
int chngRowid; /* True if the record number is being changed */
|
sl@0
|
100 |
Expr *pRowidExpr = 0; /* Expression defining the new record number */
|
sl@0
|
101 |
int openAll = 0; /* True if all indices need to be opened */
|
sl@0
|
102 |
AuthContext sContext; /* The authorization context */
|
sl@0
|
103 |
NameContext sNC; /* The name-context to resolve expressions in */
|
sl@0
|
104 |
int iDb; /* Database containing the table being updated */
|
sl@0
|
105 |
int j1; /* Addresses of jump instructions */
|
sl@0
|
106 |
int okOnePass; /* True for one-pass algorithm without the FIFO */
|
sl@0
|
107 |
|
sl@0
|
108 |
#ifndef SQLITE_OMIT_TRIGGER
|
sl@0
|
109 |
int isView; /* Trying to update a view */
|
sl@0
|
110 |
int triggers_exist = 0; /* True if any row triggers exist */
|
sl@0
|
111 |
#endif
|
sl@0
|
112 |
int iBeginAfterTrigger; /* Address of after trigger program */
|
sl@0
|
113 |
int iEndAfterTrigger; /* Exit of after trigger program */
|
sl@0
|
114 |
int iBeginBeforeTrigger; /* Address of before trigger program */
|
sl@0
|
115 |
int iEndBeforeTrigger; /* Exit of before trigger program */
|
sl@0
|
116 |
u32 old_col_mask = 0; /* Mask of OLD.* columns in use */
|
sl@0
|
117 |
u32 new_col_mask = 0; /* Mask of NEW.* columns in use */
|
sl@0
|
118 |
|
sl@0
|
119 |
int newIdx = -1; /* index of trigger "new" temp table */
|
sl@0
|
120 |
int oldIdx = -1; /* index of trigger "old" temp table */
|
sl@0
|
121 |
|
sl@0
|
122 |
/* Register Allocations */
|
sl@0
|
123 |
int regRowCount = 0; /* A count of rows changed */
|
sl@0
|
124 |
int regOldRowid; /* The old rowid */
|
sl@0
|
125 |
int regNewRowid; /* The new rowid */
|
sl@0
|
126 |
int regData; /* New data for the row */
|
sl@0
|
127 |
|
sl@0
|
128 |
sContext.pParse = 0;
|
sl@0
|
129 |
db = pParse->db;
|
sl@0
|
130 |
if( pParse->nErr || db->mallocFailed ){
|
sl@0
|
131 |
goto update_cleanup;
|
sl@0
|
132 |
}
|
sl@0
|
133 |
assert( pTabList->nSrc==1 );
|
sl@0
|
134 |
|
sl@0
|
135 |
/* Locate the table which we want to update.
|
sl@0
|
136 |
*/
|
sl@0
|
137 |
pTab = sqlite3SrcListLookup(pParse, pTabList);
|
sl@0
|
138 |
if( pTab==0 ) goto update_cleanup;
|
sl@0
|
139 |
iDb = sqlite3SchemaToIndex(pParse->db, pTab->pSchema);
|
sl@0
|
140 |
|
sl@0
|
141 |
/* Figure out if we have any triggers and if the table being
|
sl@0
|
142 |
** updated is a view
|
sl@0
|
143 |
*/
|
sl@0
|
144 |
#ifndef SQLITE_OMIT_TRIGGER
|
sl@0
|
145 |
triggers_exist = sqlite3TriggersExist(pParse, pTab, TK_UPDATE, pChanges);
|
sl@0
|
146 |
isView = pTab->pSelect!=0;
|
sl@0
|
147 |
#else
|
sl@0
|
148 |
# define triggers_exist 0
|
sl@0
|
149 |
# define isView 0
|
sl@0
|
150 |
#endif
|
sl@0
|
151 |
#ifdef SQLITE_OMIT_VIEW
|
sl@0
|
152 |
# undef isView
|
sl@0
|
153 |
# define isView 0
|
sl@0
|
154 |
#endif
|
sl@0
|
155 |
|
sl@0
|
156 |
if( sqlite3IsReadOnly(pParse, pTab, triggers_exist) ){
|
sl@0
|
157 |
goto update_cleanup;
|
sl@0
|
158 |
}
|
sl@0
|
159 |
if( sqlite3ViewGetColumnNames(pParse, pTab) ){
|
sl@0
|
160 |
goto update_cleanup;
|
sl@0
|
161 |
}
|
sl@0
|
162 |
aXRef = sqlite3DbMallocRaw(db, sizeof(int) * pTab->nCol );
|
sl@0
|
163 |
if( aXRef==0 ) goto update_cleanup;
|
sl@0
|
164 |
for(i=0; i<pTab->nCol; i++) aXRef[i] = -1;
|
sl@0
|
165 |
|
sl@0
|
166 |
/* If there are FOR EACH ROW triggers, allocate cursors for the
|
sl@0
|
167 |
** special OLD and NEW tables
|
sl@0
|
168 |
*/
|
sl@0
|
169 |
if( triggers_exist ){
|
sl@0
|
170 |
newIdx = pParse->nTab++;
|
sl@0
|
171 |
oldIdx = pParse->nTab++;
|
sl@0
|
172 |
}
|
sl@0
|
173 |
|
sl@0
|
174 |
/* Allocate a cursors for the main database table and for all indices.
|
sl@0
|
175 |
** The index cursors might not be used, but if they are used they
|
sl@0
|
176 |
** need to occur right after the database cursor. So go ahead and
|
sl@0
|
177 |
** allocate enough space, just in case.
|
sl@0
|
178 |
*/
|
sl@0
|
179 |
pTabList->a[0].iCursor = iCur = pParse->nTab++;
|
sl@0
|
180 |
for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){
|
sl@0
|
181 |
pParse->nTab++;
|
sl@0
|
182 |
}
|
sl@0
|
183 |
|
sl@0
|
184 |
/* Initialize the name-context */
|
sl@0
|
185 |
memset(&sNC, 0, sizeof(sNC));
|
sl@0
|
186 |
sNC.pParse = pParse;
|
sl@0
|
187 |
sNC.pSrcList = pTabList;
|
sl@0
|
188 |
|
sl@0
|
189 |
/* Resolve the column names in all the expressions of the
|
sl@0
|
190 |
** of the UPDATE statement. Also find the column index
|
sl@0
|
191 |
** for each column to be updated in the pChanges array. For each
|
sl@0
|
192 |
** column to be updated, make sure we have authorization to change
|
sl@0
|
193 |
** that column.
|
sl@0
|
194 |
*/
|
sl@0
|
195 |
chngRowid = 0;
|
sl@0
|
196 |
for(i=0; i<pChanges->nExpr; i++){
|
sl@0
|
197 |
if( sqlite3ResolveExprNames(&sNC, pChanges->a[i].pExpr) ){
|
sl@0
|
198 |
goto update_cleanup;
|
sl@0
|
199 |
}
|
sl@0
|
200 |
for(j=0; j<pTab->nCol; j++){
|
sl@0
|
201 |
if( sqlite3StrICmp(pTab->aCol[j].zName, pChanges->a[i].zName)==0 ){
|
sl@0
|
202 |
if( j==pTab->iPKey ){
|
sl@0
|
203 |
chngRowid = 1;
|
sl@0
|
204 |
pRowidExpr = pChanges->a[i].pExpr;
|
sl@0
|
205 |
}
|
sl@0
|
206 |
aXRef[j] = i;
|
sl@0
|
207 |
break;
|
sl@0
|
208 |
}
|
sl@0
|
209 |
}
|
sl@0
|
210 |
if( j>=pTab->nCol ){
|
sl@0
|
211 |
if( sqlite3IsRowid(pChanges->a[i].zName) ){
|
sl@0
|
212 |
chngRowid = 1;
|
sl@0
|
213 |
pRowidExpr = pChanges->a[i].pExpr;
|
sl@0
|
214 |
}else{
|
sl@0
|
215 |
sqlite3ErrorMsg(pParse, "no such column: %s", pChanges->a[i].zName);
|
sl@0
|
216 |
goto update_cleanup;
|
sl@0
|
217 |
}
|
sl@0
|
218 |
}
|
sl@0
|
219 |
#ifndef SQLITE_OMIT_AUTHORIZATION
|
sl@0
|
220 |
{
|
sl@0
|
221 |
int rc;
|
sl@0
|
222 |
rc = sqlite3AuthCheck(pParse, SQLITE_UPDATE, pTab->zName,
|
sl@0
|
223 |
pTab->aCol[j].zName, db->aDb[iDb].zName);
|
sl@0
|
224 |
if( rc==SQLITE_DENY ){
|
sl@0
|
225 |
goto update_cleanup;
|
sl@0
|
226 |
}else if( rc==SQLITE_IGNORE ){
|
sl@0
|
227 |
aXRef[j] = -1;
|
sl@0
|
228 |
}
|
sl@0
|
229 |
}
|
sl@0
|
230 |
#endif
|
sl@0
|
231 |
}
|
sl@0
|
232 |
|
sl@0
|
233 |
/* Allocate memory for the array aRegIdx[]. There is one entry in the
|
sl@0
|
234 |
** array for each index associated with table being updated. Fill in
|
sl@0
|
235 |
** the value with a register number for indices that are to be used
|
sl@0
|
236 |
** and with zero for unused indices.
|
sl@0
|
237 |
*/
|
sl@0
|
238 |
for(nIdx=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, nIdx++){}
|
sl@0
|
239 |
if( nIdx>0 ){
|
sl@0
|
240 |
aRegIdx = sqlite3DbMallocRaw(db, sizeof(Index*) * nIdx );
|
sl@0
|
241 |
if( aRegIdx==0 ) goto update_cleanup;
|
sl@0
|
242 |
}
|
sl@0
|
243 |
for(j=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, j++){
|
sl@0
|
244 |
int reg;
|
sl@0
|
245 |
if( chngRowid ){
|
sl@0
|
246 |
reg = ++pParse->nMem;
|
sl@0
|
247 |
}else{
|
sl@0
|
248 |
reg = 0;
|
sl@0
|
249 |
for(i=0; i<pIdx->nColumn; i++){
|
sl@0
|
250 |
if( aXRef[pIdx->aiColumn[i]]>=0 ){
|
sl@0
|
251 |
reg = ++pParse->nMem;
|
sl@0
|
252 |
break;
|
sl@0
|
253 |
}
|
sl@0
|
254 |
}
|
sl@0
|
255 |
}
|
sl@0
|
256 |
aRegIdx[j] = reg;
|
sl@0
|
257 |
}
|
sl@0
|
258 |
|
sl@0
|
259 |
/* Allocate a block of register used to store the change record
|
sl@0
|
260 |
** sent to sqlite3GenerateConstraintChecks(). There are either
|
sl@0
|
261 |
** one or two registers for holding the rowid. One rowid register
|
sl@0
|
262 |
** is used if chngRowid is false and two are used if chngRowid is
|
sl@0
|
263 |
** true. Following these are pTab->nCol register holding column
|
sl@0
|
264 |
** data.
|
sl@0
|
265 |
*/
|
sl@0
|
266 |
regOldRowid = regNewRowid = pParse->nMem + 1;
|
sl@0
|
267 |
pParse->nMem += pTab->nCol + 1;
|
sl@0
|
268 |
if( chngRowid ){
|
sl@0
|
269 |
regNewRowid++;
|
sl@0
|
270 |
pParse->nMem++;
|
sl@0
|
271 |
}
|
sl@0
|
272 |
regData = regNewRowid+1;
|
sl@0
|
273 |
|
sl@0
|
274 |
|
sl@0
|
275 |
/* Begin generating code.
|
sl@0
|
276 |
*/
|
sl@0
|
277 |
v = sqlite3GetVdbe(pParse);
|
sl@0
|
278 |
if( v==0 ) goto update_cleanup;
|
sl@0
|
279 |
if( pParse->nested==0 ) sqlite3VdbeCountChanges(v);
|
sl@0
|
280 |
sqlite3BeginWriteOperation(pParse, 1, iDb);
|
sl@0
|
281 |
|
sl@0
|
282 |
#ifndef SQLITE_OMIT_VIRTUALTABLE
|
sl@0
|
283 |
/* Virtual tables must be handled separately */
|
sl@0
|
284 |
if( IsVirtual(pTab) ){
|
sl@0
|
285 |
updateVirtualTable(pParse, pTabList, pTab, pChanges, pRowidExpr, aXRef,
|
sl@0
|
286 |
pWhere);
|
sl@0
|
287 |
pWhere = 0;
|
sl@0
|
288 |
pTabList = 0;
|
sl@0
|
289 |
goto update_cleanup;
|
sl@0
|
290 |
}
|
sl@0
|
291 |
#endif
|
sl@0
|
292 |
|
sl@0
|
293 |
/* Start the view context
|
sl@0
|
294 |
*/
|
sl@0
|
295 |
if( isView ){
|
sl@0
|
296 |
sqlite3AuthContextPush(pParse, &sContext, pTab->zName);
|
sl@0
|
297 |
}
|
sl@0
|
298 |
|
sl@0
|
299 |
/* Generate the code for triggers.
|
sl@0
|
300 |
*/
|
sl@0
|
301 |
if( triggers_exist ){
|
sl@0
|
302 |
int iGoto;
|
sl@0
|
303 |
|
sl@0
|
304 |
/* Create pseudo-tables for NEW and OLD
|
sl@0
|
305 |
*/
|
sl@0
|
306 |
sqlite3VdbeAddOp2(v, OP_SetNumColumns, 0, pTab->nCol);
|
sl@0
|
307 |
sqlite3VdbeAddOp2(v, OP_OpenPseudo, oldIdx, 0);
|
sl@0
|
308 |
sqlite3VdbeAddOp2(v, OP_SetNumColumns, 0, pTab->nCol);
|
sl@0
|
309 |
sqlite3VdbeAddOp2(v, OP_OpenPseudo, newIdx, 0);
|
sl@0
|
310 |
|
sl@0
|
311 |
iGoto = sqlite3VdbeAddOp2(v, OP_Goto, 0, 0);
|
sl@0
|
312 |
addr = sqlite3VdbeMakeLabel(v);
|
sl@0
|
313 |
iBeginBeforeTrigger = sqlite3VdbeCurrentAddr(v);
|
sl@0
|
314 |
if( sqlite3CodeRowTrigger(pParse, TK_UPDATE, pChanges, TRIGGER_BEFORE, pTab,
|
sl@0
|
315 |
newIdx, oldIdx, onError, addr, &old_col_mask, &new_col_mask) ){
|
sl@0
|
316 |
goto update_cleanup;
|
sl@0
|
317 |
}
|
sl@0
|
318 |
iEndBeforeTrigger = sqlite3VdbeAddOp2(v, OP_Goto, 0, 0);
|
sl@0
|
319 |
iBeginAfterTrigger = sqlite3VdbeCurrentAddr(v);
|
sl@0
|
320 |
if( sqlite3CodeRowTrigger(pParse, TK_UPDATE, pChanges, TRIGGER_AFTER, pTab,
|
sl@0
|
321 |
newIdx, oldIdx, onError, addr, &old_col_mask, &new_col_mask) ){
|
sl@0
|
322 |
goto update_cleanup;
|
sl@0
|
323 |
}
|
sl@0
|
324 |
iEndAfterTrigger = sqlite3VdbeAddOp2(v, OP_Goto, 0, 0);
|
sl@0
|
325 |
sqlite3VdbeJumpHere(v, iGoto);
|
sl@0
|
326 |
}
|
sl@0
|
327 |
|
sl@0
|
328 |
/* If we are trying to update a view, realize that view into
|
sl@0
|
329 |
** a ephemeral table.
|
sl@0
|
330 |
*/
|
sl@0
|
331 |
#if !defined(SQLITE_OMIT_VIEW) && !defined(SQLITE_OMIT_TRIGGER)
|
sl@0
|
332 |
if( isView ){
|
sl@0
|
333 |
sqlite3MaterializeView(pParse, pTab, pWhere, iCur);
|
sl@0
|
334 |
}
|
sl@0
|
335 |
#endif
|
sl@0
|
336 |
|
sl@0
|
337 |
/* Resolve the column names in all the expressions in the
|
sl@0
|
338 |
** WHERE clause.
|
sl@0
|
339 |
*/
|
sl@0
|
340 |
if( sqlite3ResolveExprNames(&sNC, pWhere) ){
|
sl@0
|
341 |
goto update_cleanup;
|
sl@0
|
342 |
}
|
sl@0
|
343 |
|
sl@0
|
344 |
/* Begin the database scan
|
sl@0
|
345 |
*/
|
sl@0
|
346 |
sqlite3VdbeAddOp2(v, OP_Null, 0, regOldRowid);
|
sl@0
|
347 |
pWInfo = sqlite3WhereBegin(pParse, pTabList, pWhere, 0,
|
sl@0
|
348 |
WHERE_ONEPASS_DESIRED);
|
sl@0
|
349 |
if( pWInfo==0 ) goto update_cleanup;
|
sl@0
|
350 |
okOnePass = pWInfo->okOnePass;
|
sl@0
|
351 |
|
sl@0
|
352 |
/* Remember the rowid of every item to be updated.
|
sl@0
|
353 |
*/
|
sl@0
|
354 |
sqlite3VdbeAddOp2(v, IsVirtual(pTab)?OP_VRowid:OP_Rowid, iCur, regOldRowid);
|
sl@0
|
355 |
if( !okOnePass ) sqlite3VdbeAddOp2(v, OP_FifoWrite, regOldRowid, 0);
|
sl@0
|
356 |
|
sl@0
|
357 |
/* End the database scan loop.
|
sl@0
|
358 |
*/
|
sl@0
|
359 |
sqlite3WhereEnd(pWInfo);
|
sl@0
|
360 |
|
sl@0
|
361 |
/* Initialize the count of updated rows
|
sl@0
|
362 |
*/
|
sl@0
|
363 |
if( db->flags & SQLITE_CountRows && !pParse->trigStack ){
|
sl@0
|
364 |
regRowCount = ++pParse->nMem;
|
sl@0
|
365 |
sqlite3VdbeAddOp2(v, OP_Integer, 0, regRowCount);
|
sl@0
|
366 |
}
|
sl@0
|
367 |
|
sl@0
|
368 |
if( !isView && !IsVirtual(pTab) ){
|
sl@0
|
369 |
/*
|
sl@0
|
370 |
** Open every index that needs updating. Note that if any
|
sl@0
|
371 |
** index could potentially invoke a REPLACE conflict resolution
|
sl@0
|
372 |
** action, then we need to open all indices because we might need
|
sl@0
|
373 |
** to be deleting some records.
|
sl@0
|
374 |
*/
|
sl@0
|
375 |
if( !okOnePass ) sqlite3OpenTable(pParse, iCur, iDb, pTab, OP_OpenWrite);
|
sl@0
|
376 |
if( onError==OE_Replace ){
|
sl@0
|
377 |
openAll = 1;
|
sl@0
|
378 |
}else{
|
sl@0
|
379 |
openAll = 0;
|
sl@0
|
380 |
for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){
|
sl@0
|
381 |
if( pIdx->onError==OE_Replace ){
|
sl@0
|
382 |
openAll = 1;
|
sl@0
|
383 |
break;
|
sl@0
|
384 |
}
|
sl@0
|
385 |
}
|
sl@0
|
386 |
}
|
sl@0
|
387 |
for(i=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, i++){
|
sl@0
|
388 |
if( openAll || aRegIdx[i]>0 ){
|
sl@0
|
389 |
KeyInfo *pKey = sqlite3IndexKeyinfo(pParse, pIdx);
|
sl@0
|
390 |
sqlite3VdbeAddOp4(v, OP_OpenWrite, iCur+i+1, pIdx->tnum, iDb,
|
sl@0
|
391 |
(char*)pKey, P4_KEYINFO_HANDOFF);
|
sl@0
|
392 |
assert( pParse->nTab>iCur+i+1 );
|
sl@0
|
393 |
}
|
sl@0
|
394 |
}
|
sl@0
|
395 |
}
|
sl@0
|
396 |
|
sl@0
|
397 |
/* Jump back to this point if a trigger encounters an IGNORE constraint. */
|
sl@0
|
398 |
if( triggers_exist ){
|
sl@0
|
399 |
sqlite3VdbeResolveLabel(v, addr);
|
sl@0
|
400 |
}
|
sl@0
|
401 |
|
sl@0
|
402 |
/* Top of the update loop */
|
sl@0
|
403 |
if( okOnePass ){
|
sl@0
|
404 |
int a1 = sqlite3VdbeAddOp1(v, OP_NotNull, regOldRowid);
|
sl@0
|
405 |
addr = sqlite3VdbeAddOp0(v, OP_Goto);
|
sl@0
|
406 |
sqlite3VdbeJumpHere(v, a1);
|
sl@0
|
407 |
}else{
|
sl@0
|
408 |
addr = sqlite3VdbeAddOp2(v, OP_FifoRead, regOldRowid, 0);
|
sl@0
|
409 |
}
|
sl@0
|
410 |
|
sl@0
|
411 |
if( triggers_exist ){
|
sl@0
|
412 |
int regRowid;
|
sl@0
|
413 |
int regRow;
|
sl@0
|
414 |
int regCols;
|
sl@0
|
415 |
|
sl@0
|
416 |
/* Make cursor iCur point to the record that is being updated.
|
sl@0
|
417 |
*/
|
sl@0
|
418 |
sqlite3VdbeAddOp3(v, OP_NotExists, iCur, addr, regOldRowid);
|
sl@0
|
419 |
|
sl@0
|
420 |
/* Generate the OLD table
|
sl@0
|
421 |
*/
|
sl@0
|
422 |
regRowid = sqlite3GetTempReg(pParse);
|
sl@0
|
423 |
regRow = sqlite3GetTempReg(pParse);
|
sl@0
|
424 |
sqlite3VdbeAddOp2(v, OP_Rowid, iCur, regRowid);
|
sl@0
|
425 |
if( !old_col_mask ){
|
sl@0
|
426 |
sqlite3VdbeAddOp2(v, OP_Null, 0, regRow);
|
sl@0
|
427 |
}else{
|
sl@0
|
428 |
sqlite3VdbeAddOp2(v, OP_RowData, iCur, regRow);
|
sl@0
|
429 |
}
|
sl@0
|
430 |
sqlite3VdbeAddOp3(v, OP_Insert, oldIdx, regRow, regRowid);
|
sl@0
|
431 |
|
sl@0
|
432 |
/* Generate the NEW table
|
sl@0
|
433 |
*/
|
sl@0
|
434 |
if( chngRowid ){
|
sl@0
|
435 |
sqlite3ExprCodeAndCache(pParse, pRowidExpr, regRowid);
|
sl@0
|
436 |
sqlite3VdbeAddOp1(v, OP_MustBeInt, regRowid);
|
sl@0
|
437 |
}else{
|
sl@0
|
438 |
sqlite3VdbeAddOp2(v, OP_Rowid, iCur, regRowid);
|
sl@0
|
439 |
}
|
sl@0
|
440 |
regCols = sqlite3GetTempRange(pParse, pTab->nCol);
|
sl@0
|
441 |
for(i=0; i<pTab->nCol; i++){
|
sl@0
|
442 |
if( i==pTab->iPKey ){
|
sl@0
|
443 |
sqlite3VdbeAddOp2(v, OP_Null, 0, regCols+i);
|
sl@0
|
444 |
continue;
|
sl@0
|
445 |
}
|
sl@0
|
446 |
j = aXRef[i];
|
sl@0
|
447 |
if( new_col_mask&((u32)1<<i) || new_col_mask==0xffffffff ){
|
sl@0
|
448 |
if( j<0 ){
|
sl@0
|
449 |
sqlite3VdbeAddOp3(v, OP_Column, iCur, i, regCols+i);
|
sl@0
|
450 |
sqlite3ColumnDefault(v, pTab, i);
|
sl@0
|
451 |
}else{
|
sl@0
|
452 |
sqlite3ExprCodeAndCache(pParse, pChanges->a[j].pExpr, regCols+i);
|
sl@0
|
453 |
}
|
sl@0
|
454 |
}else{
|
sl@0
|
455 |
sqlite3VdbeAddOp2(v, OP_Null, 0, regCols+i);
|
sl@0
|
456 |
}
|
sl@0
|
457 |
}
|
sl@0
|
458 |
sqlite3VdbeAddOp3(v, OP_MakeRecord, regCols, pTab->nCol, regRow);
|
sl@0
|
459 |
if( !isView ){
|
sl@0
|
460 |
sqlite3TableAffinityStr(v, pTab);
|
sl@0
|
461 |
sqlite3ExprCacheAffinityChange(pParse, regCols, pTab->nCol);
|
sl@0
|
462 |
}
|
sl@0
|
463 |
sqlite3ReleaseTempRange(pParse, regCols, pTab->nCol);
|
sl@0
|
464 |
/* if( pParse->nErr ) goto update_cleanup; */
|
sl@0
|
465 |
sqlite3VdbeAddOp3(v, OP_Insert, newIdx, regRow, regRowid);
|
sl@0
|
466 |
sqlite3ReleaseTempReg(pParse, regRowid);
|
sl@0
|
467 |
sqlite3ReleaseTempReg(pParse, regRow);
|
sl@0
|
468 |
|
sl@0
|
469 |
sqlite3VdbeAddOp2(v, OP_Goto, 0, iBeginBeforeTrigger);
|
sl@0
|
470 |
sqlite3VdbeJumpHere(v, iEndBeforeTrigger);
|
sl@0
|
471 |
}
|
sl@0
|
472 |
|
sl@0
|
473 |
if( !isView && !IsVirtual(pTab) ){
|
sl@0
|
474 |
/* Loop over every record that needs updating. We have to load
|
sl@0
|
475 |
** the old data for each record to be updated because some columns
|
sl@0
|
476 |
** might not change and we will need to copy the old value.
|
sl@0
|
477 |
** Also, the old data is needed to delete the old index entries.
|
sl@0
|
478 |
** So make the cursor point at the old record.
|
sl@0
|
479 |
*/
|
sl@0
|
480 |
sqlite3VdbeAddOp3(v, OP_NotExists, iCur, addr, regOldRowid);
|
sl@0
|
481 |
|
sl@0
|
482 |
/* If the record number will change, push the record number as it
|
sl@0
|
483 |
** will be after the update. (The old record number is currently
|
sl@0
|
484 |
** on top of the stack.)
|
sl@0
|
485 |
*/
|
sl@0
|
486 |
if( chngRowid ){
|
sl@0
|
487 |
sqlite3ExprCode(pParse, pRowidExpr, regNewRowid);
|
sl@0
|
488 |
sqlite3VdbeAddOp1(v, OP_MustBeInt, regNewRowid);
|
sl@0
|
489 |
}
|
sl@0
|
490 |
|
sl@0
|
491 |
/* Compute new data for this record.
|
sl@0
|
492 |
*/
|
sl@0
|
493 |
for(i=0; i<pTab->nCol; i++){
|
sl@0
|
494 |
if( i==pTab->iPKey ){
|
sl@0
|
495 |
sqlite3VdbeAddOp2(v, OP_Null, 0, regData+i);
|
sl@0
|
496 |
continue;
|
sl@0
|
497 |
}
|
sl@0
|
498 |
j = aXRef[i];
|
sl@0
|
499 |
if( j<0 ){
|
sl@0
|
500 |
sqlite3VdbeAddOp3(v, OP_Column, iCur, i, regData+i);
|
sl@0
|
501 |
sqlite3ColumnDefault(v, pTab, i);
|
sl@0
|
502 |
}else{
|
sl@0
|
503 |
sqlite3ExprCode(pParse, pChanges->a[j].pExpr, regData+i);
|
sl@0
|
504 |
}
|
sl@0
|
505 |
}
|
sl@0
|
506 |
|
sl@0
|
507 |
/* Do constraint checks
|
sl@0
|
508 |
*/
|
sl@0
|
509 |
sqlite3GenerateConstraintChecks(pParse, pTab, iCur, regNewRowid,
|
sl@0
|
510 |
aRegIdx, chngRowid, 1,
|
sl@0
|
511 |
onError, addr);
|
sl@0
|
512 |
|
sl@0
|
513 |
/* Delete the old indices for the current record.
|
sl@0
|
514 |
*/
|
sl@0
|
515 |
j1 = sqlite3VdbeAddOp3(v, OP_NotExists, iCur, 0, regOldRowid);
|
sl@0
|
516 |
sqlite3GenerateRowIndexDelete(pParse, pTab, iCur, aRegIdx);
|
sl@0
|
517 |
|
sl@0
|
518 |
/* If changing the record number, delete the old record.
|
sl@0
|
519 |
*/
|
sl@0
|
520 |
if( chngRowid ){
|
sl@0
|
521 |
sqlite3VdbeAddOp2(v, OP_Delete, iCur, 0);
|
sl@0
|
522 |
}
|
sl@0
|
523 |
sqlite3VdbeJumpHere(v, j1);
|
sl@0
|
524 |
|
sl@0
|
525 |
/* Create the new index entries and the new record.
|
sl@0
|
526 |
*/
|
sl@0
|
527 |
sqlite3CompleteInsertion(pParse, pTab, iCur, regNewRowid,
|
sl@0
|
528 |
aRegIdx, chngRowid, 1, -1, 0);
|
sl@0
|
529 |
}
|
sl@0
|
530 |
|
sl@0
|
531 |
/* Increment the row counter
|
sl@0
|
532 |
*/
|
sl@0
|
533 |
if( db->flags & SQLITE_CountRows && !pParse->trigStack){
|
sl@0
|
534 |
sqlite3VdbeAddOp2(v, OP_AddImm, regRowCount, 1);
|
sl@0
|
535 |
}
|
sl@0
|
536 |
|
sl@0
|
537 |
/* If there are triggers, close all the cursors after each iteration
|
sl@0
|
538 |
** through the loop. The fire the after triggers.
|
sl@0
|
539 |
*/
|
sl@0
|
540 |
if( triggers_exist ){
|
sl@0
|
541 |
sqlite3VdbeAddOp2(v, OP_Goto, 0, iBeginAfterTrigger);
|
sl@0
|
542 |
sqlite3VdbeJumpHere(v, iEndAfterTrigger);
|
sl@0
|
543 |
}
|
sl@0
|
544 |
|
sl@0
|
545 |
/* Repeat the above with the next record to be updated, until
|
sl@0
|
546 |
** all record selected by the WHERE clause have been updated.
|
sl@0
|
547 |
*/
|
sl@0
|
548 |
sqlite3VdbeAddOp2(v, OP_Goto, 0, addr);
|
sl@0
|
549 |
sqlite3VdbeJumpHere(v, addr);
|
sl@0
|
550 |
|
sl@0
|
551 |
/* Close all tables */
|
sl@0
|
552 |
for(i=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, i++){
|
sl@0
|
553 |
if( openAll || aRegIdx[i]>0 ){
|
sl@0
|
554 |
sqlite3VdbeAddOp2(v, OP_Close, iCur+i+1, 0);
|
sl@0
|
555 |
}
|
sl@0
|
556 |
}
|
sl@0
|
557 |
sqlite3VdbeAddOp2(v, OP_Close, iCur, 0);
|
sl@0
|
558 |
if( triggers_exist ){
|
sl@0
|
559 |
sqlite3VdbeAddOp2(v, OP_Close, newIdx, 0);
|
sl@0
|
560 |
sqlite3VdbeAddOp2(v, OP_Close, oldIdx, 0);
|
sl@0
|
561 |
}
|
sl@0
|
562 |
|
sl@0
|
563 |
/*
|
sl@0
|
564 |
** Return the number of rows that were changed. If this routine is
|
sl@0
|
565 |
** generating code because of a call to sqlite3NestedParse(), do not
|
sl@0
|
566 |
** invoke the callback function.
|
sl@0
|
567 |
*/
|
sl@0
|
568 |
if( db->flags & SQLITE_CountRows && !pParse->trigStack && pParse->nested==0 ){
|
sl@0
|
569 |
sqlite3VdbeAddOp2(v, OP_ResultRow, regRowCount, 1);
|
sl@0
|
570 |
sqlite3VdbeSetNumCols(v, 1);
|
sl@0
|
571 |
sqlite3VdbeSetColName(v, 0, COLNAME_NAME, "rows updated", P4_STATIC);
|
sl@0
|
572 |
}
|
sl@0
|
573 |
|
sl@0
|
574 |
update_cleanup:
|
sl@0
|
575 |
sqlite3AuthContextPop(&sContext);
|
sl@0
|
576 |
sqlite3DbFree(db, aRegIdx);
|
sl@0
|
577 |
sqlite3DbFree(db, aXRef);
|
sl@0
|
578 |
sqlite3SrcListDelete(db, pTabList);
|
sl@0
|
579 |
sqlite3ExprListDelete(db, pChanges);
|
sl@0
|
580 |
sqlite3ExprDelete(db, pWhere);
|
sl@0
|
581 |
return;
|
sl@0
|
582 |
}
|
sl@0
|
583 |
|
sl@0
|
584 |
#ifndef SQLITE_OMIT_VIRTUALTABLE
|
sl@0
|
585 |
/*
|
sl@0
|
586 |
** Generate code for an UPDATE of a virtual table.
|
sl@0
|
587 |
**
|
sl@0
|
588 |
** The strategy is that we create an ephemerial table that contains
|
sl@0
|
589 |
** for each row to be changed:
|
sl@0
|
590 |
**
|
sl@0
|
591 |
** (A) The original rowid of that row.
|
sl@0
|
592 |
** (B) The revised rowid for the row. (note1)
|
sl@0
|
593 |
** (C) The content of every column in the row.
|
sl@0
|
594 |
**
|
sl@0
|
595 |
** Then we loop over this ephemeral table and for each row in
|
sl@0
|
596 |
** the ephermeral table call VUpdate.
|
sl@0
|
597 |
**
|
sl@0
|
598 |
** When finished, drop the ephemeral table.
|
sl@0
|
599 |
**
|
sl@0
|
600 |
** (note1) Actually, if we know in advance that (A) is always the same
|
sl@0
|
601 |
** as (B) we only store (A), then duplicate (A) when pulling
|
sl@0
|
602 |
** it out of the ephemeral table before calling VUpdate.
|
sl@0
|
603 |
*/
|
sl@0
|
604 |
static void updateVirtualTable(
|
sl@0
|
605 |
Parse *pParse, /* The parsing context */
|
sl@0
|
606 |
SrcList *pSrc, /* The virtual table to be modified */
|
sl@0
|
607 |
Table *pTab, /* The virtual table */
|
sl@0
|
608 |
ExprList *pChanges, /* The columns to change in the UPDATE statement */
|
sl@0
|
609 |
Expr *pRowid, /* Expression used to recompute the rowid */
|
sl@0
|
610 |
int *aXRef, /* Mapping from columns of pTab to entries in pChanges */
|
sl@0
|
611 |
Expr *pWhere /* WHERE clause of the UPDATE statement */
|
sl@0
|
612 |
){
|
sl@0
|
613 |
Vdbe *v = pParse->pVdbe; /* Virtual machine under construction */
|
sl@0
|
614 |
ExprList *pEList = 0; /* The result set of the SELECT statement */
|
sl@0
|
615 |
Select *pSelect = 0; /* The SELECT statement */
|
sl@0
|
616 |
Expr *pExpr; /* Temporary expression */
|
sl@0
|
617 |
int ephemTab; /* Table holding the result of the SELECT */
|
sl@0
|
618 |
int i; /* Loop counter */
|
sl@0
|
619 |
int addr; /* Address of top of loop */
|
sl@0
|
620 |
int iReg; /* First register in set passed to OP_VUpdate */
|
sl@0
|
621 |
sqlite3 *db = pParse->db; /* Database connection */
|
sl@0
|
622 |
const char *pVtab = (const char*)pTab->pVtab;
|
sl@0
|
623 |
SelectDest dest;
|
sl@0
|
624 |
|
sl@0
|
625 |
/* Construct the SELECT statement that will find the new values for
|
sl@0
|
626 |
** all updated rows.
|
sl@0
|
627 |
*/
|
sl@0
|
628 |
pEList = sqlite3ExprListAppend(pParse, 0,
|
sl@0
|
629 |
sqlite3CreateIdExpr(pParse, "_rowid_"), 0);
|
sl@0
|
630 |
if( pRowid ){
|
sl@0
|
631 |
pEList = sqlite3ExprListAppend(pParse, pEList,
|
sl@0
|
632 |
sqlite3ExprDup(db, pRowid), 0);
|
sl@0
|
633 |
}
|
sl@0
|
634 |
assert( pTab->iPKey<0 );
|
sl@0
|
635 |
for(i=0; i<pTab->nCol; i++){
|
sl@0
|
636 |
if( aXRef[i]>=0 ){
|
sl@0
|
637 |
pExpr = sqlite3ExprDup(db, pChanges->a[aXRef[i]].pExpr);
|
sl@0
|
638 |
}else{
|
sl@0
|
639 |
pExpr = sqlite3CreateIdExpr(pParse, pTab->aCol[i].zName);
|
sl@0
|
640 |
}
|
sl@0
|
641 |
pEList = sqlite3ExprListAppend(pParse, pEList, pExpr, 0);
|
sl@0
|
642 |
}
|
sl@0
|
643 |
pSelect = sqlite3SelectNew(pParse, pEList, pSrc, pWhere, 0, 0, 0, 0, 0, 0);
|
sl@0
|
644 |
|
sl@0
|
645 |
/* Create the ephemeral table into which the update results will
|
sl@0
|
646 |
** be stored.
|
sl@0
|
647 |
*/
|
sl@0
|
648 |
assert( v );
|
sl@0
|
649 |
ephemTab = pParse->nTab++;
|
sl@0
|
650 |
sqlite3VdbeAddOp2(v, OP_OpenEphemeral, ephemTab, pTab->nCol+1+(pRowid!=0));
|
sl@0
|
651 |
|
sl@0
|
652 |
/* fill the ephemeral table
|
sl@0
|
653 |
*/
|
sl@0
|
654 |
sqlite3SelectDestInit(&dest, SRT_Table, ephemTab);
|
sl@0
|
655 |
sqlite3Select(pParse, pSelect, &dest);
|
sl@0
|
656 |
|
sl@0
|
657 |
/* Generate code to scan the ephemeral table and call VUpdate. */
|
sl@0
|
658 |
iReg = ++pParse->nMem;
|
sl@0
|
659 |
pParse->nMem += pTab->nCol+1;
|
sl@0
|
660 |
sqlite3VdbeAddOp2(v, OP_Rewind, ephemTab, 0);
|
sl@0
|
661 |
addr = sqlite3VdbeCurrentAddr(v);
|
sl@0
|
662 |
sqlite3VdbeAddOp3(v, OP_Column, ephemTab, 0, iReg);
|
sl@0
|
663 |
sqlite3VdbeAddOp3(v, OP_Column, ephemTab, (pRowid?1:0), iReg+1);
|
sl@0
|
664 |
for(i=0; i<pTab->nCol; i++){
|
sl@0
|
665 |
sqlite3VdbeAddOp3(v, OP_Column, ephemTab, i+1+(pRowid!=0), iReg+2+i);
|
sl@0
|
666 |
}
|
sl@0
|
667 |
sqlite3VtabMakeWritable(pParse, pTab);
|
sl@0
|
668 |
sqlite3VdbeAddOp4(v, OP_VUpdate, 0, pTab->nCol+2, iReg, pVtab, P4_VTAB);
|
sl@0
|
669 |
sqlite3VdbeAddOp2(v, OP_Next, ephemTab, addr);
|
sl@0
|
670 |
sqlite3VdbeJumpHere(v, addr-1);
|
sl@0
|
671 |
sqlite3VdbeAddOp2(v, OP_Close, ephemTab, 0);
|
sl@0
|
672 |
|
sl@0
|
673 |
/* Cleanup */
|
sl@0
|
674 |
sqlite3SelectDelete(db, pSelect);
|
sl@0
|
675 |
}
|
sl@0
|
676 |
#endif /* SQLITE_OMIT_VIRTUALTABLE */
|
sl@0
|
677 |
|
sl@0
|
678 |
/* Make sure "isView" gets undefined in case this file becomes part of
|
sl@0
|
679 |
** the amalgamation - so that subsequent files do not see isView as a
|
sl@0
|
680 |
** macro. */
|
sl@0
|
681 |
#undef isView
|