mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 15:42:02 +00:00
dbms: tiny modifications [#METR-2944].
This commit is contained in:
parent
6bdcf3a9ae
commit
70f4887d74
@ -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();
|
||||
}
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user