(a: &'a str)
| 101 | inverse = to_unary!(super::CastInt64ToString) |
| 102 | )] |
| 103 | fn cast_string_to_int64<'a>(a: &'a str) -> Result<i64, EvalError> { |
| 104 | strconv::parse_int64(a).err_into() |
| 105 | } |
| 106 | |
| 107 | #[sqlfunc( |
| 108 | sqlname = "text_to_real", |
nothing calls this directly
no test coverage detected