small-db 0.4.0

A small database writing in rust, inspired from mit 6.830
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod btree;
pub mod concurrent_status;
pub mod field;
pub mod transaction;
pub mod types;
pub mod utils;

mod error;
mod io;
mod operator;
mod tx_log;

pub use btree::{catalog::Catalog, table::BTreeTable, tuple::Tuple};
pub use operator::{Op, Predicate};
pub use utils::Unique;