Skip to content

Commit

Permalink
fix: ArrowChunk -> RecordBatch
Browse files Browse the repository at this point in the history
  • Loading branch information
SHIMA Tatsuya committed May 22, 2024
1 parent ef8381c commit 0275622
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rust/src/rdataframe/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ impl Iterator for OwnedDataFrameIterator {
.collect();
self.idx += 1;

let chunk = polars::frame::ArrowChunk::new(batch_cols);
let chunk = arrow::record_batch::RecordBatch::new(batch_cols);
let array = arrow::array::StructArray::new(
self.data_type.clone(),
chunk.into_arrays(),
Expand Down

0 comments on commit 0275622

Please sign in to comment.