mirror of
https://github.com/MariaDB/server.git
synced 2025-11-08 00:28:29 +03:00
26 lines
559 B
Plaintext
26 lines
559 B
Plaintext
#
|
|
# misc binlogging tests that do not require a slave running
|
|
#
|
|
-- source include/have_bdb.inc
|
|
-- source include/have_innodb.inc
|
|
|
|
--disable_warnings
|
|
drop table if exists t1, t2;
|
|
--enable_warnings
|
|
reset master;
|
|
|
|
create table t1 (a int) engine=bdb;
|
|
create table t2 (a int) engine=innodb;
|
|
begin;
|
|
insert t1 values (5);
|
|
commit;
|
|
begin;
|
|
insert t2 values (5);
|
|
commit;
|
|
# first COMMIT must be Query_log_event, second - Xid_log_event
|
|
--replace_result "xid=891" "xid=318" "xid=11" "xid=318" "xid=18" "xid=318"
|
|
show binlog events from 96;
|
|
reset master;
|
|
drop table t1,t2;
|
|
|