iridium_core 0.1.12

SQL Server-compatible Rust engine core for Iridium SQL
Documentation
use crate::ast::{
    ApplyClause, Expr, FromNode, ObjectName, OrderByExpr, SelectItem, SelectStmt, SetOpClause,
    TopSpec,
};

#[derive(Debug, Clone)]
pub(crate) struct ProjectionPlan {
    pub(crate) items: Vec<SelectItem>,
    pub(crate) distinct: bool,
}

#[derive(Debug, Clone)]
pub(crate) struct FilterPlan {
    pub(crate) selection: Option<Expr>,
    pub(crate) group_by: Vec<Expr>,
    pub(crate) having: Option<Expr>,
}

#[derive(Debug, Clone)]
pub(crate) struct SortPlan {
    pub(crate) order_by: Vec<OrderByExpr>,
}

#[derive(Debug, Clone)]
pub(crate) struct PaginationPlan {
    pub(crate) top: Option<TopSpec>,
    pub(crate) offset: Option<Expr>,
    pub(crate) fetch: Option<Expr>,
}

#[derive(Debug, Clone)]
pub(crate) struct RelationalQuery {
    pub(crate) from_clause: Option<FromNode>,
    pub(crate) applies: Vec<ApplyClause>,
    pub(crate) projection: ProjectionPlan,
    pub(crate) filter: FilterPlan,
    pub(crate) sort: SortPlan,
    pub(crate) pagination: PaginationPlan,
    pub(crate) into_table: Option<ObjectName>,
    pub(crate) set_op: Option<Box<SetOpClause>>,
}

impl From<SelectStmt> for RelationalQuery {
    fn from(stmt: SelectStmt) -> Self {
        Self {
            from_clause: stmt.from_clause,
            applies: stmt.applies,
            projection: ProjectionPlan {
                items: stmt.projection,
                distinct: stmt.distinct,
            },
            filter: FilterPlan {
                selection: stmt.selection,
                group_by: stmt.group_by,
                having: stmt.having,
            },
            sort: SortPlan {
                order_by: stmt.order_by,
            },
            pagination: PaginationPlan {
                top: stmt.top,
                offset: stmt.offset,
                fetch: stmt.fetch,
            },
            into_table: stmt.into_table,
            set_op: stmt.set_op,
        }
    }
}