(a: &'a str)
| 74 | inverse = to_unary!(super::CastBytesToString) |
| 75 | )] |
| 76 | fn cast_string_to_bytes<'a>(a: &'a str) -> Result<Vec<u8>, EvalError> { |
| 77 | strconv::parse_bytes(a).err_into() |
| 78 | } |
| 79 | |
| 80 | #[sqlfunc( |
| 81 | sqlname = "text_to_smallint", |
nothing calls this directly
no test coverage detected