diff options
author | Marius Bakke <mbakke@fastmail.com> | 2019-07-14 23:06:24 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2019-08-04 13:49:55 +0200 |
commit | f184893af0a19aa9a7979c89db6ca83cdeab1378 (patch) | |
tree | 00ee2e4b2afd06f7abfbf135ddbead7d3f015f2f /gnu | |
parent | 275cce3d87fadbf519bd2c8e9badd8bcbf9aa370 (diff) | |
download | patches-f184893af0a19aa9a7979c89db6ca83cdeab1378.tar patches-f184893af0a19aa9a7979c89db6ca83cdeab1378.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.
(cherry picked from commit bba7a77ed9ad826bcdc6d9b8a183d66a23229501)
Diffstat (limited to 'gnu')
-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 4e2db8ed44..bbb3a21b90 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 |