Skip to main content

reifydb_engine/flow/
mod.rs

1// SPDX-License-Identifier: AGPL-3.0-or-later
2// Copyright (c) 2025 ReifyDB
3
4//! Flow compilation module - compiles RQL plans into Flows
5//!
6//! This module contains the flow compiler that was moved from reifydb-rql to avoid
7//! lifetime issues with async recursion and generic MultiVersionCommandTransaction types.
8
9pub mod compiler;