File tree Expand file tree Collapse file tree 2 files changed +15
-5
lines changed Expand file tree Collapse file tree 2 files changed +15
-5
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,12 @@ Tests: smoke
3
3
# for its existence (see the list in debian/control), install it if available
4
4
# and check in the test if it's functional when it should be.
5
5
# The plugin package also already depends on the other one.
6
- Depends: mariadb-plugin-rocksdb | mariadb-server-10.7
6
+ Depends: mariadb-plugin-rocksdb | mariadb-server-10.7,
7
+ mariadb-plugin-provider-bzip2,
8
+ mariadb-plugin-provider-lz4,
9
+ mariadb-plugin-provider-lzma,
10
+ mariadb-plugin-provider-lzo,
11
+ mariadb-plugin-provider-snappy
7
12
Restrictions: allow-stderr needs-root isolation-container
8
13
9
14
Tests: upstream
Original file line number Diff line number Diff line change 38
38
# If systemd (and systemctl) is available, but the service did not start, then
39
39
# this smoke test is supposed to fail if next commands don't work.
40
40
echo " Found systemctl, continuing smoke test.."
41
+ # Compression plugins are separated from main server package
42
+ # to own packages (for example LZ4 package mariadb-plugin-provider-lz4)
43
+ # and they are installed after mariadb-server.
44
+ # which means that they don't exist if MariaDB is not restarted
45
+ systemctl restart mariadb
41
46
fi
42
47
43
48
mysql << EOT
71
76
# but disabled with '#' the options that are not available in this binary build
72
77
mariadb << EOT
73
78
SET GLOBAL innodb_compression_algorithm=lz4;
74
- # SET GLOBAL innodb_compression_algorithm=lzo;
75
- # SET GLOBAL innodb_compression_algorithm=lzma;
76
- # SET GLOBAL innodb_compression_algorithm=bzip2;
77
- # SET GLOBAL innodb_compression_algorithm=snappy;
79
+ SET GLOBAL innodb_compression_algorithm=lzo;
80
+ SET GLOBAL innodb_compression_algorithm=lzma;
81
+ SET GLOBAL innodb_compression_algorithm=bzip2;
82
+ SET GLOBAL innodb_compression_algorithm=snappy;
78
83
SET GLOBAL innodb_compression_algorithm=zlib;
79
84
SET GLOBAL innodb_compression_algorithm=none;
80
85
EOT
You can’t perform that action at this time.
0 commit comments