mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
ed5b521110
* Less dependencies [#CLICKHOUSE-2]. * Less dependencies [#CLICKHOUSE-2]. * Less dependencies [#CLICKHOUSE-2]. * Less dependencies [#CLICKHOUSE-2]. * Less dependencies [#CLICKHOUSE-2]. * Less dependencies [#CLICKHOUSE-2]. * Less dependencies [#CLICKHOUSE-2]. * Less dependencies [#CLICKHOUSE-2]. * Less dependencies [#CLICKHOUSE-2]. * Less dependencies [#CLICKHOUSE-2]. * Less dependencies [#CLICKHOUSE-2]. * Less dependencies [#CLICKHOUSE-2]. * Less dependencies [#CLICKHOUSE-2]. * Less dependencies [#CLICKHOUSE-2]. * Less dependencies [#CLICKHOUSE-2]. * Less dependencies [#CLICKHOUSE-2]. * Less dependencies [#CLICKHOUSE-2]. * Less dependencies [#CLICKHOUSE-2]. * Less dependencies [#CLICKHOUSE-2]. * Less dependencies [#CLICKHOUSE-2]. * Less dependencies [#CLICKHOUSE-2]. * Less dependencies [#CLICKHOUSE-2]. * Less dependencies [#CLICKHOUSE-2].
51 lines
1.4 KiB
C++
51 lines
1.4 KiB
C++
#pragma once
|
||
|
||
#include <DB/DataStreams/IProfilingBlockInputStream.h>
|
||
#include <DB/DataStreams/copyData.h>
|
||
|
||
|
||
namespace DB
|
||
{
|
||
|
||
class IBlockOutputStream;
|
||
using BlockOutputStreamPtr = std::shared_ptr<IBlockOutputStream>;
|
||
|
||
|
||
/** Пустой поток блоков.
|
||
* Но при первой попытке чтения, копирует данные из переданного input-а в переданный output.
|
||
* Это нужно для выполнения запроса INSERT SELECT - запрос копирует данные, но сам ничего не возвращает.
|
||
* Запрос можно было бы выполнять и без оборачивания в пустой BlockInputStream,
|
||
* но не работал бы прогресс выполнения запроса и возможность отменить запрос.
|
||
*/
|
||
class NullAndDoCopyBlockInputStream : public IProfilingBlockInputStream
|
||
{
|
||
public:
|
||
NullAndDoCopyBlockInputStream(BlockInputStreamPtr input_, BlockOutputStreamPtr output_)
|
||
: input(input_), output(output_)
|
||
{
|
||
children.push_back(input_);
|
||
}
|
||
|
||
String getName() const override { return "NullAndDoCopy"; }
|
||
|
||
String getID() const override
|
||
{
|
||
std::stringstream res;
|
||
res << "copy from " << input->getID();
|
||
return res.str();
|
||
}
|
||
|
||
protected:
|
||
Block readImpl() override
|
||
{
|
||
copyData(*input, *output);
|
||
return Block();
|
||
}
|
||
|
||
private:
|
||
BlockInputStreamPtr input;
|
||
BlockOutputStreamPtr output;
|
||
};
|
||
|
||
}
|