Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions vortex-datafusion/src/persistent/access_plan.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ use vortex::scan::selection::Selection;
///
/// `VortexAccessPlan` is the hook to use when an external index or planner
/// already knows that only part of a file needs to be scanned. The plan is
/// attached as `extensions` on `PartitionedFile`, and the internal
/// `VortexOpener` applies it before building the Vortex scan.
/// attached as `extensions` on `PartitionedFile`, and the internal Vortex
/// morsel planner applies it before building the Vortex scan.
///
/// The current access plan surface is intentionally small: it lets callers
/// provide a [`Selection`] that narrows the rows considered by the scan.
Expand Down Expand Up @@ -56,7 +56,7 @@ impl VortexAccessPlan {

/// Applies this access plan to a [`ScanBuilder`].
///
/// This is used internally by the file opener after it has translated a
/// This is used internally by the morsel planner after it has translated a
/// `PartitionedFile` into a Vortex scan.
pub fn apply_to_builder(&self, mut scan_builder: ScanBuilder) -> ScanBuilder {
let Self { selection } = self;
Expand Down
2 changes: 1 addition & 1 deletion vortex-datafusion/src/persistent/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ mod access_plan;
mod cache;
mod format;
pub mod metrics;
mod opener;
pub mod morsel;
pub mod reader;
mod sink;
mod source;
Expand Down
Loading
Loading