diff options
author | Vladislav Vaintroub <wlad@montyprogram.com> | 2012-05-18 13:32:25 +0200 |
---|---|---|
committer | Vladislav Vaintroub <wlad@montyprogram.com> | 2012-05-18 13:32:25 +0200 |
commit | 32498ead2d79d8db2371aed8d648476041cb4e0e (patch) | |
tree | 5b39f6792ddc6e10eefa29959373751f79f03a96 /mysql-test | |
parent | 277f7a92bcfebd6ea7a065d750e0b18e8c22d291 (diff) | |
download | mariadb-git-32498ead2d79d8db2371aed8d648476041cb4e0e.tar.gz |
Fix test case to produce sorted output
Diffstat (limited to 'mysql-test')
-rwxr-xr-x | mysql-test/suite/innodb/r/innodb_bug60196.result | 2 | ||||
-rwxr-xr-x | mysql-test/suite/innodb/t/innodb_bug60196.test | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/suite/innodb/r/innodb_bug60196.result b/mysql-test/suite/innodb/r/innodb_bug60196.result index 411950b49dd..2a0af9257d3 100755 --- a/mysql-test/suite/innodb/r/innodb_bug60196.result +++ b/mysql-test/suite/innodb/r/innodb_bug60196.result @@ -58,7 +58,7 @@ FK1_Key FK2_Key INSERT INTO Bug_60196 VALUES (2, 1); INSERT INTO Bug_60196 VALUES (2, 2); INSERT INTO Bug_60196 VALUES (2, 3); -SELECT * FROM Bug_60196; +SELECT * FROM Bug_60196 ORDER BY FK1_Key, FK2_Key; FK1_Key FK2_Key 1 1 1 2 diff --git a/mysql-test/suite/innodb/t/innodb_bug60196.test b/mysql-test/suite/innodb/t/innodb_bug60196.test index 369c747c95d..328c886351e 100755 --- a/mysql-test/suite/innodb/t/innodb_bug60196.test +++ b/mysql-test/suite/innodb/t/innodb_bug60196.test @@ -78,7 +78,7 @@ SELECT * FROM Bug_60196; INSERT INTO Bug_60196 VALUES (2, 1); INSERT INTO Bug_60196 VALUES (2, 2); INSERT INTO Bug_60196 VALUES (2, 3); -SELECT * FROM Bug_60196; +SELECT * FROM Bug_60196 ORDER BY FK1_Key, FK2_Key; --echo --echo # Clean up. |