mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-12 01:12:12 +00:00
cf3cd099a5
Before HashedDictionary.cpp exceeds 50MiB, now: -rw-r--r-- 1 azat azat 37M Nov 22 17:56 SparseHashedDictionary.cpp.o -rw-r--r-- 1 azat azat 34M Nov 22 17:56 HashedDictionary.cpp.o -rw-r--r-- 1 azat azat 716K Nov 22 17:56 registerHashedDictionary.cpp.o Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
13 lines
478 B
C++
13 lines
478 B
C++
#include <Dictionaries/HashedDictionary.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
template class HashedDictionary<DictionaryKeyType::Simple, /* sparse= */ true, /* sharded= */ false >;
|
|
template class HashedDictionary<DictionaryKeyType::Simple, /* sparse= */ true, /* sharded= */ true >;
|
|
|
|
template class HashedDictionary<DictionaryKeyType::Complex, /* sparse= */ true, /* sharded= */ false >;
|
|
template class HashedDictionary<DictionaryKeyType::Complex, /* sparse= */ true, /* sharded= */ true >;
|
|
|
|
}
|