mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-03 04:52:10 +00:00
58 lines
1.4 KiB
C++
58 lines
1.4 KiB
C++
#include <Functions/IFunctionImpl.h>
|
|
#include <Functions/FunctionFactory.h>
|
|
#include <DataTypes/DataTypeString.h>
|
|
#include <Core/Field.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
namespace
|
|
{
|
|
|
|
/// Dump the structure of type and column.
|
|
class FunctionDumpColumnStructure : public IFunction
|
|
{
|
|
public:
|
|
static constexpr auto name = "dumpColumnStructure";
|
|
static FunctionPtr create(const Context &)
|
|
{
|
|
return std::make_shared<FunctionDumpColumnStructure>();
|
|
}
|
|
|
|
String getName() const override
|
|
{
|
|
return name;
|
|
}
|
|
|
|
bool useDefaultImplementationForNulls() 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
|
|
{
|
|
const auto & elem = arguments[0];
|
|
|
|
/// Note that the result is not a constant, because it contains columns size.
|
|
|
|
return DataTypeString().createColumnConst(input_rows_count,
|
|
elem.type->getName() + ", " + elem.column->dumpStructure())->convertToFullColumnIfConst();
|
|
}
|
|
};
|
|
|
|
}
|
|
|
|
void registerFunctionDumpColumnStructure(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionDumpColumnStructure>();
|
|
}
|
|
|
|
}
|