diff options
author | bar@bar.mysql.r18.ru <> | 2003-05-28 16:23:04 +0500 |
---|---|---|
committer | bar@bar.mysql.r18.ru <> | 2003-05-28 16:23:04 +0500 |
commit | 67c6703463dfd7542db7bc96faa379aaf7e4162d (patch) | |
tree | 014f51899b65b90c388c3d77676cada597fbb95e /client/mysqlimport.c | |
parent | 6b1793d2aad8395ebce3363a529814b2a547e15f (diff) | |
download | mariadb-git-67c6703463dfd7542db7bc96faa379aaf7e4162d.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; |