Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
cleanup
Signed-off-by: jayzhan211 <[email protected]>
  • Loading branch information
jayzhan211 committed Jun 30, 2024
commit 8ece394080eadc7c23bcbd11a17074d1544d5f6f
6 changes: 3 additions & 3 deletions datafusion/sql/src/expr/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -954,7 +954,7 @@ impl ArrayFunctionPlanner {
};
let Some(array_has_all) = context_provider.get_function_meta("array_has_all")
else {
return internal_err!("array_prepend not found");
return internal_err!("array_has_all not found");
};

Ok(Self {
Expand Down Expand Up @@ -1090,8 +1090,8 @@ impl UserDefinedPlanner for FieldAccessPlanner {
.chain(std::iter::once(*index))
.collect(),
agg_func.distinct,
agg_func.filter.clone(),
agg_func.order_by.clone(),
agg_func.filter,
agg_func.order_by,
agg_func.null_treatment,
),
)))
Expand Down