Changeset: 108f44871d45 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=108f44871d45
Modified Files:
        gdk/gdk_align.c
Branch: Jan2014
Log Message:

Unlink imprints shared with parent.
Patch submitted by Richard Hughes.
This fixes bug 3599.


diffs (16 lines):

diff --git a/gdk/gdk_align.c b/gdk/gdk_align.c
--- a/gdk/gdk_align.c
+++ b/gdk/gdk_align.c
@@ -565,6 +565,12 @@ VIEWunlink(BAT *b)
                        b->H->hash = NULL;
                if (tpb && b->T->hash && b->T->hash == tpb->H->hash)
                        b->T->hash = NULL;
+
+               /* unlink imprints shared with parent */
+               if (hpb && b->H->imprints && b->H->imprints == hpb->H->imprints)
+                       b->H->imprints = NULL;
+               if (tpb && b->T->imprints && b->T->imprints == tpb->H->imprints)
+                       b->T->imprints = NULL;
        }
 }
 
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to