[SCM] PostGIS branch stable-3.4 updated. 3.4.0-59-gfafdbc36d
git at osgeo.org
git at osgeo.org
Fri Oct 27 01:36:05 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.4 has been updated
via fafdbc36d2f549f80810bc70e79026cf05f28943 (commit)
from 184f575c50102e77e56747de881dc3aa6c102a15 (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 fafdbc36d2f549f80810bc70e79026cf05f28943
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
References #5591 in 3.4 branch (3.4.1dev)
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