17 lines
675 B
Plaintext
17 lines
675 B
Plaintext
install plugin mysqlx soname "mysqlx.so";
|
|
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.");
|
|
SELECT * FROM xplugintest.table2;
|
|
doc _id
|
|
USE xplugintest;
|
|
SHOW TABLES;
|
|
Tables_in_xplugintest
|
|
table1
|
|
table2
|
|
SELECT * FROM xplugintest.table2;
|
|
doc _id $ix_t50_r_2BAA686C5604372BA51E965E6346198F5072C3D7
|
|
{"id": "1", "_id": "1", "name": "Omar Bras"} 1 Omar Bras
|
|
{"id": "2", "_id": "2", "name": "\"Omar Argentina\""} 2 "Omar Argentina"
|
|
DROP DATABASE IF EXISTS xplugintest;
|
|
UNINSTALL PLUGIN mysqlx;
|