(map: &mut HashMap<&'static str, StandardFunction>)
| 19 | |
| 20 | #[inline(always)] |
| 21 | pub fn register_std_general_functions(map: &mut HashMap<&'static str, StandardFunction>) { |
| 22 | map.insert("isnull", general_is_null); |
| 23 | map.insert("isnumeric", general_is_numeric); |
| 24 | map.insert("typeof", general_type_of); |
| 25 | map.insert("greatest", general_greatest); |
| 26 | map.insert("least", general_least); |
| 27 | map.insert("uuid", general_uuid); |
| 28 | map.insert("if", general_if); |
| 29 | map.insert("ifnull", general_ifnull); |
| 30 | } |
| 31 | |
| 32 | #[inline(always)] |
| 33 | pub fn register_std_general_function_signatures(map: &mut HashMap<&'static str, Signature>) { |
no outgoing calls
no test coverage detected
searching dependent graphs…