summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorunknown <aelkin@dl145h.mysql.com>2006-05-24 16:55:04 +0200
committerunknown <aelkin@dl145h.mysql.com>2006-05-24 16:55:04 +0200
commitf1c8dab368daa36edc93dd8ec9444215946b6509 (patch)
tree1c8ae533752ce0632239115322c3d1eea4c4bb90
parent625e582481499ee62cc78165584980c7099a33cb (diff)
parent85528e63a66f3f8fc335428b0104b17ea4250450 (diff)
downloadmariadb-git-f1c8dab368daa36edc93dd8ec9444215946b6509.tar.gz
Merge aelkin@bk-internal.mysql.com:/home/bk/mysql-4.1
into dl145h.mysql.com:/tmp/andrei/4.1-bug14157-utf8_binlog_testcases
-rw-r--r--mysql-test/t/mysqlbinlog.test8
1 files changed, 5 insertions, 3 deletions
diff --git a/mysql-test/t/mysqlbinlog.test b/mysql-test/t/mysqlbinlog.test
index 6e3daaef0c3..bf966c2ef64 100644
--- a/mysql-test/t/mysqlbinlog.test
+++ b/mysql-test/t/mysqlbinlog.test
@@ -118,10 +118,12 @@ select HEX(f) from t4;
#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 koi8r; 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
+# 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