22 lines
813 B
Plaintext
22 lines
813 B
Plaintext
--echo #
|
|
--echo # Bug #28575863 MEMCACHED PLUGIN VARIABLES CRASHES THE SERVER --DAEMON_MEMCACHED_ENGINE_LIB=""
|
|
--echo #
|
|
source include/not_valgrind.inc;
|
|
source include/have_memcached_plugin.inc;
|
|
source include/not_windows.inc;
|
|
|
|
|
|
--let $memcached_address=127.0.0.1:11253
|
|
--source ../include/load_daemon_memcached_expecting_error.inc
|
|
|
|
--let SEARCH_FILE = $MYSQLTEST_VARDIR/log/memc253_empty_opts.err
|
|
|
|
# TODO: Our current way of error handling causes the plugin to appear as ACTIVE
|
|
# regardless of daemon_memcached_main() return value (false, 0, NULL, 1, EXIT_SUCCESS)
|
|
SELECT PLUGIN_STATUS FROM information_schema.plugins WHERE PLUGIN_NAME="daemon_memcached";
|
|
|
|
--let SEARCH_PATTERN = Failed to open library "/innodb_engine.so":
|
|
--source include/search_pattern_multiline.inc
|
|
|
|
UNINSTALL PLUGIN daemon_memcached;
|