Browse Source

tokudb: make compression=TOKUDB_ZLIB the default (instead of TOKUDB_UNCOMPRESSED)

for new tables
pull/374/head
Sergei Golubchik 12 years ago
parent
commit
c18fb72e71
  1. 2
      storage/tokudb/hatoku_hton.cc

2
storage/tokudb/hatoku_hton.cc

@ -270,7 +270,7 @@ ha_create_table_option tokudb_table_options[]=
{
HA_TOPTION_ENUM("compression", row_format,
"TOKUDB_UNCOMPRESSED,TOKUDB_ZLIB,TOKUDB_QUICKLZ,"
"TOKUDB_LZMA,TOKUDB_FAST,TOKUDB_SMALL", 0),
"TOKUDB_LZMA,TOKUDB_FAST,TOKUDB_SMALL", 1),
HA_TOPTION_END
};

Loading…
Cancel
Save