1call mtr.add_suppression("Plugin mysqlx reported: .Failed at SSL configuration: .SSL context is not usable without certificate and private key..");
2call mtr.add_suppression("Plugin mysqlx reported: .SSL_CTX_load_verify_locations failed.");
3include/assert.inc [Mysqlx_bind_address global variablem shouldn't exist]
4SET @@GLOBAL.Mysqlx_bind_address=1;
5ERROR HY000: Unknown system variable 'Mysqlx_bind_address'
6#
7#
8# X Plugin started with *
9#
10#
11install plugin mysqlx soname "mysqlx.so";
12include/assert.inc [Mysqlx_bind_address global variablem must exist]
13SET @@GLOBAL.Mysqlx_bind_address=1;
14ERROR HY000: Variable 'mysqlx_bind_address' is a read only variable
15SET @@GLOBAL.Mysqlx_bind_address="1.0.1.0";
16ERROR HY000: Variable 'mysqlx_bind_address' is a read only variable
17SELECT COUNT(@@local.Mysqlx_bind_address);
18ERROR HY000: Variable 'mysqlx_bind_address' is a GLOBAL variable
19SELECT COUNT(@@SESSION.Mysqlx_bind_address);
20ERROR HY000: Variable 'mysqlx_bind_address' is a GLOBAL variable
21include/assert.inc [Mysqlx_bind_address global variable must is read-only, should hold to *]
22#
23#
24# X Plugin started with ::
25#
26#
27# restart: --loose-mysqlx-bind-address=::
28include/assert.inc [Mysqlx_bind_address global variablem must exist]
29SET @@GLOBAL.Mysqlx_bind_address=1;
30ERROR HY000: Variable 'mysqlx_bind_address' is a read only variable
31SET @@GLOBAL.Mysqlx_bind_address="1.0.1.0";
32ERROR HY000: Variable 'mysqlx_bind_address' is a read only variable
33SELECT COUNT(@@local.Mysqlx_bind_address);
34ERROR HY000: Variable 'mysqlx_bind_address' is a GLOBAL variable
35SELECT COUNT(@@SESSION.Mysqlx_bind_address);
36ERROR HY000: Variable 'mysqlx_bind_address' is a GLOBAL variable
37include/assert.inc [Mysqlx_bind_address global variable must is read-only, should hold to ::]
38UNINSTALL PLUGIN `mysqlx`;
39