We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef7dfd6 commit 5336115Copy full SHA for 5336115
1 file changed
iceberg-rust/src/table/transaction/operation.rs
@@ -154,19 +154,15 @@ impl Operation {
154
.with_format_version(table_metadata.format_version)
155
.with_status(Status::Added)
156
.with_data_file(data_file)
157
- .build()
158
- .map_err(crate::spec::error::Error::from)
159
- .map_err(Error::from)
+ .build().map_err(Error::from)
160
});
161
162
let new_deletefile_iter = delete_files.into_iter().map(|data_file| {
163
ManifestEntry::builder()
164
165
166
167
168
169
170
171
172
let snapshot_id = generate_snapshot_id();
0 commit comments