diff options
author | Alexander Barkov <bar@mysql.com> | 2009-10-23 13:31:14 +0500 |
---|---|---|
committer | Alexander Barkov <bar@mysql.com> | 2009-10-23 13:31:14 +0500 |
commit | b231187218d29ebb83560a71aae476bbb971a5e5 (patch) | |
tree | f37120f4820e56f675a3a9a783a5224eeaf1e654 /scripts | |
parent | 6be53b81ec234b29567084b2288a63aa3156dbe9 (diff) | |
download | mariadb-git-b231187218d29ebb83560a71aae476bbb971a5e5.tar.gz |
Postfix for WL#1349.
Don't do character set autodetection when running
mysql from mysql_fix_privilege_tables.
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/mysql_fix_privilege_tables.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/mysql_fix_privilege_tables.sh b/scripts/mysql_fix_privilege_tables.sh index 3b179957932..dd5edb699a0 100644 --- a/scripts/mysql_fix_privilege_tables.sh +++ b/scripts/mysql_fix_privilege_tables.sh @@ -134,7 +134,7 @@ then exit 1 fi -cmd="$bindir/mysql --no-defaults --force --user=$user --host=$host" +cmd="$bindir/mysql --no-defaults --default-character-set=latin1 --force --user=$user --host=$host" if test ! -z "$port"; then cmd="$cmd --port=$port" fi |