mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 13:13:36 +00:00
21 lines
512 B
C++
21 lines
512 B
C++
#pragma once
|
|
|
|
#include <cstddef>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class Pipe;
|
|
|
|
/** If the number of sources of `inputs` is greater than `width`,
|
|
* then glues the sources to each other (using ConcatBlockInputStream),
|
|
* so that the number of sources becomes no more than `width`.
|
|
*
|
|
* Trying to glue the sources with each other uniformly randomly.
|
|
* (to avoid overweighting if the distribution of the amount of data in different sources is subject to some pattern)
|
|
*/
|
|
void narrowPipe(Pipe & pipe, size_t width);
|
|
|
|
}
|