mirror of
https://github.com/MariaDB/server.git
synced 2025-01-25 00:04:33 +01:00
842b23a8fc
5.1-related fixes libmysqld/Makefile.am fixed to recompile and link ha_*.cc files that keep dependance on THD structure. Minor fixes to make tests working.
15 lines
354 B
Text
15 lines
354 B
Text
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 102
|
|
commit;
|
|
show master status;
|
|
File Position Binlog_Do_DB Binlog_Ignore_DB
|
|
master-bin.000001 102
|
|
unlock tables;
|
|
drop table t1;
|
|
set autocommit=1;
|