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 4fb8e3a commit c314bc7Copy full SHA for c314bc7
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