This is an automated email from the ASF dual-hosted git repository.
jiayu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sedona.git
The following commit(s) were added to refs/heads/master by this push:
new 7cd18385a2 [GH-2408] RS_ZonalStats: fix incorrect 4-arg function
signature (#2616)
7cd18385a2 is described below
commit 7cd18385a275f9873e4195a3ce34959d564ba406
Author: Jia Yu <[email protected]>
AuthorDate: Sat Feb 7 12:13:05 2026 -0700
[GH-2408] RS_ZonalStats: fix incorrect 4-arg function signature (#2616)
---
docs/api/sql/Raster-operators.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/api/sql/Raster-operators.md b/docs/api/sql/Raster-operators.md
index e456cc0693..2408ded8cf 100644
--- a/docs/api/sql/Raster-operators.md
+++ b/docs/api/sql/Raster-operators.md
@@ -1200,7 +1200,7 @@ RS_ZonalStats(raster: Raster, zone: Geometry, band:
Integer, statType: String, a
```
```
-RS_ZonalStats(raster: Raster, zone: Geometry, statType: String, allTouched:
Boolean)
+RS_ZonalStats(raster: Raster, zone: Geometry, band: Integer, statType: String)
```
```