marsdb-query 0.3.0

openCypher query subset parser, planner, and executor used internally by MarsDB.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod aggregate;
mod ast;
mod error;
mod executor;
mod ir;
mod params;
mod parser;
mod planner;
mod result;
mod value;

pub use ast::{Literal, Statement};
pub use error::QueryError;
pub use executor::Executor;
pub use params::substitute_params;
pub use parser::{parse, parse_many};
pub use result::QueryResult;
pub use value::Value;