(map: &mut HashMap<&'static str, StandardFunction>)
| 14 | |
| 15 | #[inline(always)] |
| 16 | pub fn register_std_range_functions(map: &mut HashMap<&'static str, StandardFunction>) { |
| 17 | map.insert("int4range", int4range); |
| 18 | map.insert("daterange", daterange); |
| 19 | map.insert("tsrange", tsrange); |
| 20 | map.insert("isempty", isempty); |
| 21 | } |
| 22 | |
| 23 | #[inline(always)] |
| 24 | pub fn register_std_range_function_signatures(map: &mut HashMap<&'static str, Signature>) { |
no outgoing calls
no test coverage detected
searching dependent graphs…