2004-09-07 11:15:23 +02:00
|
|
|
|
source include/master-slave.inc;
|
|
|
|
|
--disable_warnings
|
|
|
|
|
drop database if exists mysqltest1;
|
|
|
|
|
# 4.1 bases its conversion on the db's charset,
|
|
|
|
|
# while 4.0 uses the part of "SET CHARACTER SET" after "_".
|
|
|
|
|
# So for 4.1 we add a clause to CREATE DATABASE.
|
|
|
|
|
create database mysqltest1 /*!40100 character set latin2 */;
|
|
|
|
|
use mysqltest1;
|
|
|
|
|
drop table if exists t1;
|
|
|
|
|
--enable_warnings
|
|
|
|
|
create table t1 (a varchar(255) character set latin2, b varchar(4));
|
|
|
|
|
SET CHARACTER SET cp1250_latin2;
|
|
|
|
|
INSERT INTO t1 VALUES ('<27><><EFBFBD><EFBFBD><EFBFBD>','80');
|
|
|
|
|
INSERT INTO t1 VALUES ('<27><><EFBFBD><EFBFBD><EFBFBD>','90');
|
|
|
|
|
INSERT INTO t1 VALUES ('<27><><EFBFBD><EFBFBD>','A0');
|
|
|
|
|
INSERT INTO t1 VALUES ('<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>','B0');
|
|
|
|
|
INSERT INTO t1 VALUES ('<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>','C0');
|
|
|
|
|
INSERT INTO t1 VALUES ('<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>','D0');
|
|
|
|
|
INSERT INTO t1 VALUES ('<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>','E0');
|
|
|
|
|
INSERT INTO t1 VALUES ('<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>','F0');
|
|
|
|
|
select "--- on master ---";
|
|
|
|
|
select hex(a),b from t1 order by b;
|
|
|
|
|
save_master_pos;
|
|
|
|
|
connection slave;
|
|
|
|
|
sync_with_master;
|
|
|
|
|
use mysqltest1;
|
|
|
|
|
select "--- on slave ---";
|
|
|
|
|
select hex(a),b from t1 order by b;
|
|
|
|
|
connection master;
|
2004-09-07 14:20:48 +02:00
|
|
|
|
drop database mysqltest1;
|
2004-09-07 11:15:23 +02:00
|
|
|
|
save_master_pos;
|
|
|
|
|
connection slave;
|
|
|
|
|
sync_with_master;
|