[SCM] PostGIS branch stable-3.3 updated. 3.3.4-25-gf01a76557

git at osgeo.org git at osgeo.org
Fri Oct 27 01:36:50 PDT 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.3 has been updated
       via  f01a765575ed6bd33e5cf05e2ac6d3182b610ac6 (commit)
      from  c8eb40d30f4afb93d9c06fa18176c6ea98e352f6 (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 f01a765575ed6bd33e5cf05e2ac6d3182b610ac6
Author: Sandro Santilli <strk at kbt.io>
Date:   Fri Oct 27 10:32:13 2023 +0200

    run_test.pl: fix extension upgrades to 3.3 targets
    
    It was 3.4.0 introducing the ANY intermediate path, not 3.3.0
    
    Closes #5591 in 3.3 branch (3.3.5dev)

diff --git a/regress/run_test.pl b/regress/run_test.pl
index 11d0dabf6..96028bf4f 100755
--- a/regress/run_test.pl
+++ b/regress/run_test.pl
@@ -1733,7 +1733,7 @@ sub upgrade_extension_sql
 
     my $sql = '';
     if ( "${libver}" eq "${to}" ) {
-        if ( semver_lessthan($to, "3.3.0") ) {
+        if ( semver_lessthan($to, "3.4.0") ) {
             $sql .= "ALTER EXTENSION $extname UPDATE TO '${to}next'; ";
         } else {
             $sql .= "ALTER EXTENSION $extname UPDATE TO 'ANY'; ";

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

Summary of changes:
 regress/run_test.pl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list