Skip to content

Commit

Permalink
Minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
kssenii committed Jul 30, 2023
1 parent 6bb1a30 commit 08ef4d0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/en/operations/system-tables/events.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Columns:
- `event` ([String](../../sql-reference/data-types/string.md)) — Event name.
- `value` ([UInt64](../../sql-reference/data-types/int-uint.md)) — Number of events occurred.
- `description` ([String](../../sql-reference/data-types/string.md)) — Event description.
- `name` ([String](../../sql-reference/data-types/string.md)) — Alias for event.
- `name` ([String](../../sql-reference/data-types/string.md)) — Alias for `event`.

**Example**

Expand Down
2 changes: 1 addition & 1 deletion docs/en/operations/system-tables/metrics.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Columns:
- `metric` ([String](../../sql-reference/data-types/string.md)) — Metric name.
- `value` ([Int64](../../sql-reference/data-types/int-uint.md)) — Metric value.
- `description` ([String](../../sql-reference/data-types/string.md)) — Metric description.
- `name` ([String](../../sql-reference/data-types/string.md)) — Alias for metric.
- `name` ([String](../../sql-reference/data-types/string.md)) — Alias for `metric`.

The list of supported metrics you can find in the [src/Common/CurrentMetrics.cpp](https://github.com/ClickHouse/ClickHouse/blob/master/src/Common/CurrentMetrics.cpp) source file of ClickHouse.

Expand Down
1 change: 1 addition & 0 deletions src/Storages/System/StorageSystemEvents.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ class StorageSystemEvents final : public IStorageSystemOneBlock<StorageSystemEve
static NamesAndTypesList getNamesAndTypes();

static NamesAndAliases getNamesAndAliases();

protected:
using IStorageSystemOneBlock::IStorageSystemOneBlock;

Expand Down
1 change: 1 addition & 0 deletions src/Storages/System/StorageSystemMetrics.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ class StorageSystemMetrics final : public IStorageSystemOneBlock<StorageSystemMe
static NamesAndTypesList getNamesAndTypes();

static NamesAndAliases getNamesAndAliases();

protected:
using IStorageSystemOneBlock::IStorageSystemOneBlock;

Expand Down

0 comments on commit 08ef4d0

Please sign in to comment.