mirror of
https://github.com/MariaDB/server.git
synced 2025-01-28 01:34:17 +01:00
6ae5f0efea
Patially merge WL#5917, to understand v2 row events
10 lines
433 B
Text
10 lines
433 B
Text
RESET MASTER;
|
|
CREATE TABLE t1 (word CHAR(20) NOT NULL) ENGINE=MYISAM;
|
|
LOAD DATA INFILE '../../std_data/words.dat' INTO TABLE t1;
|
|
include/show_binlog_events.inc
|
|
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_v1 # # table_id: # flags: STMT_END_F
|
|
master-bin.000001 # Query # # COMMIT
|
|
DROP TABLE t1;
|