[SCM] PostGIS branch stable-3.4 updated. 3.4.5-7-gab0fa8f3f
git at osgeo.org
git at osgeo.org
Tue Mar 17 13:14:51 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.4 has been updated
via ab0fa8f3f46eda481a0195fd786932a0fba0e847 (commit)
from cf26d1a4efc3c886de779335c6662bf682e43daa (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 ab0fa8f3f46eda481a0195fd786932a0fba0e847
Author: Paul Ramsey <pramsey at cleverelephant.ca>
Date: Tue Mar 17 13:14:45 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..5bfd62ad9 100644
--- a/raster/rt_pg/rtpg_geometry.c
+++ b/raster/rt_pg/rtpg_geometry.c
@@ -1572,9 +1572,8 @@ Datum RASTER_asRaster(PG_FUNCTION_ARGS)
srs = NULL;
/* 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 | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list