Skip to main content

reifydb_evaluate/
lib.rs

1// SPDX-License-Identifier: Apache-2.0
2// Copyright (c) 2026 ReifyDB
3
4//! Runtime counterpart to RQL's `expression/` planner module: that crate produces the representation, this one
5//! runs it. Evaluation works on column buffers wherever possible, so the per-row interpreter cost is paid only
6//! when an expression cannot be vectorised.
7
8#![cfg_attr(not(debug_assertions), deny(clippy::disallowed_methods))]
9#![cfg_attr(debug_assertions, warn(clippy::disallowed_methods))]
10#![cfg_attr(not(debug_assertions), deny(warnings))]
11#![allow(clippy::tabs_in_doc_comments)]
12
13use reifydb_value::Result;
14
15pub mod error;
16pub mod expression;
17pub mod stack;