MCPcopy Create free account
hub / github.com/apache/arrow / RegisterAggregateFunction

Function RegisterAggregateFunction

python/pyarrow/src/arrow/python/udf.cc:637–644  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

635}
636
637Status RegisterAggregateFunction(PyObject* function, UdfWrapperCallback cb,
638 const UdfOptions& options,
639 compute::FunctionRegistry* registry) {
640 RETURN_NOT_OK(RegisterScalarAggregateFunction(function, cb, options, registry));
641 RETURN_NOT_OK(RegisterHashAggregateFunction(function, cb, options, registry));
642
643 return Status::OK();
644}
645
646Result<std::shared_ptr<RecordBatchReader>> CallTabularFunction(
647 const std::string& func_name, const std::vector<Datum>& args,

Callers

nothing calls this directly

Calls 3

OKFunction · 0.50

Tested by

no test coverage detected