Rename narrowBlockInputStream to narrowPipe

This commit is contained in:
Amos Bird 2022-04-24 18:33:48 +08:00
parent ff77e5e379
commit e73d7fea31
No known key found for this signature in database
GPG Key ID: 80D430DCBECFEDB4
6 changed files with 7 additions and 6 deletions

View File

@ -1,8 +1,9 @@
#include <QueryPipeline/narrowPipe.h>
#include <random>
#include <Common/thread_local_rng.h>
#include <Processors/ConcatProcessor.h>
#include <QueryPipeline/Pipe.h>
#include "narrowBlockInputStreams.h"
namespace DB

View File

@ -9,7 +9,7 @@ namespace DB
class Pipe;
/** If the number of sources of `inputs` is greater than `width`,
* then glues the sources to each other (using ConcatBlockInputStream),
* then glues the sources to each other (using ConcatProcessor),
* so that the number of sources becomes no more than `width`.
*
* Trying to glue the sources with each other uniformly randomly.

View File

@ -11,7 +11,7 @@
#include <Interpreters/InterpreterSelectQuery.h>
#include <Interpreters/getTableExpressions.h>
#include <Processors/Transforms/AddingDefaultsTransform.h>
#include <QueryPipeline/narrowBlockInputStreams.h>
#include <QueryPipeline/narrowPipe.h>
#include <QueryPipeline/Pipe.h>
#include <Processors/Sources/RemoteSource.h>
#include <QueryPipeline/RemoteQueryExecutor.h>

View File

@ -1,4 +1,4 @@
#include <QueryPipeline/narrowBlockInputStreams.h>
#include <QueryPipeline/narrowPipe.h>
#include <Processors/Sources/SourceFromSingleChunk.h>
#include <Storages/StorageMerge.h>
#include <Storages/StorageFactory.h>

View File

@ -36,7 +36,7 @@
#include <Processors/Transforms/AddingDefaultsTransform.h>
#include <Processors/Formats/IOutputFormat.h>
#include <Processors/Formats/IInputFormat.h>
#include <QueryPipeline/narrowBlockInputStreams.h>
#include <QueryPipeline/narrowPipe.h>
#include <QueryPipeline/QueryPipelineBuilder.h>
#include <Processors/Executors/PullingPipelineExecutor.h>

View File

@ -21,7 +21,7 @@
#include <Interpreters/InterpreterSelectQuery.h>
#include <Interpreters/getTableExpressions.h>
#include <Processors/Transforms/AddingDefaultsTransform.h>
#include <QueryPipeline/narrowBlockInputStreams.h>
#include <QueryPipeline/narrowPipe.h>
#include <QueryPipeline/Pipe.h>
#include "Processors/Sources/SourceWithProgress.h"
#include <Processors/Sources/RemoteSource.h>