mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 22:22:00 +00:00
19 lines
263 B
C++
19 lines
263 B
C++
#include <DB/Interpreters/sortBlock.h>
|
|
|
|
#include <DB/DataStreams/PartialSortingBlockInputStream.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
|
|
Block PartialSortingBlockInputStream::readImpl()
|
|
{
|
|
Block res = children.back()->read();
|
|
sortBlock(res, description, limit);
|
|
return res;
|
|
}
|
|
|
|
|
|
}
|