mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
dbms: development [#CONV-2944].
This commit is contained in:
parent
edeaf8f2d2
commit
4f66da4b73
@ -27,6 +27,9 @@ void Expression::addSemantic(ASTPtr & ast)
|
||||
for (NamesAndTypes::const_iterator it = context.columns.begin(); it != context.columns.end(); ++it)
|
||||
all_columns->children.push_back(new ASTIdentifier(ast->range, it->first));
|
||||
ast = all_columns;
|
||||
|
||||
for (ASTs::iterator it = ast->children.begin(); it != ast->children.end(); ++it)
|
||||
addSemantic(*it);
|
||||
}
|
||||
else if (ASTFunction * node = dynamic_cast<ASTFunction *>(&*ast))
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user