(mut self, window_function: Arc<WindowUDF>)
| 94 | } |
| 95 | |
| 96 | pub fn with_window_function(mut self, window_function: Arc<WindowUDF>) -> Self { |
| 97 | self.window_functions |
| 98 | .insert(window_function.name().to_string(), window_function); |
| 99 | self |
| 100 | } |
| 101 | |
| 102 | pub fn with_higher_order_function( |
| 103 | mut self, |
no test coverage detected