We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a387e4 commit 91f4b4cCopy full SHA for 91f4b4c
iceberg-rust/src/catalog/commit.rs
@@ -419,7 +419,10 @@ pub fn apply_table_updates(
419
) -> Result<(), Error> {
420
for update in updates {
421
match update {
422
- TableUpdate::UpgradeFormatVersion { format_version: _ } => {
+ TableUpdate::UpgradeFormatVersion { format_version } => {
423
+ if u8::from(metadata.format_version) == format_version as u8 {
424
+ return Ok(());
425
+ }
426
unimplemented!();
427
}
428
TableUpdate::AssignUuid { uuid } => {
0 commit comments