(
mut self,
higher_order_function: Arc<HigherOrderUDF>,
)
| 100 | } |
| 101 | |
| 102 | pub fn with_higher_order_function( |
| 103 | mut self, |
| 104 | higher_order_function: Arc<HigherOrderUDF>, |
| 105 | ) -> Self { |
| 106 | self.higher_order_functions.insert( |
| 107 | higher_order_function.name().to_string(), |
| 108 | higher_order_function, |
| 109 | ); |
| 110 | self |
| 111 | } |
| 112 | } |
| 113 | |
| 114 | pub(crate) struct MockContextProvider { |
no test coverage detected