MDEV-19780 Remove the TokuDB storage engine

disable tokudb, because it's being deprecated by the vendor
This commit is contained in:
Sergei Golubchik 2019-08-16 11:35:06 +02:00
parent 5931a45890
commit 85bef794f7
2 changed files with 3 additions and 0 deletions

View File

@ -106,6 +106,8 @@ then
sed '/Package: mariadb-plugin-cassandra/,/^$/d' -i debian/control
fi
sed -i -e "/Package: mariadb-plugin-tokudb/,/^$/d" debian/control
# Mroonga, TokuDB never built on Travis CI anyway, see build flags above
if [[ $TRAVIS ]]
then

View File

@ -38,6 +38,7 @@ SET(TOKUDB_SOURCES
tokudb_thread.cc
tokudb_dir_cmd.cc)
MYSQL_ADD_PLUGIN(tokudb ${TOKUDB_SOURCES} STORAGE_ENGINE MODULE_ONLY
DISABLED
COMPONENT tokudb-engine CONFIG ${CMAKE_CURRENT_BINARY_DIR}/tokudb.cnf)
IF(NOT TARGET tokudb)