Review suggestions

This commit is contained in:
Nikolay Degterinsky 2023-01-24 22:52:55 +00:00
parent f9960361db
commit fb6838b043
6 changed files with 14 additions and 11 deletions

View File

@ -1,7 +1,7 @@
#include <Dictionaries/RangeHashedDictionary.h>
/// RangeHashedDictionary is separated into two files
/// RangeHashedDictionary_simple.cpp and RangeHashedDictionary_complex.cpp
/// RangeHashedDictionary is instantiated from two files
/// RangeHashedDictionaryCimple.cpp and RangeHashedDictionaryComplex.cpp
/// to better parallelize the build procedure and avoid MSan build failure
/// due to excessive resource consumption.

View File

@ -1,7 +1,7 @@
#include <Dictionaries/RangeHashedDictionary.h>
/// RangeHashedDictionary is separated into two files
/// RangeHashedDictionary_simple.cpp and RangeHashedDictionary_complex.cpp
/// 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.

View File

@ -2,6 +2,9 @@
#include <Functions/FunctionFactory.h>
/// FunctionsHashing instantiations are separated into files FunctionsHashing*.cpp
/// to better parallelize the build procedure and avoid MSan build failure
/// due to excessive resource consumption.
namespace DB
{

View File

@ -2,11 +2,7 @@
#include <Functions/FunctionFactory.h>
/// FunctionsHashing are separated into files:
/// - FunctionsHashing.cpp,
/// - FunctionsHashingInt.cpp,
/// - FunctionsHashingMurmur.cpp
/// - FunctionsHashingSSL.cpp
/// FunctionsHashing instantiations are separated into files FunctionsHashing*.cpp
/// to better parallelize the build procedure and avoid MSan build failure
/// due to excessive resource consumption.

View File

@ -2,6 +2,9 @@
#include <Functions/FunctionFactory.h>
/// FunctionsHashing instantiations are separated into files FunctionsHashing*.cpp
/// to better parallelize the build procedure and avoid MSan build failure
/// due to excessive resource consumption.
namespace DB
{

View File

@ -5,8 +5,9 @@
#include "FunctionsHashing.h"
#include <Functions/FunctionFactory.h>
/// SSL functions are located in the separate FunctionsHashingSSL.cpp file
/// to lower the compilation time of FunctionsHashing.cpp
/// FunctionsHashing instantiations are separated into files FunctionsHashing*.cpp
/// to better parallelize the build procedure and avoid MSan build failure
/// due to excessive resource consumption.
namespace DB
{