Skip to main content

arrow_sql_server/
mssql.rs

1//! MSSQL-side schema metadata, identifiers, profile, and DDL helpers.
2
3/// MSSQL runtime cell value model.
4pub(crate) mod cell;
5/// MSSQL column metadata model.
6pub mod column;
7/// Deterministic MSSQL DDL rendering helpers.
8pub mod ddl;
9/// MSSQL identifier types.
10pub mod identifier;
11/// MSSQL profile types.
12pub mod profile;
13/// MSSQL type model.
14pub mod ty;
15
16pub use column::MssqlColumn;
17pub use ddl::{CreateTableOptions, create_table_sql};
18pub use identifier::{Identifier, IdentifierPolicy, TableName};
19pub use profile::{CompatibilityLevel, MssqlProfile, MssqlVersion};
20pub use ty::{MssqlTimePrecision, MssqlType, MssqlTypeLength};