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 6d8b35c commit a741982Copy full SHA for a741982
iceberg-rust/src/table/transaction/operation.rs
@@ -154,15 +154,17 @@ impl Operation {
154
.with_format_version(table_metadata.format_version)
155
.with_status(Status::Added)
156
.with_data_file(data_file)
157
- .build().map_err(Error::from)
+ .build()
158
+ .map_err(Error::from)
159
});
160
161
let new_deletefile_iter = delete_files.into_iter().map(|data_file| {
162
ManifestEntry::builder()
163
164
165
166
167
168
169
170
let snapshot_id = generate_snapshot_id();
0 commit comments