From bb6d6a37b3064a7fb545ce4a9d0ef1c59a24ff93 Mon Sep 17 00:00:00 2001 From: Nikolai Kochetov Date: Fri, 14 Feb 2020 12:28:13 +0300 Subject: [PATCH] Fix build. --- dbms/src/Interpreters/ClusterProxy/SelectStreamFactory.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dbms/src/Interpreters/ClusterProxy/SelectStreamFactory.cpp b/dbms/src/Interpreters/ClusterProxy/SelectStreamFactory.cpp index c9ba336d8fd..0f532fd5332 100644 --- a/dbms/src/Interpreters/ClusterProxy/SelectStreamFactory.cpp +++ b/dbms/src/Interpreters/ClusterProxy/SelectStreamFactory.cpp @@ -93,7 +93,7 @@ Pipe createLocalStream(const ASTPtr & query_ast, const Block & header, const Con */ /// return std::make_shared(stream); - return interpreter.executeWithProcessors().getPipe();; + return interpreter.executeWithProcessors().getPipe(); } static String formattedAST(const ASTPtr & ast)