mirror of
https://github.com/MariaDB/server.git
synced 2025-05-04 06:05:05 +03:00
fixes for rpl_log test to make it config-independent BitKeeper/etc/ignore: Added mysql-test/r/rpl_log.eval to the ignore list client/mysqltest.c: support for eval_result and let $var = `query` syntax mysql-test/Makefile.am: import more variables into mysql-test-run mysql-test/mysql-test-run.sh: if we got wrong result on eval_result test case, diff against the expanded result, not the template mysql-test/r/rpl_log.result: change config-dependent parts of the result to dynamic variables mysql-test/t/rpl_log.test: get server version from the server remove obsoleted replace hack to solve port problem - use eval_result instead
39 lines
970 B
Plaintext
39 lines
970 B
Plaintext
source include/master-slave.inc;
|
|
eval_result; #result depends on some server specific params
|
|
|
|
#clean up slave binlogs
|
|
connection slave;
|
|
slave stop;
|
|
reset master;
|
|
reset slave;
|
|
|
|
connection master;
|
|
reset master;
|
|
drop table if exists t1;
|
|
create table t1(n int not null auto_increment primary key);
|
|
insert into t1 values (NULL);
|
|
drop table t1;
|
|
create table t1 (word char(20) not null);
|
|
load data infile '../../std_data/words.dat' into table t1;
|
|
drop table t1;
|
|
show binlog events;
|
|
show binlog events from 79 limit 1;
|
|
show binlog events from 79 limit 2;
|
|
show binlog events from 79 limit 2,1;
|
|
flush logs;
|
|
create table t1 (n int);
|
|
insert into t1 values (1);
|
|
drop table t1;
|
|
show binlog events;
|
|
show binlog events in 'master-bin.002';
|
|
show master logs;
|
|
save_master_pos;
|
|
connection slave;
|
|
let $VERSION=`select version()`;
|
|
slave start;
|
|
sync_with_master;
|
|
show master logs;
|
|
show binlog events in 'slave-bin.001' from 4;
|
|
show binlog events in 'slave-bin.002' from 4;
|
|
show slave status;
|