reifydb_core/value/mod.rs
1// SPDX-License-Identifier: Apache-2.0
2// Copyright (c) 2026 ReifyDB
3
4//! In-memory representation of query results and the structures that carry rows from the engine to the consumer.
5//!
6//! Holds the columnar data model and the in-memory index types used by the engine. Together these form the runtime
7//! representation that everything above the storage tier (engine, subscriptions, the wire layer, the SDK) operates on.
8
9pub mod column;
10pub mod index;