diff options
author | svoj@mysql.com <> | 2005-04-01 00:03:26 +0500 |
---|---|---|
committer | svoj@mysql.com <> | 2005-04-01 00:03:26 +0500 |
commit | 8cffe4c382e581bb3de9f31ed22c217bb3fe1ccf (patch) | |
tree | 23b34f8ff6ab550a75903bfa9aeab71f26b0358c /mysql-test/r/openssl_1.result | |
parent | e9205dc0f0f6e5dcc184a9e71fb85e9eec51a8a8 (diff) | |
download | mariadb-git-8cffe4c382e581bb3de9f31ed22c217bb3fe1ccf.tar.gz |
BUG#9521 fix:
openssl_1 and rpl_openssl results difference
Diffstat (limited to 'mysql-test/r/openssl_1.result')
-rw-r--r-- | mysql-test/r/openssl_1.result | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mysql-test/r/openssl_1.result b/mysql-test/r/openssl_1.result index f7cb17a1a74..035c84431f8 100644 --- a/mysql-test/r/openssl_1.result +++ b/mysql-test/r/openssl_1.result @@ -10,22 +10,22 @@ select * from t1; f1 5 delete from t1; -ERROR 42000: Access denied for user 'ssl_user1'@'localhost' to database 'test' +ERROR 42000: DELETE command denied to user 'ssl_user1'@'localhost' for table 't1' select * from t1; f1 5 delete from t1; -ERROR 42000: Access denied for user 'ssl_user2'@'localhost' to database 'test' +ERROR 42000: DELETE command denied to user 'ssl_user2'@'localhost' for table 't1' select * from t1; f1 5 delete from t1; -ERROR 42000: Access denied for user 'ssl_user3'@'localhost' to database 'test' +ERROR 42000: DELETE command denied to user 'ssl_user3'@'localhost' for table 't1' select * from t1; f1 5 delete from t1; -ERROR 42000: Access denied for user 'ssl_user4'@'localhost' to database 'test' +ERROR 42000: DELETE command denied to user 'ssl_user4'@'localhost' for table 't1' delete from mysql.user where user='ssl_user%'; delete from mysql.db where user='ssl_user%'; flush privileges; |