Skip to content

Commit

Permalink
MDEV-26080 fixup: fixed .result file for galera_roles test (one word …
Browse files Browse the repository at this point in the history
…must be enclosed in single quotes).
  • Loading branch information
sysprg committed Jul 23, 2021
1 parent 2820ad1 commit 4c4237e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mysql-test/suite/galera/r/galera_roles.result
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ connect foo_node_2,127.0.0.1,foo,,test,$port_2,;
connection foo_node_1;
SHOW GRANTS;
Grants for foo@localhost
GRANT role1 TO 'foo'@'localhost'
GRANT 'role1' TO 'foo'@'localhost'
GRANT USAGE ON *.* TO 'foo'@'localhost'
FLUSH TABLES;
ERROR 42000: Access denied; you need (at least one of) the RELOAD privilege(s) for this operation
Expand Down Expand Up @@ -62,7 +62,7 @@ pr1
connection foo_node_2;
SHOW GRANTS;
Grants for foo@localhost
GRANT role1 TO 'foo'@'localhost'
GRANT 'role1' TO 'foo'@'localhost'
GRANT USAGE ON *.* TO 'foo'@'localhost'
FLUSH TABLES;
ERROR 42000: Access denied; you need (at least one of) the RELOAD privilege(s) for this operation
Expand Down

0 comments on commit 4c4237e

Please sign in to comment.