diff options
author | unknown <monty@mishka.mysql.com> | 2005-08-25 12:03:19 +0300 |
---|---|---|
committer | unknown <monty@mishka.mysql.com> | 2005-08-25 12:03:19 +0300 |
commit | 8bd9992e49feef4033ab128eb3e09379be144298 (patch) | |
tree | 66a8bedc1ebbedd186dab7511cf317f37e1ffb85 /mysql-test/t/information_schema.test | |
parent | 95410549546ac81db3db576be29c9b3c8c8231db (diff) | |
download | mariadb-git-8bd9992e49feef4033ab128eb3e09379be144298.tar.gz |
Make test predictable
mysql-test/r/information_schema.result:
Ensure that rows are in given order
mysql-test/t/information_schema.test:
Ensure that rows are in given order
Diffstat (limited to 'mysql-test/t/information_schema.test')
-rw-r--r-- | mysql-test/t/information_schema.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/information_schema.test b/mysql-test/t/information_schema.test index d6a47b88ac0..23f88b75576 100644 --- a/mysql-test/t/information_schema.test +++ b/mysql-test/t/information_schema.test @@ -138,7 +138,7 @@ information_schema.SCHEMATA b where a.ROUTINE_SCHEMA = b.SCHEMA_NAME; select a.ROUTINE_NAME, b.name from information_schema.ROUTINES a, -mysql.proc b where a.ROUTINE_NAME = convert(b.name using utf8); +mysql.proc b where a.ROUTINE_NAME = convert(b.name using utf8) order by 1; select count(*) from information_schema.ROUTINES; connect (user1,localhost,mysqltest_1,,); |