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
4 changes: 2 additions & 2 deletions datafusion/expr/src/partition_evaluator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ pub trait PartitionEvaluator: Debug + Send {
}

/// Evaluate window function on a range of rows in an input
/// partition.x
/// partition.
///
/// This is the simplest and most general function to implement
/// but also the least performant as it creates output one row at
Expand Down Expand Up @@ -210,7 +210,7 @@ pub trait PartitionEvaluator: Debug + Send {
/// A | 1
/// C | 3
/// D | 4
/// D | 5
/// D | 4
/// ```
///
/// For this case, `num_rows` would be `5` and the
Expand Down