| 213 | } |
| 214 | |
| 215 | Status Init(const FunctionOptions* options, ExecContext* exec_ctx) override { |
| 216 | if (exec_ctx == NULLPTR) { |
| 217 | exec_ctx = default_exec_context(); |
| 218 | } |
| 219 | kernel_ctx = KernelContext{exec_ctx, kernel}; |
| 220 | return KernelInit(options); |
| 221 | } |
| 222 | |
| 223 | Result<Datum> Execute(const std::vector<Datum>& args, int64_t passed_length) override { |
| 224 | util::tracing::Span span; |
no test coverage detected