v.1.1.54337New Feature

Added --silent Option to clickhouse-local Tool

Added the --silent option for the clickhouse-local tool. It suppresses printing query execution info in stderr.
Added the --silent option to the clickhouse-local tool to suppress printing query execution information in stderr.

Why it matters

The --silent option was introduced to allow users to run queries using clickhouse-local without cluttering stderr with execution details. This helps when users want cleaner output, especially when the stderr output is being redirected or processed, improving automation and scripting use cases.

How to use it

Invoke clickhouse-local with the --silent option to suppress query execution info in stderr. For example:

clickhouse-local --silent --query "<your query>"