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

namespace DB
{

REGISTER_FUNCTION(Tuple)
{
    factory.registerFunction<FunctionTuple>();
}

}