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


namespace DB
{

REGISTER_FUNCTION(FixedString)
{
    factory.registerFunction<FunctionToFixedString>();
}

}