diff options
author | Bjorn Munch <bjorn.munch@oracle.com> | 2010-11-17 11:16:13 +0100 |
---|---|---|
committer | Bjorn Munch <bjorn.munch@oracle.com> | 2010-11-17 11:16:13 +0100 |
commit | ef4458af0741dd18a407eff47ede481c816e8f07 (patch) | |
tree | 4232e7417004f49b782c05a7406b4cc2f1ed845a /mysql-test/t/change_user.test | |
parent | 49ce7daa947bb156daf92cd101495cfe33993afa (diff) | |
download | mariadb-git-ef4458af0741dd18a407eff47ede481c816e8f07.tar.gz |
Tests: many if/while expresissons simplified after 57276
Diffstat (limited to 'mysql-test/t/change_user.test')
-rw-r--r-- | mysql-test/t/change_user.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/change_user.test b/mysql-test/t/change_user.test index ed2e1d05f86..1879dbc53cf 100644 --- a/mysql-test/t/change_user.test +++ b/mysql-test/t/change_user.test @@ -117,7 +117,7 @@ let $before= query_get_value(SHOW GLOBAL STATUS LIKE 'com_select',Value,1); let $after= query_get_value(SHOW GLOBAL STATUS LIKE 'com_select',Value,1); -if (`select $after != $before`){ +if ($after != $before){ SHOW GLOBAL STATUS LIKE 'com_select'; die The value of com_select changed during change_user; } |