Commit 59b3833c authored by Olivier Bertrand's avatar Olivier Bertrand

- Make sure result are ordered the same on all platforms

modified:
  storage/connect/mysql-test/connect/r/mul.result
  storage/connect/mysql-test/connect/t/mul.test
parent 37fce46f
......@@ -25,7 +25,7 @@ CREATE TABLE `t_all` (
`a` char(10) DEFAULT NULL,
`b` char(10) DEFAULT NULL
) ENGINE=CONNECT DEFAULT CHARSET=latin1 `table_type`=CSV `file_name`='t*.csv' `sep_char`=';' `multiple`=1;
SELECT * FROM t_all;
SELECT * FROM t_all order by `a`;
a b
test1 bla
test2 blub
......
......@@ -19,7 +19,7 @@ CREATE TABLE `t_all` (
`a` char(10) DEFAULT NULL,
`b` char(10) DEFAULT NULL
) ENGINE=CONNECT DEFAULT CHARSET=latin1 `table_type`=CSV `file_name`='t*.csv' `sep_char`=';' `multiple`=1;
SELECT * FROM t_all;
SELECT * FROM t_all order by `a`;
--echo #
--echo # Testing multiple 2
......
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