Kouhei Sutou
null+****@clear*****
Sun Dec 8 19:24:50 JST 2013
Kouhei Sutou 2013-12-08 19:24:50 +0900 (Sun, 08 Dec 2013) New Revision: 953b2c1a882feae23377d520370193c2d8958b44 https://github.com/groonga/groonga/commit/953b2c1a882feae23377d520370193c2d8958b44 Message: test: simplify data Modified files: test/command/suite/load/geo_point/scalar/max_latitude.expected test/command/suite/load/geo_point/scalar/max_latitude.test test/command/suite/load/geo_point/scalar/max_longitude.expected test/command/suite/load/geo_point/scalar/max_longitude.test test/command/suite/load/geo_point/scalar/min_latitude.expected test/command/suite/load/geo_point/scalar/min_latitude.test test/command/suite/load/geo_point/scalar/min_longitude.expected test/command/suite/load/geo_point/scalar/min_longitude.test Modified: test/command/suite/load/geo_point/scalar/max_latitude.expected (+5 -10) =================================================================== --- test/command/suite/load/geo_point/scalar/max_latitude.expected 2013-12-08 19:20:17 +0900 (56b66de) +++ test/command/suite/load/geo_point/scalar/max_latitude.expected 2013-12-08 19:24:50 +0900 (19990a3) @@ -1,13 +1,13 @@ -table_create Shops TABLE_HASH_KEY ShortText +table_create LandMarks TABLE_NO_KEY [[0,0.0,0.0],true] -column_create Shops location COLUMN_SCALAR WGS84GeoPoint +column_create LandMarks location COLUMN_SCALAR WGS84GeoPoint [[0,0.0,0.0],true] -load --table Shops +load --table LandMarks [ -{"_key": "たかね", "location": "324000000x502419287"} +{"location": "324000000x502419287"} ] [[0,0.0,0.0],1] -select Shops +select LandMarks [ [ 0, @@ -25,17 +25,12 @@ select Shops "UInt32" ], [ - "_key", - "ShortText" - ], - [ "location", "WGS84GeoPoint" ] ], [ 1, - "たかね", "324000000x502419287" ] ] Modified: test/command/suite/load/geo_point/scalar/max_latitude.test (+5 -5) =================================================================== --- test/command/suite/load/geo_point/scalar/max_latitude.test 2013-12-08 19:20:17 +0900 (b1e704c) +++ test/command/suite/load/geo_point/scalar/max_latitude.test 2013-12-08 19:24:50 +0900 (2064deb) @@ -1,9 +1,9 @@ -table_create Shops TABLE_HASH_KEY ShortText -column_create Shops location COLUMN_SCALAR WGS84GeoPoint +table_create LandMarks TABLE_NO_KEY +column_create LandMarks location COLUMN_SCALAR WGS84GeoPoint -load --table Shops +load --table LandMarks [ -{"_key": "たかね", "location": "324000000x502419287"} +{"location": "324000000x502419287"} ] -select Shops +select LandMarks Modified: test/command/suite/load/geo_point/scalar/max_longitude.expected (+5 -10) =================================================================== --- test/command/suite/load/geo_point/scalar/max_longitude.expected 2013-12-08 19:20:17 +0900 (5cd2c22) +++ test/command/suite/load/geo_point/scalar/max_longitude.expected 2013-12-08 19:24:50 +0900 (bb90653) @@ -1,13 +1,13 @@ -table_create Shops TABLE_HASH_KEY ShortText +table_create LandMarks TABLE_NO_KEY [[0,0.0,0.0],true] -column_create Shops location COLUMN_SCALAR WGS84GeoPoint +column_create LandMarks location COLUMN_SCALAR WGS84GeoPoint [[0,0.0,0.0],true] -load --table Shops +load --table LandMarks [ -{"_key": "たかね", "location": "128514964x648000000"} +{"location": "128514964x648000000"} ] [[0,0.0,0.0],1] -select Shops +select LandMarks [ [ 0, @@ -25,17 +25,12 @@ select Shops "UInt32" ], [ - "_key", - "ShortText" - ], - [ "location", "WGS84GeoPoint" ] ], [ 1, - "たかね", "128514964x648000000" ] ] Modified: test/command/suite/load/geo_point/scalar/max_longitude.test (+5 -5) =================================================================== --- test/command/suite/load/geo_point/scalar/max_longitude.test 2013-12-08 19:20:17 +0900 (faff775) +++ test/command/suite/load/geo_point/scalar/max_longitude.test 2013-12-08 19:24:50 +0900 (e930ac9) @@ -1,9 +1,9 @@ -table_create Shops TABLE_HASH_KEY ShortText -column_create Shops location COLUMN_SCALAR WGS84GeoPoint +table_create LandMarks TABLE_NO_KEY +column_create LandMarks location COLUMN_SCALAR WGS84GeoPoint -load --table Shops +load --table LandMarks [ -{"_key": "たかね", "location": "128514964x648000000"} +{"location": "128514964x648000000"} ] -select Shops +select LandMarks Modified: test/command/suite/load/geo_point/scalar/min_latitude.expected (+5 -10) =================================================================== --- test/command/suite/load/geo_point/scalar/min_latitude.expected 2013-12-08 19:20:17 +0900 (ff94fde) +++ test/command/suite/load/geo_point/scalar/min_latitude.expected 2013-12-08 19:24:50 +0900 (452935b) @@ -1,13 +1,13 @@ -table_create Shops TABLE_HASH_KEY ShortText +table_create LandMarks TABLE_NO_KEY [[0,0.0,0.0],true] -column_create Shops location COLUMN_SCALAR WGS84GeoPoint +column_create LandMarks location COLUMN_SCALAR WGS84GeoPoint [[0,0.0,0.0],true] -load --table Shops +load --table LandMarks [ -{"_key": "たかね", "location": "-324000000x502419287"} +{"location": "-324000000x502419287"} ] [[0,0.0,0.0],1] -select Shops +select LandMarks [ [ 0, @@ -25,17 +25,12 @@ select Shops "UInt32" ], [ - "_key", - "ShortText" - ], - [ "location", "WGS84GeoPoint" ] ], [ 1, - "たかね", "-324000000x502419287" ] ] Modified: test/command/suite/load/geo_point/scalar/min_latitude.test (+5 -5) =================================================================== --- test/command/suite/load/geo_point/scalar/min_latitude.test 2013-12-08 19:20:17 +0900 (72b228d) +++ test/command/suite/load/geo_point/scalar/min_latitude.test 2013-12-08 19:24:50 +0900 (b2158d1) @@ -1,9 +1,9 @@ -table_create Shops TABLE_HASH_KEY ShortText -column_create Shops location COLUMN_SCALAR WGS84GeoPoint +table_create LandMarks TABLE_NO_KEY +column_create LandMarks location COLUMN_SCALAR WGS84GeoPoint -load --table Shops +load --table LandMarks [ -{"_key": "たかね", "location": "-324000000x502419287"} +{"location": "-324000000x502419287"} ] -select Shops +select LandMarks Modified: test/command/suite/load/geo_point/scalar/min_longitude.expected (+5 -10) =================================================================== --- test/command/suite/load/geo_point/scalar/min_longitude.expected 2013-12-08 19:20:17 +0900 (774a626) +++ test/command/suite/load/geo_point/scalar/min_longitude.expected 2013-12-08 19:24:50 +0900 (d8269f2) @@ -1,13 +1,13 @@ -table_create Shops TABLE_HASH_KEY ShortText +table_create LandMarks TABLE_NO_KEY [[0,0.0,0.0],true] -column_create Shops location COLUMN_SCALAR WGS84GeoPoint +column_create LandMarks location COLUMN_SCALAR WGS84GeoPoint [[0,0.0,0.0],true] -load --table Shops +load --table LandMarks [ -{"_key": "たかね", "location": "128514964x-648000000"} +{"location": "128514964x-648000000"} ] [[0,0.0,0.0],1] -select Shops +select LandMarks [ [ 0, @@ -25,17 +25,12 @@ select Shops "UInt32" ], [ - "_key", - "ShortText" - ], - [ "location", "WGS84GeoPoint" ] ], [ 1, - "たかね", "128514964x-648000000" ] ] Modified: test/command/suite/load/geo_point/scalar/min_longitude.test (+5 -5) =================================================================== --- test/command/suite/load/geo_point/scalar/min_longitude.test 2013-12-08 19:20:17 +0900 (2007a15) +++ test/command/suite/load/geo_point/scalar/min_longitude.test 2013-12-08 19:24:50 +0900 (dd7d03c) @@ -1,9 +1,9 @@ -table_create Shops TABLE_HASH_KEY ShortText -column_create Shops location COLUMN_SCALAR WGS84GeoPoint +table_create LandMarks TABLE_NO_KEY +column_create LandMarks location COLUMN_SCALAR WGS84GeoPoint -load --table Shops +load --table LandMarks [ -{"_key": "たかね", "location": "128514964x-648000000"} +{"location": "128514964x-648000000"} ] -select Shops +select LandMarks -------------- next part -------------- HTML����������������������������... ダウンロード