diff options
author | Julius Goryavsky <julius.goryavsky@mariadb.com> | 2021-07-23 08:21:28 +0200 |
---|---|---|
committer | Julius Goryavsky <julius.goryavsky@mariadb.com> | 2021-07-23 08:31:32 +0200 |
commit | 4c4237e63fb9d766a99fb1d45049d6955fd7f8f2 (patch) | |
tree | 5a2d25b4ed0334704cf20b7ade5c19121d8deb2d /mysql-test/suite | |
parent | 2820ad1c226bfd3be111eecb8eedc41b8533cc06 (diff) | |
download | mariadb-git-4c4237e63fb9d766a99fb1d45049d6955fd7f8f2.tar.gz |
MDEV-26080 fixup: fixed .result file for galera_roles test (one word must be enclosed in single quotes).
Diffstat (limited to 'mysql-test/suite')
-rw-r--r-- | mysql-test/suite/galera/r/galera_roles.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/suite/galera/r/galera_roles.result b/mysql-test/suite/galera/r/galera_roles.result index bef89acfc92..d3654e4d0de 100644 --- a/mysql-test/suite/galera/r/galera_roles.result +++ b/mysql-test/suite/galera/r/galera_roles.result @@ -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 @@ -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 |