Skip to main content

uni_query_functions/
lib.rs

1// SPDX-License-Identifier: Apache-2.0
2// Copyright 2024-2026 Dragonscale Team
3
4//! Leaf modules extracted from `uni-query` to isolate them from the
5//! planner/executor strongly-connected component.
6//!
7//! Editing any module here recompiles only this crate, not the 79k-LOC
8//! `uni-query` SCC downstream. `uni-query` re-exports everything here so
9//! downstream callers keep using `uni_query::query::<name>::*`.
10
11pub mod custom_functions;
12pub mod cypher_type_coerce;
13pub mod datetime;
14pub mod df_expr;
15pub mod df_udfs;
16pub mod expr_eval;
17pub mod function_props;
18pub mod fusion;
19pub mod pushdown;
20pub mod rewrite;
21pub mod similar_to;
22pub mod spatial;