mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-14 10:22:10 +00:00
18 lines
331 B
C++
18 lines
331 B
C++
|
#pragma once
|
||
|
#include <Processors/QueryPlan/IQueryPlanStep.h>
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
class ISourceStep : public IQueryPlanStep
|
||
|
{
|
||
|
public:
|
||
|
explicit ISourceStep(DataStream output_stream_);
|
||
|
|
||
|
QueryPipelinePtr updatePipeline(QueryPipelines pipelines) override;
|
||
|
|
||
|
virtual void initializePipeline(QueryPipeline & pipeline) = 0;
|
||
|
};
|
||
|
|
||
|
}
|