dbms: tiny modifications [#METR-2944].

This commit is contained in:
Alexey Milovidov 2015-08-03 23:11:57 +03:00
parent 6bdcf3a9ae
commit 70f4887d74
2 changed files with 2 additions and 2 deletions

View File

@ -308,7 +308,7 @@ std::string Block::dumpStructure() const
if (it->column)
res << ' ' << it->column->getName() << ' ' << it->column->size();
else
res << "nullptr";
res << " nullptr";
}
return res.str();
}

View File

@ -403,7 +403,7 @@ void InterpreterSelectQuery::executeSingleQuery()
bool has_having = false;
bool has_order_by = false;
ExpressionActionsPtr before_join;
ExpressionActionsPtr before_join; /// включая JOIN
ExpressionActionsPtr before_where;
ExpressionActionsPtr before_aggregation;
ExpressionActionsPtr before_having;