Commit 16d2ad61 authored by unknown's avatar unknown

Fixed yet another forgotten port number replacement.

parent 66f650b9
...@@ -1692,7 +1692,7 @@ drop table federated.t1, federated.t2; ...@@ -1692,7 +1692,7 @@ drop table federated.t1, federated.t2;
create table t1 (id int not null auto_increment primary key, val int); create table t1 (id int not null auto_increment primary key, val int);
create table t1 create table t1
(id int not null auto_increment primary key, val int) engine=federated (id int not null auto_increment primary key, val int) engine=federated
connection='mysql://root@127.0.0.1:9308/test/t1'; connection='mysql://root@127.0.0.1:SLAVE_PORT/test/t1';
insert into t1 values (1,0),(2,0); insert into t1 values (1,0),(2,0);
update t1 set val = NULL where id = 1; update t1 set val = NULL where id = 1;
select * from t1; select * from t1;
......
...@@ -1371,6 +1371,7 @@ drop table federated.t1, federated.t2; ...@@ -1371,6 +1371,7 @@ drop table federated.t1, federated.t2;
connection slave; connection slave;
create table t1 (id int not null auto_increment primary key, val int); create table t1 (id int not null auto_increment primary key, val int);
connection master; connection master;
--replace_result $SLAVE_MYPORT SLAVE_PORT
eval create table t1 eval create table t1
(id int not null auto_increment primary key, val int) engine=federated (id int not null auto_increment primary key, val int) engine=federated
connection='mysql://root@127.0.0.1:$SLAVE_MYPORT/test/t1'; connection='mysql://root@127.0.0.1:$SLAVE_MYPORT/test/t1';
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment