icexelloss commented on code in PR #35514:
URL: https://github.com/apache/arrow/pull/35514#discussion_r1218523385
##########
python/pyarrow/_compute.pyx:
##########
@@ -2665,11 +2665,19 @@ cdef get_register_tabular_function():
return reg
+cdef get_register_aggregate_function():
+ cdef RegisterUdf reg = RegisterUdf.__new__(RegisterUdf)
+ reg.register_func = RegisterAggregateFunction
+ return reg
+
+
def register_scalar_function(func, function_name, function_doc, in_types,
out_type,
func_registry=None):
"""
Register a user-defined scalar function.
+ This API is EXPERIMENTAL.
Review Comment:
@westonpace Added this because I think this is fairly new/evolving API. Does
marking at Experimental look ok to you?
--
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]