| 1127 | } |
| 1128 | |
| 1129 | Result<Datum> Call(const std::vector<Datum>& args, const FunctionOptions* options, |
| 1130 | ExecContext* ctx) override { |
| 1131 | return CallFunction(func_name, args, options, ctx); |
| 1132 | } |
| 1133 | Result<Datum> Call(const std::vector<Datum>& args, ExecContext* ctx) override { |
| 1134 | return CallFunction(func_name, args, ctx); |
| 1135 | } |
nothing calls this directly
no test coverage detected