mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 07:01:59 +00:00
Apply suggestions from code review
Co-authored-by: János Benjamin Antal <antaljanosbenjamin@users.noreply.github.com>
This commit is contained in:
parent
bc7bd12a9c
commit
a82b9fda88
@ -215,9 +215,9 @@ public:
|
||||
using Data = State::Data;
|
||||
|
||||
|
||||
Port(ConstBlockPtr header_) : header(header_) { } /// NOLINT
|
||||
Port(Block && header_) : header(std::make_shared<const Block>(std::move(header_))) { } /// NOLINT
|
||||
Port(const Block & header_) : header(std::make_shared<const Block>(std::move(header_))) { } /// NOLINT
|
||||
Port(ConstBlockPtr header_) : header(std::move(header_)) { } // NOLINT(google-explicit-constructor)
|
||||
Port(Block && header_) : header(std::make_shared<const Block>(std::move(header_))) { } // NOLINT(google-explicit-constructor)
|
||||
Port(const Block & header_) : header(std::make_shared<const Block>(header_)) { } // NOLINT(google-explicit-constructor)
|
||||
Port(Block header_, IProcessor * processor_) : header(std::make_shared<const Block>(std::move(header_))), processor(processor_) { }
|
||||
|
||||
void setUpdateInfo(UpdateInfo * info) { update_info = info; }
|
||||
|
@ -1,7 +1,7 @@
|
||||
#include <memory>
|
||||
#include <Processors/Transforms/ExpressionTransform.h>
|
||||
#include <Interpreters/ExpressionActions.h>
|
||||
#include <Core/Block.h>
|
||||
#include <memory>
|
||||
|
||||
|
||||
namespace DB
|
||||
|
@ -1,7 +1,7 @@
|
||||
#pragma once
|
||||
#include <Processors/ISimpleTransform.h>
|
||||
#include <Processors/Transforms/ExceptionKeepingTransform.h>
|
||||
#include "Core/Block.h"
|
||||
#include <Core/Block.h>
|
||||
|
||||
namespace DB
|
||||
{
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include <QueryPipeline/Chain.h>
|
||||
#include <QueryPipeline/QueryPlanResourceHolder.h>
|
||||
#include <QueryPipeline/SizeLimits.h>
|
||||
#include "Core/Block.h"
|
||||
#include <Core/Block.h>
|
||||
|
||||
|
||||
namespace DB
|
||||
|
Loading…
Reference in New Issue
Block a user