dbms: removed useless code [#METR-16739].

This commit is contained in:
Alexey Milovidov 2015-06-08 23:19:28 +03:00
parent 432687925c
commit 0b3c071eb9
2 changed files with 0 additions and 5 deletions

View File

@ -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;

View File

@ -52,9 +52,6 @@ void BlockStreamProfileInfo::update(Block & block)
++blocks;
rows += block.rowsInFirstColumn();
bytes += block.bytes();
if (column_names.empty())
column_names = block.dumpNames();
}