mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 17:41:59 +00:00
Fixed style check
This commit is contained in:
parent
eb803e3fa4
commit
bf6d0150d4
@ -83,7 +83,7 @@ Block RangeDictionarySourceData<range_dictionary_type, RangeType>::getBlock(size
|
|||||||
block_start_dates.reserve(length);
|
block_start_dates.reserve(length);
|
||||||
block_end_dates.reserve(length);
|
block_end_dates.reserve(length);
|
||||||
|
|
||||||
for (size_t index = start; index < start + length; ++index )
|
for (size_t index = start; index < start + length; ++index)
|
||||||
{
|
{
|
||||||
block_keys.push_back(keys[index]);
|
block_keys.push_back(keys[index]);
|
||||||
block_start_dates.push_back(start_dates[index]);
|
block_start_dates.push_back(start_dates[index]);
|
||||||
|
@ -51,7 +51,6 @@ namespace ErrorCodes
|
|||||||
extern const int LOGICAL_ERROR;
|
extern const int LOGICAL_ERROR;
|
||||||
extern const int BAD_ARGUMENTS;
|
extern const int BAD_ARGUMENTS;
|
||||||
extern const int DICTIONARY_IS_EMPTY;
|
extern const int DICTIONARY_IS_EMPTY;
|
||||||
extern const int TYPE_MISMATCH;
|
|
||||||
extern const int UNSUPPORTED_METHOD;
|
extern const int UNSUPPORTED_METHOD;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -39,6 +39,8 @@ PEERDIR(
|
|||||||
|
|
||||||
SRCS(
|
SRCS(
|
||||||
CRC.cpp
|
CRC.cpp
|
||||||
|
CastOverloadResolver.cpp
|
||||||
|
DateOrDateTimeFunctionsConvertion.cpp
|
||||||
FunctionChar.cpp
|
FunctionChar.cpp
|
||||||
FunctionFQDN.cpp
|
FunctionFQDN.cpp
|
||||||
FunctionFactory.cpp
|
FunctionFactory.cpp
|
||||||
|
Loading…
Reference in New Issue
Block a user