diff options
Diffstat (limited to 'mysql-test/r/create_drop_role.result')
-rw-r--r-- | mysql-test/r/create_drop_role.result | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/r/create_drop_role.result b/mysql-test/r/create_drop_role.result index 6e05900264d..498dd4c1c02 100644 --- a/mysql-test/r/create_drop_role.result +++ b/mysql-test/r/create_drop_role.result @@ -43,6 +43,8 @@ CREATE USER u1@localhost; REVOKE SHOW DATABASES ON *.* FROM 'u1'@'localhost'; GRANT SHOW DATABASES ON *.* TO role_1; GRANT role_1 TO u1@localhost; +connect user_a, localhost, u1,,; +connection user_a; SELECT CURRENT_USER; CURRENT_USER u1@localhost @@ -65,6 +67,8 @@ mysql performance_schema test SET ROLE NONE; +connect user_b, localhost, root,,; +connection user_b; # Clearing up DROP ROLE role_1; DROP ROLE IF EXISTS role_1; |