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

Method FromStructScalar

cpp/src/arrow/compute/function_internal.h:704–710  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

702 return Status::OK();
703 }
704 Result<std::unique_ptr<FunctionOptions>> FromStructScalar(
705 const StructScalar& scalar) const override {
706 auto options = std::make_unique<Options>();
707 RETURN_NOT_OK(
708 FromStructScalarImpl<Options>(options.get(), scalar, properties_).status_);
709 return options;
710 }
711 std::unique_ptr<FunctionOptions> Copy(const FunctionOptions& options) const override {
712 auto out = std::make_unique<Options>();
713 CopyImpl<Options>(out.get(), checked_cast<const Options&>(options), properties_);

Callers 1

Calls 1

getMethod · 0.45

Tested by

no test coverage detected