Skip to content

Commit

Permalink
Improve comments for PartitionSearchMode struct (#8047)
Browse files Browse the repository at this point in the history
* Improve comments

* Make comments partition/group agnostic
  • Loading branch information
ozankabak committed Nov 4, 2023
1 parent 8acdb07 commit 2af326a
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 14 deletions.
2 changes: 1 addition & 1 deletion datafusion/physical-plan/src/joins/nested_loop_join.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ use datafusion_common::{exec_err, DataFusionError, JoinSide, Result, Statistics}
use datafusion_execution::memory_pool::{MemoryConsumer, MemoryReservation};
use datafusion_execution::TaskContext;
use datafusion_expr::JoinType;
use datafusion_physical_expr::equivalence::join_equivalence_properties;
use datafusion_physical_expr::{EquivalenceProperties, PhysicalSortExpr};

use datafusion_physical_expr::equivalence::join_equivalence_properties;
use futures::{ready, Stream, StreamExt, TryStreamExt};

/// Data of the inner table side
Expand Down
6 changes: 3 additions & 3 deletions datafusion/physical-plan/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -208,9 +208,9 @@ pub trait ExecutionPlan: Debug + DisplayAs + Send + Sync {
EquivalenceProperties::new(self.schema())
}

/// Get a list of `ExecutionPlan` that provide input for this plan. The
/// returned list will be empty for leaf nodes such as scans, will contain a
/// single value for unary nodes, or two values for binary nodes (such as
/// Get a list of children `ExecutionPlan`s that act as inputs to this plan.
/// The returned list will be empty for leaf nodes such as scans, will contain
/// a single value for unary nodes, or two values for binary nodes (such as
/// joins).
fn children(&self) -> Vec<Arc<dyn ExecutionPlan>>;

Expand Down
27 changes: 17 additions & 10 deletions datafusion/physical-plan/src/windows/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,19 +55,26 @@ pub use datafusion_physical_expr::window::{
};

#[derive(Debug, Clone, PartialEq)]
/// Specifies partition expression properties in terms of existing ordering(s).
/// As an example if existing ordering is [a ASC, b ASC, c ASC],
/// `PARTITION BY b` will have `PartitionSearchMode::Linear`.
/// `PARTITION BY a, c` and `PARTITION BY c, a` will have `PartitionSearchMode::PartiallySorted(0)`, `PartitionSearchMode::PartiallySorted(1)`
/// respectively (subset `a` defines an ordered section. Indices points to index of `a` among partition by expressions).
/// `PARTITION BY a, b` and `PARTITION BY b, a` will have `PartitionSearchMode::Sorted` mode.
/// Specifies aggregation grouping and/or window partitioning properties of a
/// set of expressions in terms of the existing ordering.
/// For example, if the existing ordering is `[a ASC, b ASC, c ASC]`:
/// - A `PARTITION BY b` clause will result in `Linear` mode.
/// - A `PARTITION BY a, c` or a `PARTITION BY c, a` clause will result in
/// `PartiallySorted([0])` or `PartiallySorted([1])` modes, respectively.
/// The vector stores the index of `a` in the respective PARTITION BY expression.
/// - A `PARTITION BY a, b` or a `PARTITION BY b, a` clause will result in
/// `Sorted` mode.
/// Note that the examples above are applicable for `GROUP BY` clauses too.
pub enum PartitionSearchMode {
/// None of the partition expressions is ordered.
/// There is no partial permutation of the expressions satisfying the
/// existing ordering.
Linear,
/// A non-empty subset of the the partition expressions are ordered.
/// Indices stored constructs ordered subset, that is satisfied by existing ordering(s).
/// There is a partial permutation of the expressions satisfying the
/// existing ordering. Indices describing the longest partial permutation
/// are stored in the vector.
PartiallySorted(Vec<usize>),
/// All Partition expressions are ordered (Also empty case)
/// There is a (full) permutation of the expressions satisfying the
/// existing ordering.
Sorted,
}

Expand Down

0 comments on commit 2af326a

Please sign in to comment.