Changeset: 983c4e3d9223 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/983c4e3d9223
Modified Files:
        gdk/gdk_bbp.c
Branch: Dec2025
Log Message:

When dumping BATs, make distinction between two types of TRANSIENT.


diffs (12 lines):

diff --git a/gdk/gdk_bbp.c b/gdk/gdk_bbp.c
--- a/gdk/gdk_bbp.c
+++ b/gdk/gdk_bbp.c
@@ -2423,7 +2423,7 @@ BBPdump(void)
                        MT_rwlock_rdunlock(&b->thashlock);
                }
                printf(" role: %s\n",
-                      b->batRole == PERSISTENT ? "persistent" : "transient");
+                      b->batRole == PERSISTENT ? "persistent" : b->batRole == 
SYSTRANS ? "systrans" : "transient");
        }
        printf("# %d bats: mem=%zu, vm=%zu\n", n, mem, vm);
        fflush(stdout);
_______________________________________________
checkin-list mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to