mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 05:22:17 +00:00
54 lines
1.3 KiB
C++
54 lines
1.3 KiB
C++
#include <Functions/IFunction.h>
|
|
#include <Functions/FunctionFactory.h>
|
|
#include <DataTypes/DataTypeString.h>
|
|
#include <base/getFQDNOrHostName.h>
|
|
#include <Core/Field.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class FunctionFQDN : public IFunction
|
|
{
|
|
public:
|
|
static constexpr auto name = "FQDN";
|
|
static FunctionPtr create(ContextPtr)
|
|
{
|
|
return std::make_shared<FunctionFQDN>();
|
|
}
|
|
|
|
String getName() const override
|
|
{
|
|
return name;
|
|
}
|
|
|
|
bool isDeterministic() const override { return false; }
|
|
|
|
bool isSuitableForShortCircuitArgumentsExecution(const DataTypesWithConstInfo & /*arguments*/) const override { return false; }
|
|
|
|
size_t getNumberOfArguments() const override
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
DataTypePtr getReturnTypeImpl(const DataTypes & /*arguments*/) const override
|
|
{
|
|
return std::make_shared<DataTypeString>();
|
|
}
|
|
|
|
ColumnPtr executeImpl(const ColumnsWithTypeAndName &, const DataTypePtr & result_type, size_t input_rows_count) const override
|
|
{
|
|
return result_type->createColumnConst(
|
|
input_rows_count, getFQDNOrHostName())->convertToFullColumnIfConst();
|
|
}
|
|
};
|
|
|
|
|
|
void registerFunctionFQDN(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionFQDN>(FunctionFactory::CaseInsensitive);
|
|
factory.registerFunction<FunctionFQDN>("fullHostName");
|
|
}
|
|
|
|
}
|