Skip to content

Commit

Permalink
fix nit
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanielc committed Jan 15, 2025
1 parent 0c1e8dd commit 56463a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pipeline/src/concluder/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ impl Concluder {
)?
.collect()
.await?;
batches.get(0).and_then(|batch| {
batches.first().and_then(|batch| {
batch.column_by_name("max_index").and_then(|index_col| {
as_uint64_array(&index_col).ok().and_then(|index_col| {
arrow::array::Array::is_valid(&index_col, 0).then(|| index_col.value(0))
Expand Down

0 comments on commit 56463a0

Please sign in to comment.