diff options
author | drh <drh@noemail.net> | 2003-05-31 16:21:12 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2003-05-31 16:21:12 +0000 |
commit | f26e09c87fd45fe3bb5aa4edacc9ea3f6325c884 (patch) | |
tree | 5f3a5c939757ced657ebcfbea9c0418fadb19677 /src/expr.c | |
parent | 8372b8d13442ad85ab76f6b1bf89532f45fdce59 (diff) | |
download | sqlite-f26e09c87fd45fe3bb5aa4edacc9ea3f6325c884.tar.gz sqlite-f26e09c87fd45fe3bb5aa4edacc9ea3f6325c884.zip |
Tighter binding of views, triggers, and indices to their respective
databases. Ticket #323. Much more testing needs to be done to the
sqliteFix...() routines in attach.c. (CVS 990)
FossilOrigin-Name: 7202d4f1a8853368954a967b7ccca9d8a6645a2e
Diffstat (limited to 'src/expr.c')
-rw-r--r-- | src/expr.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/expr.c b/src/expr.c index fbd15163f..d6b9b1279 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.95 2003/05/02 14:32:13 drh Exp $ +** $Id: expr.c,v 1.96 2003/05/31 16:21:12 drh Exp $ */ #include "sqliteInt.h" #include <ctype.h> @@ -191,6 +191,7 @@ SrcList *sqliteSrcListDup(SrcList *p){ if( pNew==0 ) return 0; pNew->nSrc = p->nSrc; for(i=0; i<p->nSrc; i++){ + pNew->a[i].zDatabase = sqliteStrDup(p->a[i].zDatabase); pNew->a[i].zName = sqliteStrDup(p->a[i].zName); pNew->a[i].zAlias = sqliteStrDup(p->a[i].zAlias); pNew->a[i].jointype = p->a[i].jointype; |