1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-09 22:24:09 +03:00

Also order the result of multiple=1 table, otherwise being different

on Linux and Windows causing the test to fail.
  modified:   storage/connect/mysql-test/connect/r/mul_new.result
  modified:   storage/connect/mysql-test/connect/t/mul_new.test
This commit is contained in:
Olivier Bertrand
2017-03-11 14:10:34 +01:00
parent 2d573a6c5a
commit e5f5457b6f
2 changed files with 2 additions and 2 deletions

View File

@@ -70,7 +70,7 @@ CREATE TABLE t_all (
Chiffre int(3) not null,
Lettre char(16) not null)
ENGINE=CONNECT TABLE_TYPE=CSV FILE_NAME='num?.csv' HEADER=1 LRECL=20 MULTIPLE=1;
SELECT * FROM t_all;
SELECT * FROM t_all ORDER BY Chiffre;
Chiffre Lettre
1 One
2 Two

View File

@@ -43,7 +43,7 @@ CREATE TABLE t_all (
Chiffre int(3) not null,
Lettre char(16) not null)
ENGINE=CONNECT TABLE_TYPE=CSV FILE_NAME='num?.csv' HEADER=1 LRECL=20 MULTIPLE=1;
SELECT * FROM t_all;
SELECT * FROM t_all ORDER BY Chiffre;
--echo #
--echo # Testing multiple 3