ClickHouse/src/Functions/toFixedString.cpp

14 lines
216 B
C++
Raw Normal View History

2020-06-20 15:45:50 +00:00
#include <Functions/FunctionFactory.h>
#include <Functions/toFixedString.h>
namespace DB
{
void registerFunctionFixedString(FunctionFactory & factory)
{
factory.registerFunction<FunctionToFixedString>();
}
}