2017-04-01 09:19:00 +00:00
|
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
#include <Functions/FunctionsReinterpret.h>
|
2014-08-22 00:57:20 +00:00
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
void registerFunctionsReinterpret(FunctionFactory & factory)
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
factory.registerFunction<FunctionReinterpretAsUInt8>();
|
|
|
|
factory.registerFunction<FunctionReinterpretAsUInt16>();
|
|
|
|
factory.registerFunction<FunctionReinterpretAsUInt32>();
|
|
|
|
factory.registerFunction<FunctionReinterpretAsUInt64>();
|
|
|
|
factory.registerFunction<FunctionReinterpretAsInt8>();
|
|
|
|
factory.registerFunction<FunctionReinterpretAsInt16>();
|
|
|
|
factory.registerFunction<FunctionReinterpretAsInt32>();
|
|
|
|
factory.registerFunction<FunctionReinterpretAsInt64>();
|
|
|
|
factory.registerFunction<FunctionReinterpretAsFloat32>();
|
|
|
|
factory.registerFunction<FunctionReinterpretAsFloat64>();
|
|
|
|
factory.registerFunction<FunctionReinterpretAsDate>();
|
|
|
|
factory.registerFunction<FunctionReinterpretAsDateTime>();
|
|
|
|
factory.registerFunction<FunctionReinterpretAsString>();
|
2018-01-14 00:12:23 +00:00
|
|
|
factory.registerFunction<FunctionReinterpretAsFixedString>();
|
2014-08-22 00:57:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|