Skip to content

Commit

Permalink
change to read_scan_file
Browse files Browse the repository at this point in the history
  • Loading branch information
OussamaSaoudi-db committed Dec 10, 2024
1 parent 553a586 commit 019a321
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kernel/src/table_changes/scan.rs
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ impl TableChangesScan {
}) // Iterator-Result-Iterator
.flatten_ok() // Iterator-Result
.map(move |resolved_scan_file| -> DeltaResult<_> {
read_scan_data(
read_scan_file(
engine.as_ref(),
resolved_scan_file?,
&global_scan_state,
Expand All @@ -241,7 +241,7 @@ impl TableChangesScan {

/// Reads the data at the `resolved_scan_file` and transforms the data from physical to logical.
/// The result is a fallible iterator of [`ScanResult`] containing the logical data.
fn read_scan_data(
fn read_scan_file(
engine: &dyn Engine,
resolved_scan_file: ResolvedCdfScanFile,
global_state: &GlobalScanState,
Expand Down

0 comments on commit 019a321

Please sign in to comment.