queryscript 0.1.4

Queryscript is a SQL-based language that allows you to use higher order abstractions like variables, functions, and modules alongside SQL queries.
1
2
3
4
5
6
7
8
9
pub mod ast;
pub mod compile;
pub mod error;
pub mod materialize;
pub mod parser;
pub mod runtime;
pub mod types;

pub use error::QSError;