Commit 3815b5ad authored by unknown's avatar unknown
Browse files

Replace host column when testing 'SHOW PROCESSLIST' since it is

different on Windows. (Bug #11570)


mysql-test/t/sp-threads.test:
  Replace host column to avoid spurious error on Windows
mysql-test/t/sp.test:
  Replace host column to avoid spurious error on Windows
parent 1f7389cd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -75,7 +75,7 @@ send call bug9486();
connection con2root;
--sleep 2
# There should be call statement in locked state.
--replace_column 1 # 6 #
--replace_column 1 # 3 localhost 6 #
show processlist;
unlock tables;
connection con1root;
+2 −2
Original line number Diff line number Diff line
@@ -2582,9 +2582,9 @@ create procedure bug4902_2()
begin
  show processlist;
end|
--replace_column 1 # 6 #
--replace_column 1 # 6 # 3 localhost
call bug4902_2()|
--replace_column 1 # 6 #
--replace_column 1 # 6 # 3 localhost
call bug4902_2()|
drop procedure bug4902_2|