mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 21:12:26 +01:00
38f9729c2a
- both for data schema operations - also make sure schema events vet the right server id when injected into the binlog - use same mechanism to signal server_id in bug#17095, and reserve some "id's" for flagging special conditions on the event, in this case do not log it - enable printing of server ids in the testcases to show that we cot it right
11 lines
383 B
Text
11 lines
383 B
Text
reset master;
|
|
drop table if exists t1;
|
|
drop database if exists mysqltest;
|
|
create database mysqltest;
|
|
use mysqltest;
|
|
create table t1 (a int primary key, b int) engine=ndb;
|
|
insert into t1 values (1, 1);
|
|
show binlog events from <binlog_start>;
|
|
Log_name Pos Event_type Server_id End_log_pos Info
|
|
master-bin.000001 # Query 1 # use `test`; drop table if exists t1
|
|
drop database mysqltest;
|