Skip to content

Commit

Permalink
Update datafusion/physical-expr/src/aggregate/first_last.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Andrew Lamb <[email protected]>
  • Loading branch information
viirya and alamb authored Sep 15, 2023
1 parent 9bfc044 commit b4b5332
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datafusion/physical-expr/src/aggregate/first_last.rs
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ mod tests {
let arrs = ranges
.into_iter()
.map(|(start, end)| {
Arc::new(Int64Array::from((start..end).collect::<Vec<_>>())) as ArrayRef
Arc::new((start..end).collect::<Int64Array>())) as ArrayRef
})
.collect::<Vec<_>>();

Expand Down

0 comments on commit b4b5332

Please sign in to comment.