10 lines
201 B
Rust
10 lines
201 B
Rust
|
|
//! Relational data model scaffolding for future SQL and planner work.
|
||
|
|
|
||
|
|
mod row;
|
||
|
|
mod schema;
|
||
|
|
mod value;
|
||
|
|
|
||
|
|
pub use row::{ResultSet, Row};
|
||
|
|
pub use schema::{DataType, Field, Schema};
|
||
|
|
pub use value::Value;
|