mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 13:32:13 +00:00
Processors: development [#CLICKHOUSE-2948]
This commit is contained in:
parent
62296fc763
commit
1ff8be156c
@ -13,7 +13,7 @@ class ReadBuffer;
|
||||
class IInputFormat : public ISource
|
||||
{
|
||||
private:
|
||||
ReadBuffer & in;
|
||||
ReadBuffer & in [[maybe_unused]];
|
||||
|
||||
public:
|
||||
IInputFormat(Block header, ReadBuffer & in)
|
||||
|
@ -16,9 +16,10 @@ class IProcessor;
|
||||
|
||||
class Port
|
||||
{
|
||||
protected:
|
||||
friend void connect(OutputPort &, InputPort &);
|
||||
friend class IProcessor;
|
||||
|
||||
protected:
|
||||
/// Shared state of two connected ports.
|
||||
struct State
|
||||
{
|
||||
|
@ -31,7 +31,7 @@ public:
|
||||
|
||||
Block res = std::move(blocks.front());
|
||||
blocks.pop();
|
||||
return std::move(res);
|
||||
return res;
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user