diff options
Diffstat (limited to 'mysql-test/t/mysqlbinlog.test')
-rw-r--r-- | mysql-test/t/mysqlbinlog.test | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/mysql-test/t/mysqlbinlog.test b/mysql-test/t/mysqlbinlog.test index d74bb1c3a80..135bc4191f6 100644 --- a/mysql-test/t/mysqlbinlog.test +++ b/mysql-test/t/mysqlbinlog.test @@ -123,19 +123,16 @@ select HEX(f) from t04; select HEX(f) from t4; # -# BUG#14157: utf8 encoding in binlog without set character_set_client -# -# BUG: -# This test only works on the MySQL-internal rpl machines. -# Needs to be fixed. Problem is that koi8r is not installed -# on many machines. +#BUG#14157: utf8 encoding in binlog without set character_set_client # flush logs; -# --exec $MYSQL --character-sets-dir=../sql/share/charsets/ --default-character-set=koi8r test -e 'create table if not exists t5 (a int); set names koi8r; create temporary table `ÑÝÉË` (a int); insert into `ÑÝÉË` values (1); insert into t5 select * from `ÑÝÉË`' +--exec $MYSQL test -e 'create table if not exists t5 (a int); set names latin1; create temporary table `äöüÄÖÜ` (a int); insert into `äöüÄÖÜ` values (1); insert into t5 select * from `äöüÄÖÜ`' -# resulted log is client charset insensitive (latin1 not koi8r) as it must be -# --exec $MYSQL_BINLOG --short-form $MYSQL_TEST_DIR/var/log/master-bin.000006 | $MYSQL --default-character-set=latin1 -#select * from t5 /* must be (1),(1) */; +# resulted binlog, parly consisting of multi-byte utf8 chars, +# must be digestable for both client and server. In 4.1 the client +# should use default-character-set same as the server. +--exec $MYSQL_BINLOG --short-form $MYSQL_TEST_DIR/var/log/master-bin.000006 | $MYSQL +select * from t5 /* must be (1),(1) */; # clean up drop table t1, t2, t03, t04, t3, t4; |