summaryrefslogtreecommitdiff
path: root/storage/rocksdb/mysql-test/rocksdb/t/compression_zstd.test
blob: c2216f768d04faaf157482f748330a3274d66e94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--source include/have_rocksdb.inc

let $no_zstd=`select @@rocksdb_supported_compression_types NOT LIKE '%ZSTD%'`;

if ($no_zstd)
{
  -- Skip Requires RocksDB to be built with ZStandard Compression support
}

--let $restart_parameters=--rocksdb_default_cf_options=compression_per_level=kZSTDNotFinalCompression;compression_opts=-14:4:0;
--source include/restart_mysqld.inc

create table t (id int primary key) engine=rocksdb;
drop table t;