summaryrefslogtreecommitdiffstats
path: root/nixos/tests
diff options
context:
space:
mode:
authorIzorkin <izorkin@elven.pw>2020-07-01 16:44:21 +0300
committerIzorkin <izorkin@elven.pw>2021-01-12 17:22:47 +0300
commitd688f790ddce7dbbf5f0d5d29d5f14fb614eb7fa (patch)
treedc736a720b46f58e1e504ce3b4d1f2761be60042 /nixos/tests
parent4faa65a09c5f85a5d1e021d9d4d6993105af165c (diff)
mariadb: drop build server with tokudb storage
Diffstat (limited to 'nixos/tests')
-rw-r--r--nixos/tests/mysql/mysql.nix16
1 files changed, 1 insertions, 15 deletions
diff --git a/nixos/tests/mysql/mysql.nix b/nixos/tests/mysql/mysql.nix
index ccb69c85a550..50ad5c68aef1 100644
--- a/nixos/tests/mysql/mysql.nix
+++ b/nixos/tests/mysql/mysql.nix
@@ -98,7 +98,7 @@ import ./../make-test-python.nix ({ pkgs, ...} : {
}];
services.mysql.settings = {
mysqld = {
- plugin-load-add = [ "ha_tokudb.so" "ha_rocksdb.so" ];
+ plugin-load-add = [ "ha_rocksdb.so" ];
};
};
services.mysql.package = pkgs.mariadb;
@@ -185,19 +185,5 @@ import ./../make-test-python.nix ({ pkgs, ...} : {
mariadb.succeed(
"echo 'use testdb; drop table rocksdb;' | sudo -u testuser mysql -u testuser"
)
- '' + pkgs.lib.optionalString pkgs.stdenv.isx86_64 ''
- # Check if TokuDB plugin works
- mariadb.succeed(
- "echo 'use testdb; create table tokudb (test_id INT, PRIMARY KEY (test_id)) ENGINE = TokuDB;' | sudo -u testuser mysql -u testuser"
- )
- mariadb.succeed(
- "echo 'use testdb; insert into tokudb values (25);' | sudo -u testuser mysql -u testuser"
- )
- mariadb.succeed(
- "echo 'use testdb; select test_id from tokudb;' | sudo -u testuser mysql -u testuser -N | grep 25"
- )
- mariadb.succeed(
- "echo 'use testdb; drop table tokudb;' | sudo -u testuser mysql -u testuser"
- )
'';
})