2020-11-05 13:24:31 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <DataTypes/DataTypeWithSimpleSerialization.h>
|
|
|
|
#include <DataTypes/DataTypeCustom.h>
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
class DataTypeNestedCustomName final : public IDataTypeCustomName
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
DataTypes elems;
|
|
|
|
Strings names;
|
|
|
|
|
|
|
|
public:
|
|
|
|
DataTypeNestedCustomName(const DataTypes & elems_, const Strings & names_)
|
|
|
|
: elems(elems_), names(names_)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
String getName() const override;
|
|
|
|
};
|
|
|
|
|
2020-11-10 17:32:00 +00:00
|
|
|
DataTypePtr createNested(const DataTypes & types, const Names & names);
|
|
|
|
|
2020-11-05 13:24:31 +00:00
|
|
|
template <typename DataType>
|
|
|
|
inline bool isNested(const DataType & data_type)
|
|
|
|
{
|
2020-11-10 17:32:00 +00:00
|
|
|
return typeid_cast<const DataTypeNestedCustomName *>(data_type->getCustomName()) != nullptr;
|
2020-11-05 13:24:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|