mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
b9ddeeff24
Use user's ip address when verifying privileges for SET ROLE (just like check_access() does)
13 lines
297 B
Text
13 lines
297 B
Text
create role r1;
|
|
create user foo@'127.0.0.1';
|
|
grant r1 to foo@'127.0.0.1';
|
|
show grants;
|
|
Grants for foo@127.0.0.1
|
|
GRANT r1 TO 'foo'@'127.0.0.1'
|
|
GRANT USAGE ON *.* TO 'foo'@'127.0.0.1'
|
|
set role r1;
|
|
select * from information_schema.enabled_roles;
|
|
ROLE_NAME
|
|
r1
|
|
drop user foo@'127.0.0.1';
|
|
drop role r1;
|