Skip to content

Commit

Permalink
Fix failing mac test
Browse files Browse the repository at this point in the history
  • Loading branch information
OussamaSaoudi-db committed Sep 19, 2024
1 parent b298da9 commit 901c0e5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion kernel/examples/read-table-single-threaded/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,8 @@ fn try_main() -> DeltaResult<()> {
.build()?;

let mut batches = vec![];
for res in scan.execute(engine.as_ref())?.into_iter() {
for res in scan.execute(engine.as_ref())? {
let res = res?;
let data = res.raw_data?;
let record_batch: RecordBatch = data
.into_any()
Expand Down

0 comments on commit 901c0e5

Please sign in to comment.