(mut self, scalar_function: Arc<ScalarUDF>)
| 76 | } |
| 77 | |
| 78 | pub fn with_scalar_function(mut self, scalar_function: Arc<ScalarUDF>) -> Self { |
| 79 | self.scalar_functions |
| 80 | .insert(scalar_function.name().to_string(), scalar_function); |
| 81 | self |
| 82 | } |
| 83 | |
| 84 | pub fn with_aggregate_function( |
| 85 | mut self, |
no test coverage detected