mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
dbms: removed useless code [#METR-16739].
This commit is contained in:
parent
432687925c
commit
0b3c071eb9
@ -29,8 +29,6 @@ struct BlockStreamProfileInfo
|
||||
using BlockStreamProfileInfos = std::vector<const BlockStreamProfileInfo *>;
|
||||
BlockStreamProfileInfos nested_infos;
|
||||
|
||||
String column_names;
|
||||
|
||||
/// Собрать BlockStreamProfileInfo для ближайших в дереве источников с именем name. Пример; собрать все info для PartialSorting stream-ов.
|
||||
void collectInfosForStreamsWithName(const char * name, BlockStreamProfileInfos & res) const;
|
||||
|
||||
|
@ -52,9 +52,6 @@ void BlockStreamProfileInfo::update(Block & block)
|
||||
++blocks;
|
||||
rows += block.rowsInFirstColumn();
|
||||
bytes += block.bytes();
|
||||
|
||||
if (column_names.empty())
|
||||
column_names = block.dumpNames();
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user