diff options
author | unknown <bar@mysql.com> | 2004-12-23 13:52:25 +0400 |
---|---|---|
committer | unknown <bar@mysql.com> | 2004-12-23 13:52:25 +0400 |
commit | 7199d9f4d32e2a9fbe87a06e7116e199a13f185c (patch) | |
tree | 3421b74af3b3ed41d9ba52449c7ad30a7ea69512 /mysql-test/t/mysqldump.test | |
parent | 7901cd306a6dcbb0863411ce68709f450e69d5aa (diff) | |
download | mariadb-git-7199d9f4d32e2a9fbe87a06e7116e199a13f185c.tar.gz |
Take charsets from the source directory rather than
from the install directory.
Diffstat (limited to 'mysql-test/t/mysqldump.test')
-rw-r--r-- | mysql-test/t/mysqldump.test | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mysql-test/t/mysqldump.test b/mysql-test/t/mysqldump.test index 7a6c1564e94..07b33689196 100644 --- a/mysql-test/t/mysqldump.test +++ b/mysql-test/t/mysqldump.test @@ -147,9 +147,9 @@ drop database mysqldump_test_db; CREATE TABLE t1 (a CHAR(10)); INSERT INTO t1 VALUES (_latin1 'ÄÖÜß'); ---exec $MYSQL_DUMP --skip-comments test t1 ---exec $MYSQL_DUMP --skip-comments --compatible=mysql323 test t1 ---exec $MYSQL_DUMP --skip-comments --compatible=mysql323 --default-character-set=cp850 test t1 ---exec $MYSQL_DUMP --skip-comments --default-character-set=cp850 --compatible=mysql323 test t1 ---exec $MYSQL_DUMP --skip-comments --default-character-set=utf8 --compatible=mysql323 test t1 +--exec $MYSQL_DUMP --character-sets-dir=$CHARSETSDIR --skip-comments test t1 +--exec $MYSQL_DUMP --character-sets-dir=$CHARSETSDIR --skip-comments --compatible=mysql323 test t1 +--exec $MYSQL_DUMP --character-sets-dir=$CHARSETSDIR --skip-comments --compatible=mysql323 --default-character-set=cp850 test t1 +--exec $MYSQL_DUMP --character-sets-dir=$CHARSETSDIR --skip-comments --default-character-set=cp850 --compatible=mysql323 test t1 +--exec $MYSQL_DUMP --character-sets-dir=$CHARSETSDIR --skip-comments --default-character-set=utf8 --compatible=mysql323 test t1 DROP TABLE t1; |