summaryrefslogtreecommitdiff
path: root/mysql-test/suite/galera/r/galera_roles.result
diff options
context:
space:
mode:
authorNirbhay Choubey <nirbhay@mariadb.com>2016-08-24 15:32:48 -0400
committerNirbhay Choubey <nirbhay@mariadb.com>2016-08-24 15:32:48 -0400
commit1b7c5dedf7266d73c9c402cefee681251aea1e18 (patch)
treed7c3fa1354ea4c991a95042eff29a9873e9f8015 /mysql-test/suite/galera/r/galera_roles.result
parentf381ad5230e0537c63ad721d39aab1681e0a213a (diff)
downloadmariadb-git-1b7c5dedf7266d73c9c402cefee681251aea1e18.tar.gz
MDEV-10566: Create role statement replicated inconsistently in Galera Cluster
In galera cluster, the definer (and thus binlog invoker) must be set for CREATE ROLE before Query_log_event is created during TOI on the originating node.
Diffstat (limited to 'mysql-test/suite/galera/r/galera_roles.result')
-rw-r--r--mysql-test/suite/galera/r/galera_roles.result41
1 files changed, 40 insertions, 1 deletions
diff --git a/mysql-test/suite/galera/r/galera_roles.result b/mysql-test/suite/galera/r/galera_roles.result
index c0cdbc0e338..d8c13758797 100644
--- a/mysql-test/suite/galera/r/galera_roles.result
+++ b/mysql-test/suite/galera/r/galera_roles.result
@@ -69,8 +69,8 @@ SET ROLE role1;
FLUSH TABLES;
SELECT * FROM mysql.roles_mapping;
Host User Role Admin_option
- role1 Y
localhost foo role1 N
+localhost root role1 Y
SHOW TABLES FROM test1;
Tables_in_test1
t1
@@ -153,4 +153,43 @@ role1
# Connect with node_1
DROP USER foo@localhost;
DROP DATABASE test1;
+#
+# MDEV-10566: Create role statement replicated inconsistently in Galera Cluster
+#
+
+# On node_1
+CREATE USER foo@localhost;
+CREATE ROLE role1;
+CREATE ROLE role2 WITH ADMIN CURRENT_USER;
+CREATE ROLE role3 WITH ADMIN foo@localhost;
+CREATE ROLE role4 WITH ADMIN role1;
+SELECT * FROM mysql.roles_mapping;
+Host User Role Admin_option
+ role1 role4 Y
+localhost foo role3 Y
+localhost root role1 Y
+localhost root role2 Y
+SELECT * FROM INFORMATION_SCHEMA.APPLICABLE_ROLES;
+GRANTEE ROLE_NAME IS_GRANTABLE
+role1 role4 YES
+root@localhost role1 YES
+root@localhost role2 YES
+
+# On node_2
+SELECT * FROM mysql.roles_mapping;
+Host User Role Admin_option
+ role1 role4 Y
+localhost foo role3 Y
+localhost root role1 Y
+localhost root role2 Y
+SELECT * FROM INFORMATION_SCHEMA.APPLICABLE_ROLES;
+GRANTEE ROLE_NAME IS_GRANTABLE
+role1 role4 YES
+root@localhost role1 YES
+root@localhost role2 YES
+DROP ROLE role1;
+DROP ROLE role2;
+DROP ROLE role3;
+DROP ROLE role4;
+DROP USER foo@localhost;
# End of test