Comments are the must.

This commit is contained in:
alexey-milovidov 2019-09-22 05:09:40 +03:00 committed by GitHub
parent 9afea6f0b3
commit ab9a7be45a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,6 +13,10 @@
#include "IDictionary.h"
#include "IDictionarySource.h"
/** This dictionary stores all content in a hash table in memory
* (a separate Key -> Value map for each attribute)
* Two variants of hash table is supported: a fast HashMap and memory efficient sparse_hash_map.
*/
namespace DB
{