(&self, args: ScalarFunctionArgs)
| 66 | } |
| 67 | |
| 68 | fn invoke_with_args(&self, args: ScalarFunctionArgs) -> Result<ColumnarValue> { |
| 69 | spark_array_repeat(args) |
| 70 | } |
| 71 | |
| 72 | fn coerce_types(&self, arg_types: &[DataType]) -> Result<Vec<DataType>> { |
| 73 | let [first_type, second_type] = take_function_args(self.name(), arg_types)?; |
no test coverage detected