[postgis-tickets] [SCM] PostGIS branch stable-3.2 updated. 3.2.1-13-g26c6f24d9

git at osgeo.org git at osgeo.org
Tue May 17 09:26:57 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, stable-3.2 has been updated
       via  26c6f24d9a362cca5dd5f257598112eb1aa8df20 (commit)
      from  874e93859fff27416b4f594a3ec4780f602e7e6a (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 26c6f24d9a362cca5dd5f257598112eb1aa8df20
Author: Regina Obe <lr at pcorp.us>
Date:   Tue May 17 12:26:50 2022 -0400

    Better testing of empties in garden tests.  Set berrie to exist on first failure

diff --git a/ci/berrie/postgis_regress.sh b/ci/berrie/postgis_regress.sh
index 88ccd964a..0573fd589 100644
--- a/ci/berrie/postgis_regress.sh
+++ b/ci/berrie/postgis_regress.sh
@@ -1,4 +1,5 @@
 #!/usr/bin/env bash
+set -e
 #bessie is a 32-bit Rasberry Pi managed by Bruce Rindahl
 ## BRANCH is passed in via jenkins which is set via gitea web hook
 #export BRANCH=618a67b1d6fc223dd5a4c0b02c824939f21dbd65
diff --git a/doc/xsl/postgis_gardentest.sql.xsl b/doc/xsl/postgis_gardentest.sql.xsl
index 302d4fcc0..c8d05fceb 100644
--- a/doc/xsl/postgis_gardentest.sql.xsl
+++ b/doc/xsl/postgis_gardentest.sql.xsl
@@ -238,6 +238,21 @@ 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 )
+		</pgis:gset>
 
 		<pgis:gset ID="Empty Geometry Collection" GeometryType="GEOMETRY" createtable="false">
 		 (SELECT ST_GeomFromText('GEOMETRYCOLLECTION EMPTY',4326) As the_geom )

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

Summary of changes:
 ci/berrie/postgis_regress.sh       |  1 +
 doc/xsl/postgis_gardentest.sql.xsl | 15 +++++++++++++++
 2 files changed, 16 insertions(+)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list