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