Browse Source

MDEV-726 - CREATE and ALTER SERVER need to lowercase host name

pull/244/head
Hartmut Holzgraefe 9 years ago
parent
commit
3234fafebf
  1. 1
      sql/sql_yacc.yy

1
sql/sql_yacc.yy

@ -2665,6 +2665,7 @@ server_option:
{
MYSQL_YYABORT_UNLESS(Lex->server_options.host.str == 0);
Lex->server_options.host= $2;
my_casedn_str(system_charset_info, Lex->server_options.host.str);
}
| DATABASE TEXT_STRING_sys
{

Loading…
Cancel
Save