aboutsummaryrefslogtreecommitdiff
path: root/src/update.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2002-05-21 11:38:11 +0000
committerdrh <drh@noemail.net>2002-05-21 11:38:11 +0000
commitc977f7f5968fcffbb8f35986059f396b830e40a3 (patch)
treec545a581fea4656189fe654b5824129fc33fffcb /src/update.c
parentf29ce5595883df5c035b5c6b97bf07f73eef5bc5 (diff)
downloadsqlite-c977f7f5968fcffbb8f35986059f396b830e40a3.tar.gz
sqlite-c977f7f5968fcffbb8f35986059f396b830e40a3.zip
Additional code cleanup resulting from a review of the new trigger code. (CVS 572)
FossilOrigin-Name: 37dbdd551e88440933066133ec9cc1e10b03fc1a
Diffstat (limited to 'src/update.c')
-rw-r--r--src/update.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/update.c b/src/update.c
index 48ea1b98a..95923ec18 100644
--- a/src/update.c
+++ b/src/update.c
@@ -12,7 +12,7 @@
** This file contains C code routines that are called by the parser
** to handle UPDATE statements.
**
-** $Id: update.c,v 1.39 2002/05/19 23:43:14 danielk1977 Exp $
+** $Id: update.c,v 1.40 2002/05/21 11:38:12 drh Exp $
*/
#include "sqliteInt.h"
@@ -177,7 +177,7 @@ void sqliteUpdate(
*/
v = sqliteGetVdbe(pParse);
if( v==0 ) goto update_cleanup;
- sqliteBeginMultiWriteOperation(pParse);
+ sqliteBeginWriteOperation(pParse, 1);
/* Begin the database scan
*/