diff options
author | Sergey Vojtovich <svoj@mariadb.org> | 2019-03-26 00:42:57 +0400 |
---|---|---|
committer | Sergey Vojtovich <svoj@mariadb.org> | 2019-03-26 00:56:41 +0400 |
commit | e8907112790475772b3e5135b58ef95b3fd8ea68 (patch) | |
tree | 77cb0b21a350fe37a6b70133dc54000d2d5ca30d /mysql-test/suite/plugins | |
parent | cfe0fe1ad1f7c75102285d445c3ba8167f5b9c44 (diff) | |
download | mariadb-git-e8907112790475772b3e5135b58ef95b3fd8ea68.tar.gz |
Fixed ps-protocol thread_pool_server_audit failure
By applying 7bd258c.
Diffstat (limited to 'mysql-test/suite/plugins')
-rw-r--r-- | mysql-test/suite/plugins/t/thread_pool_server_audit.test | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/suite/plugins/t/thread_pool_server_audit.test b/mysql-test/suite/plugins/t/thread_pool_server_audit.test index 724000c9789..7347d8f99ff 100644 --- a/mysql-test/suite/plugins/t/thread_pool_server_audit.test +++ b/mysql-test/suite/plugins/t/thread_pool_server_audit.test @@ -42,8 +42,10 @@ select 1, 3; insert into t2 values (1), (2); select * from t2; +--disable_ps_protocol --error ER_NO_SUCH_TABLE select * from t_doesnt_exist; +--enable_ps_protocol --error 1064 syntax_error_query; drop table renamed_t1, t2; |