mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 07:31:57 +00:00
Fixed style [#METR-10931].
This commit is contained in:
parent
73590b8d34
commit
b821e1420d
@ -91,7 +91,8 @@ struct AssociativeOperationImpl
|
||||
/// Выбрасывает N последних столбцов из in (если их меньше, то все) и кладет в result их комбинацию.
|
||||
static void execute(UInt8ColumnPtrs & in, UInt8Container & result)
|
||||
{
|
||||
if (N > in.size()){
|
||||
if (N > in.size())
|
||||
{
|
||||
AssociativeOperationImpl<Op, N - 1>::execute(in, result);
|
||||
return;
|
||||
}
|
||||
|
@ -28,7 +28,8 @@ public:
|
||||
{
|
||||
std::reverse(remaining_mark_ranges.begin(), remaining_mark_ranges.end());
|
||||
|
||||
if (prewhere_actions){
|
||||
if (prewhere_actions)
|
||||
{
|
||||
pre_column_names = prewhere_actions->getRequiredColumns();
|
||||
if (pre_column_names.empty())
|
||||
pre_column_names.push_back(column_names[0]);
|
||||
@ -132,9 +133,9 @@ protected:
|
||||
return res;
|
||||
}
|
||||
|
||||
for (size_t i = 0; i < ranges_to_read.size(); ++i){
|
||||
for (size_t i = 0; i < ranges_to_read.size(); ++i)
|
||||
{
|
||||
const MarkRange & range = ranges_to_read[i];
|
||||
|
||||
reader->readRange(range.begin, range.end, res);
|
||||
}
|
||||
|
||||
@ -150,7 +151,8 @@ protected:
|
||||
/// Прочитаем в нужных отрезках остальные столбцы и составим для них свой фильтр.
|
||||
size_t pre_filter_pos = 0;
|
||||
size_t post_filter_pos = 0;
|
||||
for (size_t i = 0; i < ranges_to_read.size(); ++i){
|
||||
for (size_t i = 0; i < ranges_to_read.size(); ++i)
|
||||
{
|
||||
const MarkRange & range = ranges_to_read[i];
|
||||
|
||||
size_t begin = range.begin;
|
||||
|
@ -308,7 +308,7 @@ private:
|
||||
RPNElement(Function function_) : function(function_) {}
|
||||
RPNElement(Function function_, size_t key_column_) : function(function_), key_column(key_column_) {}
|
||||
RPNElement(Function function_, size_t key_column_, const Range & range_)
|
||||
: function(function_), range(range_), key_column(key_column_){}
|
||||
: function(function_), range(range_), key_column(key_column_) {}
|
||||
|
||||
String toString();
|
||||
|
||||
|
@ -44,7 +44,8 @@ struct AssociativeOperationImpl
|
||||
/// Выбрасывает N последних столбцов из in (если их меньше, то все) и кладет в result их комбинацию.
|
||||
static void execute(UInt8ColumnPtrs & in, UInt8Container & result)
|
||||
{
|
||||
if (N > in.size()){
|
||||
if (N > in.size())
|
||||
{
|
||||
AssociativeOperationImpl<Op, N - 1>::execute(in, result);
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user