diff options
author | unknown <msvensson@pilot.blaudden> | 2007-02-19 17:41:01 +0100 |
---|---|---|
committer | unknown <msvensson@pilot.blaudden> | 2007-02-19 17:41:01 +0100 |
commit | 4ee96f8c52350ecc08dc44d5ac19719e3bfda12e (patch) | |
tree | 69fae99ce4a2ba89f55ad51b6376fb2b5168ace1 /mysql-test/t/mysqlbinlog.test | |
parent | 9e5efc371a998f383d010fc39ccbea105eda2705 (diff) | |
parent | 2b46c20a7d722c3654d5bf219a837a28c84cc1b3 (diff) | |
download | mariadb-git-4ee96f8c52350ecc08dc44d5ac19719e3bfda12e.tar.gz |
Merge pilot.blaudden:/home/msvensson/mysql/mysql-5.0-maint
into pilot.blaudden:/home/msvensson/mysql/mysql-5.1-new-maint
mysql-test/t/mysqlbinlog.test:
Auto merged
Diffstat (limited to 'mysql-test/t/mysqlbinlog.test')
-rw-r--r-- | mysql-test/t/mysqlbinlog.test | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/mysql-test/t/mysqlbinlog.test b/mysql-test/t/mysqlbinlog.test index 8c5d5f772fc..312c33c3354 100644 --- a/mysql-test/t/mysqlbinlog.test +++ b/mysql-test/t/mysqlbinlog.test @@ -132,7 +132,15 @@ drop table t3,t4,t03,t04; #BUG#14157: utf8 encoding in binlog without set character_set_client # flush logs; ---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 `漩周`' +--write_file $MYSQLTEST_VARDIR/tmp/bug14157.sql +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 `漩周` +EOF +--exec $MYSQL test < $MYSQLTEST_VARDIR/tmp/bug14157.sql +--remove_file $MYSQLTEST_VARDIR/tmp/bug14157.sql # resulted binlog, parly consisting of multi-byte utf8 chars, # must be digestable for both client and server. In 4.1 the client |