mirror of
https://github.com/MariaDB/server.git
synced 2026-04-22 08:15:31 +02:00
Adjust full test suite to work with GTID. Huge patch, mainly due to having to update .result file for all SHOW BINLOG EVENTS and mysqlbinlog outputs, where the new GTID events pop up. Everything was painstakingly checked to be still correct and valid .result file updates.
10 lines
439 B
Text
10 lines
439 B
Text
RESET MASTER;
|
|
CREATE TABLE t1 (word CHAR(20) NOT NULL) ENGINE=MYISAM;
|
|
LOAD DATA INFILE '../../std_data/words.dat' INTO TABLE t1;
|
|
show binlog events from <binlog_start>;
|
|
Log_name Pos Event_type Server_id End_log_pos Info
|
|
master-bin.000001 # Gtid # # BEGIN GTID #-#-#
|
|
master-bin.000001 # Table_map # # table_id: # (test.t1)
|
|
master-bin.000001 # Write_rows # # table_id: # flags: STMT_END_F
|
|
master-bin.000001 # Query # # COMMIT
|
|
DROP TABLE t1;
|