Commit cd32c0b9 authored by patg@radha.local's avatar patg@radha.local

WL# 3031

Found that the results from select had to be fixed too.
parent 6ba9115e
......@@ -50,8 +50,8 @@ OWNER 'root');
select * from mysql.servers;
Server_name Host Db Username Password Port Socket Wrapper Owner
test localhost test root 0 mysql root
server_one 127.0.0.1 first_db root 9308 mysql root
server_two 127.0.0.1 second_db root 9308 mysql root
server_one 127.0.0.1 first_db root SLAVE_PORT mysql root
server_two 127.0.0.1 second_db root SLAVE_PORT mysql root
DROP TABLE IF EXISTS federated.old;
Warnings:
Note 1051 Unknown table 'old'
......
......@@ -49,7 +49,8 @@ eval create server 'server_two' foreign data wrapper 'mysql' options
SOCKET '',
OWNER 'root');
select * from mysql.servers;
--replace_result $SLAVE_MYPORT SLAVE_PORT
eval select * from mysql.servers;
DROP TABLE IF EXISTS federated.old;
--replace_result $SLAVE_MYPORT SLAVE_PORT
......
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