(&self, args: ScalarFunctionArgs)
| 67 | } |
| 68 | |
| 69 | fn invoke_with_args(&self, args: ScalarFunctionArgs) -> Result<ColumnarValue> { |
| 70 | spark_concat(args) |
| 71 | } |
| 72 | |
| 73 | fn coerce_types(&self, arg_types: &[DataType]) -> Result<Vec<DataType>> { |
| 74 | // Accept any string types, including zero arguments |
no test coverage detected