dbx-core 0.1.0-beta

High-performance file-based database engine with 5-Tier Hybrid Storage
Documentation
// SQL 모듈 진입점
pub mod builder;
pub mod executor;
pub mod interface;
pub mod optimizer;
pub mod parallel_parser;
pub mod parser;
pub mod planner;

pub use builder::{Execute, Query, QueryOne, QueryOptional, QueryScalar, ScalarValue};
pub use executor::{
    FilterOperator, HashAggregateOperator, HashJoinOperator, LimitOperator, PhysicalOperator,
    ProjectionOperator, SortOperator, TableScanOperator, evaluate_expr,
};
pub use optimizer::{OptimizationRule, QueryOptimizer};
pub use parallel_parser::ParallelSqlParser;
pub use parser::SqlParser;
pub use planner::{
    AggregateExpr, AggregateFunction, BinaryOperator, Expr, JoinType, LogicalPlan, LogicalPlanner,
    PhysicalAggExpr, PhysicalExpr, PhysicalPlan, PhysicalPlanner, SortExpr,
};