1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

mysqlimport.c, mysqldump.c, mysqlcheck.c:

Bug fix: latin1 is not compiled charset and is not specified..
mysql.cc:
  Bug fix: latin1 is not compiled charset and is not specified...
This commit is contained in:
bar@bar.mysql.r18.ru
2003-05-22 14:37:01 +05:00
parent 944bc89561
commit b1adadd510
4 changed files with 8 additions and 4 deletions

View File

@@ -809,7 +809,8 @@ static int get_options(int argc, char **argv)
opt_reconnect= 0;
connect_flag= 0; /* Not in interactive mode */
}
if (!(charset_info= get_charset_by_name(default_charset, MYF(MY_WME))))
if (!(charset_info= get_charset_by_csname(default_charset,
MY_CS_PRIMARY, MYF(MY_WME))))
exit(1);
if (argc > 1)
{