This is an automated email from the ASF dual-hosted git repository.

morningman pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris-website.git


The following commit(s) were added to refs/heads/master by this push:
     new 984885d7229 [fix](doc) typo, anchor, and example-output corrections 
across docs (#3721)
984885d7229 is described below

commit 984885d7229e0668f759d45e7e057f79406da9cd
Author: boluor <[email protected]>
AuthorDate: Thu May 21 22:39:11 2026 -0700

    [fix](doc) typo, anchor, and example-output corrections across docs (#3721)
    
    ## Summary
    
    Small mechanical fixes — typos, broken anchors, and one example output
    that didn't match its surrounding values.
    
    | Where | What was wrong | Fix |
    | --- | --- | --- |
    | `admin-manual/system-tables/overview.md` | frontmatter `\"language\":
    \"zh-CN\"` on the English file | switch to `\"en\"` |
    | `data-operate/import/import-way/mysql-load-manual.md`,
    `data-operate/import/data-source/local-file.md` | result line `Query OK,
    6 row affected` | pluralize to `6 rows affected` |
    | `data-operate/transaction.md` | `SELECT *` result row showed a
    truncated name `Alexande` | restore `Alexander` |
    | `data-operate/update/update-of-aggregate-model.md` | two links to
    `partial-column-update.md#聚合模型的列更新` — a Chinese anchor that has no
    English equivalent | repoint to the actual heading slug
    `#column-update-on-the-aggregate-key-model` |
    | `data-operate/update/update-of-unique-model.md` | link anchor
    `#column-update-for-the-unique-model` does not exist | the heading is
    `## Column Update on the Unique Key Model`, so use
    `#column-update-on-the-unique-key-model` |
    |
    `install/deploy-on-kubernetes/separating-storage-compute/config-cg.md`,
    `config-ms.md` | four references to
    `install-doris-cluster.md#3-配置-dorisdisaggregatedcluster-资源` (Chinese
    anchor on the English file) | the equivalent English subheading is `###
    2. Modify Key Configurations` under Step 3, so repoint to
    `#2-modify-key-configurations` |
    |
    `install/deploy-on-kubernetes/separating-storage-compute/config-cluster.md`
    | link to `config-fe#自定义启动配置` (Chinese anchor in a cross-file English
    link) | the heading `## Custom startup configuration` slugs to
    `#custom-startup-configuration` (the same anchor that config-fe.md
    itself uses correctly elsewhere) |
    | `sql-manual/basic-element/literal/numeric-literal.md` | integer-range
    table had every exponent doubled (`TINYINT: -2^8 to 2^8 - 1`, etc.) |
    signed integer ranges are `[-2^(n-1), 2^(n-1) - 1]`, so the correct
    exponents are 2^7, 2^15, 2^31, 2^63, 2^127 |
    | `query-acceleration/tuning/tuning-execution/parallelism-tuning.md` |
    ProbeRows printed `1.4662330332B (1462330332)` — the readable mantissa
    had a duplicate `6` | the raw value `1462330332` corresponds to
    `1.462330332B`, which matches the RowsProduced row immediately below |
    |
    `sql-manual/basic-element/sql-data-types/conversion/datetime-conversion.md`
    | lower bound shown with 7 fractional digits (`0000-01-01
    00:00:00.0000000`); DATETIME max precision is 6 (matches the upper bound
    `23:59:59.999999`) | trim one zero |
    |
    `sql-manual/sql-functions/scalar-functions/array-functions/array-count.md`
    | `<version since=\"2.0.0\">` was never closed | add `</version>` to
    match the array-avg.md convention |
    
    Applied across `docs/`, `versioned_docs/version-{2.1,3.x,4.x}/`, and
    `i18n/zh-CN/` where the affected content exists.
    
    ## Test plan
    
    - [x] Spot-check each edit's diff.
    - [x] Verify replacement anchors exist as headings in the target files
    (`partial-column-update.md`, `install-doris-cluster.md`,
    `config-fe.md`).
    - [ ] CI build (docusaurus + sidebar checks).
    
    Co-authored-by: Claude Opus 4.7 (1M context) <[email protected]>
---
 docs/admin-manual/system-tables/overview.md                    |  2 +-
 docs/data-operate/import/data-source/local-file.md             |  2 +-
 docs/data-operate/import/import-way/mysql-load-manual.md       |  2 +-
 docs/data-operate/transaction.md                               |  2 +-
 docs/data-operate/update/update-of-aggregate-model.md          |  4 ++--
 docs/data-operate/update/update-of-unique-model.md             |  2 +-
 .../separating-storage-compute/config-cg.md                    |  4 ++--
 .../separating-storage-compute/config-cluster.md               |  2 +-
 .../separating-storage-compute/config-ms.md                    |  4 ++--
 .../tuning/tuning-execution/parallelism-tuning.md              |  2 +-
 docs/sql-manual/basic-element/literal/numeric-literal.md       | 10 +++++-----
 .../sql-data-types/conversion/datetime-conversion.md           |  2 +-
 .../scalar-functions/array-functions/array-count.md            |  2 +-
 .../current/data-operate/import/data-source/local-file.md      |  2 +-
 .../data-operate/import/import-way/mysql-load-manual.md        |  2 +-
 .../current/data-operate/transaction.md                        |  2 +-
 .../tuning/tuning-execution/parallelism-tuning.md              |  2 +-
 .../sql-data-types/conversion/datetime-conversion.md           |  2 +-
 .../version-2.1/data-operate/import/data-source/local-file.md  |  2 +-
 .../data-operate/import/import-way/mysql-load-manual.md        |  2 +-
 .../tuning/tuning-execution/parallelism-tuning.md              |  2 +-
 .../version-3.x/data-operate/import/data-source/local-file.md  |  2 +-
 .../data-operate/import/import-way/mysql-load-manual.md        |  2 +-
 .../version-3.x/data-operate/transaction.md                    |  2 +-
 .../tuning/tuning-execution/parallelism-tuning.md              |  2 +-
 .../version-4.x/data-operate/import/data-source/local-file.md  |  2 +-
 .../data-operate/import/import-way/mysql-load-manual.md        |  2 +-
 .../version-4.x/data-operate/transaction.md                    |  2 +-
 .../tuning/tuning-execution/parallelism-tuning.md              |  2 +-
 .../sql-data-types/conversion/datetime-conversion.md           |  2 +-
 .../version-2.1/admin-manual/system-tables/overview.md         |  2 +-
 .../version-2.1/data-operate/import/data-source/local-file.md  |  2 +-
 .../data-operate/import/import-way/mysql-load-manual.md        |  2 +-
 .../tuning/tuning-execution/parallelism-tuning.md              |  2 +-
 .../sql-manual/basic-element/literal/numeric-literal.md        | 10 +++++-----
 .../version-3.x/admin-manual/system-tables/overview.md         |  2 +-
 .../version-3.x/data-operate/import/data-source/local-file.md  |  2 +-
 .../data-operate/import/import-way/mysql-load-manual.md        |  2 +-
 versioned_docs/version-3.x/data-operate/transaction.md         |  2 +-
 .../tuning/tuning-execution/parallelism-tuning.md              |  2 +-
 .../sql-manual/basic-element/literal/numeric-literal.md        | 10 +++++-----
 .../version-4.x/admin-manual/system-tables/overview.md         |  2 +-
 .../version-4.x/data-operate/import/data-source/local-file.md  |  2 +-
 .../data-operate/import/import-way/mysql-load-manual.md        |  2 +-
 versioned_docs/version-4.x/data-operate/transaction.md         |  2 +-
 .../data-operate/update/update-of-aggregate-model.md           |  4 ++--
 .../version-4.x/data-operate/update/update-of-unique-model.md  |  2 +-
 .../separating-storage-compute/config-cg.md                    |  4 ++--
 .../separating-storage-compute/config-cluster.md               |  2 +-
 .../separating-storage-compute/config-ms.md                    |  4 ++--
 .../tuning/tuning-execution/parallelism-tuning.md              |  2 +-
 .../sql-manual/basic-element/literal/numeric-literal.md        | 10 +++++-----
 .../sql-data-types/conversion/datetime-conversion.md           |  2 +-
 .../scalar-functions/array-functions/array-count.md            |  2 +-
 54 files changed, 76 insertions(+), 76 deletions(-)

diff --git a/docs/admin-manual/system-tables/overview.md 
b/docs/admin-manual/system-tables/overview.md
index a0de6d186b5..7449fcc97ee 100644
--- a/docs/admin-manual/system-tables/overview.md
+++ b/docs/admin-manual/system-tables/overview.md
@@ -1,7 +1,7 @@
 ---
 {
     "title": "Overview | System Tables",
-    "language": "zh-CN",
+    "language": "en",
     "description": "Apache Doris cluster has multiple built-in system 
databases to store metadata information about the Doris system itself.",
     "sidebar_label": "Overview"
 }
diff --git a/docs/data-operate/import/data-source/local-file.md 
b/docs/data-operate/import/data-source/local-file.md
index 565d935ae55..f7b88ef92b6 100644
--- a/docs/data-operate/import/data-source/local-file.md
+++ b/docs/data-operate/import/data-source/local-file.md
@@ -241,7 +241,7 @@ MySQL Load is a synchronous import method. The result is 
returned to the user on
 The following is the result of a successful import, which returns the number 
of imported rows:
 
 ```SQL
-Query OK, 6 row affected (0.17 sec)
+Query OK, 6 rows affected (0.17 sec)
 Records: 6  Deleted: 0  Skipped: 0  Warnings: 0
 ```
 
diff --git a/docs/data-operate/import/import-way/mysql-load-manual.md 
b/docs/data-operate/import/import-way/mysql-load-manual.md
index 3bc81fcd8ec..c49fc6cf73c 100644
--- a/docs/data-operate/import/import-way/mysql-load-manual.md
+++ b/docs/data-operate/import/import-way/mysql-load-manual.md
@@ -123,7 +123,7 @@ MySQL Load is a synchronous import method, so the import 
result is returned dire
 When the import **succeeds**, the number of imported rows is returned:
 
 ```sql
-Query OK, 6 row affected (0.17 sec)
+Query OK, 6 rows affected (0.17 sec)
 Records: 6  Deleted: 0  Skipped: 0  Warnings: 0
 ```
 
diff --git a/docs/data-operate/transaction.md b/docs/data-operate/transaction.md
index 352989fff08..4aa4c732a37 100644
--- a/docs/data-operate/transaction.md
+++ b/docs/data-operate/transaction.md
@@ -362,7 +362,7 @@ mysql> SELECT * FROM dt3;
 |    1 | Emily    |    25 |
 |    2 | Benjamin |    35 |
 |    3 | Olivia   |    28 |
-|    4 | Alexande |    60 |
+|    4 | Alexander |    60 |
 |    5 | Ava      |    17 |
 |    7 | Sophia   |    32 |
 +------+----------+-------+
diff --git a/docs/data-operate/update/update-of-aggregate-model.md 
b/docs/data-operate/update/update-of-aggregate-model.md
index f5ca23c6190..703c14c55fc 100644
--- a/docs/data-operate/update/update-of-aggregate-model.md
+++ b/docs/data-operate/update/update-of-aggregate-model.md
@@ -21,7 +21,7 @@ This document describes the two update methods that the Doris 
Aggregate model su
 | Update method | Applicable scenario | Supported load methods | Behavior |
 | --- | --- | --- | --- |
 | Whole-row update | Write a complete row, and merge the new and old values 
according to each column's aggregate function | Stream Load, Broker Load, 
Routine Load, Insert Into, and others | The new value and the old value are 
combined by the aggregate function to produce a new aggregate value |
-| Partial-column update | Update only some columns while the other columns 
retain their existing aggregate results | See [Partial Column 
Update](./partial-column-update.md#聚合模型的列更新) | Only the specified columns 
participate in aggregate merging |
+| Partial-column update | Update only some columns while the other columns 
retain their existing aggregate results | See [Partial Column 
Update](./partial-column-update.md#column-update-on-the-aggregate-key-model) | 
Only the specified columns participate in aggregate merging |
 
 ## Whole-Row Update
 
@@ -40,4 +40,4 @@ No matter at which stage the aggregate value is produced, the 
result returned to
 
 <!-- Knowledge type: Capability index -->
 
-The Aggregate Key Model supports updating only some columns in the table while 
the other columns retain their existing aggregate results. For details on table 
creation, data write examples, and usage notes, see the [Partial Column 
Update](./partial-column-update.md#聚合模型的列更新) document.
+The Aggregate Key Model supports updating only some columns in the table while 
the other columns retain their existing aggregate results. For details on table 
creation, data write examples, and usage notes, see the [Partial Column 
Update](./partial-column-update.md#column-update-on-the-aggregate-key-model) 
document.
diff --git a/docs/data-operate/update/update-of-unique-model.md 
b/docs/data-operate/update/update-of-unique-model.md
index 18b4003ae0e..492c7a4dba2 100644
--- a/docs/data-operate/update/update-of-unique-model.md
+++ b/docs/data-operate/update/update-of-unique-model.md
@@ -40,4 +40,4 @@ Supported load methods include:
 
 <!-- Knowledge type: Capability definition -->
 
-When only some fields need to be updated, you can use the partial column 
update capability of the Unique model to avoid assembling the full record. For 
detailed information (including usage examples, flexible partial column 
updates, and handling of new rows), see the [Column 
update](./partial-column-update.md#column-update-for-the-unique-model) document.
+When only some fields need to be updated, you can use the partial column 
update capability of the Unique model to avoid assembling the full record. For 
detailed information (including usage examples, flexible partial column 
updates, and handling of new rows), see the [Column 
update](./partial-column-update.md#column-update-on-the-unique-key-model) 
document.
diff --git 
a/docs/install/deploy-on-kubernetes/separating-storage-compute/config-cg.md 
b/docs/install/deploy-on-kubernetes/separating-storage-compute/config-cg.md
index e2f4cf92bcc..743d3362865 100644
--- a/docs/install/deploy-on-kubernetes/separating-storage-compute/config-cg.md
+++ b/docs/install/deploy-on-kubernetes/separating-storage-compute/config-cg.md
@@ -83,7 +83,7 @@ spec:
       memory: 8Gi
 ```
 
-Update the configuration above into the [`DorisDisaggregatedCluster` 
resource](./install-doris-cluster.md#3-配置-dorisdisaggregatedcluster-资源) to be 
deployed for it to take effect.
+Update the configuration above into the [`DorisDisaggregatedCluster` 
resource](./install-doris-cluster.md#2-modify-key-configurations) to be 
deployed for it to take effect.
 
 ## Scenario 4: Configure the Access Method of a Compute Group
 
@@ -228,7 +228,7 @@ Parameter descriptions:
 
 ### Step 3: Update the DorisDisaggregatedCluster Resource
 
-Update the [`DorisDisaggregatedCluster` 
resource](./install-doris-cluster.md#3-配置-dorisdisaggregatedcluster-资源) to 
mount the ConfigMap. The configuration is as follows:
+Update the [`DorisDisaggregatedCluster` 
resource](./install-doris-cluster.md#2-modify-key-configurations) to mount the 
ConfigMap. The configuration is as follows:
 
 ```yaml
 spec:
diff --git 
a/docs/install/deploy-on-kubernetes/separating-storage-compute/config-cluster.md
 
b/docs/install/deploy-on-kubernetes/separating-storage-compute/config-cluster.md
index f63af9f13a5..f8c6a9ed18c 100644
--- 
a/docs/install/deploy-on-kubernetes/separating-storage-compute/config-cluster.md
+++ 
b/docs/install/deploy-on-kubernetes/separating-storage-compute/config-cluster.md
@@ -108,7 +108,7 @@ func main() {
 
 ### Step 2: Configure the encrypted password in fe.conf
 
-Configure the encrypted password from the previous step into `fe.conf` 
according to the configuration file's requirements. Following the instructions 
in the [FE startup parameter configuration chapter](config-fe#自定义启动配置), deliver 
the configuration file to the Kubernetes cluster as a `ConfigMap`.
+Configure the encrypted password from the previous step into `fe.conf` 
according to the configuration file's requirements. Following the instructions 
in the [FE startup parameter configuration 
chapter](config-fe#custom-startup-configuration), deliver the configuration 
file to the Kubernetes cluster as a `ConfigMap`.
 
 ### Step 3: Configure management credentials in DorisDisaggregatedCluster
 
diff --git 
a/docs/install/deploy-on-kubernetes/separating-storage-compute/config-ms.md 
b/docs/install/deploy-on-kubernetes/separating-storage-compute/config-ms.md
index cf9d9a51dc0..6832d7e0372 100644
--- a/docs/install/deploy-on-kubernetes/separating-storage-compute/config-ms.md
+++ b/docs/install/deploy-on-kubernetes/separating-storage-compute/config-ms.md
@@ -105,7 +105,7 @@ spec:
       memory: 4Gi
 ```
 
-Apply the above configuration to the [DorisDisaggregatedCluster resource you 
want to deploy](./install-doris-cluster.md#3-配置-dorisdisaggregatedcluster-资源).
+Apply the above configuration to the [DorisDisaggregatedCluster resource you 
want to deploy](./install-doris-cluster.md#2-modify-key-configurations).
 
 ## 4. Customize startup configuration
 
@@ -175,7 +175,7 @@ Parameter description:
 - `${msConfigMapName}`: the name of the ConfigMap that contains the 
MetaService startup configuration
 - `mountPath`: the mount point must be `/etc/doris`
 
-Apply the above configuration to the [DorisDisaggregatedCluster 
resource](./install-doris-cluster.md#3-配置-dorisdisaggregatedcluster-资源) you 
want to deploy.
+Apply the above configuration to the [DorisDisaggregatedCluster 
resource](./install-doris-cluster.md#2-modify-key-configurations) you want to 
deploy.
 
 ## 5. Configure service probe timeouts
 
diff --git 
a/docs/query-acceleration/tuning/tuning-execution/parallelism-tuning.md 
b/docs/query-acceleration/tuning/tuning-execution/parallelism-tuning.md
index ae44cd1cbca..648c41d2532 100644
--- a/docs/query-acceleration/tuning/tuning-execution/parallelism-tuning.md
+++ b/docs/query-acceleration/tuning/tuning-execution/parallelism-tuning.md
@@ -177,7 +177,7 @@ HASH_JOIN_OPERATOR (id=3 , nereids_id=448):
     - PeakMemoryUsage: sum 1.16 MB, avg 148.00 KB, max 148.00 KB, min 148.00 KB
     - ProbeKeyArena: sum 1.16 MB, avg 148.00 KB, max 148.00 KB, min 148.00 KB
   - OpenTime: avg 2.967us, max 4.120us, min 1.562us
-  - ProbeRows: sum 1.4662330332B (1462330332), avg 182.791291M (182791291), 
max 182.811875M (182811875), min 182.782658M (182782658)
+  - ProbeRows: sum 1.462330332B (1462330332), avg 182.791291M (182791291), max 
182.811875M (182811875), min 182.782658M (182782658)
   - ProjectionTime: avg 165.392ms, max 169.762ms, min 161.727ms
   - RowsProduced: sum 1.462330332B (1462330332), avg 182.791291M (182791291), 
max 182.811875M (182811875), min 182.782658M (182782658)
 ```
diff --git a/docs/sql-manual/basic-element/literal/numeric-literal.md 
b/docs/sql-manual/basic-element/literal/numeric-literal.md
index 87102e2f26a..2deaa9193e4 100644
--- a/docs/sql-manual/basic-element/literal/numeric-literal.md
+++ b/docs/sql-manual/basic-element/literal/numeric-literal.md
@@ -16,11 +16,11 @@ Doris determines the type used to store integer literals 
based on the input valu
 
 | Value Range         | Type     |
 | :------------------ | :------- |
-| -2^8 to 2^8 - 1     | TINYINT  |
-| -2^16 to 2^16 - 1   | SMALLINT |
-| -2^32 to 2^32 - 1   | INT      |
-| -2^64 to 2^64 - 1   | BIGINT   |
-| -2^128 to 2^128 - 1 | LARGEINT |
+| -2^7 to 2^7 - 1     | TINYINT  |
+| -2^15 to 2^15 - 1   | SMALLINT |
+| -2^31 to 2^31 - 1   | INT      |
+| -2^63 to 2^63 - 1   | BIGINT   |
+| -2^127 to 2^127 - 1 | LARGEINT |
 
 ## Fixed and Floating Point Numeric Literals
 
diff --git 
a/docs/sql-manual/basic-element/sql-data-types/conversion/datetime-conversion.md
 
b/docs/sql-manual/basic-element/sql-data-types/conversion/datetime-conversion.md
index b9346d0cc89..f3cdf3f53a6 100644
--- 
a/docs/sql-manual/basic-element/sql-data-types/conversion/datetime-conversion.md
+++ 
b/docs/sql-manual/basic-element/sql-data-types/conversion/datetime-conversion.md
@@ -8,7 +8,7 @@
 
 Valid range for DATETIME type:
 
-`[0000-01-01 00:00:00.0000000, 9999-12-31 23:59:59.999999]`
+`[0000-01-01 00:00:00.000000, 9999-12-31 23:59:59.999999]`
 
 The DATETIME type includes a type parameter `p`, which represents the number 
of decimal places. The complete representation is `DATETIME(p)` type. For 
example, DATETIME(6) indicates a DATETIME type that supports microsecond 
precision.
 
diff --git 
a/docs/sql-manual/sql-functions/scalar-functions/array-functions/array-count.md 
b/docs/sql-manual/sql-functions/scalar-functions/array-functions/array-count.md
index f95d268112b..f5e4a453125 100644
--- 
a/docs/sql-manual/sql-functions/scalar-functions/array-functions/array-count.md
+++ 
b/docs/sql-manual/sql-functions/scalar-functions/array-functions/array-count.md
@@ -10,7 +10,7 @@
 
 <version since="2.0.0">
 
-
+</version>
 
 ## Description
 
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/data-operate/import/data-source/local-file.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/data-operate/import/data-source/local-file.md
index f928c20f6c5..ed91f420ef2 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/data-operate/import/data-source/local-file.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/data-operate/import/data-source/local-file.md
@@ -241,7 +241,7 @@ MySQL Load 是一种同步的导入方式,导入后结果会在命令行中返
 如下是导入成功的结果显示,会返回导入的行数:
 
 ```SQL
-Query OK, 6 row affected (0.17 sec)
+Query OK, 6 rows affected (0.17 sec)
 Records: 6  Deleted: 0  Skipped: 0  Warnings: 0
 ```
 
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/data-operate/import/import-way/mysql-load-manual.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/data-operate/import/import-way/mysql-load-manual.md
index 22faa994bc2..6f7979ced22 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/data-operate/import/import-way/mysql-load-manual.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/data-operate/import/import-way/mysql-load-manual.md
@@ -123,7 +123,7 @@ MySQL Load 是一种同步导入方式,导入结果会在命令行中直接返
 **导入成功**时返回导入的行数:
 
 ```sql
-Query OK, 6 row affected (0.17 sec)
+Query OK, 6 rows affected (0.17 sec)
 Records: 6  Deleted: 0  Skipped: 0  Warnings: 0
 ```
 
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/data-operate/transaction.md 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/data-operate/transaction.md
index adc73c80d0d..a6dd451f478 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/data-operate/transaction.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/data-operate/transaction.md
@@ -362,7 +362,7 @@ mysql> SELECT * FROM dt3;
 |    1 | Emily    |    25 |
 |    2 | Benjamin |    35 |
 |    3 | Olivia   |    28 |
-|    4 | Alexande |    60 |
+|    4 | Alexander |    60 |
 |    5 | Ava      |    17 |
 |    7 | Sophia   |    32 |
 +------+----------+-------+
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/query-acceleration/tuning/tuning-execution/parallelism-tuning.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/query-acceleration/tuning/tuning-execution/parallelism-tuning.md
index 5b695350df9..ce1b4c452ef 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/query-acceleration/tuning/tuning-execution/parallelism-tuning.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/query-acceleration/tuning/tuning-execution/parallelism-tuning.md
@@ -177,7 +177,7 @@ HASH_JOIN_OPERATOR (id=3 , nereids_id=448):
     - PeakMemoryUsage: sum 1.16 MB, avg 148.00 KB, max 148.00 KB, min 148.00 KB
     - ProbeKeyArena: sum 1.16 MB, avg 148.00 KB, max 148.00 KB, min 148.00 KB
   - OpenTime: avg 2.967us, max 4.120us, min 1.562us
-  - ProbeRows: sum 1.4662330332B (1462330332), avg 182.791291M (182791291), 
max 182.811875M (182811875), min 182.782658M (182782658)
+  - ProbeRows: sum 1.462330332B (1462330332), avg 182.791291M (182791291), max 
182.811875M (182811875), min 182.782658M (182782658)
   - ProjectionTime: avg 165.392ms, max 169.762ms, min 161.727ms
   - RowsProduced: sum 1.462330332B (1462330332), avg 182.791291M (182791291), 
max 182.811875M (182811875), min 182.782658M (182782658)
 ```
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/basic-element/sql-data-types/conversion/datetime-conversion.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/basic-element/sql-data-types/conversion/datetime-conversion.md
index ea7dd8f87c8..478355cb234 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/basic-element/sql-data-types/conversion/datetime-conversion.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/basic-element/sql-data-types/conversion/datetime-conversion.md
@@ -8,7 +8,7 @@
 
 DATETIME 类型支持的合法时间上下界:
 
-`[0000-01-01 00:00:00.0000000, 9999-12-31 23:59:59.999999]`
+`[0000-01-01 00:00:00.000000, 9999-12-31 23:59:59.999999]`
 
 DATETIME 类型包含类型参数 `p`,即小数位数。完整表示为 `DATETIME(p)` 类型。例如 DATETIME(6) 表示支持到微秒精度的 
DATETIME 类型。
 
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/data-operate/import/data-source/local-file.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/data-operate/import/data-source/local-file.md
index 464a8b6f83e..839540b5a9d 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/data-operate/import/data-source/local-file.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/data-operate/import/data-source/local-file.md
@@ -225,6 +225,6 @@ MySQL Load 是一种同步的导入方式,导入后结果会在命令行中返
 如下是导入成功的结果显示,会返回导入的行数:
 
 ```SQL
-Query OK, 6 row affected (0.17 sec)
+Query OK, 6 rows affected (0.17 sec)
 Records: 6  Deleted: 0  Skipped: 0  Warnings: 0
 ```
\ No newline at end of file
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/data-operate/import/import-way/mysql-load-manual.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/data-operate/import/import-way/mysql-load-manual.md
index 4f74837775d..4d7dba20e59 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/data-operate/import/import-way/mysql-load-manual.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/data-operate/import/import-way/mysql-load-manual.md
@@ -103,7 +103,7 @@ MySQL Load 是一种同步的导入方式,导入后结果会在命令行中返
 如下是导入成功的结果显示,会返回导入的行数:
 
 ```sql
-Query OK, 6 row affected (0.17 sec)
+Query OK, 6 rows affected (0.17 sec)
 Records: 6  Deleted: 0  Skipped: 0  Warnings: 0
 ```
 
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/query-acceleration/tuning/tuning-execution/parallelism-tuning.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/query-acceleration/tuning/tuning-execution/parallelism-tuning.md
index eb1d8bd837f..a63edbd6076 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/query-acceleration/tuning/tuning-execution/parallelism-tuning.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/query-acceleration/tuning/tuning-execution/parallelism-tuning.md
@@ -118,7 +118,7 @@ HASH_JOIN_OPERATOR (id=3 , nereids_id=448):
     - PeakMemoryUsage: sum 1.16 MB, avg 148.00 KB, max 148.00 KB, min 148.00 KB
     - ProbeKeyArena: sum 1.16 MB, avg 148.00 KB, max 148.00 KB, min 148.00 KB
   - OpenTime: avg 2.967us, max 4.120us, min 1.562us
-  - ProbeRows: sum 1.4662330332B (1462330332), avg 182.791291M (182791291), 
max 182.811875M (182811875), min 182.782658M (182782658)
+  - ProbeRows: sum 1.462330332B (1462330332), avg 182.791291M (182791291), max 
182.811875M (182811875), min 182.782658M (182782658)
   - ProjectionTime: avg 165.392ms, max 169.762ms, min 161.727ms
   - RowsProduced: sum 1.462330332B (1462330332), avg 182.791291M (182791291), 
max 182.811875M (182811875), min 182.782658M (182782658)
 ```
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.x/data-operate/import/data-source/local-file.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.x/data-operate/import/data-source/local-file.md
index 464a8b6f83e..839540b5a9d 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.x/data-operate/import/data-source/local-file.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.x/data-operate/import/data-source/local-file.md
@@ -225,6 +225,6 @@ MySQL Load 是一种同步的导入方式,导入后结果会在命令行中返
 如下是导入成功的结果显示,会返回导入的行数:
 
 ```SQL
-Query OK, 6 row affected (0.17 sec)
+Query OK, 6 rows affected (0.17 sec)
 Records: 6  Deleted: 0  Skipped: 0  Warnings: 0
 ```
\ No newline at end of file
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.x/data-operate/import/import-way/mysql-load-manual.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.x/data-operate/import/import-way/mysql-load-manual.md
index 4f74837775d..4d7dba20e59 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.x/data-operate/import/import-way/mysql-load-manual.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.x/data-operate/import/import-way/mysql-load-manual.md
@@ -103,7 +103,7 @@ MySQL Load 是一种同步的导入方式,导入后结果会在命令行中返
 如下是导入成功的结果显示,会返回导入的行数:
 
 ```sql
-Query OK, 6 row affected (0.17 sec)
+Query OK, 6 rows affected (0.17 sec)
 Records: 6  Deleted: 0  Skipped: 0  Warnings: 0
 ```
 
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.x/data-operate/transaction.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.x/data-operate/transaction.md
index 6894d801c66..17d78fd049b 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.x/data-operate/transaction.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.x/data-operate/transaction.md
@@ -362,7 +362,7 @@ mysql> SELECT * FROM dt3;
 |    1 | Emily    |    25 |
 |    2 | Benjamin |    35 |
 |    3 | Olivia   |    28 |
-|    4 | Alexande |    60 |
+|    4 | Alexander |    60 |
 |    5 | Ava      |    17 |
 |    7 | Sophia   |    32 |
 +------+----------+-------+
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.x/query-acceleration/tuning/tuning-execution/parallelism-tuning.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.x/query-acceleration/tuning/tuning-execution/parallelism-tuning.md
index f3d0934c5f5..3bc0d9343a5 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.x/query-acceleration/tuning/tuning-execution/parallelism-tuning.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.x/query-acceleration/tuning/tuning-execution/parallelism-tuning.md
@@ -118,7 +118,7 @@ HASH_JOIN_OPERATOR (id=3 , nereids_id=448):
     - PeakMemoryUsage: sum 1.16 MB, avg 148.00 KB, max 148.00 KB, min 148.00 KB
     - ProbeKeyArena: sum 1.16 MB, avg 148.00 KB, max 148.00 KB, min 148.00 KB
   - OpenTime: avg 2.967us, max 4.120us, min 1.562us
-  - ProbeRows: sum 1.4662330332B (1462330332), avg 182.791291M (182791291), 
max 182.811875M (182811875), min 182.782658M (182782658)
+  - ProbeRows: sum 1.462330332B (1462330332), avg 182.791291M (182791291), max 
182.811875M (182811875), min 182.782658M (182782658)
   - ProjectionTime: avg 165.392ms, max 169.762ms, min 161.727ms
   - RowsProduced: sum 1.462330332B (1462330332), avg 182.791291M (182791291), 
max 182.811875M (182811875), min 182.782658M (182782658)
 ```
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-4.x/data-operate/import/data-source/local-file.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-4.x/data-operate/import/data-source/local-file.md
index f928c20f6c5..ed91f420ef2 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-4.x/data-operate/import/data-source/local-file.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-4.x/data-operate/import/data-source/local-file.md
@@ -241,7 +241,7 @@ MySQL Load 是一种同步的导入方式,导入后结果会在命令行中返
 如下是导入成功的结果显示,会返回导入的行数:
 
 ```SQL
-Query OK, 6 row affected (0.17 sec)
+Query OK, 6 rows affected (0.17 sec)
 Records: 6  Deleted: 0  Skipped: 0  Warnings: 0
 ```
 
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-4.x/data-operate/import/import-way/mysql-load-manual.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-4.x/data-operate/import/import-way/mysql-load-manual.md
index 22faa994bc2..6f7979ced22 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-4.x/data-operate/import/import-way/mysql-load-manual.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-4.x/data-operate/import/import-way/mysql-load-manual.md
@@ -123,7 +123,7 @@ MySQL Load 是一种同步导入方式,导入结果会在命令行中直接返
 **导入成功**时返回导入的行数:
 
 ```sql
-Query OK, 6 row affected (0.17 sec)
+Query OK, 6 rows affected (0.17 sec)
 Records: 6  Deleted: 0  Skipped: 0  Warnings: 0
 ```
 
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-4.x/data-operate/transaction.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-4.x/data-operate/transaction.md
index adc73c80d0d..a6dd451f478 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-4.x/data-operate/transaction.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-4.x/data-operate/transaction.md
@@ -362,7 +362,7 @@ mysql> SELECT * FROM dt3;
 |    1 | Emily    |    25 |
 |    2 | Benjamin |    35 |
 |    3 | Olivia   |    28 |
-|    4 | Alexande |    60 |
+|    4 | Alexander |    60 |
 |    5 | Ava      |    17 |
 |    7 | Sophia   |    32 |
 +------+----------+-------+
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-4.x/query-acceleration/tuning/tuning-execution/parallelism-tuning.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-4.x/query-acceleration/tuning/tuning-execution/parallelism-tuning.md
index 5b695350df9..ce1b4c452ef 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-4.x/query-acceleration/tuning/tuning-execution/parallelism-tuning.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-4.x/query-acceleration/tuning/tuning-execution/parallelism-tuning.md
@@ -177,7 +177,7 @@ HASH_JOIN_OPERATOR (id=3 , nereids_id=448):
     - PeakMemoryUsage: sum 1.16 MB, avg 148.00 KB, max 148.00 KB, min 148.00 KB
     - ProbeKeyArena: sum 1.16 MB, avg 148.00 KB, max 148.00 KB, min 148.00 KB
   - OpenTime: avg 2.967us, max 4.120us, min 1.562us
-  - ProbeRows: sum 1.4662330332B (1462330332), avg 182.791291M (182791291), 
max 182.811875M (182811875), min 182.782658M (182782658)
+  - ProbeRows: sum 1.462330332B (1462330332), avg 182.791291M (182791291), max 
182.811875M (182811875), min 182.782658M (182782658)
   - ProjectionTime: avg 165.392ms, max 169.762ms, min 161.727ms
   - RowsProduced: sum 1.462330332B (1462330332), avg 182.791291M (182791291), 
max 182.811875M (182811875), min 182.782658M (182782658)
 ```
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-4.x/sql-manual/basic-element/sql-data-types/conversion/datetime-conversion.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-4.x/sql-manual/basic-element/sql-data-types/conversion/datetime-conversion.md
index ea7dd8f87c8..478355cb234 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-4.x/sql-manual/basic-element/sql-data-types/conversion/datetime-conversion.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-4.x/sql-manual/basic-element/sql-data-types/conversion/datetime-conversion.md
@@ -8,7 +8,7 @@
 
 DATETIME 类型支持的合法时间上下界:
 
-`[0000-01-01 00:00:00.0000000, 9999-12-31 23:59:59.999999]`
+`[0000-01-01 00:00:00.000000, 9999-12-31 23:59:59.999999]`
 
 DATETIME 类型包含类型参数 `p`,即小数位数。完整表示为 `DATETIME(p)` 类型。例如 DATETIME(6) 表示支持到微秒精度的 
DATETIME 类型。
 
diff --git a/versioned_docs/version-2.1/admin-manual/system-tables/overview.md 
b/versioned_docs/version-2.1/admin-manual/system-tables/overview.md
index a0de6d186b5..7449fcc97ee 100644
--- a/versioned_docs/version-2.1/admin-manual/system-tables/overview.md
+++ b/versioned_docs/version-2.1/admin-manual/system-tables/overview.md
@@ -1,7 +1,7 @@
 ---
 {
     "title": "Overview | System Tables",
-    "language": "zh-CN",
+    "language": "en",
     "description": "Apache Doris cluster has multiple built-in system 
databases to store metadata information about the Doris system itself.",
     "sidebar_label": "Overview"
 }
diff --git 
a/versioned_docs/version-2.1/data-operate/import/data-source/local-file.md 
b/versioned_docs/version-2.1/data-operate/import/data-source/local-file.md
index beca26e6b2f..48b04d84cc4 100644
--- a/versioned_docs/version-2.1/data-operate/import/data-source/local-file.md
+++ b/versioned_docs/version-2.1/data-operate/import/data-source/local-file.md
@@ -164,6 +164,6 @@ LINES TERMINATED BY '\n';
 If the load is successful, the result will be displayed as follows:
 
 ```SQL
-Query OK, 6 row affected (0.17 sec)
+Query OK, 6 rows affected (0.17 sec)
 Records: 6  Deleted: 0  Skipped: 0  Warnings: 0
 ```
diff --git 
a/versioned_docs/version-2.1/data-operate/import/import-way/mysql-load-manual.md
 
b/versioned_docs/version-2.1/data-operate/import/import-way/mysql-load-manual.md
index 17f878ba697..846b9e71897 100644
--- 
a/versioned_docs/version-2.1/data-operate/import/import-way/mysql-load-manual.md
+++ 
b/versioned_docs/version-2.1/data-operate/import/import-way/mysql-load-manual.md
@@ -99,7 +99,7 @@ MySQL Load is a synchronous import method, and the results of 
the import are ret
 Below is an example of a successful import result, which returns the number of 
imported rows:
 
 ```SQL
-Query OK, 6 row affected (0.17 sec)
+Query OK, 6 rows affected (0.17 sec)
 Records: 6  Deleted: 0  Skipped: 0  Warnings: 0
 ```
 
diff --git 
a/versioned_docs/version-2.1/query-acceleration/tuning/tuning-execution/parallelism-tuning.md
 
b/versioned_docs/version-2.1/query-acceleration/tuning/tuning-execution/parallelism-tuning.md
index 5c63540fe3f..acab8e072a3 100644
--- 
a/versioned_docs/version-2.1/query-acceleration/tuning/tuning-execution/parallelism-tuning.md
+++ 
b/versioned_docs/version-2.1/query-acceleration/tuning/tuning-execution/parallelism-tuning.md
@@ -118,7 +118,7 @@ HASH_JOIN_OPERATOR (id=3, nereids_id=448):
                   - PeakMemoryUsage: sum 1.16 MB, avg 148.00 KB, max 148.00 
KB, min 148.00 KB
                   - ProbeKeyArena: sum 1.16 MB, avg 148.00 KB, max 148.00 KB, 
min 148.00 KB
                 - OpenTime: avg 2.967us, max 4.120us, min 1.562us
-                - ProbeRows: sum 1.4662330332B (1462330332), avg 182.791291M 
(182791291), max 182.811875M (182811875), min 182.782658M (182782658)
+                - ProbeRows: sum 1.462330332B (1462330332), avg 182.791291M 
(182791291), max 182.811875M (182811875), min 182.782658M (182782658)
                 - ProjectionTime: avg 165.392ms, max 169.762ms, min 161.727ms
                 - RowsProduced: sum 1.462330332B (1462330332), avg 182.791291M 
(182791291), max 182.811875M (182811875), min 182.782658M (182782658)
 ```
diff --git 
a/versioned_docs/version-2.1/sql-manual/basic-element/literal/numeric-literal.md
 
b/versioned_docs/version-2.1/sql-manual/basic-element/literal/numeric-literal.md
index 7441cab7964..709a1859465 100644
--- 
a/versioned_docs/version-2.1/sql-manual/basic-element/literal/numeric-literal.md
+++ 
b/versioned_docs/version-2.1/sql-manual/basic-element/literal/numeric-literal.md
@@ -16,11 +16,11 @@ Doris determines the type used to store integer literals 
based on the input valu
 
 | Value Range         | Type     |
 | :------------------ | :------- |
-| -2^8 to 2^8 - 1     | TINYINT  |
-| -2^16 to 2^16 - 1   | SMALLINT |
-| -2^32 to 2^32 - 1   | INT      |
-| -2^64 to 2^64 - 1   | BIGINT   |
-| -2^128 to 2^128 - 1 | LARGEINT |
+| -2^7 to 2^7 - 1     | TINYINT  |
+| -2^15 to 2^15 - 1   | SMALLINT |
+| -2^31 to 2^31 - 1   | INT      |
+| -2^63 to 2^63 - 1   | BIGINT   |
+| -2^127 to 2^127 - 1 | LARGEINT |
 
 ## Fixed and Floating Point Numeric Literals
 
diff --git a/versioned_docs/version-3.x/admin-manual/system-tables/overview.md 
b/versioned_docs/version-3.x/admin-manual/system-tables/overview.md
index a0de6d186b5..7449fcc97ee 100644
--- a/versioned_docs/version-3.x/admin-manual/system-tables/overview.md
+++ b/versioned_docs/version-3.x/admin-manual/system-tables/overview.md
@@ -1,7 +1,7 @@
 ---
 {
     "title": "Overview | System Tables",
-    "language": "zh-CN",
+    "language": "en",
     "description": "Apache Doris cluster has multiple built-in system 
databases to store metadata information about the Doris system itself.",
     "sidebar_label": "Overview"
 }
diff --git 
a/versioned_docs/version-3.x/data-operate/import/data-source/local-file.md 
b/versioned_docs/version-3.x/data-operate/import/data-source/local-file.md
index beca26e6b2f..48b04d84cc4 100644
--- a/versioned_docs/version-3.x/data-operate/import/data-source/local-file.md
+++ b/versioned_docs/version-3.x/data-operate/import/data-source/local-file.md
@@ -164,6 +164,6 @@ LINES TERMINATED BY '\n';
 If the load is successful, the result will be displayed as follows:
 
 ```SQL
-Query OK, 6 row affected (0.17 sec)
+Query OK, 6 rows affected (0.17 sec)
 Records: 6  Deleted: 0  Skipped: 0  Warnings: 0
 ```
diff --git 
a/versioned_docs/version-3.x/data-operate/import/import-way/mysql-load-manual.md
 
b/versioned_docs/version-3.x/data-operate/import/import-way/mysql-load-manual.md
index 17f878ba697..846b9e71897 100644
--- 
a/versioned_docs/version-3.x/data-operate/import/import-way/mysql-load-manual.md
+++ 
b/versioned_docs/version-3.x/data-operate/import/import-way/mysql-load-manual.md
@@ -99,7 +99,7 @@ MySQL Load is a synchronous import method, and the results of 
the import are ret
 Below is an example of a successful import result, which returns the number of 
imported rows:
 
 ```SQL
-Query OK, 6 row affected (0.17 sec)
+Query OK, 6 rows affected (0.17 sec)
 Records: 6  Deleted: 0  Skipped: 0  Warnings: 0
 ```
 
diff --git a/versioned_docs/version-3.x/data-operate/transaction.md 
b/versioned_docs/version-3.x/data-operate/transaction.md
index cb00aa20da1..3c6b77746c5 100644
--- a/versioned_docs/version-3.x/data-operate/transaction.md
+++ b/versioned_docs/version-3.x/data-operate/transaction.md
@@ -367,7 +367,7 @@ mysql> SELECT * FROM dt3;
 |    1 | Emily    |    25 |
 |    2 | Benjamin |    35 |
 |    3 | Olivia   |    28 |
-|    4 | Alexande |    60 |
+|    4 | Alexander |    60 |
 |    5 | Ava      |    17 |
 |    7 | Sophia   |    32 |
 +------+----------+-------+
diff --git 
a/versioned_docs/version-3.x/query-acceleration/tuning/tuning-execution/parallelism-tuning.md
 
b/versioned_docs/version-3.x/query-acceleration/tuning/tuning-execution/parallelism-tuning.md
index 0e2093eff0c..336ef582a34 100644
--- 
a/versioned_docs/version-3.x/query-acceleration/tuning/tuning-execution/parallelism-tuning.md
+++ 
b/versioned_docs/version-3.x/query-acceleration/tuning/tuning-execution/parallelism-tuning.md
@@ -121,7 +121,7 @@ HASH_JOIN_OPERATOR (id=3, nereids_id=448):
                   - PeakMemoryUsage: sum 1.16 MB, avg 148.00 KB, max 148.00 
KB, min 148.00 KB
                   - ProbeKeyArena: sum 1.16 MB, avg 148.00 KB, max 148.00 KB, 
min 148.00 KB
                 - OpenTime: avg 2.967us, max 4.120us, min 1.562us
-                - ProbeRows: sum 1.4662330332B (1462330332), avg 182.791291M 
(182791291), max 182.811875M (182811875), min 182.782658M (182782658)
+                - ProbeRows: sum 1.462330332B (1462330332), avg 182.791291M 
(182791291), max 182.811875M (182811875), min 182.782658M (182782658)
                 - ProjectionTime: avg 165.392ms, max 169.762ms, min 161.727ms
                 - RowsProduced: sum 1.462330332B (1462330332), avg 182.791291M 
(182791291), max 182.811875M (182811875), min 182.782658M (182782658)
 ```
diff --git 
a/versioned_docs/version-3.x/sql-manual/basic-element/literal/numeric-literal.md
 
b/versioned_docs/version-3.x/sql-manual/basic-element/literal/numeric-literal.md
index 7441cab7964..709a1859465 100644
--- 
a/versioned_docs/version-3.x/sql-manual/basic-element/literal/numeric-literal.md
+++ 
b/versioned_docs/version-3.x/sql-manual/basic-element/literal/numeric-literal.md
@@ -16,11 +16,11 @@ Doris determines the type used to store integer literals 
based on the input valu
 
 | Value Range         | Type     |
 | :------------------ | :------- |
-| -2^8 to 2^8 - 1     | TINYINT  |
-| -2^16 to 2^16 - 1   | SMALLINT |
-| -2^32 to 2^32 - 1   | INT      |
-| -2^64 to 2^64 - 1   | BIGINT   |
-| -2^128 to 2^128 - 1 | LARGEINT |
+| -2^7 to 2^7 - 1     | TINYINT  |
+| -2^15 to 2^15 - 1   | SMALLINT |
+| -2^31 to 2^31 - 1   | INT      |
+| -2^63 to 2^63 - 1   | BIGINT   |
+| -2^127 to 2^127 - 1 | LARGEINT |
 
 ## Fixed and Floating Point Numeric Literals
 
diff --git a/versioned_docs/version-4.x/admin-manual/system-tables/overview.md 
b/versioned_docs/version-4.x/admin-manual/system-tables/overview.md
index a0de6d186b5..7449fcc97ee 100644
--- a/versioned_docs/version-4.x/admin-manual/system-tables/overview.md
+++ b/versioned_docs/version-4.x/admin-manual/system-tables/overview.md
@@ -1,7 +1,7 @@
 ---
 {
     "title": "Overview | System Tables",
-    "language": "zh-CN",
+    "language": "en",
     "description": "Apache Doris cluster has multiple built-in system 
databases to store metadata information about the Doris system itself.",
     "sidebar_label": "Overview"
 }
diff --git 
a/versioned_docs/version-4.x/data-operate/import/data-source/local-file.md 
b/versioned_docs/version-4.x/data-operate/import/data-source/local-file.md
index 565d935ae55..f7b88ef92b6 100644
--- a/versioned_docs/version-4.x/data-operate/import/data-source/local-file.md
+++ b/versioned_docs/version-4.x/data-operate/import/data-source/local-file.md
@@ -241,7 +241,7 @@ MySQL Load is a synchronous import method. The result is 
returned to the user on
 The following is the result of a successful import, which returns the number 
of imported rows:
 
 ```SQL
-Query OK, 6 row affected (0.17 sec)
+Query OK, 6 rows affected (0.17 sec)
 Records: 6  Deleted: 0  Skipped: 0  Warnings: 0
 ```
 
diff --git 
a/versioned_docs/version-4.x/data-operate/import/import-way/mysql-load-manual.md
 
b/versioned_docs/version-4.x/data-operate/import/import-way/mysql-load-manual.md
index 3bc81fcd8ec..c49fc6cf73c 100644
--- 
a/versioned_docs/version-4.x/data-operate/import/import-way/mysql-load-manual.md
+++ 
b/versioned_docs/version-4.x/data-operate/import/import-way/mysql-load-manual.md
@@ -123,7 +123,7 @@ MySQL Load is a synchronous import method, so the import 
result is returned dire
 When the import **succeeds**, the number of imported rows is returned:
 
 ```sql
-Query OK, 6 row affected (0.17 sec)
+Query OK, 6 rows affected (0.17 sec)
 Records: 6  Deleted: 0  Skipped: 0  Warnings: 0
 ```
 
diff --git a/versioned_docs/version-4.x/data-operate/transaction.md 
b/versioned_docs/version-4.x/data-operate/transaction.md
index 352989fff08..4aa4c732a37 100644
--- a/versioned_docs/version-4.x/data-operate/transaction.md
+++ b/versioned_docs/version-4.x/data-operate/transaction.md
@@ -362,7 +362,7 @@ mysql> SELECT * FROM dt3;
 |    1 | Emily    |    25 |
 |    2 | Benjamin |    35 |
 |    3 | Olivia   |    28 |
-|    4 | Alexande |    60 |
+|    4 | Alexander |    60 |
 |    5 | Ava      |    17 |
 |    7 | Sophia   |    32 |
 +------+----------+-------+
diff --git 
a/versioned_docs/version-4.x/data-operate/update/update-of-aggregate-model.md 
b/versioned_docs/version-4.x/data-operate/update/update-of-aggregate-model.md
index f5ca23c6190..703c14c55fc 100644
--- 
a/versioned_docs/version-4.x/data-operate/update/update-of-aggregate-model.md
+++ 
b/versioned_docs/version-4.x/data-operate/update/update-of-aggregate-model.md
@@ -21,7 +21,7 @@ This document describes the two update methods that the Doris 
Aggregate model su
 | Update method | Applicable scenario | Supported load methods | Behavior |
 | --- | --- | --- | --- |
 | Whole-row update | Write a complete row, and merge the new and old values 
according to each column's aggregate function | Stream Load, Broker Load, 
Routine Load, Insert Into, and others | The new value and the old value are 
combined by the aggregate function to produce a new aggregate value |
-| Partial-column update | Update only some columns while the other columns 
retain their existing aggregate results | See [Partial Column 
Update](./partial-column-update.md#聚合模型的列更新) | Only the specified columns 
participate in aggregate merging |
+| Partial-column update | Update only some columns while the other columns 
retain their existing aggregate results | See [Partial Column 
Update](./partial-column-update.md#column-update-on-the-aggregate-key-model) | 
Only the specified columns participate in aggregate merging |
 
 ## Whole-Row Update
 
@@ -40,4 +40,4 @@ No matter at which stage the aggregate value is produced, the 
result returned to
 
 <!-- Knowledge type: Capability index -->
 
-The Aggregate Key Model supports updating only some columns in the table while 
the other columns retain their existing aggregate results. For details on table 
creation, data write examples, and usage notes, see the [Partial Column 
Update](./partial-column-update.md#聚合模型的列更新) document.
+The Aggregate Key Model supports updating only some columns in the table while 
the other columns retain their existing aggregate results. For details on table 
creation, data write examples, and usage notes, see the [Partial Column 
Update](./partial-column-update.md#column-update-on-the-aggregate-key-model) 
document.
diff --git 
a/versioned_docs/version-4.x/data-operate/update/update-of-unique-model.md 
b/versioned_docs/version-4.x/data-operate/update/update-of-unique-model.md
index 18b4003ae0e..492c7a4dba2 100644
--- a/versioned_docs/version-4.x/data-operate/update/update-of-unique-model.md
+++ b/versioned_docs/version-4.x/data-operate/update/update-of-unique-model.md
@@ -40,4 +40,4 @@ Supported load methods include:
 
 <!-- Knowledge type: Capability definition -->
 
-When only some fields need to be updated, you can use the partial column 
update capability of the Unique model to avoid assembling the full record. For 
detailed information (including usage examples, flexible partial column 
updates, and handling of new rows), see the [Column 
update](./partial-column-update.md#column-update-for-the-unique-model) document.
+When only some fields need to be updated, you can use the partial column 
update capability of the Unique model to avoid assembling the full record. For 
detailed information (including usage examples, flexible partial column 
updates, and handling of new rows), see the [Column 
update](./partial-column-update.md#column-update-on-the-unique-key-model) 
document.
diff --git 
a/versioned_docs/version-4.x/install/deploy-on-kubernetes/separating-storage-compute/config-cg.md
 
b/versioned_docs/version-4.x/install/deploy-on-kubernetes/separating-storage-compute/config-cg.md
index e2f4cf92bcc..743d3362865 100644
--- 
a/versioned_docs/version-4.x/install/deploy-on-kubernetes/separating-storage-compute/config-cg.md
+++ 
b/versioned_docs/version-4.x/install/deploy-on-kubernetes/separating-storage-compute/config-cg.md
@@ -83,7 +83,7 @@ spec:
       memory: 8Gi
 ```
 
-Update the configuration above into the [`DorisDisaggregatedCluster` 
resource](./install-doris-cluster.md#3-配置-dorisdisaggregatedcluster-资源) to be 
deployed for it to take effect.
+Update the configuration above into the [`DorisDisaggregatedCluster` 
resource](./install-doris-cluster.md#2-modify-key-configurations) to be 
deployed for it to take effect.
 
 ## Scenario 4: Configure the Access Method of a Compute Group
 
@@ -228,7 +228,7 @@ Parameter descriptions:
 
 ### Step 3: Update the DorisDisaggregatedCluster Resource
 
-Update the [`DorisDisaggregatedCluster` 
resource](./install-doris-cluster.md#3-配置-dorisdisaggregatedcluster-资源) to 
mount the ConfigMap. The configuration is as follows:
+Update the [`DorisDisaggregatedCluster` 
resource](./install-doris-cluster.md#2-modify-key-configurations) to mount the 
ConfigMap. The configuration is as follows:
 
 ```yaml
 spec:
diff --git 
a/versioned_docs/version-4.x/install/deploy-on-kubernetes/separating-storage-compute/config-cluster.md
 
b/versioned_docs/version-4.x/install/deploy-on-kubernetes/separating-storage-compute/config-cluster.md
index f63af9f13a5..f8c6a9ed18c 100644
--- 
a/versioned_docs/version-4.x/install/deploy-on-kubernetes/separating-storage-compute/config-cluster.md
+++ 
b/versioned_docs/version-4.x/install/deploy-on-kubernetes/separating-storage-compute/config-cluster.md
@@ -108,7 +108,7 @@ func main() {
 
 ### Step 2: Configure the encrypted password in fe.conf
 
-Configure the encrypted password from the previous step into `fe.conf` 
according to the configuration file's requirements. Following the instructions 
in the [FE startup parameter configuration chapter](config-fe#自定义启动配置), deliver 
the configuration file to the Kubernetes cluster as a `ConfigMap`.
+Configure the encrypted password from the previous step into `fe.conf` 
according to the configuration file's requirements. Following the instructions 
in the [FE startup parameter configuration 
chapter](config-fe#custom-startup-configuration), deliver the configuration 
file to the Kubernetes cluster as a `ConfigMap`.
 
 ### Step 3: Configure management credentials in DorisDisaggregatedCluster
 
diff --git 
a/versioned_docs/version-4.x/install/deploy-on-kubernetes/separating-storage-compute/config-ms.md
 
b/versioned_docs/version-4.x/install/deploy-on-kubernetes/separating-storage-compute/config-ms.md
index cf9d9a51dc0..6832d7e0372 100644
--- 
a/versioned_docs/version-4.x/install/deploy-on-kubernetes/separating-storage-compute/config-ms.md
+++ 
b/versioned_docs/version-4.x/install/deploy-on-kubernetes/separating-storage-compute/config-ms.md
@@ -105,7 +105,7 @@ spec:
       memory: 4Gi
 ```
 
-Apply the above configuration to the [DorisDisaggregatedCluster resource you 
want to deploy](./install-doris-cluster.md#3-配置-dorisdisaggregatedcluster-资源).
+Apply the above configuration to the [DorisDisaggregatedCluster resource you 
want to deploy](./install-doris-cluster.md#2-modify-key-configurations).
 
 ## 4. Customize startup configuration
 
@@ -175,7 +175,7 @@ Parameter description:
 - `${msConfigMapName}`: the name of the ConfigMap that contains the 
MetaService startup configuration
 - `mountPath`: the mount point must be `/etc/doris`
 
-Apply the above configuration to the [DorisDisaggregatedCluster 
resource](./install-doris-cluster.md#3-配置-dorisdisaggregatedcluster-资源) you 
want to deploy.
+Apply the above configuration to the [DorisDisaggregatedCluster 
resource](./install-doris-cluster.md#2-modify-key-configurations) you want to 
deploy.
 
 ## 5. Configure service probe timeouts
 
diff --git 
a/versioned_docs/version-4.x/query-acceleration/tuning/tuning-execution/parallelism-tuning.md
 
b/versioned_docs/version-4.x/query-acceleration/tuning/tuning-execution/parallelism-tuning.md
index ae44cd1cbca..648c41d2532 100644
--- 
a/versioned_docs/version-4.x/query-acceleration/tuning/tuning-execution/parallelism-tuning.md
+++ 
b/versioned_docs/version-4.x/query-acceleration/tuning/tuning-execution/parallelism-tuning.md
@@ -177,7 +177,7 @@ HASH_JOIN_OPERATOR (id=3 , nereids_id=448):
     - PeakMemoryUsage: sum 1.16 MB, avg 148.00 KB, max 148.00 KB, min 148.00 KB
     - ProbeKeyArena: sum 1.16 MB, avg 148.00 KB, max 148.00 KB, min 148.00 KB
   - OpenTime: avg 2.967us, max 4.120us, min 1.562us
-  - ProbeRows: sum 1.4662330332B (1462330332), avg 182.791291M (182791291), 
max 182.811875M (182811875), min 182.782658M (182782658)
+  - ProbeRows: sum 1.462330332B (1462330332), avg 182.791291M (182791291), max 
182.811875M (182811875), min 182.782658M (182782658)
   - ProjectionTime: avg 165.392ms, max 169.762ms, min 161.727ms
   - RowsProduced: sum 1.462330332B (1462330332), avg 182.791291M (182791291), 
max 182.811875M (182811875), min 182.782658M (182782658)
 ```
diff --git 
a/versioned_docs/version-4.x/sql-manual/basic-element/literal/numeric-literal.md
 
b/versioned_docs/version-4.x/sql-manual/basic-element/literal/numeric-literal.md
index 87102e2f26a..2deaa9193e4 100644
--- 
a/versioned_docs/version-4.x/sql-manual/basic-element/literal/numeric-literal.md
+++ 
b/versioned_docs/version-4.x/sql-manual/basic-element/literal/numeric-literal.md
@@ -16,11 +16,11 @@ Doris determines the type used to store integer literals 
based on the input valu
 
 | Value Range         | Type     |
 | :------------------ | :------- |
-| -2^8 to 2^8 - 1     | TINYINT  |
-| -2^16 to 2^16 - 1   | SMALLINT |
-| -2^32 to 2^32 - 1   | INT      |
-| -2^64 to 2^64 - 1   | BIGINT   |
-| -2^128 to 2^128 - 1 | LARGEINT |
+| -2^7 to 2^7 - 1     | TINYINT  |
+| -2^15 to 2^15 - 1   | SMALLINT |
+| -2^31 to 2^31 - 1   | INT      |
+| -2^63 to 2^63 - 1   | BIGINT   |
+| -2^127 to 2^127 - 1 | LARGEINT |
 
 ## Fixed and Floating Point Numeric Literals
 
diff --git 
a/versioned_docs/version-4.x/sql-manual/basic-element/sql-data-types/conversion/datetime-conversion.md
 
b/versioned_docs/version-4.x/sql-manual/basic-element/sql-data-types/conversion/datetime-conversion.md
index b9346d0cc89..f3cdf3f53a6 100644
--- 
a/versioned_docs/version-4.x/sql-manual/basic-element/sql-data-types/conversion/datetime-conversion.md
+++ 
b/versioned_docs/version-4.x/sql-manual/basic-element/sql-data-types/conversion/datetime-conversion.md
@@ -8,7 +8,7 @@
 
 Valid range for DATETIME type:
 
-`[0000-01-01 00:00:00.0000000, 9999-12-31 23:59:59.999999]`
+`[0000-01-01 00:00:00.000000, 9999-12-31 23:59:59.999999]`
 
 The DATETIME type includes a type parameter `p`, which represents the number 
of decimal places. The complete representation is `DATETIME(p)` type. For 
example, DATETIME(6) indicates a DATETIME type that supports microsecond 
precision.
 
diff --git 
a/versioned_docs/version-4.x/sql-manual/sql-functions/scalar-functions/array-functions/array-count.md
 
b/versioned_docs/version-4.x/sql-manual/sql-functions/scalar-functions/array-functions/array-count.md
index f95d268112b..f5e4a453125 100644
--- 
a/versioned_docs/version-4.x/sql-manual/sql-functions/scalar-functions/array-functions/array-count.md
+++ 
b/versioned_docs/version-4.x/sql-manual/sql-functions/scalar-functions/array-functions/array-count.md
@@ -10,7 +10,7 @@
 
 <version since="2.0.0">
 
-
+</version>
 
 ## Description
 


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to