diff options
author | Michael Cahill <michael.cahill@mongodb.com> | 2016-02-11 12:05:59 +1100 |
---|---|---|
committer | Michael Cahill <michael.cahill@mongodb.com> | 2016-02-11 12:05:59 +1100 |
commit | bc929dbcf1126521007afcbfff98a66df28b8073 (patch) | |
tree | e93af96f38d68288598009953f00328708052a6a /test/format/format.h | |
parent | 07966a492ada9b85cd45af9248abd85ca47f2ff2 (diff) | |
parent | cc96d990bb19eade8b304f102c1eea35416c240c (diff) | |
download | mongo-bc929dbcf1126521007afcbfff98a66df28b8073.tar.gz |
Merge branch 'mongodb-3.4' into mongodb-3.2
Diffstat (limited to 'test/format/format.h')
-rw-r--r-- | test/format/format.h | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/test/format/format.h b/test/format/format.h index bf4d1c0a277..41c9de3dd30 100644 --- a/test/format/format.h +++ b/test/format/format.h @@ -64,8 +64,6 @@ #define EXTPATH "../../ext/" /* Extensions path */ -#define BZIP_PATH \ - EXTPATH "compressors/bzip2/.libs/libwiredtiger_bzip2.so" #define LZ4_PATH \ EXTPATH "compressors/lz4/.libs/libwiredtiger_lz4.so" #define SNAPPY_PATH \ @@ -241,14 +239,12 @@ typedef struct { u_int c_checksum_flag; /* Checksum flag value */ #define COMPRESS_NONE 1 -#define COMPRESS_BZIP 2 -#define COMPRESS_BZIP_RAW 3 -#define COMPRESS_LZ4 4 -#define COMPRESS_LZ4_NO_RAW 5 -#define COMPRESS_LZO 6 -#define COMPRESS_SNAPPY 7 -#define COMPRESS_ZLIB 8 -#define COMPRESS_ZLIB_NO_RAW 9 +#define COMPRESS_LZ4 2 +#define COMPRESS_LZ4_NO_RAW 3 +#define COMPRESS_LZO 4 +#define COMPRESS_SNAPPY 5 +#define COMPRESS_ZLIB 6 +#define COMPRESS_ZLIB_NO_RAW 7 u_int c_compression_flag; /* Compression flag value */ u_int c_logging_compression_flag; /* Log compression flag value */ |