[postgis-tickets] [SCM] PostGIS branch master updated. 3.3.0rc2-677-g02738b2d2

git at osgeo.org git at osgeo.org
Tue Feb 28 17:31:57 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, master has been updated
       via  02738b2d252a7910bd84b04459bd12d6504af698 (commit)
      from  6fad448625975e0016b2d1fb43f096c704bddec8 (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 02738b2d252a7910bd84b04459bd12d6504af698
Author: Sandro Santilli <strk at kbt.io>
Date:   Wed Mar 1 02:21:36 2023 +0100

    Generate more function signatures

diff --git a/utils/create_skip_signatures.pl b/utils/create_skip_signatures.pl
index 4640875a4..9aa8f7d82 100644
--- a/utils/create_skip_signatures.pl
+++ b/utils/create_skip_signatures.pl
@@ -95,6 +95,7 @@ while (<>)
 		$line =~ s/\bint\b/integer/g;
 		$line =~ s/\bint4\b/integer/g;
 		$line =~ s/\bint8\b/bigint/g;
+		$line =~ s/\bchar\b/character/g;
 
 		$line =~ m/ *([^\( ]*) *\((.*)\)/ or die "Unexpected DROP FUNCTION syntax: $origline";
 
@@ -102,8 +103,8 @@ while (<>)
 
 		my $args = lc($2);
 		s/^\s+//, s/\s+$// for $args;
-    $args =~ s/ *, */,/g;
-		my @args = split(',', $args);
+		#$args =~ s/\s*,\s*/,/g;
+		my @args = split('\s*,\s*', $args);
 
 		print "COMMENT FUNCTION $name(" . join(', ', @args) .")\n";
 
diff --git a/utils/postgis_restore.pl.in b/utils/postgis_restore.pl.in
index eb60d3976..fe797a324 100644
--- a/utils/postgis_restore.pl.in
+++ b/utils/postgis_restore.pl.in
@@ -617,74 +617,25 @@ COMMENT AGGREGATE st_union(raster, unionarg[])
 COMMENT AGGREGATE topoelementarray_agg(topoelement)
 COMMENT DOMAIN topoelement
 COMMENT DOMAIN topoelementarray
-COMMENT FUNCTION addoverviewconstraints(ovschema name, ovtable name, ovcolumn name, refschema name, reftable name, refcolumn name, ovfactor integer)
-COMMENT FUNCTION addoverviewconstraints(ovtable name, ovcolumn name, reftable name, refcolumn name, ovfactor integer)
-COMMENT FUNCTION addrasterconstraints(rastschema name, rasttable name, rastcolumn name, srid boolean, scale_x boolean, scale_y boolean, blocksize_x boolean, blocksize_y boolean, same_alignment boolean, regular_blocking boolean, num_bands boolean, pixel_types boolean, nodata_values boolean, out_db boolean, extent boolean)
 COMMENT FUNCTION addrasterconstraints(rastschema name, rasttable name, rastcolumn name, VARIADIC constraints text[])
-COMMENT FUNCTION addrasterconstraints(rasttable name, rastcolumn name, srid boolean, scale_x boolean, scale_y boolean, blocksize_x boolean, blocksize_y boolean, same_alignment boolean, regular_blocking boolean, num_bands boolean, pixel_types boolean, nodata_values boolean, out_db boolean, extent boolean)
 COMMENT FUNCTION addrasterconstraints(rasttable name, rastcolumn name, VARIADIC constraints text[])
-COMMENT FUNCTION dropoverviewconstraints(ovschema name, ovtable name, ovcolumn name)
-COMMENT FUNCTION dropoverviewconstraints(ovtable name, ovcolumn name)
-COMMENT FUNCTION droprasterconstraints(rastschema name, rasttable name, rastcolumn name, srid boolean, scale_x boolean, scale_y boolean, blocksize_x boolean, blocksize_y boolean, same_alignment boolean, regular_blocking boolean, num_bands boolean, pixel_types boolean, nodata_values boolean, out_db boolean, extent boolean)
 COMMENT FUNCTION droprasterconstraints(rastschema name, rasttable name, rastcolumn name, VARIADIC constraints text[])
-COMMENT FUNCTION droprasterconstraints(rasttable name, rastcolumn name, srid boolean, scale_x boolean, scale_y boolean, blocksize_x boolean, blocksize_y boolean, same_alignment boolean, regular_blocking boolean, num_bands boolean, pixel_types boolean, nodata_values boolean, out_db boolean, extent boolean)
 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_addband(rast raster, index integer, outdbfile text, outdbindex integer[], nodataval double precision)
-COMMENT FUNCTION st_addband(rast raster, index integer, pixeltype text, initialvalue double precision, nodataval double precision)
-COMMENT FUNCTION st_addband(rast raster, outdbfile text, outdbindex integer[], index integer, nodataval double precision)
-COMMENT FUNCTION st_addband(rast raster, pixeltype text, initialvalue double precision, nodataval double precision)
-COMMENT FUNCTION st_addband(torast raster, fromrast raster, fromband integer, torastindex integer)
-COMMENT FUNCTION st_addband(torast raster, fromrasts raster[], fromband integer, torastindex integer)
-COMMENT FUNCTION st_aspect(rast raster, nband integer, customextent raster, pixeltype text, units text, interpolate_nodata boolean)
-COMMENT FUNCTION st_aspect(rast raster, nband integer, pixeltype text, units text, interpolate_nodata boolean)
-COMMENT FUNCTION st_asraster(geom geometry, ref raster, pixeltype text, value double precision, nodataval double precision, touched boolean)
-COMMENT FUNCTION st_asraster(geom geometry, ref raster, pixeltype text[], value double precision[], nodataval double precision[], touched boolean)
-COMMENT FUNCTION st_asraster(geom geometry, scalex double precision, scaley double precision, gridx double precision, gridy double precision, pixeltype text, value double precision, nodataval double precision, skewx double precision, skewy double precision, touched boolean)
-COMMENT FUNCTION st_asraster(geom geometry, scalex double precision, scaley double precision, gridx double precision, gridy double precision, pixeltype text[], value double precision[], nodataval double precision[], skewx double precision, skewy double precision, touched boolean)
-COMMENT FUNCTION st_asraster(geom geometry, scalex double precision, scaley double precision, pixeltype text, value double precision, nodataval double precision, upperleftx double precision, upperlefty double precision, skewx double precision, skewy double precision, touched boolean)
-COMMENT FUNCTION st_asraster(geom geometry, scalex double precision, scaley double precision, pixeltype text[], value double precision[], nodataval double precision[], upperleftx double precision, upperlefty double precision, skewx double precision, skewy double precision, touched boolean)
-COMMENT FUNCTION st_asraster(geom geometry, width integer, height integer, gridx double precision, gridy double precision, pixeltype text, value double precision, nodataval double precision, skewx double precision, skewy double precision, touched boolean)
-COMMENT FUNCTION st_asraster(geom geometry, width integer, height integer, gridx double precision, gridy double precision, pixeltype text[], value double precision[], nodataval double precision[], skewx double precision, skewy double precision, touched boolean)
-COMMENT FUNCTION st_asraster(geom geometry, width integer, height integer, pixeltype text, value double precision, nodataval double precision, upperleftx double precision, upperlefty double precision, skewx double precision, skewy double precision, touched boolean)
-COMMENT FUNCTION st_asraster(geom geometry, width integer, height integer, pixeltype text[], value double precision[], nodataval double precision[], upperleftx double precision, upperlefty double precision, skewx double precision, skewy double precision, touched boolean)
-COMMENT FUNCTION st_bandmetadata(rast raster, band integer)
-COMMENT FUNCTION st_bandmetadata(rast raster, band integer[])
-COMMENT FUNCTION st_band(rast raster, nbands text, delimiter character)
-COMMENT FUNCTION st_clip(rast raster, geom geometry, crop boolean)
-COMMENT FUNCTION st_clip(rast raster, geom geometry, nodataval double precision, crop boolean)
-COMMENT FUNCTION st_clip(rast raster, geom geometry, nodataval double precision[], crop boolean)
-COMMENT FUNCTION st_clip(rast raster, nband integer, geom geometry, crop boolean)
-COMMENT FUNCTION st_clip(rast raster, nband integer, geom geometry, nodataval double precision, crop boolean)
-COMMENT FUNCTION st_clip(rast raster, nband integer[], geom geometry, nodataval double precision[], crop boolean)
 COMMENT FUNCTION st_clusterkmeans(geom geometry, k integer)
-COMMENT FUNCTION st_colormap(rast raster, colormap text, method text)
-COMMENT FUNCTION st_colormap(rast raster, nband integer, colormap text, method text)
 COMMENT FUNCTION st_concavehull(param_geom geometry, param_pctconvex double precision, param_allow_holes boolean)
-COMMENT FUNCTION st_contour(rast raster, bandnumber integer, level_interval double precision, level_base double precision, fixed_levels double precision[], polygonize boolean)
 COMMENT FUNCTION st_difference(geom1 geometry, geom2 geometry)
 COMMENT FUNCTION st_distinct4ma(matrix double precision[], nodatamode text, VARIADIC args text[])
 COMMENT FUNCTION st_distinct4ma(value double precision[], pos integer[], VARIADIC userargs text[])
 COMMENT FUNCTION st_gdaldrivers(OUT idx integer, OUT short_name text, OUT long_name text, OUT can_read boolean, OUT can_write boolean, OUT create_options text)
-COMMENT FUNCTION st_grayscale(rastbandargset rastbandarg[], extenttype text)
-COMMENT FUNCTION st_grayscale(rast raster, redband integer, greenband integer, blueband integer, extenttype text)
 COMMENT FUNCTION st_hexagongrid(size double precision, bounds geometry, OUT geom geometry, OUT i integer, OUT j integer)
-COMMENT FUNCTION st_hillshade(rast raster, nband integer, customextent raster, pixeltype text, azimuth double precision, altitude double precision, max_bright double precision, scale double precision, interpolate_nodata boolean)
-COMMENT FUNCTION st_hillshade(rast raster, nband integer, pixeltype text, azimuth double precision, altitude double precision, max_bright double precision, scale double precision, interpolate_nodata boolean)
 COMMENT FUNCTION st_histogram(rast raster, nband integer, bins integer, "right" boolean, OUT min double precision, OUT max double precision, OUT count bigint, OUT percent double precision)
 COMMENT FUNCTION st_histogram(rast raster, nband integer, bins integer, width double precision[], "right" boolean, OUT min double precision, OUT max double precision, OUT count bigint, OUT percent double precision)
 COMMENT FUNCTION st_histogram(rast raster, nband integer, exclude_nodata_value boolean, bins integer, "right" boolean, OUT min double precision, OUT max double precision, OUT count bigint, OUT percent double precision)
 COMMENT FUNCTION st_histogram(rast raster, nband integer, exclude_nodata_value boolean, bins integer, width double precision[], "right" boolean, OUT min double precision, OUT max double precision, OUT count bigint, OUT percent double precision)
-COMMENT FUNCTION st_interpolateraster(geom geometry, options text, rast raster, bandnumber integer)
 COMMENT FUNCTION st_intersection(geom1 geometry, geom2 geometry)
-COMMENT FUNCTION st_intersection(rast1 raster, band1 integer, rast2 raster, band2 integer, nodataval double precision[])
-COMMENT FUNCTION st_intersection(rast1 raster, band1 integer, rast2 raster, band2 integer, returnband text, nodataval double precision[])
-COMMENT FUNCTION st_intersection(rast1 raster, rast2 raster, nodataval double precision[])
-COMMENT FUNCTION st_intersection(rast1 raster, rast2 raster, returnband text, nodataval double precision[])
 COMMENT FUNCTION st_invdistweight4ma(value double precision[], pos integer[], VARIADIC userargs text[])
-COMMENT FUNCTION st_mapalgebraexpr(rast1 raster, band1 integer, rast2 raster, band2 integer, expression text, pixeltype text, extenttype text, nodata1expr text, nodata2expr text, nodatanodataval double precision)
-COMMENT FUNCTION st_mapalgebraexpr(rast1 raster, rast2 raster, expression text, pixeltype text, extenttype text, nodata1expr text, nodata2expr text, nodatanodataval double precision)
 COMMENT FUNCTION st_mapalgebrafctngb(rast raster, band integer, pixeltype text, ngbwidth integer, ngbheight integer, onerastngbuserfunc regprocedure, nodatamode text, VARIADIC args text[])
 COMMENT FUNCTION st_mapalgebrafct(rast1 raster, band1 integer, rast2 raster, band2 integer, tworastuserfunc regprocedure, pixeltype text, extenttype text, VARIADIC userargs text[])
 COMMENT FUNCTION st_mapalgebrafct(rast1 raster, rast2 raster, tworastuserfunc regprocedure, pixeltype text, extenttype text, VARIADIC userargs text[])
@@ -692,15 +643,11 @@ COMMENT FUNCTION st_mapalgebrafct(rast raster, band integer, onerastuserfunc reg
 COMMENT FUNCTION st_mapalgebrafct(rast raster, band integer, pixeltype text, onerastuserfunc regprocedure, VARIADIC args text[])
 COMMENT FUNCTION st_mapalgebrafct(rast raster, onerastuserfunc regprocedure, VARIADIC args text[])
 COMMENT FUNCTION st_mapalgebrafct(rast raster, pixeltype text, onerastuserfunc regprocedure, VARIADIC args text[])
-COMMENT FUNCTION st_mapalgebra(rast1 raster, band1 integer, rast2 raster, band2 integer, expression text, pixeltype text, extenttype text, nodata1expr text, nodata2expr text, nodatanodataval double precision)
 COMMENT FUNCTION st_mapalgebra(rast1 raster, nband1 integer, rast2 raster, nband2 integer, callbackfunc regprocedure, pixeltype text, extenttype text, customextent raster, distancex integer, distancey integer, VARIADIC userargs text[])
-COMMENT FUNCTION st_mapalgebra(rast1 raster, rast2 raster, expression text, pixeltype text, extenttype text, nodata1expr text, nodata2expr text, nodatanodataval double precision)
 COMMENT FUNCTION st_mapalgebra(rastbandargset rastbandarg[], callbackfunc regprocedure, pixeltype text, extenttype text, customextent raster, distancex integer, distancey integer, VARIADIC userargs text[])
 COMMENT FUNCTION st_mapalgebra(rast raster, nband integer, callbackfunc regprocedure, mask double precision[], weighted boolean, pixeltype text, extenttype text, customextent raster, VARIADIC userargs text[])
 COMMENT FUNCTION st_mapalgebra(rast raster, nband integer, callbackfunc regprocedure, pixeltype text, extenttype text, customextent raster, distancex integer, distancey integer, VARIADIC userargs text[])
 COMMENT FUNCTION st_mapalgebra(rast raster, nband integer[], callbackfunc regprocedure, pixeltype text, extenttype text, customextent raster, distancex integer, distancey integer, VARIADIC userargs text[])
-COMMENT FUNCTION st_mapalgebra(rast raster, nband integer, pixeltype text, expression text, nodataval double precision)
-COMMENT FUNCTION st_mapalgebra(rast raster, pixeltype text, expression text, nodataval double precision)
 COMMENT FUNCTION st_max4ma(matrix double precision[], nodatamode text, VARIADIC args text[])
 COMMENT FUNCTION st_max4ma(value double precision[], pos integer[], VARIADIC userargs text[])
 COMMENT FUNCTION st_maximuminscribedcircle(geometry, OUT center geometry, OUT nearest geometry, OUT radius double precision)
@@ -709,24 +656,8 @@ COMMENT FUNCTION st_mean4ma(value double precision[], pos integer[], VARIADIC us
 COMMENT FUNCTION st_metadata(rast raster, OUT upperleftx double precision, OUT upperlefty double precision, OUT width integer, OUT height integer, OUT scalex double precision, OUT scaley double precision, OUT skewx double precision, OUT skewy double precision, OUT srid integer, OUT numbands integer)
 COMMENT FUNCTION st_min4ma(matrix double precision[], nodatamode text, VARIADIC args text[])
 COMMENT FUNCTION st_min4ma(value double precision[], pos integer[], VARIADIC userargs text[])
-COMMENT FUNCTION st_minconvexhull(rast raster, nband integer)
 COMMENT FUNCTION st_mindist4ma(value double precision[], pos integer[], VARIADIC userargs text[])
 COMMENT FUNCTION st_minimumboundingradius(geometry, OUT center geometry, OUT radius double precision)
-COMMENT FUNCTION st_nearestvalue(rast raster, band integer, columnx integer, rowy integer, exclude_nodata_value boolean)
-COMMENT FUNCTION st_nearestvalue(rast raster, band integer, pt geometry, exclude_nodata_value boolean)
-COMMENT FUNCTION st_nearestvalue(rast raster, columnx integer, rowy integer, exclude_nodata_value boolean)
-COMMENT FUNCTION st_nearestvalue(rast raster, pt geometry, exclude_nodata_value boolean)
-COMMENT FUNCTION st_neighborhood(rast raster, band integer, columnx integer, rowy integer, distancex integer, distancey integer, exclude_nodata_value boolean)
-COMMENT FUNCTION st_neighborhood(rast raster, band integer, pt geometry, distancex integer, distancey integer, exclude_nodata_value boolean)
-COMMENT FUNCTION st_neighborhood(rast raster, columnx integer, rowy integer, distancex integer, distancey integer, exclude_nodata_value boolean)
-COMMENT FUNCTION st_neighborhood(rast raster, pt geometry, distancex integer, distancey integer, exclude_nodata_value boolean)
-COMMENT FUNCTION st_pixelascentroids(rast raster, band integer, exclude_nodata_value boolean)
-COMMENT FUNCTION st_pixelaspoints(rast raster, band integer, exclude_nodata_value boolean)
-COMMENT FUNCTION st_pixelaspolygons(rast raster, band integer, exclude_nodata_value boolean)
-COMMENT FUNCTION st_pixelofvalue(rast raster, nband integer, search double precision, exclude_nodata_value boolean)
-COMMENT FUNCTION st_pixelofvalue(rast raster, nband integer, search double precision[], exclude_nodata_value boolean)
-COMMENT FUNCTION st_pixelofvalue(rast raster, search double precision, exclude_nodata_value boolean)
-COMMENT FUNCTION st_pixelofvalue(rast raster, search double precision[], exclude_nodata_value boolean)
 COMMENT FUNCTION st_quantile(rast raster, nband integer, exclude_nodata_value boolean, quantiles double precision[], OUT quantile double precision, OUT value double precision)
 COMMENT FUNCTION st_quantile(rast raster, nband integer, quantiles double precision[], OUT quantile double precision, OUT value double precision)
 COMMENT FUNCTION st_quantile(rast raster, quantiles double precision[], OUT quantile double precision, OUT value double precision)
@@ -734,43 +665,15 @@ COMMENT FUNCTION st_range4ma(matrix double precision[], nodatamode text, VARIADI
 COMMENT FUNCTION st_range4ma(value double precision[], pos integer[], VARIADIC userargs text[])
 COMMENT FUNCTION st_rastertoworldcoord(rast raster, columnx integer, rowy integer, OUT longitude double precision, OUT latitude double precision)
 COMMENT FUNCTION st_reclass(rast raster, VARIADIC reclassargset reclassarg[])
-COMMENT FUNCTION st_resample(rast raster, ref raster, algorithm text, maxerr double precision, usescale boolean)
-COMMENT FUNCTION st_resample(rast raster, ref raster, usescale boolean, algorithm text, maxerr double precision)
-COMMENT FUNCTION st_resample(rast raster, scalex double precision, scaley double precision, gridx double precision, gridy double precision, skewx double precision, skewy double precision, algorithm text, maxerr double precision)
-COMMENT FUNCTION st_resample(rast raster, width integer, height integer, gridx double precision, gridy double precision, skewx double precision, skewy double precision, algorithm text, maxerr double precision)
-COMMENT FUNCTION st_resize(rast raster, percentwidth double precision, percentheight double precision, algorithm text, maxerr double precision)
-COMMENT FUNCTION st_resize(rast raster, width integer, height integer, algorithm text, maxerr double precision)
-COMMENT FUNCTION st_resize(rast raster, width text, height text, algorithm text, maxerr double precision)
-COMMENT FUNCTION st_roughness(rast raster, nband integer, customextent raster, pixeltype text, interpolate_nodata boolean)
-COMMENT FUNCTION st_samealignment(ulx1 double precision, uly1 double precision, scalex1 double precision, scaley1 double precision, skewx1 double precision, skewy1 double precision, ulx2 double precision, uly2 double precision, scalex2 double precision, scaley2 double precision, skewx2 double precision, skewy2 double precision)
-COMMENT FUNCTION st_setgeoreference(rast raster, upperleftx double precision, upperlefty double precision, scalex double precision, scaley double precision, skewx double precision, skewy double precision)
-COMMENT FUNCTION st_setvalue(rast raster, geom geometry, newvalue double precision)
-COMMENT FUNCTION st_setvalue(rast raster, nband integer, geom geometry, newvalue double precision)
-COMMENT FUNCTION st_setvalues(rast raster, nband integer, geomvalset geomval[], keepnodata boolean)
 COMMENT FUNCTION st_setvalues(rast raster, nband integer, x integer, y integer, newvalueset double precision[], noset boolean[], keepnodata boolean)
 COMMENT FUNCTION st_setvalues(rast raster, nband integer, x integer, y integer, newvalueset double precision[], nosetvalue double precision, keepnodata boolean)
-COMMENT FUNCTION st_setvalues(rast raster, nband integer, x integer, y integer, width integer, height integer, newvalue double precision, keepnodata boolean)
-COMMENT FUNCTION st_setvalues(rast raster, x integer, y integer, width integer, height integer, newvalue double precision, keepnodata boolean)
-COMMENT FUNCTION st_slope(rast raster, nband integer, customextent raster, pixeltype text, units text, scale double precision, interpolate_nodata boolean)
-COMMENT FUNCTION st_slope(rast raster, nband integer, pixeltype text, units text, scale double precision, interpolate_nodata boolean)
-COMMENT FUNCTION st_snaptogrid(rast raster, gridx double precision, gridy double precision, algorithm text, maxerr double precision, scalex double precision, scaley double precision)
-COMMENT FUNCTION st_snaptogrid(rast raster, gridx double precision, gridy double precision, scalex double precision, scaley double precision, algorithm text, maxerr double precision)
-COMMENT FUNCTION st_snaptogrid(rast raster, gridx double precision, gridy double precision, scalexy double precision, algorithm text, maxerr double precision)
 COMMENT FUNCTION st_squaregrid(size double precision, bounds geometry, OUT geom geometry, OUT i integer, OUT j integer)
 COMMENT FUNCTION st_stddev4ma(matrix double precision[], nodatamode text, VARIADIC args text[])
 COMMENT FUNCTION st_stddev4ma(value double precision[], pos integer[], VARIADIC userargs text[])
 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_summarystats(rast raster, exclude_nodata_value boolean)
-COMMENT FUNCTION st_summarystats(rast raster, nband integer, exclude_nodata_value boolean)
 COMMENT FUNCTION st_symdifference(geom1 geometry, geom2 geometry)
-COMMENT FUNCTION st_tile(rast raster, nband integer, width integer, height integer, padwithnodata boolean, nodataval double precision)
-COMMENT FUNCTION st_tile(rast raster, nband integer[], width integer, height integer, padwithnodata boolean, nodataval double precision)
-COMMENT FUNCTION st_tile(rast raster, width integer, height integer, padwithnodata boolean, nodataval double precision)
-COMMENT FUNCTION st_tpi(rast raster, nband integer, customextent raster, pixeltype text, interpolate_nodata boolean)
-COMMENT FUNCTION st_transform(rast raster, alignto raster, algorithm text, maxerr double precision)
-COMMENT FUNCTION st_tri(rast raster, nband integer, customextent raster, pixeltype text, interpolate_nodata boolean)
 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)
@@ -780,8 +683,6 @@ COMMENT FUNCTION st_valuecount(rast raster, nband integer, searchvalues double p
 COMMENT FUNCTION st_valuecount(rast raster, searchvalues double precision[], roundto double precision, OUT value double precision, OUT count integer)
 COMMENT FUNCTION st_worldtorastercoord(rast raster, longitude double precision, latitude double precision, OUT columnx integer, OUT rowy integer)
 COMMENT FUNCTION st_worldtorastercoord(rast raster, pt geometry, OUT columnx integer, OUT rowy integer)
-COMMENT FUNCTION updaterastersrid(schema_name name, table_name name, column_name name, new_srid integer)
-COMMENT FUNCTION updaterastersrid(table_name name, column_name name, new_srid integer)
 COMMENT SCHEMA topology
 CONSTRAINT layer layer_pkey
 CONSTRAINT layer layer_schema_name_table_name_feature_column_key
@@ -792,10 +693,8 @@ DEFAULT topology id
 DOMAIN topoelement
 DOMAIN topoelementarray
 FK CONSTRAINT layer layer_topology_id_fkey
-FUNCTION _add_raster_constraint_scale(name, name, name, character)
 FUNCTION addrasterconstraints(name, name, name, text[])
 FUNCTION addrasterconstraints(name, name, text[])
-FUNCTION _drop_raster_constraint_scale(name, name, name, character)
 FUNCTION droprasterconstraints(name, name, name, text[])
 FUNCTION droprasterconstraints(name, name, text[])
 FUNCTION jsonb(geometry)
@@ -806,11 +705,9 @@ FUNCTION _overview_constraint_info(name, name, name)
 FUNCTION pgis_asflatgeobuf_transfn(internal, anyelement, boolean)
 FUNCTION pgis_asflatgeobuf_transfn(internal, anyelement, boolean, text)
 FUNCTION postgis_extensions_upgrade()
-FUNCTION _raster_constraint_info_scale(name, name, name, character)
 FUNCTION st_asgeojson(record, text, integer, boolean)
 FUNCTION st_asmvtgeom(geometry, box2d, integer, integer, boolean)
 FUNCTION _st_aspect4ma(double precision[], integer[], text[])
-FUNCTION st_band(raster, text, character)
 FUNCTION st_clusterkmeans(geometry, integer)
 FUNCTION st_concavehull(geometry, double precision, boolean)
 FUNCTION _st_convertarray4ma(double precision[])
@@ -860,9 +757,6 @@ 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_summarystats_transfn(internal, raster, boolean, double precision)
-FUNCTION _st_summarystats_transfn(internal, raster, integer, boolean)
-FUNCTION _st_summarystats_transfn(internal, raster, integer, boolean, double precision)
 FUNCTION st_symdifference(geometry, geometry)
 FUNCTION st_tileenvelope(integer, integer, integer, geometry)
 FUNCTION _st_tpi4ma(double precision[], integer[], text[])

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

Summary of changes:
 utils/create_skip_signatures.pl |   5 +-
 utils/postgis_restore.pl.in     | 106 ----------------------------------------
 2 files changed, 3 insertions(+), 108 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list