| 60 | } |
| 61 | |
| 62 | void AddNullExec(ScalarFunction* func) { |
| 63 | std::vector<InputType> input_types(func->arity().num_args, InputType(Type::NA)); |
| 64 | DCHECK_OK(func->AddKernel(std::move(input_types), OutputType(null()), NullToNullExec)); |
| 65 | } |
| 66 | |
| 67 | } // namespace internal |
| 68 | } // namespace compute |
no test coverage detected