mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-20 05:05:38 +00:00
keep ColumnLowCardinality::getName() the same style with other columns
This commit is contained in:
parent
c629e2af50
commit
94611dbddc
@ -46,8 +46,8 @@ public:
|
||||
return Base::create(std::move(column_unique), std::move(indexes), is_shared);
|
||||
}
|
||||
|
||||
std::string getName() const override { return "ColumnLowCardinality"; }
|
||||
const char * getFamilyName() const override { return "ColumnLowCardinality"; }
|
||||
std::string getName() const override { return "LowCardinality(" + getDictionaryPtr()->getName() + ")"; }
|
||||
const char * getFamilyName() const override { return "LowCardinality"; }
|
||||
TypeIndex getDataType() const override { return TypeIndex::LowCardinality; }
|
||||
|
||||
ColumnPtr convertToFullColumn() const { return getDictionary().getNestedColumn()->index(getIndexes(), 0); }
|
||||
|
Loading…
Reference in New Issue
Block a user