aboutsummaryrefslogtreecommitdiff
path: root/src/update.c
diff options
context:
space:
mode:
authordanielk1977 <danielk1977@noemail.net>2009-02-24 10:14:40 +0000
committerdanielk1977 <danielk1977@noemail.net>2009-02-24 10:14:40 +0000
commit2d2e7bd32e7267bd9fe9c40a0b5c97cace2bd17e (patch)
treebe7e86a13b3a10703fb1d45fe1cb7eaa32da7a9d /src/update.c
parenta55331620e1162c2fef1fee80f0866cc0e379f46 (diff)
downloadsqlite-2d2e7bd32e7267bd9fe9c40a0b5c97cace2bd17e.tar.gz
sqlite-2d2e7bd32e7267bd9fe9c40a0b5c97cace2bd17e.zip
Reverse commit (6315) for now. (CVS 6317)
FossilOrigin-Name: 0e7c369c23a8767b4d3e5cdd47c14716992fb71a
Diffstat (limited to 'src/update.c')
-rw-r--r--src/update.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/update.c b/src/update.c
index 8cfbf3a98..b377ee98c 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.194 2009/02/23 17:33:50 danielk1977 Exp $
+** $Id: update.c,v 1.195 2009/02/24 10:14:40 danielk1977 Exp $
*/
#include "sqliteInt.h"
@@ -343,7 +343,6 @@ void sqlite3Update(
/* Begin the database scan
*/
sqlite3VdbeAddOp2(v, OP_Null, 0, regOldRowid);
- pTabList->a[0].usesRowid = 1;
pWInfo = sqlite3WhereBegin(pParse, pTabList, pWhere, 0,
WHERE_ONEPASS_DESIRED, 0);
if( pWInfo==0 ) goto update_cleanup;