clickcheck 0.3.0

Tool to analyze ClickHouse system tables, to detect potential issues for DBAs.
Documentation
1
2
3
4
5
6
7
8
9
// Copyright (c) 2025 Telman Rzaev
// Licensed under the MIT License (see LICENSE file for details)
#[tokio::main]
async fn main() {
    if let Err(err) = clickcheck::run().await {
        eprintln!("Error: {err}");
        std::process::exit(1);
    }
}