delta-funnel 0.5.0

Lightweight, fast Delta Lake to SQL Server loads with DataFusion SQL and native TDS
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Delta DataFusion scan execution.

pub(crate) mod async_scheduler;
pub(crate) mod environment;
pub(crate) mod file_reader;
pub(crate) mod metered_object_store;
pub(crate) mod native_async_reader;
pub(crate) mod native_async_row_group_pruning;
mod planning_exec;
pub(crate) mod read_stats;
pub(crate) mod reader_backend;
pub(crate) mod scheduling;

pub(crate) use planning_exec::DeltaScanPlanningExec;
pub use read_stats::DeltaProviderReadStatsSnapshot;
pub use scheduling::{DeltaProviderReaderBackend, DeltaProviderScanExecutionOptions};