diff options
author | drh <drh@noemail.net> | 2002-05-21 11:38:11 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2002-05-21 11:38:11 +0000 |
commit | c977f7f5968fcffbb8f35986059f396b830e40a3 (patch) | |
tree | c545a581fea4656189fe654b5824129fc33fffcb /src/update.c | |
parent | f29ce5595883df5c035b5c6b97bf07f73eef5bc5 (diff) | |
download | sqlite-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.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 */ |