(a: &'a str)
| 31 | |
| 32 | #[sqlfunc(sqlname = "crc32_string")] |
| 33 | fn crc32_string<'a>(a: &'a str) -> u32 { |
| 34 | crc32_bytes(a.as_bytes()) |
| 35 | } |
| 36 | |
| 37 | #[sqlfunc(sqlname = "kafka_murmur2_bytes")] |
| 38 | fn kafka_murmur2_bytes<'a>(a: &'a [u8]) -> i32 { |
nothing calls this directly
no test coverage detected