Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
chenzl25 committed Sep 12, 2024
1 parent b71a661 commit 8e21612
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/iceberg/src/arrow/reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ impl ArrowReader {
let mut record_batch_stream = record_batch_stream_builder.build()?;
while let Some(batch) = record_batch_stream.try_next().await? {
let batch = if let Some(reorder) = reorder.as_ref() {
batch.project(&reorder).expect("must be able to reorder")
batch.project(reorder).expect("must be able to reorder")
} else {
batch
};
Expand Down

0 comments on commit 8e21612

Please sign in to comment.