mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
MDEV-20076: SHOW GRANTS does not quote role names properly
Quotes added to output.
This commit is contained in:
@ -194,8 +194,8 @@ use mysqltest_db1;
|
||||
GRANT DELETE ON mysqltest_db1.* TO mysqltest_u1@localhost;
|
||||
SHOW GRANTS FOR mysqltest_u1@localhost;
|
||||
Grants for mysqltest_u1@localhost
|
||||
GRANT USAGE ON *.* TO 'mysqltest_u1'@'localhost'
|
||||
GRANT DELETE, TRIGGER ON `mysqltest_db1`.* TO 'mysqltest_u1'@'localhost'
|
||||
GRANT USAGE ON *.* TO `mysqltest_u1`@`localhost`
|
||||
GRANT DELETE, TRIGGER ON `mysqltest_db1`.* TO `mysqltest_u1`@`localhost`
|
||||
connection bug15166_u1_con;
|
||||
use mysqltest_db1;
|
||||
CREATE TRIGGER t1_trg_after_delete AFTER DELETE ON t1
|
||||
|
Reference in New Issue
Block a user