blob: 6f0369607d8995feb42e85058f26497863abe25a (
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::Simple>;
}
|