]> granicus.if.org Git - postgis/commitdiff
Move the fromGML test into the in_gml.sql file, so that it will be properly excluded...
authorPaul Ramsey <pramsey@cleverelephant.ca>
Mon, 30 Nov 2009 20:44:56 +0000 (20:44 +0000)
committerPaul Ramsey <pramsey@cleverelephant.ca>
Mon, 30 Nov 2009 20:44:56 +0000 (20:44 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@4945 b70326c6-7e19-0410-871a-916f4a2858ee

regress/in_gml.sql
regress/in_gml_expected
regress/tickets.sql
regress/tickets_expected

index 45a5c2760e0355e0d6069a8717ad5a33d450dc8d..9487b331a5e277bf3d26be6c1a6fad1f6f12c7b9 100644 (file)
@@ -1069,6 +1069,10 @@ SELECT 'double_30', ST_AsEWKT(ST_GeomFromGML('<gml:Point><gml:pos>1 -1.23E 2</gm
 -- ERROR: Junk 
 SELECT 'double_31', ST_AsEWKT(ST_GeomFromGML('<gml:Point><gml:pos>1 $0%@#$^%#</gml:pos></gml:Point>'));
 
+-- Ticket #273 --
+SELECT '#273', ST_AsEWKT(ST_GeomFromGML('<gml:Point><gml:coordinates>1,2</gml:coordinates></gml:Point>'));
+
+
 
 
 
index 264efe670dfe404158d0cfea510894429caa5e6e..3a1805290e70d797265859e8c97f14b9e1148521 100644 (file)
@@ -345,3 +345,4 @@ ERROR:  invalid GML representation
 ERROR:  invalid GML representation
 ERROR:  invalid GML representation
 ERROR:  invalid GML representation
+#273|POINT(1 2)
\ No newline at end of file
index 96fe572367372c0b0edbd787f766da141a11305c..dc901c09fde0daba6dcadfd06134e24ba3ebb128 100644 (file)
@@ -220,9 +220,6 @@ SELECT '#272', ST_LineCrossingDirection(foo.line1, foo.line2) As l1_cross_l2 ,
 FROM (SELECT
     ST_GeomFromText('LINESTRING(25 169,89 114,40 70,86 43)') As line1, ST_GeomFromText('LINESTRING(2.99 90.16,71 74,20 140,171 154)') As line2 ) As foo;
 
--- #273 --
-SELECT '#273', ST_AsEWKT(ST_GeomFromGML('<gml:Point><gml:coordinates>1,2</gml:coordinates></gml:Point>'));
-
 -- #277 --
 SELECT '#277', ST_AsGML(2, GeomFromText('POINT(1 1e308)'));
 
index d03154ceea3d293a84940deeaab333bfd6f2ecab..574d385530424156fc57f5e3d3e09bb267dc8f43 100644 (file)
@@ -61,7 +61,6 @@ SELECT
 #263|SRID=4326;POINT(-119.5438 34.9443)|t|t|t
 #271|t
 #272|-2|2
-#273|POINT(1 2)
 #277|<gml:Point><gml:coordinates>1,1e+308</gml:coordinates></gml:Point>
 #299|2
 #304