Skip to content

Commit

Permalink
Update arrow/src/ipc/reader.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Liang-Chi Hsieh <viirya@gmail.com>
  • Loading branch information
liukun4515 and viirya authored Jun 22, 2022
1 parent 49edfc8 commit 7c6c2ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arrow/src/ipc/reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ fn read_buffer(
// if the data is compressed, decompress the data, otherwise return as is
let decompressed_length = read_uncompressed_size(buf_data);
if decompressed_length == LENGTH_EMPTY_COMPRESSED_DATA {
// emtpy
// empty
let empty = Vec::<u8>::new();
Buffer::from(empty)
} else if decompressed_length == LENGTH_NO_COMPRESSED_DATA {
Expand Down

0 comments on commit 7c6c2ee

Please sign in to comment.