mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 01:22:04 +00:00
dbms: simplify return value of IDictionary::getTypeName [#METR-13298]
This commit is contained in:
parent
57e13e7d2a
commit
f38d552844
@ -43,7 +43,7 @@ public:
|
||||
|
||||
std::string getName() const override { return name; }
|
||||
|
||||
std::string getTypeName() const override { return "CacheDictionary"; }
|
||||
std::string getTypeName() const override { return "Cache"; }
|
||||
|
||||
std::size_t getBytesAllocated() const override { return bytes_allocated; }
|
||||
|
||||
|
@ -33,7 +33,7 @@ public:
|
||||
|
||||
std::string getName() const override { return name; }
|
||||
|
||||
std::string getTypeName() const override { return "FlatDictionary"; }
|
||||
std::string getTypeName() const override { return "Flat"; }
|
||||
|
||||
std::size_t getBytesAllocated() const override { return bytes_allocated; }
|
||||
|
||||
|
@ -31,7 +31,7 @@ public:
|
||||
|
||||
std::string getName() const override { return name; }
|
||||
|
||||
std::string getTypeName() const override { return "HashedDictionary"; }
|
||||
std::string getTypeName() const override { return "Hashed"; }
|
||||
|
||||
std::size_t getBytesAllocated() const override { return bytes_allocated; }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user