Browse Source

Fixed yet another forgotten port number replacement.

pull/374/head
unknown 20 years ago
parent
commit
16d2ad61c3
  1. 2
      mysql-test/r/federated.result
  2. 1
      mysql-test/t/federated.test

2
mysql-test/r/federated.result

@ -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
mysql-test/t/federated.test

@ -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';

Loading…
Cancel
Save