//! Shared SQL dialect compiler for Rusticx ORM.
//!
//! This crate translates database-agnostic [`QueryBuilder`] and [`TableSchema`]
//! values into parameterized SQL strings. It is used internally by
//! `rusticx-postgres` and `rusticx-mysql` and is not part of the public API.
//!
//! [`QueryBuilder`]: rusticx_core::query::QueryBuilder
//! [`TableSchema`]: rusticx_core::model::TableSchema
pub use SqlCompiler;
pub use ;