| 53 | } |
| 54 | |
| 55 | static NativeFunction GetTestExternalCFunction() { |
| 56 | NativeFunction multiply_by_three_func( |
| 57 | "multiply_by_three", {}, {arrow::int32()}, arrow::int64(), |
| 58 | ResultNullableType::kResultNullIfNull, "multiply_by_three_int32"); |
| 59 | return multiply_by_three_func; |
| 60 | } |
| 61 | |
| 62 | static NativeFunction GetTestFunctionWithFunctionHolder() { |
| 63 | // the 2nd parameter is expected to be an int32 literal |
no outgoing calls
no test coverage detected