mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 07:31:57 +00:00
14 lines
216 B
C++
14 lines
216 B
C++
#include <Functions/FunctionFactory.h>
|
|
#include <Functions/toFixedString.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
void registerFunctionFixedString(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionToFixedString>();
|
|
}
|
|
|
|
}
|