Fix build.

This commit is contained in:
Nikolai Kochetov 2020-01-29 21:18:12 +03:00
parent 84a392402f
commit 0c4f6eaca9

View File

@ -8,6 +8,9 @@ namespace DB
class Pipe;
using Pipes = std::vector<Pipe>;
class IStorage;
using StoragePtr = std::shared_ptr<IStorage>;
/// Pipe is a set of processors which represents the part of pipeline with single output.
/// All processors in pipe are connected. All ports are connected except the output one.
class Pipe