We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bab5889 commit 3a3f9deCopy full SHA for 3a3f9de
iceberg-rust/src/table/transaction/operation.rs
@@ -148,15 +148,17 @@ impl Operation {
148
.with_format_version(table_metadata.format_version)
149
.with_status(Status::Added)
150
.with_data_file(data_file)
151
- .build().map_err(Error::from)
+ .build()
152
+ .map_err(Error::from)
153
});
154
155
let new_deletefile_iter = delete_files.into_iter().map(|data_file| {
156
ManifestEntry::builder()
157
158
159
160
161
162
163
164
let snapshot_id = generate_snapshot_id();
0 commit comments