mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
P_S 5.7.28
This commit is contained in:
@ -336,3 +336,15 @@ UPDATE performance_schema.setup_consumers SET enabled = 'YES';
|
||||
UPDATE performance_schema.setup_timers SET timer_name = 'MICROSECOND' where name="idle";
|
||||
UPDATE performance_schema.setup_timers SET timer_name = 'NANOSECOND' where name="stage";
|
||||
UPDATE performance_schema.setup_timers SET timer_name = 'NANOSECOND' where name="statement";
|
||||
|
||||
--echo #
|
||||
--echo # WL#2284: Increase the length of a user name
|
||||
--echo #
|
||||
|
||||
CREATE USER 'user_name_len_22_01234'@localhost;
|
||||
|
||||
--error ER_DBACCESS_DENIED_ERROR
|
||||
GRANT ALL ON performance_schema.* TO 'user_name_len_22_01234'@localhost with GRANT OPTION;
|
||||
|
||||
REVOKE ALL PRIVILEGES, GRANT OPTION FROM 'user_name_len_22_01234'@localhost;
|
||||
DROP USER 'user_name_len_22_01234'@localhost;
|
||||
|
Reference in New Issue
Block a user