| 346 | } // namespace |
| 347 | |
| 348 | Result<Datum> Function::Execute(const std::vector<Datum>& args, |
| 349 | const FunctionOptions* options, ExecContext* ctx) const { |
| 350 | return ExecuteInternal(*this, args, /*passed_length=*/-1, options, ctx); |
| 351 | } |
| 352 | |
| 353 | Result<Datum> Function::Execute(const ExecBatch& batch, const FunctionOptions* options, |
| 354 | ExecContext* ctx) const { |