1
# Test for BUG#28908 Replication: set global server_id is not setting the session server_id
3
-- source include/have_log_bin.inc
5
let $saved_server_id=`select @@server_id`;
6
set global server_id=1;
10
drop table if exists t1,t2,t3;
13
create table t1 (a int);
15
source include/show_binlog_events2.inc;
17
set global server_id=2;
18
create table t2 (b int);
20
source include/show_binlog_events2.inc;
22
set global server_id=3;
23
create table t3 (c int);
25
source include/show_binlog_events2.inc;
28
eval set global server_id=$saved_server_id;