mariadb/mysql-test/suite/roles/grant_empty.result
Oleksandr Byelkin fafb35ee51 MDEV-20076: SHOW GRANTS does not quote role names properly
Quotes added to output.
2020-02-05 17:22:26 +01:00

16 lines
386 B
Text

grant '' to foo@localhost;
ERROR OP000: Invalid role specification ``
create user ''@localhost;
create role r1;
grant r1 to ''@localhost;
connect con1,localhost,nonexisting_user,,;
select current_user;
current_user
@localhost
show grants;
Grants for @localhost
GRANT `r1` TO ``@`localhost`
GRANT USAGE ON *.* TO ``@`localhost`
connection default;
drop role r1;
drop user ''@localhost;