v.1.1.54337New Feature
Added --silent Option to clickhouse-local Tool
Added the--silentoption for theclickhouse-localtool. It suppresses printing query execution info 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>"