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