(&self, args: ScalarFunctionArgs)
| 102 | } |
| 103 | |
| 104 | fn invoke_with_args(&self, args: ScalarFunctionArgs) -> Result<ColumnarValue> { |
| 105 | let arrays: Vec<ArrayRef> = ColumnarValue::values_to_arrays(&args.args)?; |
| 106 | let result = str_to_map_inner(&arrays)?; |
| 107 | Ok(ColumnarValue::Array(result)) |
| 108 | } |
| 109 | } |
| 110 | |
| 111 | fn str_to_map_inner(args: &[ArrayRef]) -> Result<ArrayRef> { |
nothing calls this directly
no test coverage detected