polardbxengine/mysql-test/suite/ndb_binlog/r/ndb_binlog_discover.result

22 lines
761 B
Plaintext

CALL mtr.add_suppression("Incorrect information in file");
create table t2 (a int key) engine=ndb;
alter table t2 rename t1;
reset master;
select * from t1;
a
1
include/show_binlog_events.inc
Log_name Pos Event_type Server_id End_log_pos Info
binlog.000001 # Incident # # #1 (LOST_EVENTS)
binlog.000001 # Rotate # # binlog.000002;pos=POS
PURGE MASTER LOGS TO 'binlog.000002';
include/show_binlog_events.inc
Log_name Pos Event_type Server_id End_log_pos Info
binlog.000002 # Query # # BEGIN
binlog.000002 # Table_map # # table_id: # (test.t1)
binlog.000002 # Table_map # # table_id: # (mysql.ndb_apply_status)
binlog.000002 # Write_rows # # table_id: #
binlog.000002 # Write_rows # # table_id: # flags: STMT_END_F
binlog.000002 # Query # # COMMIT
drop table t1;