diff options
author | Monty <monty@mariadb.org> | 2016-06-19 15:03:13 +0300 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2016-06-19 15:03:13 +0300 |
commit | 61492ea5ddd14efd2ede257700ac4d8fba2a04e6 (patch) | |
tree | 4e6f19609d8ded2dfff1fbd10ae509d89942394d /mysql-test/suite/plugins | |
parent | 94b47bc5a531c2336b136fcdf226f83e2b2c6bac (diff) | |
download | mariadb-git-61492ea5ddd14efd2ede257700ac4d8fba2a04e6.tar.gz |
Reset user status after unix_socket.test
Fixed mysql-test-run failures for roles.acl_statistics
Diffstat (limited to 'mysql-test/suite/plugins')
-rw-r--r-- | mysql-test/suite/plugins/r/unix_socket.result | 1 | ||||
-rw-r--r-- | mysql-test/suite/plugins/t/unix_socket.test | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/mysql-test/suite/plugins/r/unix_socket.result b/mysql-test/suite/plugins/r/unix_socket.result index 45bf608cc93..0e08794fbe6 100644 --- a/mysql-test/suite/plugins/r/unix_socket.result +++ b/mysql-test/suite/plugins/r/unix_socket.result @@ -27,4 +27,5 @@ USER@localhost @% test # name does not match = failure # delete from mysql.user where user=''; +FLUSH PRIVILEGES; uninstall plugin unix_socket; diff --git a/mysql-test/suite/plugins/t/unix_socket.test b/mysql-test/suite/plugins/t/unix_socket.test index 1522c9b7cbe..bd0323c0274 100644 --- a/mysql-test/suite/plugins/t/unix_socket.test +++ b/mysql-test/suite/plugins/t/unix_socket.test @@ -55,6 +55,6 @@ grant SELECT ON test.* TO '' identified via unix_socket; # restoring mysql.user to the original state. delete from mysql.user where user=''; +FLUSH PRIVILEGES; uninstall plugin unix_socket; --remove_file $MYSQLTEST_VARDIR/tmp/peercred_test.txt - |