dbms: simplify return value of IDictionary::getTypeName [#METR-13298]

This commit is contained in:
Andrey Mironov 2015-03-24 15:26:19 +03:00
parent 57e13e7d2a
commit f38d552844
3 changed files with 3 additions and 3 deletions

View File

@ -43,7 +43,7 @@ public:
std::string getName() const override { return name; } 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; } std::size_t getBytesAllocated() const override { return bytes_allocated; }

View File

@ -33,7 +33,7 @@ public:
std::string getName() const override { return name; } 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; } std::size_t getBytesAllocated() const override { return bytes_allocated; }

View File

@ -31,7 +31,7 @@ public:
std::string getName() const override { return name; } 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; } std::size_t getBytesAllocated() const override { return bytes_allocated; }