From c808ffb04c60581617077b2c5154e39257a56a63 Mon Sep 17 00:00:00 2001 From: Nikolai Kochetov Date: Tue, 20 Apr 2021 17:36:45 +0300 Subject: [PATCH] Update Pipe.cpp --- src/Processors/Pipe.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Processors/Pipe.cpp b/src/Processors/Pipe.cpp index c8264dac9b9..044975448ad 100644 --- a/src/Processors/Pipe.cpp +++ b/src/Processors/Pipe.cpp @@ -251,7 +251,7 @@ static Pipes removeEmptyPipes(Pipes pipes) return res; } -/// Calculate comon header for pipes. +/// Calculate common header for pipes. /// This function is needed only to remove ColumnConst from common header in case if some columns are const, and some not. /// E.g. if the first header is `x, const y, const z` and the second is `const x, y, const z`, the common header will be `x, y, const z`. static Block getCommonHeader(const Pipes & pipes)