summaryrefslogtreecommitdiff
path: root/mysql-test/main/view_grant.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/main/view_grant.result')
-rw-r--r--mysql-test/main/view_grant.result6
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/main/view_grant.result b/mysql-test/main/view_grant.result
index 2fa898d9060..8af27de141f 100644
--- a/mysql-test/main/view_grant.result
+++ b/mysql-test/main/view_grant.result
@@ -4,12 +4,12 @@ create user test@localhost;
grant create view on test.* to test@localhost;
show grants for test@localhost;
Grants for test@localhost
-GRANT USAGE ON *.* TO 'test'@'localhost'
-GRANT CREATE VIEW ON `test`.* TO 'test'@'localhost'
+GRANT USAGE ON *.* TO `test`@`localhost`
+GRANT CREATE VIEW ON `test`.* TO `test`@`localhost`
revoke create view on test.* from test@localhost;
show grants for test@localhost;
Grants for test@localhost
-GRANT USAGE ON *.* TO 'test'@'localhost'
+GRANT USAGE ON *.* TO `test`@`localhost`
drop user test@localhost;
connect root,localhost,root,,test;
connection root;