Register Window functions signatures and references
(
&mut self,
signatures: &HashMap<&'static str, Signature>,
window: &HashMap<&'static str, WindowFunction>,
)
| 87 | |
| 88 | /// Register Window functions signatures and references |
| 89 | pub fn with_window_functions( |
| 90 | &mut self, |
| 91 | signatures: &HashMap<&'static str, Signature>, |
| 92 | window: &HashMap<&'static str, WindowFunction>, |
| 93 | ) { |
| 94 | self.window_signatures.extend(signatures.to_owned()); |
| 95 | self.window_functions.extend(window.to_owned()); |
| 96 | } |
| 97 | |
| 98 | /// Register new Modified Types table |
| 99 | pub fn with_types_table(&mut self, types_table: TypesTable) { |
no outgoing calls
no test coverage detected