mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 23:21:59 +00:00
Review suggestions
This commit is contained in:
parent
f9960361db
commit
fb6838b043
@ -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.
|
||||
|
||||
|
@ -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.
|
||||
|
||||
|
@ -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
|
||||
{
|
||||
|
@ -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.
|
||||
|
@ -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
|
||||
{
|
||||
|
@ -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
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user