16 lines
410 B
Rust
Raw Normal View History

//! Relational data model scaffolding for SQL and planner work.
//!
//! This module provides the current relational execution vocabulary:
//!
//! - [`Schema`] and [`Field`] for column metadata
//! - [`Value`] for scalar values
//! - [`Row`] and [`ResultSet`] for execution output
2026-04-09 12:38:43 +02:00
mod row;
mod schema;
mod value;
pub use row::{ResultSet, Row};
pub use schema::{DataType, Field, Schema};
pub use value::Value;