Changeset: 8641e985ab6d for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=8641e985ab6d
Modified Files:
        monetdb5/mal/mal_instruction.c
Branch: default
Log Message:

Keep the scope information
In copying a MAL block also keep the scope counters.


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
@@ -850,6 +850,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

Reply via email to