mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 11:04:10 +00:00
36 lines
840 B
C++
36 lines
840 B
C++
#pragma once
|
|
|
|
#include <DB/Core/SortDescription.h>
|
|
|
|
#include <DB/DataStreams/IProfilingBlockInputStream.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/** Соединяет поток сортированных по отдельности блоков в сортированный целиком поток.
|
|
*/
|
|
class MergeSortingBlockInputStream : public IProfilingBlockInputStream
|
|
{
|
|
public:
|
|
MergeSortingBlockInputStream(BlockInputStreamPtr input_, SortDescription & description_)
|
|
: input(input_), description(description_)
|
|
{
|
|
children.push_back(input);
|
|
}
|
|
|
|
Block readImpl();
|
|
|
|
String getName() const { return "MergeSortingBlockInputStream"; }
|
|
|
|
BlockInputStreamPtr clone() { return new MergeSortingBlockInputStream(input, description); }
|
|
|
|
private:
|
|
BlockInputStreamPtr input;
|
|
SortDescription description;
|
|
|
|
void merge(Block & left, Block & right);
|
|
};
|
|
|
|
}
|