MCPcopy Create free account
hub / github.com/apache/datafusion / dyn_ord

Method dyn_ord

datafusion/expr/src/logical_plan/extension.rs:379–384  ·  view source on GitHub ↗
(&self, other: &dyn UserDefinedLogicalNode)

Source from the content-addressed store, hash-verified

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()

Callers 1

partial_cmpMethod · 0.45

Calls 2

as_anyMethod · 0.45
partial_cmpMethod · 0.45

Tested by

no test coverage detected