Changeset: 9e00b78471c5 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/9e00b78471c5
Modified Files:
        gdk/gdk_bat.c
Branch: Jul2021
Log Message:

Don't set heap dirty flag when setting bat count of view.


diffs (12 lines):

diff --git a/gdk/gdk_bat.c b/gdk/gdk_bat.c
--- a/gdk/gdk_bat.c
+++ b/gdk/gdk_bat.c
@@ -1755,7 +1755,7 @@ BATsetcount(BAT *b, BUN cnt)
 
        b->batCount = cnt;
        b->batDirtydesc = true;
-       b->theap->dirty |= b->ttype != TYPE_void;
+       b->theap->dirty |= b->ttype != TYPE_void && b->theap->parentid == 
b->batCacheid;
        if (b->theap->parentid == b->batCacheid)
                b->theap->free = tailsize(b, cnt);
        if (b->ttype == TYPE_void)
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to