mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 02:51:44 +01:00
474fe6d9d9
and small collateral changes mysql-test/lib/My/Test.pm: somehow with "print" we get truncated writes sometimes mysql-test/suite/perfschema/r/digest_table_full.result: md5 hashes of statement digests differ, because yacc token codes are different in mariadb mysql-test/suite/perfschema/r/dml_handler.result: host table is not ported over yet mysql-test/suite/perfschema/r/information_schema.result: host table is not ported over yet mysql-test/suite/perfschema/r/nesting.result: this differs, because we don't rewrite general log queries, and multi-statement packets are logged as a one entry. this result file is identical to what mysql-5.6.5 produces with the --log-raw option. mysql-test/suite/perfschema/r/relaylog.result: MariaDB modifies the binlog index file directly, while MySQL 5.6 has a feature "crash-safe binlog index" and modifies a special "crash-safe" shadow copy of the index file and then moves it over. That's why this test shows "NONE" index file writes in MySQL and "MANY" in MariaDB. mysql-test/suite/perfschema/r/server_init.result: MariaDB initializes the "manager" resources from the "manager" thread, and starts this thread only when --flush-time is not 0. MySQL 5.6 initializes "manager" resources unconditionally on server startup. mysql-test/suite/perfschema/r/stage_mdl_global.result: this differs, because MariaDB disables query cache when query_cache_size=0. MySQL does not do that, and this causes useless mutex locks and waits. mysql-test/suite/perfschema/r/statement_digest.result: md5 hashes of statement digests differ, because yacc token codes are different in mariadb mysql-test/suite/perfschema/r/statement_digest_consumers.result: md5 hashes of statement digests differ, because yacc token codes are different in mariadb mysql-test/suite/perfschema/r/statement_digest_long_query.result: md5 hashes of statement digests differ, because yacc token codes are different in mariadb mysql-test/suite/rpl/r/rpl_mixed_drop_create_temp_table.result: will be updated to match 5.6 when alfranio.correia@oracle.com-20110512172919-c1b5kmum4h52g0ni and anders.song@greatopensource.com-20110105052107-zoab0bsf5a6xxk2y are merged mysql-test/suite/rpl/r/rpl_non_direct_mixed_mixing_engines.result: will be updated to match 5.6 when anders.song@greatopensource.com-20110105052107-zoab0bsf5a6xxk2y is merged
122 lines
3.6 KiB
Text
122 lines
3.6 KiB
Text
include/master-slave.inc
|
|
[connection master]
|
|
set timestamp=1000000000;
|
|
create database mysqltest2 character set latin2;
|
|
set @@character_set_server=latin5;
|
|
create database mysqltest3;
|
|
|
|
--- --master--
|
|
show create database mysqltest2;
|
|
Database Create Database
|
|
mysqltest2 CREATE DATABASE `mysqltest2` /*!40100 DEFAULT CHARACTER SET latin2 */
|
|
show create database mysqltest3;
|
|
Database Create Database
|
|
mysqltest3 CREATE DATABASE `mysqltest3` /*!40100 DEFAULT CHARACTER SET latin5 */
|
|
|
|
--- --slave--
|
|
show create database mysqltest2;
|
|
Database Create Database
|
|
mysqltest2 CREATE DATABASE `mysqltest2` /*!40100 DEFAULT CHARACTER SET latin2 */
|
|
show create database mysqltest3;
|
|
Database Create Database
|
|
mysqltest3 CREATE DATABASE `mysqltest3` /*!40100 DEFAULT CHARACTER SET latin5 */
|
|
set @@collation_server=armscii8_bin;
|
|
drop database mysqltest3;
|
|
create database mysqltest3;
|
|
|
|
--- --master--
|
|
show create database mysqltest3;
|
|
Database Create Database
|
|
mysqltest3 CREATE DATABASE `mysqltest3` /*!40100 DEFAULT CHARACTER SET armscii8 COLLATE armscii8_bin */
|
|
|
|
--- --slave--
|
|
show create database mysqltest3;
|
|
Database Create Database
|
|
mysqltest3 CREATE DATABASE `mysqltest3` /*!40100 DEFAULT CHARACTER SET armscii8 COLLATE armscii8_bin */
|
|
use mysqltest2;
|
|
create table t1 (a int auto_increment primary key, b varchar(100));
|
|
set character_set_client=cp850, collation_connection=latin2_croatian_ci;
|
|
insert into t1 (b) values(@@character_set_server);
|
|
insert into t1 (b) values(@@collation_server);
|
|
insert into t1 (b) values(@@character_set_client);
|
|
insert into t1 (b) values(@@character_set_connection);
|
|
insert into t1 (b) values(@@collation_connection);
|
|
--- --master--
|
|
select * from t1 order by a;
|
|
a b
|
|
1 armscii8
|
|
2 armscii8_bin
|
|
3 cp850
|
|
4 latin2
|
|
5 latin2_croatian_ci
|
|
--- --slave--
|
|
select * from mysqltest2.t1 order by a;
|
|
a b
|
|
1 armscii8
|
|
2 armscii8_bin
|
|
3 cp850
|
|
4 latin2
|
|
5 latin2_croatian_ci
|
|
set character_set_client=latin1, collation_connection=latin1_german1_ci;
|
|
truncate table t1;
|
|
insert into t1 (b) values(@@collation_connection);
|
|
insert into t1 (b) values(LEAST("Müller","Muffler"));
|
|
set collation_connection=latin1_german2_ci;
|
|
insert into t1 (b) values(@@collation_connection);
|
|
insert into t1 (b) values(LEAST("Müller","Muffler"));
|
|
--- --master--
|
|
select * from t1 order by a;
|
|
a b
|
|
1 latin1_german1_ci
|
|
2 Muffler
|
|
3 latin1_german2_ci
|
|
4 Müller
|
|
--- --slave--
|
|
select * from mysqltest2.t1 order by a;
|
|
a b
|
|
1 latin1_german1_ci
|
|
2 Muffler
|
|
3 latin1_german2_ci
|
|
4 Müller
|
|
set @a= _cp850 'Müller' collate cp850_general_ci;
|
|
truncate table t1;
|
|
insert into t1 (b) values(collation(@a));
|
|
--- --master--
|
|
select * from t1 order by a;
|
|
a b
|
|
1 cp850_general_ci
|
|
--- --slave--
|
|
select * from mysqltest2.t1 order by a;
|
|
a b
|
|
1 cp850_general_ci
|
|
drop database mysqltest2;
|
|
drop database mysqltest3;
|
|
set global character_set_server=latin2;
|
|
set global character_set_server=latin1;
|
|
set global character_set_server=latin2;
|
|
set global character_set_server=latin1;
|
|
set character_set_client=9999999;
|
|
ERROR 42000: Unknown character set: '9999999'
|
|
set collation_server=9999998;
|
|
ERROR HY000: Unknown collation: '9999998'
|
|
use test;
|
|
CREATE TABLE t1 (c1 VARBINARY(255), c2 VARBINARY(255));
|
|
SET CHARACTER_SET_CLIENT=koi8r,
|
|
CHARACTER_SET_CONNECTION=cp1251,
|
|
CHARACTER_SET_RESULTS=koi8r;
|
|
INSERT INTO t1 (c1, c2) VALUES ('îÕ, ÚÁ ÒÙÂÁÌËÕ','îÕ, ÚÁ ÒÙÂÁÌËÕ');
|
|
select hex(c1), hex(c2) from t1;
|
|
hex(c1) hex(c2)
|
|
CDF32C20E7E020F0FBE1E0EBEAF3 CDF32C20E7E020F0FBE1E0EBEAF3
|
|
select hex(c1), hex(c2) from t1;
|
|
hex(c1) hex(c2)
|
|
CDF32C20E7E020F0FBE1E0EBEAF3 CDF32C20E7E020F0FBE1E0EBEAF3
|
|
drop table t1;
|
|
create table `t1` (
|
|
`pk` varchar(10) not null default '',
|
|
primary key (`pk`)
|
|
) engine=myisam default charset=latin1;
|
|
set @p=_latin1 'test';
|
|
update t1 set pk='test' where pk=@p;
|
|
drop table t1;
|
|
include/rpl_end.inc
|