reinhardt-query 0.1.0

SQL query builder for Reinhardt framework
Documentation
//! Database maintenance statement builders
//!
//! This module provides builders for database maintenance statements:
//!
//! - VACUUM: [`VacuumStatement`]
//! - ANALYZE: [`AnalyzeStatement`]
//! - OPTIMIZE TABLE: [`OptimizeTableStatement`] (MySQL-only)
//! - REPAIR TABLE: [`RepairTableStatement`] (MySQL-only)
//! - CHECK TABLE: [`CheckTableStatement`] (MySQL-only)

mod analyze;
mod check_table;
mod optimize_table;
mod repair_table;
mod vacuum;

pub use analyze::*;
pub use check_table::*;
pub use optimize_table::*;
pub use repair_table::*;
pub use vacuum::*;