v22.11.2.31-clib
Release v22.11.2.31-clib
Image is published at icr.io/clickhouse/clickhouse:22.11.2.31-1-stable-ibm
- This Release is of Latest 22.11 commit (v22.11.2.30-stable) + KQL
- From branch Kusto-phase3-ibm
December 09, 2022
KQL implemented features
Functions
- count_distinct
Customers | summarize count_distinct(Education);
- count_distinctif
Customers | summarize count_distinctif(Education, Age > 30);
- iff
Customers | extend t = iff(Age <= 10, "smaller", "bigger");
- iif
Customers | extend t = iif(Age <= 10, "smaller", "bigger");