From 72ef357a028d49f0820163cbc4b91dc428e27fd0 Mon Sep 17 00:00:00 2001 From: alesapin Date: Fri, 12 Oct 2018 17:52:39 +0300 Subject: [PATCH] Fix typo assignment --- dbms/src/Interpreters/ExpressionJIT.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dbms/src/Interpreters/ExpressionJIT.cpp b/dbms/src/Interpreters/ExpressionJIT.cpp index 0bc5c683d04..a88faf13ca4 100644 --- a/dbms/src/Interpreters/ExpressionJIT.cpp +++ b/dbms/src/Interpreters/ExpressionJIT.cpp @@ -741,7 +741,7 @@ void compileFunctions(ExpressionActions::Actions & actions, const Names & output } else { - std::shared_ptr context = context = std::make_shared(); + std::shared_ptr context = std::make_shared(); Stopwatch watch; fn = std::make_shared(fused[i], context, sample_block); size_t used_memory = context->compileAllFunctionsToNativeCode();