quill-sql 0.2.0

A tiny yet serious SQL database in Rust with ARIES-style WAL, 2PL, and B+Tree indexes.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod catalog;
mod column;
mod data_type;
mod information;
pub mod registry;
mod schema;

pub use catalog::*;
pub use column::{Column, ColumnRef};
pub use data_type::DataType;
pub use information::*;
pub use registry::*;
pub use schema::*;