Changeset: 27818c3672f7 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=27818c3672f7
Modified Files:
        monetdb5/modules/mal/xid.c
Branch: xid
Log Message:

abandon compression as soon as compressed size exceeds half (50%) of original 
size


diffs (12 lines):

diff --git a/monetdb5/modules/mal/xid.c b/monetdb5/modules/mal/xid.c
--- a/monetdb5/modules/mal/xid.c
+++ b/monetdb5/modules/mal/xid.c
@@ -29,7 +29,7 @@
 #define STR(x) #x
 
 /* maximal compressed size relative to original size */
-#define MAX_COMPRESSED_SIZE (org_size)
+#define MAX_COMPRESSED_SIZE (org_size / 2)
 
 #define XIDPOINT    0
 #define XIDSETINC   1
_______________________________________________
Checkin-list mailing list
[email protected]
http://mail.monetdb.org/mailman/listinfo/checkin-list

Reply via email to