summaryrefslogtreecommitdiff
path: root/mysql-test/suite/roles/password.result
diff options
context:
space:
mode:
authorSergei Golubchik <sergii@pisem.net>2014-01-29 00:05:24 +0100
committerSergei Golubchik <sergii@pisem.net>2014-01-29 00:05:24 +0100
commit416148a4cf2d0c1796659c405fcaf421d6abe555 (patch)
tree485105fc05bf2ff4a142b1cbd4a81031c79978f6 /mysql-test/suite/roles/password.result
parent5a385146ae39f71fa5139429992eb64a7d9ec9ed (diff)
downloadmariadb-git-416148a4cf2d0c1796659c405fcaf421d6abe555.tar.gz
MDEV-5526 Assertion `proxied_user->host.length' fails on GRANT PROXY ON <role>
recognize the context better: always treat the barename as a username in the username context
Diffstat (limited to 'mysql-test/suite/roles/password.result')
-rw-r--r--mysql-test/suite/roles/password.result10
1 files changed, 5 insertions, 5 deletions
diff --git a/mysql-test/suite/roles/password.result b/mysql-test/suite/roles/password.result
index e41816bdef7..041a049ccec 100644
--- a/mysql-test/suite/roles/password.result
+++ b/mysql-test/suite/roles/password.result
@@ -1,14 +1,14 @@
create role r1;
grant select on *.* to r1 identified by 'foobar';
-ERROR 28000: Can't find any matching row in the user table
+drop user r1;
grant select on *.* to r1 identified by '';
-ERROR 28000: Can't find any matching row in the user table
+drop user r1;
grant select on mysql.user to r1 identified by password '00000000000000000000000000000000000000000';
-ERROR 28000: Can't find any matching row in the user table
+drop user r1;
grant select on *.* to r1 identified via plugin;
-ERROR 28000: Can't find any matching row in the user table
+ERROR HY000: Plugin 'plugin' is not loaded
grant select on mysql.user to r1 identified via plugin using 'param';
-ERROR 28000: Can't find any matching row in the user table
+ERROR HY000: Plugin 'plugin' is not loaded
grant select on *.* to r1 require subject 'foobar';
ERROR 28000: Can't find any matching row in the user table
grant select on mysql.user to r1 require issuer 'foobar';