Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

Commit

Permalink
Fixed example
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgecarleitao committed Jun 13, 2022
1 parent 76d2a39 commit 23e6e13
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions examples/parquet_write_parallel/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -133,14 +133,7 @@ fn create_batch(size: usize) -> Result<Chunk> {
})
.collect();

<<<<<<< HEAD
Chunk::try_new(vec![c1.arced(), c2.arced()])
=======
Chunk::try_new(vec![
Box::new(c1) as Box<dyn Array>,
Box::new(c2) as Box<dyn Array>,
])
>>>>>>> 619252ff0 (Arc->Box)
Chunk::try_new(vec![c1.boxed(), c2.boxed()])
}

fn main() -> Result<()> {
Expand Down

0 comments on commit 23e6e13

Please sign in to comment.