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
1
2
3
4
5
6
7
//! AST nodes representing SQL expressions.
//!
//! Implements representations of literals, function calls, subqueries, unary/binary operations, and conditional constructs.

pub mod expr;

pub use expr::*;