diff options
author | aelkin@mysql.com <> | 2006-05-16 16:50:05 +0300 |
---|---|---|
committer | aelkin@mysql.com <> | 2006-05-16 16:50:05 +0300 |
commit | 713d17d5e7a8e496cc4a1596ae22bfe55951d18f (patch) | |
tree | 059c88192d47181223b94a8a1b3a98de73ff13fe /mysql-test | |
parent | da44e731ccb35048e8cde63a82b9a53c70dcebac (diff) | |
download | mariadb-git-713d17d5e7a8e496cc4a1596ae22bfe55951d18f.tar.gz |
BUG#14157: utf8 encoding in binlog without set character_set_client: e.g DROP temporary
fixing encoding example because of table names can not be in koi8r
on some platforms.
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/t/rpl_temporary.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/rpl_temporary.test b/mysql-test/t/rpl_temporary.test index 871ff096476..bc1b0e64565 100644 --- a/mysql-test/t/rpl_temporary.test +++ b/mysql-test/t/rpl_temporary.test @@ -164,7 +164,7 @@ drop table t1; # #14157: utf8 encoding in binlog without set character_set_client # ---exec $MYSQL --character-sets-dir=../sql/share/charsets/ --default-character-set=koi8r test -e 'create table t1 (a int); set names koi8r; create temporary table `ÑÝÉË` (a int); insert into `ÑÝÉË` values (1); insert into t1 select * from `ÑÝÉË`' +--exec $MYSQL --character-sets-dir=../sql/share/charsets/ --default-character-set=latin1 test -e 'create table t1 (a int); set names latin1; create temporary table `äöüÄÖÜ` (a int); insert into `äöüÄÖÜ` values (1); insert into t1 select * from `äöüÄÖÜ`' sync_slave_with_master; #connection slave; |