Merge pull request #7242 from azat/sparse_hashed-name

Return SparseHashed name (system.dictionaries:type) for the sparse_hashed layout
This commit is contained in:
alexey-milovidov 2019-10-09 20:12:24 +03:00 committed by GitHub
commit e3861e0e88
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -36,7 +36,7 @@ public:
std::string getName() const override { return name; }
std::string getTypeName() const override { return "Hashed"; }
std::string getTypeName() const override { return sparse ? "SparseHashed" : "Hashed"; }
size_t getBytesAllocated() const override { return bytes_allocated; }