Changeset: 873825d4bdf7 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=873825d4bdf7
Modified Files:
        gdk/gdk_storage.c
Branch: default
Log Message:

Never sync BATs with heaps in transient farm.


diffs (17 lines):

diff --git a/gdk/gdk_storage.c b/gdk/gdk_storage.c
--- a/gdk/gdk_storage.c
+++ b/gdk/gdk_storage.c
@@ -658,6 +658,13 @@ BATmsyncImplementation(void *arg)
 void
 BATmsync(BAT *b)
 {
+       /* we don't sync views */
+       if (isVIEW(b))
+               return;
+       /* we don't sync transients */
+       if (b->theap.farmid != 0 ||
+           (b->tvheap != NULL && b->tvheap->farmid != 0))
+               return;
 #ifndef DISABLE_MSYNC
 #ifdef MS_ASYNC
        if (b->theap.storage == STORE_MMAP)
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to