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

Function AddArrayScalarAggKernels

cpp/src/arrow/compute/kernels/aggregate_basic.cc:868–875  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

866}
867
868void AddArrayScalarAggKernels(KernelInit init,
869 const std::vector<std::shared_ptr<DataType>>& types,
870 std::shared_ptr<DataType> out_ty,
871 ScalarAggregateFunction* func,
872 SimdLevel::type simd_level = SimdLevel::NONE) {
873 AddBasicAggKernels(init, types, out_ty, func, simd_level);
874 AddScalarAggKernels(init, types, out_ty, func);
875}
876
877Result<TypeHolder> MinMaxType(KernelContext*, const std::vector<TypeHolder>& types) {
878 // T -> struct<min: T, max: T>

Callers 1

Calls 2

AddBasicAggKernelsFunction · 0.85
AddScalarAggKernelsFunction · 0.85

Tested by

no test coverage detected