mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 13:13:36 +00:00
13 lines
261 B
C++
13 lines
261 B
C++
#pragma once
|
|
#include <Common/ProfileEvents.h>
|
|
#include <Columns/IColumn.h>
|
|
|
|
|
|
namespace ProfileEvents
|
|
{
|
|
|
|
/// Dumps profile events to columns Map(String, UInt64)
|
|
void dumpToMapColumn(const Counters & counters, DB::IColumn * column, bool nonzero_only = true);
|
|
|
|
}
|