alopex_dataframe/physical/
mod.rs1pub mod budget;
3mod executor;
4mod expr_eval;
5mod operators;
6mod plan;
7mod streaming;
8
9pub use executor::{record_batch_memory_size, BudgetedMaterializedExecutor, Executor};
11pub use plan::{
13 analyze_streaming, compile, compile_streaming, PhysicalPlan, PlanSubject, ScanSource,
14 SourceLimit, StreamingEligibility, StreamingOperator, StreamingPhysicalPlan, StreamingReason,
15 StreamingSource,
16};
17pub(crate) use streaming::open_streaming_plan;
18pub use streaming::{
20 BatchOpenContext, BatchSource, BatchSourceFactory, ColumnarSegmentBatchPlan,
21 ColumnarSegmentCursor, ColumnarSegmentProvider, DataFrameStream, StreamBatch,
22};