Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
ch-sc committed Feb 19, 2025
1 parent 12f7b3c commit cbeb26c
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions datafusion/physical-expr/src/analysis.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,8 @@ impl AnalysisContext {
input_schema: &Schema,
statistics: &[ColumnStatistics],
) -> Result<Self> {
input_schema
.fields
.iter()
.enumerate()
.map(|(idx, stats)| {
(0..statistics.len())
.map(|idx| {
ExprBoundaries::try_from_column(input_schema, &statistics[idx], idx)
})
.collect::<Result<Vec<_>>>()
Expand Down

0 comments on commit cbeb26c

Please sign in to comment.