35 lines
1.1 KiB
PHP
35 lines
1.1 KiB
PHP
## Script xplugin_preamble.inc
|
|
#
|
|
# $do_not_wait_for_x_interface -
|
|
# set for which interfaces the script shouldn't wait
|
|
# In default the script wait for both socket and tcp
|
|
# on *NIX OS-es and only for TCP on windows
|
|
#
|
|
# $dont_load_plugin -
|
|
# define is the script should install the plugin
|
|
# or do only pre-checks
|
|
#
|
|
## Usage
|
|
#
|
|
# --let $dont_load_plugin=1|0
|
|
# --let $wait_for_tcpsocket_status = valid_value|undefined_value|no_wait
|
|
# --let $wait_for_unixsocket_status = valid_value|undefined_value|no_wait
|
|
# --source ../include/xplugin_preamble.inc
|
|
#
|
|
|
|
source include/have_mysqlx_plugin.inc;
|
|
source include/not_embedded.inc;
|
|
|
|
--source xplugin_install_and_wait.inc
|
|
--source mysqlxtest_macro_dir.inc
|
|
|
|
call mtr.add_suppression("Plugin mysqlx reported: .Failed at SSL configuration: .SSL context is not usable without certificate and private key..");
|
|
call mtr.add_suppression("Plugin mysqlx reported: .SSL_CTX_load_verify_locations failed.");
|
|
|
|
--disable_query_log
|
|
--disable_result_log
|
|
TRUNCATE TABLE performance_schema.events_waits_history_long;
|
|
--enable_result_log
|
|
--enable_query_log
|
|
|