meshdb-executor 0.1.0-alpha.1

Physical operators and query execution for Mesh
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod error;
mod eval;
mod ops;
mod procedures;
mod reader;
mod value;
mod writer;

pub use error::{Error, Result};
pub use ops::{
    execute, execute_with_reader, execute_with_reader_and_procs, execute_with_writer, explain,
    profile,
};
pub use procedures::{ProcArgSpec, ProcOutSpec, ProcRow, ProcType, Procedure, ProcedureRegistry};
pub use reader::{GraphReader, StorageReaderAdapter};
pub use value::{ParamMap, Row, Value};
pub use writer::{GraphWriter, StorageWriterAdapter};