27 lines
506 B
Plaintext
27 lines
506 B
Plaintext
## Ping
|
|
|
|
--source include/xplugin_preamble.inc
|
|
--source include/xplugin_create_user.inc
|
|
|
|
## Test starts here
|
|
--write_file $MYSQL_TMP_DIR/admin_ping.tmp
|
|
## Test data
|
|
|
|
Mysqlx.Sql.StmtExecute {
|
|
stmt: "ping"
|
|
namespace: "xplugin"
|
|
}
|
|
|
|
## expect Mysqlx.Sql.StmtExecuteOk
|
|
-->recvresult
|
|
|
|
## Cleanup
|
|
drop schema if exists xtest;
|
|
EOF
|
|
|
|
--exec $MYSQLXTEST -ux_root --password='' --file=$MYSQL_TMP_DIR/admin_ping.tmp 2>&1
|
|
|
|
## Cleanup
|
|
--remove_file $MYSQL_TMP_DIR/admin_ping.tmp
|
|
--source include/xplugin_drop_user.inc
|