mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
MDEV-24312 master_host has 60 character limit, increase to 255 bytes
Also increase user name up to 128. The work was started by Rucha Deodhar <rucha.deodhar@mariadb.com>, contains audit plugin fixes by Alexey Botchkov <holyfoot@askmonty.org>.
This commit is contained in:
@ -22,5 +22,5 @@ alter table mysql.db modify User char(16) default "", modify Db varchar(200) def
|
||||
insert mysql.db set db=concat('=>', repeat(_utf8 'й', 200));
|
||||
flush privileges; # shouldn't crash here
|
||||
delete from mysql.db where db like '=>%';
|
||||
alter table mysql.db modify Db char(64) default "", modify User char(80) default "";
|
||||
alter table mysql.db modify Db char(64) default "", modify User char(128) default "";
|
||||
flush privileges;
|
||||
|
Reference in New Issue
Block a user