diff options
author | unknown <bar@bar.mysql.r18.ru> | 2003-05-28 16:23:04 +0500 |
---|---|---|
committer | unknown <bar@bar.mysql.r18.ru> | 2003-05-28 16:23:04 +0500 |
commit | eb4f5e2d6c693faecf152478cbe7e3883985548a (patch) | |
tree | 014f51899b65b90c388c3d77676cada597fbb95e /client/mysqlimport.c | |
parent | af512c8d8c196b3132266dc76c8a458f42405f31 (diff) | |
download | mariadb-git-eb4f5e2d6c693faecf152478cbe7e3883985548a.tar.gz |
--with-collation argument for configure. Now one can for example use this:
./configure --with-charset=latin1 --with-collation=latin1_danish_ci
Diffstat (limited to 'client/mysqlimport.c')
-rw-r--r-- | client/mysqlimport.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/mysqlimport.c b/client/mysqlimport.c index f247301c6dc..8ee656f23b2 100644 --- a/client/mysqlimport.c +++ b/client/mysqlimport.c @@ -44,7 +44,7 @@ static char *opt_password=0, *current_user=0, *current_host=0, *current_db=0, *fields_terminated=0, *lines_terminated=0, *enclosed=0, *opt_enclosed=0, *escaped=0, *opt_columns=0, - *default_charset= (char*) MYSQL_CHARSET; + *default_charset= (char*) MYSQL_DEFAULT_CHARSET_NAME; static uint opt_mysql_port=0; static my_string opt_mysql_unix_port=0; static my_string opt_ignore_lines=0; |