1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

show master forced rotate info in SHOW BINLOG EVENTS

mark a master-forced rotate with a special flag
This commit is contained in:
sasha@mysql.sashanet.com
2001-06-23 19:37:24 -06:00
parent c71cba0bd9
commit a91ac47cde
11 changed files with 79 additions and 33 deletions

View File

@ -20,6 +20,9 @@ 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;
@ -30,3 +33,5 @@ sync_with_master;
show master logs;
show binlog events in 'slave-bin.001' from 4;
show binlog events in 'slave-bin.002' from 4;
--replace_result 9306 9999 3334 9999 3335 9999
show slave status;