mirror of
https://github.com/MariaDB/server.git
synced 2025-02-01 03:21:53 +01:00
c6bf7ead8f
Post-push fix: updated some result files that were affected by the previous fix to this bug. mysql-test/suite/binlog/r/binlog_killed_simulate.result: Updated result file. mysql-test/suite/binlog/r/binlog_row_binlog.result: Updated result file. mysql-test/suite/binlog/r/binlog_row_mix_innodb_myisam.result: Updated result file. mysql-test/suite/binlog/r/binlog_statement_insert_delayed.result: Updated result file. mysql-test/suite/binlog/r/binlog_stm_mix_innodb_myisam.result: Updated result file. mysql-test/suite/rpl/r/rpl_stm_log.result: Updated result file.
29 lines
949 B
Text
29 lines
949 B
Text
create table t1 (a int not null auto_increment, primary key (a)) engine=myisam;
|
|
insert delayed into t1 values (207);
|
|
insert delayed into t1 values (null);
|
|
insert delayed into t1 values (300);
|
|
FLUSH TABLES;
|
|
show binlog events from <binlog_start>;
|
|
Log_name Pos Event_type Server_id End_log_pos Info
|
|
master-bin.000001 # Query # # use `test`; create table t1 (a int not null auto_increment, primary key (a)) engine=myisam
|
|
master-bin.000001 # Query # # use `test`; insert delayed into t1 values (207)
|
|
master-bin.000001 # Intvar # # INSERT_ID=208
|
|
master-bin.000001 # Query # # use `test`; insert delayed into t1 values (null)
|
|
master-bin.000001 # Query # # use `test`; insert delayed into t1 values (300)
|
|
master-bin.000001 # Query # # use `test`; FLUSH TABLES
|
|
insert delayed into t1 values (null),(null),(null),(null);
|
|
insert delayed into t1 values (null),(null),(400),(null);
|
|
select * from t1;
|
|
a
|
|
207
|
|
208
|
|
300
|
|
301
|
|
302
|
|
303
|
|
304
|
|
305
|
|
306
|
|
400
|
|
401
|
|
drop table t1;
|