mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Merge poseidon.ndb.mysql.com:/home/tomas/cge-5.1
into poseidon.ndb.mysql.com:/home/tomas/mysql-5.1-new-ndb-merge sql/ha_ndbcluster.cc: Auto merged storage/ndb/src/ndbapi/DictCache.cpp: Auto merged
This commit is contained in:
20
mysql-test/suite/rpl_ndb/r/rpl_ndb_apply_status.result
Normal file
20
mysql-test/suite/rpl_ndb/r/rpl_ndb_apply_status.result
Normal file
@ -0,0 +1,20 @@
|
||||
stop slave;
|
||||
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
||||
reset master;
|
||||
reset slave;
|
||||
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
||||
start slave;
|
||||
*** on slave there should be zero rows ***
|
||||
select count(*) from mysql.ndb_apply_status;
|
||||
count(*)
|
||||
0
|
||||
create table t1 (a int key, b int) engine ndb;
|
||||
insert into t1 values (1,1);
|
||||
*** on master it should be empty ***
|
||||
select * from mysql.ndb_apply_status;
|
||||
server_id epoch log_name start_pos end_pos
|
||||
*** on slave there should be one row ***
|
||||
select count(*) from mysql.ndb_apply_status;
|
||||
count(*)
|
||||
1
|
||||
drop table t1;
|
Reference in New Issue
Block a user