dm-database-sqllog2db 1.16.0

高性能 CLI 工具:流式解析达梦数据库 SQL 日志并导出到 CSV 或 SQLite
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Run 子命令:主编排在 orchestrator.rs,各阶段子模块独立成文件。

mod collector;
mod error_log;
mod filter_processor;
mod input;
mod orchestrator;
mod parallel;
mod prescan;
mod processor;
mod sequential;
mod sqlite_parallel;
mod summary;

#[cfg(test)]
mod tests;

pub use orchestrator::handle_run;