[postgis-tickets] [SCM] PostGIS branch master updated. 3.2.0-861-g3389bf538

git at osgeo.org git at osgeo.org
Tue May 17 07:19:15 PDT 2022


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  3389bf538ae1e7b5c8258c9cc1af49752b3bd180 (commit)
       via  b3d52753cd8c9913084e15f27522ab389c0a35aa (commit)
      from  bd04b787f49509ef13801c72a0ebc981669e982c (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 3389bf538ae1e7b5c8258c9cc1af49752b3bd180
Author: Regina Obe <lr at pcorp.us>
Date:   Tue May 17 10:19:07 2022 -0400

    More thorough testing of empties. CIs that do garden should crash with this

diff --git a/doc/xsl/postgis_gardentest.sql.xsl b/doc/xsl/postgis_gardentest.sql.xsl
index e787daea7..4907d2be7 100644
--- a/doc/xsl/postgis_gardentest.sql.xsl
+++ b/doc/xsl/postgis_gardentest.sql.xsl
@@ -8,7 +8,7 @@
 			using a garden variety of geometries.  Its intent is to flag major crashes.
 	 ******************************************************************** -->
 	<xsl:output method="text" />
-	<xsl:variable name='testversion'>3.2.0</xsl:variable>
+	<xsl:variable name='testversion'>3.3.0</xsl:variable>
 	<xsl:variable name='fnexclude14'>AddGeometryColumn DropGeometryColumn DropGeometryTable</xsl:variable>
 	<xsl:variable name='fnexclude'>AddGeometryColumn DropGeometryColumn DropGeometryTable</xsl:variable>
 	<!--This is just a place holder to state functions not supported or tested separately -->
@@ -238,6 +238,17 @@ FROM (VALUES ( ST_GeomFromEWKT('SRID=4326;MULTIPOLYGON(((-71.0821 42.3036 2,-71.
 		)
 		</pgis:gset>
 
+		<pgis:gset ID="Empty Linestring" GeometryType="LINESTRING" createtable="false">
+		(SELECT ST_GeomFromText('LINESTRING EMPTY',4326) As the_geom)
+		</pgis:gset>
+
+		<pgis:gset ID="Empty Point" GeometryType="POINT" createtable="false">
+		(SELECT ST_GeomFromText('POINT EMPTY',4326) As the_geom)
+		</pgis:gset>
+
+		<pgis:gset ID="Empty Polygon" GeometryType="POLYGON" createtable="false">
+		(SELECT ST_GeomFromText('POLYGON EMPTY',4326) As the_geom)
+		</pgis:gset>
 
 		<pgis:gset ID="Empty Geometry Collection" GeometryType="GEOMETRY" createtable="false">
 		 (SELECT ST_GeomFromText('GEOMETRYCOLLECTION EMPTY',4326) As the_geom )

commit b3d52753cd8c9913084e15f27522ab389c0a35aa
Author: Regina Obe <lr at pcorp.us>
Date:   Tue May 17 10:18:30 2022 -0400

    Exclude visual code file

diff --git a/.gitignore b/.gitignore
index 1caf56734..c8e0cce96 100644
--- a/.gitignore
+++ b/.gitignore
@@ -191,6 +191,7 @@ postgis/uninstall_sfcgal.sql
 .idea/*
 .syntastic_c_config
 .vs/*
+.vscode/*
 
 # LLVM JIT
 *.bc

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

Summary of changes:
 .gitignore                         |  1 +
 doc/xsl/postgis_gardentest.sql.xsl | 13 ++++++++++++-
 2 files changed, 13 insertions(+), 1 deletion(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list