diff options
author | Jan Lindström <jplindst@mariadb.org> | 2014-04-15 14:28:25 +0300 |
---|---|---|
committer | Jan Lindström <jplindst@mariadb.org> | 2014-04-15 14:28:25 +0300 |
commit | 13c73c31c320877bb3a7b7035631ccdd6eee4c2a (patch) | |
tree | db2f61e2cdfb0bad0bf8929cb25fc01aa01f2504 /storage/innobase/include/srv0srv.h | |
parent | 88765c3b4d7357ed5a063abb46cabf72c26e7b32 (diff) | |
download | mariadb-git-13c73c31c320877bb3a7b7035631ccdd6eee4c2a.tar.gz |
Added support for LZO compression method.
Removed: innodb_use_lz4 configuration parameter
Added: innodb_compression_algorithm configuration parameter
0 = no compression, 1 = ZLIB, 2 = LZ4, 3 = LZO
Fixed issue with incorrect trim calculations
Diffstat (limited to 'storage/innobase/include/srv0srv.h')
-rw-r--r-- | storage/innobase/include/srv0srv.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/storage/innobase/include/srv0srv.h b/storage/innobase/include/srv0srv.h index 1d01c7821d0..cfa94242200 100644 --- a/storage/innobase/include/srv0srv.h +++ b/storage/innobase/include/srv0srv.h @@ -249,8 +249,8 @@ extern my_bool srv_use_posix_fallocate; /* Use atomic writes i.e disable doublewrite buffer */ extern my_bool srv_use_atomic_writes; -/* If this flag IS TRUE, then we use lz4 to compress/decompress pages */ -extern my_bool srv_use_lz4; +/* Compression algorithm*/ +extern long innodb_compression_algorithm; /* Number of flush threads */ #define MTFLUSH_MAX_WORKER 64 |