diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2020-05-14 10:11:47 +0300 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2020-05-14 10:11:47 +0300 |
commit | 79241584962560567a353f53e92413398d38c971 (patch) | |
tree | 04ab7fceccc90b430de8c72a9969cde9920cebc2 /BUILD | |
parent | 3b251e24b6c8fe81bc5eeca086d9c1e57e6739d2 (diff) | |
download | mariadb-git-79241584962560567a353f53e92413398d38c971.tar.gz |
MDEV-19780 Remove the TokuDB storage engine
The TokuDB storage engine has been deprecated by upstream
Percona Server 8.0 in favor of MyRocks and will not be available
in subsequent major upstream releases.
Let us remove it from MariaDB Server as well.
MyRocks is actively maintained, and it can be used instead.
Diffstat (limited to 'BUILD')
-rwxr-xr-x | BUILD/SETUP.sh | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/BUILD/SETUP.sh b/BUILD/SETUP.sh index 82262098d7a..94e21df15a1 100755 --- a/BUILD/SETUP.sh +++ b/BUILD/SETUP.sh @@ -198,8 +198,6 @@ base_configs="$base_configs --with-extra-charsets=complex " base_configs="$base_configs --enable-thread-safe-client " base_configs="$base_configs --with-big-tables $maintainer_mode" base_configs="$base_configs --with-plugin-aria --with-aria-tmp-tables --with-plugin-s3=STATIC" -# Following is to get tokudb to work -base_configs="$base_configs --with-jemalloc=NO" if test -d "$path/../cmd-line-utils/readline" then @@ -303,7 +301,7 @@ gcov_compile_flags="$gcov_compile_flags -DMYSQL_SERVER_SUFFIX=-gcov -DHAVE_gcov" # # The following plugins doesn't work on 32 bit systems -disable_64_bit_plugins="--without-plugin-tokudb --without-plugin-rocksdb" +disable_64_bit_plugins="--without-plugin-rocksdb" # GCC4 needs -fprofile-arcs -ftest-coverage on the linker command line (as well |