Register aggregation functions signatures and references
(
&mut self,
signatures: &HashMap<&'static str, Signature>,
aggregation: &HashMap<&'static str, AggregationFunction>,
)
| 77 | |
| 78 | /// Register aggregation functions signatures and references |
| 79 | pub fn with_aggregation_functions( |
| 80 | &mut self, |
| 81 | signatures: &HashMap<&'static str, Signature>, |
| 82 | aggregation: &HashMap<&'static str, AggregationFunction>, |
| 83 | ) { |
| 84 | self.aggregation_signatures.extend(signatures.to_owned()); |
| 85 | self.aggregation_functions.extend(aggregation.to_owned()); |
| 86 | } |
| 87 | |
| 88 | /// Register Window functions signatures and references |
| 89 | pub fn with_window_functions( |
no outgoing calls
no test coverage detected