Commit 1a95fcff authored by unknown's avatar unknown
Browse files

WL# 3031

Found that the results from select had to be fixed too.

parent a50e0c12
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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'
+2 −1
Original line number Diff line number Diff line
@@ -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