delta_kernel 0.21.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
13
//! Two-phase log replay for parallel execution of checkpoint processing.

#[cfg(feature = "internal-api")]
pub mod parallel_phase;
#[cfg(not(feature = "internal-api"))]
pub(crate) mod parallel_phase;

#[cfg(feature = "internal-api")]
pub mod sequential_phase;
#[cfg(not(feature = "internal-api"))]
pub(crate) mod sequential_phase;

pub(crate) mod parallel_scan_metadata;