Skip to content

Commit

Permalink
fix file format field to uppercase in manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
ZENOTME committed Nov 19, 2024
1 parent 7cf7ea0 commit 2cd6703
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/iceberg/src/spec/manifest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1334,7 +1334,7 @@ mod _serde {
Ok(Self {
content: value.content as i32,
file_path: value.file_path,
file_format: value.file_format.to_string(),
file_format: value.file_format.to_string().to_ascii_uppercase(),
partition: RawLiteral::try_from(
Literal::Struct(value.partition),
&Type::Struct(partition_type.clone()),
Expand Down

0 comments on commit 2cd6703

Please sign in to comment.