diff --git a/arrow/src/ipc/reader.rs b/arrow/src/ipc/reader.rs index 9774428a7b7d..c1d38faa685a 100644 --- a/arrow/src/ipc/reader.rs +++ b/arrow/src/ipc/reader.rs @@ -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::::new(); Buffer::from(empty) } else if decompressed_length == LENGTH_NO_COMPRESSED_DATA {