mirror of
https://github.com/MariaDB/server.git
synced 2025-06-13 13:01:51 +03:00
5.5 merge
This commit is contained in:
@ -639,6 +639,9 @@ INSERT INTO tmp_proxies_priv VALUES ('localhost', 'root', '', '', TRUE, '', now(
|
||||
INSERT INTO proxies_priv SELECT * FROM tmp_proxies_priv WHERE @had_proxies_priv_table=0;
|
||||
DROP TABLE tmp_proxies_priv;
|
||||
|
||||
# Convering the host name to lower case for existing users
|
||||
UPDATE user SET host=LOWER( host ) WHERE LOWER( host ) <> host;
|
||||
|
||||
# MDEV-4332 longer user names
|
||||
alter table mysql.user modify User char(80) binary not null default '';
|
||||
alter table mysql.db modify User char(80) binary not null default '';
|
||||
|
Reference in New Issue
Block a user