diff options
author | danielk1977 <danielk1977@noemail.net> | 2009-02-24 10:14:40 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2009-02-24 10:14:40 +0000 |
commit | 2d2e7bd32e7267bd9fe9c40a0b5c97cace2bd17e (patch) | |
tree | be7e86a13b3a10703fb1d45fe1cb7eaa32da7a9d /src/expr.c | |
parent | a55331620e1162c2fef1fee80f0866cc0e379f46 (diff) | |
download | sqlite-2d2e7bd32e7267bd9fe9c40a0b5c97cace2bd17e.tar.gz sqlite-2d2e7bd32e7267bd9fe9c40a0b5c97cace2bd17e.zip |
Reverse commit (6315) for now. (CVS 6317)
FossilOrigin-Name: 0e7c369c23a8767b4d3e5cdd47c14716992fb71a
Diffstat (limited to 'src/expr.c')
-rw-r--r-- | src/expr.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/expr.c b/src/expr.c index 4b92d6c0f..ee3a26219 100644 --- a/src/expr.c +++ b/src/expr.c @@ -12,7 +12,7 @@ ** This file contains routines used for analyzing expressions and ** for generating VDBE code that evaluates expressions in SQLite. ** -** $Id: expr.c,v 1.415 2009/02/23 17:33:50 danielk1977 Exp $ +** $Id: expr.c,v 1.416 2009/02/24 10:14:40 danielk1977 Exp $ */ #include "sqliteInt.h" @@ -931,7 +931,6 @@ SrcList *sqlite3SrcListDup(sqlite3 *db, SrcList *p, int flags){ pNewItem->pOn = sqlite3ExprDup(db, pOldItem->pOn, flags); pNewItem->pUsing = sqlite3IdListDup(db, pOldItem->pUsing); pNewItem->colUsed = pOldItem->colUsed; - pNewItem->usesRowid = pOldItem->usesRowid; } return pNew; } |