[SCM] PostGIS branch master updated. 3.4.0rc1-822-gf4de226cb

git at osgeo.org git at osgeo.org
Wed Nov 29 19:00:33 PST 2023


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "PostGIS".

The branch, master has been updated
       via  f4de226cb578ea9b23beb45088888c8aa71c21b4 (commit)
      from  c7d5374018eb17e6cd1fcdddddb3afdd5742e6af (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit f4de226cb578ea9b23beb45088888c8aa71c21b4
Author: Regina Obe <lr at pcorp.us>
Date:   Wed Nov 29 21:48:38 2023 -0500

    Garden test changes
    
    - Add check for POINT EMPTY within MULTIPOINT
    - Add Nan coordinates geometries
    - Remove tests we know are failing currently ST_RemoveRepeatedPoints

diff --git a/doc/xsl/postgis_gardentest.sql.xsl b/doc/xsl/postgis_gardentest.sql.xsl
index 0c642a3f3..9f15c8e49 100644
--- a/doc/xsl/postgis_gardentest.sql.xsl
+++ b/doc/xsl/postgis_gardentest.sql.xsl
@@ -13,7 +13,7 @@
 	<xsl:output method="text" />
 	<xsl:variable name='testversion'>3.5.0</xsl:variable>
 	<xsl:variable name='fnexclude14'>AddGeometryColumn DropGeometryColumn DropGeometryTable</xsl:variable>
-	<xsl:variable name='fnexclude'>AddGeometryColumn DropGeometryColumn DropGeometryTable</xsl:variable>
+	<xsl:variable name='fnexclude'>AddGeometryColumn DropGeometryColumn DropGeometryTable CG_Visibility CG_YMonotonePartition ST_RemoveRepeatedPoints ST_AlphaShape ST_OptimalAlphaShape</xsl:variable>
 	<!--This is just a place holder to state functions not supported or tested separately -->
 
 	<xsl:variable name='var_srid'>3395</xsl:variable>
@@ -297,6 +297,26 @@ FROM (VALUES ( ST_GeomFromEWKT('SRID=4326;MULTIPOLYGON(((-71.0821 42.3036 2,-71.
 		'0104000020E6100000050000000101000000000000000000F07F000000000000F07F0101000000000000000000F07F000000000000F07F0101000000000000000000F07F000000000000F07F0101000000000000000000F07F000000000000F07F0101000000000000000000F07F000000000000F07F'::geometry AS the_geom )
 		</pgis:gset>
 
+		<pgis:gset ID="Multipoint with Empty coordinates" GeometryType="MULTIPOINT" createtable="false">
+		(SELECT ST_GeomFromText('MULTIPOINT(EMPTY,2 1,2 4, 4 5)',4326) As the_geom)
+		</pgis:gset>
+
+		<pgis:gset ID="Linestring Z with Nan coordinates" GeometryType="LINESTRINGZ" createtable="false">
+		(SELECT ST_GeomFromText('LINESTRING Z (1 2 NaN,3 4 10,5 6 NaN)',4326) As the_geom)
+		</pgis:gset>
+
+		<pgis:gset ID="Linestring M with Nan coordinates" GeometryType="LINESTRINGM" createtable="false">
+		(SELECT ST_GeomFromText('LINESTRING M (1 2 NaN,3 4 10,5 6 NaN)',4326) As the_geom)
+		</pgis:gset>
+
+		<pgis:gset ID="Linestring ZM with Nan coordinates" GeometryType="LINESTRINGZM" createtable="false">
+		(SELECT ST_GeomFromText('LINESTRING ZM (1 2 3 NaN,3 4 10 5,5 6 NaN NaN)',4326) As the_geom)
+		</pgis:gset>
+
+		<pgis:gset ID="Linestring M with Nan coordinates" GeometryType="LINESTRINGM" createtable="false">
+		(SELECT ST_GeomFromText('LINESTRING M (1 2 NaN,3 4 10,5 6 NaN)',4326) As the_geom)
+		</pgis:gset>
+
 	<!-- TODO: Finish off MULTI list -->
 	</pgis:gardens>
 	<!--This is just a placeholder to hold geometries that will crash server when hitting against some functions

-----------------------------------------------------------------------

Summary of changes:
 doc/xsl/postgis_gardentest.sql.xsl | 22 +++++++++++++++++++++-
 1 file changed, 21 insertions(+), 1 deletion(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list