| 69 | } |
| 70 | |
| 71 | static NativeFunction GetTestFunctionWithContext() { |
| 72 | NativeFunction multiply_by_two_formula( |
| 73 | "multiply_by_two_formula", {}, {arrow::utf8()}, arrow::utf8(), |
| 74 | ResultNullableType::kResultNullIfNull, "multiply_by_two_formula_utf8", |
| 75 | NativeFunction::kNeedsContext); |
| 76 | return multiply_by_two_formula; |
| 77 | } |
| 78 | |
| 79 | static std::shared_ptr<Configuration> BuildConfigurationWithRegistry( |
| 80 | std::shared_ptr<FunctionRegistry> registry, |
no outgoing calls
no test coverage detected