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

Fixed error not implemented error when reading plain, after-dict pages for fix-len-binary from parquet #1192

Merged
merged 1 commit into from
Jul 29, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/io/parquet/read/deserialize/fixed_size_binary/basic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -169,10 +169,10 @@ impl<'a> Decoder<'a> for BinaryDecoder {
is_optional,
is_filtered,
) {
(Encoding::Plain, None, true, false) => {
(Encoding::Plain, _, true, false) => {
Ok(State::Optional(Optional::try_new(page, self.size)?))
}
(Encoding::Plain, None, false, false) => {
(Encoding::Plain, _, false, false) => {
Ok(State::Required(Required::new(page, self.size)))
}
(Encoding::PlainDictionary | Encoding::RleDictionary, Some(dict), false, false) => {
Expand Down