[Groonga-mysql-commit] mroonga/mroonga [master] test: add missing DESC

Back to archive index

Kouhei Sutou null+****@clear*****
Wed Oct 24 23:48:22 JST 2012


Kouhei Sutou	2012-10-24 23:48:22 +0900 (Wed, 24 Oct 2012)

  New Revision: f665bda37f0f138017294f9fd52f8ed5beab07d2
  https://github.com/mroonga/mroonga/commit/f665bda37f0f138017294f9fd52f8ed5beab07d2

  Log:
    test: add missing DESC

  Modified files:
    test/sql/suite/mroonga/storage/index/multiple_column/unique/year/order/r/desc.result
    test/sql/suite/mroonga/storage/index/multiple_column/unique/year/order/t/desc.test

  Modified: test/sql/suite/mroonga/storage/index/multiple_column/unique/year/order/r/desc.result (+4 -4)
===================================================================
--- test/sql/suite/mroonga/storage/index/multiple_column/unique/year/order/r/desc.result    2012-10-24 23:31:58 +0900 (2185f26)
+++ test/sql/suite/mroonga/storage/index/multiple_column/unique/year/order/r/desc.result    2012-10-24 23:48:22 +0900 (3fc83ca)
@@ -10,10 +10,10 @@ INSERT INTO ranges VALUES (2, 1901, 2155);
 INSERT INTO ranges VALUES (3, 2012, 2155);
 INSERT INTO ranges VALUES (4, 2155, 1901);
 SELECT * FROM ranges FORCE INDEX(range_key)
-ORDER BY start, end;
+ORDER BY start DESC, end DESC;
 id	start	end
-1	1901	2012
-2	1901	2155
-3	2012	2155
 4	2155	1901
+3	2012	2155
+2	1901	2155
+1	1901	2012
 DROP TABLE ranges;

  Modified: test/sql/suite/mroonga/storage/index/multiple_column/unique/year/order/t/desc.test (+1 -1)
===================================================================
--- test/sql/suite/mroonga/storage/index/multiple_column/unique/year/order/t/desc.test    2012-10-24 23:31:58 +0900 (da4f722)
+++ test/sql/suite/mroonga/storage/index/multiple_column/unique/year/order/t/desc.test    2012-10-24 23:48:22 +0900 (4062f31)
@@ -34,7 +34,7 @@ INSERT INTO ranges VALUES (3, 2012, 2155);
 INSERT INTO ranges VALUES (4, 2155, 1901);
 
 SELECT * FROM ranges FORCE INDEX(range_key)
-         ORDER BY start, end;
+         ORDER BY start DESC, end DESC;
 
 DROP TABLE ranges;
 
-------------- next part --------------
HTML����������������������������...
Download 



More information about the Groonga-mysql-commit mailing list
Back to archive index