This commit is contained in:
Nikita Vasilev 2019-03-07 14:31:23 +03:00
parent a555918fca
commit 01e682d23c
3 changed files with 6 additions and 7 deletions

View File

@ -281,9 +281,9 @@ KeyCondition::KeyCondition(
RPNBuilder<RPNElement>(
query_info, context,
[this] (const ASTPtr & node, const Context & context, Block & block_with_constants, RPNElement & out) -> bool
[this] (const ASTPtr & node, const Context & atom_context, Block & block_with_constants, RPNElement & out) -> bool
{
return this->atomFromAST(node, context, block_with_constants, out);
return this->atomFromAST(node, atom_context, block_with_constants, out);
}).extractRPN(rpn);
}

View File

@ -1 +0,0 @@
#include <Storages/MergeTree/RPNBuilder.h>