diff options
author | Marius Bakke <mbakke@fastmail.com> | 2019-07-14 23:06:24 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2019-07-14 23:06:24 +0200 |
commit | bba7a77ed9ad826bcdc6d9b8a183d66a23229501 (patch) | |
tree | 7d87f8fbee6ab240f55bb7624f427ed4241716ec | |
parent | 29b85910f668d14b72b92874c47fdcf26e54a135 (diff) | |
download | guix-bba7a77ed9ad826bcdc6d9b8a183d66a23229501.tar.gz |
gnu: MariaDB: Disable the TokuDB plugin.
Fixes <https://bugs.gnu.org/35521>. Reported by Mark H Weaver <mhw@netris.org>. * gnu/packages/databases.scm (mariadb)[arguments]: Pass "-DTOKUDB_OK" in <#:configure-flags>. Enable the "innodb_fts.crash_recovery" test, which likely failed because of the high I/O load induced by TokuDB. [inputs]: Remove SNAPPY.
-rw-r--r-- | gnu/packages/databases.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 6bfeaad9a2..26f7bb8f73 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -659,6 +659,10 @@ Language.") ;; For now, disable the features that that use libarchive (xtrabackup). "-DWITH_LIBARCHIVE=OFF" + ;; Disable the TokuDB engine, because its test suite frequently fails, + ;; and loading it crashes the server: <https://bugs.gnu.org/35521>. + "-DTOKUDB_OK=OFF" + ;; Ensure the system libraries are used. "-DWITH_JEMALLOC=yes" "-DWITH_PCRE=system" @@ -706,9 +710,6 @@ Language.") ;; 2030-12-31. See <https://bugs.gnu.org/34351> for details. "main.mysqldump" - ;; XXX: Fails sporadically. - "innodb_fts.crash_recovery" - ;; FIXME: This test fails on i686: ;; -myisampack: Can't create/write to file (Errcode: 17 "File exists") ;; +myisampack: Can't create/write to file (Errcode: 17 "File exists) @@ -786,7 +787,6 @@ Language.") ("libxml2" ,libxml2) ("ncurses" ,ncurses) ("pcre" ,pcre) - ("snappy" ,snappy) ("xz" ,xz) ("zlib" ,zlib))) (propagated-inputs |