File tree Expand file tree Collapse file tree
crates/iceberg/src/transaction Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -50,13 +50,13 @@ pub(crate) trait SnapshotProduceOperation: Send + Sync {
5050pub ( crate ) struct DefaultManifestProcess ;
5151
5252impl ManifestProcess for DefaultManifestProcess {
53- fn process_manifeset ( & self , manifests : Vec < ManifestFile > ) -> Vec < ManifestFile > {
53+ fn process_manifests ( & self , manifests : Vec < ManifestFile > ) -> Vec < ManifestFile > {
5454 manifests
5555 }
5656}
5757
5858pub ( crate ) trait ManifestProcess : Send + Sync {
59- fn process_manifeset ( & self , manifests : Vec < ManifestFile > ) -> Vec < ManifestFile > ;
59+ fn process_manifests ( & self , manifests : Vec < ManifestFile > ) -> Vec < ManifestFile > ;
6060}
6161
6262pub ( crate ) struct SnapshotProduceAction < ' a > {
@@ -229,7 +229,7 @@ impl<'a> SnapshotProduceAction<'a> {
229229
230230 let mut manifest_files = vec ! [ added_manifest] ;
231231 manifest_files. extend ( existing_manifests) ;
232- let manifest_files = manifest_process. process_manifeset ( manifest_files) ;
232+ let manifest_files = manifest_process. process_manifests ( manifest_files) ;
233233 Ok ( manifest_files)
234234 }
235235
You can’t perform that action at this time.
0 commit comments