Skip to content

Commit

Permalink
Fix compilation errors
Browse files Browse the repository at this point in the history
  • Loading branch information
OussamaSaoudi-db committed Dec 10, 2024
1 parent e3f183c commit 2ecf506
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion kernel/src/scan/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ pub struct ScanResult {
pub raw_data: DeltaResult<Box<dyn EngineData>>,
/// Raw row mask.
// TODO(nick) this should be allocated by the engine
raw_mask: Option<Vec<bool>>,
pub(crate) raw_mask: Option<Vec<bool>>,
}

impl ScanResult {
Expand Down
4 changes: 2 additions & 2 deletions kernel/src/table_changes/resolve_dvs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ use crate::{DeltaResult, Engine, Error};
pub(crate) struct ResolvedCdfScanFile {
/// The scan file that holds the path the data file to be read. The `scan_type` field is
/// resolved to the `_change_type` of the rows for this data file.
scan_file: CdfScanFile,
pub(crate) scan_file: CdfScanFile,
/// Optional vector of bools. If `selection_vector[i] = true`, then that row must be included
/// in the CDF output. Otherwise the row must be filtered out. The vector may be shorter than
/// the data file. In this case, all the remaining rows are *not* selected. If `selection_vector`
/// is `None`, then all rows are selected.
selection_vector: Option<Vec<bool>>,
pub(crate) selection_vector: Option<Vec<bool>>,
}

/// Resolves the deletion vectors for a [`CdfScanFile`]. This function handles two
Expand Down

0 comments on commit 2ecf506

Please sign in to comment.