| 1 | #pragma once |
|---|---|
| 2 | #include <Common/ProfileEvents.h> |
| 3 | #include <Columns/IColumn.h> |
| 4 | |
| 5 | |
| 6 | namespace ProfileEvents |
| 7 | { |
| 8 | |
| 9 | /// Dumps profile events to two columns Array(String) and Array(UInt64) |
| 10 | void dumpToArrayColumns(const Counters & counters, DB::IColumn * column_names, DB::IColumn * column_value, bool nonzero_only = true); |
| 11 | |
| 12 | } |
| 13 |