mirror of
https://github.com/MariaDB/server.git
synced 2026-01-06 05:22:24 +03:00
several fixes to make tests pass in embedded-server mode
This commit is contained in:
15
mysql-test/r/flush_block_commit_notembedded.result
Normal file
15
mysql-test/r/flush_block_commit_notembedded.result
Normal file
@@ -0,0 +1,15 @@
|
||||
create table t1 (a int) engine=innodb;
|
||||
reset master;
|
||||
set autocommit=0;
|
||||
insert t1 values (1);
|
||||
flush tables with read lock;
|
||||
show master status;
|
||||
File Position Binlog_Do_DB Binlog_Ignore_DB
|
||||
master-bin.000001 98
|
||||
commit;
|
||||
show master status;
|
||||
File Position Binlog_Do_DB Binlog_Ignore_DB
|
||||
master-bin.000001 98
|
||||
unlock tables;
|
||||
drop table t1;
|
||||
set autocommit=1;
|
||||
Reference in New Issue
Block a user