dm_database_sqllog2db/stats/mod.rs
1//! SQL 统计分析模块(v1.13):提供 SQL 标准化、聚合与输出。
2
3pub mod aggregate;
4pub mod config;
5pub mod normalize;
6pub mod output;
7
8mod runner;
9
10#[cfg(test)]
11mod tests;
12
13pub use runner::run_stats;
14
15// Public re-exports for lib API consumers; may be unused in the bin target.
16#[allow(unused_imports)]
17pub use config::StatsConfig;