1install plugin mysqlx soname "mysqlx.so";
2call mtr.add_suppression("Plugin mysqlx reported: .Failed at SSL configuration: .SSL context is not usable without certificate and private key..");
3call mtr.add_suppression("Plugin mysqlx reported: .SSL_CTX_load_verify_locations failed.");
4SELECT * FROM xplugintest.table2;
5doc	_id
6USE xplugintest;
7SHOW TABLES;
8Tables_in_xplugintest
9table1
10table2
11SELECT * FROM xplugintest.table2;
12doc	_id	$ix_t50_r_2BAA686C5604372BA51E965E6346198F5072C3D7
13{"id": "1", "_id": "1", "name": "Omar Bras"}	1	Omar Bras
14{"id": "2", "_id": "2", "name": "\"Omar Argentina\""}	2	"Omar Argentina"
15DROP DATABASE IF EXISTS xplugintest;
16UNINSTALL PLUGIN mysqlx;
17