Skip to content

Commit bcca79a

Browse files
committed
cargo fmt
1 parent ca0fdf7 commit bcca79a

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

iceberg-rust/src/catalog/commit.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,8 @@ pub fn apply_table_updates(
447447
metadata.current_schema_id = added_schema_id;
448448
} else {
449449
return Err(Error::InvalidFormat(
450-
"Cannot set current schema to -1 without adding a schema first".to_string(),
450+
"Cannot set current schema to -1 without adding a schema first"
451+
.to_string(),
451452
));
452453
}
453454
} else {
@@ -483,7 +484,8 @@ pub fn apply_table_updates(
483484
metadata.default_sort_order_id = added_sort_order_id;
484485
} else {
485486
return Err(Error::InvalidFormat(
486-
"Cannot set default sort order to -1 without adding a sort order first".to_string(),
487+
"Cannot set default sort order to -1 without adding a sort order first"
488+
.to_string(),
487489
));
488490
}
489491
} else {

0 commit comments

Comments
 (0)