Merge pull request #62860 from HowePa/part_log_typo

[Docs] fix typo for part log
This commit is contained in:
jsc0218 2024-05-08 13:09:14 +00:00 committed by GitHub
commit 95af8eb88d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ The `system.part_log` table contains the following columns:
- `event_type` ([Enum8](../../sql-reference/data-types/enum.md)) — Type of the event that occurred with the data part. Can have one of the following values:
- `NewPart` — Inserting of a new data part.
- `MergeParts` — Merging of data parts.
- `DownloadParts` — Downloading a data part.
- `DownloadPart` — Downloading a data part.
- `RemovePart` — Removing or detaching a data part using [DETACH PARTITION](../../sql-reference/statements/alter/partition.md#alter_detach-partition).
- `MutatePart` — Mutating of a data part.
- `MovePart` — Moving the data part from the one disk to another one.

View File

@ -101,7 +101,7 @@ ColumnsDescription PartLogElement::getColumnsDescription()
"Can have one of the following values: "
"NewPart — Inserting of a new data part, "
"MergeParts — Merging of data parts, "
"DownloadParts — Downloading a data part, "
"DownloadPart — Downloading a data part, "
"RemovePart — Removing or detaching a data part using DETACH PARTITION, "
"MutatePart — Mutating of a data part, "
"MovePart — Moving the data part from the one disk to another one."},