[SCM] PostGIS branch stable-3.2 updated. 3.2.6-5-gf13a83076

git at osgeo.org git at osgeo.org
Thu Nov 30 13:55:17 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, stable-3.2 has been updated
       via  f13a8307696ce1397d6825a5d3c93fee71433949 (commit)
       via  1859a69ef20396d163888330ba26c08a87936c77 (commit)
      from  b6702c5c47b49c78848bb41346e7a0ab21cec556 (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 f13a8307696ce1397d6825a5d3c93fee71433949
Author: Regina Obe <lr at pcorp.us>
Date:   Thu Nov 30 16:55:13 2023 -0500

    Update berries geos to follow 3.11 branch

diff --git a/ci/berrie/configs.sh b/ci/berrie/configs.sh
index 9426fb598..0b0a88b27 100644
--- a/ci/berrie/configs.sh
+++ b/ci/berrie/configs.sh
@@ -1,5 +1,5 @@
 export WORKSPACE=/home/jenkins/workspace
-export GEOS_VER=3.11.1
+export GEOS_VER=3.11.4
 
 export OS_BUILD=32
 export PG_VER=15
diff --git a/ci/berrie64/configs.sh b/ci/berrie64/configs.sh
index 745b6edbd..cdd30cc2d 100644
--- a/ci/berrie64/configs.sh
+++ b/ci/berrie64/configs.sh
@@ -1,5 +1,5 @@
 export WORKSPACE=/home/jenkins/workspace
-export GEOS_VER=3.11.1
+export GEOS_VER=3.11.4
 
 export OS_BUILD=64
 export PG_VER=15

commit 1859a69ef20396d163888330ba26c08a87936c77
Author: Regina Obe <lr at pcorp.us>
Date:   Thu Nov 30 16:01:32 2023 -0500

    FIX ST_SetPoint tests
    
     - Force casing since some systems output NaN and some nan
    
     References #5610 for PostGIS 3.2.7

diff --git a/regress/core/setpoint.sql b/regress/core/setpoint.sql
index c6c7a0a50..bb0ae4e56 100644
--- a/regress/core/setpoint.sql
+++ b/regress/core/setpoint.sql
@@ -30,7 +30,7 @@ SELECT ST_asewkt(ST_SetPoint('LINESTRING(0 0 0 0, 1 1 1 1, 2 2 2 2, 4 4 4 4)', 0
 SELECT '#5319', ST_SetPoint('0102000020E610000005000000000000000000F07F000000000000F07F000000000000F07F000000000000F07F000000000000F07F000000000000F07F000000000000F07F000000000000F07F000000000000F07F000000000000F07F'::geometry, 1,ST_GeomFromText('POINT(0 0)',4326)  )  As result;
 
 -- https://trac.osgeo.org/postgis/ticket/5610 (NaN check)
-SELECT '#5610', ST_AsText(ST_SetPoint(
+SELECT '#5610', lower(ST_AsText(ST_SetPoint(
 ST_Makeline(ARRAY[ST_MakePoint(1,2,'Nan'), ST_MakePoint(3,4,10), ST_MakePoint(5,6, 20)]),
-2, ST_MakePoint(5,6, 'Nan'))) AS result;
+2, ST_MakePoint(5,6, 'Nan')))) AS result;
 
diff --git a/regress/core/setpoint_expected b/regress/core/setpoint_expected
index c340c9886..5f7d103d4 100644
--- a/regress/core/setpoint_expected
+++ b/regress/core/setpoint_expected
@@ -12,4 +12,4 @@ LINESTRING(0 0 0 0,1 1 1 1,90 91 92 0,4 4 4 4)
 LINESTRING(0 0 0 0,90 91 0 92,2 2 2 2,4 4 4 4)
 LINESTRING(90 91 92 93,1 1 1 1,2 2 2 2,4 4 4 4)
 #5319|0102000020E610000005000000000000000000F07F000000000000F07F00000000000000000000000000000000000000000000F07F000000000000F07F000000000000F07F000000000000F07F000000000000F07F000000000000F07F
-#5610|LINESTRING Z (1 2 NaN,3 4 10,5 6 NaN)
+#5610|linestring z (1 2 nan,3 4 10,5 6 nan)

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

Summary of changes:
 ci/berrie/configs.sh           | 2 +-
 ci/berrie64/configs.sh         | 2 +-
 regress/core/setpoint.sql      | 4 ++--
 regress/core/setpoint_expected | 2 +-
 4 files changed, 5 insertions(+), 5 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list