Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion datafusion/physical-expr/src/equivalence/properties/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ use datafusion_physical_expr_common::utils::ExprPropertiesNode;
use indexmap::IndexSet;
use itertools::Itertools;

/// A `EquivalenceProperties` object stores information known about the output
/// `EquivalenceProperties` stores information about the output
/// of a plan node, that can be used to optimize the plan.
///
/// Currently, it keeps track of:
Expand All @@ -61,6 +61,10 @@ use itertools::Itertools;
/// - Constants expressions: expressions that are known to contain a single
/// constant value.
///
/// Please see the [Using Ordering for Better Plans] blog for more details.
///
/// [Using Ordering for Better Plans]: https://datafusion.apache.org/blog/2025/03/11/ordering-analysis/
///
/// # Example equivalent sort expressions
///
/// Consider table below:
Expand Down