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

Method Call

cpp/src/arrow/compute/exec_test.cc:1168–1172  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1166 }
1167
1168 Result<Datum> Call(const std::vector<Datum>& args, const FunctionOptions* options,
1169 ExecContext* ctx) override {
1170 ARROW_RETURN_NOT_OK(func_exec->Init(options, ctx));
1171 return func_exec->Execute(args);
1172 }
1173 Result<Datum> Call(const std::vector<Datum>& args, ExecContext* ctx) override {
1174 return Call(args, nullptr, ctx);
1175 }

Callers 1

DoTestMethod · 0.45

Calls 3

CallClass · 0.85
InitMethod · 0.45
ExecuteMethod · 0.45

Tested by

no test coverage detected