uni-query 2.1.0

OpenCypher query parser, planner, and vectorized executor for Uni
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![allow(clippy::cloned_ref_to_slice_refs)]

// Consolidated integration-test binary: every test group links into one binary
// to minimize compile/link time. Each group's sources live under tests/common/<group>/.
#[path = "common/executor/mod.rs"]
mod executor;
#[path = "common/functions/mod.rs"]
mod functions;
#[path = "common/integration/mod.rs"]
mod integration;
#[path = "common/parser/mod.rs"]
mod parser;
#[path = "common/planner/mod.rs"]
mod planner;