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:
@@ -70,7 +70,7 @@ CREATE TABLE t_all (
|
|||||||
Chiffre int(3) not null,
|
Chiffre int(3) not null,
|
||||||
Lettre char(16) not null)
|
Lettre char(16) not null)
|
||||||
ENGINE=CONNECT TABLE_TYPE=CSV FILE_NAME='num?.csv' HEADER=1 LRECL=20 MULTIPLE=1;
|
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
|
Chiffre Lettre
|
||||||
1 One
|
1 One
|
||||||
2 Two
|
2 Two
|
||||||
|
@@ -43,7 +43,7 @@ CREATE TABLE t_all (
|
|||||||
Chiffre int(3) not null,
|
Chiffre int(3) not null,
|
||||||
Lettre char(16) not null)
|
Lettre char(16) not null)
|
||||||
ENGINE=CONNECT TABLE_TYPE=CSV FILE_NAME='num?.csv' HEADER=1 LRECL=20 MULTIPLE=1;
|
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 #
|
||||||
--echo # Testing multiple 3
|
--echo # Testing multiple 3
|
||||||
|
Reference in New Issue
Block a user