From 83251bbeb4a034c77e7fc6d150b916523c82de15 Mon Sep 17 00:00:00 2001 From: Vikas Attiguppa <20652333+va-os-commits@users.noreply.github.com> Date: Thu, 19 Sep 2024 14:41:26 -0700 Subject: [PATCH] [Doc] Adding detail for data length field (#51095) Signed-off-by: Vikas Attiguppa <20652333+va-os-commits@users.noreply.github.com> --- CONTRIBUTING.md | 2 +- docs/en/sql-reference/information_schema/tables.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 565378c22d4..0b58c043d95 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -2,7 +2,7 @@ StarRocks is built by an open and friendly community. We are dedicated to building a collaborative, inspiring, and exuberant open-source community for our members. Everyone is more than welcome to join our community to get help and to contribute to StarRocks. -## Table of content +## Table of contents - [How to contribute](#How-to-contribute) - [Contributing guideline](#Contributing-guideline) diff --git a/docs/en/sql-reference/information_schema/tables.md b/docs/en/sql-reference/information_schema/tables.md index a747ee07630..61bcbd4a7fd 100644 --- a/docs/en/sql-reference/information_schema/tables.md +++ b/docs/en/sql-reference/information_schema/tables.md @@ -19,7 +19,7 @@ The following fields are provided in `tables`: | ROW_FORMAT | Applies to a feature not available in StarRocks. | | TABLE_ROWS | Row count of the table. | | AVG_ROW_LENGTH | Average row length (size) of the table. It is equivalent to `DATA_LENGTH`/`TABLE_ROWS`. Unit: Byte. | -| DATA_LENGTH | Data length (size) of the table. Unit: Byte. | +| DATA_LENGTH | The data length of the table is determined by summing the data length of the table across all replicas. Unit: Byte.| | MAX_DATA_LENGTH | Applies to a feature not available in StarRocks. | | INDEX_LENGTH | Applies to a feature not available in StarRocks. | | DATA_FREE | Applies to a feature not available in StarRocks. |