mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 12:32:27 +01:00
e96885de92
* fully support --mysqld=--plugin-load=xxxx * uniformly support all loadable plugins, no need to hard-code every new plugin in mtr * autodetect MTR_VS_CONFIG on windows
16 lines
404 B
Text
16 lines
404 B
Text
--source include/not_embedded.inc
|
|
--source include/have_example_plugin.inc
|
|
|
|
--echo #
|
|
--echo # Bug#46261 Plugins can be installed with --skip-grant-tables
|
|
--echo #
|
|
|
|
--replace_regex /\.dll/.so/
|
|
--error ER_OPTION_PREVENTS_STATEMENT
|
|
eval INSTALL PLUGIN example SONAME '$HA_EXAMPLE_SO';
|
|
|
|
--replace_regex /\.dll/.so/
|
|
--error ER_OPTION_PREVENTS_STATEMENT
|
|
eval UNINSTALL PLUGIN example;
|
|
|
|
--echo End of 5.1 tests
|