From 284e547bc3fae8dafe2bf7c021aade39673ab472 Mon Sep 17 00:00:00 2001 From: Alexey Milovidov Date: Mon, 11 Oct 2021 09:01:23 +0300 Subject: [PATCH] Fix error --- src/Interpreters/JIT/CHJIT.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Interpreters/JIT/CHJIT.cpp b/src/Interpreters/JIT/CHJIT.cpp index 83b0430a07d..9eec82b4179 100644 --- a/src/Interpreters/JIT/CHJIT.cpp +++ b/src/Interpreters/JIT/CHJIT.cpp @@ -156,7 +156,7 @@ public: throwFromErrno("Cannot mprotect memory region", ErrorCodes::CANNOT_MPROTECT); llvm::sys::Memory::InvalidateInstructionCache(block.base(), block.blockSize()); - InvalidateCache = false; + invalidate_cache = false; } # endif int res = mprotect(block.base(), block.blockSize(), protection_flags);