Commit 8a8e86ad authored by Julien Muchembled's avatar Julien Muchembled

NEO: fix load of TokuDB plugin with MariaDB < 10.2

This fixes a regression introduced in
commit aa5aa9e8.

plugin-load loads plugins in the given order and stops (without exiting)
on the first one that is missing. ha_rocksdb must be listed last because it's
only there when using experimental MariaDB 10.2
parent 7177d31d
...@@ -15,7 +15,7 @@ init_file = {{ parameter_dict['init-file'] }} ...@@ -15,7 +15,7 @@ init_file = {{ parameter_dict['init-file'] }}
log_warnings = 1 log_warnings = 1
disable-log-bin disable-log-bin
plugin-load = ha_rocksdb;ha_tokudb plugin-load = ha_tokudb;ha_rocksdb
## The following settings come from ERP5 configuration. ## The following settings come from ERP5 configuration.
......
...@@ -104,7 +104,7 @@ md5sum = c1cdb4289ff458545de15aca65121b80 ...@@ -104,7 +104,7 @@ md5sum = c1cdb4289ff458545de15aca65121b80
[template-neo-my-cnf] [template-neo-my-cnf]
<= download-base-neo <= download-base-neo
url = ${:_profile_base_location_}/my.cnf.in url = ${:_profile_base_location_}/my.cnf.in
md5sum = b048a7a8804ae0c9174eb4a22242deba md5sum = 87d18c7021e4d43756813a83c9da5e97
[versions] [versions]
BTrees = 4.4.1 BTrees = 4.4.1
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment