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

Function RegisterVectorNested

cpp/src/arrow/compute/kernels/vector_nested.cc:258–265  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

256} // namespace
257
258void RegisterVectorNested(FunctionRegistry* registry) {
259 auto flatten = std::make_shared<VectorFunction>(
260 "list_flatten", Arity::Unary(), list_flatten_doc, GetDefaultListFlattenOptions());
261 AddBaseListFlattenKernels(flatten.get());
262 DCHECK_OK(registry->AddFunction(std::move(flatten)));
263
264 DCHECK_OK(registry->AddFunction(std::make_shared<ListParentIndicesFunction>()));
265}
266
267} // namespace internal
268} // namespace compute

Callers 1

RegisterComputeKernelsFunction · 0.85

Calls 5

UnaryFunction · 0.85
getMethod · 0.45
AddFunctionMethod · 0.45

Tested by

no test coverage detected