Is there any way to create UDF for clickhouse?

Viewed 3054

In answer to a github ticket regarding UDF of clickhouse, they answered in 2017 that UDF can't be created in clickhouse. I want to know Is there any way to do it now in 2020?

1 Answers

UDFs for ClickHouse came in September, 2021. There are two PRs introducing UDFs:

As a presentation from 2021 says, ClickHouse team considers five ways to define a UDF. One of alternative ways mentioned in an older presentation is a cache dictionary with an executable source.

Related