Commit 16d2ad61 authored by unknown's avatar unknown
Browse files

Fixed yet another forgotten port number replacement.

parent 66f650b9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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) 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);
update t1 set val = NULL where id = 1;
select * from t1;
+1 −0
Original line number Diff line number Diff line
@@ -1371,6 +1371,7 @@ drop table federated.t1, federated.t2;
connection slave;
create table t1 (id int not null auto_increment primary key, val int);
connection master;
--replace_result $SLAVE_MYPORT SLAVE_PORT
eval create table t1
  (id int not null auto_increment primary key, val int) engine=federated
  connection='mysql://root@127.0.0.1:$SLAVE_MYPORT/test/t1';