(a: &'a str)
| 212 | inverse = to_unary!(super::CastDateToString) |
| 213 | )] |
| 214 | fn cast_string_to_date<'a>(a: &'a str) -> Result<Date, EvalError> { |
| 215 | strconv::parse_date(a).err_into() |
| 216 | } |
| 217 | |
| 218 | #[sqlfunc( |
| 219 | sqlname = "text_to_time", |
nothing calls this directly
no test coverage detected