blob: 5df3bbc188d42900055872734fd07360017b8bfd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include "clickhouse_config.h"
#include <Functions/FunctionFactory.h>
namespace DB
{
void registerFunctions()
{
auto & factory = FunctionFactory::instance();
for (const auto & [_, reg] : FunctionRegisterMap::instance())
reg(factory);
}
}
|