v.1.1.54394New Feature
Added histogram aggregate function
Added the histogram aggregate function (Mikhail Surin).Why it matters
Thehistogram aggregate function allows users to compute histograms directly within ClickHouse queries. This enables efficient aggregation and analysis of data distributions without external processing, providing valuable insights into the frequency distribution of values.How to use it
Use thehistogram aggregate function in your queries by applying it to a column of numeric data. For example: SELECT histogram(column_name) FROM table_name; to compute the histogram of values in column_name.