From 08d30beee5c5c44e620fd17b7ad53085ab1acb58 Mon Sep 17 00:00:00 2001 From: Nikolai Kochetov Date: Fri, 4 Oct 2024 12:31:12 +0200 Subject: [PATCH] Update IQueryPlanStep.h --- src/Processors/QueryPlan/IQueryPlanStep.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Processors/QueryPlan/IQueryPlanStep.h b/src/Processors/QueryPlan/IQueryPlanStep.h index 3e9415af543..c3eeb8ebf48 100644 --- a/src/Processors/QueryPlan/IQueryPlanStep.h +++ b/src/Processors/QueryPlan/IQueryPlanStep.h @@ -38,8 +38,8 @@ public: /// Add processors from current step to QueryPipeline. /// Calling this method, we assume and don't check that: /// * pipelines.size() == getInputHeaders.size() - /// * header from each pipeline is the same as header from corresponding input_streams - /// Result pipeline must contain any number of streams with compatible output header is hasOutputStream(), + /// * header from each pipeline is the same as header from corresponding input + /// Result pipeline must contain any number of ports with compatible output header if hasOutputHeader(), /// or pipeline should be completed otherwise. virtual QueryPipelineBuilderPtr updatePipeline(QueryPipelineBuilders pipelines, const BuildQueryPipelineSettings & settings) = 0;