(&self, other: &dyn UserDefinedLogicalNode)
| 377 | } |
| 378 | |
| 379 | fn dyn_ord(&self, other: &dyn UserDefinedLogicalNode) -> Option<Ordering> { |
| 380 | other |
| 381 | .as_any() |
| 382 | .downcast_ref::<Self>() |
| 383 | .and_then(|other| self.partial_cmp(other)) |
| 384 | } |
| 385 | |
| 386 | fn supports_limit_pushdown(&self) -> bool { |
| 387 | self.supports_limit_pushdown() |
no test coverage detected