Skip to content

Commit 489989a

Browse files
committed
cargo fmt
1 parent 6e32474 commit 489989a

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

crates/iceberg/src/metadata_columns.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,9 @@ static CHANGE_TYPE_FIELD: Lazy<NestedFieldRef> = Lazy::new(|| {
182182
RESERVED_COL_NAME_CHANGE_TYPE,
183183
Type::Primitive(PrimitiveType::String),
184184
)
185-
.with_doc("The record type in the changelog (INSERT, DELETE, UPDATE_BEFORE, or UPDATE_AFTER)"),
185+
.with_doc(
186+
"The record type in the changelog (INSERT, DELETE, UPDATE_BEFORE, or UPDATE_AFTER)",
187+
),
186188
)
187189
});
188190

crates/iceberg/src/spec/manifest/_serde.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,8 @@ use serde_derive::{Deserialize, Serialize};
2121
use serde_with::serde_as;
2222

2323
use super::{Datum, ManifestEntry, Schema, Struct};
24-
use crate::metadata_columns;
2524
use crate::spec::{FormatVersion, Literal, RawLiteral, StructType, Type};
26-
use crate::{Error, ErrorKind};
25+
use crate::{Error, ErrorKind, metadata_columns};
2726

2827
#[derive(Serialize, Deserialize)]
2928
pub(super) struct ManifestEntryV2 {

0 commit comments

Comments
 (0)