[postgis-tickets] [SCM] PostGIS branch master updated. 3.4.0rc1-692-g02aa9ed58

git at osgeo.org git at osgeo.org
Tue Oct 17 11:54:22 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, master has been updated
       via  02aa9ed587319440529058426c0a8e10a7ea67bc (commit)
       via  0fdfb522e281674f41a79646a11a9a37f8f686f2 (commit)
      from  d9a7a30ed20ba0b747805b9fd95e0f2ace838b2b (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 02aa9ed587319440529058426c0a8e10a7ea67bc
Author: Sandro Santilli <strk at kbt.io>
Date:   Tue Oct 17 20:54:01 2023 +0200

    Remove needlessly hard-coded skip signatures
    
    See https://woodie.osgeo.org/repos/30/pipeline/1323/7#L2093

diff --git a/utils/postgis_restore.pl.in b/utils/postgis_restore.pl.in
index ec1ccf0fb..dfbbdfad5 100644
--- a/utils/postgis_restore.pl.in
+++ b/utils/postgis_restore.pl.in
@@ -563,7 +563,6 @@ COMMENT FUNCTION addrasterconstraints(rasttable name, rastcolumn name, VARIADIC
 COMMENT FUNCTION droprasterconstraints(rastschema name, rasttable name, rastcolumn name, VARIADIC constraints text[])
 COMMENT FUNCTION lockrow(text, text, text, text, timestamp without time zone)
 COMMENT FUNCTION lockrow(text, text, text, timestamp without time zone)
-COMMENT FUNCTION postgis_extensions_upgrade()
 COMMENT FUNCTION st_clusterkmeans(geom geometry, k integer)
 COMMENT FUNCTION st_concavehull(param_geom geometry, param_pctconvex double precision, param_allow_holes boolean)
 COMMENT FUNCTION st_difference(geom1 geometry, geom2 geometry)
@@ -615,7 +614,6 @@ COMMENT FUNCTION st_subdivide(geom geometry, maxvertices integer)
 COMMENT FUNCTION st_sum4ma(matrix double precision[], nodatamode text, VARIADIC args text[])
 COMMENT FUNCTION st_sum4ma(value double precision[], pos integer[], VARIADIC userargs text[])
 COMMENT FUNCTION st_symdifference(geom1 geometry, geom2 geometry)
-COMMENT FUNCTION st_unaryunion(geometry)
 COMMENT FUNCTION st_valuecount(rastertable text, rastercolumn text, nband integer, exclude_nodata_value boolean, searchvalues double precision[], roundto double precision, OUT value double precision, OUT count integer)
 COMMENT FUNCTION st_valuecount(rastertable text, rastercolumn text, nband integer, searchvalues double precision[], roundto double precision, OUT value double precision, OUT count integer)
 COMMENT FUNCTION st_valuecount(rastertable text, rastercolumn text, searchvalues double precision[], roundto double precision, OUT value double precision, OUT count integer)
@@ -642,21 +640,13 @@ FUNCTION jsonb(geometry)
 FUNCTION json(geometry)
 FUNCTION lockrow(text, text, text, text, timestamp without time zone)
 FUNCTION lockrow(text, text, text, timestamp without time zone)
-FUNCTION postgis_extensions_upgrade()
 FUNCTION _st_aspect4ma(double precision[], integer[], text[])
-FUNCTION st_clusterkmeans(geometry, integer)
 FUNCTION st_concavehull(geometry, double precision, boolean)
 FUNCTION _st_convertarray4ma(double precision[])
-FUNCTION st_difference(geometry, geometry)
 FUNCTION st_distinct4ma(double precision[], integer[], text[])
 FUNCTION st_distinct4ma(double precision[], text, text[])
-FUNCTION st_force3d(geometry)
-FUNCTION st_force3dm(geometry)
-FUNCTION st_force3dz(geometry)
-FUNCTION st_force4d(geometry)
 FUNCTION _st_grayscale4ma(double precision[], integer[], text[])
 FUNCTION _st_hillshade4ma(double precision[], integer[], text[])
-FUNCTION st_intersection(geometry, geometry)
 FUNCTION st_invdistweight4ma(double precision[], integer[], text[])
 FUNCTION _st_mapalgebra(rastbandarg[], regprocedure, text, integer, integer, text, raster, double precision[], boolean, text[])
 FUNCTION st_mapalgebra(rastbandarg[], regprocedure, text, text, raster, integer, integer, text[])
@@ -683,14 +673,10 @@ FUNCTION st_setvalues(raster, integer, integer, integer, double precision[], dou
 FUNCTION _st_slope4ma(double precision[], integer[], text[])
 FUNCTION st_stddev4ma(double precision[], integer[], text[])
 FUNCTION st_stddev4ma(double precision[], text, text[])
-FUNCTION st_subdivide(geometry, integer)
 FUNCTION st_sum4ma(double precision[], integer[], text[])
 FUNCTION st_sum4ma(double precision[], text, text[])
-FUNCTION st_symdifference(geometry, geometry)
-FUNCTION st_tileenvelope(integer, integer, integer, geometry)
 FUNCTION _st_tpi4ma(double precision[], integer[], text[])
 FUNCTION _st_tri4ma(double precision[], integer[], text[])
-FUNCTION st_unaryunion(geometry)
 OPERATOR &&
 OPERATOR &&&
 OPERATOR &/&

commit 0fdfb522e281674f41a79646a11a9a37f8f686f2
Author: Sandro Santilli <strk at kbt.io>
Date:   Tue Oct 17 20:53:36 2023 +0200

    Fix `\1 better written as $1` perl warnings

diff --git a/utils/create_skip_signatures.pl b/utils/create_skip_signatures.pl
index 231ddae71..7db9885e7 100644
--- a/utils/create_skip_signatures.pl
+++ b/utils/create_skip_signatures.pl
@@ -200,7 +200,7 @@ while (<>)
 		my $origline = $_;
 		my $line = $origline;
 
-		$line =~ s/ *ALTER FUNCTION (.*) RENAME TO .*_deprecated_by_postgis_.*/\1/;
+		$line =~ s/ *ALTER FUNCTION (.*) RENAME TO .*_deprecated_by_postgis_.*/$1/;
 
 		handle_function_signature($line);
 	}
@@ -213,7 +213,7 @@ while (<>)
 		my $origline = $_;
 		my $line = $origline;
 
-		$line =~ s/SELECT _postgis_drop_function_by_signature\('([^']*)'\);/\1/;
+		$line =~ s/SELECT _postgis_drop_function_by_signature\('([^']*)'\);/$1/;
 
 		handle_function_signature($line);
 	}

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

Summary of changes:
 utils/create_skip_signatures.pl |  4 ++--
 utils/postgis_restore.pl.in     | 14 --------------
 2 files changed, 2 insertions(+), 16 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list