Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion datafusion/functions-window-common/src/expr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ impl<'a> ExpressionArgs<'a> {
///
/// * `input_exprs` - The expressions passed as arguments
/// to the user-defined window function.
/// * `input_types` - The data types corresponding to the
/// * `input_fields` - The fields corresponding to the
/// arguments to the user-defined window function.
///
pub fn new(
Expand Down
2 changes: 1 addition & 1 deletion datafusion/functions-window-common/src/partition.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ impl<'a> PartitionEvaluatorArgs<'a> {
///
/// * `input_exprs` - The expressions passed as arguments
/// to the user-defined window function.
/// * `input_types` - The data types corresponding to the
/// * `input_fields` - The fields corresponding to the
/// arguments to the user-defined window function.
/// * `is_reversed` - Set to `true` if and only if the user-defined
/// window function is reversible and is reversed.
Expand Down
2 changes: 1 addition & 1 deletion datafusion/functions/src/planner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ use datafusion_expr::{
};

#[deprecated(
since = "0.50.0",
since = "50.0.0",
note = "Use UnicodeFunctionPlanner and DateTimeFunctionPlanner instead"
)]
#[derive(Default, Debug)]
Expand Down