Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
chenkovsky committed Jan 5, 2025
1 parent bdc9fc5 commit cdbc3e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rust/lance-io/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ impl ReadBatchParams {
Self::Range(r) => Ok(UInt32Array::from(Vec::from_iter(
r.start as u32..r.end as u32,
))),
Self::RangeFull => Ok(UInt32Array::from(Vec::from_iter(0 as u32..total))),
Self::RangeFull => Ok(UInt32Array::from(Vec::from_iter(0_u32..total))),
Self::RangeTo(r) => Ok(UInt32Array::from(Vec::from_iter(0..r.end as u32))),
Self::RangeFrom(r) => Ok(UInt32Array::from(Vec::from_iter(r.start as u32..total))),
}
Expand Down

0 comments on commit cdbc3e7

Please sign in to comment.