fosk 0.1.1

In-memory SQL-like query engine and lightweight data store for testing and prototyping.
Documentation
pub mod column;
pub use column::*;

pub mod function;
pub use function::*;

pub mod literals;
pub use literals::*;

pub mod args_parser;
pub use args_parser::*;

pub mod projection_parser;
pub use projection_parser::*;

pub mod scalar_expr;
pub use scalar_expr::*;

pub mod text_collector;
pub use text_collector::*;

pub mod identifier;
pub use identifier::*;

pub mod collection;
pub use collection::*;

pub mod collections_parser;
pub use collections_parser::*;

pub mod operators;
pub use operators::*;

pub mod predicate;
pub use predicate::*;

pub mod join;
pub use join::*;

pub mod where_parser;
pub use where_parser::*;

pub mod order_by;
pub use order_by::*;

pub mod group_by;
pub use group_by::*;

pub mod having_parser;
pub use having_parser::*;

pub mod limit_offset_parser;
pub use limit_offset_parser::*;

pub mod query;
pub use query::*;