aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Functions/array/arrayMap.cpp
blob: 10a7ca45cfab9a09ecf274febaed58210d95df2f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include <Functions/array/arrayMap.h>
#include <Functions/FunctionFactory.h>

namespace DB
{

REGISTER_FUNCTION(ArrayMap)
{
    factory.registerFunction<FunctionArrayMap>();
}

}