fosk 0.1.13

In-memory SQL-like query engine and lightweight data store for testing and prototyping.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod database;
pub use database::{
    Db,
    DbConfig,
    DbCollection,
    SchemaDict,
    SchemaWithRefs,
    ReferenceColumn,
    FieldInfo,
    JsonPrimitive,
    IdType,
};

pub mod parser;
pub mod planner;
pub mod executor;