mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 13:42:02 +00:00
1a4157f2a9
Get rid of extra linking dependencies for clickhouse_common_io. [#CLICKHOUSE-2910]
13 lines
313 B
C++
13 lines
313 B
C++
#pragma once
|
|
#include <Common/ProfileEvents.h>
|
|
#include <Columns/IColumn.h>
|
|
|
|
|
|
namespace ProfileEvents
|
|
{
|
|
|
|
/// Dumps profile events to two column Array(String) and Array(UInt64)
|
|
void dumpToArrayColumns(const Counters & counters, DB::IColumn * column_names, DB::IColumn * column_value, bool nonzero_only = true);
|
|
|
|
}
|