mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 04:22:27 +01:00
d2dddbff4e
- Used single quotes, back quotes are used with commit
fafb35ee51
in 10.3 and will be changed.
Reviewed by: serg@mariadb.org
15 lines
350 B
Text
15 lines
350 B
Text
create role r1;
|
|
create user foo@'127.0.0.1';
|
|
grant r1 to foo@'127.0.0.1';
|
|
connect con1,127.0.0.1,foo,,;
|
|
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
|
|
connection default;
|
|
drop user foo@'127.0.0.1';
|
|
drop role r1;
|