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 9ea5b30 commit b91844bCopy full SHA for b91844b
crates/iceberg/src/writer/partitioning/unpartitioned_writer.rs
@@ -87,7 +87,7 @@ where
87
.await
88
}
89
90
- async fn close(mut self) -> crate::Result<O> {
+ async fn close(mut self) -> Result<O> {
91
if let Some(mut writer) = self.writer.take() {
92
self.output.extend(writer.close().await?);
93
@@ -125,7 +125,7 @@ mod tests {
125
fn create_test_writer_builder(
126
temp_dir: &TempDir,
127
schema: Arc<crate::spec::Schema>,
128
- ) -> Result<impl IcebergWriterBuilder + Clone> {
+ ) -> Result<impl IcebergWriterBuilder> {
129
let file_io = FileIOBuilder::new_fs_io().build()?;
130
let location_gen = DefaultLocationGenerator::with_data_location(
131
temp_dir.path().to_str().unwrap().to_string(),
0 commit comments