summaryrefslogtreecommitdiff
path: root/mysql-test/r/federated.result
diff options
context:
space:
mode:
authorunknown <eric@mysql.com>2005-10-12 14:33:08 -0700
committerunknown <eric@mysql.com>2005-10-12 14:33:08 -0700
commit06c8c18a917b418374bca40082fe77e5b58caf0c (patch)
tree881a32737892e8d1d39e65848bd5a20e01cd341f /mysql-test/r/federated.result
parent431753ec6267b6ec3e5645f5be7f27da7db1c04a (diff)
downloadmariadb-git-06c8c18a917b418374bca40082fe77e5b58caf0c.tar.gz
replace port number with string identifier so that it may have different ports and still run
(problem found by kent) mysql-test/r/federated.result: replace port number with a named identifier mysql-test/t/federated.test: add call to replace the resulting display of the port number with a string
Diffstat (limited to 'mysql-test/r/federated.result')
-rw-r--r--mysql-test/r/federated.result2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/federated.result b/mysql-test/r/federated.result
index f40919a41a4..29f8461fd4c 100644
--- a/mysql-test/r/federated.result
+++ b/mysql-test/r/federated.result
@@ -79,7 +79,7 @@ Table Create Table
t2 CREATE TABLE `t2` (
`id` int(20) NOT NULL,
`name` varchar(32) NOT NULL default ''
-) ENGINE=FEDERATED DEFAULT CHARSET=latin1 CONNECTION='mysql://root@127.0.0.1:9308/federated/t1'
+) ENGINE=FEDERATED DEFAULT CHARSET=latin1 CONNECTION='mysql://root@127.0.0.1:SLAVE_PORT/federated/t1'
INSERT INTO federated.t2 (id, name) VALUES (1, 'foo');
INSERT INTO federated.t2 (id, name) VALUES (2, 'fee');
SELECT * FROM federated.t2;