delta_kernel 0.25.0

Core crate providing a Delta/Deltalake implementation focused on interoperability with a wide range of query engines.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Plan intermediate representation.
//!
//! - [`operation`] -- top-level [`Operation`] dispatch (I/O vs query) consumed by
//!   [`PlanExecutor`](super::PlanExecutor).
//! - [`nodes`] -- the plan nodes: [`nodes::Operator`] and its payload structs.
//! - [`plan`] -- plan topology: [`plan::Plan`] holds a sequence of [`plan::PlanNode`]s wired into a
//!   DAG by their [`plan::RefId`] inputs and outputs.
pub mod nodes;
pub mod operation;
pub mod plan;

pub use operation::{IoOperation, Operation};