(&self)
| 332 | } |
| 333 | |
| 334 | fn expressions(&self) -> Vec<Expr> { |
| 335 | self.input |
| 336 | .iter() |
| 337 | .flat_map(|child| child.expressions()) |
| 338 | .collect() |
| 339 | } |
| 340 | |
| 341 | fn fmt_for_explain(&self, f: &mut Formatter) -> std::fmt::Result { |
| 342 | write!(f, "NoopPlan") |
no test coverage detected