16 lines
410 B
Rust
16 lines
410 B
Rust
//! 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
|
|
|
|
mod row;
|
|
mod schema;
|
|
mod value;
|
|
|
|
pub use row::{ResultSet, Row};
|
|
pub use schema::{DataType, Field, Schema};
|
|
pub use value::Value;
|