Changeset: df247816b0c5 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=df247816b0c5
Modified Files:
gdk/gdk_bat.c
Branch: compressedcandidates
Log Message:
Limit property testing on bit-vector types.
diffs (13 lines):
diff --git a/gdk/gdk_bat.c b/gdk/gdk_bat.c
--- a/gdk/gdk_bat.c
+++ b/gdk/gdk_bat.c
@@ -2049,6 +2049,9 @@ BATassertProps(BAT *b)
assert(b->theap.size >> b->tshift >= b->batCapacity);
}
+ /* ignore the properties for bit-vector candidates */
+ if (b->ttype == TYPE_msk)
+ return;
/* void and str imply varsized */
if (b->ttype == TYPE_void ||
ATOMstorage(b->ttype) == TYPE_str)
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list