| Server IP : 45.40.142.9 / Your IP : 216.73.216.7 Web Server : Apache System : Linux s45-40-142-9.secureserver.net 2.6.32-754.35.1.el6.x86_64 #1 SMP Sat Nov 7 12:42:14 UTC 2020 x86_64 User : bayspec ( 506) PHP Version : 5.6.40 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/mysql-test/suite/binlog/r/ |
Upload File : |
set @save_binlog_checksum = @@global.binlog_checksum; set @save_master_verify_checksum = @@global.master_verify_checksum; set @@global.binlog_checksum = CRC32; set @@global.master_verify_checksum = 1; reset master; must be master-bin.000001 show binary logs; Log_name File_size master-bin.000001 # create table t1 (a int); flush logs; drop table t1; RESET MASTER; include/show_binlog_events.inc Log_name Pos Event_type Server_id End_log_pos Info master-bin.000001 # Query # # use `test`; create table t1 (a int) show tables; Tables_in_test t1 drop table t1; set @@global.binlog_checksum = @save_binlog_checksum; set @@global.master_verify_checksum = @save_master_verify_checksum; End of the tests