(args: &[ArrayRef])
| 70 | } |
| 71 | |
| 72 | fn spark_try_parse_url(args: &[ArrayRef]) -> Result<ArrayRef> { |
| 73 | spark_handled_parse_url(args, |x| match x { |
| 74 | Err(_) => Ok(None), |
| 75 | result => result, |
| 76 | }) |
| 77 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…