mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 13:42:02 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
32 lines
703 B
C++
32 lines
703 B
C++
#pragma once
|
|
|
|
#include <vector>
|
|
|
|
#include <Processors/IProcessor.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/** Wraps pipeline in a single processor.
|
|
* This processor has no inputs and outputs and just executes the pipeline,
|
|
* performing all synchronous work from the current thread.
|
|
*/
|
|
//class SequentialPipelineExecutor : public IProcessor
|
|
//{
|
|
//private:
|
|
// Processors processors;
|
|
// IProcessor * current_processor = nullptr;
|
|
//
|
|
//public:
|
|
// SequentialPipelineExecutor(const Processors & processors);
|
|
//
|
|
// String getName() const override { return "SequentialPipelineExecutor"; }
|
|
//
|
|
// Status prepare() override;
|
|
// void work() override;
|
|
// void schedule(EventCounter & watch) override;
|
|
//};
|
|
|
|
}
|