v.24.4Improvement
Reduce Verbosity of --help Output in ClickHouse Client and Local
Reduce the verbosity of command line argument--helpinclickhouse clientandclickhouse local. The previous output is now generated by--help --verbose. #62973 (Yarik Briukhovetskyi).
Why it matters
This feature improves user experience by simplifying the output of the--help command for clickhouse client and clickhouse local. It reduces noise for users who only need basic help information, while still allowing access to detailed help with the --verbose flag.How to use it
To see concise help information, run:clickhouse client --help
clickhouse local --helpTo access the full, detailed help output, run:
clickhouse client --help --verbose
clickhouse local --help --verbose