Changeset: 3961ee6f6b3d for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/3961ee6f6b3d
Modified Files:
gdk/gdk_bat.c
Branch: Jun2023
Log Message:
Fix assertion.
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
@@ -2718,7 +2718,7 @@ BATassertProps(BAT *b)
} else {
if (b->tvheap != NULL) {
/* candidate list with exceptions */
- assert(b->batRole == TRANSIENT);
+ assert(b->batRole == TRANSIENT || b->batRole ==
SYSTRANS);
assert(b->tvheap->free <= b->tvheap->size);
assert(b->tvheap->free >= sizeof(ccand_t));
assert((negoid_cand(b) && ccand_free(b) %
SIZEOF_OID == 0) || mask_cand(b));
_______________________________________________
checkin-list mailing list -- [email protected]
To unsubscribe send an email to [email protected]