Skip to content

Commit

Permalink
Fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
viirya committed Jul 12, 2022
1 parent 1069294 commit af72eeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arrow/src/datatypes/ffi.rs
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ impl TryFrom<&Field> for FFI_ArrowSchema {
};

if let Some(true) = field.dict_is_ordered() {
flags = flags | Flags::DICTIONARY_ORDERED;
flags |= Flags::DICTIONARY_ORDERED;
}

FFI_ArrowSchema::try_from(field.data_type())?
Expand Down

0 comments on commit af72eeb

Please sign in to comment.