Method
with_lambda_parameters
(
mut self,
parameters: impl IntoIterator<Item = FieldRef>,
)
Source from the content-addressed store, hash-verified
| 409 | } |
| 410 | |
| 411 | pub fn with_lambda_parameters( |
| 412 | mut self, |
| 413 | parameters: impl IntoIterator<Item = FieldRef>, |
| 414 | ) -> Self { |
| 415 | self.lambda_parameters |
| 416 | .extend(parameters.into_iter().map(|f| (f.name().clone(), f))); |
| 417 | |
| 418 | self |
| 419 | } |
| 420 | |
| 421 | /// Remove the plan of CTE / Subquery for the specified name |
| 422 | pub(super) fn remove_cte(&mut self, cte_name: &str) { |
Tested by
no test coverage detected