mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 05:32:52 +00:00
13 lines
314 B
C++
13 lines
314 B
C++
#pragma once
|
|
#include <Common/ProfileEvents.h>
|
|
#include <Columns/IColumn.h>
|
|
|
|
|
|
namespace ProfileEvents
|
|
{
|
|
|
|
/// Dumps profile events to two columns Array(String) and Array(UInt64)
|
|
void dumpToArrayColumns(const Counters & counters, DB::IColumn * column_names, DB::IColumn * column_value, bool nonzero_only = true);
|
|
|
|
}
|