diff options
author | nick@mysql.com <> | 2002-10-29 15:11:13 -0700 |
---|---|---|
committer | nick@mysql.com <> | 2002-10-29 15:11:13 -0700 |
commit | 4b7897fc7617f356a96f8ee8255549ea00ddbc77 (patch) | |
tree | fe47a50a01e3aa1743ff3a568880185f84a3fac2 /mysql-test/t/rpl_log.test | |
parent | b9007ca6a1841ac5b7149a2764a029384bbdc6e6 (diff) | |
download | mariadb-git-4b7897fc7617f356a96f8ee8255549ea00ddbc77.tar.gz |
Changed binlog name padding from binlog.001 to binlog.000001
Diffstat (limited to 'mysql-test/t/rpl_log.test')
-rw-r--r-- | mysql-test/t/rpl_log.test | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/mysql-test/t/rpl_log.test b/mysql-test/t/rpl_log.test index 729f8b06e18..dff57a77a45 100644 --- a/mysql-test/t/rpl_log.test +++ b/mysql-test/t/rpl_log.test @@ -39,7 +39,7 @@ insert into t1 values (1); drop table t1; --replace_result $VERSION VERSION show binlog events; -show binlog events in 'master-bin.002'; +show binlog events in 'master-bin.000002'; show binary logs; save_master_pos; connection slave; @@ -47,19 +47,19 @@ start slave; sync_with_master; show binary logs; --replace_result 3306 MASTER_PORT 9306 MASTER_PORT 3334 MASTER_PORT 3336 MASTER_PORT $VERSION VERSION -show binlog events in 'slave-bin.001' from 4; +show binlog events in 'slave-bin.000001' from 4; --replace_result 3306 MASTER_PORT 9306 MASTER_PORT 3334 MASTER_PORT 3336 MASTER_PORT $VERSION VERSION -show binlog events in 'slave-bin.002' from 4; +show binlog events in 'slave-bin.000002' from 4; --replace_result 3306 MASTER_PORT 9306 MASTER_PORT 3334 MASTER_PORT 3336 MASTER_PORT show slave status; # Need to recode the following -#show new master for slave with master_log_file='master-bin.001' and master_log_pos=4 and master_server_id=1; -#show new master for slave with master_log_file='master-bin.001' and master_log_pos=79 and master_server_id=1; -#show new master for slave with master_log_file='master-bin.001' and master_log_pos=311 and master_server_id=1; -#show new master for slave with master_log_file='master-bin.002' and master_log_pos=4 and master_server_id=1; -#show new master for slave with master_log_file='master-bin.002' and master_log_pos=122 and master_server_id=1; +#show new master for slave with master_log_file='master-bin.000001' and master_log_pos=4 and master_server_id=1; +#show new master for slave with master_log_file='master-bin.000001' and master_log_pos=79 and master_server_id=1; +#show new master for slave with master_log_file='master-bin.000001' and master_log_pos=311 and master_server_id=1; +#show new master for slave with master_log_file='master-bin.000002' and master_log_pos=4 and master_server_id=1; +#show new master for slave with master_log_file='master-bin.000002' and master_log_pos=122 and master_server_id=1; --error 1220 -show binlog events in 'slave-bin.005' from 4; +show binlog events in 'slave-bin.000005' from 4; |