dbx-core 0.2.2

High-performance file-based database engine with 5-Tier Hybrid Storage
Documentation
//! Physical Operators Module
//! Physical Operators Module

mod exchange;
mod filter;
mod hash_aggregate;
mod join;
mod limit;
mod physical_operator;
mod projection;
pub mod shuffle;
mod sort;
mod table_scan;

pub use exchange::GridExchangeOperator;
pub use filter::FilterOperator;
pub use hash_aggregate::HashAggregateOperator;
pub use join::HashJoinOperator;
pub use limit::LimitOperator;
pub use physical_operator::PhysicalOperator;
pub use projection::ProjectionOperator;
pub use shuffle::GridShuffleWriterOperator;
pub use sort::SortOperator;
pub use table_scan::TableScanOperator;