(
&self,
exprs: Vec<Expr>,
inputs: Vec<LogicalPlan>,
)
| 350 | } |
| 351 | |
| 352 | fn with_exprs_and_inputs( |
| 353 | &self, |
| 354 | exprs: Vec<Expr>, |
| 355 | inputs: Vec<LogicalPlan>, |
| 356 | ) -> Result<Arc<dyn UserDefinedLogicalNode>> { |
| 357 | Ok(Arc::new(self.with_exprs_and_inputs(exprs, inputs)?)) |
| 358 | } |
| 359 | |
| 360 | fn necessary_children_exprs( |
| 361 | &self, |
no test coverage detected