[SCM] PostGIS branch stable-3.5 updated. 3.5.5-4-ge4e72fda3
git at osgeo.org
git at osgeo.org
Tue Mar 17 13:13:41 PDT 2026
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.5 has been updated
via e4e72fda305f5a2aec43908191cb260277c87729 (commit)
from 1bd2c415cd830ec5e67a9c1987cbfb97aeec9c43 (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 e4e72fda305f5a2aec43908191cb260277c87729
Author: Paul Ramsey <pramsey at cleverelephant.ca>
Date: Tue Mar 17 13:13:36 2026 -0700
Fix CI failure in garden
diff --git a/raster/rt_pg/rtpg_geometry.c b/raster/rt_pg/rtpg_geometry.c
index a4059a8bc..f17a756b4 100644
--- a/raster/rt_pg/rtpg_geometry.c
+++ b/raster/rt_pg/rtpg_geometry.c
@@ -1573,8 +1573,8 @@ Datum RASTER_asRaster(PG_FUNCTION_ARGS)
/* determine number of bands */
/* MIN macro is from GDAL's cpl_port.h */
- num_bands = MIN(pixtypes_len, values_len);
- num_bands = MIN(num_bands, nodatavals_len);
+ num_bands = Min(pixtypes_len, values_len);
+ num_bands = Min(num_bands, nodatavals_len);
POSTGIS_RT_DEBUGF(3, "RASTER_asRaster: pixtypes_len = %d", pixtypes_len);
POSTGIS_RT_DEBUGF(3, "RASTER_asRaster: values_len = %d", values_len);
POSTGIS_RT_DEBUGF(3, "RASTER_asRaster: nodatavals_len = %d", nodatavals_len);
-----------------------------------------------------------------------
Summary of changes:
raster/rt_pg/rtpg_geometry.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list