Skip to main content

alopex_dataframe/physical/
mod.rs

1mod executor;
2mod expr_eval;
3mod operators;
4mod plan;
5
6/// Physical plan executor.
7pub use executor::Executor;
8/// Physical plan compiler and plan node types.
9pub use plan::{compile, PhysicalPlan, ScanSource};