diff options
author | unknown <msvensson@shellback.(none)> | 2007-04-05 20:12:56 +0200 |
---|---|---|
committer | unknown <msvensson@shellback.(none)> | 2007-04-05 20:12:56 +0200 |
commit | e3e600bcf13d7ccda16c1cf45367346649eb5183 (patch) | |
tree | a7ce701425d6acc5f332149ec6e7b3fc3e5ca9f7 /mysql-test/r/mysqltest.result | |
parent | ddc600d209e89eca2e511af88b6d65a540798162 (diff) | |
download | mariadb-git-e3e600bcf13d7ccda16c1cf45367346649eb5183.tar.gz |
Add "query_sorted" command to mysqltest
Usage:
query_sorted <query>;
client/mysqltest.c:
Add query_sorted command to mysqltest
mysql-test/r/mysqltest.result:
Update result
mysql-test/t/mysqltest.test:
Add tests for query_sorted
Diffstat (limited to 'mysql-test/r/mysqltest.result')
-rw-r--r-- | mysql-test/r/mysqltest.result | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/mysql-test/r/mysqltest.result b/mysql-test/r/mysqltest.result index 3ddb82d4a8d..537316c4924 100644 --- a/mysql-test/r/mysqltest.result +++ b/mysql-test/r/mysqltest.result @@ -526,4 +526,20 @@ hello hello mysqltest: At line 1: test of die Some output +create table t1( a int, b char(255), c timestamp); +insert into t1 values(1, 'Line 1', '2007-04-05'), (2, "Part 2", '2007-04-05'); +insert into t1 values(1, 'Line 1', '2007-04-05'), (2, "Part 3", '2007-04-05'); +select * from t1; +a b c +1 Line 1 2007-04-05 00:00:00 +2 Part 2 2007-04-05 00:00:00 +1 Line 1 2007-04-05 00:00:00 +2 Part 3 2007-04-05 00:00:00 +select * from t1; +a b c +1 Line 1 2007-04-05 00:00:00 +1 Line 1 2007-04-05 00:00:00 +2 Part 2 2007-04-05 00:00:00 +2 Part 3 2007-04-05 00:00:00 +select * from t1; End of tests |