Changeset: 36755134ba9d for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=36755134ba9d
Modified Files:
monetdb5/mal/mal_instruction.c
Branch: Dec2016
Log Message:
Keep the old scope values around during copying
diffs (13 lines):
diff --git a/monetdb5/mal/mal_instruction.c b/monetdb5/mal/mal_instruction.c
--- a/monetdb5/mal/mal_instruction.c
+++ b/monetdb5/mal/mal_instruction.c
@@ -856,6 +856,9 @@ copyVariable(MalBlkPtr dst, VarPtr v)
w->type = v->type;
w->flags = v->flags;
w->rowcnt = v->rowcnt;
+ w->declared = v->declared;
+ w->updated = v->updated;
+ w->eolife = v->eolife;
if (VALcopy(&w->value, &v->value) == NULL) {
GDKfree(w);
return -1;
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list