@@ -66,7 +66,7 @@ pub(crate) fn table_changes_action_iter(
66
66
)
67
67
} ) //Iterator-Result-Iterator-Result
68
68
. map ( move |processed_commit| -> DeltaResult < _ > {
69
- commit_to_scan_batches ( processed_commit?, engine. clone ( ) , filter. clone ( ) )
69
+ cdf_commit_to_scan_batches ( processed_commit?, engine. clone ( ) , filter. clone ( ) )
70
70
} )
71
71
. flatten_ok ( ) // Iterator-Result-Result
72
72
. map ( |x| x?) ; // Iterator-Result
@@ -217,7 +217,6 @@ fn process_cdf_commit(
217
217
// same as an `add` action.
218
218
remove_dvs. retain ( |rm_path, _| add_paths. contains ( rm_path) ) ;
219
219
}
220
-
221
220
Ok ( ProcessedCdfCommit {
222
221
timestamp : commit_file. location . last_modified ,
223
222
commit_file,
@@ -229,7 +228,7 @@ fn process_cdf_commit(
229
228
/// Generates an iterator of [`TableChangesScanData`] by iterating over each action of the
230
229
/// commit, generating a selection vector, and transforming the engine data. This performs
231
230
/// phase 2 of [`LogReplayScanner`].
232
- fn commit_to_scan_batches (
231
+ fn cdf_commit_to_scan_batches (
233
232
processed_commit : ProcessedCdfCommit ,
234
233
engine : Arc < dyn Engine > ,
235
234
filter : Option < Arc < DataSkippingFilter > > ,
0 commit comments