paleolimbot commented on code in PR #325:
URL: https://github.com/apache/sedona-db/pull/325#discussion_r2596926474


##########
rust/sedona-functions/src/st_analyze_agg.rs:
##########
@@ -41,40 +41,40 @@ use wkb::reader::Wkb;
 
 use crate::executor::WkbExecutor;
 
-/// ST_Analyze_Aggr() aggregate UDF implementation
+/// ST_Analyze_Agg() aggregate UDF implementation
 ///
 /// This function computes comprehensive statistics for a collection of 
geometries.
 /// It returns a struct containing various metrics such as count, min/max 
coordinates,
 /// mean size, and geometry type counts.
-pub fn st_analyze_aggr_udf() -> SedonaAggregateUDF {
+pub fn st_analyze_agg_udf() -> SedonaAggregateUDF {
     SedonaAggregateUDF::new(
-        "st_analyze_aggr",
-        vec![Arc::new(STAnalyzeAggr {})],
+        "st_analyze_agg",
+        vec![Arc::new(STAnalyzeAgg {})],
         Volatility::Immutable,
-        Some(st_analyze_aggr_doc()),
+        Some(st_analyze_agg_doc()),
     )

Review Comment:
   That's a great point...I'm comfortable waiting to see if anybody complains 🙂 



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to