@@ -4,7 +4,7 @@ use delta_kernel::committer::{
44 CommitMetadata , CommitResponse , CommitType , Committer , PublishMetadata ,
55} ;
66use delta_kernel:: {
7- DeltaResult , Engine , Error as DeltaError , FilteredEngineData , ScopedDeltaResultIterator ,
7+ DeltaResult , DeltaResultIterator , Engine , Error as DeltaError , FilteredEngineData ,
88} ;
99use tracing:: { debug, info} ;
1010use unity_catalog_delta_client_api:: { Commit , CommitClient , CommitRequest } ;
@@ -125,7 +125,7 @@ impl<C: CommitClient> UCCommitter<C> {
125125 fn commit_version_0 (
126126 & self ,
127127 engine : & dyn Engine ,
128- actions : ScopedDeltaResultIterator < ' _ , FilteredEngineData > ,
128+ actions : DeltaResultIterator < ' _ , FilteredEngineData > ,
129129 commit_metadata : & CommitMetadata ,
130130 ) -> DeltaResult < CommitResponse > {
131131 debug_assert ! (
@@ -158,7 +158,7 @@ impl<C: CommitClient> UCCommitter<C> {
158158 fn commit_version_non_zero (
159159 & self ,
160160 engine : & dyn Engine ,
161- actions : ScopedDeltaResultIterator < ' _ , FilteredEngineData > ,
161+ actions : DeltaResultIterator < ' _ , FilteredEngineData > ,
162162 commit_metadata : CommitMetadata ,
163163 ) -> DeltaResult < CommitResponse >
164164 where
@@ -239,7 +239,7 @@ impl<C: CommitClient + 'static> Committer for UCCommitter<C> {
239239 fn commit (
240240 & self ,
241241 engine : & dyn Engine ,
242- actions : ScopedDeltaResultIterator < ' _ , FilteredEngineData > ,
242+ actions : DeltaResultIterator < ' _ , FilteredEngineData > ,
243243 commit_metadata : CommitMetadata ,
244244 ) -> DeltaResult < CommitResponse > {
245245 if commit_metadata. version ( ) == 0 {
0 commit comments