aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Dictionaries/RangeHashedDictionaryComplex.cpp
blob: 76b3920627e8b8440c871758311c61b8ae495d04 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <Dictionaries/RangeHashedDictionary.h>

/// RangeHashedDictionary is instantiated from two files
/// RangeHashedDictionarySimple.cpp and RangeHashedDictionaryComplex.cpp
/// to better parallelize the build procedure and avoid MSan build failure
/// due to excessive resource consumption.

namespace DB
{

template class RangeHashedDictionary<DictionaryKeyType::Complex>;

}