osirisdb 0.7.0

A SQL database engine built from scratch in Rust featuring a custom parser, binder, query planner, optimizer, catalog, and storage engine.
Documentation
//! Strongly typed Abstract Syntax Tree (AST) representations of SQL statement and expression structures.
//!
//! This module forms the backbone of the parser's output, defining the representations of DDL, DML,
//! expressions, and query clauses. All AST nodes derive `Debug`, `Clone`, and `PartialEq`.

pub mod common;
pub mod ddl;
pub mod dml;
pub mod expression;
pub mod query;
pub mod session;
pub mod statement;
pub mod transaction;

pub use common::*;
pub use ddl::*;
pub use dml::*;
pub use expression::*;
pub use query::*;
pub use session::*;
pub use statement::*;
pub use transaction::*;