diff options
Diffstat (limited to 'src/update.c')
-rw-r--r-- | src/update.c | 4 |
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 */ |