Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Doc] Adding detail for data length field (backport #51095) #51178

Merged
merged 1 commit into from
Sep 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion docs/en/sql-reference/information_schema/tables.md
Original file line number Diff line number Diff line change
Expand Up @@ -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. |
Expand Down
Loading