mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 08:02:02 +00:00
Fixing header.
This commit is contained in:
parent
de2f1adf91
commit
0e136ded28
@ -154,7 +154,9 @@ void MergingAggregatedStep::describeActions(JSONBuilder::JSONMap & map) const
|
|||||||
|
|
||||||
void MergingAggregatedStep::updateOutputStream()
|
void MergingAggregatedStep::updateOutputStream()
|
||||||
{
|
{
|
||||||
output_stream = createOutputStream(input_streams.front(), params.getHeader(input_streams.front().header, final), getDataStreamTraits());
|
const auto & in_header = input_streams.front().header;
|
||||||
|
output_stream = createOutputStream(input_streams.front(),
|
||||||
|
MergingAggregatedTransform::appendGroupingIfNeeded(in_header, params.getHeader(in_header, final)), getDataStreamTraits());
|
||||||
if (is_order_overwritten) /// overwrite order again
|
if (is_order_overwritten) /// overwrite order again
|
||||||
applyOrder(group_by_sort_description, overwritten_sort_scope);
|
applyOrder(group_by_sort_description, overwritten_sort_scope);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user