ClickHouse/src/Functions/toTypeName.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

78 lines
2.2 KiB
C++
Raw Normal View History

2021-06-22 16:21:23 +00:00
#include <Functions/FunctionFactory.h>
#include <Functions/IFunction.h>
2021-08-13 08:18:34 +00:00
#include <Core/Field.h>
#include <DataTypes/DataTypeString.h>
#include <Interpreters/Context.h>
namespace DB
{
2020-09-07 18:00:37 +00:00
namespace
{
/** toTypeName(x) - get the type name
* Returns name of IDataType instance (name of data type).
*/
class FunctionToTypeName : public IFunction
{
public:
2023-09-29 03:35:24 +00:00
explicit FunctionToTypeName(bool print_pretty_type_names_) : print_pretty_type_names(print_pretty_type_names_)
{
}
static constexpr auto name = "toTypeName";
static FunctionPtr create(ContextPtr context)
{
return std::make_shared<FunctionToTypeName>(context->getSettingsRef().print_pretty_type_names);
}
String getName() const override
{
return name;
}
bool useDefaultImplementationForNulls() const override { return false; }
bool useDefaultImplementationForNothing() const override { return false; }
2021-06-22 16:21:23 +00:00
bool isSuitableForShortCircuitArgumentsExecution(const DataTypesWithConstInfo & /*arguments*/) const override { return false; }
bool useDefaultImplementationForLowCardinalityColumns() const override { return false; }
size_t getNumberOfArguments() const override
{
return 1;
}
DataTypePtr getReturnTypeImpl(const DataTypes & /*arguments*/) const override
{
return std::make_shared<DataTypeString>();
}
ColumnPtr executeImpl(const ColumnsWithTypeAndName & arguments, const DataTypePtr &, size_t input_rows_count) const override
{
return DataTypeString().createColumnConst(input_rows_count, print_pretty_type_names ? arguments[0].type->getPrettyName() : arguments[0].type->getName());
}
2019-08-19 18:34:12 +00:00
2021-05-24 11:25:02 +00:00
ColumnPtr getConstantResultForNonConstArguments(const ColumnsWithTypeAndName & arguments, const DataTypePtr &) const override
{
return DataTypeString().createColumnConst(1, print_pretty_type_names ? arguments[0].type->getPrettyName() : arguments[0].type->getName());
}
2019-08-20 08:36:10 +00:00
2019-10-02 17:51:00 +00:00
ColumnNumbers getArgumentsThatDontImplyNullableReturnType(size_t /*number_of_arguments*/) const override { return {0}; }
private:
bool print_pretty_type_names;
};
2020-09-07 18:00:37 +00:00
}
REGISTER_FUNCTION(ToTypeName)
{
factory.registerFunction<FunctionToTypeName>();
}
}