2026-04-09 12:50:06 +02:00
|
|
|
//! 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;
|