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
//! AST structures representing SQL query components.
//!
//! Defines the representation of SELECT statements, CTEs, Joins, Window functions, sorting orders, and set operations.

pub mod cte;
pub mod join;
pub mod null_ordering;
pub mod operators;
pub mod order;
pub mod select;
pub mod table_ref;

pub use cte::*;
pub use join::*;
pub use null_ordering::*;
pub use operators::*;
pub use order::*;
pub use select::*;
pub use table_ref::*;