reifydb-rql 0.4.12

ReifyDB Query Language (RQL) parser and AST
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2025 ReifyDB

//! Flow module for ReifyDB RQL
//!
//! This module provides the flow graph types and utilities for representing
//! streaming dataflow computations. The actual compilation from physical plans
//! to flows has been moved to reifydb-engine to avoid lifetime issues with
//! async recursion and generic MultiVersionCommandTransaction types.

pub mod analyzer;
#[allow(clippy::module_inception)]
pub mod flow;
pub mod graph;
pub mod loader;
pub mod node;
pub mod persist;
pub mod plan;