[postgis-tickets] [SCM] PostGIS branch master updated. 3.2.0-437-g964971c97
git at osgeo.org
git at osgeo.org
Mon Jan 31 14:58:44 PST 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 964971c97de8a85154abc501ab95556ed06c4ff1 (commit)
from 194ff371b4be829c29411690d36a673453446586 (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 964971c97de8a85154abc501ab95556ed06c4ff1
Author: Regina Obe <lr at pcorp.us>
Date: Mon Jan 31 17:45:00 2022 -0500
Include count of entries in spatial ref sys. References #5024 for PostGIS 3.3
diff --git a/regress/core/tickets.sql b/regress/core/tickets.sql
index 0bd8806c7..b5ef15cb2 100644
--- a/regress/core/tickets.sql
+++ b/regress/core/tickets.sql
@@ -1434,4 +1434,4 @@ SELECT
ST_DWithin('POINT(1 1)', 'POLYGON EMPTY', 'Inf');
-- https://trac.osgeo.org/postgis/ticket/5024
-SELECT '#5024', count(*) >= 8500 FROM spatial_ref_sys;
+SELECT '#5024', 'spatial_ref_sys entries' AS table_name, count(*) FROM spatial_ref_sys;
diff --git a/regress/core/tickets_expected b/regress/core/tickets_expected
index d74691b56..a4ce6a175 100644
--- a/regress/core/tickets_expected
+++ b/regress/core/tickets_expected
@@ -460,4 +460,4 @@ ERROR: LWGEOM_addpoint: Invalid offset
#4770.c|MULTIPOINT(0 0,1 1)|602
#4799|{"type": "Feature", "geometry": {"type":"Point","crs":{"type":"name","properties":{"name":"EPSG:25832"}},"coordinates":[359667,5651729]}, "properties": {"id": 1, "geom1": {"type":"Point","crs":{"type":"name","properties":{"name":"EPSG:3035"}},"coordinates":[4110471,3103061]}}}
#5008|f|f
-#5024|t
+#5024|spatial_ref_sys entries|8500
-----------------------------------------------------------------------
Summary of changes:
regress/core/tickets.sql | 2 +-
regress/core/tickets_expected | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list