Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
andygrove committed Dec 29, 2024
1 parent 64a92b4 commit 2484e0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion native/core/src/execution/shuffle/codec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ impl<'a> BatchReader<'a> {
let buffer = self.read_buffer();
let offset_buffer = self.read_offset_buffer();
let null_buffer = self.read_null_buffer();
Arc::new(StringArray::try_new(offset_buffer, buffer, null_buffer)?)
Arc::new(BinaryArray::try_new(offset_buffer, buffer, null_buffer)?)
}
DataType::Dictionary(_, _) => {
let k = self.read_array()?;
Expand Down

0 comments on commit 2484e0c

Please sign in to comment.